blob: 9e4ddfffa5704344e0d826cb48ff48c827d19806 [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,
5082 old_chan_nr := -
5083 };
5084 /* issue hand-over command on VTY */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005085 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
Harald Welte261af4b2018-02-12 21:20:39 +01005086 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5087 f_rslem_suspend(RSL1_PROC);
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005088
5089 /* From the MGW perspective, a handover is is characterized by
5090 * performing one MDCX operation with the MGW. So we expect to see
5091 * one more MDCX during handover. */
5092 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5093
Harald Welte261af4b2018-02-12 21:20:39 +01005094 alt {
5095 [] as_handover(hs);
Harald Welte261af4b2018-02-12 21:20:39 +01005096 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005097
Philipp Maier4dae0652018-11-12 12:03:26 +01005098 /* Since this is an internal handover we expect the BSC to inform the
5099 * MSC about the event */
5100 BSSAP.receive(tr_BSSMAP_HandoverPerformed);
5101
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005102 /* Check the amount of MGCP transactions is still consistant with the
5103 * test expectation */
5104 f_check_mgcp_expectations()
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005105
5106 /* Ensure the Channel Activation for the new channel contained the right encryption params. as_handover() set
5107 * g_chan_nr to the new lchan that was handed over to. It lives in bts 1, so look it up at RSL1_PROC. */
5108 f_verify_encr_info(f_rslem_get_last_act(RSL1_PROC, 0, g_chan_nr));
5109
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005110 f_sleep(0.5);
Harald Welte261af4b2018-02-12 21:20:39 +01005111}
5112
5113testcase TC_ho_int() runs on test_CT {
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005114 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte261af4b2018-02-12 21:20:39 +01005115 var MSC_ConnHdlr vc_conn;
5116 f_init(2, true);
5117 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005118
5119 f_ctrs_bsc_and_bts_init();
5120
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005121 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
Harald Welte261af4b2018-02-12 21:20:39 +01005122 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005123
5124 /* from f_establish_fully() */
5125 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5126 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5127 /* from handover */
5128 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5129 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5130 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5131 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5132 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005133 f_shutdown_helper();
Harald Welte261af4b2018-02-12 21:20:39 +01005134}
Harald Weltee9e02e42018-01-31 23:36:25 +01005135
Oliver Smith7eabd312021-07-12 14:18:56 +02005136function 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 +02005137 var MSC_ConnHdlr vc_conn;
5138 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5139 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5140
5141 f_init(2, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02005142 f_vty_encryption_a5(enc_a5);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005143 f_sleep(1.0);
5144
5145 f_ctrs_bsc_and_bts_init();
5146
5147 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
5148 vc_conn.done;
5149
5150 /* from f_establish_fully() */
5151 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5152 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5153 /* from handover */
5154 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5155 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5156 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5157 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5158 f_ctrs_bsc_and_bts_verify();
Oliver Smith7eabd312021-07-12 14:18:56 +02005159 f_vty_encryption_a5_reset();
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005160 f_shutdown_helper();
5161}
5162
5163testcase TC_ho_int_a5_0() runs on test_CT {
5164 f_tc_ho_int_a5('01'O);
5165}
5166
5167testcase TC_ho_int_a5_1() runs on test_CT {
5168 f_tc_ho_int_a5('02'O);
5169}
5170
5171testcase TC_ho_int_a5_3() runs on test_CT {
5172 f_tc_ho_int_a5('08'O);
5173}
5174
5175testcase TC_ho_int_a5_4() runs on test_CT {
Oliver Smith7eabd312021-07-12 14:18:56 +02005176 f_tc_ho_int_a5('10'O, "0 1 3 4");
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005177}
5178
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005179/* intra-BSC hand-over with CONNection FAILure and cause Radio Link Failure: check RR release cause */
5180private function f_tc_ho_int_radio_link_failure(charstring id) runs on MSC_ConnHdlr {
5181 g_pars := f_gen_test_hdlr_pars();
5182 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5183 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005184
5185 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5186 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5187
5188 f_establish_fully(ass_cmd, exp_compl);
5189 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
5190
5191 var HandoverState hs := {
5192 rr_ho_cmpl_seen := false,
5193 handover_done := false,
5194 old_chan_nr := -
5195 };
5196 /* issue hand-over command on VTY */
5197 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
5198 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5199 f_rslem_suspend(RSL1_PROC);
5200
5201 /* From the MGW perspective, a handover is is characterized by
5202 * performing one MDCX operation with the MGW. So we expect to see
5203 * one more MDCX during handover. */
5204 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5205
5206 var RSL_Message rsl;
5207 var PDU_ML3_NW_MS l3;
5208 var RslChannelNr new_chan_nr;
5209 var GsmArfcn arfcn;
5210 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
5211 l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
5212 if (not ischosen(l3.msgs.rrm.handoverCommand)) {
5213 setverdict(fail, "Expected handoverCommand");
5214 mtc.stop;
5215 }
5216 }
5217 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
5218 new_chan_nr, arfcn);
5219
5220 f_rslem_register(0, new_chan_nr, RSL1_PROC);
5221
5222 /* resume processing of RSL DChan messages, which was temporarily suspended
5223 * before performing a hand-over */
5224 f_rslem_resume(RSL1_PROC);
5225 RSL1.receive(tr_RSL_IPA_CRCX(new_chan_nr));
5226
5227 f_sleep(1.0);
5228
5229 /* Handover fails because no HANDO DET appears on the new lchan,
5230 * and the old lchan reports a Radio Link Failure. */
5231 RSL.send(ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
5232
5233 var PDU_BSSAP rx_clear_request;
5234 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5235 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5236 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5237
5238 var RR_Cause rr_cause := GSM48_RR_CAUSE_ABNORMAL_UNSPEC;
5239
5240 var MgcpCommand mgcp;
5241 interleave {
5242 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE(int2oct(enum2int(rr_cause), 1)))) {}
5243 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005244 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005245 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005246 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005247 }
5248 [] RSL1.receive(tr_RSL_DEACT_SACCH(new_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005249 [] RSL1.receive(tr_RSL_RF_CHAN_REL(new_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005250 RSL1.send(ts_RSL_RF_CHAN_REL_ACK(new_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005251 f_rslem_unregister(0, g_chan_nr, PT := RSL1_PROC);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005252 }
5253 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {}
5254 }
5255
5256 f_sleep(0.5);
5257 setverdict(pass);
5258}
5259testcase TC_ho_int_radio_link_failure() runs on test_CT {
5260 var MSC_ConnHdlr vc_conn;
5261 f_init(2, true);
5262 f_sleep(1.0);
5263
5264 f_ctrs_bsc_and_bts_init();
5265
5266 vc_conn := f_start_handler(refers(f_tc_ho_int_radio_link_failure));
5267 vc_conn.done;
5268
5269 /* from f_establish_fully() */
5270 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5271 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5272 /* from handover */
5273 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5274 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5275 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5276 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:stopped");
5277 f_ctrs_bsc_and_bts_verify();
5278 f_shutdown_helper();
5279}
5280
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005281/* Expecting MGCP to DLCX the endpoint's two connections: towards BTS and towards MSC */
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005282private function f_expect_dlcx_conns() runs on MSC_ConnHdlr {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005283 var MgcpCommand mgcp;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005284 var template MgcpResponse mgcp_resp;
5285 var MGCP_RecvFrom mrf;
5286 var template MgcpMessage msg_resp;
5287 var template MgcpMessage msg_dlcx := {
5288 command := tr_DLCX()
5289 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005290
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005291 if (g_pars.aoip) {
5292 MGCP.receive(tr_DLCX()) -> value mgcp {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005293 log("Got first DLCX: ", mgcp);
5294 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005295 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005296
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005297 MGCP.receive(tr_DLCX()) -> value mgcp {
5298 log("Got second DLCX: ", mgcp);
5299 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
5300 };
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005301 } else {
5302 /* For SCCPLite, BSC doesn't handle the MSC-side */
5303 MGCP_MULTI.receive(tr_MGCP_RecvFrom_any(msg_dlcx)) -> value mrf {
5304 log("Got first DLCX: ", mrf.msg.command);
5305 msg_resp := {
5306 response := ts_DLCX_ACK2(mrf.msg.command.line.trans_id)
5307 }
5308 MGCP_MULTI.send(t_MGCP_SendToMrf(mrf, msg_resp));
5309 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005310 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005311}
5312
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005313private 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 +01005314
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005315 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005316 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5317
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005318 BSSAP.receive(tr_BSSMAP_HandoverRequired(exp_oldToNewBSSIEs));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005319
5320 f_sleep(0.5);
5321 /* The MSC negotiates Handover Request and Handover Request Ack with
5322 * the other BSS and comes back with a BSSMAP Handover Command
5323 * containing an RR Handover Command coming from the target BSS... */
5324
5325 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5326 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5327 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5328 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5329 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5330
5331 /* expect the Handover Command to go out on RR */
5332 var RSL_Message rsl_ho_cmd
5333 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5334 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5335 var RSL_IE_Body rsl_ho_cmd_l3;
5336 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5337 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5338 setverdict(fail);
5339 } else {
5340 log("Found L3 Info: ", rsl_ho_cmd_l3);
5341 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5342 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5343 setverdict(fail);
5344 } else {
5345 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5346 setverdict(pass);
5347 }
5348 }
5349
5350 /* When the other BSS has reported a completed handover, this side is
5351 * torn down. */
5352
5353 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_HANDOVER_SUCCESSFUL;
5354 var BssmapCause cause := enum2int(cause_val);
5355 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5356
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005357 f_expect_dlcx_conns();
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005358
5359 interleave {
5360 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE));
5361 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr));
5362 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr));
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005363 [] BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005364 }
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005365 setverdict(pass);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005366}
5367
5368private function f_tc_ho_out_of_this_bsc(charstring id) runs on MSC_ConnHdlr {
5369 g_pars := f_gen_test_hdlr_pars();
5370 var PDU_BSSAP ass_req := f_gen_ass_req();
5371 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5372 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5373 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5374 f_establish_fully(ass_req, exp_compl);
5375
5376 f_ho_out_of_this_bsc();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005377}
5378testcase TC_ho_out_of_this_bsc() runs on test_CT {
5379 var MSC_ConnHdlr vc_conn;
5380
5381 f_init(1, true);
5382 f_sleep(1.0);
5383
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005384 f_ctrs_bsc_and_bts_init();
5385
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005386 vc_conn := f_start_handler(refers(f_tc_ho_out_of_this_bsc));
5387 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005388
5389 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5390 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5391 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5392 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5393 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5394 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed");
5395 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005396 f_shutdown_helper();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005397}
5398
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005399private function f_mo_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5400 template (value) RslLinkId link_id := ts_RslLinkID_DCCH(0),
Vadim Yanitskiy2ef6a2f2020-10-08 23:17:32 +07005401 template (present) OCT1 dlci := ?,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005402 octetstring l3 := '0123456789'O)
5403runs on MSC_ConnHdlr {
Neels Hofmeyr43654812020-09-25 01:35:35 +02005404 /* The old lchan and conn should still be active. See that arbitrary L3
5405 * is still going through. */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005406 rsl.send(ts_RSL_DATA_IND(g_chan_nr, link_id, l3));
Neels Hofmeyr43654812020-09-25 01:35:35 +02005407 var template PDU_BSSAP exp_data := {
5408 discriminator := '1'B,
5409 spare := '0000000'B,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005410 dlci := dlci,
5411 lengthIndicator := lengthof(l3),
Neels Hofmeyr43654812020-09-25 01:35:35 +02005412 pdu := {
5413 dtap := l3
5414 }
5415 };
5416 BSSAP.receive(exp_data);
5417 setverdict(pass);
5418}
5419
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005420private function f_mt_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5421 template (present) RslLinkId link_id := tr_RslLinkID_DCCH(0),
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005422 template (value) OCT1 dlci := '00'O,
5423 octetstring l3 := '0123456789'O)
5424runs on MSC_ConnHdlr {
5425 BSSAP.send(PDU_BSSAP:{
5426 discriminator := '1'B,
5427 spare := '0000000'B,
5428 dlci := dlci,
5429 lengthIndicator := lengthof(l3),
5430 pdu := {
5431 dtap := l3
5432 }
5433 });
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005434 rsl.receive(tr_RSL_DATA_REQ(g_chan_nr, link_id, l3));
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005435 setverdict(pass);
5436}
5437
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005438/* BSC asks for inter-BSC HO, but the MSC decides that it won't happen and
5439 * simply never sends a BSSMAP Handover Command. */
5440private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005441 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005442
5443 var PDU_BSSAP ass_req := f_gen_ass_req();
5444 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5445 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5446 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5447 f_establish_fully(ass_req, exp_compl);
5448
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005449 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005450 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5451
5452 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5453
5454 /* osmo-bsc should time out 10 seconds after the handover started.
5455 * Let's give it a bit extra. */
5456 f_sleep(15.0);
5457
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005458 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005459 f_sleep(1.0);
5460}
5461testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
5462 var MSC_ConnHdlr vc_conn;
5463
5464 f_init(1, true);
5465 f_sleep(1.0);
5466
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005467 f_ctrs_bsc_and_bts_init();
5468
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005469 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_msc_response));
5470 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005471
5472 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5473 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5474 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5475 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5476 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5477 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5478 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005479 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005480}
5481
5482/* BSC asks for inter-BSC HO, receives BSSMAP Handover Command, but MS reports
5483 * RR Handover Failure. */
5484private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005485 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005486
5487 var PDU_BSSAP ass_req := f_gen_ass_req();
5488 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5489 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5490 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5491 f_establish_fully(ass_req, exp_compl);
5492
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005493 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005494 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5495
5496 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5497
5498 f_sleep(0.5);
5499 /* The MSC negotiates Handover Request and Handover Request Ack with
5500 * the other BSS and comes back with a BSSMAP Handover Command
5501 * containing an RR Handover Command coming from the target BSS... */
5502
5503 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5504 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5505 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5506 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5507 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5508
5509 /* expect the Handover Command to go out on RR */
5510 var RSL_Message rsl_ho_cmd
5511 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5512 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5513 var RSL_IE_Body rsl_ho_cmd_l3;
5514 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5515 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5516 setverdict(fail);
5517 } else {
5518 log("Found L3 Info: ", rsl_ho_cmd_l3);
5519 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5520 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5521 setverdict(fail);
5522 } else {
5523 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5524 setverdict(pass);
5525 }
5526 }
5527
5528 f_sleep(0.2);
5529 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
5530
5531 /* Should tell the MSC about the failure */
5532 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5533
5534 f_sleep(1.0);
5535
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005536 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005537 f_sleep(1.0);
5538
5539 setverdict(pass);
5540 f_sleep(1.0);
5541}
5542testcase TC_ho_out_fail_rr_ho_failure() runs on test_CT {
5543 var MSC_ConnHdlr vc_conn;
5544
5545 f_init(1, true);
5546 f_sleep(1.0);
5547
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005548 f_ctrs_bsc_and_bts_init();
5549
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005550 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_rr_ho_failure));
5551 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005552
5553 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5554 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5555 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5556 f_ctrs_bsc_and_bts_add(0, "handover:failed");
5557 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5558 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:failed");
5559 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005560 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005561}
5562
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005563/* BSC asks for inter-BSC-out HO, receives BSSMAP Handover Command, but then no reply is received about HO outcome
5564 * (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 +02005565 * and the lchan is released. */
5566private function f_tc_ho_out_fail_no_result_after_ho_cmd(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005567 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005568
5569 var PDU_BSSAP ass_req := f_gen_ass_req();
5570 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5571 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5572 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5573 f_establish_fully(ass_req, exp_compl);
5574
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005575 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005576 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5577
5578 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5579
5580 f_sleep(0.5);
5581 /* The MSC negotiates Handover Request and Handover Request Ack with
5582 * the other BSS and comes back with a BSSMAP Handover Command
5583 * containing an RR Handover Command coming from the target BSS... */
5584
5585 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5586 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5587 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5588 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5589 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5590
5591 /* expect the Handover Command to go out on RR */
5592 var RSL_Message rsl_ho_cmd
5593 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5594 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5595 var RSL_IE_Body rsl_ho_cmd_l3;
5596 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5597 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5598 setverdict(fail);
5599 } else {
5600 log("Found L3 Info: ", rsl_ho_cmd_l3);
5601 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5602 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5603 setverdict(fail);
5604 } else {
5605 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5606 setverdict(pass);
5607 }
5608 }
5609
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005610 /* We get neither success nor failure report from the remote BSS. Eventually T8 times out and we run into 3GPP
5611 * TS 48.008 3.1.5.3.3 "Abnormal Conditions": Clear Request should go to the MSC, and RR should be released
5612 * after Clear Command */
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005613
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005614 var PDU_BSSAP rx_clear_request;
Neels Hofmeyre1797aa2019-07-09 19:34:04 +02005615 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5616 log("Got BSSMAP Clear Request");
5617 /* Instruct BSC to clear channel */
5618 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5619 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5620
5621 var MgcpCommand mgcp;
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005622 interleave {
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005623 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
5624 log("Got Deact SACCH");
5625 }
Harald Welte924b6ea2019-02-04 01:05:34 +01005626 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
Neels Hofmeyr211169d2018-11-07 00:37:29 +01005627 log("Got RR Release");
5628 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005629 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005630 log("Got RF Chan Rel");
5631 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005632 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005633 }
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005634 }
5635
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005636 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005637 BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005638
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005639 setverdict(pass);
5640 f_sleep(1.0);
5641}
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005642testcase TC_ho_out_fail_no_result_after_ho_cmd() runs on test_CT {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005643 var MSC_ConnHdlr vc_conn;
5644
5645 f_init(1, true);
5646 f_sleep(1.0);
5647
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005648 f_ctrs_bsc_and_bts_init();
5649
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005650 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_result_after_ho_cmd));
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005651 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005652
5653 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5654 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5655 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5656 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5657 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5658 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5659 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005660 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005661}
5662
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005663private 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 +01005664 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5665 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5666 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5667 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5668 * before we get started. */
5669 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5670 f_rslem_register(0, new_chan_nr);
5671 g_chan_nr := new_chan_nr;
5672 f_sleep(1.0);
5673
5674 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5675 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5676 activate(as_Media());
5677
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005678 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005679 f_gen_handover_req(aoip_tla := g_pars.host_aoip_tla,
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005680 oldToNewBSSIEs := oldToNewBSSIEs,
5681 enc := g_pars.encr)));
Harald Welte6811d102019-04-14 22:23:14 +02005682 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005683
5684 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5685
5686 var PDU_BSSAP rx_bssap;
5687 var octetstring ho_command_str;
5688
5689 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
Pau Espin Pedrol76ba5412019-06-10 11:00:33 +02005690
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005691 /* we're sure that the channel activation is done now, verify the encryption parameters in it */
5692 f_verify_encr_info(f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr));
5693
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005694 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5695 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5696 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5697 log("L3 Info in HO Request Ack is ", ho_command);
5698
5699 var GsmArfcn arfcn;
5700 var RslChannelNr actual_new_chan_nr;
5701 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5702 actual_new_chan_nr, arfcn);
5703
5704 if (actual_new_chan_nr != new_chan_nr) {
5705 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5706 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5707 setverdict(fail);
5708 return;
5709 }
5710 log("Handover Command chan_nr is", actual_new_chan_nr);
5711
5712 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5713 * tells the MS to handover to the new lchan. Here comes the new MS on
5714 * the new lchan with a Handover RACH: */
5715
5716 /* send handover detect */
5717
5718 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5719
5720 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5721
5722 /* send handover complete over the new channel */
5723
5724 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
5725 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
5726 enc_PDU_ML3_MS_NW(l3_tx)));
5727
5728 BSSAP.receive(tr_BSSMAP_HandoverComplete);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005729 setverdict(pass);
5730}
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005731
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005732private function f_tc_ho_into_this_bsc(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005733 var template PDU_ML3_NW_MS exp_rr_rel_tmpl;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005734 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit;
5735 if (not istemplatekind(g_pars.last_used_eutran_plmn, "omit")) {
5736 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005737 }
5738 if (g_pars.exp_fast_return) {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005739 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE_CellSelectInd;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005740 } else {
5741 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005742 }
5743 f_ho_into_this_bsc(id, oldToNewBSSIEs);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02005744 f_perform_clear(exp_rr_rel_tmpl := exp_rr_rel_tmpl);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005745 setverdict(pass);
5746}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005747function f_tc_ho_into_this_bsc_main(TestHdlrParams pars) runs on test_CT {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005748 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005749
5750 f_init(1, true);
5751 f_sleep(1.0);
5752
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005753 f_ctrs_bsc_and_bts_init();
5754
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005755 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5756 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005757
5758 vc_conn := f_start_handler(refers(f_tc_ho_into_this_bsc), pars);
5759 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005760
5761 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5762 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5763 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5764 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed");
5765 f_ctrs_bsc_and_bts_verify();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005766}
5767
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005768testcase TC_ho_into_this_bsc() runs on test_CT {
5769 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5770 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005771 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005772}
5773
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005774function f_tc_ho_into_this_bsc_a5(OCT1 encr_alg) runs on test_CT {
5775 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5776 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5777 f_tc_ho_into_this_bsc_main(pars);
5778 f_shutdown_helper();
5779}
5780
5781testcase TC_ho_into_this_bsc_a5_0() runs on test_CT {
5782 f_tc_ho_into_this_bsc_a5('01'O);
5783}
5784
5785testcase TC_ho_into_this_bsc_a5_1() runs on test_CT {
5786 f_tc_ho_into_this_bsc_a5('02'O);
5787}
5788
5789testcase TC_ho_into_this_bsc_a5_3() runs on test_CT {
5790 f_tc_ho_into_this_bsc_a5('08'O);
5791}
5792
5793testcase TC_ho_into_this_bsc_a5_4() runs on test_CT {
5794 f_tc_ho_into_this_bsc_a5('10'O);
5795}
5796
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005797testcase TC_ho_into_this_bsc_tla_v6() runs on test_CT {
5798 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5799 pars.host_aoip_tla := "::6";
5800 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005801 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005802}
5803
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005804/* Similar to TC_ho_into_this_bsc, but when in SRVCC, HO Req contains "Old BSS
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005805 to New BSS Information" IE with "Last Used E-UTRAN PLMN Id", which, when the
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005806 channel is later released (RR CHannel Release), should trigger inclusion of
5807 IE "Cell Selection Indicator after Release of all TCH and SDCCH" with E-UTRAN
5808 neighbors. */
5809testcase TC_srvcc_eutran_to_geran() runs on test_CT {
5810 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5811 pars.last_used_eutran_plmn := '323454'O;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005812 pars.exp_fast_return := true;
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005813 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005814
5815 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted");
5816 f_ctrs_bsc_and_bts_add(0, "srvcc:completed");
5817 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005818 f_shutdown_helper();
5819}
5820
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005821/* Same as TC_srvcc_eutran_to_geran, but test explicitly forbiding fast return
5822 on the BTS. As a result, RR Release shouldn't contain the EUTRAN neighbor
5823 list when the channel is released. */
5824testcase TC_srvcc_eutran_to_geran_forbid_fast_return() runs on test_CT {
5825 f_init_vty();
5826 f_vty_allow_srvcc_fast_return(true, 0)
5827
5828 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5829 pars.last_used_eutran_plmn := '323454'O;
5830 pars.exp_fast_return := false;
5831 f_tc_ho_into_this_bsc_main(pars);
5832 f_vty_allow_srvcc_fast_return(false, 0);
5833 f_shutdown_helper();
5834}
5835
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005836private function f_tc_srvcc_eutran_to_geran_ho_out(charstring id) runs on MSC_ConnHdlr {
5837 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs;
5838 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
5839 f_ho_into_this_bsc(id, oldToNewBSSIEs);
5840 f_ho_out_of_this_bsc(oldToNewBSSIEs);
5841 setverdict(pass);
5842}
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005843
5844private function f_tc_srvcc_eutran_to_geran_ho_out_main(boolean disable_fast_return)
5845 runs on test_CT {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005846 var MSC_ConnHdlr vc_conn;
5847 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5848
5849 f_init(1, true);
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005850 if (disable_fast_return) {
5851 f_vty_allow_srvcc_fast_return(true, 0);
5852 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005853 f_sleep(1.0);
5854
5855 f_ctrs_bsc_and_bts_init();
5856
5857 pars.last_used_eutran_plmn := '323454'O;
5858 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5859 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
5860
5861 vc_conn := f_start_handler(refers(f_tc_srvcc_eutran_to_geran_ho_out), pars);
5862 vc_conn.done;
5863
5864 f_ctrs_bsc_and_bts_add(0, "handover:attempted", 2);
5865 f_ctrs_bsc_and_bts_add(0, "handover:completed", 2);
5866 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted", 1);
5867 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed", 1);
5868 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted", 1);
5869 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed", 1);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005870
5871 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted", 1);
5872 f_ctrs_bsc_and_bts_add(0, "srvcc:completed", 1);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005873 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005874
5875 if (disable_fast_return) {
5876 f_vty_allow_srvcc_fast_return(false, 0);
5877 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005878 f_shutdown_helper();
5879}
5880
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005881/* First, HO into BSC from EUTRAN (SRVCC): HO Request contains "Old BSS to New
5882 BSS Information" IE with "Last Used E-UTRAN PLMN Id".
5883 Second, HO to another BSC: HO Required contains "Old BSS to New BSS Information"
5884 IE with "Last Used E-UTRAN PLMN Id" from first step. */
5885testcase TC_srvcc_eutran_to_geran_ho_out() runs on test_CT {
5886 f_tc_srvcc_eutran_to_geran_ho_out_main(false);
5887}
5888/* Validate subsequent intra-GSM-HO works the same (with OldBSSToNewBSSInfo IE)
5889 * independently of fast-reture allowed/forbidden in local BTS */
5890testcase TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() runs on test_CT {
5891 f_tc_srvcc_eutran_to_geran_ho_out_main(true);
5892}
5893
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005894private function f_tc_ho_in_fail_msc_clears(charstring id) runs on MSC_ConnHdlr {
5895 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5896 f_rslem_register(0, new_chan_nr);
5897 g_chan_nr := new_chan_nr;
5898 f_sleep(1.0);
5899
5900 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5901 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5902 activate(as_Media());
5903
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005904 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005905 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005906 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005907
5908 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5909
5910 var PDU_BSSAP rx_bssap;
5911 var octetstring ho_command_str;
5912
5913 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5914
5915 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5916 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5917 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5918 log("L3 Info in HO Request Ack is ", ho_command);
5919
5920 var GsmArfcn arfcn;
5921 var RslChannelNr actual_new_chan_nr;
5922 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5923 actual_new_chan_nr, arfcn);
5924
5925 if (actual_new_chan_nr != new_chan_nr) {
5926 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5927 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5928 setverdict(fail);
5929 return;
5930 }
5931 log("Handover Command chan_nr is", actual_new_chan_nr);
5932
Neels Hofmeyr61ca08d2019-05-06 23:52:22 +02005933 /* For deterministic test results, give some time for the MGW endpoint to be configured */
5934 f_sleep(1.0);
5935
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005936 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5937 * tells the MS to handover to the new lchan. In this case, the MS
5938 * reports a Handover Failure to the old BSS, which forwards a BSSMAP
5939 * Handover Failure to the MSC. The procedure according to 3GPP TS
5940 * 48.008 3.1.5.3.2 "Handover Failure" is then that the MSC sends a
5941 * BSSMAP Clear Command: */
5942
5943 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5944 var BssmapCause cause := enum2int(cause_val);
5945 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5946
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005947 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005948 BSSAP.receive(tr_BSSMAP_ClearComplete);
5949
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005950 setverdict(pass);
5951 f_sleep(1.0);
5952
5953 setverdict(pass);
5954}
5955testcase TC_ho_in_fail_msc_clears() runs on test_CT {
5956 var MSC_ConnHdlr vc_conn;
5957 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5958
5959 f_init(1, true);
5960 f_sleep(1.0);
5961
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005962 f_ctrs_bsc_and_bts_init();
5963
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005964 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5965 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005966
5967 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears), pars);
5968 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005969
5970 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5971 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5972 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5973 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5974 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005975 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005976}
5977
5978private function f_tc_ho_in_fail_msc_clears_after_ho_detect(charstring id) runs on MSC_ConnHdlr {
5979 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5980 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5981 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5982 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5983 * before we get started. */
5984 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5985 f_rslem_register(0, new_chan_nr);
5986 g_chan_nr := new_chan_nr;
5987 f_sleep(1.0);
5988
5989 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5990 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5991 activate(as_Media());
5992
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005993 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005994 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005995 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005996
5997 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5998
5999 var PDU_BSSAP rx_bssap;
6000 var octetstring ho_command_str;
6001
6002 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6003
6004 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6005 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6006 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6007 log("L3 Info in HO Request Ack is ", ho_command);
6008
6009 var GsmArfcn arfcn;
6010 var RslChannelNr actual_new_chan_nr;
6011 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6012 actual_new_chan_nr, arfcn);
6013
6014 if (actual_new_chan_nr != new_chan_nr) {
6015 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6016 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6017 setverdict(fail);
6018 return;
6019 }
6020 log("Handover Command chan_nr is", actual_new_chan_nr);
6021
6022 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6023 * tells the MS to handover to the new lchan. Here comes the new MS on
6024 * the new lchan with a Handover RACH: */
6025
6026 /* send handover detect */
6027
6028 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
6029
6030 BSSAP.receive(tr_BSSMAP_HandoverDetect);
6031
6032 /* The MSC chooses to clear the connection now, maybe we got the
6033 * Handover RACH on the new cell but the MS still signaled Handover
6034 * Failure to the old BSS? */
6035
6036 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6037 var BssmapCause cause := enum2int(cause_val);
6038 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6039
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006040 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006041 BSSAP.receive(tr_BSSMAP_ClearComplete);
6042
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006043 f_sleep(1.0);
6044}
6045testcase TC_ho_in_fail_msc_clears_after_ho_detect() runs on test_CT {
6046 var MSC_ConnHdlr vc_conn;
6047 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6048
6049 f_init(1, true);
6050 f_sleep(1.0);
6051
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006052 f_ctrs_bsc_and_bts_init();
6053
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006054 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6055 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006056
6057 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears_after_ho_detect), pars);
6058 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006059
6060 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6061 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
6062 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6063 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
6064 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006065 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006066}
6067
6068/* The new BSS's lchan times out before the MSC decides that handover failed. */
6069private function f_tc_ho_in_fail_no_detect(charstring id) runs on MSC_ConnHdlr {
6070 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6071 f_rslem_register(0, new_chan_nr);
6072 g_chan_nr := new_chan_nr;
6073 f_sleep(1.0);
6074
6075 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6076 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6077 activate(as_Media());
6078
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006079 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006080 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006081 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006082
6083 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6084
6085 var PDU_BSSAP rx_bssap;
6086 var octetstring ho_command_str;
6087
6088 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6089
6090 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6091 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6092 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6093 log("L3 Info in HO Request Ack is ", ho_command);
6094
6095 var GsmArfcn arfcn;
6096 var RslChannelNr actual_new_chan_nr;
6097 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6098 actual_new_chan_nr, arfcn);
6099
6100 if (actual_new_chan_nr != new_chan_nr) {
6101 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6102 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6103 setverdict(fail);
6104 return;
6105 }
6106 log("Handover Command chan_nr is", actual_new_chan_nr);
6107
6108 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6109 * tells the MS to handover to the new lchan. But the MS never shows up
6110 * on the new lchan. */
6111
6112 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6113
6114 /* Did osmo-bsc also send a Clear Request? */
6115 timer T := 0.5;
6116 T.start;
6117 alt {
6118 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
6119 [] T.timeout { }
6120 }
6121
6122 /* MSC plays along with a Clear Command (no matter whether osmo-bsc
6123 * asked for it, this is a Handover Failure after all). */
6124
6125 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6126 var BssmapCause cause := enum2int(cause_val);
6127 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6128
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006129 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006130 BSSAP.receive(tr_BSSMAP_ClearComplete);
6131
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006132 f_sleep(1.0);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006133}
6134testcase TC_ho_in_fail_no_detect() runs on test_CT {
6135 var MSC_ConnHdlr vc_conn;
6136 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6137
6138 f_init(1, true);
6139 f_sleep(1.0);
6140
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006141 f_ctrs_bsc_and_bts_init();
6142
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006143 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6144 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006145
6146 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect), pars);
6147 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006148
6149 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6150 f_ctrs_bsc_and_bts_add(0, "handover:error");
6151 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6152 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6153 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006154 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006155}
6156
6157/* Same as f_tc_ho_in_fail_no_detect, but MSC fails to send a Clear Command */
6158private function f_tc_ho_in_fail_no_detect2(charstring id) runs on MSC_ConnHdlr {
6159 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6160 f_rslem_register(0, new_chan_nr);
6161 g_chan_nr := new_chan_nr;
6162 f_sleep(1.0);
6163
6164 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6165 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6166 activate(as_Media());
6167
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006168 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006169 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006170 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006171
6172 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6173
6174 var PDU_BSSAP rx_bssap;
6175 var octetstring ho_command_str;
6176
6177 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6178
6179 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6180 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6181 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6182 log("L3 Info in HO Request Ack is ", ho_command);
6183
6184 var GsmArfcn arfcn;
6185 var RslChannelNr actual_new_chan_nr;
6186 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6187 actual_new_chan_nr, arfcn);
6188
6189 if (actual_new_chan_nr != new_chan_nr) {
6190 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6191 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6192 setverdict(fail);
6193 return;
6194 }
6195 log("Handover Command chan_nr is", actual_new_chan_nr);
6196
6197 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6198 * tells the MS to handover to the new lchan. But the MS never shows up
6199 * on the new lchan. */
6200
6201 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6202
6203 /* MSC plays dumb and sends no Clear Command */
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006204 var PDU_BSSAP rx_clear_request;
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02006205
6206 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request {
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006207 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
6208 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6209 };
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006210 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006211 BSSAP.receive(tr_BSSMAP_ClearComplete);
6212
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006213 f_sleep(1.0);
6214}
6215testcase TC_ho_in_fail_no_detect2() runs on test_CT {
6216 var MSC_ConnHdlr vc_conn;
6217 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6218
6219 f_init(1, true);
6220 f_sleep(1.0);
6221
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006222 f_ctrs_bsc_and_bts_init();
6223
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006224 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6225 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006226
6227 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect2), pars);
6228 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006229
6230 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6231 f_ctrs_bsc_and_bts_add(0, "handover:error");
6232 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6233 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6234 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006235 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006236}
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01006237
Neels Hofmeyr91401012019-07-11 00:42:35 +02006238type record of charstring Commands;
6239
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006240private function f_bts_0_cfg(TELNETasp_PT pt, Commands cmds := {})
Neels Hofmeyr91401012019-07-11 00:42:35 +02006241{
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006242 f_vty_enter_cfg_bts(pt, 0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006243 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006244 f_vty_transceive(pt, cmds[i]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006245 }
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006246 f_vty_transceive(pt, "end");
Neels Hofmeyr91401012019-07-11 00:42:35 +02006247}
6248
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01006249private function f_cs7_inst_0_cfg(TELNETasp_PT pt, Commands cmds := {})
6250{
6251 f_vty_enter_cfg_cs7_inst(pt, 0);
6252 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
6253 f_vty_transceive(pt, cmds[i]);
6254 }
6255 f_vty_transceive(pt, "end");
6256}
6257
Neels Hofmeyr91401012019-07-11 00:42:35 +02006258private function f_probe_for_handover(charstring log_label,
6259 charstring log_descr,
6260 charstring handover_vty_cmd,
6261 boolean expect_handover,
6262 boolean is_inter_bsc_handover := false)
6263runs on MSC_ConnHdlr
6264{
Neels Hofmeyrb3fc8982020-05-11 00:16:42 +02006265 /* We're going to thwart any and all handover attempts, just be ready to handle (and ignore) handover target
6266 * lchans to be established on bts 1 or bts 2. */
6267 f_rslem_suspend(RSL1_PROC);
6268 f_rslem_suspend(RSL2_PROC);
6269
Neels Hofmeyr91401012019-07-11 00:42:35 +02006270 var RSL_Message rsl;
6271
6272 var charstring log_msg := " (expecting handover)"
6273 if (not expect_handover) {
6274 log_msg := " (expecting NO handover)";
6275 }
6276 log("f_probe_for_handover starting: " & log_label & ": " & log_descr & log_msg);
6277 f_vty_transceive(BSCVTY, handover_vty_cmd);
6278
Neels Hofmeyr91401012019-07-11 00:42:35 +02006279 timer T := 2.0;
6280 T.start;
6281
6282 alt {
6283 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
6284 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
6285 log("Rx L3 from net: ", l3);
6286 if (ischosen(l3.msgs.rrm.handoverCommand)) {
6287 var RslChannelNr new_chan_nr;
6288 var GsmArfcn arfcn;
6289 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
6290 new_chan_nr, arfcn);
6291 log("Handover to new chan ", new_chan_nr, " on ARFCN ", arfcn);
6292 log(l3.msgs.rrm.handoverCommand);
6293
6294 /* Need to register for new lchan on new BTS -- it's either bts 1 or bts 2. It doesn't really
6295 * matter on which BTS it really is, we're not going to follow through an entire handover
6296 * anyway. */
6297 f_rslem_register(0, new_chan_nr, RSL1_PROC);
6298 f_rslem_resume(RSL1_PROC);
6299 f_rslem_register(0, new_chan_nr, RSL2_PROC);
6300 f_rslem_resume(RSL2_PROC);
6301
6302 if (expect_handover and not is_inter_bsc_handover) {
6303 setverdict(pass);
6304 log("f_probe_for_handover(" & log_label & "): Got RSL Handover Command as expected.");
6305 } else {
6306 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got RSL Handover Command. "
6307 & log_label & ": " & log_descr);
6308 }
6309
6310 log("f_probe_for_handover(" & log_label & "): Ending the test: Handover Failure stops the procedure.");
6311 /* osmo-bsc has triggered Handover. That's all we need to know for this test, reply with
6312 * Handover Failure. */
6313 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
6314
6315 /* target BTS is told to release lchan again; don't care which BTS nor what messages. */
6316 f_sleep(0.5);
6317 RSL1.clear;
6318 RSL2.clear;
6319 log("f_probe_for_handover(" & log_label & "): done (got RSL Handover Command)");
6320 break;
6321 } else {
6322 repeat;
6323 }
6324 }
6325 [] BSSAP.receive(tr_BSSMAP_HandoverRequired) {
6326 if (expect_handover and is_inter_bsc_handover) {
6327 setverdict(pass);
6328 log("f_probe_for_handover(" & log_label & "): Got BSSMAP Handover Required as expected.");
6329 } else {
6330 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got BSSMAP Handover Required. "
6331 & log_label & ": " & log_descr);
6332 }
6333
6334 log("f_probe_for_handover(" & log_label & "): done (got BSSMAP Handover Required)");
6335
6336 /* Note: f_tc_ho_neighbor_config_start() sets T7, the timeout for BSSMAP Handover Required, to
6337 * 1 second. There is no legal way to quickly abort a handover after a BSSMAP Handover Required,
6338 * setting a short timeout and waiting is the only way. */
6339 log("f_probe_for_handover(" & log_label & "): waiting for inter-BSC HO to time out...");
6340 f_sleep(1.5);
6341 log("f_probe_for_handover(" & log_label & "): ...done");
6342
6343 break;
6344 }
6345 [] T.timeout {
6346 if (expect_handover) {
6347 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected Handover, but got none. "
6348 & log_label & ": " & log_descr);
6349 } else {
6350 setverdict(pass);
6351 log("f_probe_for_handover(" & log_label & "): Got no Handover, as expected.");
6352 }
6353 log("f_probe_for_handover(" & log_label & "): done (got no Handover)");
6354 break;
6355 }
6356 }
6357
6358 f_rslem_resume(RSL1_PROC);
6359 f_rslem_resume(RSL2_PROC);
6360 f_sleep(3.0);
6361 RSL.clear;
6362
6363 log("f_probe_for_handover(" & log_label & "): done clearing");
6364}
6365
6366/* Test the effect of various neighbor configuration scenarios:
6367 *
6368 * To avoid complexity, block off any actual handover operation, and always remain on the lchan at bts 0.
6369 * Reconfigure the neighbors for bts 0, trigger a Handover, and probe whether osmo-bsc does or doesn't start HO.
6370 */
6371private function f_tc_ho_neighbor_config_start() runs on MSC_ConnHdlr {
6372 g_pars := f_gen_test_hdlr_pars();
6373 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
6374 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006375
6376 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
6377 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
6378
6379 /* Establish lchan at bts 0 */
6380 f_establish_fully(ass_cmd, exp_compl);
6381
6382 /* Shorten the inter-BSC Handover timeout, to not wait so long for inter-BSC Handovers */
6383 f_vty_enter_cfg_network(BSCVTY);
6384 f_vty_transceive(BSCVTY, "timer T7 1");
6385 f_vty_transceive(BSCVTY, "end");
6386}
6387
6388private function f_tc_ho_neighbor_config_1(charstring id) runs on MSC_ConnHdlr {
6389 f_tc_ho_neighbor_config_start();
6390
6391 /*
6392 * bts 0 ARFCN 871 BSIC 10
6393 * bts 1 ARFCN 871 BSIC 11
6394 * bts 2 ARFCN 871 BSIC 12
6395 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6396 */
6397
6398 log("f_tc_ho_neighbor_config: 1. No 'neighbor' config");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006399 f_bts_0_cfg(BSCVTY, {"no neighbors"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006400 f_probe_for_handover("1.a", "HO to bts 1 works, implicitly listed as neighbor (legacy behavior when none are configured)",
6401 "handover any to arfcn 871 bsic 11",
6402 true);
6403
6404 f_probe_for_handover("1.b", "HO to unknown cell does not start",
6405 "handover any to arfcn 13 bsic 39",
6406 false);
6407
6408 f_probe_for_handover("1.c", "HO to 871-12 is ambiguous = error",
6409 "handover any to arfcn 871 bsic 12",
6410 false);
6411
6412 f_probe_for_handover("1.d", "HO to 871-11 still works (verify that this test properly cleans up)",
6413 "handover any to arfcn 871 bsic 11",
6414 true);
6415}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006416testcase TC_ho_neighbor_config_1() runs on test_CT {
6417 var MSC_ConnHdlr vc_conn;
6418 f_init(3, true, guard_timeout := 60.0);
6419 f_sleep(1.0);
6420 f_ctrs_bsc_and_bts_init();
6421 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_1));
6422 vc_conn.done;
6423
6424 /* f_tc_ho_neighbor_config_start() */
6425 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6426 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6427
6428 /* 1.a */
6429 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6430 * handover quickly by sending a Handover Failure message. */
6431 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6432 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6433 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6434 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6435
6436 /* 1.b */
6437 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6438 f_ctrs_bsc_and_bts_add(0, "handover:error");
6439
6440 /* 1.c */
6441 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6442 f_ctrs_bsc_and_bts_add(0, "handover:error");
6443
6444 /* 1.d */
6445 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6446 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6447 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6448 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6449
6450 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006451 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006452}
6453
Neels Hofmeyr91401012019-07-11 00:42:35 +02006454private function f_tc_ho_neighbor_config_2(charstring id) runs on MSC_ConnHdlr {
6455 f_tc_ho_neighbor_config_start();
6456
6457 /*
6458 * bts 0 ARFCN 871 BSIC 10
6459 * bts 1 ARFCN 871 BSIC 11
6460 * bts 2 ARFCN 871 BSIC 12
6461 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6462 */
6463
6464 log("f_tc_ho_neighbor_config: 2. explicit local neighbor: 'neighbor bts 1'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006465 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006466 f_sleep(0.5);
6467
6468 f_probe_for_handover("2.a", "HO to bts 1 works, explicitly listed as neighbor",
6469 "handover any to arfcn 871 bsic 11",
6470 true);
6471
6472 f_probe_for_handover("2.b", "HO to bts 2 doesn't work, not listed as neighbor",
6473 "handover any to arfcn 871 bsic 12",
6474 false);
6475}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006476testcase TC_ho_neighbor_config_2() runs on test_CT {
6477 var MSC_ConnHdlr vc_conn;
6478 f_init(3, true, guard_timeout := 50.0);
6479 f_sleep(1.0);
6480 f_ctrs_bsc_and_bts_init();
6481 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_2));
6482 vc_conn.done;
6483
6484 /* f_tc_ho_neighbor_config_start() */
6485 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6486 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6487
6488 /* 2.a */
6489 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6490 * handover quickly by sending a Handover Failure message. */
6491 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6492 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6493 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6494 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6495
6496 /* 2.b */
6497 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6498 f_ctrs_bsc_and_bts_add(0, "handover:error");
6499
6500 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006501 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006502}
6503
Neels Hofmeyr91401012019-07-11 00:42:35 +02006504private function f_tc_ho_neighbor_config_3(charstring id) runs on MSC_ConnHdlr {
6505 f_tc_ho_neighbor_config_start();
6506
6507 /*
6508 * bts 0 ARFCN 871 BSIC 10
6509 * bts 1 ARFCN 871 BSIC 11
6510 * bts 2 ARFCN 871 BSIC 12
6511 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6512 */
6513
6514 log("f_tc_ho_neighbor_config: 3. explicit local neighbor: 'neighbor bts 2'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006515 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006516 f_sleep(0.5);
6517
6518 f_probe_for_handover("3.a", "HO to bts 1 doesn't work, not listed as neighbor",
6519 "handover any to arfcn 871 bsic 11",
6520 false);
6521 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",
6522 "handover any to arfcn 871 bsic 12",
6523 true);
6524}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006525testcase TC_ho_neighbor_config_3() runs on test_CT {
6526 var MSC_ConnHdlr vc_conn;
6527 f_init(3, true, guard_timeout := 50.0);
6528 f_sleep(1.0);
6529 f_ctrs_bsc_and_bts_init();
6530 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_3));
6531 vc_conn.done;
6532
6533 /* f_tc_ho_neighbor_config_start() */
6534 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6535 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6536
6537 /* 3.a */
6538 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6539 f_ctrs_bsc_and_bts_add(0, "handover:error");
6540
6541 /* 3.b */
6542 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6543 * handover quickly by sending a Handover Failure message. */
6544 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6545 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6546 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6547 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6548
6549 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006550 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006551}
6552
Neels Hofmeyr91401012019-07-11 00:42:35 +02006553private function f_tc_ho_neighbor_config_4(charstring id) runs on MSC_ConnHdlr {
6554 f_tc_ho_neighbor_config_start();
6555
6556 /*
6557 * bts 0 ARFCN 871 BSIC 10
6558 * bts 1 ARFCN 871 BSIC 11
6559 * bts 2 ARFCN 871 BSIC 12
6560 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6561 */
6562
6563 log("f_tc_ho_neighbor_config: 4. explicit remote neighbor: 'neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006564 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006565 f_sleep(0.5);
6566
6567 f_probe_for_handover("4.a", "HO to bts 1 doesn't work, not listed as neighbor",
6568 "handover any to arfcn 871 bsic 11",
6569 false);
6570 f_probe_for_handover("4.b", "HO to bts 2 doesn't work, not listed as neighbor",
6571 "handover any to arfcn 871 bsic 12",
6572 false);
6573 f_probe_for_handover("4.c", "HO to 123-45 triggers inter-BSC HO",
6574 "handover any to arfcn 123 bsic 45",
6575 true, true);
6576}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006577testcase TC_ho_neighbor_config_4() runs on test_CT {
6578 var MSC_ConnHdlr vc_conn;
6579 f_init(3, true, guard_timeout := 50.0);
6580 f_sleep(1.0);
6581 f_ctrs_bsc_and_bts_init();
6582 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_4));
6583 vc_conn.done;
6584
6585 /* f_tc_ho_neighbor_config_start() */
6586 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6587 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6588
6589 /* 4.a */
6590 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6591 f_ctrs_bsc_and_bts_add(0, "handover:error");
6592
6593 /* 4.b */
6594 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6595 f_ctrs_bsc_and_bts_add(0, "handover:error");
6596
6597 /* 4.c */
6598 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6599 * handover quickly by timing out after the Handover Required message */
6600 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6601 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6602 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6603 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6604
6605 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006606 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006607}
6608
Neels Hofmeyr91401012019-07-11 00:42:35 +02006609private function f_tc_ho_neighbor_config_5(charstring id) runs on MSC_ConnHdlr {
6610 f_tc_ho_neighbor_config_start();
6611
6612 /*
6613 * bts 0 ARFCN 871 BSIC 10
6614 * bts 1 ARFCN 871 BSIC 11
6615 * bts 2 ARFCN 871 BSIC 12
6616 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6617 */
6618
6619 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 +02006620 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006621 f_sleep(0.5);
6622
6623 f_probe_for_handover("5.a", "HO to 871-12 triggers inter-BSC HO (ignoring local cells with same ARFCN+BSIC)",
6624 "handover any to arfcn 871 bsic 12",
6625 true, true);
6626}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006627testcase TC_ho_neighbor_config_5() runs on test_CT {
6628 var MSC_ConnHdlr vc_conn;
6629 f_init(3, true);
6630 f_sleep(1.0);
6631 f_ctrs_bsc_and_bts_init();
6632 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_5));
6633 vc_conn.done;
6634
6635 /* f_tc_ho_neighbor_config_start() */
6636 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6637 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6638
6639 /* 5 */
6640 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6641 * handover quickly by timing out after the Handover Required message */
6642 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6643 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6644 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6645 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6646
6647 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006648 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006649}
6650
Neels Hofmeyr91401012019-07-11 00:42:35 +02006651private function f_tc_ho_neighbor_config_6(charstring id) runs on MSC_ConnHdlr {
6652 f_tc_ho_neighbor_config_start();
6653
6654 /*
6655 * bts 0 ARFCN 871 BSIC 10
6656 * bts 1 ARFCN 871 BSIC 11
6657 * bts 2 ARFCN 871 BSIC 12
6658 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6659 */
6660
6661 log("f_tc_ho_neighbor_config: 6. config error: explicit local and remote neighbors with ambiguous ARFCN+BSIC:"
6662 & " 'neighbor bts 2; neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006663 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006664 f_sleep(0.5);
6665
6666 f_probe_for_handover("6.a", "HO to 871-12 is ambiguous = error",
6667 "handover any to arfcn 871 bsic 12",
6668 false);
6669}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006670testcase TC_ho_neighbor_config_6() runs on test_CT {
6671 var MSC_ConnHdlr vc_conn;
6672 f_init(3, true);
6673 f_sleep(1.0);
6674 f_ctrs_bsc_and_bts_init();
6675 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_6));
6676 vc_conn.done;
6677
6678 /* f_tc_ho_neighbor_config_start() */
6679 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6680 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6681
6682 /* 6.a */
6683 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6684 * handover quickly by timing out after the Handover Required message */
6685 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6686 f_ctrs_bsc_and_bts_add(0, "handover:error");
6687
6688 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006689 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006690}
6691
Neels Hofmeyr91401012019-07-11 00:42:35 +02006692private function f_tc_ho_neighbor_config_7(charstring id) runs on MSC_ConnHdlr {
6693 f_tc_ho_neighbor_config_start();
6694
6695 /*
6696 * bts 0 ARFCN 871 BSIC 10
6697 * bts 1 ARFCN 871 BSIC 11
6698 * bts 2 ARFCN 871 BSIC 12
6699 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6700 */
6701
6702 log("f_tc_ho_neighbor_config: 7. explicit local and remote neighbors:"
6703 & " 'neighbor bts 2; neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006704 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006705 f_sleep(0.5);
6706
6707 f_probe_for_handover("7.a", "HO to 871-12 does HO to bts 2",
6708 "handover any to arfcn 871 bsic 12",
6709 true);
6710 f_probe_for_handover("7.b", "HO to 123-45 triggers inter-BSC HO",
6711 "handover any to arfcn 123 bsic 45",
6712 true, true);
6713}
Neels Hofmeyr91401012019-07-11 00:42:35 +02006714testcase TC_ho_neighbor_config_7() runs on test_CT {
6715 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf2b88032020-06-16 00:35:04 +02006716 f_init(3, true, guard_timeout := 50.0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006717 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006718 f_ctrs_bsc_and_bts_init();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006719 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_7));
6720 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006721
6722 /* f_tc_ho_neighbor_config_start() */
6723 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6724 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6725
6726 /* 7.a */
6727 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6728 * handover quickly by sending a Handover Failure message. */
6729 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6730 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6731 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6732 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6733
6734 /* 7.b */
6735 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6736 * handover quickly by timing out after the Handover Required message */
6737 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6738 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6739 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6740 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6741
6742 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006743 f_shutdown_helper();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006744}
6745
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006746/* OS#3041: Open and close N connections in a normal fashion, and expect no
6747 * BSSMAP Reset just because of that. */
6748testcase TC_bssap_rlsd_does_not_cause_bssmap_reset() runs on test_CT {
6749 var default d;
6750 var integer i;
6751 var DchanTuple dt;
6752
6753 f_init();
6754
6755 /* Wait for initial BSSMAP Reset to pass */
6756 f_sleep(4.0);
6757
6758 d := activate(no_bssmap_reset());
6759
6760 /* Setup up a number of connections and RLSD them again from the MSC
6761 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6762 * Let's do it some more times for good measure. */
Harald Weltec3260d92018-06-11 17:48:16 +02006763 for (i := 0; i < 4; i := i+1) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006764 /* Since we're doing a lot of runs, give each one a fresh
6765 * T_guard from the top. */
6766 T_guard.start;
6767
6768 /* Setup a BSSAP connection and clear it right away. This is
6769 * the MSC telling the BSC about a planned release, it's not an
6770 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006771 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006772
6773 /* MSC disconnects (RLSD). */
6774 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
6775 }
6776
6777 /* In the buggy behavior, a timeout of 2 seconds happens between above
6778 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6779 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6780 f_sleep(4.0);
6781
6782 deactivate(d);
6783 f_shutdown_helper();
6784}
Harald Welte552620d2017-12-16 23:21:36 +01006785
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006786/* OS#3041: Open and close N connections in a normal fashion, and expect no
6787 * BSSMAP Reset just because of that. Invoke the release by a BSSMAP Clear from
6788 * the MSC. */
6789testcase TC_bssmap_clear_does_not_cause_bssmap_reset() runs on test_CT {
6790 var default d;
6791 var integer i;
6792 var DchanTuple dt;
6793 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006794 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_CALL_CONTROL;
6795 var BssmapCause cause := enum2int(cause_val);
6796
6797 f_init();
6798
6799 /* Wait for initial BSSMAP Reset to pass */
6800 f_sleep(4.0);
6801
6802 d := activate(no_bssmap_reset());
6803
6804 /* Setup up a number of connections and RLSD them again from the MSC
6805 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6806 * Let's do it some more times for good measure. */
6807 for (i := 0; i < 8; i := i+1) {
6808 /* Since we're doing a lot of runs, give each one a fresh
6809 * T_guard from the top. */
6810 T_guard.start;
6811
6812 /* Setup a BSSAP connection and clear it right away. This is
6813 * the MSC telling the BSC about a planned release, it's not an
6814 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006815 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006816
6817 /* Instruct BSC to clear channel */
6818 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6819
6820 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006821 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006822 }
6823
6824 /* In the buggy behavior, a timeout of 2 seconds happens between above
6825 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6826 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6827 f_sleep(4.0);
6828
6829 deactivate(d);
6830 f_shutdown_helper();
6831}
6832
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006833/* OS#3041: Open and close N connections in a normal fashion, and expect no
6834 * BSSMAP Reset just because of that. Close connections from the MS side with a
6835 * Release Ind on RSL. */
6836testcase TC_ms_rel_ind_does_not_cause_bssmap_reset() runs on test_CT {
6837 var default d;
6838 var integer i;
6839 var DchanTuple dt;
6840 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006841 var integer j;
6842
6843 f_init();
6844
6845 /* Wait for initial BSSMAP Reset to pass */
6846 f_sleep(4.0);
6847
6848 d := activate(no_bssmap_reset());
6849
6850 /* Setup up a number of connections and RLSD them again from the MSC
6851 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6852 * Let's do it some more times for good measure. */
6853 for (i := 0; i < 8; i := i+1) {
6854 /* Since we're doing a lot of runs, give each one a fresh
6855 * T_guard from the top. */
6856 T_guard.start;
6857
6858 /* Setup a BSSAP connection and clear it right away. This is
6859 * the MSC telling the BSC about a planned release, it's not an
6860 * erratic loss of a connection. */
6861 dt := f_est_dchan('23'O, 23, '00010203040506'O);
6862
6863 /* simulate RLL REL IND */
6864 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
6865
6866 /* expect Clear Request on MSC side */
6867 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
6868
6869 /* Instruct BSC to clear channel */
6870 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
6871 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6872
6873 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006874 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006875 }
6876
6877 /* In the buggy behavior, a timeout of 2 seconds happens between above
6878 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6879 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6880 f_sleep(4.0);
6881
6882 deactivate(d);
6883 f_shutdown_helper();
6884}
6885
Harald Welte94e0c342018-04-07 11:33:23 +02006886/***********************************************************************
6887 * IPA style dynamic PDCH
6888 ***********************************************************************/
6889
6890private function f_dyn_ipa_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6891 template (omit) RSL_Cause nack := omit)
6892runs on test_CT {
6893 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6894 var RSL_Message rsl_unused;
6895 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6896 f_vty_ts_action("pdch activate", bts_nr, trx_nr, ts_nr);
6897 /* expect the BSC to issue the related RSL command */
6898 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6899 if (istemplatekind(nack, "omit")) {
6900 /* respond with a related acknowledgement */
6901 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6902 } else {
6903 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_NACK(chan_nr, valueof(nack)));
6904 }
6905}
6906
6907private function f_dyn_ipa_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6908 template (omit) RSL_Cause nack := omit)
6909runs on test_CT {
6910 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6911 var RSL_Message rsl_unused;
6912 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6913 f_vty_ts_action("pdch deactivate", bts_nr, trx_nr, ts_nr);
6914 /* expect the BSC to issue the related RSL command */
6915 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_DEACT(chan_nr));
6916 if (istemplatekind(nack, "omit")) {
6917 /* respond with a related acknowledgement */
6918 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_ACK(chan_nr));
6919 } else {
6920 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_NACK(chan_nr, valueof(nack)));
6921 }
6922}
6923
6924private function f_ts_dyn_mode_get(integer bts_nr, integer trx_nr, integer ts_nr)
6925runs on test_CT return charstring {
6926 var charstring cmd, resp;
6927 cmd := "show timeslot "&int2str(bts_nr)&" "&int2str(trx_nr)&" "&int2str(ts_nr);
Stefan Sperlingcff13562018-11-13 15:24:06 +01006928 return f_vty_transceive_match_regexp_retry(BSCVTY, cmd, "*\((*)\)*", 0, 4, 1.0);
Harald Welte94e0c342018-04-07 11:33:23 +02006929}
6930
6931private function f_ts_dyn_mode_assert(integer bts_nr, integer trx_nr, integer ts_nr,
6932 template charstring exp)
6933runs on test_CT {
6934 var charstring mode := f_ts_dyn_mode_get(bts_nr, trx_nr, ts_nr);
6935 if (not match(mode, exp)) {
6936 setverdict(fail, "Unexpected TS Mode: ", mode);
Daniel Willmannafce8662018-07-06 23:11:32 +02006937 mtc.stop;
Harald Welte94e0c342018-04-07 11:33:23 +02006938 }
6939}
6940
6941private function f_ts_set_chcomb(integer bts_nr, integer trx_nr, integer ts_nr, charstring chcomb)
6942runs on test_CT {
6943 f_vty_enter_cfg_ts(BSCVTY, bts_nr, trx_nr, ts_nr);
6944 f_vty_transceive(BSCVTY, "phys_chan_config " & chcomb);
6945 f_vty_transceive(BSCVTY, "end");
6946}
6947
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02006948
6949private function f_ts_reset_chcomb(integer bts_nr) runs on test_CT {
6950 var integer i;
6951 for (i := 0; i < 8; i := i + 1) {
6952 f_ts_set_chcomb(bts_nr, 0, i, phys_chan_config[i]);
6953 }
6954}
6955
Harald Welte94e0c342018-04-07 11:33:23 +02006956private const charstring TCHF_MODE := "TCH/F mode";
6957private const charstring TCHH_MODE := "TCH/H mode";
6958private const charstring PDCH_MODE := "PDCH mode";
6959private const charstring NONE_MODE := "NONE mode";
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006960private const charstring SDCCH8_MODE := "SDCCH8 mode";
Harald Welte94e0c342018-04-07 11:33:23 +02006961
6962/* Test IPA PDCH activation / deactivation triggered by VTY */
6963testcase TC_dyn_pdch_ipa_act_deact() runs on test_CT {
6964 var RSL_Message rsl_unused;
6965
6966 /* change Timeslot 6 before f_init() starts RSL */
6967 f_init_vty();
6968 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6969 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6970
6971 f_init(1, false);
6972 f_sleep(1.0);
6973
6974 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6975
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006976 log("TCH/F_PDCH pchan starts out in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006977 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6978 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6979 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6980 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6981 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006982 log("TCH/F_PDCH pchan, PDCH ACT was ACKed, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006983 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6984
6985 /* De-activate it via VTY */
6986 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6987 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006988 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006989 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6990
6991 /* re-activate it via VTY */
6992 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn);
6993 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006994 log("TCH/F_PDCH pchan, PDCH ACT via VTY, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006995 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6996
6997 /* and finally de-activate it again */
6998 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6999 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007000 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007001 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7002
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007003 /* clean up config */
7004 f_ts_set_chcomb(0, 0, 6, "PDCH");
7005
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007006 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007007}
7008
7009/* Test IPA PDCH activation NACK */
7010testcase TC_dyn_pdch_ipa_act_nack() runs on test_CT {
7011 var RSL_Message rsl_unused;
7012
7013 /* change Timeslot 6 before f_init() starts RSL */
7014 f_init_vty();
7015 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
7016 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7017
7018 f_init(1, false);
7019 f_sleep(1.0);
7020
7021 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
7022
7023 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7024 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7025 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
7026 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
7027 f_sleep(1.0);
7028 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7029
7030 /* De-activate it via VTY */
7031 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7032 f_sleep(1.0);
7033 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7034
7035 /* re-activate it via VTY, but fail that; check BSC still assumes TCH/F mode */
7036 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn, RSL_ERR_EQUIPMENT_FAIL);
7037 f_sleep(1.0);
7038 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7039
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007040 /* clean up config */
7041 f_ts_set_chcomb(0, 0, 6, "PDCH");
7042
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007043 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007044}
7045
7046
7047/***********************************************************************
7048 * Osmocom style dynamic PDCH
7049 ***********************************************************************/
7050
7051private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
7052 template (omit) RSL_Cause nack := omit)
7053runs on test_CT {
7054 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7055 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007056 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007057 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7058 /* expect the BSC to issue the related RSL command */
7059 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
7060 if (istemplatekind(nack, "omit")) {
7061 /* respond with a related acknowledgement */
7062 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7063 } else {
7064 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, valueof(nack)));
7065 }
7066}
7067
7068private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
7069 template (omit) RSL_Cause nack := omit)
7070runs on test_CT {
7071 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7072 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007073 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007074 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7075 /* expect the BSC to issue the related RSL command */
7076 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
7077 if (istemplatekind(nack, "omit")) {
7078 /* respond with a related acknowledgement */
7079 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
7080 } else {
7081 //f_ipa_tx(0, ts_RSL_RF_CHAN_REL_NACK(chan_nr, valueof(nack)));
7082 }
7083}
7084
7085/* Test Osmocom dyn PDCH activation / deactivation triggered by VTY */
7086testcase TC_dyn_pdch_osmo_act_deact() runs on test_CT {
7087 var RSL_Message rsl_unused;
7088
7089 /* change Timeslot 6 before f_init() starts RSL */
7090 f_init_vty();
7091 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7092 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7093
7094 f_init(1, false);
7095 f_sleep(1.0);
7096
7097 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7098
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007099 log("TCH/F_TCH/H_PDCH pchan starts out in disabled mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007100 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7101 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7102 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7103
7104 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7105 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007106 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 +02007107 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7108
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007109 /* clean up config */
7110 f_ts_set_chcomb(0, 0, 6, "PDCH");
7111
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007112 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007113}
7114
7115/* Test Osmocom dyn PDCH activation NACK behavior */
7116testcase TC_dyn_pdch_osmo_act_nack() runs on test_CT {
7117 var RSL_Message rsl_unused;
7118
7119 /* change Timeslot 6 before f_init() starts RSL */
7120 f_init_vty();
7121 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7122 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7123
7124 f_init(1, false);
7125 f_sleep(1.0);
7126
7127 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7128
7129 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7130 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7131 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7132
7133 /* NACK this activation and expect the "show timeslot" mode still to be NONE */
7134 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7135 f_sleep(1.0);
7136 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7137
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007138 /* clean up config */
7139 f_ts_set_chcomb(0, 0, 6, "PDCH");
7140
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007141 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007142}
7143
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02007144/* Test Osmocom dyn TS SDCCH8 activation / deactivation */
7145testcase TC_dyn_ts_sdcch8_act_deact() runs on test_CT {
7146 var RSL_Message rsl_unused, rsl_msg;
7147 var DchanTuple dt;
7148 var BSSAP_N_CONNECT_ind rx_c_ind;
7149
7150 /* change Timeslot 6 before f_init() starts RSL */
7151 f_init_vty();
7152 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7153 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7154
7155 f_init(1, false);
7156 f_sleep(1.0);
7157
7158 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7159
7160 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7161 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7162 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7163 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7164
7165 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7166 f_sleep(1.0);
7167 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7168 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7169
7170 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7171 * on CCCH+SDCCH4+CBCH) */
7172 var integer i;
7173 for (i := 0; i < 3; i := i + 1) {
7174 dt := f_est_dchan('23'O, i, '00010203040506'O);
7175 }
7176
7177 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7178 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7179 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7180 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7181
7182 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7183 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7184
7185 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7186 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7187 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7188 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7189
7190 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7191 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7192 dt.sccp_conn_id := rx_c_ind.connectionId;
7193 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7194
7195 /* Instruct BSC to clear channel */
7196 var BssmapCause cause := 0;
7197 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7198 f_exp_chan_rel_and_clear(dt, 0);
7199
7200 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7201 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7202 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7203 f_sleep(1.0);
7204 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7205
7206 /* clean up config */
7207 f_ts_set_chcomb(0, 0, 6, "PDCH");
7208
7209 f_shutdown_helper();
7210}
7211
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007212/* Test Osmocom dyn TS SDCCH8 activation / deactivation: If activating dyn TS as
7213 SDCCH8 would end up in having no free TCH, then BSC should decide to activate
7214 it as TCH directly instead. SYS#5309. */
7215testcase TC_dyn_ts_sdcch8_tch_call_act_deact() runs on test_CT {
7216 var RSL_Message rsl_unused, rsl_msg;
7217 var DchanTuple dt;
7218 var BSSAP_N_CONNECT_ind rx_c_ind;
7219 var integer i;
7220
7221 /* change Timeslot 6 before f_init() starts RSL */
7222 f_init_vty();
7223 for (i := 1; i < 8; i := i + 1) {
7224 if (i == 6) {
7225 f_ts_set_chcomb(0, 0, i, "TCH/F_TCH/H_SDCCH8_PDCH");
7226 } else {
7227 f_ts_set_chcomb(0, 0, i, "PDCH");
7228 }
7229 }
7230 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7231
7232 f_init(1, false);
7233 f_sleep(1.0);
7234
7235 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7236
7237 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7238 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7239 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7240 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7241
7242 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7243 f_sleep(1.0);
7244 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7245 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7246
7247 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7248 * on CCCH+SDCCH4+CBCH) */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007249 var OCT1 ra := '43'O; /* RA containing reason=originating speech call*/
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007250 for (i := 0; i < 3; i := i + 1) {
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007251 dt := f_est_dchan(ra, i, '00010203040506'O);
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007252 }
7253
7254 /* Now the dyn ts is selected. First PDCH is released, then TCH chan is activated */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007255 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int(ra) + i, 1), 2342));
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007256 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7257 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7258
7259 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7260 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7261
7262 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7263 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7264 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7265 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7266
7267 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7268 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7269 dt.sccp_conn_id := rx_c_ind.connectionId;
7270 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7271
7272 /* Instruct BSC to clear channel */
7273 var BssmapCause cause := 0;
7274 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7275 f_exp_chan_rel_and_clear(dt, 0);
7276
7277 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7278 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7279 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7280 f_sleep(1.0);
7281 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7282
7283 /* clean up config */
7284 f_ts_reset_chcomb(0);
7285 /* TODO: clean up other channels? */
7286
7287 f_shutdown_helper();
7288}
7289
Pau Espin Pedrolcdf26142021-06-28 17:14:03 +02007290/* Test Osmocom dyn TS SDCCH8 activation / deactivation when SDCCH fails at BTS */
7291testcase TC_dyn_ts_sdcch8_act_nack() runs on test_CT {
7292 var RSL_Message rsl_unused, rsl_msg;
7293 var DchanTuple dt;
7294 var BSSAP_N_CONNECT_ind rx_c_ind;
7295 var GsmRrMessage rr;
7296
7297 /* change Timeslot 6 before f_init() starts RSL */
7298 f_init_vty();
7299 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7300 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7301
7302 f_init(1, false);
7303 f_sleep(1.0);
7304
7305 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7306
7307 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7308 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7309 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7310 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7311
7312 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7313 f_sleep(1.0);
7314 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7315 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7316
7317 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7318 * on CCCH+SDCCH4+CBCH) */
7319 var integer i;
7320 for (i := 0; i < 3; i := i + 1) {
7321 dt := f_est_dchan('23'O, i, '00010203040506'O);
7322 }
7323
7324 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7325 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7326 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7327 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7328
7329 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7330 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7331
7332 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7333 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(dt.rsl_chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7334 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7335 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
7336 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
7337 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Expected reject");
7338 }
7339
7340 /* FIXME? Currently the TS stays in state BORKEN: */
7341
7342 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7343 /* rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7344 * f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7345 * f_sleep(1.0);
7346 * f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE)
7347 */
7348
7349 /* clean up config */
7350 f_ts_set_chcomb(0, 0, 6, "PDCH");
7351
7352 f_shutdown_helper();
7353}
7354
Stefan Sperling0796a822018-10-05 13:01:39 +02007355testcase TC_chopped_ipa_ping() runs on test_CT {
Stefan Sperling554123f2018-10-09 14:12:30 +02007356 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port, mp_bsc_ctrl_port};
Stefan Sperling0796a822018-10-05 13:01:39 +02007357 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7358 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7359 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007360 f_shutdown_helper();
Stefan Sperling0796a822018-10-05 13:01:39 +02007361}
7362
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007363testcase TC_chopped_ipa_payload() runs on test_CT {
7364 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port
7365 /* TODO: mp_bsc_ctrl_port does not work yet */};
7366 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7367 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7368 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007369 f_shutdown_helper();
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007370}
7371
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007372/* Verify the BSC sends the MS Power Parameters IE during CHAN ACT to make sure
7373 the BTS does autonomous MS power control loop */
7374testcase TC_assignment_verify_ms_power_params_ie() runs on test_CT {
7375 var MSC_ConnHdlr vc_conn;
7376 var TestHdlrParams pars := f_gen_test_hdlr_pars();
7377 //pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
7378 pars.exp_ms_power_params := true;
7379
7380 f_init(1, true);
7381 f_sleep(1.0);
7382 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
7383 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007384 f_shutdown_helper();
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007385}
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007386
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02007387/* Verify activation and deactivation of the BCCH carrier power reduction mode */
7388testcase TC_c0_power_red_mode() runs on test_CT {
7389 f_init(1);
7390
7391 for (var integer red := 6; red >= 0; red := red - 2) {
7392 /* Configure BCCH carrier power reduction mode via the VTY */
7393 f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
7394
7395 /* Expect Osmocom specific BS Power Control message on the RSL */
7396 var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
7397 chan_nr := t_RslChanNr_BCCH(0),
7398 bs_power := tr_RSL_IE_BS_Power(red / 2));
7399 tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
7400 var RSL_Message unused := f_exp_ipa_rx(0, tr_rsl_pdu);
7401
7402 /* Additionally verify the applied value over the CTRL interface */
7403 var CtrlValue cred := f_ctrl_get_bts(IPA_CTRL, 0, "c0-power-reduction");
7404 if (cred != int2str(red)) {
7405 setverdict(fail, "Unexpected BCCH carrier power reduction value ",
7406 cred, " (expected ", red, ")");
7407 }
7408 }
7409
7410 f_shutdown_helper();
7411}
7412
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007413/***********************************************************************
7414 * MSC Pooling
7415 ***********************************************************************/
7416
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007417template MobileIdentityLV ts_MI_TMSI_NRI_LV(integer nri_v, integer nri_bitlen := 10) :=
Harald Weltebf397612021-01-14 20:39:46 +01007418 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 +02007419
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007420private 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 +02007421runs on MSC_ConnHdlr {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007422 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007423 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007424 f_logp(BSCVTY, "Got RSL RR Release");
7425 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007426 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007427 f_logp(BSCVTY, "Got RSL Deact SACCH");
7428 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007429 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007430 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007431 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7432 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007433 break;
7434 }
7435 }
7436}
7437
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007438friend function f_perform_clear(RSL_DCHAN_PT rsl_pt := RSL, RSLEM_PROC_PT rsl_proc_pt := RSL_PROC,
7439 template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007440runs on MSC_ConnHdlr {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007441 f_logp(BSCVTY, "MSC instructs BSC to clear channel");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007442 BSSAP.send(ts_BSSMAP_ClearCommand(0));
7443 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007444 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007445 f_logp(BSCVTY, "Got RSL RR Release");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007446 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007447 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007448 f_logp(BSCVTY, "Got RSL Deact SACCH");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007449 }
7450 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007451 f_logp(BSCVTY, "Got BSSMAP Clear Complete");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007452 /* Also drop the SCCP connection */
7453 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
7454 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007455 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007456 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007457 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7458 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007459 }
7460 }
7461}
7462
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007463private function f_perform_compl_l3(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt,
7464 template PDU_ML3_MS_NW l3_info, boolean do_clear := true, boolean expect_bssmap_l3 := true)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007465runs on MSC_ConnHdlr {
7466 timer T := 10.0;
7467 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(l3_info));
7468
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007469 f_logp(BSCVTY, "establish channel, send Complete Layer 3 Info");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007470 f_create_bssmap_exp(l3_enc);
7471
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007472 /* RSL_Emulation.f_chan_est() on rsl_pt:
7473 * This is basically code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007474 * RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
7475 */
7476 var RSL_Message rx_rsl;
7477 var GsmRrMessage rr;
7478
7479 /* request a channel to be established */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007480 rsl_pt.send(ts_RSLDC_ChanRqd(g_pars.ra, g_pars.fn));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007481 /* expect immediate assignment.
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007482 * Code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007483 * rx_rsl := f_rx_or_fail(tr_RSL_IMM_ASSIGN);
7484 */
7485 timer Tt := 10.0;
7486
7487 /* request a channel to be established */
7488 Tt.start;
7489 alt {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007490 [] rsl_pt.receive(tr_RSL_IMM_ASSIGN) -> value rx_rsl {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007491 Tt.stop;
7492 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007493 [] rsl_pt.receive {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007494 setverdict(fail, "Unexpected RSL message on DCHAN");
7495 mtc.stop;
7496 }
7497 [] Tt.timeout {
7498 setverdict(fail, "Timeout waiting for RSL on DCHAN");
7499 mtc.stop;
7500 }
7501 }
7502 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
7503 g_chan_nr := rr.payload.imm_ass.chan_desc.chan_nr;
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007504 rsl_pt.send(ts_RSL_EST_IND(g_chan_nr, valueof(g_pars.link_id), l3_enc));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007505
7506
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007507 if (expect_bssmap_l3) {
7508 f_logp(BSCVTY, "expect BSSAP Complete Layer 3 Info at MSC");
7509 var template PDU_BSSAP exp_l3_compl;
7510 exp_l3_compl := tr_BSSMAP_ComplL3()
7511 if (g_pars.aoip == false) {
7512 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
7513 } else {
7514 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
7515 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007516
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007517 var PDU_BSSAP bssap;
7518 T.start;
7519 alt {
7520 [] BSSAP.receive(exp_l3_compl) -> value bssap {
7521 f_logp(BSCVTY, "received expected Complete Layer 3 Info at MSC");
7522 log("rx exp_l3_compl = ", bssap);
7523 }
7524 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
7525 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
7526 }
7527 [] T.timeout {
7528 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
7529 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007530 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007531
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007532 /* start ciphering, if requested */
7533 if (ispresent(g_pars.encr)) {
7534 f_logp(BSCVTY, "start ciphering");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007535 f_cipher_mode(g_pars.encr, rsl_pt := rsl_pt, rsl_proc_pt := rsl_proc_pt);
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007536 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007537 }
7538
7539 if (do_clear) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007540 f_perform_clear(rsl_pt, rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007541 }
7542 setverdict(pass);
7543 f_sleep(1.0);
7544}
7545
7546private function f_tc_mscpool_compl_l3(charstring id) runs on MSC_ConnHdlr {
7547 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7548 if (g_pars.mscpool.rsl_idx == 0) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007549 f_perform_compl_l3(RSL, RSL_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007550 } else if (g_pars.mscpool.rsl_idx == 1) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007551 f_perform_compl_l3(RSL1, RSL1_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007552 } else if (g_pars.mscpool.rsl_idx == 2) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007553 f_perform_compl_l3(RSL2, RSL2_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007554 }
7555}
7556
7557/* Various Complete Layer 3 by IMSI all end up with the first MSC, because the other MSCs are not connected. */
7558private function f_tc_mscpool_L3Compl_on_1_msc(charstring id) runs on MSC_ConnHdlr {
7559 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007560 f_perform_compl_l3(RSL, RSL_PROC, ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O) );
7561 f_perform_compl_l3(RSL, RSL_PROC, ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_IMSI_LV('001010000000002'H))) );
7562 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))) );
7563 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 +02007564}
7565testcase TC_mscpool_L3Compl_on_1_msc() runs on test_CT {
7566
7567 f_init(1, true);
7568 f_sleep(1.0);
7569 var MSC_ConnHdlr vc_conn;
7570 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007571
7572 f_ctrs_msc_init();
7573
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007574 vc_conn := f_start_handler(refers(f_tc_mscpool_L3Compl_on_1_msc), pars);
7575 vc_conn.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007576
7577 f_ctrs_msc_expect(0, "mscpool:subscr:new", 4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007578 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007579}
7580
7581/* Three Layer 3 Complete by IMSI are round-robin'ed across two connected MSCs */
7582/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7583 * just as well using only RSL. */
7584testcase TC_mscpool_L3Complete_by_imsi_round_robin() runs on test_CT {
7585
7586 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7587 f_sleep(1.0);
7588
7589 /* Control which MSC gets chosen next by the round-robin, otherwise
7590 * would be randomly affected by which other tests ran before this. */
7591 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7592
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007593 f_ctrs_msc_init();
7594
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007595 var MSC_ConnHdlr vc_conn1;
7596 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7597 pars1.mscpool.rsl_idx := 0;
7598 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7599 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7600 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007601 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007602
7603 var MSC_ConnHdlr vc_conn2;
7604 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7605 pars2.mscpool.rsl_idx := 1;
7606 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7607 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7608 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007609 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007610
7611 /* Test round-robin wrap to the first MSC */
7612 var MSC_ConnHdlr vc_conn3;
7613 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7614 pars3.mscpool.rsl_idx := 2;
7615 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7616 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7617 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007618 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007619 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007620}
7621
7622/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 0
7623 * (configured in osmo-bsc.cfg). */
7624/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7625 * just as well using only RSL. */
7626testcase TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() runs on test_CT {
7627
7628 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7629 f_sleep(1.0);
7630
7631 /* Control which MSC gets chosen next by the round-robin, otherwise
7632 * would be randomly affected by which other tests ran before this. */
7633 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7634
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007635 f_ctrs_msc_init();
7636
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007637 var MSC_ConnHdlr vc_conn1;
7638 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7639 pars1.mscpool.rsl_idx := 0;
7640 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7641 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7642 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007643 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007644
7645 var MSC_ConnHdlr vc_conn2;
7646 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7647 pars2.mscpool.rsl_idx := 1;
7648 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7649 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7650 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007651 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007652
7653 /* Test round-robin wrap to the first MSC */
7654 var MSC_ConnHdlr vc_conn3;
7655 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7656 pars3.mscpool.rsl_idx := 2;
7657 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7658 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7659 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007660 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007661 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007662}
7663
7664/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 1
7665 * (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
7666 * NULL-NRI setting is stronger than that. */
7667/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7668 * just as well using only RSL. */
7669testcase TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() runs on test_CT {
7670
7671 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7672 f_sleep(1.0);
7673
7674 /* Control which MSC gets chosen next by the round-robin, otherwise
7675 * would be randomly affected by which other tests ran before this. */
7676 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7677
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007678 f_ctrs_msc_init();
7679
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007680 var MSC_ConnHdlr vc_conn1;
7681 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7682 pars1.mscpool.rsl_idx := 0;
7683 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7684 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7685 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007686 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007687
7688 var MSC_ConnHdlr vc_conn2;
7689 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7690 pars2.mscpool.rsl_idx := 1;
7691 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7692 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7693 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007694 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007695
7696 /* Test round-robin wrap to the first MSC */
7697 var MSC_ConnHdlr vc_conn3;
7698 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7699 pars3.mscpool.rsl_idx := 2;
7700 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7701 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7702 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007703 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007704 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007705}
7706
7707/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI not
7708 * assigned to any MSC (configured in osmo-bsc.cfg). */
7709/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7710 * just as well using only RSL. */
7711testcase TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() runs on test_CT {
7712
7713 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7714 f_sleep(1.0);
7715
7716 /* Control which MSC gets chosen next by the round-robin, otherwise
7717 * would be randomly affected by which other tests ran before this. */
7718 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7719
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007720 f_ctrs_msc_init();
7721
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007722 var MSC_ConnHdlr vc_conn1;
7723 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7724 pars1.mscpool.rsl_idx := 0;
7725 /* An NRI that is not assigned to any MSC */
7726 pars1.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(1023))));
7727 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7728 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007729 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007730
7731 var MSC_ConnHdlr vc_conn2;
7732 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7733 pars2.mscpool.rsl_idx := 1;
7734 /* An NRI that is not assigned to any MSC */
7735 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(768)), '00F110'O));
7736 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7737 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007738 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007739
7740 /* Test round-robin wrap to the first MSC */
7741 var MSC_ConnHdlr vc_conn3;
7742 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7743 pars3.mscpool.rsl_idx := 2;
7744 /* An NRI that is not assigned to any MSC */
7745 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, valueof(ts_MI_TMSI_NRI_LV(819))));
7746 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7747 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007748 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007749 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007750}
7751
7752/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI
7753 * assigned to an MSC that is currently not connected (configured in osmo-bsc.cfg). */
7754/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7755 * just as well using only RSL. */
7756testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() runs on test_CT {
7757
7758 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7759 f_sleep(1.0);
7760
7761 /* Control which MSC gets chosen next by the round-robin, otherwise
7762 * would be randomly affected by which other tests ran before this. */
7763 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7764
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007765 f_ctrs_msc_init();
7766
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007767 var MSC_ConnHdlr vc_conn1;
7768 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7769 pars1.mscpool.rsl_idx := 0;
7770 /* An NRI that is assigned to an unconnected MSC */
7771 pars1.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(512))));
7772 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7773 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007774 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7775 f_ctrs_msc_add(0, "mscpool:subscr:new");
7776 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007777
7778 var MSC_ConnHdlr vc_conn2;
7779 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7780 pars2.mscpool.rsl_idx := 1;
7781 /* An NRI that is assigned to an unconnected MSC */
7782 pars2.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(767))));
7783 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7784 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007785 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7786 f_ctrs_msc_add(1, "mscpool:subscr:new");
7787 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007788
7789 /* Test round-robin wrap to the first MSC */
7790 var MSC_ConnHdlr vc_conn3;
7791 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7792 pars3.mscpool.rsl_idx := 2;
7793 /* An NRI that is assigned to an unconnected MSC */
7794 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(750)), '00F110'O));
7795 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7796 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007797 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7798 f_ctrs_msc_add(0, "mscpool:subscr:new");
7799 f_ctrs_msc_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007800 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007801}
7802
7803/* Three Layer 3 Complete by TMSI with valid NRI for the second MSC are all directed to the second MSC (configured in
7804 * osmo-bsc.cfg). */
7805/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7806 * just as well using only RSL. */
7807testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_1() runs on test_CT {
7808
7809 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7810 f_sleep(1.0);
7811
7812 /* All TMSIs in this test point at the second MSC, set the round robin to point at the first MSC to make sure
7813 * this is not using round-robin. */
7814 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7815
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007816 f_ctrs_msc_init();
7817
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007818 var MSC_ConnHdlr vc_conn1;
7819 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7820 pars1.mscpool.rsl_idx := 0;
7821 /* An NRI of the second MSC's range (256-511) */
7822 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(256))));
7823 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7824 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007825 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007826
7827 var MSC_ConnHdlr vc_conn2;
7828 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7829 pars2.mscpool.rsl_idx := 1;
7830 /* An NRI of the second MSC's range (256-511) */
7831 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(260))));
7832 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7833 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007834 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007835
7836 var MSC_ConnHdlr vc_conn3;
7837 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7838 pars3.mscpool.rsl_idx := 2;
7839 /* An NRI of the second MSC's range (256-511) */
7840 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(511)), '00F110'O));
7841 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7842 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007843 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007844 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007845}
7846
7847/* Layer 3 Complete by TMSI with valid NRI for the third MSC are directed to the third MSC (configured in osmo-bsc.cfg),
7848 * while a round-robin remains unaffected by that. */
7849/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7850 * just as well using only RSL. */
7851testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_2() runs on test_CT {
7852
7853 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7854 f_sleep(1.0);
7855
7856 /* All TMSIs in this test point at the third MSC, set the round robin to point at the second MSC to make sure
7857 * this is not using round-robin. */
7858 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7859
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007860 f_ctrs_msc_init();
7861
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007862 var MSC_ConnHdlr vc_conn1;
7863 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 2);
7864 pars1.mscpool.rsl_idx := 0;
7865 /* An NRI of the third MSC's range (512-767) */
7866 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(512))));
7867 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7868 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007869 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007870
7871 var MSC_ConnHdlr vc_conn2;
7872 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7873 pars2.mscpool.rsl_idx := 1;
7874 /* An NRI of the third MSC's range (512-767) */
7875 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(678))));
7876 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7877 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007878 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007879
7880 /* The above forwardings to third MSC have not affected the round robin, which still points at the second MSC */
7881 var MSC_ConnHdlr vc_conn3;
7882 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7883 pars3.mscpool.rsl_idx := 2;
7884 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000013'H)), '00F110'O));
7885 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7886 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007887 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007888 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007889}
7890
7891/* LU with a TMSI but indicating a different PLMN in its previous LAI: ignore the NRI. */
7892/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7893 * just as well using only RSL. */
7894testcase TC_mscpool_LU_by_tmsi_from_other_PLMN() runs on test_CT {
7895
7896 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7897 f_sleep(1.0);
7898
7899 /* The TMSIs in this test points at the second MSC, but since it is from a different PLMN, round-robin is used
7900 * instead, and hits msc 0. */
7901 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7902
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007903 f_ctrs_msc_init();
7904
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007905 /* An NRI of the second MSC's range (256-511), but a PLMN that doesn't match with osmo-bsc.cfg */
7906 var MSC_ConnHdlr vc_conn1;
7907 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7908 pars1.mscpool.rsl_idx := 0;
7909 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(260)), '99F999'O));
7910 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7911 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007912 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007913
7914 /* An NRI of the third MSC's range (512-767) and a matching PLMN gets directed by NRI. */
7915 var MSC_ConnHdlr vc_conn2;
7916 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7917 pars2.mscpool.rsl_idx := 1;
7918 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(555)), '00F110'O));
7919 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7920 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007921 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007922 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007923}
7924
7925/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by IMSI, which would be
7926 * round-robined to another MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7927private function f_tc_mscpool_paging_imsi(charstring id) runs on MSC_ConnHdlr {
7928 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7929 //cid_list := { cIl_allInBSS := ''O };
7930 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7931 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7932 var BSSAP_N_UNITDATA_req paging;
7933 var hexstring imsi := '001010000000123'H;
7934
7935 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7936
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007937 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007938 valueof(ts_BSSMAP_Paging(imsi, cid_list, omit, bssmap_chneed))));
7939 BSSAP.send(paging);
7940
7941 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7942 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7943 * channel number is picked here. */
7944 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7945 f_rslem_register(0, new_chan_nr);
7946 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(imsi)));
7947 f_rslem_unregister(0, new_chan_nr);
7948
7949 /* Despite the round robin pointing at the second MSC ('roundrobin next 1'), the earlier Paging for the same IMSI
7950 * causes this Paging Response to go to the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007951 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(imsi))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007952 f_sleep(1.0);
7953}
7954testcase TC_mscpool_paging_and_response_imsi() runs on test_CT {
7955 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7956 f_sleep(1.0);
7957
7958 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7959 * second MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7960 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7961
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007962 f_ctrs_msc_init();
7963
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007964 var MSC_ConnHdlr vc_conn1;
7965 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7966 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007967 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7968 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007969 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_imsi), pars1);
7970 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007971 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007972 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007973}
7974
7975/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by TMSI with an NRI value
7976 * that matches a different MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7977private function f_tc_mscpool_paging_tmsi(charstring id) runs on MSC_ConnHdlr {
7978 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7979 //cid_list := { cIl_allInBSS := ''O };
7980 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7981 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7982 var integer nri_v := 300; /* <-- second MSC's NRI */
Harald Weltebf397612021-01-14 20:39:46 +01007983 var octetstring tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007984 var BSSAP_N_UNITDATA_req paging;
7985
7986 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7987
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007988 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007989 valueof(ts_BSSMAP_Paging('001010000000011'H, cid_list, tmsi, bssmap_chneed))));
7990 BSSAP.send(paging);
7991
7992 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7993 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7994 * channel number is picked here. */
7995 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7996 f_rslem_register(0, new_chan_nr);
7997 RSL.receive(tr_RSL_PAGING_CMD(t_MI_TMSI(tmsi)));
7998 f_rslem_unregister(0, new_chan_nr);
7999
8000 /* Despite the NRI matching the second MSC (NRI from 'msc 1' in osmo-bsc.cfg) and round robin pointing at the
8001 * third MSC ('roundrobin next 2'), the earlier Paging for the same TMSI causes this Paging Response to go to
8002 * the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008003 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 +02008004 f_sleep(1.0);
8005}
8006testcase TC_mscpool_paging_and_response_tmsi() runs on test_CT {
8007 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
8008 f_sleep(1.0);
8009
8010 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
8011 * third MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
8012 f_vty_transceive(BSCVTY, "mscpool roundrobin next 2");
8013
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008014 f_ctrs_msc_init();
8015
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008016 var MSC_ConnHdlr vc_conn1;
8017 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8018 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02008019 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
8020 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008021 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_tmsi), pars1);
8022 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008023 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008024 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008025}
8026
8027/* For round-robin, skip an MSC that has 'no allow-attach' set. */
8028/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
8029 * just as well using only RSL. */
8030testcase TC_mscpool_no_allow_attach_round_robin() runs on test_CT {
8031
8032 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8033 f_sleep(1.0);
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008034 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8035 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008036
8037 /* Control which MSC gets chosen next by the round-robin, otherwise
8038 * would be randomly affected by which other tests ran before this. */
8039 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8040
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008041 f_ctrs_msc_init();
8042
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008043 var MSC_ConnHdlr vc_conn1;
8044 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8045 pars1.mscpool.rsl_idx := 0;
8046 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
8047 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8048 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008049 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008050
8051 var MSC_ConnHdlr vc_conn2;
8052 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
8053 pars2.mscpool.rsl_idx := 1;
8054 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8055 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8056 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008057 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008058
8059 var MSC_ConnHdlr vc_conn3;
8060 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
8061 pars3.mscpool.rsl_idx := 2;
8062 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
8063 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8064 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008065 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008066 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008067}
8068
8069/* An MSC that has 'no allow-attach' set should still serve subscribers that are already attached according to their
8070 * TMSI NRI. */
8071testcase TC_mscpool_no_allow_attach_valid_nri() runs on test_CT {
8072
8073 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8074 f_sleep(1.0);
8075
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008076 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8077 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
8078
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008079 /* Control which MSC gets chosen next by the round-robin, otherwise
8080 * would be randomly affected by which other tests ran before this. */
8081 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8082
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008083 f_ctrs_msc_init();
8084
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008085 /* Round robin points at msc 0, but the valid NRI directs to msc 1, even though msc 1 has 'no allow-attach'. */
8086 var MSC_ConnHdlr vc_conn1;
8087 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
8088 pars1.mscpool.rsl_idx := 0;
8089 /* An NRI of the second MSC's range (256-511) */
8090 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_TMSI_NRI_LV(260))));
8091 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8092 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008093 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008094
8095 var MSC_ConnHdlr vc_conn2;
8096 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 0);
8097 pars2.mscpool.rsl_idx := 1;
8098 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8099 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8100 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008101 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008102
8103 var MSC_ConnHdlr vc_conn3;
8104 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 2);
8105 pars3.mscpool.rsl_idx := 2;
8106 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000003'H))));
8107 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8108 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008109 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008110 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008111}
8112
Philipp Maier783681c2020-07-16 16:47:06 +02008113/* Allow/Deny emergency calls globally via VTY */
8114private function f_vty_allow_emerg_msc(boolean allow) runs on test_CT {
8115 f_vty_enter_cfg_msc(BSCVTY, 0);
8116 if (allow) {
8117 f_vty_transceive(BSCVTY, "allow-emergency allow");
8118 } else {
8119 f_vty_transceive(BSCVTY, "allow-emergency deny");
8120 }
8121 f_vty_transceive(BSCVTY, "exit");
8122 f_vty_transceive(BSCVTY, "exit");
8123}
8124
8125/* Allow/Deny emergency calls per BTS via VTY */
8126private function f_vty_allow_emerg_bts(boolean allow, integer bts_nr) runs on test_CT {
8127 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8128 if (allow) {
8129 f_vty_transceive(BSCVTY, "rach emergency call allowed 1");
8130 } else {
8131 f_vty_transceive(BSCVTY, "rach emergency call allowed 0");
8132 }
8133 f_vty_transceive(BSCVTY, "exit");
8134 f_vty_transceive(BSCVTY, "exit");
Neels Hofmeyrb6ed80c2020-10-12 22:52:39 +00008135 f_vty_transceive(BSCVTY, "exit");
Philipp Maier783681c2020-07-16 16:47:06 +02008136}
8137
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02008138/* Allow/Forbid Fast Return after SRVCC on a given BTS via VTY */
8139private function f_vty_allow_srvcc_fast_return(boolean allow, integer bts_nr) runs on test_CT {
8140 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8141 if (allow) {
8142 f_vty_transceive(BSCVTY, "srvcc fast-return allow");
8143 } else {
8144 f_vty_transceive(BSCVTY, "srvcc fast-return forbid");
8145 }
8146 f_vty_transceive(BSCVTY, "exit");
8147 f_vty_transceive(BSCVTY, "exit");
8148 f_vty_transceive(BSCVTY, "exit");
8149}
8150
Pau Espin Pedrol14475352021-07-22 15:48:16 +02008151/* Allow/Forbid TCH for signalling if SDCCH exhausted on a given BTS via VTY */
8152private function f_vty_allow_tch_for_signalling(boolean allow, integer bts_nr) runs on test_CT {
8153 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8154 if (allow) {
8155 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 1");
8156 } else {
8157 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 0");
8158 }
8159 f_vty_transceive(BSCVTY, "exit");
8160 f_vty_transceive(BSCVTY, "exit");
8161 f_vty_transceive(BSCVTY, "exit");
8162}
8163
Philipp Maier783681c2020-07-16 16:47:06 +02008164/* Begin assignmet procedure and send an EMERGENCY SETUP (RR) */
8165private function f_assignment_emerg_setup() runs on MSC_ConnHdlr {
8166 var PDU_ML3_MS_NW emerg_setup;
8167 var octetstring emerg_setup_enc;
8168 var RSL_Message emerg_setup_data_ind;
8169
8170 f_establish_fully(omit, omit);
8171
8172 emerg_setup := valueof(ts_ML3_MO_CC_EMERG_SETUP(1, valueof(ts_Bcap_voice)));
8173 emerg_setup_enc := enc_PDU_ML3_MS_NW(emerg_setup);
8174 emerg_setup_data_ind := valueof(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), emerg_setup_enc));
8175
8176 RSL.send(emerg_setup_data_ind);
8177}
8178
8179/* Test if the EMERGENCY SETUP gets passed on to the MSC via A when EMERGENCY
8180 * CALLS are permitted by the BSC config. */
8181private function f_TC_assignment_emerg_setup_allow(charstring id) runs on MSC_ConnHdlr {
8182 var PDU_BSSAP emerg_setup_data_ind_bssap;
8183 var PDU_ML3_MS_NW emerg_setup;
8184 timer T := 3.0;
8185
8186 f_assignment_emerg_setup()
8187
8188 T.start;
8189 alt {
8190 [] BSSAP.receive(tr_BSSAP_DTAP) -> value emerg_setup_data_ind_bssap {
8191 emerg_setup := dec_PDU_ML3_MS_NW(emerg_setup_data_ind_bssap.pdu.dtap);
8192 if (not isbound(emerg_setup.msgs.cc.emergencySetup)) {
8193 setverdict(fail, "no emergency setup");
8194 }
8195 }
8196 [] BSSAP.receive {
8197 setverdict(fail, "unexpected BSSAP message!");
8198 }
8199 [] T.timeout {
8200 setverdict(fail, "timout waiting for EMERGENCY SETUP!");
8201 }
8202 }
8203
8204 setverdict(pass);
8205}
8206
8207/* Test if the EMERGENCY SETUP gets blocked by the BSC if EMERGENCY CALLS are
8208 * forbidden by the BSC config. */
8209private function f_TC_assignment_emerg_setup_deny(charstring id) runs on MSC_ConnHdlr {
8210 var PDU_BSSAP emerg_setup_data_ind_bssap;
8211 timer T := 3.0;
8212
8213 f_assignment_emerg_setup()
8214
8215 T.start;
8216 alt {
8217 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
8218 setverdict(pass);
8219 }
8220 [] RSL.receive {
8221 setverdict(fail, "unexpected RSL message!");
8222 }
8223 [] T.timeout {
8224 setverdict(fail, "timout waiting for RR CHANNEL RELEASE!");
8225 }
8226 }
8227}
8228
8229/* EMERGENCY CALL situation #1, allowed globally and by BTS */
8230testcase TC_assignment_emerg_setup_allow() runs on test_CT {
8231 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8232 var MSC_ConnHdlr vc_conn;
8233
8234 f_init(1, true);
8235 f_sleep(1.0);
8236
8237 f_vty_allow_emerg_msc(true);
8238 f_vty_allow_emerg_bts(true, 0);
8239 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_allow), pars);
8240 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008241 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008242}
8243
8244/* EMERGENCY CALL situation #2, forbidden globally but allowed by BTS */
8245testcase TC_assignment_emerg_setup_deny_msc() runs on test_CT {
8246 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8247 var MSC_ConnHdlr vc_conn;
8248
8249 f_init(1, true);
8250 f_sleep(1.0);
8251
8252 f_vty_allow_emerg_msc(false);
8253 f_vty_allow_emerg_bts(true, 0);
8254 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8255 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008256 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008257}
8258
8259/* EMERGENCY CALL situation #3, allowed globally but forbidden by BTS */
8260testcase TC_assignment_emerg_setup_deny_bts() runs on test_CT {
8261 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8262 var MSC_ConnHdlr vc_conn;
8263
8264 /* Note: This simulates a spec violation by the MS, correct MS
8265 * implementations would not try to establish an emergency call because
8266 * the system information tells in advance that emergency calls are
8267 * not forbidden */
8268
8269 f_init(1, true);
8270 f_sleep(1.0);
8271
8272 f_vty_allow_emerg_msc(true);
8273 f_vty_allow_emerg_bts(false, 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
Philipp Maier82812002020-08-13 18:48:27 +02008279/* Test what happens when an emergency call arrives while all TCH channels are
8280 * busy, the BSC is expected to terminate one call in favor of the incoming
8281 * emergency call */
8282testcase TC_emerg_premption() runs on test_CT {
8283 var ASP_RSL_Unitdata rsl_ud;
8284 var integer i;
8285 var integer chreq_total, chreq_nochan;
8286 var RSL_Message rx_rsl;
8287 var RslChannelNr chan_nr;
8288
8289 f_init(1);
8290 f_sleep(1.0);
8291
8292 f_vty_allow_emerg_msc(true);
8293 f_vty_allow_emerg_bts(true, 0);
8294
8295 /* Fill up all channels on the BTS */
8296 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
8297 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
8298 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
8299 chan_nr := f_chreq_act_ack('33'O, i);
8300 }
8301 IPA_RSL[0].clear;
8302 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
8303 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
8304
8305 /* Send Channel request for emegergency call */
8306 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
8307
8308 /* Expect the BSC to release one (the first) TCH/F on the BTS */
8309 chan_nr := valueof(t_RslChanNr_Bm(1));
8310 f_expect_chan_rel(0, chan_nr, expect_rr_chan_rel := false, expect_rll_rel_req := false);
8311
8312 /* Expect the BSC to send activate/assign the a channel for the emergency call */
8313 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8314 chan_nr := rx_rsl.ies[0].body.chan_nr;
8315 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 33));
8316 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Philipp Maier104f4c02020-09-11 18:12:18 +02008317
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008318 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008319}
8320
8321/* Hopping parameters per a timeslot */
Vadim Yanitskiybc6654a2020-09-13 01:27:40 +07008322private type record length(0..64) of GsmArfcn ArfcnList;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008323private type record FHParamsTs {
8324 boolean enabled,
8325 uint6_t hsn,
8326 uint6_t maio,
8327 ArfcnList ma
8328};
8329
8330/* Hopping parameters per a transceiver */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008331private type record FHParamsTrx {
8332 GsmArfcn arfcn,
8333 FHParamsTs ts[8]
8334};
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008335
8336/* Randomly generate the hopping parameters for the given timeslot numbers */
8337private function f_TC_fh_params_gen(template integer tr_tn := (1, 3, 5))
8338runs on test_CT return FHParamsTrx {
8339 var FHParamsTrx fhp;
8340
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008341 /* Generate a random ARFCN, including ARFCN 0 */
8342 fhp.arfcn := f_rnd_int(3);
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008343
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008344 for (var integer tn := 0; tn < 8; tn := tn + 1) {
8345 if (not match(tn, tr_tn)) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008346 fhp.ts[tn].enabled := false;
8347 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008348 continue;
8349 }
8350
8351 /* Random HSN / MAIO values: 0..63 */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008352 fhp.ts[tn].hsn := f_rnd_int(64);
8353 fhp.ts[tn].maio := f_rnd_int(64);
8354 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008355
8356 /* Random Mobile Allocation (hopping channels) */
8357 var integer ma_len := 2 + f_rnd_int(9); /* 2..10 channels */
8358 var integer step := 3 + f_rnd_int(4); /* 3..6 stepping */
8359 for (var integer i := 1; i <= ma_len; i := i + 1) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008360 fhp.ts[tn].ma := fhp.ts[tn].ma & { i * step };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008361 }
8362
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008363 fhp.ts[tn].enabled := true;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008364 }
8365
8366 log("f_TC_fh_params_gen(): ", fhp);
8367 return fhp;
8368}
8369
8370/* Make sure that the given Channel Description IE matches the hopping configuration */
8371private function f_TC_fh_params_match_chan_desc(in FHParamsTrx fhp, in ChannelDescription cd)
8372{
8373 var template (present) ChannelDescription tr_cd;
8374 var template (present) MaioHsn tr_maio_hsn;
8375 var uint3_t tn := cd.chan_nr.tn;
8376
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008377 if (fhp.ts[tn].enabled) {
8378 tr_maio_hsn := tr_HsnMaio(fhp.ts[tn].hsn, fhp.ts[tn].maio);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008379 tr_cd := tr_ChanDescH1(cd.chan_nr, tr_maio_hsn);
8380 } else {
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008381 tr_cd := tr_ChanDescH0(cd.chan_nr, fhp.arfcn);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008382 }
8383
8384 if (not match(cd, tr_cd)) {
8385 setverdict(fail, "Channel Description IE does not match: ",
8386 cd, " vs expected ", tr_cd);
8387 }
8388}
8389
8390/* Make sure that the given Mobile Allocation IE matches the hopping configuration */
8391private function f_TC_fh_params_match_ma(in FHParamsTrx fhp, uint3_t tn,
8392 in MobileAllocationLV ma)
8393{
8394 var template MobileAllocationLV tr_ma := f_TC_fh_params_gen_tr_ma(fhp, tn, ma);
8395
8396 if (not match(ma, tr_ma)) {
8397 setverdict(fail, "Mobile Allocation IE does not match (tn := ",
8398 tn, "): ", ma, " vs expected: ", tr_ma);
8399 } else {
8400 setverdict(pass);
8401 }
8402}
8403
8404private function f_TC_fh_params_gen_tr_ma(in FHParamsTrx fhp, uint3_t tn,
8405 in MobileAllocationLV ma)
8406return template MobileAllocationLV {
8407 /* Mobile Allocation IE is expected to be empty if hopping is not enabled */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008408 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008409 return { len := 0, ma := ''B };
8410 }
8411
8412 var bitstring full_mask := f_pad_bit(''B, 1024, '0'B);
8413 var bitstring slot_mask := f_pad_bit(''B, 1024, '0'B);
8414 var bitstring ma_mask := ''B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008415
8416 /* Compose the full bit-mask (all channels, up to 1024 entries) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008417 for (var integer i := 0; i < lengthof(fhp.ts); i := i + 1) {
8418 for (var integer j := 0; j < lengthof(fhp.ts[i].ma); j := j + 1) {
8419 if (full_mask[fhp.ts[i].ma[j]] == '1'B)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008420 { continue; }
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008421 full_mask[fhp.ts[i].ma[j]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008422 }
8423 }
8424
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008425 /* Take ARFCN of the TRX itself into account */
8426 full_mask[fhp.arfcn] := '1'B;
8427
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008428 /* Compose a bit-mask for the given timeslot number */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008429 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8430 slot_mask[fhp.ts[tn].ma[i]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008431 }
8432
8433 /* Finally, compose the Mobile Allocation bit-mask */
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008434 for (var integer i := 1; i < lengthof(full_mask); i := i + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008435 if (full_mask[i] != '1'B)
8436 { continue; }
8437
8438 /* FIXME: ma_mask := ma_mask & slot_mask[i]; // triggers a bug in TITAN */
8439 if (slot_mask[i] == '1'B) {
8440 ma_mask := ma_mask & '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008441 } else {
8442 ma_mask := ma_mask & '0'B;
8443 }
8444 }
8445
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008446 /* ARFCN 0 (if present) goes to the last position of the bit-mask */
8447 if (full_mask[0] == '1'B) {
8448 /* FIXME: ma_mask := ma_mask & slot_mask[0]; // triggers a bug in TITAN */
8449 if (slot_mask[0] == '1'B) {
8450 ma_mask := ma_mask & '1'B;
8451 } else {
8452 ma_mask := ma_mask & '0'B;
8453 }
8454 }
8455
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008456 /* Ensure that ma_mask is octet-aligned */
Vadim Yanitskiy2aa02522020-09-06 14:05:23 +07008457 var integer ma_mask_len := (lengthof(ma_mask) + 8 - 1) / 8;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008458 ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);
8459
8460 return { len := ma_mask_len, ma := ma_mask };
8461}
8462
8463/* Configure the hopping parameters in accordance with the given record */
8464private function f_TC_fh_params_set(in FHParamsTrx fhp,
8465 uint8_t bts_nr := 0,
8466 uint8_t trx_nr := 0)
8467runs on test_CT {
8468 /* Enter the configuration node for the given BTS/TRX numbers */
8469 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8470
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008471 f_vty_transceive(BSCVTY, "arfcn " & int2str(fhp.arfcn));
8472
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008473 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008474 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8475
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008476 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008477 f_vty_transceive(BSCVTY, "hopping enabled 0");
8478 f_vty_transceive(BSCVTY, "exit"); /* go back */
8479 continue;
8480 }
8481
8482 /* Configure HSN / MAIO values */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008483 f_vty_transceive(BSCVTY, "hopping sequence-number " & int2str(fhp.ts[tn].hsn));
8484 f_vty_transceive(BSCVTY, "hopping maio " & int2str(fhp.ts[tn].maio));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008485
8486 /* Configure the Mobile Allocation (hopping channels) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008487 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8488 f_vty_transceive(BSCVTY, "hopping arfcn add " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008489 }
8490
8491 f_vty_transceive(BSCVTY, "hopping enabled 1");
8492 f_vty_transceive(BSCVTY, "exit"); /* go back */
8493 }
8494
8495 f_vty_transceive(BSCVTY, "end");
8496}
8497
8498/* Disable frequency hopping on all timeslots */
8499private function f_TC_fh_params_unset(in FHParamsTrx fhp,
8500 uint8_t bts_nr := 0,
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008501 uint8_t trx_nr := 0,
8502 GsmArfcn arfcn := 871)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008503runs on test_CT {
8504 /* Enter the configuration node for the given BTS/TRX numbers */
8505 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8506
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008507 f_vty_transceive(BSCVTY, "arfcn " & int2str(arfcn));
8508
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008509 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008510 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8511
8512 /* Delete all ARFCNs from the Mobile Allocation (if any) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008513 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8514 f_vty_transceive(BSCVTY, "hopping arfcn del " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008515 }
8516
8517 f_vty_transceive(BSCVTY, "hopping enabled 0");
8518 f_vty_transceive(BSCVTY, "exit"); /* go back */
8519 }
8520
8521 f_vty_transceive(BSCVTY, "end");
8522 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8523}
8524
8525/* Verify presence and correctness of the hopping parameters (HSN, MAIO)
8526 * in the Channel Identification IE of the RSL CHANnel ACTIVation message. */
8527testcase TC_fh_params_chan_activ() runs on test_CT {
8528 var FHParamsTrx fhp := f_TC_fh_params_gen();
8529 var RSL_Message rsl_msg;
8530 var RSL_IE_Body ie;
8531
8532 f_init_vty();
8533
8534 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8535 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8536
8537 f_init(1);
8538
8539 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8540 for (var integer i := 0; i < 9; i := i + 1) {
8541 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8542 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8543
8544 /* Make sure that Channel Identification IE is present */
8545 if (not f_rsl_find_ie(rsl_msg, RSL_IE_CHAN_IDENT, ie)) {
8546 setverdict(fail, "RSL Channel Identification IE is absent");
8547 continue;
8548 }
8549
8550 /* Make sure that hopping parameters (HSN/MAIO) match */
8551 f_TC_fh_params_match_chan_desc(fhp, ie.chan_ident.ch_desc.v);
8552
8553 /* "Mobile Allocation shall be included but empty" - let's check this */
8554 if (ie.chan_ident.ma.v.len != 0) {
8555 setverdict(fail, "Mobile Allocation IE is not empty: ",
8556 ie.chan_ident.ma, ", despite it shall be");
8557 continue;
8558 }
8559 }
8560
8561 /* Disable frequency hopping */
8562 f_TC_fh_params_unset(fhp);
8563
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008564 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008565}
8566
8567/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Immediate Assignment */
8568testcase TC_fh_params_imm_ass() runs on test_CT {
8569 var FHParamsTrx fhp := f_TC_fh_params_gen();
8570 var RSL_Message rsl_msg;
8571 var RSL_IE_Body ie;
8572
8573 f_init_vty();
8574
8575 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8576 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8577
8578 f_init(1);
8579
8580 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8581 for (var integer i := 0; i < 9; i := i + 1) {
8582 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8583 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8584
8585 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8586 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
8587
8588 /* Make sure that Full Immediate Assign Info IE is present */
8589 if (not f_rsl_find_ie(rsl_msg, RSL_IE_FULL_IMM_ASS_INFO, ie)) {
8590 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
8591 continue;
8592 }
8593
8594 /* Decode the actual Immediate Assignment message */
8595 var GsmRrMessage rr_msg := dec_GsmRrMessage(ie.full_imm_ass_info.payload);
8596 if (not match(rr_msg.header, t_RrHeader(IMMEDIATE_ASSIGNMENT, ?))) {
8597 setverdict(fail, "Failed to match Immediate Assignment: ", rr_msg);
8598 continue;
8599 }
8600
8601 /* Make sure that hopping parameters (HSN/MAIO) match */
8602 f_TC_fh_params_match_chan_desc(fhp, rr_msg.payload.imm_ass.chan_desc);
8603
8604 /* Make sure that the Mobile Allocation IE matches */
8605 f_TC_fh_params_match_ma(fhp, rr_msg.payload.imm_ass.chan_desc.chan_nr.tn,
8606 rr_msg.payload.imm_ass.mobile_allocation);
8607 }
8608
8609 /* Disable frequency hopping */
8610 f_TC_fh_params_unset(fhp);
Philipp Maier82812002020-08-13 18:48:27 +02008611
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008612 f_shutdown_helper();
Philipp Maier82812002020-08-13 18:48:27 +02008613}
8614
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008615/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Assignment Command */
8616testcase TC_fh_params_assignment_cmd() runs on test_CT {
8617 var FHParamsTrx fhp := f_TC_fh_params_gen();
8618 var RSL_Message rsl_msg;
8619 var RSL_IE_Body ie;
8620
8621 f_init_vty();
8622
8623 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8624 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8625
8626 f_init(1);
8627
8628 /* HACK: work around "Couldn't find Expect for CRCX" */
8629 vc_MGCP.stop;
8630
8631 var template PDU_BSSAP ass_cmd := f_gen_ass_req();
8632 ass_cmd.pdu.bssmap.assignmentRequest.codecList := ts_BSSMAP_IE_CodecList({ts_CodecFR});
8633
8634 /* CS domain (TCH): 4 (TCH/F) + 2 (TCH/H) channels available
8635 * NOTE: only 3 SDCCH/4 channels are available on CCCH+SDCCH4+CBCH */
8636 for (var integer i := 0; i < 3; i := i + 1) {
8637 /* Establish a dedicated channel, so we can trigger (late) TCH assignment */
8638 var DchanTuple dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8639
8640 /* Send a BSSMAP Assignment Command, expect CHANnel ACTIVation */
8641 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
8642 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8643
8644 /* ACKnowledge CHANnel ACTIVation, expect RSL DATA REQuest */
8645 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8646 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8647
8648 /* Make sure that L3 Information IE is present */
8649 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8650 setverdict(fail, "RSL L3 Information IE is absent");
8651 continue;
8652 }
8653
8654 /* Decode the L3 message and make sure it is (RR) Assignment Command */
8655 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8656 if (not match(l3_msg.header, t_RrL3Header(ASSIGNMENT_COMMAND))) {
8657 setverdict(fail, "Failed to match Assignment Command: ", l3_msg);
8658 continue;
8659 }
8660
8661 /* Make sure that hopping parameters (HSN/MAIO) match */
8662 var ChannelDescription chan_desc := l3_msg.payload.ass_cmd.chan_desc;
8663 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8664
8665 /* Make sure that Cell Channel Description IE is present if FH is enabled */
8666 if (chan_desc.h and not ispresent(l3_msg.payload.ass_cmd.cell_chan_desc)) {
Vadim Yanitskiy38d069d2020-09-02 17:18:57 +07008667 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008668 continue;
8669 }
8670
8671 /* Make sure that the Mobile Allocation IE matches (if present) */
8672 var boolean ma_present := ispresent(l3_msg.payload.ass_cmd.mobile_allocation);
8673 if (chan_desc.h and ma_present) {
8674 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8675 l3_msg.payload.ass_cmd.mobile_allocation.v);
8676 } else if (chan_desc.h and not ma_present) {
8677 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8678 continue;
8679 } else if (not chan_desc.h and ma_present) {
8680 setverdict(fail, "FH disabled, but Mobile Allocation IE is present");
8681 continue;
8682 }
8683 }
8684
8685 /* Give the IUT some time to release all channels */
8686 f_sleep(3.0);
8687
8688 /* Disable frequency hopping */
8689 f_TC_fh_params_unset(fhp);
8690
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008691 f_shutdown_helper();
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008692}
8693
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07008694/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Handover Command */
8695private function f_TC_fh_params_handover_cmd(in FHParamsTrx fhp)
8696runs on test_CT {
8697 var RSL_Message rsl_msg;
8698 var RSL_IE_Body ie;
8699 var DchanTuple dt;
8700
8701 /* Establish a dedicated channel, so we can trigger handover */
8702 dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8703
8704 /* Trigger handover from BTS0 to BTS1 */
8705 f_bts_0_cfg(BSCVTY, { "neighbor bts 1" });
8706 f_vty_handover(BSCVTY, 0, 0, dt.rsl_chan_nr, 1);
8707
8708 /* Expect RSL CHANnel ACTIVation on BTS1/TRX0/TS1 */
8709 rsl_msg := f_exp_ipa_rx(1, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8710
8711 /* ACKnowledge channel activation and expect (RR) Handover Command */
8712 f_ipa_tx(1, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8713 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8714
8715 /* Make sure that L3 Information IE is present */
8716 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8717 setverdict(fail, "RSL L3 Information IE is absent");
8718 return;
8719 }
8720
8721 /* Decode the L3 message and make sure it is (RR) Handover Command */
8722 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8723 if (not match(l3_msg.header, t_RrL3Header(HANDOVER_COMMAND))) {
8724 setverdict(fail, "Failed to match Handover Command: ", l3_msg);
8725 return;
8726 }
8727
8728 /* Make sure that we've got SDCCH/8 on TS1 (expected to be hopping) */
8729 var ChannelDescription chan_desc := l3_msg.payload.ho_cmd.chan_desc;
8730 if (not match(chan_desc.chan_nr, t_RslChanNr_SDCCH8(1, ?))) {
8731 setverdict(fail, "Unexpected channel number: ", chan_desc.chan_nr);
8732 return;
8733 }
8734
8735 /* Make sure that hopping parameters (HSN/MAIO) match */
8736 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8737
8738 /* Make sure that Cell Channel Description IE is present */
8739 if (not ispresent(l3_msg.payload.ho_cmd.cell_chan_desc)) {
8740 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
8741 return;
8742 }
8743
8744 /* Make sure that the Mobile Allocation (after time) IE is present and matches */
8745 var boolean ma_present := ispresent(l3_msg.payload.ho_cmd.mobile_allocation);
8746 if (ma_present) {
8747 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8748 l3_msg.payload.ho_cmd.mobile_allocation.v);
8749 } else {
8750 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8751 return;
8752 }
8753}
8754testcase TC_fh_params_handover_cmd() runs on test_CT {
8755 var FHParamsTrx fhp := f_TC_fh_params_gen();
8756
8757 f_init_vty();
8758
8759 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8 on BTS1/TRX0 */
8760 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8761
8762 f_vty_transceive(BSCVTY, "timeslot 0");
8763 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8764 f_vty_transceive(BSCVTY, "exit"); /* go back */
8765
8766 f_vty_transceive(BSCVTY, "timeslot 1");
8767 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8");
8768 f_vty_transceive(BSCVTY, "end"); /* we're done */
8769
8770 f_TC_fh_params_set(fhp, 1); /* Enable frequency hopping on BTS1 */
8771 f_vty_transceive(BSCVTY, "drop bts connection 1 oml");
8772
8773 f_init(2);
8774
8775 f_TC_fh_params_handover_cmd(fhp);
8776
8777 /* Disable frequency hopping on BTS1 */
8778 f_TC_fh_params_unset(fhp, 1);
8779
8780 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
8781 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8782
8783 f_vty_transceive(BSCVTY, "timeslot 0");
8784 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
8785 f_vty_transceive(BSCVTY, "exit"); /* go back */
8786
8787 f_vty_transceive(BSCVTY, "timeslot 1");
8788 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8789 f_vty_transceive(BSCVTY, "end"); /* we're done */
8790
8791 f_shutdown_helper();
8792}
8793
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008794/* Verify the hopping parameters in System Information Type 4 */
8795testcase TC_fh_params_si4_cbch() runs on test_CT {
8796 var FHParamsTrx fhp := f_TC_fh_params_gen(tr_tn := 1);
8797 var ASP_RSL_Unitdata rx_rsl_ud;
8798 timer T := 5.0;
8799
8800 f_init_vty();
8801
8802 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8+CBCH */
8803 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8804
8805 f_vty_transceive(BSCVTY, "timeslot 0");
8806 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8807 f_vty_transceive(BSCVTY, "exit"); /* go back */
8808
8809 f_vty_transceive(BSCVTY, "timeslot 1");
8810 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8+cbch");
8811 f_vty_transceive(BSCVTY, "end"); /* we're done */
8812
8813 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8814 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8815
8816 f_init(1);
8817
8818 T.start;
8819 alt {
8820 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO(RSL_SYSTEM_INFO_4))) -> value rx_rsl_ud {
8821 var RSL_IE_Body ie := rx_rsl_ud.rsl.ies[2].body; /* FULL BCCH Information IE */
8822 var SystemInformation si := dec_SystemInformation(ie.other.payload);
8823
8824 /* Make sure that what we decoded is System Information Type 4 */
8825 if (si.header.message_type != SYSTEM_INFORMATION_TYPE_4) {
8826 setverdict(fail, "RSL FULL BCCH Information IE contains: ", si);
8827 repeat;
8828 }
8829
8830 /* Make sure that CBCH Channel Description IE is present */
8831 if (not ispresent(si.payload.si4.cbch_chan_desc)) {
8832 setverdict(fail, "CBCH Channel Description IE is absent");
8833 break;
8834 }
8835
8836 /* Finally, check the hopping parameters (HSN, MAIO) */
8837 var ChannelDescription chan_desc := si.payload.si4.cbch_chan_desc.v;
8838 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8839
8840 /* 3GPP TS 44.018, section 9.1.36.2 "CBCH Mobile Allocation":
8841 * The CBCH Mobile Allocation IE *shall* be present if FH is enabled. */
8842 if (chan_desc.h and not ispresent(si.payload.si4.cbch_mobile_alloc)) {
8843 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8844 break;
8845 } else if (chan_desc.h and ispresent(si.payload.si4.cbch_mobile_alloc)) {
8846 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8847 si.payload.si4.cbch_mobile_alloc.v);
8848 }
8849 }
8850 [] IPA_RSL[0].receive { repeat; }
8851 [] T.timeout {
8852 setverdict(fail, "Timeout waiting for RSL BCCH INFOrmation (SI4)");
8853 }
8854 }
8855
8856 /* Disable frequency hopping */
8857 f_TC_fh_params_unset(fhp);
8858
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008859 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008860 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8861
8862 f_vty_transceive(BSCVTY, "timeslot 0");
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008863 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008864 f_vty_transceive(BSCVTY, "exit"); /* go back */
8865
8866 f_vty_transceive(BSCVTY, "timeslot 1");
8867 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8868 f_vty_transceive(BSCVTY, "end"); /* we're done */
8869
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008870 f_shutdown_helper();
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008871}
8872
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008873template (value) PDU_BSSAP_LE ts_BSSMAP_LE_BSSLAP(template (value) BSSLAP_PDU bsslap)
8874 := ts_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, data := enc_BSSLAP_PDU(valueof(bsslap)));
8875
8876private function f_match_bsslap(PDU_BSSAP_LE got_bsslap_msg,
8877 template (present) BSSLAP_PDU expect_bsslap)
8878{
8879 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(got_bsslap_msg.pdu.bssmap.co_info.bsslap_apdu.data);
8880 if (not match(bsslap, expect_bsslap)) {
8881 log("EXPECTING BSSLAP: ", expect_bsslap);
8882 log("GOT BSSLAP: ", bsslap);
8883 setverdict(fail, "BSSLAP is not as expected");
8884 mtc.stop;
8885 }
8886 setverdict(pass);
8887}
8888
8889/* GAD: this is an Ellipsoid point with uncertainty circle, encoded as in 3GPP TS 23.032 §7.3.2. */
8890const octetstring gad_ell_point_unc_circle := '10b0646d0d5f6627'O;
8891
8892private function f_expect_bsslap(template (present) BSSLAP_PDU expect_rx_bsslap) runs on MSC_ConnHdlr {
8893 var PDU_BSSAP_LE rx_bsslap;
8894 BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap);
8895 f_match_bsslap(rx_bsslap, expect_rx_bsslap);
8896}
8897
8898/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8899 * Request on Lb interface. Either with or without the SMLC doing a BSSLAP TA Request. */
8900private function f_lcs_loc_req_for_active_ms(boolean do_ta_request := false) runs on MSC_ConnHdlr {
8901 f_sleep(1.0);
8902
8903 f_establish_fully(omit, omit);
8904 f_bssap_le_register_imsi(g_pars.imsi, omit);
8905
8906 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8907 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8908
8909 var PDU_BSSAP_LE plr;
8910 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8911
8912 if (not do_ta_request) {
8913 /* verify TA Layer 3 in APDU. First the APDU type (BSSLAP), then the BSSLAP data contents. */
8914 var template BSSMAP_LE_IE_APDU expect_apdu := tr_BSSMAP_LE_APDU(BSSMAP_LE_PROT_BSSLAP, ?);
8915 if (not match(plr.pdu.bssmap.perf_loc_req.bsslap_apdu, expect_apdu)) {
8916 log("EXPECTING BSSMAP-LE APDU IE ", expect_apdu);
8917 log("GOT BSSMAP-LE APDU IE ", plr.pdu.bssmap.perf_loc_req.bsslap_apdu);
8918 setverdict(fail, "BSSMAP-LE APDU IE is not as expected");
8919 mtc.stop;
8920 }
8921 var template BSSLAP_PDU expect_ta_layer3 := tr_BSSLAP_TA_Layer3(tr_BSSLAP_IE_TA(0));
8922 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(plr.pdu.bssmap.perf_loc_req.bsslap_apdu.data);
8923 if (not match(bsslap, expect_ta_layer3)) {
8924 log("EXPECTING BSSLAP TA Layer 3: ", expect_ta_layer3);
8925 log("GOT BSSLAP: ", bsslap);
8926 setverdict(fail, "BSSLAP is not as expected");
8927 mtc.stop;
8928 }
8929 /* OsmoBSC directly sent the TA as BSSLAP APDU in the BSSMAP-LE Perform Location Request to the SMLC. The SMLC
8930 * has no need to request the TA from the BSC and directly responds. */
8931 } else {
8932 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8933 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8934 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8935 }
8936
8937 /* SMLC got the TA from the BSC, now responds with geo information data. */
8938 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8939 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8940 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8941
8942 /* The LCS was using an active A-interface conn. It should still remain active after this. */
8943 f_mo_l3_transceive();
8944
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008945 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008946
8947 f_sleep(2.0);
8948 setverdict(pass);
8949}
8950
8951/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8952 * Request on Lb interface. Without the SMLC doing a BSSLAP TA Request. */
8953private function f_tc_lcs_loc_req_for_active_ms(charstring id) runs on MSC_ConnHdlr {
8954 f_lcs_loc_req_for_active_ms(false);
8955}
8956testcase TC_lcs_loc_req_for_active_ms() runs on test_CT {
8957 var MSC_ConnHdlr vc_conn;
8958 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8959
8960 f_init(1, true);
8961 f_sleep(1.0);
8962 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms), pars);
8963 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008964 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008965}
8966
8967/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8968 * Request on Lb interface. With the SMLC doing a BSSLAP TA Request. */
8969private function f_tc_lcs_loc_req_for_active_ms_ta_req(charstring id) runs on MSC_ConnHdlr {
8970 f_lcs_loc_req_for_active_ms(true);
8971}
8972testcase TC_lcs_loc_req_for_active_ms_ta_req() runs on test_CT {
8973 var MSC_ConnHdlr vc_conn;
8974 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8975
8976 f_init(1, true);
8977 f_sleep(1.0);
8978 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_ta_req), pars);
8979 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008980 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008981}
8982
8983/* Clear the A-interface conn only, without doing anything on Abis. Useful for LCS, for cases where there is only an A
8984 * conn without an active lchan. */
8985private function f_clear_A_conn() runs on MSC_ConnHdlr
8986{
8987 var BssmapCause cause := 0;
8988 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
8989 BSSAP.receive(tr_BSSMAP_ClearComplete);
8990 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
8991
8992 timer no_more_bssap := 5.0;
8993 no_more_bssap.start;
8994 alt {
8995 [] no_more_bssap.timeout { break; }
8996 [] BSSAP.receive(tr_BSSAP_BSSMAP) {
8997 setverdict(fail, "Expected no more BSSAP after Clear Complete");
8998 mtc.stop;
8999 }
9000 }
9001 setverdict(pass);
9002}
9003
9004/* Verify that the A-interface connection is still working, and then clear it, without doing anything on Abis. Useful
9005 * for LCS, for cases where there is only an A conn without an active lchan. */
9006private function f_verify_active_A_conn_and_clear() runs on MSC_ConnHdlr
9007{
9008 f_logp(BSCVTY, "f_verify_active_A_conn_and_clear: test A link, then clear");
9009
9010 /* When an lchan is active, we can send some L3 data from the BTS side and verify that it shows up on the other
9011 * side towards the MSC. When there is no lchan, this is not possible. To probe whether the A-interface
9012 * connection is still up, we need something that echos back on the A-interface. Another LCS request! */
9013 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9014 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9015 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?));
9016
9017 /* Right, the Perform Location Request showed up on Lb, now we can clear the A conn. */
9018 f_clear_A_conn();
9019 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9020 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9021}
9022
9023/* With *no* active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
9024 * Request on Lb interface. BSC will Page for the subscriber as soon as we (virtual SMLC) request the TA via BSSLAP.
9025 */
9026private function f_tc_lcs_loc_req_for_idle_ms(charstring id) runs on MSC_ConnHdlr {
9027 f_sleep(1.0);
9028
9029 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9030 f_bssap_le_register_imsi(g_pars.imsi, omit);
9031
9032 /* Register to receive the Paging Command */
9033 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9034 g_chan_nr := new_chan_nr;
9035 f_rslem_register(0, g_chan_nr);
9036
9037 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9038 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9039 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9040 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9041
9042 var PDU_BSSAP_LE plr;
9043 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9044
9045 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9046 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9047
9048 /* OsmoBSC needs to Page */
9049 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi)));
9050 f_logp(BSCVTY, "got Paging Command");
9051
9052 /* MS requests channel. Since the Paging was for LCS, the Paging Response does not trigger a Complete Layer 3 to
9053 * the MSC, and releases the lchan directly. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009054 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);
9055 f_expect_lchan_rel(RSL, RSL_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009056
9057 /* From the Paging Response, the TA is now known to the BSC, and it responds to the SMLC. */
9058
9059 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9060
9061 /* SMLC got the TA from the BSC, now responds with geo information data. */
9062 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9063 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9064
9065 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9066
9067 /* The lchan is gone, the A-interface conn was created for the LCS only.
9068 * Still it is clearly the MSC's job to decide whether to tear down the conn or not. */
9069 f_verify_active_A_conn_and_clear();
9070
9071 f_sleep(2.0);
9072 setverdict(pass);
9073}
9074testcase TC_lcs_loc_req_for_idle_ms() runs on test_CT {
9075 var MSC_ConnHdlr vc_conn;
9076 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9077
9078 f_init(1, true);
9079 f_sleep(1.0);
9080
9081 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9082 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9083
9084 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms), pars);
9085 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009086 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009087}
9088
9089/* With no active lchan, start BSSMAP Perform Location Request on A interface, but omit IMSI; expect failure response.
9090 */
9091private function f_tc_lcs_loc_req_no_subscriber(charstring id) runs on MSC_ConnHdlr {
9092 f_sleep(1.0);
9093
9094 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9095 f_bssap_le_register_imsi(g_pars.imsi, omit);
9096
9097 /* provoke an abort by omitting both IMSI and IMEI */
9098 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9099 valueof(ts_BSSMAP_Perform_Location_Request(omit,
9100 ts_CellId_CGI('262'H, '42'H, 23, 42)))));
9101 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9102
9103 /* BSC tells MSC about failure */
9104 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9105 locationEstimate := omit, positioningData := omit,
9106 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_DATA_MISSING_IN_REQ)));
9107
9108 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9109 f_verify_active_A_conn_and_clear();
9110
9111 f_sleep(2.0);
9112 setverdict(pass);
9113}
9114testcase TC_lcs_loc_req_no_subscriber() runs on test_CT {
9115 var MSC_ConnHdlr vc_conn;
9116 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9117
9118 f_init(1, true);
9119 f_sleep(1.0);
9120
9121 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9122 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9123
9124 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_no_subscriber), pars);
9125 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009126 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009127}
9128
9129/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9130 * BSSMAP-LE Perform Location Response (before or after sending a BSSLAP TA Request) */
9131private function f_lcs_loc_req_for_active_ms_le_timeout(boolean do_ta) runs on MSC_ConnHdlr {
9132 f_sleep(1.0);
9133
9134 f_establish_fully(omit, omit);
9135 f_bssap_le_register_imsi(g_pars.imsi, omit);
9136
9137 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9138 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9139
9140 var PDU_BSSAP_LE plr;
9141 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9142
9143 if (do_ta) {
9144 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9145 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9146 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9147 }
9148
9149 /* SMLC fails to respond, BSC runs into timeout */
9150 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_SYSTEM_FAILURE));
9151 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9152
9153 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9154 locationEstimate := omit, positioningData := omit,
9155 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_SYSTEM_FAILURE)));
9156
9157 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9158 f_verify_active_A_conn_and_clear();
9159
9160 f_sleep(2.0);
9161 setverdict(pass);
9162}
9163
9164/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9165 * BSSMAP-LE Perform Location Response, without sending a BSSLAP TA Request. */
9166private function f_tc_lcs_loc_req_for_active_ms_le_timeout(charstring id) runs on MSC_ConnHdlr {
9167 f_lcs_loc_req_for_active_ms_le_timeout(false);
9168}
9169
9170testcase TC_lcs_loc_req_for_active_ms_le_timeout() runs on test_CT {
9171 var MSC_ConnHdlr vc_conn;
9172 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9173
9174 f_init(1, true);
9175 f_sleep(1.0);
9176 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout), pars);
9177 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009178 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009179}
9180
9181/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9182 * BSSMAP-LE Perform Location Response, after sending a BSSLAP TA Request. */
9183private function f_tc_lcs_loc_req_for_active_ms_le_timeout2(charstring id) runs on MSC_ConnHdlr {
9184 f_lcs_loc_req_for_active_ms_le_timeout(true);
9185}
9186
9187testcase TC_lcs_loc_req_for_active_ms_le_timeout2() runs on test_CT {
9188 var MSC_ConnHdlr vc_conn;
9189 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9190
9191 f_init(1, true);
9192 f_sleep(1.0);
9193 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout2), pars);
9194 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009195 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009196}
9197
9198/* With *no* active lchan, start a Perform Location Request, expecting that the MS will be Paged. */
9199private function f_tc_lcs_loc_req_for_idle_ms_no_pag_resp(charstring id) runs on MSC_ConnHdlr {
9200 f_sleep(1.0);
9201
9202 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9203 f_bssap_le_register_imsi(g_pars.imsi, omit);
9204
9205 /* Register to receive the Paging Command */
9206 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9207 g_chan_nr := new_chan_nr;
9208 f_rslem_register(0, g_chan_nr);
9209
9210 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9211 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9212 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9213 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9214
9215 var PDU_BSSAP_LE plr;
9216 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9217
9218 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9219 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9220
9221 /* OsmoBSC needs to Page */
9222 var PDU_BSSAP_LE rx_bsslap;
9223 alt {
9224 [] RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi))) {
9225 f_logp(BSCVTY, "got Paging Command");
9226 repeat;
9227 }
9228 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9229 /* MS does not respond to Paging, TA Req runs into timeout. */
9230 f_match_bsslap(rx_bsslap, tr_BSSLAP_Abort(?));
9231 }
9232 }
9233
9234 /* SMLC responds with failure */
9235 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(omit, BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9236 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9237
9238 /* BSC tells MSC about failure */
9239 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9240 locationEstimate := omit, positioningData := omit,
9241 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_REQUEST_ABORTED)));
9242
9243 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9244 f_verify_active_A_conn_and_clear();
9245
9246 f_sleep(2.0);
9247 setverdict(pass);
9248}
9249testcase TC_lcs_loc_req_for_idle_ms_no_pag_resp() runs on test_CT {
9250 var MSC_ConnHdlr vc_conn;
9251 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9252
9253 f_init(1, true);
9254 f_sleep(1.0);
9255
9256 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9257 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9258
9259 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms_no_pag_resp), pars);
9260 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009261 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009262}
9263
9264/* During an ongoing Location Request, the MS sends a CM Service Request. Expect the same A-conn to be re-used / taken
9265 * over. */
9266private function f_tc_cm_service_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9267 f_sleep(1.0);
9268
9269 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9270 f_bssap_le_register_imsi(g_pars.imsi, omit);
9271
9272 /* Register to receive the Paging Command */
9273 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9274 g_chan_nr := new_chan_nr;
9275 f_rslem_register(0, g_chan_nr);
9276
9277 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9278 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9279 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9280 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9281
9282 var PDU_BSSAP_LE plr;
9283 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9284
9285 /* As the A-interface conn was established for LCS, the MS coincidentally decides to issue a CM Service Request
9286 * and establish Layer 3. It should use the existing A-interface conn. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009287 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 +02009288 do_clear := false, expect_bssmap_l3 := true);
9289
9290 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9291 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9292
9293 /* OsmoBSC already has an lchan, no need to Page, just returns the TA */
9294 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9295
9296 /* SMLC got the TA from the BSC, now responds with geo information data. */
9297 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9298 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9299 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9300
9301 /* The lchan should still exist, it was from a CM Service Request. */
9302 f_mo_l3_transceive();
9303
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009304 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009305
9306 f_sleep(2.0);
9307 setverdict(pass);
9308}
9309testcase TC_cm_service_during_lcs_loc_req() runs on test_CT {
9310 var MSC_ConnHdlr vc_conn;
9311 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9312
9313 f_init(1, true);
9314 f_sleep(1.0);
9315
9316 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9317 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9318
9319 vc_conn := f_start_handler(refers(f_tc_cm_service_during_lcs_loc_req), pars);
9320 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009321 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009322}
9323
9324/* During an ongoing Perform Location Request, do a Handover, an expect a BSSLAP Reset message from the BSC to indicate
9325 * the new lchan after handover. */
9326private function f_tc_ho_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9327 f_sleep(1.0);
9328
9329 f_establish_fully(omit, omit);
9330 f_bssap_le_register_imsi(g_pars.imsi, omit);
9331
9332 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9333 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9334
9335 var PDU_BSSAP_LE plr;
9336 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9337
9338 /* SMLC ponders the Location Request, in the meantime the BSC decides to handover */
9339 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
9340
9341 var HandoverState hs := {
9342 rr_ho_cmpl_seen := false,
9343 handover_done := false,
9344 old_chan_nr := -
9345 };
9346 /* issue hand-over command on VTY */
9347 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
9348 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
9349 f_rslem_suspend(RSL1_PROC);
9350
9351 /* From the MGW perspective, a handover is is characterized by
9352 * performing one MDCX operation with the MGW. So we expect to see
9353 * one more MDCX during handover. */
9354 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
9355
9356 alt {
9357 [] as_handover(hs);
9358 }
9359
9360 var PDU_BSSAP_LE rx_bsslap;
9361
9362 interleave {
9363 /* Expect the BSC to inform the MSC about the handover */
9364 [] BSSAP.receive(tr_BSSMAP_HandoverPerformed);
9365
9366 /* Expect the BSC to inform the SMLC about the handover */
9367 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9368 f_match_bsslap(rx_bsslap, tr_BSSLAP_Reset(BSSLAP_CAUSE_INTRA_BSS_HO));
9369 }
9370 }
9371
9372 /* SMLC now responds with geo information data. */
9373 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9374 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9375 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9376
9377 /* lchan still active */
9378 f_mo_l3_transceive(RSL1);
9379
9380 /* MSC decides it is done now. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009381 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009382
9383 f_sleep(2.0);
9384 setverdict(pass);
9385}
9386testcase TC_ho_during_lcs_loc_req() runs on test_CT {
9387 var MSC_ConnHdlr vc_conn;
9388 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9389
9390 f_init(2, true);
9391 f_sleep(1.0);
9392 vc_conn := f_start_handler(refers(f_tc_ho_during_lcs_loc_req), pars);
9393 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009394 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009395}
9396
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009397/* Attempt Complete Layer 3 without any MSC available (OS#4832) */
9398private function f_tc_no_msc(charstring id) runs on MSC_ConnHdlr {
9399 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9400
9401 /* Also disable attach for the single connected MSC */
9402 f_vty_msc_allow_attach(BSCVTY, { false });
9403
9404 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) ));
9405 f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
9406
9407 /* No MSC is found, expecting a proper release on RSL */
9408 interleave {
9409 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
9410 f_logp(BSCVTY, "Got RSL RR Release");
9411 }
9412 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9413 f_logp(BSCVTY, "Got RSL Deact SACCH");
9414 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009415 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009416 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
9417 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009418 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009419 }
9420 }
9421 setverdict(pass);
9422}
9423testcase TC_no_msc() runs on test_CT {
9424
9425 f_init(1, true);
9426 f_sleep(1.0);
9427 var MSC_ConnHdlr vc_conn;
9428 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9429
9430 f_ctrs_bsc_init(counternames_bsc_mscpool);
9431
9432 vc_conn := f_start_handler(refers(f_tc_no_msc), pars);
9433 vc_conn.done;
9434
9435 f_ctrs_bsc_add("mscpool:subscr:no_msc");
9436 f_ctrs_bsc_verify();
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009437 f_shutdown_helper();
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009438}
9439
Harald Welte0ea2d5e2018-04-07 21:40:29 +02009440/* Dyn PDCH todo:
9441 * activate OSMO as TCH/F
9442 * activate OSMO as TCH/H
9443 * does the BSC-located PCU socket get the updated INFO?
9444 * what if no PCU is connected at the time?
9445 * is the info correct on delayed PCU (re)connect?
9446 */
Harald Welte94e0c342018-04-07 11:33:23 +02009447
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009448private function f_TC_refuse_mode_modif_to_vamos(charstring id) runs on MSC_ConnHdlr {
9449 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
9450 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
9451
9452 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
9453 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9454 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
9455 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
9456 g_pars.ass_codec_list.codecElements[0];
9457 if (isvalue(g_pars.expect_mr_s0_s7)) {
9458 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
9459 g_pars.expect_mr_s0_s7;
9460 }
9461 }
9462 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
9463 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
9464 log("expecting ASS COMPL like this: ", exp_compl);
9465
9466 f_establish_fully(ass_cmd, exp_compl);
9467
Neels Hofmeyr8746b0d2021-06-01 17:25:39 +02009468 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 +00009469
9470 var RSL_Message rsl;
9471
9472 timer T := 5.0;
9473 T.start;
9474 alt {
9475 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
9476 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
9477 log("Rx L3 from net: ", l3);
9478 if (ischosen(l3.msgs.rrm.channelModeModify)) {
9479 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9480 mtc.stop;
9481 }
9482 }
9483 [] RSL.receive(tr_RSL_MODE_MODIFY_REQ(g_chan_nr, ?)) -> value rsl {
9484 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9485 mtc.stop;
9486 }
9487 [] T.timeout {
9488 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related Mode Modify should happen. */
9489 setverdict(pass);
9490 }
9491 }
9492 T.stop;
9493}
9494
9495/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel Mode Modify to VAMOS mode is refused by
9496 * osmo-bsc. */
9497testcase TC_refuse_mode_modif_to_vamos() runs on test_CT {
9498 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9499 var MSC_ConnHdlr vc_conn;
9500
9501 f_init(1, true);
9502 f_sleep(1.0);
9503
9504 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9505 vc_conn := f_start_handler(refers(f_TC_refuse_mode_modif_to_vamos), pars);
9506 vc_conn.done;
9507 f_shutdown_helper();
9508}
9509
9510/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel activation to VAMOS mode is refused by osmo-bsc.
9511 */
9512testcase TC_refuse_chan_act_to_vamos() runs on test_CT {
9513 f_init_vty();
9514
9515 f_init(1, false);
9516 f_sleep(1.0);
9517
9518 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 activate-vamos fr");
9519
9520 var ASP_RSL_Unitdata rx_rsl_ud;
9521 timer T := 5.0;
9522
9523 T.start;
9524 alt {
9525 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(?, IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud {
9526 if (rx_rsl_ud.rsl.msg_type == RSL_MT_CHAN_ACTIV) {
9527 T.stop;
9528 setverdict(fail, "CHANnel ACTivate in VAMOS mode succeeded even though BTS does not support VAMOS");
9529 mtc.stop;
9530 }
9531 repeat;
9532 }
9533 [] T.timeout {
9534 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related CHANnel ACTivate should happen. */
9535 setverdict(pass);
9536 }
9537 }
9538}
9539
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009540private function f_TC_reassignment_codec(charstring id) runs on MSC_ConnHdlr {
9541 /* First fully set up a speech lchan */
9542 f_TC_assignment_codec(id);
9543
9544 /* Trigger re-assignment to another lchan */
9545 var AssignmentState assignment_st := valueof(ts_AssignmentStateInit);
9546
9547 /* Re-Assignment should tell the MGW endpoint the new lchan's RTP address and port, so expecting to see exactly
9548 * one MDCX on MGCP. */
9549 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].mdcx_seen_exp + 1;
9550
9551 /* The new lchan will see all-new IPAC_CRCX and IPAC_MDCX messages telling the BTS the same RTP address and port
9552 * as the old lchan used. */
9553 g_media.bts.ipa_crcx_seen := false;
9554 g_media.bts.ipa_mdcx_seen := false;
9555
9556 /* Send different BTS side RTP port number for the new lchan */
9557 g_media.bts.bts.port_nr := 4223;
9558
9559 f_rslem_register(0, valueof(ts_RslChanNr_Bm(2))); /* <-- FIXME: can we somehow infer the timeslot that will be used? */
9560
9561 /* Trigger re-assignment. */
9562 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot " & int2str(g_chan_nr.tn) & " sub-slot 0 assignment");
9563
9564 timer T := 5.0;
9565 T.start;
9566 alt {
9567 [] as_assignment(assignment_st);
9568 [] as_Media();
9569 [] T.timeout {
9570 break;
9571 }
9572 }
9573
9574 if (not assignment_st.assignment_done) {
9575 setverdict(fail, "Assignment did not complete");
9576 mtc.stop;
9577 }
9578
9579 f_check_mgcp_expectations()
9580 setverdict(pass);
9581
9582 f_sleep(2.0);
9583 log("show lchan summary: ", f_vty_transceive_ret(BSCVTY, "show lchan summary"));
9584
9585 /* Instruct BSC to clear channel */
9586 var BssmapCause cause := 0;
9587 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9588 interleave {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009589 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {}
9590 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009591 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009592 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009593 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009594 }
9595 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
9596 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9597 }
9598 }
Neels Hofmeyr40a45d12021-09-23 22:57:12 +02009599 f_expect_dlcx_conns();
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009600
9601 f_sleep(0.5);
9602}
9603
9604testcase TC_reassignment_fr() runs on test_CT {
9605 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9606 var MSC_ConnHdlr vc_conn;
9607
9608 f_init(1, true);
9609 f_sleep(1.0);
9610
9611 f_ctrs_bsc_and_bts_init();
9612
9613 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9614 vc_conn := f_start_handler(refers(f_TC_reassignment_codec), pars);
9615 vc_conn.done;
9616
9617 /* from f_establish_fully() */
9618 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9619 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9620 /* from re-assignment */
9621 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9622 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9623 f_ctrs_bsc_and_bts_verify();
9624 f_shutdown_helper();
9625}
9626
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009627const charstring REEST_LOST_CONNECTION := "REEST_LOST_CONNECTION";
9628const charstring REEST_CLEAR := "REEST_CLEAR";
9629const charstring REEST_CLEAR_DONE := "REEST_CLEAR_DONE";
9630
9631/* CM Re-Establishment, 3GPP TS 24.008 4.5.1.6.
9632 * The MS <-> BTS loses radio connection, MS shows up on second BTS and asks for CM Re-Establishment.
9633 * BSC should establish a separate A conn for the same MS, the original A conn is then cleared by
9634 * the MSC as the CM Re-Establishment is handled.
9635 *
9636 * MS bts0 bts1 bsc msc test-component
9637 * |<----->|<----------------->|<-0-->| _1 Establish channel on bts 0
9638 * | | _1 wait a bit, to settle down
9639 * |<-x x--| | _1 "lose connection"
9640 * | | REEST_LOST_CONNECTION
9641 * |----------------->|------->|--1-->| _2 new A-conn: Chan Rqd, Imm Ass, Compl L3 with CM Re-Establishment Req
9642 * | | REEST_CLEAR
9643 * | |<-0---| _1 Clear Command on first A-conn
9644 * | |--0-->| _1 Clear Complete
9645 * | |<----------------->| | _1 Release first channel
9646 * | | REEST_CLEAR_DONE
9647 * |<-----------------|<-------|<-1---| _2 Chan Activ, Assignment Command
9648 * |<-----------------|<-------|<-1---| _2 Clear Command, Release
9649 *
9650 */
9651private function f_tc_cm_reestablishment_1(charstring id) runs on MSC_ConnHdlr {
9652 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
9653 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9654
9655 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9656 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9657
9658 f_establish_fully(ass_cmd, exp_compl);
9659
9660 /* The original channel loses connection, MS attemts CM Re-Establishment on another cell, see
9661 * f_tc_cm_reestablishment_2(). This established channel stays active until MSC sends a Clear Command. The time
9662 * when exactly that happens is determined by f_tc_cm_reestablishment_2(). */
9663 f_sleep(2.0);
9664 COORD.send(REEST_LOST_CONNECTION);
9665
9666 alt {
9667 [] COORD.receive(REEST_CLEAR);
9668 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9669 setverdict(fail, "Unexpected channel release");
9670 mtc.stop;
9671 }
9672 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
9673 setverdict(fail, "Unexpected channel release");
9674 mtc.stop;
9675 }
9676 }
9677 f_perform_clear()
9678 f_expect_dlcx_conns();
Neels Hofmeyr969abd02021-09-23 22:24:08 +02009679 f_create_mgcp_delete_ep(g_media.mgcp_ep);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009680 COORD.send(REEST_CLEAR_DONE);
9681}
9682
9683private function f_tc_cm_reestablishment_2(charstring id) runs on MSC_ConnHdlr {
9684 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
9685
9686 /* The MS lost the connection on the first channel, now establishes another one */
9687 COORD.receive(REEST_LOST_CONNECTION);
9688
9689 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
9690 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_REESTABL_REQ(mi));
9691 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
9692
9693 f_create_bssmap_exp(l3_enc);
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009694 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 +02009695 BSSAP.receive(tr_BSSMAP_ComplL3(l3_enc));
9696
9697 /* MSC got the CM Re-Establishment request and first off clears the previous conn. */
9698 COORD.send(REEST_CLEAR);
9699 COORD.receive(REEST_CLEAR_DONE);
9700
9701 f_sleep(2.0);
9702
9703 /* Answer the CM Re-Establishment with an Assignment Command. */
9704 var template PDU_BSSAP expect_assignment_compl := f_gen_exp_compl();
9705 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9706 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9707 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9708
9709 var AssignmentState st := valueof(ts_AssignmentStateInit);
9710 st.voice_call := true;
9711 st.is_assignment := true;
9712
9713 var ExpectCriteria mgcpcrit := {
9714 connid := omit,
9715 endpoint := omit,
9716 transid := omit
9717 };
9718 f_create_mgcp_expect(mgcpcrit);
9719
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009720 f_rslem_dchan_queue_enable(RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009721
9722 BSSAP.send(ass_cmd);
9723
9724 var PDU_BSSAP bssap;
9725
9726 alt {
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009727 [] as_assignment(st, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
9728 [] as_Media_ipacc(RSL1, RSL2);
9729 [] as_Media_mgw();
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009730 [st.assignment_done] BSSAP.receive(expect_assignment_compl) {
9731 break;
9732 }
9733 }
9734
9735 f_sleep(3.0);
9736
9737 f_logp(BSCVTY, "f_tc_cm_reestablishment_2 clearing");
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009738 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009739 f_expect_dlcx_conns();
9740}
9741
9742testcase TC_cm_reestablishment() runs on test_CT {
9743 var TestHdlrParams pars1 := f_gen_test_hdlr_pars();
9744 var MSC_ConnHdlr vc_conn1;
9745
9746 var TestHdlrParams pars2 := f_gen_test_hdlr_pars();
9747 var MSC_ConnHdlr vc_conn2;
9748 pars2.imsi := pars1.imsi;
9749 pars2.media_nr := 2;
Neels Hofmeyrbf720202021-10-02 12:58:24 +02009750 pars2.expect_tsc := BTS_TSC[1];
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009751
9752 f_init(2, true, guard_timeout := 40.0);
9753 f_sleep(1.0);
9754
9755 vc_conn1 := f_start_handler_create(pars1);
9756 vc_conn2 := f_start_handler_create(pars2);
9757 connect(vc_conn1:COORD, vc_conn2:COORD);
9758 f_start_handler_run(vc_conn1, refers(f_tc_cm_reestablishment_1), pars1);
9759 f_start_handler_run(vc_conn2, refers(f_tc_cm_reestablishment_2), pars2);
9760 vc_conn1.done;
9761 vc_conn2.done;
9762
9763 f_shutdown_helper();
9764}
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009765
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009766function f_exp_ipa_rx_nonfatal(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0,
9767 IpaStreamId sid := IPAC_PROTO_RSL_TRX0, boolean ignore_other_rx := true)
9768runs on test_CT return template (omit) RSL_Message {
9769 var ASP_RSL_Unitdata rx_rsl_ud;
9770 timer T := t_secs;
9771
9772 T.start;
9773 alt {
9774 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
9775 T.stop;
9776 }
9777 [ignore_other_rx] IPA_RSL[bts_nr].receive { repeat; }
9778 [not ignore_other_rx] IPA_RSL[bts_nr].receive {
9779 log("f_exp_ipa_rx_nonfatal(): Got different message than ", t_rx);
9780 T.stop;
9781 return omit;
9782 }
9783 [] T.timeout {
9784 return omit;
9785 }
9786 }
9787 return rx_rsl_ud.rsl;
9788}
9789
9790private function f_vty_set_imm_ass(TELNETasp_PT pt, BtsNr bts_nr := 0, charstring imm_ass_setting := "post-chan-ack") {
9791 f_vty_enter_cfg_bts(pt, bts_nr);
9792 f_vty_transceive(pt, "immediate-assignment " & imm_ass_setting);
9793 f_vty_transceive(pt, "exit");
9794 f_vty_transceive(pt, "exit");
9795 f_vty_transceive(pt, "exit");
9796}
9797
9798private function f_verify_imm_ass(RSL_Message imm_ass, template uint8_t ra := ?, template GsmFrameNumber fn := ?,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009799 template RslChannelNr chan_nr := ?,
9800 template (present) uint12_t arfcn := ?,
9801 template (present) uint3_t tsc := ?)
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009802{
9803 var RSL_IE_Body full_imm_ass_info;
9804 if (not f_rsl_find_ie(imm_ass, RSL_IE_FULL_IMM_ASS_INFO, full_imm_ass_info)) {
9805 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
9806 mtc.stop;
9807 }
9808
9809 var GsmRrMessage rr_imm_ass := dec_GsmRrMessage(full_imm_ass_info.full_imm_ass_info.payload);
9810 var template GsmRrMessage expect_imm_ass := tr_IMM_ASS(ra := ra,
9811 fn := fn,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009812 ch_desc := tr_ChanDescH0(chan_nr, arfcn, tsc),
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009813 page_mode := ?);
9814 if (not match(rr_imm_ass, expect_imm_ass)) {
9815 log("Error: expected ", expect_imm_ass, " got ", rr_imm_ass);
9816 setverdict(fail, "Failed to match Immediate Assignment");
9817 mtc.stop;
9818 }
9819}
9820
9821testcase TC_imm_ass_post_chan_ack() runs on test_CT {
9822 var RSL_Message chan_act;
9823 var RSL_Message imm_ass;
9824
9825 f_init(1, false);
9826 f_sleep(1.0);
9827
9828 /* (should be the default anyway, just to make things clear) */
9829 f_vty_set_imm_ass(BSCVTY, 0, "post-chan-ack");
9830
9831 /* RA containing reason=LU */
9832 var GsmFrameNumber fn := 2342;
9833 var uint8_t ra := 2;
9834 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9835
9836 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9837
9838 /* First send the Chan Act ACK */
9839 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009840 var RSL_IE_Body chan_ident_ie;
9841 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9842 setverdict(fail, "RSL Channel Identification IE is absent");
9843 mtc.stop;
9844 }
9845
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009846 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn + 10));
9847
9848 /* Then expect the Immediate Assignment, after we ACKed the chan act */
9849 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9850
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009851 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9852 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009853
9854 /* Check that the lchan is working */
9855 var octetstring l3 := '00010203040506'O;
9856 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9857
9858 var BSSAP_N_CONNECT_ind rx_c_ind;
9859 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9860 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9861
9862 f_sleep(1.0);
9863 f_shutdown_helper();
9864}
9865
9866testcase TC_imm_ass_pre_chan_ack() runs on test_CT {
9867 var RSL_Message chan_act;
9868 var RSL_Message imm_ass;
9869
9870 f_init(1, false);
9871 f_sleep(1.0);
9872
9873 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9874
9875 /* RA containing reason=LU */
9876 var GsmFrameNumber fn := 2342;
9877 var uint8_t ra := 2;
9878 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9879
9880 /* (set bts 0 cfg back to default) */
9881 f_vty_set_imm_ass(BSCVTY);
9882
9883 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9884 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009885 var RSL_IE_Body chan_ident_ie;
9886 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9887 setverdict(fail, "RSL Channel Identification IE is absent");
9888 mtc.stop;
9889 }
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009890
9891 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9892 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009893 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9894 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009895
9896 /* Only now send the Chan Act ACK */
9897 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9898
9899 /* Check that the lchan is working */
9900 var octetstring l3 := '00010203040506'O;
9901 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9902
9903 var BSSAP_N_CONNECT_ind rx_c_ind;
9904 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9905 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9906
9907 f_sleep(1.0);
9908 f_shutdown_helper();
9909}
9910
Neels Hofmeyr23158742021-09-07 19:08:07 +02009911testcase TC_imm_ass_pre_ts_ack() runs on test_CT {
9912 var RSL_Message chan_act;
9913 var RSL_Message imm_ass;
9914
9915 f_init(1, false);
9916 f_sleep(1.0);
9917
9918 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
9919
9920 /* RA containing reason=LU */
9921 var GsmFrameNumber fn := 2342;
9922 var uint8_t ra := 2;
9923 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9924
9925 /* (set bts 0 cfg back to default) */
9926 f_vty_set_imm_ass(BSCVTY);
9927
9928 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9929 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
9930 var RSL_IE_Body chan_ident_ie;
9931 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9932 setverdict(fail, "RSL Channel Identification IE is absent");
9933 mtc.stop;
9934 }
9935
9936 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9937 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9938 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9939 chan_ident_ie.chan_ident.ch_desc.v.tsc);
9940
9941 /* Only now send the Chan Act ACK */
9942 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9943
9944 /* Check that the lchan is working */
9945 var octetstring l3 := '00010203040506'O;
9946 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9947
9948 var BSSAP_N_CONNECT_ind rx_c_ind;
9949 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9950 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9951
9952 f_sleep(1.0);
9953 f_shutdown_helper();
9954}
9955
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +02009956testcase TC_imm_ass_pre_chan_ack_dyn_ts() runs on test_CT {
9957 /* change Timeslot 6 before f_init() starts RSL */
9958 f_init_vty();
9959 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
9960 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
9961
9962 f_init(1, false);
9963 f_sleep(1.0);
9964
9965 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
9966 /* The BSC will activate the dynamic PDCH by default, so confirm that */
9967 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
9968 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
9969
9970 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
9971 f_ts_set_chcomb(0, 0, 6, "PDCH");
9972
9973 /* block all static timeslots so that the dyn TS will be used */
9974 f_disable_all_tch_f();
9975 f_disable_all_tch_h();
9976 f_disable_all_sdcch();
9977
9978 var RSL_Message chan_act;
9979 var RSL_Message imm_ass;
9980
9981 f_init(1, false);
9982 f_sleep(1.0);
9983
9984 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9985
9986 /* RA containing reason=LU */
9987 var GsmFrameNumber fn := 2342;
9988 var uint8_t ra := 2;
9989 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9990
9991 /* (set bts 0 cfg back to default) */
9992 f_vty_set_imm_ass(BSCVTY);
9993
9994 /* Expect the dyn TS to deactivate PDCH first */
9995 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
9996 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
9997
9998 /* Now activation as SDCCH8 */
9999 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10000
10001 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010002 var RSL_IE_Body chan_ident_ie;
10003 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10004 setverdict(fail, "RSL Channel Identification IE is absent");
10005 mtc.stop;
10006 }
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010007
10008 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
10009 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010010 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10011 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010012
10013 /* Only now send the Chan Act ACK */
10014 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10015
10016 /* Check that the lchan is working */
10017 var octetstring l3 := '00010203040506'O;
10018 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10019
10020 var BSSAP_N_CONNECT_ind rx_c_ind;
10021 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10022 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10023
10024 f_sleep(1.0);
10025 f_shutdown_helper();
10026}
10027
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010028testcase TC_imm_ass_pre_ts_ack_dyn_ts() runs on test_CT {
10029 /* change Timeslot 6 before f_init() starts RSL */
10030 f_init_vty();
10031 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
10032 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
10033
10034 f_init(1, false);
10035 f_sleep(1.0);
10036
10037 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
10038 /* The BSC will activate the dynamic PDCH by default, so confirm that */
10039 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
10040 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
10041
10042 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
10043 f_ts_set_chcomb(0, 0, 6, "PDCH");
10044
10045 /* block all static timeslots so that the dyn TS will be used */
10046 f_disable_all_tch_f();
10047 f_disable_all_tch_h();
10048 f_disable_all_sdcch();
10049
10050 var RSL_Message chan_act;
10051 var RSL_Message imm_ass;
10052
10053 f_init(1, false);
10054 f_sleep(1.0);
10055
10056 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
10057
10058 /* RA containing reason=LU */
10059 var GsmFrameNumber fn := 2342;
10060 var uint8_t ra := 2;
10061 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
10062
10063 /* (set bts 0 cfg back to default) */
10064 f_vty_set_imm_ass(BSCVTY);
10065
10066 /* Expect the dyn TS to deactivate PDCH first */
10067 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10068
10069 /* And already the Immediate Assignment even before the PDCH Deact ACK */
10070 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
10071
10072 /* continue the Osmo style PDCH Deact (usual chan rel) */
10073 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10074
10075 /* Now activation as SDCCH8 */
10076 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10077
10078 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010079 var RSL_IE_Body chan_ident_ie;
10080 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10081 setverdict(fail, "RSL Channel Identification IE is absent");
10082 mtc.stop;
10083 }
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010084 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10085
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010086 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10087 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010088
10089 /* Check that the lchan is working */
10090 var octetstring l3 := '00010203040506'O;
10091 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10092
10093 var BSSAP_N_CONNECT_ind rx_c_ind;
10094 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10095 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10096
10097 f_sleep(1.0);
10098 f_shutdown_helper();
10099}
10100
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010101/* GET and SET the bts.N.trx.M.rf_locked CTRL variable */
10102testcase TC_ctrl_trx_rf_locked() runs on test_CT {
10103 var MSC_ConnHdlr vc_conn;
10104
10105 f_init(nr_bts := 2, handler_mode := true, nr_msc := 1);
10106 f_sleep(1.0);
10107
10108 /* BTS 0, 1, 2 are OML unlocked, only BTS 0, 1 are actually connected to RSL. */
10109 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10110 "0,0,operational,unlocked,on,rsl-up;" &
10111 "1,0,operational,unlocked,on,rsl-up;" &
10112 "2,0,operational,unlocked,on,rsl-down;" &
10113 "3,0,inoperational,locked,on,rsl-down;");
10114
10115 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock BTS 1 TRX 0");
10116 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10117 /* give it a moment to settle the FSM status */
10118 f_sleep(1.0);
10119
10120 /* Now BTS 1 TRX 0 should reflect "locked". Note the RF policy stays "on", because this is still handled
10121 * globally in osmo-bsc. Probably after sending "rf_locked 1" for a TRX, that TRX should reflect an RF policy
10122 * of "off"? But that's for a future patch if at all. */
10123 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10124 "0,0,operational,unlocked,on,rsl-up;" &
10125 "1,0,operational,locked,on,rsl-up;" &
10126 "2,0,operational,unlocked,on,rsl-down;" &
10127 "3,0,inoperational,locked,on,rsl-down;");
10128
10129 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock the already locked TRX, nothing should change");
10130 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10131 f_sleep(1.0);
10132 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10133 "0,0,operational,unlocked,on,rsl-up;" &
10134 "1,0,operational,locked,on,rsl-up;" &
10135 "2,0,operational,unlocked,on,rsl-down;" &
10136 "3,0,inoperational,locked,on,rsl-down;");
10137
10138 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock BTS 1 TRX 0");
10139 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "0");
10140 f_sleep(1.0);
10141 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10142 "0,0,operational,unlocked,on,rsl-up;" &
10143 "1,0,operational,unlocked,on,rsl-up;" &
10144 "2,0,operational,unlocked,on,rsl-down;" &
10145 "3,0,inoperational,locked,on,rsl-down;");
10146
10147 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an already unlocked TRX, nothing should change");
10148 f_ctrl_set(IPA_CTRL, "bts.0.trx.0.rf_locked", "0");
10149 f_sleep(1.0);
10150 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10151 "0,0,operational,unlocked,on,rsl-up;" &
10152 "1,0,operational,unlocked,on,rsl-up;" &
10153 "2,0,operational,unlocked,on,rsl-down;" &
10154 "3,0,inoperational,locked,on,rsl-down;");
10155
10156 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an inoperational TRX");
10157 f_ctrl_set(IPA_CTRL, "bts.3.trx.0.rf_locked", "0");
10158 f_sleep(1.0);
10159 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10160 "0,0,operational,unlocked,on,rsl-up;" &
10161 "1,0,operational,unlocked,on,rsl-up;" &
10162 "2,0,operational,unlocked,on,rsl-down;" &
10163 "3,0,inoperational,locked,on,rsl-down;");
10164
10165 f_shutdown_helper();
10166}
10167
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010168/* Reproduce a segfault happening when the SDCCH (primary) lchan is lost in-between a TCH Channel Activ and its Channel
10169 * Activ Ack (SYS#5627). */
10170private function f_TC_lost_sdcch_during_assignment(charstring id) runs on MSC_ConnHdlr {
10171 var PDU_BSSAP ass_cmd := f_gen_ass_req();
10172 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10173 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
10174 }
10175 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
10176 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
10177
10178 var BSSMAP_FIELD_CodecType codecType;
10179 codecType := valueof(ass_cmd.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType);
10180
10181 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
10182
10183 /* First establish a signalling lchan */
10184 f_create_chan_and_exp();
10185 f_rslem_dchan_queue_enable();
10186
10187 /* we should now have a COMPL_L3 at the MSC */
10188 var template PDU_BSSAP exp_l3_compl;
10189 exp_l3_compl := tr_BSSMAP_ComplL3()
10190 if (g_pars.aoip == false) {
10191 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
10192 } else {
10193 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
10194 }
10195 timer T := 10.0;
10196 T.start;
10197 alt {
10198 [] BSSAP.receive(exp_l3_compl);
10199 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
10200 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
10201 }
10202 [] T.timeout {
10203 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
10204 }
10205 }
10206
10207 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
10208 activate(as_Media_mgw());
10209
10210 var RslChannelNr chan_nr := { u := { ch0 := RSL_CHAN_NR_Bm_ACCH }, tn := 1 };
10211 f_rslem_register(0, chan_nr);
10212
10213 f_rslem_set_auto_chan_act_ack(RSL_PROC, false);
10214 BSSAP.send(ass_cmd);
10215
10216
10217 /* Wait for the Channel Activ for the TCH channel */
10218 var ASP_RSL_Unitdata rx_rsl_ud;
10219 RSL.receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV), sid := ?)) -> value rx_rsl_ud;
10220
10221 /* make the original SDCCH disappear */
10222 RSL.send(ts_RSL_REL_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
10223
10224 /* and ACK the TCH channel activation. This caused a segfault up to OsmoBSC 1.7.0 (SYS#5627) */
10225 RSL.send(ts_ASP_RSL_UD(ts_RSL_CHAN_ACT_ACK(chan_nr, 23), rx_rsl_ud.streamId));
10226
10227 interleave {
10228 [] BSSAP.receive(tr_BSSMAP_AssignmentFail);
10229 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
10230 }
10231
10232 BSSAP.send(ts_BSSMAP_ClearCommand(0));
10233 BSSAP.receive(tr_BSSMAP_ClearComplete);
10234 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
10235
10236 var MgcpCommand mgcp;
10237 MGCP.receive(tr_DLCX()) -> value mgcp {
10238 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
10239 };
10240
10241 f_sleep(0.5);
10242}
10243testcase TC_lost_sdcch_during_assignment() runs on test_CT {
10244 var TestHdlrParams pars := f_gen_test_hdlr_pars();
10245 var MSC_ConnHdlr vc_conn;
10246
10247 f_init(1, true);
10248 f_sleep(1.0);
10249
10250 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
10251 vc_conn := f_start_handler(refers(f_TC_lost_sdcch_during_assignment), pars);
10252 vc_conn.done;
10253
10254 f_shutdown_helper();
10255}
10256
Harald Welte28d943e2017-11-25 15:00:50 +010010257control {
Harald Welte898113b2018-01-31 18:32:21 +010010258 /* CTRL interface testing */
Harald Welte4003d112017-12-09 22:35:39 +010010259 execute( TC_ctrl_msc_connection_status() );
Stefan Sperlingb041b3d2018-01-03 17:14:55 +010010260 execute( TC_ctrl_msc0_connection_status() );
Neels Hofmeyrf65ce872021-09-23 18:40:10 +020010261 /* In SCCPlite tests, only one MSC is configured. These tests assume that three MSCs are configured, so only run
10262 * these in the AoIP test suite. */
10263 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10264 execute( TC_stat_num_msc_connected_1() );
10265 execute( TC_stat_num_msc_connected_2() );
10266 execute( TC_stat_num_msc_connected_3() );
10267 }
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020010268 execute( TC_stat_num_bts_connected_1() );
10269 execute( TC_stat_num_bts_connected_2() );
10270 execute( TC_stat_num_bts_connected_3() );
Harald Welte96c94412017-12-09 03:12:45 +010010271 execute( TC_ctrl() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010272 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER) {
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +020010273 execute( TC_ctrl_location() );
10274 }
Harald Welte898113b2018-01-31 18:32:21 +010010275
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010276 execute( TC_si_default() );
Neels Hofmeyr66aeba42020-07-06 02:21:21 +020010277 execute( TC_si2quater_2_earfcns() );
10278 execute( TC_si2quater_3_earfcns() );
10279 execute( TC_si2quater_4_earfcns() );
10280 execute( TC_si2quater_5_earfcns() );
10281 execute( TC_si2quater_6_earfcns() );
Neels Hofmeyrad132f22020-07-08 02:20:16 +020010282 execute( TC_si2quater_12_earfcns() );
10283 execute( TC_si2quater_23_earfcns() );
10284 execute( TC_si2quater_32_earfcns() );
10285 execute( TC_si2quater_33_earfcns() );
10286 execute( TC_si2quater_42_earfcns() );
10287 execute( TC_si2quater_48_earfcns() );
10288 execute( TC_si2quater_49_earfcns() );
Pau Espin Pedrol85a84432020-07-20 18:45:03 +020010289 execute( TC_si_acc_rotate() );
Alexander Couzens4ad3a352020-09-10 22:29:12 +020010290 execute( TC_si_acc_ramp_rotate() );
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010291
Harald Welte898113b2018-01-31 18:32:21 +010010292 /* RSL DCHAN Channel ACtivation / Deactivation */
Harald Welteae026692017-12-09 01:03:01 +010010293 execute( TC_chan_act_noreply() );
Harald Welte4003d112017-12-09 22:35:39 +010010294 execute( TC_chan_act_counter() );
Harald Welteae026692017-12-09 01:03:01 +010010295 execute( TC_chan_act_ack_noest() );
Philipp Maier9c60a622020-07-09 15:08:46 +020010296 execute( TC_chan_act_ack_noest_emerg() );
Philipp Maier606f07d2020-08-12 17:21:58 +020010297 execute( TC_chan_rqd_emerg_deny() );
Harald Welteae026692017-12-09 01:03:01 +010010298 execute( TC_chan_act_ack_est_ind_noreply() );
10299 execute( TC_chan_act_ack_est_ind_refused() );
Harald Welte618ef642017-12-14 14:58:20 +010010300 execute( TC_chan_act_nack() );
Harald Welte799c97b2017-12-14 17:50:30 +010010301 execute( TC_chan_exhaustion() );
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +070010302 execute( TC_chan_deact_silence() );
Harald Welte4003d112017-12-09 22:35:39 +010010303 execute( TC_chan_rel_rll_rel_ind() );
10304 execute( TC_chan_rel_conn_fail() );
10305 execute( TC_chan_rel_hard_clear() );
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +020010306 execute( TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() );
10307 execute( TC_chan_rel_last_eutran_plmn_hard_clear_csfb() );
Harald Welte99787102019-02-04 10:41:36 +010010308 execute( TC_chan_rel_hard_clear_csfb() );
Harald Welted8c36cd2017-12-09 23:05:31 +010010309 execute( TC_chan_rel_hard_rlsd() );
Harald Welte550daf92018-06-11 19:22:13 +020010310 execute( TC_chan_rel_hard_rlsd_ms_dead() );
Harald Welte85804d42017-12-10 14:11:58 +010010311 execute( TC_chan_rel_a_reset() );
Pau Espin Pedrolc675b612020-01-09 19:55:40 +010010312 execute( TC_chan_rel_sccp_tiar_timeout() );
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +020010313 execute( TC_chan_rel_rr_cause() );
Harald Welte6f521d82017-12-11 19:52:02 +010010314
Harald Weltecfe2c962017-12-15 12:09:32 +010010315 execute( TC_outbound_connect() );
Harald Welte898113b2018-01-31 18:32:21 +010010316
10317 /* Assignment related */
Harald Welte16a4adf2017-12-14 18:54:01 +010010318 execute( TC_assignment_cic_only() );
Harald Welte235ebf12017-12-15 14:18:16 +010010319 execute( TC_assignment_csd() );
10320 execute( TC_assignment_ctm() );
10321 execute( TC_assignment_sign() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010322 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10323 execute( TC_assignment_aoip_tla_v6() );
10324 }
Harald Welte235ebf12017-12-15 14:18:16 +010010325 execute( TC_assignment_fr_a5_0() );
10326 execute( TC_assignment_fr_a5_1() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010327 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte8f67d1d2018-05-25 20:38:42 +020010328 execute( TC_assignment_fr_a5_1_codec_missing() );
10329 }
Harald Welte235ebf12017-12-15 14:18:16 +010010330 execute( TC_assignment_fr_a5_3() );
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +020010331 execute( TC_assignment_fr_a5_4() );
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +020010332 execute( TC_assignment_fr_a5_4_fail() );
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +020010333 execute( TC_assignment_fr_a5_not_sup() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010334 execute( TC_ciph_mode_a5_0() );
10335 execute( TC_ciph_mode_a5_1() );
Oliver Smith50b98122021-07-09 15:00:28 +020010336 execute( TC_ciph_mode_a5_2_0() );
Oliver Smith1dff88d2021-07-09 08:45:51 +020010337 execute( TC_ciph_mode_a5_2_1() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010338 execute( TC_ciph_mode_a5_3() );
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +020010339 execute( TC_ciph_mode_a5_4() );
Harald Welte16a4adf2017-12-14 18:54:01 +010010340
Harald Welte60aa5762018-03-21 19:33:13 +010010341 execute( TC_assignment_codec_fr() );
Neels Hofmeyr559d5d02021-04-16 16:50:49 +020010342 execute( TC_assignment_codec_fr_by_mode_modify() );
Harald Welte60aa5762018-03-21 19:33:13 +010010343 execute( TC_assignment_codec_hr() );
10344 execute( TC_assignment_codec_efr() );
10345 execute( TC_assignment_codec_amr_f() );
10346 execute( TC_assignment_codec_amr_h() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010347
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010348 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier8a581d22019-03-26 18:32:48 +010010349 execute( TC_assignment_codec_amr_f_S1() );
10350 execute( TC_assignment_codec_amr_h_S1() );
10351 execute( TC_assignment_codec_amr_f_S124() );
10352 execute( TC_assignment_codec_amr_h_S124() );
10353 execute( TC_assignment_codec_amr_f_S0() );
10354 execute( TC_assignment_codec_amr_f_S02() );
10355 execute( TC_assignment_codec_amr_f_S024() );
10356 execute( TC_assignment_codec_amr_f_S0247() );
10357 execute( TC_assignment_codec_amr_h_S0() );
10358 execute( TC_assignment_codec_amr_h_S02() );
10359 execute( TC_assignment_codec_amr_h_S024() );
10360 execute( TC_assignment_codec_amr_h_S0247() );
10361 execute( TC_assignment_codec_amr_f_S01234567() );
10362 execute( TC_assignment_codec_amr_f_S0234567() );
10363 execute( TC_assignment_codec_amr_f_zero() );
10364 execute( TC_assignment_codec_amr_f_unsupp() );
10365 execute( TC_assignment_codec_amr_h_S7() );
Neels Hofmeyr21863562020-11-26 00:34:33 +000010366 execute( TC_assignment_codec_amr_f_start_mode_auto() );
10367 execute( TC_assignment_codec_amr_h_start_mode_auto() );
Neels Hofmeyr3eb94562020-11-26 02:40:26 +000010368 execute( TC_assignment_codec_amr_f_start_mode_4() );
10369 execute( TC_assignment_codec_amr_h_start_mode_4() );
Neels Hofmeyr454d7922020-11-26 02:24:57 +000010370 execute( TC_assignment_codec_amr_startmode_cruft() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010371 }
Harald Welte60aa5762018-03-21 19:33:13 +010010372
Philipp Maierac09bfc2019-01-08 13:41:39 +010010373 execute( TC_assignment_codec_fr_exhausted_req_hr() );
10374 execute( TC_assignment_codec_fr_exhausted_req_fr() );
10375 execute( TC_assignment_codec_fr_exhausted_req_fr_hr() );
10376 execute( TC_assignment_codec_fr_exhausted_req_hr_fr() );
10377 execute( TC_assignment_codec_hr_exhausted_req_fr() );
10378 execute( TC_assignment_codec_hr_exhausted_req_hr() );
10379 execute( TC_assignment_codec_hr_exhausted_req_hr_fr() );
10380 execute( TC_assignment_codec_hr_exhausted_req_fr_hr() );
10381 execute( TC_assignment_codec_req_hr_fr() );
10382 execute( TC_assignment_codec_req_fr_hr() );
Pau Espin Pedrol14475352021-07-22 15:48:16 +020010383 execute( TC_assignment_sdcch_exhausted_req_signalling() );
10384 execute( TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() );
10385 execute( TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() );
Philipp Maierac09bfc2019-01-08 13:41:39 +010010386
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +020010387 execute( TC_assignment_osmux() );
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +020010388
Harald Welte898113b2018-01-31 18:32:21 +010010389 /* RLL Establish Indication on inactive DCHAN / SAPI */
Harald Welte5cd20ed2017-12-13 21:03:20 +010010390 execute( TC_rll_est_ind_inact_lchan() );
10391 execute( TC_rll_est_ind_inval_sapi1() );
10392 execute( TC_rll_est_ind_inval_sapi3() );
10393 execute( TC_rll_est_ind_inval_sacch() );
10394
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +070010395 /* DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
10396 execute( TC_tch_dlci_link_id_sapi() );
10397
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +070010398 /* SAPI N Reject triggered by RLL establishment failures */
10399 execute( TC_rll_rel_ind_sapi_n_reject() );
10400 execute( TC_rll_err_ind_sapi_n_reject() );
10401 execute( TC_rll_timeout_sapi_n_reject() );
10402
Harald Welte898113b2018-01-31 18:32:21 +010010403 /* Paging related tests */
Harald Welte6f521d82017-12-11 19:52:02 +010010404 execute( TC_paging_imsi_nochan() );
10405 execute( TC_paging_tmsi_nochan() );
10406 execute( TC_paging_tmsi_any() );
10407 execute( TC_paging_tmsi_sdcch() );
10408 execute( TC_paging_tmsi_tch_f() );
10409 execute( TC_paging_tmsi_tch_hf() );
10410 execute( TC_paging_imsi_nochan_cgi() );
10411 execute( TC_paging_imsi_nochan_lac_ci() );
10412 execute( TC_paging_imsi_nochan_ci() );
10413 execute( TC_paging_imsi_nochan_lai() );
10414 execute( TC_paging_imsi_nochan_lac() );
10415 execute( TC_paging_imsi_nochan_all() );
Harald Welte751d3eb2018-01-31 15:51:06 +010010416 execute( TC_paging_imsi_nochan_plmn_lac_rnc() );
10417 execute( TC_paging_imsi_nochan_rnc() );
10418 execute( TC_paging_imsi_nochan_lac_rnc() );
10419 execute( TC_paging_imsi_nochan_lacs() );
10420 execute( TC_paging_imsi_nochan_lacs_empty() );
Stefan Sperling049a86e2018-03-20 15:51:00 +010010421 execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
Harald Welte10985002017-12-12 09:29:15 +010010422 execute( TC_paging_imsi_a_reset() );
Harald Weltee65d40e2017-12-13 00:09:06 +010010423 execute( TC_paging_imsi_load() );
Philipp Maier779a7922018-02-16 11:00:37 +010010424 execute( TC_paging_counter() );
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +010010425 execute( TC_paging_resp_unsol() );
Harald Welte4e9b9cc2017-12-14 18:31:02 +010010426
10427 execute( TC_rsl_drop_counter() );
Stefan Sperling830dc9d2018-02-12 21:08:28 +010010428 execute( TC_rsl_unknown_unit_id() );
10429
10430 execute( TC_oml_unknown_unit_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010431
10432 execute( TC_classmark() );
Harald Welteeddf0e92020-06-21 19:42:15 +020010433 execute( TC_common_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010434 execute( TC_unsol_ass_fail() );
Harald Welteea99a002018-01-31 20:46:43 +010010435 execute( TC_unsol_ass_compl() );
Harald Weltefbf9b5e2018-01-31 20:41:23 +010010436 execute( TC_unsol_ho_fail() );
Harald Weltee3bd6582018-01-31 22:51:25 +010010437 execute( TC_err_82_short_msg() );
Harald Weltee9e02e42018-01-31 23:36:25 +010010438 execute( TC_err_84_unknown_msg() );
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010439
Harald Welte261af4b2018-02-12 21:20:39 +010010440 execute( TC_ho_int() );
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +020010441 execute( TC_ho_int_a5_0() );
10442 execute( TC_ho_int_a5_1() );
10443 execute( TC_ho_int_a5_3() );
10444 execute( TC_ho_int_a5_4() );
Neels Hofmeyr5f144212020-11-03 15:41:58 +000010445 execute( TC_ho_int_radio_link_failure() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010446
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010447 execute( TC_ho_out_of_this_bsc() );
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +020010448 execute( TC_ho_out_fail_no_msc_response() );
10449 execute( TC_ho_out_fail_rr_ho_failure() );
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +020010450 execute( TC_ho_out_fail_no_result_after_ho_cmd() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010451
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010452 execute( TC_ho_into_this_bsc() );
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +020010453 execute( TC_ho_into_this_bsc_a5_0() );
10454 execute( TC_ho_into_this_bsc_a5_1() );
10455 execute( TC_ho_into_this_bsc_a5_3() );
10456 execute( TC_ho_into_this_bsc_a5_4() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010457 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10458 execute( TC_ho_into_this_bsc_tla_v6() );
10459 }
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +020010460 execute( TC_srvcc_eutran_to_geran() );
Pau Espin Pedrol35801c32021-04-19 13:03:20 +020010461 execute( TC_srvcc_eutran_to_geran_ho_out() );
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +020010462 execute( TC_srvcc_eutran_to_geran_forbid_fast_return() );
10463 execute( TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010464 execute( TC_ho_in_fail_msc_clears() );
10465 execute( TC_ho_in_fail_msc_clears_after_ho_detect() );
10466 execute( TC_ho_in_fail_no_detect() );
10467 execute( TC_ho_in_fail_no_detect2() );
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010468
Neels Hofmeyr91401012019-07-11 00:42:35 +020010469 execute( TC_ho_neighbor_config_1() );
10470 execute( TC_ho_neighbor_config_2() );
10471 execute( TC_ho_neighbor_config_3() );
10472 execute( TC_ho_neighbor_config_4() );
10473 execute( TC_ho_neighbor_config_5() );
10474 execute( TC_ho_neighbor_config_6() );
10475 execute( TC_ho_neighbor_config_7() );
10476
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010477 execute( TC_bssap_rlsd_does_not_cause_bssmap_reset() );
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010010478 execute( TC_bssmap_clear_does_not_cause_bssmap_reset() );
Neels Hofmeyrfd445c32018-03-09 15:39:31 +010010479 execute( TC_ms_rel_ind_does_not_cause_bssmap_reset() );
Harald Welte94e0c342018-04-07 11:33:23 +020010480
10481 execute( TC_dyn_pdch_ipa_act_deact() );
10482 execute( TC_dyn_pdch_ipa_act_nack() );
10483 execute( TC_dyn_pdch_osmo_act_deact() );
10484 execute( TC_dyn_pdch_osmo_act_nack() );
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +020010485 if (mp_enable_dyn_sdcch8_test) {
10486 execute( TC_dyn_ts_sdcch8_act_deact() );
10487 execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
10488 execute( TC_dyn_ts_sdcch8_act_nack() );
10489 }
Harald Welte99f3ca02018-06-14 13:40:29 +020010490
Stefan Sperling0796a822018-10-05 13:01:39 +020010491 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +020010492 execute( TC_chopped_ipa_payload() );
Stefan Sperling0796a822018-10-05 13:01:39 +020010493
Pau Espin Pedrol8f773632019-11-05 11:46:53 +010010494 /* Power control related */
10495 execute( TC_assignment_verify_ms_power_params_ie() );
Vadim Yanitskiy4b233042021-06-30 00:58:43 +020010496 execute( TC_c0_power_red_mode() );
Neels Hofmeyr4f118412020-06-04 15:25:10 +020010497
10498 /* MSC pooling */
10499 /* FIXME: in SCCPlite, indicating how many MSCs should be connected does currently not work. Since
10500 * RESET->RESET-ACK is unconditionally negotiated for all configured MSCs, they always all appear as connected
10501 * to osmo-bsc. The MSC pooling tests however require disconnecting selected MSCs, and hence don't work out as
10502 * intended on SCCPlite. So for now, run these only for SCCP/M3UA. */
10503 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10504 execute( TC_mscpool_L3Compl_on_1_msc() );
10505 execute( TC_mscpool_L3Complete_by_imsi_round_robin() );
10506 execute( TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() );
10507 execute( TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() );
10508 execute( TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() );
10509 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() );
10510 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_1() );
10511 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_2() );
10512 execute( TC_mscpool_LU_by_tmsi_from_other_PLMN() );
10513 execute( TC_mscpool_paging_and_response_imsi() );
10514 execute( TC_mscpool_paging_and_response_tmsi() );
10515 execute( TC_mscpool_no_allow_attach_round_robin() );
10516 execute( TC_mscpool_no_allow_attach_valid_nri() );
10517 }
10518
Harald Welte99f3ca02018-06-14 13:40:29 +020010519 execute( TC_early_conn_fail() );
10520 execute( TC_late_conn_fail() );
Oliver Smithaf03bef2021-08-24 15:34:51 +020010521 execute( TC_stats_conn_fail() );
Harald Welte99f3ca02018-06-14 13:40:29 +020010522
Philipp Maier783681c2020-07-16 16:47:06 +020010523 /* Emergency call handling (deny / allow) */
10524 execute( TC_assignment_emerg_setup_allow() );
10525 execute( TC_assignment_emerg_setup_deny_msc() );
10526 execute( TC_assignment_emerg_setup_deny_bts() );
Philipp Maier82812002020-08-13 18:48:27 +020010527 execute( TC_emerg_premption() );
10528
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +070010529 /* Frequency hopping parameters handling */
10530 execute( TC_fh_params_chan_activ() );
10531 execute( TC_fh_params_imm_ass() );
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +070010532 execute( TC_fh_params_assignment_cmd() );
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +070010533 execute( TC_fh_params_handover_cmd() );
Vadim Yanitskiyca974032020-09-01 07:20:39 +070010534 execute( TC_fh_params_si4_cbch() );
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020010535
10536 if (mp_enable_lcs_tests) {
10537 execute( TC_lcs_loc_req_for_active_ms() );
10538 execute( TC_lcs_loc_req_for_active_ms_ta_req() );
10539 execute( TC_lcs_loc_req_for_idle_ms() );
10540 execute( TC_lcs_loc_req_no_subscriber() );
10541 execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
10542 execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
10543 execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
10544 execute( TC_cm_service_during_lcs_loc_req() );
10545 execute( TC_ho_during_lcs_loc_req() );
10546 }
Neels Hofmeyrbf037052020-10-28 22:52:02 +000010547
10548 execute( TC_no_msc() );
Neels Hofmeyr87857ec2021-04-25 16:17:47 +000010549
10550 execute( TC_refuse_chan_act_to_vamos() );
10551 execute( TC_refuse_mode_modif_to_vamos() );
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +000010552
10553 execute( TC_reassignment_fr() );
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +020010554
10555 execute( TC_cm_reestablishment() );
Neels Hofmeyrb07b2952021-08-07 04:23:14 +020010556
10557 execute( TC_imm_ass_post_chan_ack() );
10558 execute( TC_imm_ass_pre_chan_ack() );
Neels Hofmeyr23158742021-09-07 19:08:07 +020010559 execute( TC_imm_ass_pre_ts_ack() );
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010560 execute( TC_imm_ass_pre_chan_ack_dyn_ts() );
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010561 execute( TC_imm_ass_pre_ts_ack_dyn_ts() );
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010562
10563 execute( TC_ctrl_trx_rf_locked() );
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010564
10565 execute( TC_lost_sdcch_during_assignment() );
Harald Welte28d943e2017-11-25 15:00:50 +010010566}
10567
10568}