blob: 04e895adc9ac87e6e8a81d0aaa8726e16cede4b9 [file] [log] [blame]
Harald Welte28d943e2017-11-25 15:00:50 +01001module BSC_Tests {
2
Harald Welte21b46bd2017-12-17 19:46:32 +01003/* Integration Tests for OsmoBSC
Harald Weltea0630032018-03-20 21:09:55 +01004 * (C) 2017-2018 by Harald Welte <laforge@gnumonks.org>
Harald Welte21b46bd2017-12-17 19:46:32 +01005 * All rights reserved.
6 *
7 * Released under the terms of GNU General Public License, Version 2 or
8 * (at your option) any later version.
9 *
Harald Welte34b5a952019-05-27 11:54:11 +020010 * SPDX-License-Identifier: GPL-2.0-or-later
11 *
Harald Welte21b46bd2017-12-17 19:46:32 +010012 * This test suite tests OsmoBSC while emulating both multiple BTS + MS as
13 * well as the MSC. See README for more details.
14 *
15 * There are test cases that run in so-called 'handler mode' and test cases
16 * that run directly on top of the BSSAP and RSL CodecPorts. The "handler mode"
17 * tests abstract the multiplexing/demultiplexing of multiple SCCP connections
18 * and/or RSL channels and are hence suitable for higher-level test cases, while
19 * the "raw" tests directly on top of the CodecPorts are more suitable for lower-
20 * level testing.
21 */
22
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +020023friend module BSC_Tests_VAMOS;
24
Neels Hofmeyr4f118412020-06-04 15:25:10 +020025import from Misc_Helpers all;
Harald Welte4003d112017-12-09 22:35:39 +010026import from General_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010027import from Osmocom_Types all;
Harald Welteae026692017-12-09 01:03:01 +010028import from GSM_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010029import from IPL4asp_Types all;
30
Harald Welte6f521d82017-12-11 19:52:02 +010031import from BSSAP_Types all;
Harald Welte6811d102019-04-14 22:23:14 +020032import from RAN_Adapter all;
Harald Welte47cd0e32020-08-21 12:39:11 +020033import from BSSAP_LE_Adapter all;
34import from BSSAP_LE_CodecPort all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020035import from BSSAP_LE_Types all;
36import from BSSLAP_Types all;
Harald Welteae026692017-12-09 01:03:01 +010037import from BSSAP_CodecPort all;
38import from BSSMAP_Templates all;
Harald Welte28d943e2017-11-25 15:00:50 +010039import from IPA_Emulation all;
Stefan Sperling830dc9d2018-02-12 21:08:28 +010040import from IPA_CodecPort all;
Harald Welteae026692017-12-09 01:03:01 +010041import from IPA_Types all;
Stefan Sperling0796a822018-10-05 13:01:39 +020042import from IPA_Testing all;
Harald Welteae026692017-12-09 01:03:01 +010043import from RSL_Types all;
Harald Welte624f9632017-12-16 19:26:04 +010044import from RSL_Emulation all;
Daniel Willmann191e0d92018-01-17 12:44:35 +010045import from MGCP_Emulation all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010046import from MGCP_Templates all;
47import from MGCP_Types all;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +020048import from MGCP_CodecPort all;
Harald Welte28d943e2017-11-25 15:00:50 +010049
Harald Welte96c94412017-12-09 03:12:45 +010050import from Osmocom_CTRL_Functions all;
Harald Weltea5d2ab22017-12-09 14:21:42 +010051import from Osmocom_CTRL_Types all;
Harald Welteffe55fc2018-01-17 22:39:54 +010052import from Osmocom_CTRL_Adapter all;
Harald Welte96c94412017-12-09 03:12:45 +010053
Daniel Willmannebdecc02020-08-12 15:30:17 +020054import from StatsD_Types all;
55import from StatsD_CodecPort all;
56import from StatsD_CodecPort_CtrlFunct all;
57import from StatsD_Checker all;
58
Harald Weltebc03c762018-02-12 18:09:38 +010059import from Osmocom_VTY_Functions all;
60import from TELNETasp_PortType all;
61
Harald Welte6f521d82017-12-11 19:52:02 +010062import from MobileL3_CommonIE_Types all;
Harald Weltee3bd6582018-01-31 22:51:25 +010063import from MobileL3_Types all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010064import from MobileL3_RRM_Types all;
Harald Welte6f521d82017-12-11 19:52:02 +010065import from L3_Templates all;
66import from GSM_RR_Types all;
67
Stefan Sperlingc307e682018-06-14 15:15:46 +020068import from SCCP_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010069import from BSSMAP_Templates all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020070import from BSSMAP_LE_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010071
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010072import from SCCPasp_Types all;
73
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020074import from GSM_SystemInformation all;
75import from GSM_RestOctets all;
Neels Hofmeyrad132f22020-07-08 02:20:16 +020076import from TCCConversion_Functions all;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020077
Neels Hofmeyrbf720202021-10-02 12:58:24 +020078type record of integer integer_list;
79
Harald Welte5d1a2202017-12-13 19:51:29 +010080const integer NUM_BTS := 3;
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020081const integer NUM_BTS_CFG := 4; /* we have 4 BTS in the osmo-bsc.cfg (for inter-BSC HO tests) but use only 3 */
Neels Hofmeyrf246a922020-05-13 02:27:10 +020082const integer NUM_MSC := 3;
Harald Welteae026692017-12-09 01:03:01 +010083const float T3101_MAX := 12.0;
Harald Welte28d943e2017-11-25 15:00:50 +010084
Harald Welte799c97b2017-12-14 17:50:30 +010085/* make sure to sync this with the osmo-bts.cfg you're using */
Philipp Maiercb6cc482018-03-26 13:08:00 +020086const integer NUM_TCHH_PER_BTS := 2;
87const integer NUM_TCHF_PER_BTS := 4;
Neels Hofmeyr74083c22020-07-29 00:43:01 +020088const integer NUM_SDCCH_PER_BTS := 3;
Harald Welte799c97b2017-12-14 17:50:30 +010089
Neels Hofmeyrbf720202021-10-02 12:58:24 +020090/* Default Training Sequence Code expected for bts[i]:
91 * BTS 0 has BSIC 10 (and no explicit timeslot training_sequence_code config), so expecting TSC = (BSIC & 7) = 2.
92 * BTS 1 has BSIC 11, TSC = (BSIC & 7) = 3.
93 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
94 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
95 */
96const integer_list BTS_TSC := {
97 2,
98 3,
99 4,
100 4
101}
Harald Welte4003d112017-12-09 22:35:39 +0100102
Harald Welte21b46bd2017-12-17 19:46:32 +0100103/* per-BTS state which we keep */
Harald Welte96c94412017-12-09 03:12:45 +0100104type record BTS_State {
Harald Welte21b46bd2017-12-17 19:46:32 +0100105 /* component reference to the IPA_Client component used for RSL */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100106 IPA_Client rsl
Harald Welte96c94412017-12-09 03:12:45 +0100107}
108
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200109/* Default list of counters for an 'msc' entity. */
110const CounterNameVals counternames_msc_mscpool := {
111 { "mscpool:subscr:new", 0 },
112 { "mscpool:subscr:known", 0 },
113 { "mscpool:subscr:reattach", 0 },
114 { "mscpool:subscr:attach_lost", 0 },
115 { "mscpool:subscr:paged", 0 }
116};
117
Neels Hofmeyrbf037052020-10-28 22:52:02 +0000118/* List of global mscpool counters, not related to a specific 'msc' entity. */
119const CounterNameVals counternames_bsc_mscpool := {
120 { "mscpool:subscr:no_msc", 0 }
121};
122
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000123/* Default list of counters for 'bsc' and 'bts' entities. */
124const CounterNameVals counternames_bsc_bts_handover := {
125 { "assignment:attempted", 0 },
126 { "assignment:completed", 0 },
127 { "assignment:stopped", 0 },
128 { "assignment:no_channel", 0 },
129 { "assignment:timeout", 0 },
130 { "assignment:failed", 0 },
131 { "assignment:error", 0 },
132
133 { "handover:attempted", 0 },
134 { "handover:completed", 0 },
135 { "handover:stopped", 0 },
136 { "handover:no_channel", 0 },
137 { "handover:timeout", 0 },
138 { "handover:failed", 0 },
139 { "handover:error", 0 },
140
141 { "intra_cell_ho:attempted", 0 },
142 { "intra_cell_ho:completed", 0 },
143 { "intra_cell_ho:stopped", 0 },
144 { "intra_cell_ho:no_channel", 0 },
145 { "intra_cell_ho:timeout", 0 },
146 { "intra_cell_ho:failed", 0 },
147 { "intra_cell_ho:error", 0 },
148
149 { "intra_bsc_ho:attempted", 0 },
150 { "intra_bsc_ho:completed", 0 },
151 { "intra_bsc_ho:stopped", 0 },
152 { "intra_bsc_ho:no_channel", 0 },
153 { "intra_bsc_ho:timeout", 0 },
154 { "intra_bsc_ho:failed", 0 },
155 { "intra_bsc_ho:error", 0 },
156
157 { "interbsc_ho_out:attempted", 0 },
158 { "interbsc_ho_out:completed", 0 },
159 { "interbsc_ho_out:stopped", 0 },
160 { "interbsc_ho_out:timeout", 0 },
161 { "interbsc_ho_out:failed", 0 },
162 { "interbsc_ho_out:error", 0 },
163
164 { "interbsc_ho_in:attempted", 0 },
165 { "interbsc_ho_in:completed", 0 },
166 { "interbsc_ho_in:stopped", 0 },
167 { "interbsc_ho_in:no_channel", 0 },
168 { "interbsc_ho_in:timeout", 0 },
169 { "interbsc_ho_in:failed", 0 },
170 { "interbsc_ho_in:error", 0 }
171};
172
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200173/* Set of all System Information received during one RSL port's startup.
174 * Note that some System Information may be sent on RSL, but lacking actual SI data, to indicate that the BTS should not
175 * broadcast that SI type. That will be reflected as 'omit' here.
176 */
177type record SystemInformationConfig {
178 SystemInformationType1 si1 optional,
179 SystemInformationType2 si2 optional,
180 SystemInformationType2bis si2bis optional,
181 SystemInformationType2ter si2ter optional,
Neels Hofmeyrad132f22020-07-08 02:20:16 +0200182 SI2quaterRestOctetsList si2quater optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200183 SystemInformationType3 si3 optional,
184 SystemInformationType4 si4 optional,
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100185 SystemInformationType13 si13 optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200186 SystemInformationType5 si5 optional,
187 SystemInformationType5bis si5bis optional,
188 SystemInformationType5ter si5ter optional,
189 SystemInformationType6 si6 optional
190};
191
192const SystemInformationConfig SystemInformationConfig_omit := {
193 si1 := omit,
194 si2 := omit,
195 si2bis := omit,
196 si2ter := omit,
197 si2quater := omit,
198 si3 := omit,
199 si4 := omit,
200 si13 := omit,
201 si5 := omit,
202 si5bis := omit,
203 si5ter := omit,
204 si6 := omit
205};
206
207/* tr_EUTRAN_CellDesc with defaults used in BSC_Tests.ttcn */
208template EUTRAN_CellDesc tr_EUTRAN_CellDesc_default(template (present) uint16_t e_arfcn := ?,
209 template uint3_t meas_bw := 3)
210:= tr_EUTRAN_CellDesc(e_arfcn := e_arfcn,
211 meas_bw_presence := '1'B,
212 meas_bw := meas_bw);
213
214/* tr_EUTRAN_NeighbourCells with defaults used in BSC_Tests.ttcn */
Harald Welte65e419a2020-08-21 12:38:33 +0200215template EUTRAN_NeighbourCells tr_EUTRAN_NeighbourCells_default(template (present) EUTRAN_CellDescs cell_desc_list := { tr_EUTRAN_CellDesc_default },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200216 template uint3_t prio := 3,
217 template (present) uint5_t thresh_high := 20,
218 template uint5_t thresh_low := 10,
219 template uint5_t qrxlevmin := 22)
220:= tr_EUTRAN_NeighbourCells(
221 cell_desc_list := cell_desc_list,
222 prio_presence := '1'B,
223 prio := prio,
224 thresh_high := thresh_high,
225 thresh_low_presence := '1'B,
226 thresh_low := thresh_low,
227 qrxlevmin_presence := '1'B,
228 qrxlevmin := qrxlevmin);
229
230template SystemInformationConfig SystemInformationConfig_default := {
231 si1 := {
232 cell_chan_desc := '8FB38000000000000000000000000000'O,
233 rach_control := {
234 max_retrans := RACH_MAX_RETRANS_7,
235 tx_integer := '1001'B,
236 cell_barr_access := false,
237 re_not_allowed := true,
238 acc := '0000010000000000'B
239 },
240 rest_octets := ?
241 },
242 si2 := {
243 bcch_freq_list := '00000000000000000000000000000000'O,
244 ncc_permitted := '11111111'B,
245 rach_control := {
246 max_retrans := RACH_MAX_RETRANS_7,
247 tx_integer := '1001'B,
248 cell_barr_access := false,
249 re_not_allowed := true,
250 acc := '0000010000000000'B
251 }
252 },
253 si2bis := omit,
254 si2ter := {
255 extd_bcch_freq_list := '8E320000000000000000000000000800'O,
256 rest_octets := ?
257 },
258 si2quater := {
259 tr_SI2quaterRestOctets_EUTRAN( repeated_neigh_cells := { tr_EUTRAN_NeighbourCells_default } )
260 },
261 si3 := {
262 cell_id := 0,
263 lai := {
264 mcc_mnc := '001F01'H,
265 lac := 1
266 },
267 ctrl_chan_desc := {
268 msc_r99 := true,
269 att := true,
270 bs_ag_blks_res := 1,
271 ccch_conf := CCHAN_DESC_1CCCH_COMBINED,
272 si22ind := false,
273 cbq3 := CBQ3_IU_MODE_NOT_SUPPORTED,
274 spare := '00'B,
275 bs_pa_mfrms := 3,
276 t3212 := 30
277 },
278 cell_options := {
279 dn_ind := false,
280 pwrc := false,
281 dtx := MS_SHALL_USE_UL_DTX,
282 radio_link_tout_div4 := 7
283 },
284 cell_sel_par := {
285 cell_resel_hyst_2dB := 2,
286 ms_txpwr_max_cch := 7,
287 acs := '0'B,
288 neci := true,
289 rxlev_access_min := 0
290 },
291 rach_control := {
292 max_retrans := RACH_MAX_RETRANS_7,
293 tx_integer := '1001'B,
294 cell_barr_access := false,
295 re_not_allowed := true,
296 acc := '0000010000000000'B
297 },
298 rest_octets := {
299 sel_params := {
300 presence := '0'B,
301 params := omit
302 },
303 pwr_offset := {
304 presence := '0'B,
305 offset := omit
306 },
307 si_2ter_ind := '1'B,
308 early_cm_ind := '0'B,
309 sched_where := {
310 presence := '0'B,
311 where := omit
312 },
313 gprs_ind := {
314 presence := '1'B,
315 ind := {
316 ra_colour := 0,
317 si13_pos := '0'B
318 }
319 },
320 umts_early_cm_ind := '1'B,
321 si2_quater_ind := {
322 presence := '1'B,
323 ind := '0'B
324 },
325 iu_mode_ind := omit,
326 si21_ind := {
327 presence := '0'B,
328 pos := omit
329 }
330 }
331 },
332 si4 := {
333 lai := {
334 mcc_mnc := '001F01'H,
335 lac := 1
336 },
337 cell_sel_par := {
338 cell_resel_hyst_2dB := 2,
339 ms_txpwr_max_cch := 7,
340 acs := '0'B,
341 neci := true,
342 rxlev_access_min := 0
343 },
344 rach_control := {
345 max_retrans := RACH_MAX_RETRANS_7,
346 tx_integer := '1001'B,
347 cell_barr_access := false,
348 re_not_allowed := true,
349 acc := '0000010000000000'B
350 },
Neels Hofmeyr74083c22020-07-29 00:43:01 +0200351 cbch_chan_desc := {
352 iei := '64'O,
353 v := {
354 chan_nr := {
355 u := {
356 sdcch4 := {
357 tag := '001'B,
358 sub_chan := 2
359 }
360 },
361 tn := 0
362 },
363 tsc := 2,
364 h := false,
365 arfcn := 871,
366 maio_hsn := omit
367 }
368 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200369 cbch_mobile_alloc := omit,
370 rest_octets := {
371 sel_params := {
372 presence := '0'B,
373 params := omit
374 },
375 pwr_offset := {
376 presence := '0'B,
377 offset := omit
378 },
379 gprs_ind := {
380 presence := '1'B,
381 ind := {
382 ra_colour := 0,
383 si13_pos := '0'B
384 }
385 },
386 s_presence := '0'B,
387 s := omit
388 }
389 },
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100390 si13 := {
391 rest_octets := {
392 presence := '1'B,
393 bcch_change_mark := ?,
394 si_change_field := '0000'B,
395 presence2 := '0'B,
396 si13_change_mark := omit,
397 gprs_ma := omit,
398 zero := '0'B, /* PBCCH not present in cell */
399 rac := 0,
400 spgc_ccch_sup := '0'B,
401 priority_access_thr := '110'B,
402 network_control_order := '00'B,
403 gprs_cell_opts := {
404 nmo := '01'B,
405 t3168 := '011'B,
406 t3192 := '010'B,
407 drx_timer_max := '011'B,
408 access_burst_type := '0'B,
409 control_ack_type := '1'B,
410 bs_cv_max := 15,
411 pan_presence := '1'B,
412 pan_dec := 1,
413 pan_inc := 1,
414 pan_max := '111'B,
415 ext_info_presence := ?,
416 ext_info_length := *,
417 ext_info := *
418 },
419 gprs_pwr_ctrl_params := {
420 alpha := 0,
421 t_avg_w := '10000'B,
422 t_avg_t := '10000'B,
423 pc_meas_chan := '0'B,
424 n_avg_i := '1000'B
425 }
426 }
427 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200428 si5 := {
429 bcch_freq_list := '10000000000000000000000000000000'O
430 },
431 si5bis := omit,
432 si5ter := {
433 extd_bcch_freq_list := '9E050020000000000000000000000000'O
434 },
435 si6 := {
436 cell_id := 0,
437 lai := {
438 mcc_mnc := '001F01'H,
439 lac := 1
440 },
441 cell_options := {
442 dtx_ext := '1'B,
443 pwrc := false,
444 dtx := '01'B,
445 radio_link_timeout := '0111'B
446 },
447 ncc_permitted := '11111111'B,
448 rest_octets := ?
449 }
450 };
451
452
453/* List of all the System Information received on all RSL ports */
454type record of SystemInformationConfig SystemInformationConfig_list;
455
456function f_sysinfo_dec_raw(inout SystemInformationConfig si, RSL_Message rsl)
457{
458 var RSL_IE_Body sysinfo_type_ie;
459 var RSL_IE_SysinfoType si_type;
460 var octetstring data;
461
462 if (f_rsl_find_ie(rsl, RSL_IE_SYSINFO_TYPE, sysinfo_type_ie) == false) {
463 setverdict(fail, "Cannot find RSL_IE_SYSINFO_TYPE");
464 mtc.stop;
465 }
466 si_type := sysinfo_type_ie.sysinfo_type;
467
468 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
469 var RSL_IE_Body bcch_ie;
470 if (f_rsl_find_ie(rsl, RSL_IE_FULL_BCCH_INFO, bcch_ie)) {
471 data := bcch_ie.other.payload;
472 }
473 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
474 var RSL_IE_Body l3_ie;
475 if (f_rsl_find_ie(rsl, RSL_IE_L3_INFO, l3_ie)) {
476 data := l3_ie.l3_info.payload;
477 }
478 } else {
479 setverdict(fail, "Don't understand this System Information message");
480 mtc.stop;
481 }
482
483 var boolean handled := false;
484
485 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
486 handled := true;
487
488 if (si_type == RSL_SYSTEM_INFO_1) {
489 if (not isbound(data)) {
490 si.si1 := omit;
491 } else {
492 si.si1 := dec_SystemInformation(data).payload.si1;
493 }
494 } else if (si_type == RSL_SYSTEM_INFO_2) {
495 if (not isbound(data)) {
496 si.si2 := omit;
497 } else {
498 si.si2 := dec_SystemInformation(data).payload.si2;
499 }
500 } else if (si_type == RSL_SYSTEM_INFO_2bis) {
501 if (not isbound(data)) {
502 si.si2bis := omit;
503 } else {
504 si.si2bis := dec_SystemInformation(data).payload.si2bis;
505 }
506 } else if (si_type == RSL_SYSTEM_INFO_2ter) {
507 if (not isbound(data)) {
508 si.si2ter := omit;
509 } else {
510 si.si2ter := dec_SystemInformation(data).payload.si2ter;
511 }
512 } else if (si_type == RSL_SYSTEM_INFO_2quater) {
513 if (not isbound(data)) {
514 si.si2quater := {};
515 } else {
516 var SystemInformationType2quater decoded := dec_SystemInformation(data).payload.si2quater;
517 /* this is a *record* of SI2quaterRestOctets! (multiplexed) */
518 si.si2quater[decoded.rest_octets.si2quater_index] := decoded.rest_octets;
519 }
520 } else if (si_type == RSL_SYSTEM_INFO_3) {
521 if (not isbound(data)) {
522 si.si3 := omit;
523 } else {
524 si.si3 := dec_SystemInformation(data).payload.si3;
525 }
526 } else if (si_type == RSL_SYSTEM_INFO_4) {
527 if (not isbound(data)) {
528 si.si4 := omit;
529 } else {
530 si.si4 := dec_SystemInformation(data).payload.si4;
531 }
532 } else if (si_type == RSL_SYSTEM_INFO_13) {
533 if (not isbound(data)) {
534 si.si13 := omit;
535 } else {
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100536 si.si13 := dec_SystemInformation(data).payload.si13;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200537 }
538 } else {
539 handled := false;
540 }
541 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
542 handled := true;
543
544 if (si_type == RSL_SYSTEM_INFO_5) {
545 if (not isbound(data)) {
546 si.si5 := omit;
547 } else {
548 si.si5 := dec_SystemInformation(data).payload.si5;
549 }
550 } else if (si_type == RSL_SYSTEM_INFO_5bis) {
551 if (not isbound(data)) {
552 si.si5bis := omit;
553 } else {
554 si.si5bis := dec_SystemInformation(data).payload.si5bis;
555 }
556 } else if (si_type == RSL_SYSTEM_INFO_5ter) {
557 if (not isbound(data)) {
558 si.si5ter := omit;
559 } else {
560 si.si5ter := dec_SystemInformation(data).payload.si5ter;
561 }
562 } else if (si_type == RSL_SYSTEM_INFO_6) {
563 if (not isbound(data)) {
564 si.si6 := omit;
565 } else {
566 si.si6 := dec_SystemInformation(data).payload.si6;
567 }
568 } else {
569 handled := false;
570 }
571 }
572
573 if (not handled) {
574 setverdict(fail, "Unexpected SI type in ", rsl.msg_type, " message: ", si_type);
575 }
576}
577
Harald Weltea4ca4462018-02-09 00:17:14 +0100578type component test_CT extends CTRL_Adapter_CT {
Harald Welte21b46bd2017-12-17 19:46:32 +0100579 /* Array of per-BTS state */
Harald Welte96c94412017-12-09 03:12:45 +0100580 var BTS_State bts[NUM_BTS];
Harald Welte89ab1912018-02-23 18:56:29 +0100581 /* RSL common Channel Port (for RSL_Emulation) */
582 port RSL_CCHAN_PT RSL_CCHAN[NUM_BTS];
Harald Welte21b46bd2017-12-17 19:46:32 +0100583 /* array of per-BTS RSL test ports */
Harald Welteae026692017-12-09 01:03:01 +0100584 port IPA_RSL_PT IPA_RSL[NUM_BTS];
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100585 port IPA_CODEC_PT IPA; /* Required for compilation of TC_rsl_unknown_unit_id() */
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +0200586 /* CTRL muxed over IPA in SCCPlite conn BSC<->MSC (or BSC-NAT) */
587 port IPA_CTRL_PT SCCPLITE_IPA_CTRL;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100588
Daniel Willmann191e0d92018-01-17 12:44:35 +0100589 var MGCP_Emulation_CT vc_MGCP;
Harald Weltebc03c762018-02-12 18:09:38 +0100590 port TELNETasp_PT BSCVTY;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100591
Daniel Willmannebdecc02020-08-12 15:30:17 +0200592 /* StatsD */
593 var StatsD_Checker_CT vc_STATSD;
594
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200595 var RAN_Adapter g_bssap[NUM_MSC];
Harald Welte47cd0e32020-08-21 12:39:11 +0200596 var BSSAP_LE_Adapter g_bssap_le;
Harald Weltea4ca4462018-02-09 00:17:14 +0100597 /* for old legacy-tests only */
598 port BSSAP_CODEC_PT BSSAP;
Harald Welte47cd0e32020-08-21 12:39:11 +0200599 port BSSAP_LE_CODEC_PT BSSAP_LE;
Harald Weltea4ca4462018-02-09 00:17:14 +0100600
Harald Welte21b46bd2017-12-17 19:46:32 +0100601 /* are we initialized yet */
Harald Welte28d943e2017-11-25 15:00:50 +0100602 var boolean g_initialized := false;
Harald Welte21b46bd2017-12-17 19:46:32 +0100603
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200604 /* Osmux is enabled through VTY */
605 var boolean g_osmux_enabled := false;
606
Pau Espin Pedrolc675b612020-01-09 19:55:40 +0100607 /*Configure T(tias) over VTY, seconds */
608 var integer g_bsc_sccp_timer_ias := 7 * 60;
609 /*Configure T(tiar) over VTY, seconds */
610 var integer g_bsc_sccp_timer_iar := 15 * 60;
611
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +0200612 /* global test case guard timer (actual timeout value is set in f_init()) */
Harald Welteae026692017-12-09 01:03:01 +0100613 timer T_guard := 30.0;
614
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200615 var CounterNameValsList g_ctr_msc;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000616 var CounterNameValsList g_ctr_bsc;
617 var CounterNameValsList g_ctr_bts;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200618
619 /* System Information bytes as received during RSL startup, for each RSL[idx]. */
620 var SystemInformationConfig_list g_system_information := {};
Harald Welte28d943e2017-11-25 15:00:50 +0100621}
622
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200623type record of charstring phys_chan_configs;
Harald Welte28d943e2017-11-25 15:00:50 +0100624modulepar {
Harald Welte21b46bd2017-12-17 19:46:32 +0100625 /* IP address at which the BSC can be reached */
Harald Welte696ddb62017-12-08 14:01:43 +0100626 charstring mp_bsc_ip := "127.0.0.1";
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100627 /* port number to which to establish the IPA OML connections */
628 integer mp_bsc_oml_port := 3002;
Harald Welte21b46bd2017-12-17 19:46:32 +0100629 /* port number to which to establish the IPA RSL connections */
Harald Welte696ddb62017-12-08 14:01:43 +0100630 integer mp_bsc_rsl_port := 3003;
Harald Welte21b46bd2017-12-17 19:46:32 +0100631 /* port number to which to establish the IPA CTRL connection */
Harald Welte96c94412017-12-09 03:12:45 +0100632 integer mp_bsc_ctrl_port := 4249;
Daniel Willmannebdecc02020-08-12 15:30:17 +0200633 /* port number to which to listen for STATSD metrics */
634 integer mp_bsc_statsd_port := 8125;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100635 /* IP address at which the test binds */
636 charstring mp_test_ip := "127.0.0.1";
Harald Weltea4ca4462018-02-09 00:17:14 +0100637
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200638 RAN_Configurations mp_bssap_cfg := {
639 {
640 transport := BSSAP_TRANSPORT_AoIP,
641 sccp_service_type := "mtp3_itu",
642 sctp_addr := { 23905, "127.0.0.1", 2905, "127.0.0.1" },
643 own_pc := 185, /* 0.23.1 first MSC emulation */
644 own_ssn := 254,
645 peer_pc := 187, /* 0.23.3 osmo-bsc */
646 peer_ssn := 254,
647 sio := '83'O,
Harald Weltecb0cc432020-06-21 19:42:31 +0200648 rctx := 1
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200649 },
650 {
651 transport := BSSAP_TRANSPORT_AoIP,
652 sccp_service_type := "mtp3_itu",
653 sctp_addr := { 23906, "127.0.0.1", 2905, "127.0.0.1" },
654 own_pc := 2, /* 0.0.2 second MSC emulation */
655 own_ssn := 254,
656 peer_pc := 187, /* 0.23.3 osmo-bsc */
657 peer_ssn := 254,
658 sio := '83'O,
659 rctx := 2
660 },
661 {
662 transport := BSSAP_TRANSPORT_AoIP,
663 sccp_service_type := "mtp3_itu",
664 sctp_addr := { 23907, "127.0.0.1", 2905, "127.0.0.1" },
665 own_pc := 3, /* 0.0.3 third MSC emulation */
666 own_ssn := 254,
667 peer_pc := 187, /* 0.23.3 osmo-bsc */
668 peer_ssn := 254,
669 sio := '83'O,
670 rctx := 3
671 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100672 };
Pau Espin Pedrol58cf6822019-05-28 18:11:33 +0200673
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200674 /* Must match per BTS config in osmo-bsc.cfg */
675 phys_chan_configs phys_chan_config := {
676 "CCCH+SDCCH4+CBCH",
677 "TCH/F",
678 "TCH/F",
679 "TCH/F",
680 "TCH/F",
Vadim Yanitskiy343c9eb2021-07-16 18:36:01 +0600681 "TCH/H",
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200682 "PDCH",
683 "PDCH"
684 };
685
Harald Welte47cd0e32020-08-21 12:39:11 +0200686 BSSAP_LE_Configuration mp_bssap_le_cfg := {
687 sccp_service_type := "mtp3_itu",
688 sctp_addr := { 23908, "127.0.0.1", 2905, "127.0.0.1" },
Neels Hofmeyrac086c12020-09-18 23:46:42 +0200689 own_pc := 190, /* 0.23.6 SMLC emulation */
Harald Welte47cd0e32020-08-21 12:39:11 +0200690 own_ssn := 252, /* SMLC side SSN */
691 peer_pc := 187, /* 0.23.3 osmo-bsc */
692 peer_ssn := 250, /* BSC side SSN */
693 sio := '83'O,
694 rctx := 6
695 };
Neels Hofmeyrcfe44062020-10-15 02:28:08 +0200696 boolean mp_enable_lcs_tests := true;
Harald Welte47cd0e32020-08-21 12:39:11 +0200697
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +0200698 /* Whether to enable dyn TS SDCCH8 tests. Can be dropped completely and enable
699 unconditionally once new version of osmo-bsc is released (current
700 version: 1.7.0) */
701 boolean mp_enable_dyn_sdcch8_test := true;
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100702 /* Value set in osmo-bsc.cfg "ms max power" */
703 uint8_t mp_exp_ms_power_level := 7;
Harald Weltea4ca4462018-02-09 00:17:14 +0100704}
705
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200706friend function f_gen_test_hdlr_pars(integer bssap_idx := 0) return TestHdlrParams {
Philipp Maier48604732018-10-09 15:00:37 +0200707
708 var TestHdlrParams pars := valueof(t_def_TestHdlrPars);
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200709 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier48604732018-10-09 15:00:37 +0200710 pars.aoip := true;
711 } else {
712 pars.aoip := false;
713 }
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100714 pars.exp_ms_power_level := mp_exp_ms_power_level;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200715 pars.mscpool.bssap_idx := bssap_idx;
Neels Hofmeyrbf720202021-10-02 12:58:24 +0200716 pars.expect_tsc := BTS_TSC[0];
Neels Hofmeyrb5b7a6e2021-06-04 19:03:45 +0200717
Philipp Maier48604732018-10-09 15:00:37 +0200718 return pars;
719}
720
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200721/* Convenience functions for rate counters using g_ctr_msc. */
722
723private function f_ctrs_msc_init(integer mscs_count := NUM_MSC, CounterNameVals counternames := counternames_msc_mscpool) runs on test_CT {
724 g_ctr_msc := f_counter_name_vals_get_n(IPA_CTRL, "msc", mscs_count, counternames);
725 log("initial msc rate counters: ", g_ctr_msc);
726}
727
728private function f_ctrs_msc_add(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
Neels Hofmeyr9656e922020-06-30 01:27:01 +0200729 f_counter_name_vals_list_add(g_ctr_msc, msc_nr, countername, val);
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200730}
731
732/* f_ctrs_msc_init();
733 * f_do_thing(on_msc := 0);
734 * f_do_thing(on_msc := 0);
735 * f_do_other(on_msc := 1);
736 * f_ctrs_msc_add(0, "thing", 2);
737 * f_ctrs_msc_add(1, "other");
738 * f_ctrs_msc_verify();
739 */
740private function f_ctrs_msc_verify() runs on test_CT {
741 log("verifying msc rate counters: ", g_ctr_msc);
742 f_counter_name_vals_expect_n(IPA_CTRL, "msc", g_ctr_msc);
743}
744
745/* convenience: f_ctrs_msc_add() and f_ctrs_msc_verify() in one call.
746 * f_ctrs_msc_init();
747 * f_do_thing(on_msc := 0);
748 * f_do_thing(on_msc := 0);
749 * f_do_thing(on_msc := 0);
750 * f_ctrs_msc_expect(0, "thing", 3);
751 */
752private function f_ctrs_msc_expect(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
753 f_ctrs_msc_add(msc_nr, countername, val);
754 f_ctrs_msc_verify();
755}
756
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000757/* Convenience functions for rate counters using g_ctr_bts, always also including g_ctr_bsc. */
758
759private function f_ctrs_bsc_and_bts_init(integer bts_count := NUM_BTS, CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
760 g_ctr_bts := f_counter_name_vals_get_n(IPA_CTRL, "bts", bts_count, counternames);
761 log("initial bts rate counters: ", g_ctr_bts);
762 f_ctrs_bsc_init(counternames);
763}
764
765private function f_ctrs_bsc_and_bts_add(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
766 f_counter_name_vals_list_add(g_ctr_bts, bts_nr, countername, val);
767 f_ctrs_bsc_add(countername, val);
768}
769
770/* f_ctrs_bsc_and_bts_init();
771 * f_do_thing(on_bts := 0);
772 * f_do_thing(on_bts := 0);
773 * f_do_other(on_bts := 1);
774 * f_ctrs_bsc_and_bts_add(0, "thing", 2);
775 * f_ctrs_bsc_and_bts_add(1, "other");
776 * f_ctrs_bsc_and_bts_verify();
777 */
778private function f_ctrs_bsc_and_bts_verify() runs on test_CT {
779 f_counter_name_vals_expect_n(IPA_CTRL, "bts", g_ctr_bts);
780 f_ctrs_bsc_verify();
781}
782
783/* convenience: f_ctrs_bsc_and_bts_add() and f_ctrs_bsc_and_bts_verify() in one call.
784 * f_ctrs_bsc_and_bts_init();
785 * f_do_thing(on_bts := 0);
786 * f_do_thing(on_bts := 0);
787 * f_do_thing(on_bts := 0);
788 * f_ctrs_bsc_and_bts_expect(0, "thing", 3);
789 */
790private function f_ctrs_bsc_and_bts_expect(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
791 f_ctrs_bsc_and_bts_add(bts_nr, countername, val);
792 f_ctrs_bsc_and_bts_verify();
793}
794
795
796/* Convenience functions for rate counters using g_ctr_bsc. */
797
798private function f_ctrs_bsc_init(CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
799 g_ctr_bsc := f_counter_name_vals_get_n(IPA_CTRL, "bsc", 1, counternames);
800 log("initial bsc rate counters: ", g_ctr_bsc);
801}
802
803private function f_ctrs_bsc_add(charstring countername, integer val := 1) runs on test_CT {
804 f_counter_name_vals_list_add(g_ctr_bsc, 0, countername, val);
805}
806
807/* f_ctrs_bsc_init();
808 * f_do_thing();
809 * f_do_thing();
810 * f_do_other();
811 * f_ctrs_bsc_add("thing", 2);
812 * f_ctrs_bsc_add("other");
813 * f_ctrs_bsc_verify();
814 */
815private function f_ctrs_bsc_verify() runs on test_CT {
816 f_counter_name_vals_expect_n(IPA_CTRL, "bsc", g_ctr_bsc);
817}
818
819/* convenience: f_ctrs_bsc_add() and f_ctrs_bsc_verify() in one call.
820 * f_ctrs_bsc_init();
821 * f_do_thing();
822 * f_ctrs_bsc_expect("thing", 1);
823 */
824private function f_ctrs_bsc_expect(charstring countername, integer val := 1) runs on test_CT {
825 f_ctrs_bsc_add(countername, val);
826 f_ctrs_bsc_verify();
827}
828
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200829
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200830friend function f_shutdown_helper() runs on test_CT {
Daniel Willmann637ef6c2018-07-25 10:49:09 +0200831 all component.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100832 setverdict(pass);
Daniel Willmannafce8662018-07-06 23:11:32 +0200833 mtc.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100834}
835
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200836private function f_legacy_bssap_reset(integer bssap_idx := 0) runs on test_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100837 var BSSAP_N_UNITDATA_ind ud_ind;
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200838 var boolean reset_received := false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100839 timer T := 5.0;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200840 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
841 ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Weltea4ca4462018-02-09 00:17:14 +0100842 T.start;
843 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200844 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[bssap_idx].sccp_addr_own, g_bssap[bssap_idx].sccp_addr_peer,
845 tr_BSSMAP_ResetAck(g_osmux_enabled))) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200846 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Weltea4ca4462018-02-09 00:17:14 +0100847 }
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200848 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200849 log("BSSMAP: Respoding to inbound RESET with RESET-ACK");
Harald Weltea4ca4462018-02-09 00:17:14 +0100850 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200851 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200852 reset_received := true;
Harald Weltea4ca4462018-02-09 00:17:14 +0100853 repeat;
854 }
855 [] BSSAP.receive { repeat; }
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200856 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200857 log("BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200858 /* If we received a RESET after ours was sent, it
859 may be a race condition where the other peer beacame
860 available after we sent it, but we are in a desired
861 state anyway, so go forward. */
862 if (not reset_received) {
863 setverdict(fail);
864 }
865 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100866 }
Harald Welte28d943e2017-11-25 15:00:50 +0100867}
868
Harald Welteae026692017-12-09 01:03:01 +0100869type record IPA_Client {
Harald Welte21b46bd2017-12-17 19:46:32 +0100870 /* IPA Emulation component reference */
Harald Welteae026692017-12-09 01:03:01 +0100871 IPA_Emulation_CT vc_IPA,
Harald Welte21b46bd2017-12-17 19:46:32 +0100872 /* Unit-ID and other CCM parameters to use for IPA client emulation */
Harald Welteae026692017-12-09 01:03:01 +0100873 IPA_CCM_Parameters ccm_pars,
Harald Welte21b46bd2017-12-17 19:46:32 +0100874 /* String identifier for this IPA Client */
Harald Welte624f9632017-12-16 19:26:04 +0100875 charstring id,
Harald Welte21b46bd2017-12-17 19:46:32 +0100876 /* Associated RSL Emulation Component (if any). Only used in "Handler mode" */
Harald Welte624f9632017-12-16 19:26:04 +0100877 RSL_Emulation_CT vc_RSL optional
Harald Welte28d943e2017-11-25 15:00:50 +0100878}
879
Harald Welte21b46bd2017-12-17 19:46:32 +0100880/*! Start the IPA/RSL related bits for one IPA_Client.
881 * \param clnt IPA_Client for which to establish
882 * \param bsc_host IP address / hostname of the BSC
883 * \param bsc_port TCP port number of the BSC
884 * \param i number identifying this BTS
885 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false) */
Harald Welte624f9632017-12-16 19:26:04 +0100886function f_ipa_rsl_start(inout IPA_Client clnt, charstring bsc_host, PortNumber bsc_port, integer i,
887 boolean handler_mode := false)
Harald Welte28d943e2017-11-25 15:00:50 +0100888runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +0100889 timer T := 10.0;
890
Harald Welte96c94412017-12-09 03:12:45 +0100891 clnt.id := "IPA" & int2str(i) & "-RSL";
Harald Welteae026692017-12-09 01:03:01 +0100892 clnt.vc_IPA := IPA_Emulation_CT.create(clnt.id & "-IPA");
893 clnt.ccm_pars := c_IPA_default_ccm_pars;
894 clnt.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
895 clnt.ccm_pars.unit_id := int2str(1234+i) & "/0/0";
Harald Welte624f9632017-12-16 19:26:04 +0100896 if (handler_mode) {
897 clnt.vc_RSL := RSL_Emulation_CT.create(clnt.id & "-RSL");
Harald Welte89ab1912018-02-23 18:56:29 +0100898 connect(clnt.vc_RSL:CCHAN_PT, self:RSL_CCHAN[i]);
Harald Welte624f9632017-12-16 19:26:04 +0100899 }
Harald Welteae026692017-12-09 01:03:01 +0100900
901 map(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT);
Harald Welte624f9632017-12-16 19:26:04 +0100902 if (handler_mode) {
903 connect(clnt.vc_IPA:IPA_RSL_PORT, clnt.vc_RSL:IPA_PT);
904 } else {
905 connect(clnt.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[i]);
906 }
Harald Welteae026692017-12-09 01:03:01 +0100907
Harald Welte5d1a2202017-12-13 19:51:29 +0100908 clnt.vc_IPA.start(IPA_Emulation.main_client(bsc_host, bsc_port, "", 10000+i, clnt.ccm_pars));
Harald Welte624f9632017-12-16 19:26:04 +0100909 if (handler_mode) {
910 clnt.vc_RSL.start(RSL_Emulation.main());
911 return;
912 }
Harald Welteae026692017-12-09 01:03:01 +0100913
914 /* wait for IPA RSL link to connect and send ID ACK */
915 T.start;
916 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +0700917 [] IPA_RSL[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {
Harald Welteae026692017-12-09 01:03:01 +0100918 T.stop;
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +0700919 IPA_RSL[i].send(ts_ASP_RSL_UD(ts_RSL_PAGING_LOAD_IND(23)));
Harald Welteae026692017-12-09 01:03:01 +0100920 }
Harald Welte60e823a2017-12-10 14:10:59 +0100921 [] IPA_RSL[i].receive(ASP_IPA_Event:?) { repeat }
Harald Welteae026692017-12-09 01:03:01 +0100922 [] IPA_RSL[i].receive { repeat }
923 [] T.timeout {
Harald Welte96c94412017-12-09 03:12:45 +0100924 setverdict(fail, "Timeout RSL waiting for ASP_IPA_EVENT_ID_ACK");
Daniel Willmannafce8662018-07-06 23:11:32 +0200925 mtc.stop;
Harald Welteae026692017-12-09 01:03:01 +0100926 }
927 }
928}
929
Harald Welte12055472018-03-17 20:10:08 +0100930function f_ipa_rsl_stop(inout IPA_Client clnt) runs on test_CT {
931 if (not isbound(clnt) or not isbound(clnt.vc_IPA)) {
932 return;
933 }
934 clnt.vc_IPA.stop;
935 if (isbound(clnt.vc_RSL)) {
936 clnt.vc_RSL.stop;
937 }
938}
939
Harald Welte21b46bd2017-12-17 19:46:32 +0100940/* Wait for the OML connection to be brought up by the external osmo-bts-omldummy */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100941function f_wait_oml(integer bts_nr, charstring status, float secs_max) runs on test_CT {
942 timer T := secs_max;
943 T.start;
944 while (true) {
945 if (f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-connection-state") == status) {
946 T.stop;
Harald Weltebd868bd2017-12-10 18:28:40 +0100947 /* the 'degraded' state exists from OML connection time, and we have to wait
948 * until all MO's are initialized */
949 T.start(1.0);
950 T.timeout;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100951 return;
952 }
Harald Weltef0d6ac62017-12-17 17:02:21 +0100953 f_sleep(0.1);
Harald Weltea5d2ab22017-12-09 14:21:42 +0100954 if (not T.running) {
Max99253902018-11-16 17:57:39 +0100955 setverdict(fail, "Timeout waiting for BTS" & int2str(bts_nr) & " oml-connection-state ", status);
Daniel Willmannafce8662018-07-06 23:11:32 +0200956 mtc.stop;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100957 }
958 }
959}
960
Harald Welte21b46bd2017-12-17 19:46:32 +0100961/* global altstep for global guard timer; also takes care of responding RESET witH RESET-ACK */
Harald Welteae026692017-12-09 01:03:01 +0100962altstep as_Tguard() runs on test_CT {
Harald Welte60e823a2017-12-10 14:10:59 +0100963 var BSSAP_N_UNITDATA_ind ud_ind;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100964 [] T_guard.timeout {
965 setverdict(fail, "Timeout of T_guard");
Daniel Willmannafce8662018-07-06 23:11:32 +0200966 mtc.stop;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100967 }
Harald Welte60e823a2017-12-10 14:10:59 +0100968 /* always respond with RESET ACK to RESET */
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200969 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Harald Welte60e823a2017-12-10 14:10:59 +0100970 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200971 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Harald Welte69c1c262017-12-13 21:02:08 +0100972 repeat;
Harald Welte60e823a2017-12-10 14:10:59 +0100973 }
Harald Welte28d943e2017-11-25 15:00:50 +0100974}
975
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100976altstep no_bssmap_reset() runs on test_CT {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200977 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100978 setverdict(fail, "unexpected BSSMAP Reset");
Daniel Willmannafce8662018-07-06 23:11:32 +0200979 mtc.stop;
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100980 }
981}
982
Daniel Willmann191e0d92018-01-17 12:44:35 +0100983function f_init_mgcp(charstring id) runs on test_CT {
984 id := id & "-MGCP";
985
986 var MGCPOps ops := {
987 create_cb := refers(MGCP_Emulation.ExpectedCreateCallback),
988 unitdata_cb := refers(MGCP_Emulation.DummyUnitdataCallback)
989 };
990 var MGCP_conn_parameters mgcp_pars := {
991 callagent_ip := mp_bsc_ip,
Harald Welte9e4273e2018-01-29 22:01:22 +0100992 callagent_udp_port := -1,
Daniel Willmann191e0d92018-01-17 12:44:35 +0100993 mgw_ip := mp_test_ip,
Pau Espin Pedrol1a026a52019-06-18 17:21:52 +0200994 mgw_udp_port := 2427,
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +0200995 /* Enable it for SCCPlite, since we have 2 MGCP sockets towards MGW (UDP one +
996 the on with MGCP over IPA forwarded from MSC one) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200997 multi_conn_mode := (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER)
Daniel Willmann191e0d92018-01-17 12:44:35 +0100998 };
999
1000 vc_MGCP := MGCP_Emulation_CT.create(id);
1001 vc_MGCP.start(MGCP_Emulation.main(ops, mgcp_pars, id));
1002}
1003
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001004/* Enable or disable (current default) Osmux. When enabling, BSSMAP Reset
1005 * contains extra IE (OsmuxSupport) and osmo-bsc will handle AssignReq with
1006 * OsmuxCID IE.
1007 */
1008private function f_vty_allow_osmux(boolean allow) runs on test_CT {
1009 f_vty_enter_cfg_msc(BSCVTY, 0);
1010 if (allow) {
1011 f_vty_transceive(BSCVTY, "osmux on");
1012 } else {
1013 f_vty_transceive(BSCVTY, "osmux off");
1014 }
1015 f_vty_transceive(BSCVTY, "exit");
1016 f_vty_transceive(BSCVTY, "exit");
1017 g_osmux_enabled := allow;
1018}
1019
Max2253c0b2018-11-06 19:28:05 +01001020function f_init_vty(charstring id := "foo") runs on test_CT {
Harald Welte94e0c342018-04-07 11:33:23 +02001021 if (BSCVTY.checkstate("Mapped")) {
1022 /* skip initialization if already executed once */
1023 return;
1024 }
Harald Weltebc03c762018-02-12 18:09:38 +01001025 map(self:BSCVTY, system:BSCVTY);
1026 f_vty_set_prompts(BSCVTY);
1027 f_vty_transceive(BSCVTY, "enable");
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01001028 f_cs7_inst_0_cfg(BSCVTY, {"sccp-timer ias " & int2str(g_bsc_sccp_timer_ias),
1029 "sccp-timer iar " & int2str(g_bsc_sccp_timer_iar)});
Harald Weltebc03c762018-02-12 18:09:38 +01001030}
1031
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001032friend function f_logp(TELNETasp_PT pt, charstring log_msg)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001033{
1034 // log on TTCN3 log output
1035 log(log_msg);
1036 // log in stderr log
Neels Hofmeyr767548a2020-08-09 20:26:07 +00001037 f_vty_transceive(pt, "logp lglobal notice TTCN3 f_logp(): " & log_msg);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001038}
1039
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001040private function f_sysinfo_seen(integer rsl_idx, RSL_Message rsl) runs on test_CT
1041{
1042 if (rsl_idx >= lengthof(g_system_information)) {
1043 g_system_information[rsl_idx] := SystemInformationConfig_omit
1044 }
1045 f_sysinfo_dec_raw(g_system_information[rsl_idx], rsl);
1046}
1047
1048altstep as_catch_RSL_sysinfo(integer rsl_idx) runs on test_CT {
1049 var ASP_RSL_Unitdata rx_rsl_ud;
1050
1051 /* For handler_mode := false, receiving the RSL bootstrap messages directly on IPA_RSL */
1052 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1053 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1054 repeat;
1055 }
1056 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1057 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1058 repeat;
1059 }
1060 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1061 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1062 repeat;
1063 }
1064 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1065 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1066 repeat;
1067 }
1068
1069 /* For handler_mode := true, receiving the RSL bootstrap messages via RSL_Emulation */
1070 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1071 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1072 repeat;
1073 }
1074 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1075 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1076 repeat;
1077 }
1078 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1079 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1080 repeat;
1081 }
1082 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1083 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1084 repeat;
1085 }
1086}
1087
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001088/* TODO: use BooleanList from COMMON/src/General_Types.ttcn */
1089private type record of boolean my_BooleanList;
1090
1091private function f_vty_msc_allow_attach(TELNETasp_PT pt, my_BooleanList allow_attach_list)
1092{
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001093 var charstring config := f_vty_transceive_ret(pt, "show running-config");
1094
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001095 for (var integer msc_nr := 0; msc_nr < sizeof(allow_attach_list); msc_nr := msc_nr+1) {
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001096 if (f_strstr(config, "\nmsc " & int2str(msc_nr) & "\n") < 0) {
1097 /* There is no 'msc N' for this msc_nr in the running config, so don't create an empty msc by
1098 * stepping into that config node. */
1099 log("msc ", msc_nr, " is not configured, skipping");
1100 continue;
1101 }
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001102 f_vty_enter_cfg_msc(pt, msc_nr);
1103 if (allow_attach_list[msc_nr]) {
1104 /* strict := false: ignore if osmo-bsc does not support this config option (latest build) */
1105 f_vty_transceive(pt, "allow-attach", strict := false);
1106 } else {
1107 f_vty_transceive(pt, "no allow-attach", strict := false);
1108 }
1109 f_vty_transceive(pt, "exit");
1110 f_vty_transceive(pt, "exit");
1111 }
1112}
1113
Harald Welte21b46bd2017-12-17 19:46:32 +01001114/* global initialization function
1115 * \param nr_bts Number of BTSs we should start/bring up
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001116 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false).
1117 * \param nr_msc Number of virtual MSCs to bring up to connect to osmo-bsc.
1118 */
1119function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolean allow_osmux := false,
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001120 integer nr_msc := 1, float guard_timeout := 30.0) runs on test_CT {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001121 var integer bssap_idx;
Harald Welte28d943e2017-11-25 15:00:50 +01001122
Harald Welteae026692017-12-09 01:03:01 +01001123 if (g_initialized) {
1124 return;
Harald Welte28d943e2017-11-25 15:00:50 +01001125 }
Harald Welteae026692017-12-09 01:03:01 +01001126 g_initialized := true;
1127
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001128 T_guard.start(guard_timeout);
Daniel Willmanne68f9272018-11-27 15:15:28 +01001129 activate(as_Tguard());
1130
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001131 f_init_vty("VirtMSC");
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +02001132 f_vty_allow_osmux(allow_osmux);
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001133
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001134 var my_BooleanList allow_attach := { false, false, false };
Daniel Willmannebdecc02020-08-12 15:30:17 +02001135 f_init_statsd("VirtMSC", vc_STATSD, mp_test_ip, mp_bsc_statsd_port);
1136
Neels Hofmeyr9db8e0e2021-08-23 20:45:58 +02001137 /* Make sure each MSC's internal state is "DISCONNECTED" at first */
1138 for (bssap_idx := 0; bssap_idx < NUM_MSC; bssap_idx := bssap_idx+1) {
1139 f_vty_transceive(BSCVTY, "msc " & int2str(bssap_idx) & " bssmap reset", strict := false);
1140 }
1141
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001142 for (bssap_idx := 0; bssap_idx < nr_msc; bssap_idx := bssap_idx+1) {
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001143 allow_attach[bssap_idx] := true;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001144 /* Call a function of our 'parent component' RAN_Adapter_CT to start the
1145 * MSC-side BSSAP emulation */
1146 if (handler_mode) {
1147 var RanOps ranops := MSC_RanOps;
1148 ranops.use_osmux := g_osmux_enabled;
1149 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", ranops);
1150 connect(self:SCCPLITE_IPA_CTRL, g_bssap[bssap_idx].vc_RAN:CTRL_CLIENT);
1151 f_ran_adapter_start(g_bssap[bssap_idx]);
1152 } else {
1153 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", omit);
1154 connect(self:BSSAP, g_bssap[bssap_idx].vc_SCCP:SCCP_SP_PORT);
1155 f_ran_adapter_start(g_bssap[bssap_idx]);
1156 f_legacy_bssap_reset();
1157 }
Harald Welte67089ee2018-01-17 22:19:03 +01001158 }
Harald Welted5833a82018-05-27 16:52:56 +02001159
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02001160 if (mp_enable_lcs_tests) {
1161 if (handler_mode) {
1162 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", SMLC_BssapLeOps);
1163 } else {
1164 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", omit);
1165 connect(self:BSSAP_LE, g_bssap_le.vc_SCCP:SCCP_SP_PORT);
1166 }
1167 f_bssap_le_adapter_start(g_bssap_le);
Harald Welte47cd0e32020-08-21 12:39:11 +02001168 }
Harald Welte47cd0e32020-08-21 12:39:11 +02001169
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001170 /* start the test with exactly all enabled MSCs allowed to attach */
1171 f_vty_msc_allow_attach(BSCVTY, allow_attach);
1172
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01001173 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Harald Welte28d943e2017-11-25 15:00:50 +01001174
Daniel Willmann191e0d92018-01-17 12:44:35 +01001175 f_init_mgcp("VirtMSC");
1176
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001177 for (var integer i := 0; i < nr_bts; i := i+1) {
1178 f_init_bts(i, handler_mode);
Harald Welte696ddb62017-12-08 14:01:43 +01001179 }
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001180}
Harald Welte696ddb62017-12-08 14:01:43 +01001181
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001182function f_init_bts(integer bts_idx := 0, boolean handler_mode := false)
1183runs on test_CT {
1184 /* wait until osmo-bts-omldummy has respawned */
1185 f_wait_oml(bts_idx, "degraded", 5.0);
1186
1187 /* start RSL connection */
1188 f_ipa_rsl_start(bts[bts_idx].rsl, mp_bsc_ip, mp_bsc_rsl_port, bts_idx, handler_mode);
1189 /* wait until BSC tells us "connected" */
1190 f_wait_oml(bts_idx, "connected", 5.0);
Harald Welte28d943e2017-11-25 15:00:50 +01001191}
1192
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001193function f_init_bts_and_check_sysinfo(integer bts_idx := 0, boolean handler_mode := false,
1194 template SystemInformationConfig expect_si)
1195runs on test_CT {
1196 var default sysinfo := activate(as_catch_RSL_sysinfo(bts_idx));
1197
1198 f_init_bts(bts_idx, handler_mode);
1199
1200 /* Give some time to (hopefully/most likely) collect all system informations from RSL startup.
1201 * We could stop as soon as all expected SI are received, but then we might miss SI that we don't expect and
1202 * that might be sent afterwards. So rather give a generous timeout and be quite sure to catch all SI.
1203 */
1204 f_sleep(5.0);
1205 log("RSL ", bts_idx, " SYSTEM INFORMATION: ", g_system_information[bts_idx]);
1206
1207 deactivate(sysinfo);
1208
1209 if (match(g_system_information[bts_idx], expect_si)) {
1210 setverdict(pass);
1211 } else {
1212 log("RSL ", bts_idx, ": EXPECTED SI: ", expect_si);
1213 log("RSL ", bts_idx, ": GOT SI: ", g_system_information[bts_idx]);
1214 setverdict(fail, "received SI does not match expectations");
1215 return;
1216 }
1217}
1218
Maxd4e56962018-10-31 19:08:25 +01001219/* expect to receive a RSL message matching a specified template on a given BTS / stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001220function f_exp_ipa_rx(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001221runs on test_CT return RSL_Message {
1222 var ASP_RSL_Unitdata rx_rsl_ud;
1223 timer T := t_secs;
1224
1225 T.start;
1226 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001227 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
Harald Welteae026692017-12-09 01:03:01 +01001228 T.stop;
1229 }
1230 [] IPA_RSL[bts_nr].receive { repeat; }
Harald Welteb2917702017-12-10 15:48:52 +01001231 [] T.timeout {
1232 setverdict(fail, "Timeout expecting ", t_rx);
Daniel Willmannafce8662018-07-06 23:11:32 +02001233 mtc.stop;
Harald Welteb2917702017-12-10 15:48:52 +01001234 }
Harald Welteae026692017-12-09 01:03:01 +01001235 }
1236 return rx_rsl_ud.rsl;
1237}
1238
Harald Welte21b46bd2017-12-17 19:46:32 +01001239/* helper function to transmit RSL on a given BTS/stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001240function f_ipa_tx(integer bts_nr, template (value) RSL_Message t_tx, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001241runs on test_CT {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001242 IPA_RSL[bts_nr].send(ts_ASP_RSL_UD(t_tx, sid));
Harald Welteae026692017-12-09 01:03:01 +01001243}
1244
1245
Harald Welte4003d112017-12-09 22:35:39 +01001246/* verify we get a CHAN_ACT after CHAN RQD */
Harald Welteae026692017-12-09 01:03:01 +01001247testcase TC_chan_act_noreply() runs on test_CT {
1248 var BSSAP_N_UNITDATA_ind ud_ind;
Harald Welte930d0a72018-03-22 22:08:40 +01001249 var RSL_Message rsl_unused;
Harald Welte28d943e2017-11-25 15:00:50 +01001250
Harald Welte89d42e82017-12-17 16:42:41 +01001251 f_init(1);
Harald Welte28d943e2017-11-25 15:00:50 +01001252
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001253 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001254 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001255 f_shutdown_helper();
Harald Welte28d943e2017-11-25 15:00:50 +01001256}
1257
Harald Welte4003d112017-12-09 22:35:39 +01001258/* verify if the "chreq:total" counter increments as expected */
1259testcase TC_chan_act_counter() runs on test_CT {
1260 var BSSAP_N_UNITDATA_ind ud_ind;
1261 var integer chreq_total;
Harald Welte930d0a72018-03-22 22:08:40 +01001262 var RSL_Message rsl_unused;
Harald Welte4003d112017-12-09 22:35:39 +01001263
Harald Welte89d42e82017-12-17 16:42:41 +01001264 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001265
1266 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001267 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001268 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Harald Welte4003d112017-12-09 22:35:39 +01001269 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total", chreq_total+1);
1270
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001271 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001272}
1273
Harald Welteae026692017-12-09 01:03:01 +01001274/* CHAN RQD -> CHAN ACT -> CHAN ACT ACK -> RF CHAN REL */
Philipp Maier9c60a622020-07-09 15:08:46 +02001275private function f_TC_chan_act_ack_noest(OCT1 ra := '23'O) runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +01001276 var RSL_Message rx_rsl;
1277
Harald Welteae026692017-12-09 01:03:01 +01001278 /* Send CHAN RQD and wait for allocation; acknowledge it */
Philipp Maier9c60a622020-07-09 15:08:46 +02001279 var RslChannelNr chan_nr := f_chreq_act_ack(ra);
Harald Welteae026692017-12-09 01:03:01 +01001280
1281 /* expect BSC to disable the channel again if there's no RLL EST IND */
1282 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1283
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001284 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001285}
1286
Philipp Maier9c60a622020-07-09 15:08:46 +02001287/* Normal variant */
1288testcase TC_chan_act_ack_noest() runs on test_CT {
Philipp Maieraf58db22020-08-12 17:24:40 +02001289 f_init(1);
Philipp Maier9c60a622020-07-09 15:08:46 +02001290 f_TC_chan_act_ack_noest();
1291}
1292
1293/* Emergency call variant */
1294testcase TC_chan_act_ack_noest_emerg() runs on test_CT {
1295 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
Philipp Maieraf58db22020-08-12 17:24:40 +02001296 f_init(1);
1297 f_vty_allow_emerg_bts(true, 0);
Philipp Maier9c60a622020-07-09 15:08:46 +02001298 f_TC_chan_act_ack_noest(ra := 'A5'O);
1299}
1300
Philipp Maier606f07d2020-08-12 17:21:58 +02001301/* Emergency call variant, but emergency calls are not allowed */
1302testcase TC_chan_rqd_emerg_deny() runs on test_CT {
1303 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
1304
1305 var RSL_Message rx_rsl;
1306 var GsmRrMessage rr;
1307
1308 f_init(1);
1309 f_vty_allow_emerg_bts(false, 0);
1310
1311 IPA_RSL[0].clear;
1312 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
1313
1314 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
1315 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
1316 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1317 setverdict(pass);
1318 } else {
1319 setverdict(fail, "immediate assignment not rejected");
1320 }
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01001321
1322 f_shutdown_helper();
Philipp Maier606f07d2020-08-12 17:21:58 +02001323}
1324
Harald Welteae026692017-12-09 01:03:01 +01001325/* Test behavior if MSC never answers to CR */
1326testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
Harald Weltef77aef62018-01-28 15:35:42 +01001327 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
1328 var IpaStreamId sid := IPAC_PROTO_RSL_TRX0;
Harald Welteae026692017-12-09 01:03:01 +01001329 var RSL_Message rx_rsl;
Harald Weltef77aef62018-01-28 15:35:42 +01001330 var ASP_RSL_Unitdata rx_rsl_ud;
Harald Welteae026692017-12-09 01:03:01 +01001331
Harald Welte89d42e82017-12-17 16:42:41 +01001332 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001333
1334 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001335 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001336
1337 var octetstring l3 := '00010203040506'O
1338 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1339
1340 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3)));
1341
1342 /* expect BSC to disable the channel again if there's no response from MSC */
Harald Weltef77aef62018-01-28 15:35:42 +01001343 /* MS waits 20s (T3210) at LU; 10s (T3230) at CM SERV REQ and 5s (T3220) AT detach */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001344 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001345 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001346}
1347
1348/* Test behavior if MSC answers with CREF to CR */
1349testcase TC_chan_act_ack_est_ind_refused() runs on test_CT {
1350 var BSSAP_N_CONNECT_ind rx_c_ind;
1351 var RSL_Message rx_rsl;
1352
Harald Welte89d42e82017-12-17 16:42:41 +01001353 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001354
1355 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001356 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001357
1358 var octetstring l3 := '00010203040506'O
1359 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1360
1361 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1362 BSSAP.send(ts_BSSAP_DISC_req(rx_c_ind.connectionId, 0));
1363
1364 /* expect BSC to disable the channel */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001365 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001366 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001367}
1368
Harald Welte618ef642017-12-14 14:58:20 +01001369/* CHAN RQD -> CHAN ACT -> CHAN ACT NACK -> RF CHAN REL */
1370testcase TC_chan_act_nack() runs on test_CT {
1371 var RSL_Message rx_rsl;
1372 var integer chact_nack;
1373
Harald Welte89d42e82017-12-17 16:42:41 +01001374 f_init(1);
Harald Welte618ef642017-12-14 14:58:20 +01001375
1376 chact_nack := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack");
1377
1378 f_ipa_tx(0, ts_RSL_CHAN_RQD('33'O, 33));
1379 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1380 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1381
1382 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
1383
1384 /* wait for some time to hope the NACK arrives before the CTRL GET below */
1385 f_sleep(0.5);
1386
1387 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack", chact_nack+1);
1388
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001389 f_shutdown_helper();
Harald Welte618ef642017-12-14 14:58:20 +01001390}
1391
Harald Welte799c97b2017-12-14 17:50:30 +01001392/* Test for channel exhaustion due to RACH overload */
1393testcase TC_chan_exhaustion() runs on test_CT {
1394 var ASP_RSL_Unitdata rsl_ud;
1395 var integer i;
1396 var integer chreq_total, chreq_nochan;
1397
Harald Welte89d42e82017-12-17 16:42:41 +01001398 f_init(1);
Harald Welte799c97b2017-12-14 17:50:30 +01001399
1400 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
1401 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
1402
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001403 /* GSM 04.08 Table 9.9a:
1404 * RA = '33'O -> Establishment cause = 0011xxxx (MS dual rate capable and asks for "TCH/H or TCH/F").
1405 * With current setup, expect 4xSDCCH + 4xTCH/F + 1xTCH/H to succeed */
Philipp Maiercb6cc482018-03-26 13:08:00 +02001406 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001407 var RslChannelNr chan_nr := f_chreq_act_ack('33'O, i);
Harald Welte799c97b2017-12-14 17:50:30 +01001408 }
1409
1410 IPA_RSL[0].clear;
1411
Harald Weltedd8cbf32018-01-28 12:07:52 +01001412 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001413 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
Harald Welte799c97b2017-12-14 17:50:30 +01001414
1415 /* now expect additional channel activations to fail */
1416 f_ipa_tx(0, ts_RSL_CHAN_RQD('42'O, 42));
1417
1418 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001419 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV))) {
Harald Welte799c97b2017-12-14 17:50:30 +01001420 setverdict(fail, "Received CHAN ACT ACK without resources?!?");
1421 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001422 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) -> value rsl_ud {
Harald Welte799c97b2017-12-14 17:50:30 +01001423 var GsmRrMessage rr;
1424 /* match on IMM ASS REJ */
1425 rr := dec_GsmRrMessage(rsl_ud.rsl.ies[1].body.full_imm_ass_info.payload);
1426 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1427 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001428 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS+1);
Harald Welte799c97b2017-12-14 17:50:30 +01001429 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel",
1430 chreq_nochan+1);
1431 setverdict(pass);
1432 } else {
1433 repeat;
1434 }
1435 }
1436 [] IPA_RSL[0].receive { repeat; }
1437 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001438 f_shutdown_helper();
Harald Welte799c97b2017-12-14 17:50:30 +01001439}
1440
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001441/* Test channel deactivation due to silence from MS */
1442testcase TC_chan_deact_silence() runs on test_CT {
1443 var RslChannelNr chan_nr;
1444
1445 f_init(1);
1446
1447 /* Request for a dedicated channel */
1448 chan_nr := f_chreq_act_ack('23'O);
1449
1450 /* Wait some time until the channel is released */
1451 f_sleep(2.0);
1452
1453 /* Expect CHANnel RELease */
1454 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001455 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001456 log("Received CHANnel RELease");
1457 setverdict(pass);
1458 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001459 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001460 /* See OS#3709, OsmoBSC should not send Immediate
1461 * Assignment Reject since a dedicated channel was
1462 * already allocated, and Immediate Assignment was
1463 * already sent. */
1464 setverdict(fail, "Unexpected Immediate Assignment!");
1465 }
1466 [] IPA_RSL[0].receive {
1467 setverdict(fail, "Unexpected RSL message!");
1468 }
1469 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001470 f_shutdown_helper();
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001471}
1472
Harald Weltecfe2c962017-12-15 12:09:32 +01001473/***********************************************************************
1474 * Assignment Testing
1475 ***********************************************************************/
1476
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02001477/* Verify that the BSC refuses any BSSAP connection from the MSC (They are all BSC->MSC direction,
1478 * except for the inter-BSC handover, MT side) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001479testcase TC_outbound_connect(integer bssap_idx := 0) runs on test_CT {
Harald Welte89d42e82017-12-17 16:42:41 +01001480 f_init(1);
Harald Weltecfe2c962017-12-15 12:09:32 +01001481
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001482 BSSAP.send(ts_BSSAP_CONNECT_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
1483 2342, ts_BSSMAP_AssignmentReq));
Harald Weltecfe2c962017-12-15 12:09:32 +01001484 BSSAP.receive(tr_BSSAP_DISC_ind(2342, ?, ?));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001485 f_shutdown_helper();
Harald Weltecfe2c962017-12-15 12:09:32 +01001486}
1487
Harald Welte16a4adf2017-12-14 18:54:01 +01001488/* Test behavior if MSC answers with CREF to CR */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001489testcase TC_assignment_cic_only(integer bssap_idx := 0) runs on test_CT {
Harald Welte16a4adf2017-12-14 18:54:01 +01001490 var BSSAP_N_CONNECT_ind rx_c_ind;
1491 var RSL_Message rx_rsl;
1492 var DchanTuple dt;
1493
Harald Welte89d42e82017-12-17 16:42:41 +01001494 f_init(1);
Harald Welte16a4adf2017-12-14 18:54:01 +01001495
1496 dt := f_est_dchan('23'O, 23, '00000000'O);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001497 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte17b27da2018-05-25 20:33:53 +02001498 /* send assignment without AoIP IEs */
1499 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(ts_BSSMAP_IE_CIC(0, 1))));
1500 } else {
1501 /* Send assignmetn without CIC in IPA case */
1502 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
1503 valueof(ts_BSSMAP_IE_AoIP_TLA4('01020304'O, 2342));
1504 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(omit, tla)));
1505 }
Harald Welte16a4adf2017-12-14 18:54:01 +01001506 alt {
1507 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1508 setverdict(fail, "AoIP BSC cannot accept ASSIGNMENT without AoIP Transport IE");
1509 }
Harald Welte235ebf12017-12-15 14:18:16 +01001510 /* TODO: Actually expect GSM0808_CAUSE_REQ_A_IF_TYPE_NOT_SUPP */
Harald Welte16a4adf2017-12-14 18:54:01 +01001511 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1512 setverdict(pass);
1513 }
1514 [] BSSAP.receive { repeat; }
1515 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001516 f_shutdown_helper();
Harald Welte16a4adf2017-12-14 18:54:01 +01001517}
1518
Harald Welteed848512018-05-24 22:27:58 +02001519/* generate an assignment request for either AoIP or SCCPlite */
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001520function f_gen_ass_req(boolean osmux_enabled := false, integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4") return PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001521 var PDU_BSSAP ass_cmd;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001522 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001523 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welteed848512018-05-24 22:27:58 +02001524 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001525 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001526 if (osmux_enabled) {
1527 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla, osmux_cid));
1528 } else {
1529 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla));
1530 }
Harald Welteed848512018-05-24 22:27:58 +02001531 } else {
1532 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001533 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(cic, omit));
Harald Welteed848512018-05-24 22:27:58 +02001534 }
1535 return ass_cmd;
1536}
1537
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02001538function f_gen_handover_req(integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4",
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001539 template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit,
1540 template (omit) TestHdlrEncrParams enc := omit) return PDU_BSSAP {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001541 var PDU_BSSAP ho_req;
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001542
1543 var BSSMAP_IE_EncryptionInformation encryptionInformation :=
1544 valueof(ts_BSSMAP_IE_EncrInfo('0000000000000000'O,'01'O));
1545 var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
1546 var template BSSMAP_IE_KC128 kc128 := omit;
1547 if (ispresent(enc)) {
1548 var TestHdlrEncrParams v_enc := valueof(enc);
1549 encryptionInformation := valueof(ts_BSSMAP_IE_EncrInfo(v_enc.enc_key, v_enc.enc_alg));
1550 chosenEncryptionAlgorithm := valueof(
1551 ts_BSSMAP_IE_ChosenEncryptionAlgorithm(int2oct(enum2int(
Oliver Smith598e1ed2021-07-09 10:28:40 +02001552 f_cipher_mode_bssmap_to_rsl(v_enc.enc_alg)), 1)));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001553 if (ispresent(v_enc.enc_kc128)) {
1554 kc128 := ts_BSSMAP_IE_Kc128(v_enc.enc_kc128);
1555 }
1556 }
1557
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001558 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001559 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001560 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001561 ho_req := valueof(ts_BSSMAP_HandoverRequest(omit, tla, oldToNewBSSIEs := oldToNewBSSIEs,
1562 encryptionInformation := encryptionInformation,
1563 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1564 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001565 } else {
1566 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001567 ho_req := valueof(ts_BSSMAP_HandoverRequest(cic, omit, oldToNewBSSIEs := oldToNewBSSIEs,
1568 encryptionInformation := encryptionInformation,
1569 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1570 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001571 }
1572 return ho_req;
1573}
1574
Harald Welteed848512018-05-24 22:27:58 +02001575/* generate an assignment complete template for either AoIP or SCCPlite */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001576function f_gen_exp_compl(boolean expect_osmux := false, integer bssap_idx := 0) return template PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001577 var template PDU_BSSAP exp_compl;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001578 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001579 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001580 if (expect_osmux) {
1581 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, osmux_cid);
1582 } else {
1583 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, omit);
1584 }
Harald Welteed848512018-05-24 22:27:58 +02001585 } else {
1586 /* CIC is optional "*" as the MSC allocated it */
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001587 exp_compl := tr_BSSMAP_AssignmentComplete(*, omit);
Harald Welteed848512018-05-24 22:27:58 +02001588 }
1589 return exp_compl;
1590}
1591
Harald Welte235ebf12017-12-15 14:18:16 +01001592/* Run everything required up to sending a caller-specified assignment command and expect response */
1593function f_assignment_exp(PDU_BSSAP ass_cmd, template PDU_BSSAP exp, charstring fail_text)
1594runs on test_CT {
1595 var BSSAP_N_CONNECT_ind rx_c_ind;
1596 var RSL_Message rx_rsl;
1597 var DchanTuple dt;
1598
Harald Welte89d42e82017-12-17 16:42:41 +01001599 f_init(1);
Harald Welte235ebf12017-12-15 14:18:16 +01001600
1601 dt := f_est_dchan('23'O, 23, '00000000'O);
1602 /* send assignment without AoIP IEs */
1603 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
1604 alt {
1605 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1606 if (ischosen(exp.pdu.bssmap.assignmentComplete)) {
1607 setverdict(pass);
1608 } else {
1609 setverdict(fail, fail_text);
1610 }
1611 }
1612 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1613 if (ischosen(exp.pdu.bssmap.assignmentFailure)) {
1614 setverdict(pass);
1615 } else {
1616 setverdict(fail, fail_text);
1617 }
1618 }
1619 [] BSSAP.receive { repeat; }
1620 }
1621}
1622testcase TC_assignment_csd() runs on test_CT {
1623 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001624 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001625 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1626 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1627 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for CSD");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001628 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001629}
1630
1631testcase TC_assignment_ctm() runs on test_CT {
1632 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001633 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001634 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCTM);
1635 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1636 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for Speech+CTM");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001637 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001638}
1639
Harald Welte4003d112017-12-09 22:35:39 +01001640type record DchanTuple {
1641 integer sccp_conn_id,
1642 RslChannelNr rsl_chan_nr
Harald Weltea5d2ab22017-12-09 14:21:42 +01001643}
1644
Harald Welted6939652017-12-13 21:02:46 +01001645/* Send CHAN RQD and wait for allocation; acknowledge it */
1646private function f_chreq_act_ack(OCT1 ra := '23'O, GsmFrameNumber fn := 23)
1647runs on test_CT return RslChannelNr {
1648 var RSL_Message rx_rsl;
1649 f_ipa_tx(0, ts_RSL_CHAN_RQD(ra, fn));
1650 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1651 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1652 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
Daniel Willmannf4ac4ce2018-08-02 14:06:30 +02001653 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Harald Welted6939652017-12-13 21:02:46 +01001654 return chan_nr;
1655}
1656
Harald Welte4003d112017-12-09 22:35:39 +01001657/* helper function to establish a dedicated channel via BTS and MSC */
1658function f_est_dchan(OCT1 ra, GsmFrameNumber fn, octetstring l3)
1659runs on test_CT return DchanTuple {
1660 var BSSAP_N_CONNECT_ind rx_c_ind;
Harald Welte4003d112017-12-09 22:35:39 +01001661 var DchanTuple dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001662
Harald Welte4003d112017-12-09 22:35:39 +01001663 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001664 dt.rsl_chan_nr := f_chreq_act_ack(ra, fn);
Harald Welte4003d112017-12-09 22:35:39 +01001665
1666 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1667
1668 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1669 dt.sccp_conn_id := rx_c_ind.connectionId;
1670 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
1671
1672 return dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001673}
1674
Harald Welte641fcbe2018-06-14 10:58:35 +02001675/* expect RF CAN REL from BTS, acknowledge it and clear the MSC side */
1676private function f_exp_chan_rel_and_clear(DchanTuple dt, integer bts_nr := 0) runs on test_CT {
1677 var RSL_Message rx_rsl;
1678 /* expect BSC to disable the channel */
1679 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1680 /* respond with CHAN REL ACK */
1681 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1682
1683 /* expect Clear Complete from BSC */
1684 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1685
1686 /* MSC disconnects as instructed. */
1687 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1688}
1689
Harald Welte4003d112017-12-09 22:35:39 +01001690/* Test behavior of channel release after unilateral RLL REL IND (DISC from MS) */
1691testcase TC_chan_rel_rll_rel_ind() runs on test_CT {
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001692 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001693 var DchanTuple dt;
Harald Welte96c94412017-12-09 03:12:45 +01001694
Harald Welte89d42e82017-12-17 16:42:41 +01001695 f_init(1);
Harald Welte96c94412017-12-09 03:12:45 +01001696
Harald Welte4003d112017-12-09 22:35:39 +01001697 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1698
1699 /* simulate RLL REL IND */
1700 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
1701
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001702 /* expect Clear Request on MSC side */
1703 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1704
1705 /* Instruct BSC to clear channel */
1706 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1707 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1708
Harald Welte4003d112017-12-09 22:35:39 +01001709 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001710 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001711
1712 /* wait for SCCP emulation to do its job */
1713 f_sleep(1.0);
Harald Welte4003d112017-12-09 22:35:39 +01001714
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001715 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001716}
1717
1718/* Test behavior of channel release after CONN FAIL IND from BTS */
1719testcase TC_chan_rel_conn_fail() runs on test_CT {
1720 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001721 var DchanTuple dt;
1722
Harald Welte89d42e82017-12-17 16:42:41 +01001723 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001724
1725 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1726
1727 /* simulate CONN FAIL IND */
Harald Weltea8ed9062017-12-14 09:46:01 +01001728 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
Harald Welte4003d112017-12-09 22:35:39 +01001729 /* TODO: different cause values? */
1730
Harald Welte4003d112017-12-09 22:35:39 +01001731 /* expect Clear Request from BSC */
1732 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1733
1734 /* Instruct BSC to clear channel */
1735 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1736 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1737
Harald Welte6ff76ea2018-01-28 13:08:01 +01001738 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001739 f_exp_chan_rel_and_clear(dt, 0);
Harald Welte4003d112017-12-09 22:35:39 +01001740
1741 /* wait for SCCP emulation to do its job */
1742 f_sleep(1.0);
1743
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001744 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001745}
1746
Harald Welte99f3ca02018-06-14 13:40:29 +02001747/* Test behavior of early CONN FAIL IND from BTS (before EST IND!) */
1748/* See also https://www.osmocom.org/issues/3182 */
1749testcase TC_early_conn_fail() runs on test_CT {
1750 var RSL_Message rx_rsl;
1751 var DchanTuple dt;
1752
1753 f_init(1);
1754
1755 /* BTS->BSC: Send CHAN RQD and wait for allocation; acknowledge it */
Harald Weltec46ea3c2020-10-10 18:46:12 +02001756 dt.rsl_chan_nr := f_chreq_act_ack(f_rnd_ra_cs(), 23);
Harald Welte99f3ca02018-06-14 13:40:29 +02001757
1758 /* BTS->BSC: simulate CONN FAIL IND */
1759 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1760
1761 /* BTS->BSC: Expect RF channel release from BSC on Abis */
1762 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1763
1764 /* BTS<-BSC: respond with CHAN REL ACK */
1765 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1766
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001767 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001768}
1769
1770/* Test behavior of late CONN FAIL IND from BTS (ater REL IND!) */
1771/* See also https://www.osmocom.org/issues/3182 */
1772testcase TC_late_conn_fail() runs on test_CT {
1773 var RSL_Message rx_rsl;
1774 var DchanTuple dt;
1775
1776 f_init(1);
1777
1778 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1779
1780 /* BSC<-MSC: Instruct BSC to clear connection */
1781 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(0)));
1782
1783 /* BTS->BSC: expect BSC to deactivate SACCH */
1784 rx_rsl := f_exp_ipa_rx(0, tr_RSL_DEACT_SACCH(dt.rsl_chan_nr));
1785
1786 /* BTS->BSC: simulate a late CONN FAIL IND from BTS */
1787 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1788
1789 /* BTS<-BSC: Expect RF channel release from BSC on Abis */
1790 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1791 /* BTS->BSC: respond with CHAN REL ACK */
1792 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1793
1794 /* BSC->MSC: expect Clear Complete from BSC */
1795 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1796
1797 /* BSC<-MSC: MSC disconnects as requested. */
1798 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1799
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001800 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001801}
1802
Oliver Smithaf03bef2021-08-24 15:34:51 +02001803private function f_TC_stats_conn_fail(charstring id) runs on MSC_ConnHdlr {
1804 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
1805 var PDU_BSSAP ass_cmd := f_gen_ass_req();
1806
1807 f_statsd_reset();
1808
1809 /* Establish SDCCH */
1810 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1811 f_establish_fully(ass_cmd, exp_fail);
1812
1813 /* Expect stats to be 0 */
1814 var StatsDExpects expect := {
1815 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 0, max := 0},
1816 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 0, max := 0}
1817 };
1818 f_statsd_expect(expect);
1819
1820 /* Simulate CONN FAIL IND on SDCCH */
1821 RSL.send(ts_ASP_RSL_UD(
1822 ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL),
1823 IPAC_PROTO_RSL_TRX0));
1824
Neels Hofmeyr58be48a2021-09-07 18:39:21 +02001825 f_sleep(1.0);
1826
Oliver Smithaf03bef2021-08-24 15:34:51 +02001827 /* Expect stats to be 1 */
1828 expect := {
1829 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 1, max := 1},
1830 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 1, max := 1}
1831 };
1832 f_statsd_expect(expect);
1833}
1834testcase TC_stats_conn_fail() runs on test_CT {
1835 var TestHdlrParams pars := f_gen_test_hdlr_pars();
1836 var MSC_ConnHdlr vc_conn;
1837
1838 f_init(1, true);
1839 f_sleep(1.0);
1840
1841 vc_conn := f_start_handler(refers(f_TC_stats_conn_fail), pars);
1842 vc_conn.done;
1843
1844 f_shutdown_helper();
1845}
1846
Neels Hofmeyrf44ccd12018-11-05 19:15:23 +01001847function f_expect_chan_rel(integer bts_nr, RslChannelNr rsl_chan_nr,
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001848 boolean expect_deact_sacch := true,
1849 boolean expect_rr_chan_rel := true,
1850 boolean expect_rll_rel_req := true,
Harald Welte99787102019-02-04 10:41:36 +01001851 boolean handle_rll_rel := true,
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001852 template CellSelIndValue expect_cells := omit,
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001853 template RR_Cause expect_rr_cause := ?
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001854 ) runs on test_CT {
Harald Welte91d54a52018-01-28 15:35:07 +01001855
1856 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001857 var boolean got_deact_sacch := false;
1858 var boolean got_rr_chan_rel := false;
1859 var boolean got_rll_rel_req := false;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001860 var ASP_RSL_Unitdata ud;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001861 var RSL_IE_Body l3_ie;
1862 var PDU_ML3_NW_MS l3;
1863 var RR_Cause got_cause;
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001864 log("f_expect_chan_rel() expecting: expect_deact_sacch=", expect_deact_sacch, " expect_rr_chan_rel=", expect_rr_chan_rel,
1865 " expect_rll_rel_req=", expect_rll_rel_req);
Harald Welte91d54a52018-01-28 15:35:07 +01001866 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001867 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DEACT_SACCH(rsl_chan_nr))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001868 got_deact_sacch := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001869 repeat;
1870 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001871 [not istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE_CellSelectInd))) -> value ud {
Harald Welte99787102019-02-04 10:41:36 +01001872 got_rr_chan_rel := true;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001873
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001874 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1875 setverdict(fail, "cannot find L3");
1876 mtc.stop;
1877 }
1878 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1879
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001880 if (not istemplatekind(expect_cells, "omit")) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001881 var CellSelIndValue cells := dec_CellSelIndValue(
1882 l3.msgs.rrm.channelRelease.cellSelectionIndicator.cellSelectionIndicatorValue);
1883
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001884 log("GOT RR CHANNEL RELEASE WITH CELLS: ", cells);
1885 if (match(cells, expect_cells)) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001886 setverdict(pass);
1887 } else {
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001888 log("EXPECTED CELLS: ", expect_cells);
1889 setverdict(fail, "Received cells list on RR Channel Release does not match expectations");
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001890 }
1891 }
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001892
1893 if (not istemplatekind(expect_rr_cause, "omit")) {
1894 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1895 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1896 if (match(got_cause, expect_rr_cause)) {
1897 setverdict(pass);
1898 } else {
1899 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1900 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1901 }
1902 }
Harald Welte99787102019-02-04 10:41:36 +01001903 repeat;
1904 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001905 [istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE))) -> value ud {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001906 got_rr_chan_rel := true;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001907
1908 if (not istemplatekind(expect_rr_cause, "omit")) {
1909 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1910 setverdict(fail, "cannot find L3");
1911 mtc.stop;
1912 }
1913 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1914
1915 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1916 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1917 if (match(got_cause, expect_rr_cause)) {
1918 setverdict(pass);
1919 } else {
1920 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1921 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1922 }
1923 }
Neels Hofmeyr211169d2018-11-07 00:37:29 +01001924 repeat;
1925 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001926 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_REL_REQ(rsl_chan_nr, ?))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001927 got_rll_rel_req := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001928 /* FIXME: Why are we getting this for LinkID SACCH? */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001929 if (handle_rll_rel) {
1930 f_ipa_tx(0, ts_RSL_REL_CONF(rsl_chan_nr, main_dcch));
1931 }
Harald Welte91d54a52018-01-28 15:35:07 +01001932 repeat;
1933 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001934 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001935 /* respond with CHAN REL ACK */
1936 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(rsl_chan_nr));
1937 }
1938 /* ignore any user data */
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001939 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeR(?))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001940 repeat;
1941 }
1942 }
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001943
1944 log("f_expect_chan_rel() summary: got_deact_sacch=", got_deact_sacch, " got_rr_chan_rel=", got_rr_chan_rel,
1945 " got_rll_rel_req=", got_rll_rel_req);
1946
1947 if (expect_deact_sacch != got_deact_sacch) {
1948 setverdict(fail, "f_expect_chan_rel(): expect_deact_sacch=", expect_deact_sacch, " got_deact_sacch=", got_deact_sacch);
1949 }
1950 if (expect_rr_chan_rel != got_rr_chan_rel) {
1951 setverdict(fail, "f_expect_chan_rel(): expect_rr_chan_rel=", expect_rr_chan_rel, " got_rr_chan_rel=", got_rr_chan_rel);
1952 }
1953 if (expect_rll_rel_req != got_rll_rel_req) {
1954 setverdict(fail, "f_expect_chan_rel(): expect_rll_rel_req=", expect_rll_rel_req, " got_rll_rel_req=", got_rll_rel_req);
1955 }
Harald Welte91d54a52018-01-28 15:35:07 +01001956}
1957
Harald Welte4003d112017-12-09 22:35:39 +01001958/* Test behavior of channel release after hard Clear Command from MSC */
1959testcase TC_chan_rel_hard_clear() runs on test_CT {
1960 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001961 var DchanTuple dt;
Harald Welte4003d112017-12-09 22:35:39 +01001962
Harald Welte89d42e82017-12-17 16:42:41 +01001963 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001964
1965 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1966
1967 /* Instruct BSC to clear channel */
1968 var BssmapCause cause := 0;
1969 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1970
1971 /* expect Clear Complete from BSC on A */
1972 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1973 /* release the SCCP connection */
1974 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1975 }
1976
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001977 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001978 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001979}
1980
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001981function f_TC_chan_rel_last_eutran_plmn_hard_clear(boolean tx_csfb_ind) runs on test_CT {
1982 var BSSAP_N_DATA_ind rx_di;
1983 var DchanTuple dt;
1984
1985 f_init(1);
1986
1987 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1988 /* Send CommonID with some random PLMN (BSC doesn't take it into account
1989 /* yet when generating the EUTRAN neigh list in RR CHannel Release) */
1990 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
1991
1992 /* Instruct BSC to clear channel */
1993 var BssmapCause cause := 0;
1994 if (tx_csfb_ind) {
1995 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
1996 } else {
1997 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1998 }
1999
2000 /* expect Clear Complete from BSC on A */
2001 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2002 /* release the SCCP connection */
2003 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2004 }
2005
2006 /* 1 neighbor is added by default in osmo-bts.cfg and
2007 SystemInformationConfig_default, use that: */
2008 var template CellSelIndValue exp_cells := f_tr_rr_chan_rel_earfcns(1);
2009
2010 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := exp_cells);
2011 f_shutdown_helper();
2012}
2013
2014/* Test behavior of RR Channel rRelease after Clear Command without CSFB indicator
2015 from MSC, previously receiving any CommonID containing the "Last Used E-UTRAN
2016 PLMN Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2017 EUTRAN neighbor list sent later on by BSC in RR Channel, so receiving CSFB
2018 Indicator or not shouldn't matter at all. */
2019testcase TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() runs on test_CT {
2020 f_TC_chan_rel_last_eutran_plmn_hard_clear(false);
2021}
2022
2023/* Test behavior of RR Channel rRelease after Clear Command with CSFB indicator from
2024 MSC, previously receiving any CommonID containing the "Last Used E-UTRAN PLMN
2025 Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2026 EUTRAN neighbor list sent later on by BSC in RR Channel. */
2027testcase TC_chan_rel_last_eutran_plmn_hard_clear_csfb() runs on test_CT {
2028 f_TC_chan_rel_last_eutran_plmn_hard_clear(true);
2029}
2030
2031/* Test behavior of RR Channel Release after Clear Command with CSFB indicator from
2032 MSC, without receiving any CommonID containing the "Last Used E-UTRAN PLMN
2033 Id". According to spec (TS 48.008 version 16.0.0 Release 16 "3.2.1.21") the
2034 CSFB Indicator should not be used anymore, and hence, there should be no
2035 EUTRAN neighbor list sent by BSC in RR Channel release since no CommonId with
2036 Last Used E-UTRAN PLMN Id" IE was sent for this conn. */
Harald Welte99787102019-02-04 10:41:36 +01002037testcase TC_chan_rel_hard_clear_csfb() runs on test_CT {
2038 var BSSAP_N_DATA_ind rx_di;
2039 var DchanTuple dt;
2040
2041 f_init(1);
2042
2043 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2044
2045 /* Instruct BSC to clear channel */
2046 var BssmapCause cause := 0;
2047 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2048
2049 /* expect Clear Complete from BSC on A */
2050 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2051 /* release the SCCP connection */
2052 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2053 }
2054
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002055 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002056 f_shutdown_helper();
Harald Welte99787102019-02-04 10:41:36 +01002057}
2058
Harald Welted8c36cd2017-12-09 23:05:31 +01002059/* Test behavior of channel release after hard RLSD from MSC */
2060testcase TC_chan_rel_hard_rlsd() runs on test_CT {
Harald Welted8c36cd2017-12-09 23:05:31 +01002061 var DchanTuple dt;
Harald Welted8c36cd2017-12-09 23:05:31 +01002062
Harald Welte89d42e82017-12-17 16:42:41 +01002063 f_init(1);
Harald Welted8c36cd2017-12-09 23:05:31 +01002064
2065 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2066
2067 /* release the SCCP connection */
2068 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2069
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002070 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002071 f_shutdown_helper();
Harald Welted8c36cd2017-12-09 23:05:31 +01002072}
2073
Harald Welte550daf92018-06-11 19:22:13 +02002074/* Test behavior of channel release after hard RLSD from MSC and MS is not responding to RLL REL REQ */
2075testcase TC_chan_rel_hard_rlsd_ms_dead() runs on test_CT {
2076 var DchanTuple dt;
2077
2078 f_init(1);
2079
2080 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2081
2082 /* release the SCCP connection */
2083 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2084
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002085 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002086 f_shutdown_helper();
Harald Welte550daf92018-06-11 19:22:13 +02002087}
2088
Harald Welte85804d42017-12-10 14:11:58 +01002089/* Test behavior of channel release after BSSMAP RESET from MSC */
2090testcase TC_chan_rel_a_reset() runs on test_CT {
Harald Welte85804d42017-12-10 14:11:58 +01002091 var DchanTuple dt;
Harald Welte85804d42017-12-10 14:11:58 +01002092
Harald Welte89d42e82017-12-17 16:42:41 +01002093 f_init(1);
Harald Welte85804d42017-12-10 14:11:58 +01002094
2095 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2096
2097 /* Clear the queue, it might still contain stuff like IMMEDIATE ASSIGN */
2098 IPA_RSL[0].clear;
2099
2100 /* perform BSSAP RESET, expect RESET ACK and DISC.ind on connection */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002101 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte85804d42017-12-10 14:11:58 +01002102 interleave {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002103 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte85804d42017-12-10 14:11:58 +01002104 [] BSSAP.receive(tr_BSSAP_DISC_ind(dt.sccp_conn_id, ?, ?)) { }
2105 }
2106
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002107 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002108 f_shutdown_helper();
Harald Welte85804d42017-12-10 14:11:58 +01002109}
2110
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002111/* Verify T(iar) triggers and releases the channel */
2112testcase TC_chan_rel_sccp_tiar_timeout() runs on test_CT {
2113 var DchanTuple dt;
2114
2115 /* Set T(iar) in BSC low enough that it will trigger before other side
2116 has time to keep alive with a T(ias). Keep recommended ratio of
2117 T(iar) >= T(ias)*2 */
2118 g_bsc_sccp_timer_ias := 2;
2119 g_bsc_sccp_timer_iar := 5;
2120
2121 f_init(1);
2122
2123 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2124 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002125 f_shutdown_helper();
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002126}
2127
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002128private function f_tc_chan_rel_rr_cause(myBSSMAP_Cause clear_cmd_cause, template RR_Cause expect_rr_cause)
2129runs on test_CT
2130{
2131 var DchanTuple dt;
2132
2133 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2134 var BssmapCause cause := 0;
2135 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(enum2int(clear_cmd_cause))));
2136 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2137 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2138 }
2139
2140 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_rr_cause := expect_rr_cause);
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002141}
2142
2143/* Test that Clear Command cause codes affect the RR Channel Release cause code */
2144testcase TC_chan_rel_rr_cause() runs on test_CT {
2145 f_init(1);
2146
2147 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_CALL_CONTROL, GSM48_RR_CAUSE_NORMAL);
2148 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_HANDOVER_SUCCESSFUL, GSM48_RR_CAUSE_NORMAL);
2149 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_PREEMPTION, GSM48_RR_CAUSE_PREMPTIVE_REL);
2150 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_MESSAGE_FAILURE, GSM48_RR_CAUSE_PROT_ERROR_UNSPC);
2151 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
2152 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_EQUIPMENT_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
Vadim Yanitskiye18aebb2021-01-03 13:10:43 +01002153
2154 f_shutdown_helper();
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002155}
2156
Harald Welte5cd20ed2017-12-13 21:03:20 +01002157/* Test behavior if RSL EST IND for non-active channel */
2158testcase TC_rll_est_ind_inact_lchan() runs on test_CT {
2159 timer T := 2.0;
2160
Harald Welte89d42e82017-12-17 16:42:41 +01002161 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002162
2163 var octetstring l3 := '00010203040506'O;
2164 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
2165 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
2166
2167 T.start;
2168 alt {
2169 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2170 setverdict(fail, "MSC received COMPL L3 for non-active lchan");
2171 }
2172 [] BSSAP.receive {}
2173 [] IPA_RSL[0].receive {}
2174 [] T.timeout {}
2175 }
2176
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002177 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002178}
2179
2180/* Test behavior if RSL EST IND for invalid SAPI */
2181testcase TC_rll_est_ind_inval_sapi1() runs on test_CT {
2182 var RslChannelNr chan_nr;
2183
Harald Welte89d42e82017-12-17 16:42:41 +01002184 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002185
2186 chan_nr := f_chreq_act_ack()
2187
2188 var octetstring l3 := '00010203040506'O;
2189 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(1)), l3));
2190
2191 timer T := 2.0;
2192 T.start;
2193 alt {
2194 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2195 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 1");
2196 }
2197 [] BSSAP.receive { repeat; }
2198 [] IPA_RSL[0].receive { repeat; }
2199 [] T.timeout {}
2200 }
2201
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002202 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002203}
2204
2205/* Test behavior if RSL EST IND for invalid SAPI */
2206testcase TC_rll_est_ind_inval_sapi3() runs on test_CT {
2207 timer T := 2.0;
2208
Harald Welte89d42e82017-12-17 16:42:41 +01002209 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002210
2211 var RslChannelNr chan_nr := f_chreq_act_ack();
2212
2213 var octetstring l3 := '00010203040506'O;
2214 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(3)), l3));
2215
2216 T.start;
2217 alt {
2218 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2219 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 3");
2220 }
2221 [] BSSAP.receive { repeat; }
2222 [] IPA_RSL[0].receive { repeat; }
2223 [] T.timeout {}
2224 }
2225
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002226 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002227}
2228
2229/* Test behavior if RSL EST IND for invalid SACCH */
2230testcase TC_rll_est_ind_inval_sacch() runs on test_CT {
2231 timer T := 2.0;
2232
Harald Welte89d42e82017-12-17 16:42:41 +01002233 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002234
2235 var RslChannelNr chan_nr := f_chreq_act_ack();
2236
2237 var octetstring l3 := '00010203040506'O;
2238 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_SACCH(0)), l3));
2239
2240 T.start;
2241 alt {
2242 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2243 setverdict(fail, "MSC received COMPL L3 for invalid Link SACCH");
2244 }
2245 [] BSSAP.receive { repeat; }
2246 [] IPA_RSL[0].receive { repeat; }
2247 [] T.timeout {}
2248 }
2249
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002250 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002251}
2252
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002253/* Verify DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
2254private function f_TC_tch_dlci_link_id_sapi(charstring id) runs on MSC_ConnHdlr {
2255 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
2256 var PDU_BSSAP ass_cmd := f_gen_ass_req();
2257
2258 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
2259 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
2260
2261 f_establish_fully(ass_cmd, exp_compl);
2262
2263 /* SAPI0 has already been established by f_establish_fully(), establish SAPI3 */
2264 RSL.send(ts_RSL_EST_IND(g_chan_nr, ts_RslLinkID_SACCH(3), '0904'O));
2265 /* Expect BSSAP/DTAP on SAPI3 (DLCI IE) */
2266 BSSAP.receive(PDU_BSSAP:{
2267 discriminator := '1'B,
2268 spare := '0000000'B,
2269 dlci := 'C3'O,
2270 lengthIndicator := ?,
2271 pdu := { dtap := '0904'O }
2272 });
2273
2274 /* Send messages on DCCH/SAPI0 and ACCH/SAPI3 */
2275 for (var integer i := 0; i < 32; i := i + 1) {
2276 var octetstring l3 := '09'O & f_rnd_octstring(14);
2277 var template (value) RslLinkId link_id;
2278 var template (value) OCT1 dlci;
2279
2280 if (i mod 2 == 0) {
2281 /* SAPI0 on FACCH or SDCCH */
2282 link_id := ts_RslLinkID_DCCH(0);
2283 dlci := '80'O;
2284 } else {
2285 /* SAPI3 on SACCH */
2286 link_id := ts_RslLinkID_SACCH(3);
2287 dlci := 'C3'O;
2288 }
2289
2290 /* Send MO message: RSL -> BSSAP */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002291 f_mo_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002292 /* Send MT message: BSSAP -> RSL */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002293 f_mt_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002294 }
2295}
2296testcase TC_tch_dlci_link_id_sapi() runs on test_CT {
2297 var TestHdlrParams pars := f_gen_test_hdlr_pars();
2298 var MSC_ConnHdlr vc_conn;
2299
2300 f_init(1, true);
2301 f_sleep(1.0);
2302
2303 vc_conn := f_start_handler(refers(f_TC_tch_dlci_link_id_sapi), pars);
2304 vc_conn.done;
2305
2306 f_shutdown_helper();
2307}
2308
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002309private function f_exp_sapi_n_reject(template (present) GsmSapi sapi := ?,
2310 template myBSSMAP_Cause cause := ?,
2311 float T_val := 2.0)
2312runs on test_CT {
2313 var BSSAP_N_DATA_ind rx_di;
2314 timer T;
2315
2316 var template BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
2317 var template PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
2318
2319 T.start(T_val);
2320 alt {
2321 [] BSSAP.receive(tr_BSSAP_DATA_ind(?, tr_pdu)) -> value rx_di {
2322 var BSSMAP_IE_Cause rx_cause := rx_di.userData.pdu.bssmap.sAPInReject.cause;
2323 if (not match(rx_cause, tr_cause)) {
2324 setverdict(fail, "Rx unexpected Cause IE: ",
2325 rx_cause, " vs expected ", tr_cause);
2326 }
2327 setverdict(pass);
2328 }
2329 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value rx_di {
2330 setverdict(fail, "Rx unexpected BSSAP PDU: ", rx_di);
2331 }
2332 [] T.timeout {
2333 setverdict(fail, "Timeout waiting for BSSMAP SAPI N Reject");
2334 }
2335 }
2336}
2337
2338/* Check if we get SAPI N Reject on receipt of unexpected RLL RELease INDication */
2339testcase TC_rll_rel_ind_sapi_n_reject() runs on test_CT {
2340 var octetstring rnd_data := f_rnd_octstring(16);
2341 var RSL_Message rx_rsl;
2342 var DchanTuple dt;
2343
2344 f_init(1);
2345
2346 /* MS establishes a SAPI=0 link on DCCH */
2347 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2348
2349 /* MSC sends some data on (not yet established) SAPI=3 link */
2350 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2351 /* BSC attempts to establish a SAPI=3 link on DCCH */
2352 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2353
2354 /* MS sends unexpected RELease INDication on SAPI=3 */
2355 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3)));
2356 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2357 f_exp_sapi_n_reject(3, GSM0808_CAUSE_MS_NOT_EQUIPPED);
2358
2359 /* Clean up the connection */
2360 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2361 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2362
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002363 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002364}
2365
2366/* Check if we get SAPI N Reject on receipt of unexpected RLL ERROR INDication */
2367testcase TC_rll_err_ind_sapi_n_reject() runs on test_CT {
2368 var octetstring rnd_data := f_rnd_octstring(16);
2369 var RSL_Message rx_rsl;
2370 var DchanTuple dt;
2371
2372 f_init(1);
2373
2374 /* MS establishes a SAPI=0 link on DCCH */
2375 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2376
2377 /* MSC sends some data on (not yet established) SAPI=3 link */
2378 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2379 /* BSC attempts to establish a SAPI=3 link on DCCH */
2380 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2381
2382 /* BTS sends unexpected ERROR INDication on SAPI=3 */
2383 f_ipa_tx(0, ts_RSL_ERROR_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3), ''O));
2384 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2385 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED);
2386
2387 /* Clean up the connection */
2388 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2389 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2390
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002391 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002392}
2393
2394/* Check if we get SAPI N Reject due to a SAPI=3 link establishment timeout */
2395testcase TC_rll_timeout_sapi_n_reject() runs on test_CT {
2396 var octetstring rnd_data := f_rnd_octstring(16);
2397 var RSL_Message rx_rsl;
2398 var DchanTuple dt;
2399
2400 f_init(1);
2401
2402 /* MS establishes a SAPI=0 link on DCCH */
2403 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2404
2405 /* MSC sends some data on (not yet established) SAPI=3 link */
2406 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2407 /* BSC attempts to establish a SAPI=3 link on DCCH */
2408 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2409
2410 /* MS does not respond, so the link establishment timeout triggers SAPI N Reject */
2411 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED, T_val := 8.0);
2412
2413 /* Clean up the connection */
2414 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2415 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2416
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002417 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002418}
2419
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002420testcase TC_si_default() runs on test_CT {
2421 f_init(0);
2422 f_init_bts_and_check_sysinfo(0, expect_si := SystemInformationConfig_default);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002423 f_shutdown_helper();
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002424}
Harald Welte4003d112017-12-09 22:35:39 +01002425
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002426/* We're testing SI2quater with lists of EARFCNs. Instead of just incrementing EARFCNs, also pick some from the edges of
2427 * the entire value range. This function provides the same EARFCN numbers for the same earfcn_index */
2428private function f_test_si2quater_earfcn_by_idx(integer earfcn_index) return uint16_t
2429{
2430 select (earfcn_index) {
2431 case (0) {
2432 /* E-ARFCN 111 is already added in the osmo-bsc.cfg */
2433 return 111;
2434 }
2435 case (1) {
2436 return 1;
2437 }
2438 case (2) {
2439 return 0;
2440 }
2441 case (3) {
2442 return 65535;
2443 }
2444 case else {
2445 return 23 * (earfcn_index - 3);
2446 }
2447 }
2448}
2449
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002450function f_test_si2quater(integer total_earfcns, template SystemInformationConfig expect_si,
2451 template CellSelIndValue expect_cells := omit) runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002452
2453 f_init(0);
2454
2455 /* E-ARFCN 111 is already added in the osmo-bsc.cfg, so only add more arfcns if total_earfcns > 1 */
2456 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002457 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2458 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002459 }
2460
2461 f_init_bts_and_check_sysinfo(0, expect_si := expect_si);
2462
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002463 if (not istemplatekind(expect_cells, "omit")) {
2464 /* Also check that RR Channel Release contains these EARFCNs.
2465 * (copied code from TC_chan_rel_hard_clear_csfb) */
2466 var BSSAP_N_DATA_ind rx_di;
2467 var DchanTuple dt;
2468
2469 dt := f_est_dchan('23'O, 23, '00010203040506'O);
Pau Espin Pedrold0046312021-04-19 16:35:58 +02002470 /* Send CommonID with some random PLMN (BSC doesn't take it into account
2471 * yet when generating the EUTRAN neigh list in RR CHannel Release) */
2472 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002473
2474 /* Instruct BSC to clear channel */
2475 var BssmapCause cause := 0;
2476 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2477
2478 /* expect Clear Complete from BSC on A */
2479 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2480 /* release the SCCP connection */
2481 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2482 }
2483
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002484 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := expect_cells);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002485 }
2486
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002487 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002488 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002489 }
2490}
2491
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002492private function f_tr_si2quater_earfcns(integer count) return template SI2quaterRestOctetsList
2493{
2494 var template SI2quaterRestOctetsList si2quater := {};
2495 var integer si2quater_count := (count + 2) / 3;
2496
2497 for (var integer i := 0; i < count; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002498 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002499 var integer index := i / 3;
2500 var integer earfcn_index := i mod 3;
2501 if (index >= lengthof(si2quater)) {
2502 si2quater[index] := tr_SI2quaterRestOctets_EUTRAN(index := index, count := si2quater_count - 1);
2503 }
2504 si2quater[index].rel_additions.rel5.rel6.rel7.rel8.prio_eutran_params_desc.desc.eutran_params_desc.desc.repeated_neigh_cells[0].cell_desc_list[earfcn_index] := tr_EUTRAN_CellDesc_default(e_arfcn := earfcn);
2505 }
2506
2507 return si2quater;
2508}
2509
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002510private function f_tr_rr_chan_rel_earfcns(integer count) return template CellSelIndValue
2511{
2512 var template CellSelIndValue_EUTRAN_Descrs cells := {};
2513
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002514 /* the lte neighbors must match the config & vty to pass this test */
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002515 for (var integer i := 0; i < count; i := i + 1) {
2516 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002517 cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002518 }
2519
2520 return tr_CellSelIndValue_EUTRAN(cells);
2521}
2522
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002523private function f_tc_si2quater_n_earfcns(integer n) runs on test_CT
2524{
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002525 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrol8ab62e42020-12-18 16:19:11 +01002526 sic.si2quater := f_tr_si2quater_earfcns(n);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002527 var template CellSelIndValue cells := f_tr_rr_chan_rel_earfcns(n);
2528 f_test_si2quater(n, sic, cells);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002529}
2530
2531testcase TC_si2quater_2_earfcns() runs on test_CT {
2532 f_tc_si2quater_n_earfcns(2);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002533 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002534}
2535
2536testcase TC_si2quater_3_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002537 f_tc_si2quater_n_earfcns(3);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002538 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002539}
2540
2541testcase TC_si2quater_4_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002542 f_tc_si2quater_n_earfcns(4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002543 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002544}
2545
2546testcase TC_si2quater_5_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002547 f_tc_si2quater_n_earfcns(5);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002548 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002549}
2550
2551testcase TC_si2quater_6_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002552 f_tc_si2quater_n_earfcns(6);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002553 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002554}
2555
2556testcase TC_si2quater_12_earfcns() runs on test_CT {
2557 f_tc_si2quater_n_earfcns(12);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002558 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002559}
2560
2561testcase TC_si2quater_23_earfcns() runs on test_CT {
2562 f_tc_si2quater_n_earfcns(23);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002563 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002564}
2565
2566testcase TC_si2quater_32_earfcns() runs on test_CT {
2567 f_tc_si2quater_n_earfcns(32);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002568 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002569}
2570
2571testcase TC_si2quater_33_earfcns() runs on test_CT {
2572 f_tc_si2quater_n_earfcns(33);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002573 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002574}
2575
2576testcase TC_si2quater_42_earfcns() runs on test_CT {
2577 f_tc_si2quater_n_earfcns(42);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002578 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002579}
2580
2581testcase TC_si2quater_48_earfcns() runs on test_CT {
2582 f_tc_si2quater_n_earfcns(48);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002583 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002584}
2585
2586/* verify the VTY error response when adding too many EARFCNs, and showing that osmo-bsc still sends 16 SI2quater with
2587 * 48 EARFCNs. */
2588testcase TC_si2quater_49_earfcns() runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002589 var template SystemInformationConfig sic := SystemInformationConfig_default;
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002590 sic.si2quater := f_tr_si2quater_earfcns(48); /* 48, not 49! */
2591 f_init(0);
2592
2593 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002594 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2595 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002596 }
2597
2598 /* The 49th EARFCN no longer fits, expect VTY error */
2599 f_vty_enter_cfg_bts(BSCVTY, 0);
2600 var charstring vty_error;
2601 vty_error := f_vty_transceive_ret(BSCVTY,
2602 "si2quater neighbor-list add earfcn 70 thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3")
2603 f_vty_transceive(BSCVTY, "end");
2604
2605 if (f_strstr(vty_error, "Unable to add ARFCN 70") >= 0) {
2606 log("Got expected VTY error: ", vty_error);
2607 setverdict(pass);
2608 } else {
2609 setverdict(fail, "Expected the 49th EUTRAN ARFCN to be rejected by vty config, got: ", vty_error);
2610 }
2611
2612 f_init_bts_and_check_sysinfo(0, expect_si := sic);
2613
2614 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002615 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002616 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002617 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002618}
2619
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002620private function f_acc09_count_allowed(AccessControlClass acc) return uint8_t
2621{
2622 var uint8_t count := 0;
2623 for (var integer i := 5; i < 16; i := i + 1) {
2624 if (acc[i] == '0'B) { /* the list marks barred, we count allowed */
2625 count := count + 1;
2626 }
2627 }
2628 return count;
2629}
2630
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002631private function f_recv_next_si1(integer rsl_idx := 0) runs on test_CT return SystemInformationType1
2632{
2633 var ASP_RSL_Unitdata rx_rsl_ud;
2634 var SystemInformationType1 last_si1;
2635
2636 timer T := 30.0;
2637 T.start;
2638 alt {
2639 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD((tr_RSL_NO_BCCH_INFO,
2640 tr_RSL_BCCH_INFO,
2641 tr_RSL_NO_SACCH_FILL,
2642 tr_RSL_SACCH_FILL))
2643 ) -> value rx_rsl_ud {
2644 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
2645 if (g_system_information[rsl_idx].si1 == omit) {
2646 repeat;
2647 }
2648 last_si1 := g_system_information[rsl_idx].si1;
2649 g_system_information[rsl_idx].si1 := omit;
2650 T.stop;
2651 }
Vadim Yanitskiy79ebd5e2021-01-04 00:12:55 +01002652 [] IPA_RSL[rsl_idx].receive { repeat; }
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002653 [] T.timeout { setverdict(fail, "Timeout receiving next SI1"); }
2654 }
2655 return last_si1;
2656}
2657
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002658/* verify ACC rotate feature */
2659testcase TC_si_acc_rotate() runs on test_CT {
2660 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002661 var SystemInformationType1 last_si1;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002662 var AccessControlClass acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002663 var uint8_t count;
2664 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2665
2666 f_init(0, guard_timeout := 60.0);
2667
2668 f_bts_0_cfg(BSCVTY, {"rach access-control-class 5 barred",
2669 "access-control-class-rotate 3",
2670 "access-control-class-rotate-quantum 1"});
2671
2672 /* Init and get first sysinfo */
2673 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2674
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002675 for (var integer i:= 0; i < 20; i := i + 1) {
2676 last_si1 := f_recv_next_si1(0);
2677 acc := last_si1.rach_control.acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002678 count := f_acc09_count_allowed(acc);
2679 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2680
2681 if (count != 3) {
2682 log("RSL: EXPECTED SI ACC len=3");
2683 setverdict(fail, "received SI does not match expectations");
2684 break;
2685 }
2686
2687 for (var integer j := 0; j < 10; j := j + 1) {
2688 if (acc[16 - 1 - j] == '0'B) { /* the list marks barred, we count allowed */
2689 times_allowed[j] := times_allowed[j] + 1;
2690 }
2691 }
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002692 }
2693
2694 for (var integer j := 0; j < 10; j := j + 1) {
2695 log("ACC", j, " allowed ", times_allowed[j], " times" );
2696 if (j != 5 and times_allowed[j] < 3) {
2697 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " < 1 times");
2698 } else if (j == 5 and times_allowed[j] > 0) {
2699 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " > 0 times");
2700 }
2701 }
2702
2703 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2704 "rach access-control-class 5 allowed"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002705 f_shutdown_helper();
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002706}
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002707
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002708/* verify ACC startup ramp+rotate feature */
2709testcase TC_si_acc_ramp_rotate() runs on test_CT {
2710 var template SystemInformationConfig sic := SystemInformationConfig_default;
2711 var SystemInformationType1 last_si1;
2712 var AccessControlClass acc;
2713 var ASP_RSL_Unitdata rx_rsl_ud;
2714 var uint8_t count;
2715 var uint8_t prev_count;
2716 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2717
2718 f_init(0, guard_timeout := 80.0);
2719
2720 f_bts_0_cfg(BSCVTY, {"rach access-control-class 4 barred",
2721 "access-control-class-rotate 0",
2722 "access-control-class-rotate-quantum 1",
2723 "access-control-class-ramping",
2724 "access-control-class-ramping-step-interval 5",
2725 "access-control-class-ramping-step-size 5"});
2726
2727 /* Init and get first sysinfo */
2728 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2729 last_si1 := g_system_information[0].si1;
2730 acc := last_si1.rach_control.acc;
2731 count := f_acc09_count_allowed(acc);
2732 /* Adm subset size was set to 0 above, so wait until all ACC are barred */
2733 while (count > 0) {
2734 last_si1 := f_recv_next_si1(0);
2735 acc := last_si1.rach_control.acc;
2736 count := f_acc09_count_allowed(acc);
2737 log("RSL: wait len()=0: GOT SI1 ACC len=", count, ": ", acc);
2738 }
2739
2740 /* Increase adm subset size, we should see ramping start up */
2741 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10"});
2742 prev_count := 0;
2743 while (true) {
2744 last_si1 := f_recv_next_si1(0);
2745 acc := last_si1.rach_control.acc;
2746 count := f_acc09_count_allowed(acc);
2747 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2748
2749 if (prev_count > count) {
2750 setverdict(fail, "ACC allowed count dropped while expecting grow: ", prev_count, " -> ", count);
2751 break;
2752 }
2753
2754 if (count == 9) {
2755 break; /* Maximum reached (10 - 1 perm barred), done here */
2756 }
2757
2758 prev_count := count;
2759 }
2760
2761 setverdict(pass);
2762
2763 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2764 "rach access-control-class 4 allowed",
2765 "no access-control-class-ramping"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002766 f_shutdown_helper();
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002767}
2768
Harald Welte4003d112017-12-09 22:35:39 +01002769testcase TC_ctrl_msc_connection_status() runs on test_CT {
2770 var charstring ctrl_resp;
2771
Harald Welte89d42e82017-12-17 16:42:41 +01002772 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002773
2774 /* See https://osmocom.org/issues/2729 */
2775 f_ctrl_get_exp(IPA_CTRL, "msc_connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002776 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01002777}
2778
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002779testcase TC_ctrl_msc0_connection_status() runs on test_CT {
2780 var charstring ctrl_resp;
2781
2782 f_init(1);
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002783
2784 f_ctrl_get_exp(IPA_CTRL, "msc.0.connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002785 f_shutdown_helper();
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002786}
2787
Neels Hofmeyr0bc470d2021-08-21 13:37:13 +02002788/* Verify correct stats on the number of configured and connected MSCs */
2789private function f_tc_stat_num_msc_connected_msc_connhdlr(integer expect_num_msc_connected) runs on MSC_ConnHdlr {
2790 g_pars := f_gen_test_hdlr_pars();
2791 var StatsDExpects expect := {
2792 { name := "TTCN3.bsc.0.num_msc.connected", mtype := "g", min := expect_num_msc_connected, max := expect_num_msc_connected },
2793 { name := "TTCN3.bsc.0.num_msc.total", mtype := "g", min := NUM_MSC, max := NUM_MSC }
2794 };
2795 f_statsd_expect(expect);
2796}
2797
2798private function f_tc_stat_num_msc_connected_test_ct(void_fn tc_fn, integer nr_msc) runs on test_CT
2799{
2800 var MSC_ConnHdlr vc_conn;
2801
2802 f_init(nr_bts := 1, handler_mode := true, nr_msc := nr_msc);
2803 f_sleep(1.0);
2804 vc_conn := f_start_handler(tc_fn);
2805 vc_conn.done;
2806
2807 /* Also verify stat exposed on CTRL interface */
2808 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:connected", int2str(nr_msc));
2809 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:total", int2str(NUM_MSC));
2810
2811 f_shutdown_helper();
2812}
2813
2814/* Verify that when 1 MSC is active, that num_msc:connected reports 1. */
2815private function f_tc_stat_num_msc_connected_1(charstring id) runs on MSC_ConnHdlr {
2816 f_tc_stat_num_msc_connected_msc_connhdlr(1);
2817}
2818testcase TC_stat_num_msc_connected_1() runs on test_CT {
2819 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_1), 1);
2820}
2821
2822/* Verify that when 2 MSCs are active, that num_msc:connected reports 2. */
2823private function f_tc_stat_num_msc_connected_2(charstring id) runs on MSC_ConnHdlr {
2824 f_tc_stat_num_msc_connected_msc_connhdlr(2);
2825}
2826testcase TC_stat_num_msc_connected_2() runs on test_CT {
2827 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_2), 2);
2828}
2829
2830/* Verify that when 3 MSCs are active, that num_msc:connected reports 3. */
2831private function f_tc_stat_num_msc_connected_3(charstring id) runs on MSC_ConnHdlr {
2832 f_tc_stat_num_msc_connected_msc_connhdlr(3);
2833}
2834testcase TC_stat_num_msc_connected_3() runs on test_CT {
2835 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_3), 3);
2836}
2837
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002838/* Verify correct stats on the number of configured and connected MSCs */
2839private function f_tc_stat_num_bts_connected_msc_connhdlr(integer expect_num_bts_connected) runs on MSC_ConnHdlr {
2840 g_pars := f_gen_test_hdlr_pars();
2841 var StatsDExpects expect := {
2842 { name := "TTCN3.bsc.0.num_bts.oml_connected", mtype := "g", min := expect_num_bts_connected, max := NUM_BTS_CFG },
2843 { name := "TTCN3.bsc.0.num_bts.all_trx_rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2844 { name := "TTCN3.bsc.0.num_bts.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG },
2845 { name := "TTCN3.bsc.0.num_trx.rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2846 { name := "TTCN3.bsc.0.num_trx.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG }
2847 };
2848 f_statsd_expect(expect);
2849}
2850
2851private function f_tc_stat_num_bts_connected_test_ct(void_fn tc_fn, integer nr_bts) runs on test_CT {
2852 var MSC_ConnHdlr vc_conn;
2853
2854 f_init(nr_bts := nr_bts, handler_mode := true, nr_msc := 1);
2855 f_sleep(1.0);
2856 vc_conn := f_start_handler(tc_fn);
2857 vc_conn.done;
2858
2859 /* Also verify stat exposed on CTRL interface */
2860 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:all_trx_rsl_connected", int2str(nr_bts));
2861 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:total", int2str(NUM_BTS_CFG));
2862 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:rsl_connected", int2str(nr_bts));
2863 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:total", int2str(NUM_BTS_CFG));
2864
Neels Hofmeyra41ae302021-09-06 22:06:02 +02002865 /* Verify rf_states exposed on CTRL interface */
2866 var charstring expect_net_rf_states := "";
2867 for (var integer i := 0; i < NUM_BTS_CFG; i := i + 1) {
2868 var charstring expect_bts_rf_states := int2str(i) & ",0,";
2869 if (i < NUM_BTS) {
2870 /* In these tests, OML for the first NUM_BTS are always connected via osmo-bts-omldummy */
2871 expect_bts_rf_states := expect_bts_rf_states & "operational,unlocked,";
2872 } else {
2873 /* For remaining i < NUM_BTS_CFG, OML is not connected, i.e. inoperational */
2874 expect_bts_rf_states := expect_bts_rf_states & "inoperational,locked,";
2875 }
2876 /* The RF policy is still global in osmo-bsc, i.e. always "on" */
2877 expect_bts_rf_states := expect_bts_rf_states & "on,";
2878 if (i < nr_bts) {
2879 /* For BTS where RSL is connected, the RSL state will be "up" */
2880 expect_bts_rf_states := expect_bts_rf_states & "rsl-up;";
2881 } else {
2882 expect_bts_rf_states := expect_bts_rf_states & "rsl-down;";
2883 }
2884
2885 f_ctrl_get_exp(IPA_CTRL, "bts." & int2str(i) & ".rf_states", expect_bts_rf_states);
2886 expect_net_rf_states := expect_net_rf_states & expect_bts_rf_states;
2887 }
2888 f_ctrl_get_exp(IPA_CTRL, "rf_states", expect_net_rf_states);
2889
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002890 f_shutdown_helper();
2891}
2892
2893/* Verify that when 1 BTS is connected, that num_{bts,trx}:*_connected reports 1. */
2894private function f_tc_stat_num_bts_connected_1(charstring id) runs on MSC_ConnHdlr {
2895 f_tc_stat_num_bts_connected_msc_connhdlr(1);
2896}
2897testcase TC_stat_num_bts_connected_1() runs on test_CT {
2898 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_1), 1);
2899}
2900
2901/* Verify that when 2 BTS is connected, that num_{bts,trx}:*_connected reports 2. */
2902private function f_tc_stat_num_bts_connected_2(charstring id) runs on MSC_ConnHdlr {
2903 f_tc_stat_num_bts_connected_msc_connhdlr(2);
2904}
2905testcase TC_stat_num_bts_connected_2() runs on test_CT {
2906 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_2), 2);
2907}
2908
2909/* Verify that when 3 BTS is connected, that num_{bts,trx}:*_connected reports 3. */
2910private function f_tc_stat_num_bts_connected_3(charstring id) runs on MSC_ConnHdlr {
2911 f_tc_stat_num_bts_connected_msc_connhdlr(3);
2912}
2913testcase TC_stat_num_bts_connected_3() runs on test_CT {
2914 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_3), 3);
2915}
2916
Harald Welte4003d112017-12-09 22:35:39 +01002917testcase TC_ctrl() runs on test_CT {
2918 var charstring ctrl_resp;
2919
Harald Welte89d42e82017-12-17 16:42:41 +01002920 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002921
2922 /* all below values must match the osmo-bsc.cfg config file used */
2923
Harald Welte6a129692018-03-17 17:30:14 +01002924 f_ctrl_get_exp(IPA_CTRL, "mcc", "001");
2925 f_ctrl_get_exp(IPA_CTRL, "mnc", "01");
Oliver Smith75aa0202019-08-19 14:17:50 +02002926 f_ctrl_get_exp(IPA_CTRL, "number-of-bts", "4");
Harald Welte4003d112017-12-09 22:35:39 +01002927
2928 var integer bts_nr := 0;
2929 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "location-area-code", "1");
2930 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "cell-identity", "0");
2931 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "oml-connection-state", "connected");
2932 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "gprs-mode", "gprs");
2933 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "rf_state", "operational,unlocked,on");
2934 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "arfcn", "871");
2935 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "max-power-reduction", "20");
2936
2937 var integer uptime := str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime"));
2938 f_sleep(2.0);
2939 if (str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime")) < uptime+1) {
2940 setverdict(fail, "oml-uptime not incrementing as expected");
2941 }
2942 /* TODO: Disconnect RSL, imply that OML is disconnected and check for uptime zero? */
2943
2944 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", 0);
2945
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002946 f_shutdown_helper();
Harald Welte96c94412017-12-09 03:12:45 +01002947}
2948
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002949/* Verify that Upon receival of SET "location", BSC forwards a TRAP
2950 "location-state" over the SCCPlite IPA conn */
2951testcase TC_ctrl_location() runs on test_CT {
2952 var MSC_ConnHdlr vc_conn;
2953 var integer bts_nr := 0;
2954
2955 f_init(1, true);
2956 f_sleep(1.0);
2957
2958 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234567,fix3d,0.340000,0.560000,0.780000");
2959 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2960 "1234567,fix3d,0.340000,0.560000,0.780000,operational,unlocked,on,001,01");
2961
2962 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "1");
2963 f_sleep(2.0);
2964
2965 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234888,fix3d,0.350000,0.570000,0.790000");
2966 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2967 "1234888,fix3d,0.350000,0.570000,0.790000,operational,locked,off,001,01");
2968
2969 /* should match the one from config */
2970 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "0");
2971
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002972 f_shutdown_helper();
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002973}
2974
Harald Welte6f521d82017-12-11 19:52:02 +01002975
2976/***********************************************************************
2977 * Paging Testing
2978 ***********************************************************************/
2979
2980type record Cell_Identity {
2981 GsmMcc mcc,
2982 GsmMnc mnc,
2983 GsmLac lac,
2984 GsmCellId ci
2985};
Harald Welte24135bd2018-03-17 19:27:53 +01002986private const Cell_Identity cid := { '001'H, '01'H, 1, 0 };
Stefan Sperling049a86e2018-03-20 15:51:00 +01002987private const Cell_Identity unknown_cid := { '678'H, 'f90'H, 1, 0 };
Harald Welte6f521d82017-12-11 19:52:02 +01002988
Harald Welte5d1a2202017-12-13 19:51:29 +01002989type set of integer BtsIdList;
2990
2991private function f_bts_in_list(integer bts_id, BtsIdList bts_ids) return boolean {
2992 for (var integer j := 0; j < sizeof(bts_ids); j := j + 1) {
2993 if (bts_id == bts_ids[j]) {
2994 return true;
2995 }
2996 }
2997 return false;
2998}
Harald Welte6f521d82017-12-11 19:52:02 +01002999
3000/* core paging test helper function; used by most paging test cases */
3001private function f_pageing_helper(hexstring imsi,
3002 template BSSMAP_FIELD_CellIdentificationList cid_list,
Harald Welte5d1a2202017-12-13 19:51:29 +01003003 BtsIdList bts_ids := { 0 },
Harald Welte6f521d82017-12-11 19:52:02 +01003004 template RSL_ChanNeeded rsl_chneed := omit,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003005 template (omit) OCT4 tmsi := omit) runs on test_CT
Harald Welte6f521d82017-12-11 19:52:02 +01003006{
3007 var template BSSMAP_IE_ChannelNeeded bssmap_chneed;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003008 var template MobileIdentityV mi;
Harald Welte6f521d82017-12-11 19:52:02 +01003009 var RSL_Message rx_rsl;
3010 var integer paging_group := hex2int(imsi[lengthof(imsi)-1]);
Harald Welte5d1a2202017-12-13 19:51:29 +01003011 var integer i;
Harald Welte6f521d82017-12-11 19:52:02 +01003012
3013 f_init();
Harald Welte6f521d82017-12-11 19:52:02 +01003014
3015 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Harald Weltec3068592018-03-17 19:55:31 +01003016 for (i := 0; i < NUM_BTS; i := i + 1) {
3017 IPA_RSL[i].clear;
Harald Welte5d1a2202017-12-13 19:51:29 +01003018 }
Harald Welte6f521d82017-12-11 19:52:02 +01003019
3020 if (isvalue(rsl_chneed)) {
3021 /* The values of 08.08 3.2.2.36 and 08.58 9.3.40 are luckily identical */
3022 bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
3023 } else {
3024 bssmap_chneed := omit;
3025 }
3026
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003027 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own,
3028 ts_BSSMAP_Paging(imsi, cid_list, tmsi, bssmap_chneed)));
Harald Welte6f521d82017-12-11 19:52:02 +01003029
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003030 if (not istemplatekind(tmsi, "omit")) {
3031 mi := t_MI_TMSI(tmsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003032 } else {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003033 mi := tr_MI_IMSI(imsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003034 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003035
Harald Welte5d1a2202017-12-13 19:51:29 +01003036 for (i := 0; i < sizeof(bts_ids); i := i + 1) {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003037 rx_rsl := f_exp_ipa_rx(bts_ids[i], tr_RSL_PAGING_CMD(mi));
Harald Welte5d1a2202017-12-13 19:51:29 +01003038 /* check channel type, paging group */
3039 if (rx_rsl.ies[1].body.paging_group != paging_group) {
3040 setverdict(fail, "Paging for wrong paging group");
3041 }
3042 if (ispresent(rsl_chneed) and
3043 rx_rsl.ies[3].body.chan_needed.chan_needed != valueof(rsl_chneed)) {
3044 setverdict(fail, "RSL Channel Needed != BSSMAP Channel Needed");
3045 }
Harald Welte6f521d82017-12-11 19:52:02 +01003046 }
Harald Welte2fccd982018-01-31 15:48:19 +01003047 f_sleep(2.0);
Harald Welte5d1a2202017-12-13 19:51:29 +01003048 /* do a quick check on all not-included BTSs if they received paging */
3049 for (i := 0; i < NUM_BTS; i := i + 1) {
3050 timer T := 0.1;
3051 if (f_bts_in_list(i, bts_ids)) {
3052 continue;
3053 }
3054 T.start;
3055 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003056 [] IPA_RSL[i].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(mi))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003057 setverdict(fail, "Paging on BTS ", i, " which is not part of ", bts_ids);
3058 }
3059 [] IPA_RSL[i].receive { repeat; }
3060 [] T.timeout { }
3061 }
Harald Welte6f521d82017-12-11 19:52:02 +01003062 }
3063
3064 setverdict(pass);
3065}
3066
Harald Welte5d1a2202017-12-13 19:51:29 +01003067const BtsIdList c_BtsId_all := { 0, 1, 2 };
Harald Welte751d3eb2018-01-31 15:51:06 +01003068const BtsIdList c_BtsId_none := { };
Harald Welte5d1a2202017-12-13 19:51:29 +01003069const BtsIdList c_BtsId_LAC1 := { 0, 1 };
3070const BtsIdList c_BtsId_LAC2 := { 2 };
3071
Harald Welte6f521d82017-12-11 19:52:02 +01003072/* PAGING by IMSI + TMSI */
3073testcase TC_paging_imsi_nochan() runs on test_CT {
3074 var BSSMAP_FIELD_CellIdentificationList cid_list;
3075 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Philipp Maier8c04b0a2018-02-23 13:48:48 +01003076 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, omit);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003077 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003078}
3079
3080/* PAGING by IMSI + TMSI */
3081testcase TC_paging_tmsi_nochan() runs on test_CT {
3082 var BSSMAP_FIELD_CellIdentificationList cid_list;
3083 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003084 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, 'A1B2C301'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003085 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003086}
3087
3088/* Paging with different "channel needed' values */
3089testcase TC_paging_tmsi_any() runs on test_CT {
3090 var BSSMAP_FIELD_CellIdentificationList cid_list;
3091 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003092 f_pageing_helper('001010100000002'H, cid_list, c_BtsId_all, RSL_CHANNEED_ANY, 'A1B2C302'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003093 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003094}
3095testcase TC_paging_tmsi_sdcch() runs on test_CT {
3096 var BSSMAP_FIELD_CellIdentificationList cid_list;
3097 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003098 f_pageing_helper('001010100000003'H, cid_list, c_BtsId_all, RSL_CHANNEED_SDCCH, 'A1B2C303'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003099 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003100}
3101testcase TC_paging_tmsi_tch_f() runs on test_CT {
3102 var BSSMAP_FIELD_CellIdentificationList cid_list;
3103 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003104 f_pageing_helper('001010000000004'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_F, 'A1B2C304'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003105 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003106}
3107testcase TC_paging_tmsi_tch_hf() runs on test_CT {
3108 var BSSMAP_FIELD_CellIdentificationList cid_list;
3109 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003110 f_pageing_helper('001010000000005'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_ForH, 'A1B2C305'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003111 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003112}
3113
3114/* Paging by CGI */
3115testcase TC_paging_imsi_nochan_cgi() runs on test_CT {
3116 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3117 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(cid.mcc, cid.mnc, cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003118 f_pageing_helper('001010000000006'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003119 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003120}
3121
3122/* Paging by LAC+CI */
3123testcase TC_paging_imsi_nochan_lac_ci() runs on test_CT {
3124 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3125 cid_list := { cIl_LAC_CI := { ts_BSSMAP_CI_LAC_CI(cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003126 f_pageing_helper('001010000000007'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003127 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003128}
3129
3130/* Paging by CI */
3131testcase TC_paging_imsi_nochan_ci() runs on test_CT {
3132 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3133 cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003134 f_pageing_helper('001010000000008'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003135 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003136}
3137
3138/* Paging by LAI */
3139testcase TC_paging_imsi_nochan_lai() runs on test_CT {
3140 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3141 cid_list := { cIl_LAI := { ts_BSSMAP_CI_LAI(cid.mcc, cid.mnc, cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003142 f_pageing_helper('001010000000009'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003143 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003144}
3145
3146/* Paging by LAC */
3147testcase TC_paging_imsi_nochan_lac() runs on test_CT {
3148 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3149 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003150 f_pageing_helper('001010000000010'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003151 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003152}
3153
3154/* Paging by "all in BSS" */
3155testcase TC_paging_imsi_nochan_all() runs on test_CT {
3156 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3157 cid_list := { cIl_allInBSS := ''O };
Harald Welte5d1a2202017-12-13 19:51:29 +01003158 f_pageing_helper('001010000000011'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003159 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003160}
3161
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003162/* Paging by PLMN+LAC+RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003163testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
3164 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3165 cid_list := { cIl_PLMN_LAC_RNC := { ts_BSSMAP_CI_PLMN_LAC_RNC(cid.mcc, cid.mnc, cid.lac, 12) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003166 f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003167 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003168}
Harald Welte6f521d82017-12-11 19:52:02 +01003169
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003170/* Paging by RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003171testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
3172 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3173 cid_list := { cIl_RNC := { int2oct(13, 2) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003174 f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003175 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003176}
3177
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003178/* Paging by LAC+RNC; We do not implement; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003179testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
3180 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3181 cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003182 f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003183 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003184}
3185
Harald Welte6f521d82017-12-11 19:52:02 +01003186/* Paging on multiple cells (multiple entries in list): Verify all of them page */
Harald Welte751d3eb2018-01-31 15:51:06 +01003187testcase TC_paging_imsi_nochan_lacs() runs on test_CT {
3188 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3189 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(1), ts_BSSMAP_CI_LAC(2) } };
3190 f_pageing_helper('001010000000015'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003191 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003192}
3193
3194/* Paging on empty list: Verify none of them page */
3195testcase TC_paging_imsi_nochan_lacs_empty() runs on test_CT {
3196 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3197 cid_list := { cIl_LAC := { } };
3198 f_pageing_helper('001010000000016'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003199 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003200}
3201
Stefan Sperling049a86e2018-03-20 15:51:00 +01003202/* Paging by CGI with unknown MCC/MNC: Verify nothing is paged. */
3203testcase TC_paging_imsi_nochan_cgi_unknown_cid() runs on test_CT {
3204 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3205 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(unknown_cid.mcc, unknown_cid.mnc, unknown_cid.lac, unknown_cid.ci) } };
3206 f_pageing_helper('001010000000006'H, cid_list, c_BtsId_none);
3207 f_shutdown_helper();
3208}
3209
Harald Welte6f521d82017-12-11 19:52:02 +01003210/* Verify paging retransmission interval + count */
3211/* Verify paging stops after channel establishment */
Harald Welte6f521d82017-12-11 19:52:02 +01003212/* Test behavior under paging overload */
Harald Welteae026692017-12-09 01:03:01 +01003213
Harald Weltee65d40e2017-12-13 00:09:06 +01003214/* Verify PCH load */
3215testcase TC_paging_imsi_load() runs on test_CT {
3216 var BSSMAP_FIELD_CellIdentificationList cid_list;
3217 timer T := 4.0;
Harald Welte2caa1062018-03-17 18:19:05 +01003218 timer T_retrans := 1.0;
Harald Weltee65d40e2017-12-13 00:09:06 +01003219 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003220 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Weltee65d40e2017-12-13 00:09:06 +01003221
3222 /* tell BSC there is no paging space anymore */
3223 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
Harald Welte3b57ab52018-03-17 18:01:10 +01003224 f_sleep(0.2);
3225 IPA_RSL[0].clear;
Harald Weltee65d40e2017-12-13 00:09:06 +01003226
3227 /* Wait for 4 seconds if any more PAGING CMD are received on RSL. Normally,
3228 * there would be 8 retransmissions during 4 seconds */
3229 T.start;
Harald Welte2caa1062018-03-17 18:19:05 +01003230 T_retrans.start;
Harald Weltee65d40e2017-12-13 00:09:06 +01003231 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003232 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Weltee65d40e2017-12-13 00:09:06 +01003233 setverdict(fail, "Received PAGING after LOAD_IND(0)");
Daniel Willmannafce8662018-07-06 23:11:32 +02003234 mtc.stop;
Harald Weltee65d40e2017-12-13 00:09:06 +01003235 }
Harald Welte2caa1062018-03-17 18:19:05 +01003236 [] T_retrans.timeout {
3237 /* re-trnsmit the zero-space LOAD IND to avoid BSC 'auto credit' */
3238 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
3239 T_retrans.start;
3240 repeat;
3241 }
Harald Weltee65d40e2017-12-13 00:09:06 +01003242 [] T.timeout {
3243 setverdict(pass);
3244 }
3245 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003246
3247 f_shutdown_helper();
Harald Weltee65d40e2017-12-13 00:09:06 +01003248}
3249
Harald Welte235ebf12017-12-15 14:18:16 +01003250/* Verify Paging Counter */
Harald Welte1ff69992017-12-14 12:31:17 +01003251testcase TC_paging_counter() runs on test_CT {
3252 var BSSMAP_FIELD_CellIdentificationList cid_list;
3253 timer T := 4.0;
3254 var integer i;
3255 var integer paging_attempted_bsc;
3256 var integer paging_attempted_bts[NUM_BTS];
3257 var integer paging_expired_bts[NUM_BTS];
3258 cid_list := valueof(ts_BSSMAP_CIL_noCell);
3259
3260 f_init();
3261
3262 /* read counters before paging */
3263 paging_attempted_bsc := f_ctrl_get_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted");
3264 for (i := 0; i < NUM_BTS; i := i+1) {
3265 paging_attempted_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted");
3266 paging_expired_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired");
3267 }
3268
3269 f_pageing_helper('001230000000001'H, cid_list, c_BtsId_all);
3270
3271 /* expect the attempted pages on BSC and each BTSs to have incremented by one */
3272 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", paging_attempted_bsc+1);
3273 for (i := 0; i < NUM_BTS; i := i+1) {
3274 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted",
3275 paging_attempted_bts[i]+1);
3276 }
3277
3278 /* assume that 12s later the paging on all BTSs have expired and hence incremented by 1 */
3279 f_sleep(12.0);
3280 for (i := 0; i < NUM_BTS; i := i+1) {
3281 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired",
3282 paging_expired_bts[i]+1);
3283 }
Harald Welte1ff69992017-12-14 12:31:17 +01003284
Philipp Maier282ca4b2018-02-27 17:17:00 +01003285 f_shutdown_helper();
Harald Welte1ff69992017-12-14 12:31:17 +01003286}
3287
3288
Harald Welte10985002017-12-12 09:29:15 +01003289/* Verify paging stops after A-RESET */
3290testcase TC_paging_imsi_a_reset() runs on test_CT {
3291 var BSSMAP_FIELD_CellIdentificationList cid_list;
3292 timer T := 3.0;
3293 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003294 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Welte10985002017-12-12 09:29:15 +01003295
3296 /* Perform a BSSMAP Reset and wait for ACK */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003297 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte10985002017-12-12 09:29:15 +01003298 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003299 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte10985002017-12-12 09:29:15 +01003300 [] BSSAP.receive { repeat; }
3301 }
3302
Daniel Willmanncbef3982018-07-30 09:22:40 +02003303 /* Wait to avoid a possible race condition if a paging message is
3304 * received right before the reset ACK. */
3305 f_sleep(0.2);
3306
Harald Welte10985002017-12-12 09:29:15 +01003307 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Philipp Maier1e6b4422018-02-23 14:02:13 +01003308 for (var integer i := 0; i < sizeof(IPA_RSL); i := i+1) {
3309 IPA_RSL[i].clear;
3310 }
Harald Welte10985002017-12-12 09:29:15 +01003311
3312 /* Wait for 3 seconds if any more PAGING CMD are received on RSL */
3313 T.start;
3314 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003315 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte10985002017-12-12 09:29:15 +01003316 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003317 mtc.stop;
Harald Welte10985002017-12-12 09:29:15 +01003318 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003319 [] IPA_RSL[1].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003320 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003321 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003322 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003323 [] IPA_RSL[2].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003324 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003325 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003326 }
Harald Welte10985002017-12-12 09:29:15 +01003327 [] T.timeout {
3328 setverdict(pass);
3329 }
3330 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003331
3332 f_shutdown_helper();
Harald Welte10985002017-12-12 09:29:15 +01003333}
Harald Welteae026692017-12-09 01:03:01 +01003334
Philipp Maierf45824a2019-08-14 14:44:10 +02003335/* Verify how we handle unsolicited Paging Response. In case of an unsolicit
3336 * paging response we can not know which MSC is in charge, so we will blindly
3337 * pick the first configured MSC. This behavior is required in order to make
3338 * MT-CSFB calls working because in those cases the BSC can not know that the
3339 * MSC has already paged the subscriver via SGs. So any MT-CSFB call will look
3340 * like an unsolicited Paging Response to the MSC.
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003341 */
3342testcase TC_paging_resp_unsol() runs on test_CT {
3343
3344 f_init(1);
Philipp Maierf45824a2019-08-14 14:44:10 +02003345 timer T := 5.0;
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003346
3347 var BSSAP_N_CONNECT_ind rx_c_ind;
3348 var DchanTuple dt;
3349 var PDU_ML3_MS_NW l3 := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010008880018'H))));
Philipp Maierf45824a2019-08-14 14:44:10 +02003350 var octetstring rr_pag_resp := enc_PDU_ML3_MS_NW(l3);
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003351
3352 /* Send CHAN RQD and wait for allocation; acknowledge it */
3353 dt.rsl_chan_nr := f_chreq_act_ack();
3354
3355 /* Send unsolicited Paging response (no matching Paging CMD stored in BSC) */
3356 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), enc_PDU_ML3_MS_NW(l3)));
3357
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003358
Philipp Maierf45824a2019-08-14 14:44:10 +02003359 /* Expevct a CR with a matching Paging response on the A-Interface */
3360 T.start;
3361 alt {
3362 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(rr_pag_resp))) {
3363 setverdict(pass);
3364 }
3365 [] BSSAP.receive {
3366 setverdict(fail, "Received unexpected message on A-Interface!");
3367 }
3368 [] T.timeout {
3369 setverdict(fail, "Received nothing on A-Interface!");
3370 }
3371 }
3372
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003373 f_shutdown_helper();
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003374}
3375
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003376/* Test RSL link drop causes counter increment */
3377testcase TC_rsl_drop_counter() runs on test_CT {
3378 var integer rsl_fail;
3379
Harald Welte89d42e82017-12-17 16:42:41 +01003380 f_init(1);
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003381
3382 rsl_fail := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail");
3383
3384 bts[0].rsl.vc_IPA.stop;
3385
3386 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail", rsl_fail+1);
3387
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003388 f_shutdown_helper();
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003389}
3390
3391/* TODO: Test OML link drop causes counter increment */
3392
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003393/* The body of TC_rsl_unknown_unit_id() and TC_oml_unknown_unit_id() tests. */
3394function f_ipa_unknown_unit_id(integer mp_bsc_ipa_port) runs on test_CT return boolean {
3395 timer T := 10.0;
3396
3397 bts[0].rsl.id := "IPA-0-RSL";
3398 bts[0].rsl.vc_IPA := IPA_Emulation_CT.create(bts[0].rsl.id & "-IPA");
3399 bts[0].rsl.ccm_pars := c_IPA_default_ccm_pars;
3400 bts[0].rsl.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
Oliver Smith92c2bdb2019-08-20 15:11:24 +02003401 bts[0].rsl.ccm_pars.unit_id := "99/0/0"; /* value which is unknown at BTS */
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003402
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01003403 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003404
3405 f_init_mgcp("VirtMSC");
3406
3407 /* start RSL/OML connection (XXX re-uses RSL port/protocol definitions for OML) */
3408 map(bts[0].rsl.vc_IPA:IPA_PORT, system:IPA);
3409 connect(bts[0].rsl.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[0]);
3410 bts[0].rsl.vc_IPA.start(IPA_Emulation.main_client(mp_bsc_ip, mp_bsc_ipa_port, "", 10000, bts[0].rsl.ccm_pars));
3411
3412 /* wait for IPA OML link to connect and then disconnect */
3413 T.start;
3414 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07003415 [] IPA_RSL[0].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003416 T.stop;
3417 return true;
3418 }
3419 [] IPA_RSL[0].receive { repeat }
3420 [] T.timeout {
Daniel Willmannafce8662018-07-06 23:11:32 +02003421 return false;
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003422 }
3423 }
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003424 return false;
3425}
3426
3427/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3428testcase TC_rsl_unknown_unit_id() runs on test_CT {
3429 if (f_ipa_unknown_unit_id(mp_bsc_rsl_port)) {
3430 setverdict(pass);
3431 } else {
3432 setverdict(fail, "Timeout RSL waiting for connection to close");
3433 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003434 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003435}
3436
3437
3438/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3439testcase TC_oml_unknown_unit_id() runs on test_CT {
3440 if (f_ipa_unknown_unit_id(mp_bsc_oml_port)) {
3441 setverdict(pass);
3442 } else {
3443 setverdict(fail, "Timeout OML waiting for connection to close");
3444 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003445 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003446}
3447
3448
Harald Weltec1a2fff2017-12-17 11:06:19 +01003449/***********************************************************************
Harald Welte6811d102019-04-14 22:23:14 +02003450 * "New world" test cases using RSL_Emulation + RAN_Emulation
Harald Weltec1a2fff2017-12-17 11:06:19 +01003451 ***********************************************************************/
3452
Harald Welte6811d102019-04-14 22:23:14 +02003453import from RAN_Emulation all;
Harald Welte47cd0e32020-08-21 12:39:11 +02003454import from BSSAP_LE_Emulation all;
Harald Weltec1a2fff2017-12-17 11:06:19 +01003455import from RSL_Emulation all;
3456import from MSC_ConnectionHandler all;
3457
3458type function void_fn(charstring id) runs on MSC_ConnHdlr;
3459
Harald Welte336820c2018-05-31 20:34:52 +02003460/* helper function to create and connect a MSC_ConnHdlr component */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003461private function f_connect_handler(inout MSC_ConnHdlr vc_conn, integer bssap_idx := 0) runs on test_CT {
3462 connect(vc_conn:RAN, g_bssap[bssap_idx].vc_RAN:PROC);
Daniel Willmann191e0d92018-01-17 12:44:35 +01003463 connect(vc_conn:MGCP_PROC, vc_MGCP:MGCP_PROC);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003464 connect(vc_conn:RSL, bts[0].rsl.vc_RSL:CLIENT_PT);
Harald Weltef70df652018-01-29 22:00:23 +01003465 connect(vc_conn:RSL_PROC, bts[0].rsl.vc_RSL:RSL_PROC);
Philipp Maier88f4ae82018-03-01 14:00:58 +01003466 if (isvalue(bts[1])) {
Philipp Maier956a92f2018-02-16 10:58:07 +01003467 connect(vc_conn:RSL1, bts[1].rsl.vc_RSL:CLIENT_PT);
3468 connect(vc_conn:RSL1_PROC, bts[1].rsl.vc_RSL:RSL_PROC);
3469 }
Neels Hofmeyr91401012019-07-11 00:42:35 +02003470 if (isvalue(bts[2])) {
3471 connect(vc_conn:RSL2, bts[2].rsl.vc_RSL:CLIENT_PT);
3472 connect(vc_conn:RSL2_PROC, bts[2].rsl.vc_RSL:RSL_PROC);
3473 }
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003474 connect(vc_conn:BSSAP, g_bssap[bssap_idx].vc_RAN:CLIENT);
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02003475 if (mp_enable_lcs_tests) {
3476 connect(vc_conn:BSSAP_LE, g_bssap_le.vc_BSSAP_LE:CLIENT);
3477 connect(vc_conn:BSSAP_LE_PROC, g_bssap_le.vc_BSSAP_LE:PROC);
3478 }
Daniel Willmann191e0d92018-01-17 12:44:35 +01003479 connect(vc_conn:MGCP, vc_MGCP:MGCP_CLIENT);
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02003480 connect(vc_conn:MGCP_MULTI, vc_MGCP:MGCP_CLIENT_MULTI);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003481 connect(vc_conn:STATSD_PROC, vc_STATSD:STATSD_PROC);
Harald Welte336820c2018-05-31 20:34:52 +02003482}
3483
Neels Hofmeyrda436782021-07-20 22:09:06 +02003484function f_start_handler_create(template (omit) TestHdlrParams pars := omit)
Harald Welte336820c2018-05-31 20:34:52 +02003485runs on test_CT return MSC_ConnHdlr {
3486 var charstring id := testcasename();
3487 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003488 var integer bssap_idx := 0;
3489 if (isvalue(pars)) {
3490 bssap_idx := valueof(pars).mscpool.bssap_idx;
3491 }
Harald Welte336820c2018-05-31 20:34:52 +02003492 vc_conn := MSC_ConnHdlr.create(id);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003493 f_connect_handler(vc_conn, bssap_idx);
Neels Hofmeyrda436782021-07-20 22:09:06 +02003494 return vc_conn;
3495}
3496
3497function f_start_handler_run(MSC_ConnHdlr vc_conn, void_fn fn, template (omit) TestHdlrParams pars := omit)
3498runs on test_CT return MSC_ConnHdlr {
3499 var charstring id := testcasename();
Neels Hofmeyr1708d1b2020-10-10 16:56:48 +02003500 /* Emit a marker to appear in the SUT's own logging output */
Neels Hofmeyrda436782021-07-20 22:09:06 +02003501 f_logp(BSCVTY, id & "() start");
Harald Weltea0630032018-03-20 21:09:55 +01003502 vc_conn.start(f_handler_init(fn, id, pars));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003503 return vc_conn;
3504}
3505
Neels Hofmeyrda436782021-07-20 22:09:06 +02003506function f_start_handler(void_fn fn, template (omit) TestHdlrParams pars := omit)
3507runs on test_CT return MSC_ConnHdlr {
3508 return f_start_handler_run(f_start_handler_create(pars), fn, pars);
3509}
3510
Harald Weltea0630032018-03-20 21:09:55 +01003511/* first function inside ConnHdlr component; sets g_pars + starts function */
3512private function f_handler_init(void_fn fn, charstring id, template (omit) TestHdlrParams pars := omit)
3513runs on MSC_ConnHdlr {
3514 if (isvalue(pars)) {
3515 g_pars := valueof(pars);
3516 }
3517 fn.apply(id);
3518}
3519
Oliver Smith26a3db72021-07-09 13:51:29 +02003520private function f_vty_encryption_a5(charstring options) runs on test_CT {
3521 f_vty_transceive(BSCVTY, "configure terminal");
3522 f_vty_transceive(BSCVTY, "network");
3523 f_vty_transceive(BSCVTY, "encryption a5 " & options);
3524 f_vty_transceive(BSCVTY, "exit");
3525 f_vty_transceive(BSCVTY, "exit");
3526}
3527
3528private function f_vty_encryption_a5_reset() runs on test_CT {
3529 /* keep in sync with docker-playground.git ttcn3-bsc-test/osmo-bsc.cfg */
3530 f_vty_encryption_a5("0 1 3");
3531}
3532
Harald Welte3c86ea02018-05-10 22:28:05 +02003533/* Establish signalling channel (non-assignment case) followed by cipher mode */
3534private function f_tc_ciph_mode_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003535 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3536 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte3c86ea02018-05-10 22:28:05 +02003537 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Philipp Maier23000732018-05-18 11:25:37 +02003538 ass_cmd.pdu.bssmap.assignmentRequest.circuitIdentityCode := omit;
3539 ass_cmd.pdu.bssmap.assignmentRequest.aoIPTransportLayer := omit;
3540 exp_compl.pdu.bssmap.assignmentComplete.circuitIdentityCode := omit;
3541 exp_compl.pdu.bssmap.assignmentComplete.aoIPTransportLayer := omit;
Harald Welte3c86ea02018-05-10 22:28:05 +02003542
Philipp Maier23000732018-05-18 11:25:37 +02003543 f_establish_fully(ass_cmd, exp_compl);
Harald Welte3c86ea02018-05-10 22:28:05 +02003544}
3545testcase TC_ciph_mode_a5_0() runs on test_CT {
3546 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003547 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003548 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
3549
3550 f_init(1, true);
3551 f_sleep(1.0);
3552 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3553 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003554 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003555}
3556testcase TC_ciph_mode_a5_1() runs on test_CT {
3557 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003558 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003559 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
3560
3561 f_init(1, true);
3562 f_sleep(1.0);
3563 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3564 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003565 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003566}
Oliver Smith50b98122021-07-09 15:00:28 +02003567/* OS#4975: verify that A5/2 is preferred over A5/0 */
3568testcase TC_ciph_mode_a5_2_0() runs on test_CT {
3569 var MSC_ConnHdlr vc_conn;
3570 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3571
3572 pars.encr := valueof(t_EncrParams('05'O, f_rnd_octstring(8))); /* A5/0 and A5/2 (0x01|0x04)*/
3573 pars.encr_exp_enc_alg := '04'O; /* A5/2 */
3574
3575 f_init(1, true);
3576 f_vty_encryption_a5("0 1 2 3");
3577 f_sleep(1.0);
3578 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3579 vc_conn.done;
3580 f_vty_encryption_a5_reset();
3581 f_shutdown_helper();
3582}
Oliver Smith1dff88d2021-07-09 08:45:51 +02003583/* OS#4975: verify that A5/1 is preferred over A5/2 */
3584testcase TC_ciph_mode_a5_2_1() runs on test_CT {
3585 var MSC_ConnHdlr vc_conn;
3586 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3587
3588 pars.encr := valueof(t_EncrParams('06'O, f_rnd_octstring(8))); /* A5/1 and A5/2 (0x02|0x04)*/
3589 pars.encr_exp_enc_alg := '02'O; /* A5/1 */
3590
3591 f_init(1, true);
3592 f_vty_encryption_a5("1 2");
3593 f_sleep(1.0);
3594 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3595 vc_conn.done;
3596 f_vty_encryption_a5_reset();
3597 f_shutdown_helper();
3598}
Harald Welte3c86ea02018-05-10 22:28:05 +02003599testcase TC_ciph_mode_a5_3() runs on test_CT {
3600 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003601 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003602 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
3603
3604 f_init(1, true);
3605 f_sleep(1.0);
3606 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3607 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003608 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003609}
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003610/* Establish a Signalling channel with A5/4 encryption. */
3611testcase TC_ciph_mode_a5_4() runs on test_CT {
3612 var MSC_ConnHdlr vc_conn;
3613 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3614 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Harald Welte3c86ea02018-05-10 22:28:05 +02003615
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003616 f_init(1, true);
Oliver Smith26a3db72021-07-09 13:51:29 +02003617 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003618 f_sleep(1.0);
3619 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3620 vc_conn.done;
Oliver Smith26a3db72021-07-09 13:51:29 +02003621 f_vty_encryption_a5_reset();
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003622 f_shutdown_helper();
3623}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003624/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
3625private function f_tc_assignment_aoip_tla_v6(charstring id) runs on MSC_ConnHdlr {
3626 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3627 var PDU_BSSAP ass_cmd := f_gen_ass_req(aoip_tla := "::3");
3628 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3629 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3630
3631 f_establish_fully(ass_cmd, exp_compl);
3632}
3633testcase TC_assignment_aoip_tla_v6() runs on test_CT {
3634 var MSC_ConnHdlr vc_conn;
3635 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3636
3637 f_init(1, true);
3638 f_sleep(1.0);
3639 vc_conn := f_start_handler(refers(f_tc_assignment_aoip_tla_v6), pars);
3640 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003641 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003642}
3643
Harald Welte3c86ea02018-05-10 22:28:05 +02003644
3645/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
Harald Welte651fcdc2018-05-10 20:23:16 +02003646private function f_tc_assignment_fr_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003647 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3648 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003649
Harald Welte552620d2017-12-16 23:21:36 +01003650 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3651 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte73cd2712017-12-17 00:44:52 +01003652
Harald Weltea0630032018-03-20 21:09:55 +01003653 f_establish_fully(ass_cmd, exp_compl);
Harald Welte552620d2017-12-16 23:21:36 +01003654}
Harald Welte552620d2017-12-16 23:21:36 +01003655testcase TC_assignment_fr_a5_0() runs on test_CT {
3656 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003657 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003658 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
Harald Welte552620d2017-12-16 23:21:36 +01003659
Harald Welte89d42e82017-12-17 16:42:41 +01003660 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003661 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003662 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003663 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003664 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003665}
Harald Welte552620d2017-12-16 23:21:36 +01003666testcase TC_assignment_fr_a5_1() runs on test_CT {
Harald Weltec1a2fff2017-12-17 11:06:19 +01003667 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003668 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003669 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003670
Harald Welte89d42e82017-12-17 16:42:41 +01003671 f_init(1, true);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003672 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003673 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3674 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003675 f_shutdown_helper();
Harald Welte651fcdc2018-05-10 20:23:16 +02003676}
3677testcase TC_assignment_fr_a5_3() runs on test_CT {
3678 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003679 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003680 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003681
Harald Welte651fcdc2018-05-10 20:23:16 +02003682 f_init(1, true);
3683 f_sleep(1.0);
3684 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003685 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003686 f_shutdown_helper();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003687}
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003688/* Establish a Signalling channel and re-assign to TCH/F with A5/4 encryption. */
3689testcase TC_assignment_fr_a5_4() runs on test_CT {
3690 var MSC_ConnHdlr vc_conn;
3691 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3692 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
3693
3694 f_init(1, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02003695 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003696 f_sleep(1.0);
3697 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3698 vc_conn.done;
Oliver Smith7eabd312021-07-12 14:18:56 +02003699 f_vty_encryption_a5_reset();
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003700 f_shutdown_helper();
3701}
Harald Weltec1a2fff2017-12-17 11:06:19 +01003702
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +02003703/* Allow only A5/4, but omit the Kc128 IE from MSC's msg. Expect Cipher Mode Reject. */
3704testcase TC_assignment_fr_a5_4_fail() runs on test_CT {
3705 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3706 var MSC_ConnHdlr vc_conn;
3707
3708 f_init(1, true);
3709 f_sleep(1.0);
3710
3711 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8))); // A5/4 support, but Kc128 missing!
3712 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
3713 vc_conn.done;
3714 f_shutdown_helper();
3715}
3716
Harald Welte552620d2017-12-16 23:21:36 +01003717/* Expect ASSIGNMENT FAIL if mandatory IE is missing */
3718private function f_tc_assignment_fr_a5_1_codec_missing(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003719 g_pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003720 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02003721 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003722
3723 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02003724 /* Omit: ass_cmd.pdu.bssmap.assignmentRequest.codecList */
3725
Harald Weltea0630032018-03-20 21:09:55 +01003726 f_establish_fully(ass_cmd, exp_fail);
Harald Welte552620d2017-12-16 23:21:36 +01003727}
Harald Welte552620d2017-12-16 23:21:36 +01003728testcase TC_assignment_fr_a5_1_codec_missing() runs on test_CT {
3729 var MSC_ConnHdlr vc_conn;
3730
Harald Welte89d42e82017-12-17 16:42:41 +01003731 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003732 f_sleep(1.0);
3733
Harald Welte8863fa12018-05-10 20:15:27 +02003734 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5_1_codec_missing));
Harald Welte552620d2017-12-16 23:21:36 +01003735 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003736 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003737}
3738
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003739private function f_TC_assignment_a5_not_sup(charstring id) runs on MSC_ConnHdlr {
3740 var template PDU_BSSAP exp_ass_cpl := f_gen_exp_compl();
3741 var PDU_BSSAP exp_ass_req := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003742
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003743 exp_ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3744 exp_ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3745
3746 /* this is like the beginning of f_establish_fully(), but only up to ciphering reject */
3747
3748 var BSSMAP_FIELD_CodecType codecType;
3749 timer T := 10.0;
3750
3751 codecType := exp_ass_req.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType;
3752 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
3753
3754 f_create_chan_and_exp();
3755 /* we should now have a COMPL_L3 at the MSC */
3756
3757 var template PDU_BSSAP exp_l3_compl;
3758 exp_l3_compl := tr_BSSMAP_ComplL3()
3759 if (g_pars.aoip == false) {
3760 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
3761 } else {
3762 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
3763 }
3764 T.start;
3765 alt {
3766 [] BSSAP.receive(exp_l3_compl);
3767 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
3768 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
3769 }
3770 [] T.timeout {
3771 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
3772 }
3773 }
3774
3775 /* Start ciphering, expect Cipher Mode Reject */
Neels Hofmeyr6c388f22021-06-11 02:36:56 +02003776 f_cipher_mode(g_pars.encr, exp_fail := true);
Harald Welte552620d2017-12-16 23:21:36 +01003777}
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003778testcase TC_assignment_fr_a5_not_sup() runs on test_CT {
3779 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003780 var MSC_ConnHdlr vc_conn;
3781
Harald Welte89d42e82017-12-17 16:42:41 +01003782 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003783 f_sleep(1.0);
3784
Neels Hofmeyr0588cad2021-06-11 01:38:18 +02003785 pars.encr := valueof(t_EncrParams('20'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003786 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003787 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003788 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003789}
3790
3791
Harald Welte4532e0a2017-12-23 02:05:44 +01003792private function f_tc_assignment_sign(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003793 g_pars := f_gen_test_hdlr_pars();
Harald Welte4532e0a2017-12-23 02:05:44 +01003794 var template PDU_BSSAP exp_compl := tr_BSSMAP_AssignmentComplete(omit, omit);
Philipp Maier48604732018-10-09 15:00:37 +02003795 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte4532e0a2017-12-23 02:05:44 +01003796 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003797
3798 f_statsd_reset();
Harald Weltea0630032018-03-20 21:09:55 +01003799 f_establish_fully(ass_cmd, exp_compl);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003800
3801 var StatsDExpects expect := {
Daniel Willmannc5398f72020-09-21 10:41:35 +02003802 { name := "TTCN3.bts.0.chreq.total", mtype := "c", min := 1, max := 1},
3803 { name := "TTCN3.bts.0.chreq.successful", mtype := "c", min := 1, max := 1},
Daniel Willmannebdecc02020-08-12 15:30:17 +02003804 { name := "TTCN3.bsc.0.assignment.attempted", mtype := "c", min := 1, max := 1},
3805 { name := "TTCN3.bsc.0.assignment.completed", mtype := "c", min := 1, max := 1}
3806 };
3807 f_statsd_expect(expect);
Harald Welte4532e0a2017-12-23 02:05:44 +01003808}
3809
3810testcase TC_assignment_sign() runs on test_CT {
3811 var MSC_ConnHdlr vc_conn;
3812
3813 f_init(1, true);
3814 f_sleep(1.0);
3815
Harald Welte8863fa12018-05-10 20:15:27 +02003816 vc_conn := f_start_handler(refers(f_tc_assignment_sign));
Harald Welte4532e0a2017-12-23 02:05:44 +01003817 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003818 f_shutdown_helper();
Harald Welte4532e0a2017-12-23 02:05:44 +01003819}
3820
Harald Welte60aa5762018-03-21 19:33:13 +01003821/***********************************************************************
3822 * Codec (list) testing
3823 ***********************************************************************/
3824
3825/* check if the given rsl_mode is compatible with the a_elem */
3826private function f_match_codec(BSSMAP_FIELD_CodecElement a_elem, RSL_IE_ChannelMode rsl_mode)
3827return boolean {
3828 select (a_elem.codecType) {
3829 case (GSM_FR) {
3830 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM1))) {
3831 return true;
3832 }
3833 }
3834 case (GSM_HR) {
3835 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1))) {
3836 return true;
3837 }
3838 }
3839 case (GSM_EFR) {
3840 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM2))) {
3841 return true;
3842 }
3843 }
3844 case (FR_AMR) {
3845 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM3))) {
3846 return true;
3847 }
3848 }
3849 case (HR_AMR) {
3850 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM3))) {
3851 return true;
3852 }
3853 }
3854 case else { }
3855 }
3856 return false;
3857}
3858
3859/* check if the given rsl_mode is compatible with the a_list */
3860private function f_match_codecs(BSSMAP_IE_SpeechCodecList a_list, RSL_IE_ChannelMode rsl_mode)
3861return boolean {
3862 for (var integer i := 0; i < sizeof(a_list); i := i+1) {
3863 if (f_match_codec(a_list.codecElements[i], rsl_mode)) {
3864 return true;
3865 }
3866 }
3867 return false;
3868}
3869
3870/* determine BSSMAP_IE_ChannelType from *first* element of BSSMAP_FIELD_CodecElement */
Philipp Maier61f6b572018-07-06 14:03:38 +02003871function f_BSSMAP_chtype_from_codec(BSSMAP_FIELD_CodecElement a_elem)
Harald Welte60aa5762018-03-21 19:33:13 +01003872return BSSMAP_IE_ChannelType {
3873 /* FIXME: actually look at all elements of BSSMAP_IE_SpeechCodecList */
3874 var BSSMAP_IE_ChannelType ret := valueof(ts_BSSMAP_IE_ChannelType);
3875 select (a_elem.codecType) {
3876 case (GSM_FR) {
3877 ret.channelRateAndType := ChRate_TCHF;
3878 ret.speechId_DataIndicator := Spdi_TCHF_FR;
3879 }
3880 case (GSM_HR) {
3881 ret.channelRateAndType := ChRate_TCHH;
3882 ret.speechId_DataIndicator := Spdi_TCHH_HR;
3883 }
3884 case (GSM_EFR) {
3885 ret.channelRateAndType := ChRate_TCHF;
3886 ret.speechId_DataIndicator := Spdi_TCHF_EFR;
3887 }
3888 case (FR_AMR) {
3889 ret.channelRateAndType := ChRate_TCHF;
3890 ret.speechId_DataIndicator := Spdi_TCHF_AMR;
3891 }
3892 case (HR_AMR) {
3893 ret.channelRateAndType := ChRate_TCHH;
3894 ret.speechId_DataIndicator := Spdi_TCHH_AMR;
3895 }
3896 case else {
3897 setverdict(fail, "Unsupported codec ", a_elem);
Daniel Willmannafce8662018-07-06 23:11:32 +02003898 mtc.stop;
Harald Welte60aa5762018-03-21 19:33:13 +01003899 }
3900 }
3901 return ret;
3902}
3903
Harald Weltea63b9102018-03-22 20:36:16 +01003904private function f_rsl_chmod_tmpl_from_codec(BSSMAP_FIELD_CodecElement a_elem)
3905return template RSL_IE_Body {
3906 var template RSL_IE_Body mode_ie := {
3907 chan_mode := {
3908 len := ?,
3909 reserved := ?,
3910 dtx_d := ?,
3911 dtx_u := ?,
3912 spd_ind := RSL_SPDI_SPEECH,
3913 ch_rate_type := -,
3914 coding_alg_rate := -
3915 }
3916 }
3917
3918 select (a_elem.codecType) {
3919 case (GSM_FR) {
3920 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3921 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3922 }
3923 case (GSM_HR) {
3924 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3925 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3926 }
3927 case (GSM_EFR) {
3928 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3929 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM2;
3930 }
3931 case (FR_AMR) {
3932 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3933 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3934 }
3935 case (HR_AMR) {
3936 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3937 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3938 }
3939 }
3940 return mode_ie;
3941}
3942
Harald Welte60aa5762018-03-21 19:33:13 +01003943type record CodecListTest {
3944 BSSMAP_IE_SpeechCodecList codec_list,
3945 charstring id
3946}
3947type record of CodecListTest CodecListTests
3948
3949private function f_TC_assignment_codec(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02003950 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
3951 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
Harald Welte60aa5762018-03-21 19:33:13 +01003952
3953 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003954 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte79f3f542018-05-25 20:02:37 +02003955 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
3956 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
3957 g_pars.ass_codec_list.codecElements[0];
Philipp Maierd0e64b02019-03-13 14:15:23 +01003958 if (isvalue(g_pars.expect_mr_s0_s7)) {
3959 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
3960 g_pars.expect_mr_s0_s7;
3961 }
Harald Welte79f3f542018-05-25 20:02:37 +02003962 }
Harald Welte60aa5762018-03-21 19:33:13 +01003963 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
3964 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
Harald Welte60aa5762018-03-21 19:33:13 +01003965 log("expecting ASS COMPL like this: ", exp_compl);
3966
3967 f_establish_fully(ass_cmd, exp_compl);
Harald Weltea63b9102018-03-22 20:36:16 +01003968
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003969 if (not g_pars.expect_channel_mode_modify) {
3970 /* Verify that the RSL-side activation actually matches our expectations */
3971 var RSL_Message rsl := f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr);
Harald Weltea63b9102018-03-22 20:36:16 +01003972
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003973 var RSL_IE_Body mode_ie;
3974 if (f_rsl_find_ie(rsl, RSL_IE_CHAN_MODE, mode_ie) == false) {
3975 setverdict(fail, "Couldn't find CHAN_MODE IE");
Daniel Willmannafce8662018-07-06 23:11:32 +02003976 mtc.stop;
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003977 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003978 var template RSL_IE_Body t_mode_ie := f_rsl_chmod_tmpl_from_codec(g_pars.ass_codec_list.codecElements[0]);
3979 if (not match(mode_ie, t_mode_ie)) {
3980 log("mode_ie ", mode_ie, " != t_mode_ie ", t_mode_ie);
3981 setverdict(fail, "RSL Channel Mode IE doesn't match expectation");
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003982 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003983
3984 var RSL_IE_Body mr_conf;
3985 if (g_pars.expect_mr_conf_ie != omit) {
3986 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == false) {
3987 setverdict(fail, "Missing MR CONFIG IE in RSL Chan Activ");
3988 mtc.stop;
3989 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003990 log("found RSL MR CONFIG IE: ", mr_conf);
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003991
3992 if (not match(mr_conf, g_pars.expect_mr_conf_ie)) {
3993 setverdict(fail, "RSL MR CONFIG IE does not match expectation. Expected: ",
3994 g_pars.expect_mr_conf_ie);
3995 }
3996 } else {
3997 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == true) {
3998 log("found RSL MR CONFIG IE: ", mr_conf);
3999 setverdict(fail, "Found MR CONFIG IE in RSL Chan Activ, expecting omit");
4000 mtc.stop;
4001 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004002 }
4003 }
Harald Welte60aa5762018-03-21 19:33:13 +01004004}
4005
Philipp Maierd0e64b02019-03-13 14:15:23 +01004006private function f_TC_assignment_codec_fail(charstring id) runs on MSC_ConnHdlr {
4007
4008 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4009 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4010
4011 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02004012 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maierd0e64b02019-03-13 14:15:23 +01004013 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
4014 }
4015 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
4016 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
4017 log("expecting ASS FAIL like this: ", exp_fail);
4018
4019 f_establish_fully(ass_cmd, exp_fail);
4020}
4021
Harald Welte60aa5762018-03-21 19:33:13 +01004022testcase TC_assignment_codec_fr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004023 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004024 var MSC_ConnHdlr vc_conn;
4025
4026 f_init(1, true);
4027 f_sleep(1.0);
4028
4029 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004030 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004031 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004032 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004033}
4034
4035testcase TC_assignment_codec_hr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004036 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004037 var MSC_ConnHdlr vc_conn;
4038
4039 f_init(1, true);
4040 f_sleep(1.0);
4041
4042 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004043 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004044 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004045 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004046}
4047
4048testcase TC_assignment_codec_efr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004049 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004050 var MSC_ConnHdlr vc_conn;
4051
4052 f_init(1, true);
4053 f_sleep(1.0);
4054
4055 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecEFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004056 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004057 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004058 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004059}
4060
Philipp Maierd0e64b02019-03-13 14:15:23 +01004061/* Allow 5,90k only (current default config) */
4062private function f_allow_amr_rate_5_90k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004063 f_vty_cfg_msc(BSCVTY, 0, {
4064 "amr-config 12_2k forbidden",
4065 "amr-config 10_2k forbidden",
4066 "amr-config 7_95k forbidden",
4067 "amr-config 7_40k forbidden",
4068 "amr-config 6_70k forbidden",
4069 "amr-config 5_90k allowed",
4070 "amr-config 5_15k forbidden",
4071 "amr-config 4_75k forbidden"
4072 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004073}
4074
4075/* Allow 4,75k, 5,90k, 4,70k and 12,2k, which are the most common rates
4076 * ("Config-NB-Code = 1") */
4077private function f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004078 f_vty_cfg_msc(BSCVTY, 0, {
4079 "amr-config 12_2k allowed",
4080 "amr-config 10_2k forbidden",
4081 "amr-config 7_95k forbidden",
4082 "amr-config 7_40k allowed",
4083 "amr-config 6_70k forbidden",
4084 "amr-config 5_90k allowed",
4085 "amr-config 5_15k forbidden",
4086 "amr-config 4_75k allowed"
4087 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004088}
4089
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004090private function f_vty_amr_start_mode_set(boolean fr, charstring startmode) runs on test_CT {
4091 var charstring tch;
4092 if (fr) {
4093 tch := "tch-f";
4094 } else {
4095 tch := "tch-h";
4096 }
4097 f_vty_cfg_bts(BSCVTY, 0, { "amr " & tch & " start-mode " & startmode });
4098}
4099
4100/* Set the AMR start-mode for this TCH back to the default configuration. */
4101private function f_vty_amr_start_mode_restore(boolean fr) runs on test_CT {
4102 f_vty_amr_start_mode_set(fr, "auto");
4103}
4104
Harald Welte60aa5762018-03-21 19:33:13 +01004105testcase TC_assignment_codec_amr_f() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004106 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004107 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004108
4109 /* Note: This setups the codec configuration. The parameter payload in
4110 * mr_conf must be consistant with the parameter codecElements in pars
4111 * and also must match the amr-config in osmo-bsc.cfg! */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004112 var RSL_IE_Body mr_conf := {
4113 other := {
4114 len := 2,
4115 payload := '2804'O
4116 }
4117 };
Harald Welte60aa5762018-03-21 19:33:13 +01004118
Philipp Maier7695a0d2018-09-27 17:52:14 +02004119 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004120 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004121 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4122 pars.expect_mr_conf_ie := mr_conf;
4123
Harald Welte60aa5762018-03-21 19:33:13 +01004124 f_init(1, true);
4125 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004126 f_vty_amr_start_mode_set(true, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004127
Harald Welte8863fa12018-05-10 20:15:27 +02004128 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004129 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004130
4131 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004132 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004133}
4134
4135testcase TC_assignment_codec_amr_h() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004136 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004137 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004138
4139 /* See note above */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004140 var RSL_IE_Body mr_conf := {
4141 other := {
4142 len := 2,
4143 payload := '2804'O
4144 }
4145 };
Harald Welte60aa5762018-03-21 19:33:13 +01004146
Philipp Maier7695a0d2018-09-27 17:52:14 +02004147 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004148 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004149 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4150 pars.expect_mr_conf_ie := mr_conf;
4151
Harald Welte60aa5762018-03-21 19:33:13 +01004152 f_init(1, true);
4153 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004154 f_vty_amr_start_mode_set(false, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004155
Harald Welte8863fa12018-05-10 20:15:27 +02004156 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004157 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004158
4159 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004160 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004161}
4162
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004163/* Establish signalling on a TCH/F lchan, and then switch to speech mode without a new Assignment. */
4164testcase TC_assignment_codec_fr_by_mode_modify() runs on test_CT {
4165 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4166 var MSC_ConnHdlr vc_conn;
4167
4168 f_init(1, true);
4169 f_sleep(1.0);
4170
4171 /* By disabling all SDCCH, the MS should be given a TCH/F for signalling. Then activating an FR codec should
4172 * merely do a Channel Mode Modify, and not assign to a new lchan. f_establish_fully() already accounts for
4173 * expecting a Channel Mode Modify if the channel type is compatible. */
4174 f_disable_all_sdcch();
4175 f_disable_all_tch_h();
4176
4177 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4178 pars.expect_channel_mode_modify := true;
4179 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4180 vc_conn.done;
4181
4182 f_enable_all_sdcch();
4183 f_enable_all_tch();
4184 f_shutdown_helper();
4185}
4186
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004187/* 'amr start-mode auto' should not keep the (unused) 'smod' bits from previous configuration */
4188testcase TC_assignment_codec_amr_startmode_cruft() runs on test_CT {
4189 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4190 var MSC_ConnHdlr vc_conn;
4191
4192 var RSL_IE_Body mr_conf := {
4193 other := {
4194 len := 2,
4195 payload := '2004'O /* <- expect ICMI=0, smod=00 */
4196 }
4197 };
4198
4199 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4200 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4201 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4202 pars.expect_mr_conf_ie := mr_conf;
4203
4204 f_init(1, true);
4205 f_sleep(1.0);
4206
4207 /* First set nonzero start mode bits */
4208 f_vty_amr_start_mode_set(true, "4");
4209 /* Now set to auto, and expect the startmode bits to be zero in the message, i.e. ensure that osmo-bsc does not
4210 * let the startmode bits stick around and has deterministic MultiRate config for 'start-mode auto'; that is
4211 * ensured by above '2004'O, where 'x0xx'O indicates ICMI = 0, spare = 0, smod = 00. */
4212 f_vty_amr_start_mode_set(true, "auto");
4213
4214 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4215 vc_conn.done;
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004216
4217 /* Clear the startmode bits to not affect subsequent tests, in case the bits should indeed stick around. */
4218 f_vty_amr_start_mode_set(true, "1");
4219 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004220 f_shutdown_helper();
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004221}
4222
Neels Hofmeyr21863562020-11-26 00:34:33 +00004223function f_TC_assignment_codec_amr(boolean fr, octetstring mrconf, bitstring s8_s0, bitstring exp_s8_s0,
4224 charstring start_mode := "1")
Philipp Maierd0e64b02019-03-13 14:15:23 +01004225runs on test_CT {
4226
4227 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4228 var MSC_ConnHdlr vc_conn;
4229
4230 /* See note above */
4231 var RSL_IE_Body mr_conf := {
4232 other := {
4233 len := lengthof(mrconf),
4234 payload := mrconf
4235 }
4236 };
4237
4238 if (fr) {
4239 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4240 } else {
4241 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4242 }
4243 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4244 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4245 pars.expect_mr_conf_ie := mr_conf;
4246 pars.expect_mr_s0_s7 := exp_s8_s0;
4247
4248 f_init(1, true);
4249 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004250 f_vty_amr_start_mode_set(fr, start_mode);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004251 f_sleep(1.0);
4252
4253 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4254 vc_conn.done;
4255 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004256 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004257}
4258
4259function f_TC_assignment_codec_amr_fail(boolean fr, bitstring s8_s0)
4260runs on test_CT {
4261
4262 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4263 var MSC_ConnHdlr vc_conn;
4264
4265 if (fr) {
4266 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4267 } else {
4268 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4269 }
4270 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4271 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4272
4273 f_init(1, true);
4274 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004275 f_vty_amr_start_mode_set(fr, "1");
Philipp Maierd0e64b02019-03-13 14:15:23 +01004276 f_sleep(1.0);
4277
4278 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fail), pars);
4279 vc_conn.done;
4280 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004281 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004282}
4283
4284
4285/* Set S1, we expect an AMR multirate configuration IE with all four rates
4286 * set. */
4287testcase TC_assignment_codec_amr_f_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004288 f_TC_assignment_codec_amr(true, '289520882208'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004289 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004290}
4291
4292/* Set S1, we expect an AMR multirate configuration IE with the lower three
4293 * rates set. */
4294testcase TC_assignment_codec_amr_h_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004295 f_TC_assignment_codec_amr(false, '2815208820'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004296 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004297}
4298
4299/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4300 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4301testcase TC_assignment_codec_amr_f_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004302 f_TC_assignment_codec_amr(true, '289520882208'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004303 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004304}
4305
4306/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4307 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4308testcase TC_assignment_codec_amr_h_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004309 f_TC_assignment_codec_amr(false, '2815208820'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004310 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004311}
4312
4313/* The following block of tests selects more and more rates until all four
4314 * possible rates are in the active set (full rate) */
4315testcase TC_assignment_codec_amr_f_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004316 f_TC_assignment_codec_amr(true, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004317 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004318}
4319
4320testcase TC_assignment_codec_amr_f_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004321 f_TC_assignment_codec_amr(true, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004322 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004323}
4324
4325testcase TC_assignment_codec_amr_f_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004326 f_TC_assignment_codec_amr(true, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004327 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004328}
4329
4330testcase TC_assignment_codec_amr_f_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004331 f_TC_assignment_codec_amr(true, '289520882208'O, '10010101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004332 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004333}
4334
4335/* The following block of tests selects more and more rates until all three
4336 * possible rates are in the active set (half rate) */
4337testcase TC_assignment_codec_amr_h_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004338 f_TC_assignment_codec_amr(false, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004339 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004340}
4341
4342testcase TC_assignment_codec_amr_h_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004343 f_TC_assignment_codec_amr(false, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004344 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004345}
4346
4347testcase TC_assignment_codec_amr_h_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004348 f_TC_assignment_codec_amr(false, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004349 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004350}
4351
4352/* The following block tests what happens when the MSC does offer rate
4353 * configurations that are not supported by the BSC. Normally such situations
4354 * should not happen because the MSC gets informed by the BSC in advance via
4355 * the L3 COMPLETE message which rates are applicable. The MSC should not try
4356 * to offer rates that are not applicable anyway. */
4357
4358testcase TC_assignment_codec_amr_h_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004359 /* Try to include 12,2k in into the active set even though the channel
4360 * is half rate only. The BSC is expected to remove the 12,0k */
4361 f_TC_assignment_codec_amr(false, '2815208820'O, '10010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004362 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004363}
4364
4365testcase TC_assignment_codec_amr_f_S01234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004366 /* See what happens when all rates are selected at once. Since then
4367 * Also S1 is selected, this setting will be prefered and we should
4368 * get 12.2k, 7,40k, 5,90k, and 4,75k in the active set. */
4369 f_TC_assignment_codec_amr(true, '289520882208'O, '11111111'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004370 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004371}
4372
4373testcase TC_assignment_codec_amr_f_S0234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004374 /* Same as above, but with S1 missing, the MSC is then expected to
4375 * select the currently supported rates, which are also 12.2k, 7,40k,
4376 * 5,90k, and 4,75k, into the active set. */
4377 f_TC_assignment_codec_amr(true, '289520882208'O, '11111101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004378 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004379}
4380
4381testcase TC_assignment_codec_amr_f_zero() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004382 /* Try to select no rates at all */
4383 f_TC_assignment_codec_amr_fail(true, '00000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004384 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004385}
4386
4387testcase TC_assignment_codec_amr_f_unsupp() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004388 /* Try to select only unsupported rates */
4389 f_TC_assignment_codec_amr_fail(true, '01101000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004390 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004391}
4392
4393testcase TC_assignment_codec_amr_h_S7() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004394 /* Try to select 12,2k for half rate */
4395 f_TC_assignment_codec_amr_fail(false, '10000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004396 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004397}
4398
Neels Hofmeyr21863562020-11-26 00:34:33 +00004399testcase TC_assignment_codec_amr_f_start_mode_auto() runs on test_CT {
4400 f_TC_assignment_codec_amr(true, '209520882208'O, '11111111'B, '00000010'B,
4401 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004402 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004403}
4404
4405testcase TC_assignment_codec_amr_h_start_mode_auto() runs on test_CT {
4406 f_TC_assignment_codec_amr(false, '2015208820'O, '10010101'B, '00010101'B,
4407 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004408 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004409}
4410
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004411testcase TC_assignment_codec_amr_f_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004412 /* "amr tch-f modes 0 2 4 7" => total 4 modes and start mode 4 => '11'B on the wire */
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004413 f_TC_assignment_codec_amr(true, '2b9520882208'O, '11111111'B, '00000010'B,
4414 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004415 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004416}
4417
4418testcase TC_assignment_codec_amr_h_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004419 /* "amr tch-h modes 0 2 4" => total 3 modes and start mode 4 => '10'B on the wire */
4420 f_TC_assignment_codec_amr(false, '2a15208820'O, '10010101'B, '00010101'B,
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004421 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004422 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004423}
4424
Philipp Maierac09bfc2019-01-08 13:41:39 +01004425private function f_disable_all_tch_f() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004426 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 borken");
4427 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 borken");
4428 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 borken");
4429 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004430}
4431
4432private function f_disable_all_tch_h() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004433 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 borken");
4434 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004435}
4436
4437private function f_enable_all_tch() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004438 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 unused");
4439 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 unused");
4440 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 unused");
4441 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 unused");
4442 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 unused");
4443 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 unused");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004444}
4445
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004446private function f_disable_all_sdcch() runs on test_CT {
4447 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 borken");
4448 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 borken");
4449 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 borken");
4450 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 borken");
4451}
4452
4453private function f_enable_all_sdcch() runs on test_CT {
4454 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 unused");
4455 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 unused");
4456 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 unused");
4457 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 unused");
4458}
4459
Philipp Maierac09bfc2019-01-08 13:41:39 +01004460/* Allow HR only */
4461private function f_TC_assignment_codec_xr_exhausted_req_hr(charstring id) runs on MSC_ConnHdlr {
4462 g_pars := f_gen_test_hdlr_pars();
4463 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4464 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4465 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4466 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4467 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4468 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4469 f_establish_fully(ass_cmd, exp_compl);
4470}
4471
4472/* Allow FR only */
4473private function f_TC_assignment_codec_xr_exhausted_req_fr(charstring id) runs on MSC_ConnHdlr {
4474 g_pars := f_gen_test_hdlr_pars();
4475 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4476 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4477 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4478 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4479 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4480 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4481 f_establish_fully(ass_cmd, exp_compl);
4482}
4483
4484/* Allow HR only (expect assignment failure) */
4485private function f_TC_assignment_codec_xr_exhausted_req_hr_fail(charstring id) runs on MSC_ConnHdlr {
4486 g_pars := f_gen_test_hdlr_pars();
4487 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4488 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4489 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4490 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4491 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4492 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4493 f_establish_fully(ass_cmd, exp_fail);
4494}
4495
4496/* Allow FR only (expect assignment failure) */
4497private function f_TC_assignment_codec_xr_exhausted_req_fr_fail(charstring id) runs on MSC_ConnHdlr {
4498 g_pars := f_gen_test_hdlr_pars();
4499 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4500 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4501 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4502 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4503 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4504 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4505 f_establish_fully(ass_cmd, exp_fail);
4506}
4507
4508/* Allow FR and HR, but prefer FR */
4509private function f_TC_assignment_codec_fr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4510 g_pars := f_gen_test_hdlr_pars();
4511 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4512 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4513 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4514 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4515 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4516 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4517 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4518 f_establish_fully(ass_cmd, exp_compl);
4519}
4520
4521/* Allow FR and HR, but prefer HR */
4522private function f_TC_assignment_codec_fr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4523 g_pars := f_gen_test_hdlr_pars();
4524 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4525 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4526 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4527 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4528 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4529 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4530 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4531 f_establish_fully(ass_cmd, exp_compl);
4532}
4533
4534/* Allow FR and HR, but prefer FR */
4535private function f_TC_assignment_codec_hr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4536 g_pars := f_gen_test_hdlr_pars();
4537 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4538 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4539 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4540 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4541 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4542 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4543 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4544 f_establish_fully(ass_cmd, exp_compl);
4545}
4546
4547/* Allow FR and HR, but prefer HR */
4548private function f_TC_assignment_codec_hr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4549 g_pars := f_gen_test_hdlr_pars();
4550 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4551 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4552 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4553 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4554 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4555 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4556 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4557 f_establish_fully(ass_cmd, exp_compl);
4558}
4559
4560/* Request a HR channel while all FR channels are exhausted, this is expected
4561 * to work without conflicts */
4562testcase TC_assignment_codec_fr_exhausted_req_hr() runs on test_CT {
4563 var MSC_ConnHdlr vc_conn;
4564 f_init(1, true);
4565 f_sleep(1.0);
4566 f_enable_all_tch();
4567 f_disable_all_tch_f();
4568 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr));
4569 vc_conn.done;
4570 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004571 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004572}
4573
4574/* Request a FR channel while all FR channels are exhausted, this is expected
4575 * to fail. */
4576testcase TC_assignment_codec_fr_exhausted_req_fr() runs on test_CT {
4577 var MSC_ConnHdlr vc_conn;
4578 f_init(1, true);
4579 f_sleep(1.0);
4580 f_enable_all_tch();
4581 f_disable_all_tch_f();
4582 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr_fail));
4583 vc_conn.done;
4584 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004585 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004586}
4587
4588/* Request a FR (prefered) or alternatively a HR channel while all FR channels
4589 * are exhausted, this is expected to be resolved by selecting a HR channel. */
4590testcase TC_assignment_codec_fr_exhausted_req_fr_hr() runs on test_CT {
4591 var MSC_ConnHdlr vc_conn;
4592 f_init(1, true);
4593 f_sleep(1.0);
4594 f_enable_all_tch();
4595 f_disable_all_tch_f();
4596 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_fr_hr));
4597 vc_conn.done;
4598 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004599 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004600}
4601
4602/* Request a HR (prefered) or alternatively a FR channel while all FR channels
4603 * are exhausted, this is expected to work without conflicts. */
4604testcase TC_assignment_codec_fr_exhausted_req_hr_fr() runs on test_CT {
4605 var MSC_ConnHdlr vc_conn;
4606 f_init(1, true);
4607 f_sleep(1.0);
4608 f_enable_all_tch();
4609 f_disable_all_tch_f();
4610 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_hr_fr));
4611 vc_conn.done;
4612 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004613 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004614}
4615
4616/* Request a FR channel while all HR channels are exhausted, this is expected
4617 * to work without conflicts */
4618testcase TC_assignment_codec_hr_exhausted_req_fr() runs on test_CT {
4619 var MSC_ConnHdlr vc_conn;
4620 f_init(1, true);
4621 f_sleep(1.0);
4622 f_enable_all_tch();
4623 f_disable_all_tch_h();
4624 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr));
4625 vc_conn.done;
4626 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004627 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004628}
4629
4630/* Request a HR channel while all HR channels are exhausted, this is expected
4631 * to fail. */
4632testcase TC_assignment_codec_hr_exhausted_req_hr() runs on test_CT {
4633 var MSC_ConnHdlr vc_conn;
4634 f_init(1, true);
4635 f_sleep(1.0);
4636 f_enable_all_tch();
4637 f_disable_all_tch_h();
4638 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr_fail));
4639 vc_conn.done;
4640 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004641 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004642}
4643
4644/* Request a HR (prefered) or alternatively a FR channel while all HR channels
4645 * are exhausted, this is expected to be resolved by selecting a FR channel. */
4646testcase TC_assignment_codec_hr_exhausted_req_hr_fr() runs on test_CT {
4647 var MSC_ConnHdlr vc_conn;
4648 f_init(1, true);
4649 f_sleep(1.0);
4650 f_enable_all_tch();
4651 f_disable_all_tch_h();
4652 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_hr_fr));
4653 vc_conn.done;
4654 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004655 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004656}
4657
4658/* Request a FR (prefered) or alternatively a HR channel while all HR channels
4659 * are exhausted, this is expected to work without conflicts. */
4660testcase TC_assignment_codec_hr_exhausted_req_fr_hr() runs on test_CT {
4661 var MSC_ConnHdlr vc_conn;
4662 f_init(1, true);
4663 f_sleep(1.0);
4664 f_enable_all_tch();
4665 f_disable_all_tch_h();
4666 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_fr_hr));
4667 vc_conn.done;
4668 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004669 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004670}
4671
4672/* Allow FR and HR, but prefer HR */
4673private function f_TC_assignment_codec_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4674 g_pars := f_gen_test_hdlr_pars();
4675 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4676 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4677 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4678 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4679 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4680 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4681 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4682 f_establish_fully(ass_cmd, exp_compl);
4683}
4684
4685/* Allow FR and HR, but prefer FR */
4686private function f_TC_assignment_codec_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4687 g_pars := f_gen_test_hdlr_pars();
4688 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4689 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4690 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4691 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4692 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4693 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4694 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4695 f_establish_fully(ass_cmd, exp_compl);
4696}
4697
4698/* Request a HR (prefered) or alternatively a FR channel, it is expected that
4699 * HR, which is the prefered type, is selected. */
4700testcase TC_assignment_codec_req_hr_fr() runs on test_CT {
4701 var MSC_ConnHdlr vc_conn;
4702 f_init(1, true);
4703 f_sleep(1.0);
4704 f_enable_all_tch();
4705 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_hr_fr));
4706 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004707 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004708}
4709
4710/* Request a FR (prefered) or alternatively a HR channel, it is expected that
4711 * FR, which is the prefered type, is selected. */
4712testcase TC_assignment_codec_req_fr_hr() runs on test_CT {
4713 var MSC_ConnHdlr vc_conn;
4714 f_init(1, true);
4715 f_sleep(1.0);
4716 f_enable_all_tch();
4717 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_fr_hr));
4718 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004719 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004720}
4721
Pau Espin Pedrol14475352021-07-22 15:48:16 +02004722/* request a signalling channel with all SDCCH exhausted, it is expected that a TCH will be selected */
4723private function f_TC_assignment_sdcch_exhausted_req_signalling(charstring id) runs on MSC_ConnHdlr {
4724 g_pars := f_gen_test_hdlr_pars();
4725 g_pars.ra := '02'O; /* RA containing reason=LU */
4726
4727 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4728 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4729 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4730 var template uint3_t tsc := ?;
4731
4732 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4733 f_create_bssmap_exp(l3_enc);
4734 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4735 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4736
4737 /* we should now have a COMPL_L3 at the MSC */
4738 timer T := 10.0;
4739 T.start;
4740 alt {
4741 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4742 [] T.timeout {
4743 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4744 }
4745 }
4746}
4747testcase TC_assignment_sdcch_exhausted_req_signalling() runs on test_CT {
4748 var MSC_ConnHdlr vc_conn;
4749 f_init(1, true);
4750 f_sleep(1.0);
4751 f_disable_all_sdcch();
4752 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_signalling));
4753 vc_conn.done;
4754 f_enable_all_sdcch();
4755 f_shutdown_helper();
4756}
4757
4758/* Request a signalling channel with all SDCCH exhausted, it is
4759 expected that no TCH will be selected for signalling and assigment will fail
4760 because it's dictated by VTY config */
4761testcase TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() runs on test_CT {
4762 var RSL_Message rsl_unused, rsl_msg;
4763 var GsmRrMessage rr;
4764 f_init(1, false);
4765 f_sleep(1.0);
4766 f_vty_allow_tch_for_signalling(false, 0);
4767 f_disable_all_sdcch();
4768
4769 /* RA containing reason=LU */
4770 f_ipa_tx(0, ts_RSL_CHAN_RQD('02'O, 2342));
4771 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
4772 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
4773 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
4774 setverdict(fail, "Expected reject");
4775 }
4776
4777 f_vty_allow_tch_for_signalling(true, 0);
4778 f_enable_all_sdcch();
4779 f_shutdown_helper();
4780}
4781
4782/* Request a voice channel with all SDCCH exhausted, it is
4783 * expected that TCH channel will be allocated since the VTY option is only
4784 * aimed at signalling requests */
4785private function f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden(charstring id) runs on MSC_ConnHdlr {
4786 g_pars := f_gen_test_hdlr_pars();
4787 g_pars.ra := '43'O; /* RA containing reason=originating speech call*/
4788
4789 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4790 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4791 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4792 var template uint3_t tsc := ?;
4793
4794 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4795 f_create_bssmap_exp(l3_enc);
4796 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4797 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4798
4799 /* we should now have a COMPL_L3 at the MSC */
4800 timer T := 10.0;
4801 T.start;
4802 alt {
4803 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4804 [] T.timeout {
4805 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4806 }
4807 }
4808}
4809testcase TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() runs on test_CT {
4810 var MSC_ConnHdlr vc_conn;
4811 f_init(1, true);
4812 f_sleep(1.0);
4813 f_vty_allow_tch_for_signalling(false, 0);
4814 f_disable_all_sdcch();
4815
4816 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden));
4817 vc_conn.done;
4818
4819 f_vty_allow_tch_for_signalling(true, 0);
4820 f_enable_all_sdcch();
4821 f_shutdown_helper();
4822}
4823
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004824testcase TC_assignment_osmux() runs on test_CT {
4825 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4826 var MSC_ConnHdlr vc_conn;
4827
4828 /* See note above */
4829 var RSL_IE_Body mr_conf := {
4830 other := {
4831 len := 2,
4832 payload := '2804'O
4833 }
4834 };
4835
4836 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4837 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4838 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4839 pars.expect_mr_conf_ie := mr_conf;
4840 pars.use_osmux := true;
4841
4842 f_init(1, true, true);
4843 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004844 f_vty_amr_start_mode_set(false, "1");
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004845
4846 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4847 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004848
4849 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004850 f_shutdown_helper();
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004851}
4852
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004853/* test the procedure of the MSC requesting a Classmark Update:
4854 * a) BSSMAP Classmark Request should result in RR CLASSMARK ENQUIRY,
4855 * b) L3 RR CLASSMARK CHANGE should result in BSSMAP CLASSMARK UPDATE */
Harald Welte898113b2018-01-31 18:32:21 +01004856private function f_tc_classmark(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004857 g_pars := f_gen_test_hdlr_pars();
4858
Harald Weltea0630032018-03-20 21:09:55 +01004859 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004860 /* we should now have a COMPL_L3 at the MSC */
4861 BSSAP.receive(tr_BSSMAP_ComplL3);
4862
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004863 BSSAP.send(ts_BSSMAP_ClassmarkRequest);
4864 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_CM_ENQUIRY));
4865
Harald Welte898113b2018-01-31 18:32:21 +01004866 f_rsl_send_l3(ts_RRM_CM_CHG(valueof(ts_CM2)));
4867 BSSAP.receive(tr_BSSMAP_ClassmarkUpd(?, omit));
4868 setverdict(pass);
4869}
4870testcase TC_classmark() runs on test_CT {
4871 var MSC_ConnHdlr vc_conn;
4872 f_init(1, true);
4873 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004874 vc_conn := f_start_handler(refers(f_tc_classmark));
Harald Welte898113b2018-01-31 18:32:21 +01004875 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004876 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004877}
4878
Harald Welteeddf0e92020-06-21 19:42:15 +02004879/* Send a CommonID from the simulated MSC and verify that the information is used to
4880 * fill BSC-internal data structures (specifically, bsc_subscr associated with subscr_conn) */
4881private function f_tc_common_id(charstring id) runs on MSC_ConnHdlr {
4882 g_pars := f_gen_test_hdlr_pars();
4883 f_MscConnHdlr_init_vty();
4884
4885 f_create_chan_and_exp();
4886 /* we should now have a COMPL_L3 at the MSC */
4887 BSSAP.receive(tr_BSSMAP_ComplL3);
4888
4889 /* Send CommonID */
4890 BSSAP.send(ts_BSSMAP_CommonId(g_pars.imsi));
4891
4892 /* Use VTY to verify that the IMSI of the subscr_conn is set */
4893 var charstring regex := "*(IMSI: " & hex2str(g_pars.imsi) & ")*";
4894 f_vty_transceive_match_regexp_retry(BSCVTY, "show conns", regex, 0, 4, 1.0);
4895
4896 setverdict(pass);
4897}
4898testcase TC_common_id() runs on test_CT {
4899 var MSC_ConnHdlr vc_conn;
4900 f_init(1, true);
4901 f_sleep(1.0);
4902 vc_conn := f_start_handler(refers(f_tc_common_id));
4903 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004904 f_shutdown_helper();
Harald Welteeddf0e92020-06-21 19:42:15 +02004905}
4906
Harald Weltee3bd6582018-01-31 22:51:25 +01004907private function f_est_single_l3(template PDU_ML3_MS_NW l3) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004908 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004909 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004910 /* we should now have a COMPL_L3 at the MSC */
4911 BSSAP.receive(tr_BSSMAP_ComplL3);
4912
Harald Weltee3bd6582018-01-31 22:51:25 +01004913 /* send the single message we want to send */
4914 f_rsl_send_l3(l3);
4915}
4916
4917private function f_bssap_expect_nothing(float sec := 5.00) runs on MSC_ConnHdlr {
4918 timer T := sec;
4919 var PDU_BSSAP bssap;
Harald Welte898113b2018-01-31 18:32:21 +01004920 T.start;
4921 alt {
Harald Weltee3bd6582018-01-31 22:51:25 +01004922 [] BSSAP.receive(PDU_BSSAP:?) -> value bssap {
4923 setverdict(fail, "Unexpected BSSMAP ", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02004924 mtc.stop;
Harald Welte898113b2018-01-31 18:32:21 +01004925 }
4926 [] T.timeout {
4927 setverdict(pass);
4928 }
4929 }
4930}
4931
Harald Weltee3bd6582018-01-31 22:51:25 +01004932/* unsolicited ASSIGNMENT FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4933private function f_tc_unsol_ass_fail(charstring id) runs on MSC_ConnHdlr {
4934 f_est_single_l3(ts_RRM_AssignmentFailure('00'O));
4935 f_bssap_expect_nothing();
4936}
Harald Welte898113b2018-01-31 18:32:21 +01004937testcase TC_unsol_ass_fail() runs on test_CT {
4938 var MSC_ConnHdlr vc_conn;
4939 f_init(1, true);
4940 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004941 vc_conn := f_start_handler(refers(f_tc_unsol_ass_fail));
Harald Welte898113b2018-01-31 18:32:21 +01004942 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004943 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004944}
Harald Welte552620d2017-12-16 23:21:36 +01004945
Harald Welteea99a002018-01-31 20:46:43 +01004946
4947/* unsolicited ASSIGNMENT COMPLETE (without ASSIGN) from MS shouldn't bring BSC down */
4948private function f_tc_unsol_ass_compl(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004949 f_est_single_l3(ts_RRM_AssignmentComplete('00'O));
4950 f_bssap_expect_nothing();
Harald Welteea99a002018-01-31 20:46:43 +01004951}
4952testcase TC_unsol_ass_compl() runs on test_CT {
4953 var MSC_ConnHdlr vc_conn;
4954 f_init(1, true);
4955 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004956 vc_conn := f_start_handler(refers(f_tc_unsol_ass_compl));
Harald Welteea99a002018-01-31 20:46:43 +01004957 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004958 f_shutdown_helper();
Harald Welteea99a002018-01-31 20:46:43 +01004959}
4960
4961
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004962/* unsolicited HANDOVER FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4963private function f_tc_unsol_ho_fail(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004964 f_est_single_l3(ts_RRM_HandoverFailure('00'O));
4965 f_bssap_expect_nothing();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004966}
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004967testcase TC_unsol_ho_fail() runs on test_CT {
4968 var MSC_ConnHdlr vc_conn;
4969 f_init(1, true);
4970 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004971 vc_conn := f_start_handler(refers(f_tc_unsol_ho_fail));
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004972 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004973 f_shutdown_helper();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004974}
4975
4976
Harald Weltee3bd6582018-01-31 22:51:25 +01004977/* short message from MS should be ignored */
4978private function f_tc_err_82_short_msg(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004979 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004980 f_create_chan_and_exp();
Harald Weltee3bd6582018-01-31 22:51:25 +01004981 /* we should now have a COMPL_L3 at the MSC */
4982 BSSAP.receive(tr_BSSMAP_ComplL3);
4983
4984 /* send short message */
4985 RSL.send(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), ''O));
4986 f_bssap_expect_nothing();
4987}
4988testcase TC_err_82_short_msg() runs on test_CT {
4989 var MSC_ConnHdlr vc_conn;
4990 f_init(1, true);
4991 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004992 vc_conn := f_start_handler(refers(f_tc_err_82_short_msg));
Harald Weltee3bd6582018-01-31 22:51:25 +01004993 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004994 f_shutdown_helper();
Harald Weltee3bd6582018-01-31 22:51:25 +01004995}
4996
4997
Harald Weltee9e02e42018-01-31 23:36:25 +01004998/* 24.008 8.4 Unknown message must trigger RR STATUS */
4999private function f_tc_err_84_unknown_msg(charstring id) runs on MSC_ConnHdlr {
5000 f_est_single_l3(ts_RRM_UL_REL('00'O));
5001 timer T := 3.0
5002 alt {
5003 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_STATUS)) {
5004 setverdict(pass);
5005 }
5006 [] BSSAP.receive { setverdict(fail, "unexpected BSSAP"); }
Harald Welte458fd372018-03-21 11:26:23 +01005007 [] T.timeout { setverdict(fail, "Timeout waiting for RR STATUS"); }
Harald Weltee9e02e42018-01-31 23:36:25 +01005008 }
5009}
5010testcase TC_err_84_unknown_msg() runs on test_CT {
5011 var MSC_ConnHdlr vc_conn;
5012 f_init(1, true);
5013 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02005014 vc_conn := f_start_handler(refers(f_tc_err_84_unknown_msg));
Harald Weltee9e02e42018-01-31 23:36:25 +01005015 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005016 f_shutdown_helper();
Harald Weltee9e02e42018-01-31 23:36:25 +01005017}
5018
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005019/***********************************************************************
5020 * Handover
5021 ***********************************************************************/
5022
Harald Welte94e0c342018-04-07 11:33:23 +02005023/* execute a "bts <0-255> trx <0-255> timeslot <0-7> " command on given Dchan */
5024private function f_vty_ts_action(charstring suffix, integer bts_nr, integer trx_nr, integer ts_nr)
5025runs on test_CT {
5026 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5027 " timeslot "&int2str(ts_nr)&" ";
5028 f_vty_transceive(BSCVTY, cmd & suffix);
5029}
5030
Harald Welte261af4b2018-02-12 21:20:39 +01005031/* execute a "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7>" command on given Dchan */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005032private function f_vty_ss_action(TELNETasp_PT pt, charstring suffix,
5033 uint8_t bts_nr, uint8_t trx_nr,
5034 in RslChannelNr chan_nr)
5035{
Harald Welte261af4b2018-02-12 21:20:39 +01005036 /* FIXME: resolve those from component-global state */
5037 var integer ts_nr := chan_nr.tn;
5038 var integer ss_nr;
5039 if (ischosen(chan_nr.u.ch0)) {
5040 ss_nr := 0;
5041 } else if (ischosen(chan_nr.u.lm)) {
5042 ss_nr := chan_nr.u.lm.sub_chan;
5043 } else if (ischosen(chan_nr.u.sdcch4)) {
5044 ss_nr := chan_nr.u.sdcch4.sub_chan;
5045 } else if (ischosen(chan_nr.u.sdcch8)) {
5046 ss_nr := chan_nr.u.sdcch8.sub_chan;
5047 } else {
5048 setverdict(fail, "Invalid ChanNr ", chan_nr);
Daniel Willmannafce8662018-07-06 23:11:32 +02005049 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +01005050 }
5051
5052 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5053 " timeslot "&int2str(ts_nr)&" sub-slot "&int2str(ss_nr)&" ";
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005054 f_vty_transceive(pt, cmd & suffix);
Harald Welte261af4b2018-02-12 21:20:39 +01005055}
5056
Neels Hofmeyr91401012019-07-11 00:42:35 +02005057/* Even though the VTY command to trigger handover takes a new BTS number as argument, behind the scenes osmo-bsc always
5058 * translates that to a target ARFCN+BSIC first. See bsc_vty.c trigger_ho_or_as(), which puts the selected BTS' neighbor
5059 * ident key (ARFCN + BSIC) in the struct passed on to handover_request(). handover_start() then resolves that to a
5060 * viable actual neighbor cell. So from the internal osmo-bsc perspective, we always request handover to an ARFCN + BSIC
5061 * pair, not really to a specific BTS number. */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005062private function f_vty_handover(TELNETasp_PT pt, uint8_t bts_nr, uint8_t trx_nr,
5063 in RslChannelNr chan_nr, uint8_t new_bts_nr)
5064{
5065 f_vty_ss_action(pt, "handover " & int2str(new_bts_nr), bts_nr, trx_nr, chan_nr);
Harald Welte261af4b2018-02-12 21:20:39 +01005066}
5067
5068/* intra-BSC hand-over between BTS0 and BTS1 */
5069private function f_tc_ho_int(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02005070 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5071 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte261af4b2018-02-12 21:20:39 +01005072
5073 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5074 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5075
Harald Weltea0630032018-03-20 21:09:55 +01005076 f_establish_fully(ass_cmd, exp_compl);
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005077 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Harald Welte261af4b2018-02-12 21:20:39 +01005078
5079 var HandoverState hs := {
5080 rr_ho_cmpl_seen := false,
5081 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02005082 old_chan_nr := -,
5083 expect_target_tsc := BTS_TSC[1]
Harald Welte261af4b2018-02-12 21:20:39 +01005084 };
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005085 /* issue hand-over command on VTY, from BTS 0 to BTS 1 */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005086 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
Harald Welte261af4b2018-02-12 21:20:39 +01005087 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5088 f_rslem_suspend(RSL1_PROC);
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005089
5090 /* From the MGW perspective, a handover is is characterized by
5091 * performing one MDCX operation with the MGW. So we expect to see
5092 * one more MDCX during handover. */
5093 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5094
Harald Welte261af4b2018-02-12 21:20:39 +01005095 alt {
5096 [] as_handover(hs);
Harald Welte261af4b2018-02-12 21:20:39 +01005097 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005098
Philipp Maier4dae0652018-11-12 12:03:26 +01005099 /* Since this is an internal handover we expect the BSC to inform the
5100 * MSC about the event */
5101 BSSAP.receive(tr_BSSMAP_HandoverPerformed);
5102
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005103 /* Check the amount of MGCP transactions is still consistant with the
5104 * test expectation */
5105 f_check_mgcp_expectations()
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005106
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005107 var RSL_Message chan_act := f_rslem_get_last_act(RSL1_PROC, 0, g_chan_nr);
5108
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005109 /* Ensure the Channel Activation for the new channel contained the right encryption params. as_handover() set
5110 * g_chan_nr to the new lchan that was handed over to. It lives in bts 1, so look it up at RSL1_PROC. */
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005111 f_verify_encr_info(chan_act);
5112
5113 f_chan_act_verify_tsc(chan_act, BTS_TSC[1]);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005114
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005115 f_sleep(0.5);
Harald Welte261af4b2018-02-12 21:20:39 +01005116}
5117
5118testcase TC_ho_int() runs on test_CT {
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005119 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte261af4b2018-02-12 21:20:39 +01005120 var MSC_ConnHdlr vc_conn;
5121 f_init(2, true);
5122 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005123
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005124 pars.expect_tsc := BTS_TSC[0];
5125
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005126 f_ctrs_bsc_and_bts_init();
5127
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005128 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
Harald Welte261af4b2018-02-12 21:20:39 +01005129 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005130
5131 /* from f_establish_fully() */
5132 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5133 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5134 /* from handover */
5135 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5136 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5137 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5138 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5139 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005140 f_shutdown_helper();
Harald Welte261af4b2018-02-12 21:20:39 +01005141}
Harald Weltee9e02e42018-01-31 23:36:25 +01005142
Oliver Smith7eabd312021-07-12 14:18:56 +02005143function f_tc_ho_int_a5(OCT1 encr_alg, charstring enc_a5 := "0 1 3") runs on test_CT {
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005144 var MSC_ConnHdlr vc_conn;
5145 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5146 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5147
5148 f_init(2, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02005149 f_vty_encryption_a5(enc_a5);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005150 f_sleep(1.0);
5151
5152 f_ctrs_bsc_and_bts_init();
5153
5154 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
5155 vc_conn.done;
5156
5157 /* from f_establish_fully() */
5158 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5159 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5160 /* from handover */
5161 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5162 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5163 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5164 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5165 f_ctrs_bsc_and_bts_verify();
Oliver Smith7eabd312021-07-12 14:18:56 +02005166 f_vty_encryption_a5_reset();
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005167 f_shutdown_helper();
5168}
5169
5170testcase TC_ho_int_a5_0() runs on test_CT {
5171 f_tc_ho_int_a5('01'O);
5172}
5173
5174testcase TC_ho_int_a5_1() runs on test_CT {
5175 f_tc_ho_int_a5('02'O);
5176}
5177
5178testcase TC_ho_int_a5_3() runs on test_CT {
5179 f_tc_ho_int_a5('08'O);
5180}
5181
5182testcase TC_ho_int_a5_4() runs on test_CT {
Oliver Smith7eabd312021-07-12 14:18:56 +02005183 f_tc_ho_int_a5('10'O, "0 1 3 4");
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005184}
5185
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005186/* intra-BSC hand-over with CONNection FAILure and cause Radio Link Failure: check RR release cause */
5187private function f_tc_ho_int_radio_link_failure(charstring id) runs on MSC_ConnHdlr {
5188 g_pars := f_gen_test_hdlr_pars();
5189 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5190 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005191
5192 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5193 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5194
5195 f_establish_fully(ass_cmd, exp_compl);
5196 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
5197
5198 var HandoverState hs := {
5199 rr_ho_cmpl_seen := false,
5200 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02005201 old_chan_nr := -,
5202 expect_target_tsc := BTS_TSC[1]
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005203 };
5204 /* issue hand-over command on VTY */
5205 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
5206 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5207 f_rslem_suspend(RSL1_PROC);
5208
5209 /* From the MGW perspective, a handover is is characterized by
5210 * performing one MDCX operation with the MGW. So we expect to see
5211 * one more MDCX during handover. */
5212 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5213
5214 var RSL_Message rsl;
5215 var PDU_ML3_NW_MS l3;
5216 var RslChannelNr new_chan_nr;
5217 var GsmArfcn arfcn;
5218 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
5219 l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
5220 if (not ischosen(l3.msgs.rrm.handoverCommand)) {
5221 setverdict(fail, "Expected handoverCommand");
5222 mtc.stop;
5223 }
5224 }
5225 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
5226 new_chan_nr, arfcn);
5227
5228 f_rslem_register(0, new_chan_nr, RSL1_PROC);
5229
5230 /* resume processing of RSL DChan messages, which was temporarily suspended
5231 * before performing a hand-over */
5232 f_rslem_resume(RSL1_PROC);
5233 RSL1.receive(tr_RSL_IPA_CRCX(new_chan_nr));
5234
5235 f_sleep(1.0);
5236
5237 /* Handover fails because no HANDO DET appears on the new lchan,
5238 * and the old lchan reports a Radio Link Failure. */
5239 RSL.send(ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
5240
5241 var PDU_BSSAP rx_clear_request;
5242 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5243 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5244 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5245
5246 var RR_Cause rr_cause := GSM48_RR_CAUSE_ABNORMAL_UNSPEC;
5247
5248 var MgcpCommand mgcp;
5249 interleave {
5250 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE(int2oct(enum2int(rr_cause), 1)))) {}
5251 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005252 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005253 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005254 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005255 }
5256 [] RSL1.receive(tr_RSL_DEACT_SACCH(new_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005257 [] RSL1.receive(tr_RSL_RF_CHAN_REL(new_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005258 RSL1.send(ts_RSL_RF_CHAN_REL_ACK(new_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005259 f_rslem_unregister(0, g_chan_nr, PT := RSL1_PROC);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005260 }
5261 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {}
5262 }
5263
5264 f_sleep(0.5);
5265 setverdict(pass);
5266}
5267testcase TC_ho_int_radio_link_failure() runs on test_CT {
5268 var MSC_ConnHdlr vc_conn;
5269 f_init(2, true);
5270 f_sleep(1.0);
5271
5272 f_ctrs_bsc_and_bts_init();
5273
5274 vc_conn := f_start_handler(refers(f_tc_ho_int_radio_link_failure));
5275 vc_conn.done;
5276
5277 /* from f_establish_fully() */
5278 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5279 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5280 /* from handover */
5281 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5282 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5283 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5284 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:stopped");
5285 f_ctrs_bsc_and_bts_verify();
5286 f_shutdown_helper();
5287}
5288
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005289/* Expecting MGCP to DLCX the endpoint's two connections: towards BTS and towards MSC */
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005290private function f_expect_dlcx_conns() runs on MSC_ConnHdlr {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005291 var MgcpCommand mgcp;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005292 var template MgcpResponse mgcp_resp;
5293 var MGCP_RecvFrom mrf;
5294 var template MgcpMessage msg_resp;
5295 var template MgcpMessage msg_dlcx := {
5296 command := tr_DLCX()
5297 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005298
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005299 if (g_pars.aoip) {
5300 MGCP.receive(tr_DLCX()) -> value mgcp {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005301 log("Got first DLCX: ", mgcp);
5302 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005303 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005304
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005305 MGCP.receive(tr_DLCX()) -> value mgcp {
5306 log("Got second DLCX: ", mgcp);
5307 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
5308 };
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005309 } else {
5310 /* For SCCPLite, BSC doesn't handle the MSC-side */
5311 MGCP_MULTI.receive(tr_MGCP_RecvFrom_any(msg_dlcx)) -> value mrf {
5312 log("Got first DLCX: ", mrf.msg.command);
5313 msg_resp := {
5314 response := ts_DLCX_ACK2(mrf.msg.command.line.trans_id)
5315 }
5316 MGCP_MULTI.send(t_MGCP_SendToMrf(mrf, msg_resp));
5317 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005318 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005319}
5320
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005321private function f_ho_out_of_this_bsc(template (omit) BSSMAP_oldToNewBSSIEs exp_oldToNewBSSIEs := omit) runs on MSC_ConnHdlr {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005322
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005323 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005324 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5325
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005326 BSSAP.receive(tr_BSSMAP_HandoverRequired(exp_oldToNewBSSIEs));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005327
5328 f_sleep(0.5);
5329 /* The MSC negotiates Handover Request and Handover Request Ack with
5330 * the other BSS and comes back with a BSSMAP Handover Command
5331 * containing an RR Handover Command coming from the target BSS... */
5332
5333 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5334 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5335 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5336 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5337 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5338
5339 /* expect the Handover Command to go out on RR */
5340 var RSL_Message rsl_ho_cmd
5341 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5342 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5343 var RSL_IE_Body rsl_ho_cmd_l3;
5344 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5345 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5346 setverdict(fail);
5347 } else {
5348 log("Found L3 Info: ", rsl_ho_cmd_l3);
5349 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5350 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5351 setverdict(fail);
5352 } else {
5353 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5354 setverdict(pass);
5355 }
5356 }
5357
5358 /* When the other BSS has reported a completed handover, this side is
5359 * torn down. */
5360
5361 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_HANDOVER_SUCCESSFUL;
5362 var BssmapCause cause := enum2int(cause_val);
5363 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5364
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005365 f_expect_dlcx_conns();
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005366
5367 interleave {
5368 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE));
5369 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr));
5370 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr));
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005371 [] BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005372 }
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005373 setverdict(pass);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005374}
5375
5376private function f_tc_ho_out_of_this_bsc(charstring id) runs on MSC_ConnHdlr {
5377 g_pars := f_gen_test_hdlr_pars();
5378 var PDU_BSSAP ass_req := f_gen_ass_req();
5379 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5380 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5381 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5382 f_establish_fully(ass_req, exp_compl);
5383
5384 f_ho_out_of_this_bsc();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005385}
5386testcase TC_ho_out_of_this_bsc() runs on test_CT {
5387 var MSC_ConnHdlr vc_conn;
5388
5389 f_init(1, true);
5390 f_sleep(1.0);
5391
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005392 f_ctrs_bsc_and_bts_init();
5393
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005394 vc_conn := f_start_handler(refers(f_tc_ho_out_of_this_bsc));
5395 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005396
5397 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5398 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5399 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5400 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5401 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5402 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed");
5403 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005404 f_shutdown_helper();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005405}
5406
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005407private function f_mo_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5408 template (value) RslLinkId link_id := ts_RslLinkID_DCCH(0),
Vadim Yanitskiy2ef6a2f2020-10-08 23:17:32 +07005409 template (present) OCT1 dlci := ?,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005410 octetstring l3 := '0123456789'O)
5411runs on MSC_ConnHdlr {
Neels Hofmeyr43654812020-09-25 01:35:35 +02005412 /* The old lchan and conn should still be active. See that arbitrary L3
5413 * is still going through. */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005414 rsl.send(ts_RSL_DATA_IND(g_chan_nr, link_id, l3));
Neels Hofmeyr43654812020-09-25 01:35:35 +02005415 var template PDU_BSSAP exp_data := {
5416 discriminator := '1'B,
5417 spare := '0000000'B,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005418 dlci := dlci,
5419 lengthIndicator := lengthof(l3),
Neels Hofmeyr43654812020-09-25 01:35:35 +02005420 pdu := {
5421 dtap := l3
5422 }
5423 };
5424 BSSAP.receive(exp_data);
5425 setverdict(pass);
5426}
5427
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005428private function f_mt_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5429 template (present) RslLinkId link_id := tr_RslLinkID_DCCH(0),
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005430 template (value) OCT1 dlci := '00'O,
5431 octetstring l3 := '0123456789'O)
5432runs on MSC_ConnHdlr {
5433 BSSAP.send(PDU_BSSAP:{
5434 discriminator := '1'B,
5435 spare := '0000000'B,
5436 dlci := dlci,
5437 lengthIndicator := lengthof(l3),
5438 pdu := {
5439 dtap := l3
5440 }
5441 });
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005442 rsl.receive(tr_RSL_DATA_REQ(g_chan_nr, link_id, l3));
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005443 setverdict(pass);
5444}
5445
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005446/* BSC asks for inter-BSC HO, but the MSC decides that it won't happen and
5447 * simply never sends a BSSMAP Handover Command. */
5448private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005449 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005450
5451 var PDU_BSSAP ass_req := f_gen_ass_req();
5452 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5453 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5454 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5455 f_establish_fully(ass_req, exp_compl);
5456
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005457 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005458 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5459
5460 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5461
5462 /* osmo-bsc should time out 10 seconds after the handover started.
5463 * Let's give it a bit extra. */
5464 f_sleep(15.0);
5465
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005466 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005467 f_sleep(1.0);
5468}
5469testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
5470 var MSC_ConnHdlr vc_conn;
5471
5472 f_init(1, true);
5473 f_sleep(1.0);
5474
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005475 f_ctrs_bsc_and_bts_init();
5476
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005477 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_msc_response));
5478 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005479
5480 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5481 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5482 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5483 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5484 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5485 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5486 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005487 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005488}
5489
5490/* BSC asks for inter-BSC HO, receives BSSMAP Handover Command, but MS reports
5491 * RR Handover Failure. */
5492private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005493 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005494
5495 var PDU_BSSAP ass_req := f_gen_ass_req();
5496 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5497 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5498 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5499 f_establish_fully(ass_req, exp_compl);
5500
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005501 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005502 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5503
5504 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5505
5506 f_sleep(0.5);
5507 /* The MSC negotiates Handover Request and Handover Request Ack with
5508 * the other BSS and comes back with a BSSMAP Handover Command
5509 * containing an RR Handover Command coming from the target BSS... */
5510
5511 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5512 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5513 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5514 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5515 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5516
5517 /* expect the Handover Command to go out on RR */
5518 var RSL_Message rsl_ho_cmd
5519 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5520 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5521 var RSL_IE_Body rsl_ho_cmd_l3;
5522 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5523 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5524 setverdict(fail);
5525 } else {
5526 log("Found L3 Info: ", rsl_ho_cmd_l3);
5527 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5528 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5529 setverdict(fail);
5530 } else {
5531 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5532 setverdict(pass);
5533 }
5534 }
5535
5536 f_sleep(0.2);
5537 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
5538
5539 /* Should tell the MSC about the failure */
5540 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5541
5542 f_sleep(1.0);
5543
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005544 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005545 f_sleep(1.0);
5546
5547 setverdict(pass);
5548 f_sleep(1.0);
5549}
5550testcase TC_ho_out_fail_rr_ho_failure() runs on test_CT {
5551 var MSC_ConnHdlr vc_conn;
5552
5553 f_init(1, true);
5554 f_sleep(1.0);
5555
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005556 f_ctrs_bsc_and_bts_init();
5557
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005558 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_rr_ho_failure));
5559 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005560
5561 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5562 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5563 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5564 f_ctrs_bsc_and_bts_add(0, "handover:failed");
5565 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5566 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:failed");
5567 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005568 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005569}
5570
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005571/* BSC asks for inter-BSC-out HO, receives BSSMAP Handover Command, but then no reply is received about HO outcome
5572 * (neither BSSMAP Clear Command for success nor RR Handover Failure). 48.008 3.1.5.3.3 "Abnormal Conditions" applies
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005573 * and the lchan is released. */
5574private function f_tc_ho_out_fail_no_result_after_ho_cmd(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005575 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005576
5577 var PDU_BSSAP ass_req := f_gen_ass_req();
5578 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5579 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5580 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5581 f_establish_fully(ass_req, exp_compl);
5582
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005583 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005584 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5585
5586 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5587
5588 f_sleep(0.5);
5589 /* The MSC negotiates Handover Request and Handover Request Ack with
5590 * the other BSS and comes back with a BSSMAP Handover Command
5591 * containing an RR Handover Command coming from the target BSS... */
5592
5593 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5594 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5595 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5596 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5597 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5598
5599 /* expect the Handover Command to go out on RR */
5600 var RSL_Message rsl_ho_cmd
5601 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5602 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5603 var RSL_IE_Body rsl_ho_cmd_l3;
5604 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5605 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5606 setverdict(fail);
5607 } else {
5608 log("Found L3 Info: ", rsl_ho_cmd_l3);
5609 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5610 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5611 setverdict(fail);
5612 } else {
5613 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5614 setverdict(pass);
5615 }
5616 }
5617
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005618 /* We get neither success nor failure report from the remote BSS. Eventually T8 times out and we run into 3GPP
5619 * TS 48.008 3.1.5.3.3 "Abnormal Conditions": Clear Request should go to the MSC, and RR should be released
5620 * after Clear Command */
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005621
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005622 var PDU_BSSAP rx_clear_request;
Neels Hofmeyre1797aa2019-07-09 19:34:04 +02005623 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5624 log("Got BSSMAP Clear Request");
5625 /* Instruct BSC to clear channel */
5626 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5627 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5628
5629 var MgcpCommand mgcp;
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005630 interleave {
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005631 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
5632 log("Got Deact SACCH");
5633 }
Harald Welte924b6ea2019-02-04 01:05:34 +01005634 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
Neels Hofmeyr211169d2018-11-07 00:37:29 +01005635 log("Got RR Release");
5636 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005637 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005638 log("Got RF Chan Rel");
5639 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005640 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005641 }
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005642 }
5643
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005644 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005645 BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005646
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005647 setverdict(pass);
5648 f_sleep(1.0);
5649}
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005650testcase TC_ho_out_fail_no_result_after_ho_cmd() runs on test_CT {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005651 var MSC_ConnHdlr vc_conn;
5652
5653 f_init(1, true);
5654 f_sleep(1.0);
5655
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005656 f_ctrs_bsc_and_bts_init();
5657
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005658 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_result_after_ho_cmd));
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005659 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005660
5661 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5662 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5663 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5664 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5665 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5666 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5667 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005668 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005669}
5670
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005671private function f_ho_into_this_bsc(charstring id, template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit) runs on MSC_ConnHdlr {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005672 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5673 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5674 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5675 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5676 * before we get started. */
5677 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5678 f_rslem_register(0, new_chan_nr);
5679 g_chan_nr := new_chan_nr;
5680 f_sleep(1.0);
5681
5682 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5683 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5684 activate(as_Media());
5685
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005686 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005687 f_gen_handover_req(aoip_tla := g_pars.host_aoip_tla,
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005688 oldToNewBSSIEs := oldToNewBSSIEs,
5689 enc := g_pars.encr)));
Harald Welte6811d102019-04-14 22:23:14 +02005690 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005691
5692 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5693
5694 var PDU_BSSAP rx_bssap;
5695 var octetstring ho_command_str;
5696
5697 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
Pau Espin Pedrol76ba5412019-06-10 11:00:33 +02005698
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005699 /* we're sure that the channel activation is done now, verify the encryption parameters in it */
5700 f_verify_encr_info(f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr));
5701
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005702 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5703 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5704 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5705 log("L3 Info in HO Request Ack is ", ho_command);
5706
5707 var GsmArfcn arfcn;
5708 var RslChannelNr actual_new_chan_nr;
5709 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5710 actual_new_chan_nr, arfcn);
5711
5712 if (actual_new_chan_nr != new_chan_nr) {
5713 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5714 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5715 setverdict(fail);
5716 return;
5717 }
5718 log("Handover Command chan_nr is", actual_new_chan_nr);
5719
5720 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5721 * tells the MS to handover to the new lchan. Here comes the new MS on
5722 * the new lchan with a Handover RACH: */
5723
5724 /* send handover detect */
5725
5726 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5727
5728 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5729
5730 /* send handover complete over the new channel */
5731
5732 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
5733 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
5734 enc_PDU_ML3_MS_NW(l3_tx)));
5735
5736 BSSAP.receive(tr_BSSMAP_HandoverComplete);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005737 setverdict(pass);
5738}
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005739
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005740private function f_tc_ho_into_this_bsc(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005741 var template PDU_ML3_NW_MS exp_rr_rel_tmpl;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005742 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit;
5743 if (not istemplatekind(g_pars.last_used_eutran_plmn, "omit")) {
5744 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005745 }
5746 if (g_pars.exp_fast_return) {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005747 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE_CellSelectInd;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005748 } else {
5749 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005750 }
5751 f_ho_into_this_bsc(id, oldToNewBSSIEs);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02005752 f_perform_clear(exp_rr_rel_tmpl := exp_rr_rel_tmpl);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005753 setverdict(pass);
5754}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005755function f_tc_ho_into_this_bsc_main(TestHdlrParams pars) runs on test_CT {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005756 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005757
5758 f_init(1, true);
5759 f_sleep(1.0);
5760
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005761 f_ctrs_bsc_and_bts_init();
5762
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005763 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5764 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005765
5766 vc_conn := f_start_handler(refers(f_tc_ho_into_this_bsc), pars);
5767 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005768
5769 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5770 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5771 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5772 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed");
5773 f_ctrs_bsc_and_bts_verify();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005774}
5775
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005776testcase TC_ho_into_this_bsc() runs on test_CT {
5777 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5778 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005779 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005780}
5781
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005782function f_tc_ho_into_this_bsc_a5(OCT1 encr_alg) runs on test_CT {
5783 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5784 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5785 f_tc_ho_into_this_bsc_main(pars);
5786 f_shutdown_helper();
5787}
5788
5789testcase TC_ho_into_this_bsc_a5_0() runs on test_CT {
5790 f_tc_ho_into_this_bsc_a5('01'O);
5791}
5792
5793testcase TC_ho_into_this_bsc_a5_1() runs on test_CT {
5794 f_tc_ho_into_this_bsc_a5('02'O);
5795}
5796
5797testcase TC_ho_into_this_bsc_a5_3() runs on test_CT {
5798 f_tc_ho_into_this_bsc_a5('08'O);
5799}
5800
5801testcase TC_ho_into_this_bsc_a5_4() runs on test_CT {
5802 f_tc_ho_into_this_bsc_a5('10'O);
5803}
5804
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005805testcase TC_ho_into_this_bsc_tla_v6() runs on test_CT {
5806 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5807 pars.host_aoip_tla := "::6";
5808 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005809 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005810}
5811
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005812/* Similar to TC_ho_into_this_bsc, but when in SRVCC, HO Req contains "Old BSS
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005813 to New BSS Information" IE with "Last Used E-UTRAN PLMN Id", which, when the
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005814 channel is later released (RR CHannel Release), should trigger inclusion of
5815 IE "Cell Selection Indicator after Release of all TCH and SDCCH" with E-UTRAN
5816 neighbors. */
5817testcase TC_srvcc_eutran_to_geran() runs on test_CT {
5818 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5819 pars.last_used_eutran_plmn := '323454'O;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005820 pars.exp_fast_return := true;
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005821 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005822
5823 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted");
5824 f_ctrs_bsc_and_bts_add(0, "srvcc:completed");
5825 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005826 f_shutdown_helper();
5827}
5828
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005829/* Same as TC_srvcc_eutran_to_geran, but test explicitly forbiding fast return
5830 on the BTS. As a result, RR Release shouldn't contain the EUTRAN neighbor
5831 list when the channel is released. */
5832testcase TC_srvcc_eutran_to_geran_forbid_fast_return() runs on test_CT {
5833 f_init_vty();
5834 f_vty_allow_srvcc_fast_return(true, 0)
5835
5836 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5837 pars.last_used_eutran_plmn := '323454'O;
5838 pars.exp_fast_return := false;
5839 f_tc_ho_into_this_bsc_main(pars);
5840 f_vty_allow_srvcc_fast_return(false, 0);
5841 f_shutdown_helper();
5842}
5843
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005844private function f_tc_srvcc_eutran_to_geran_ho_out(charstring id) runs on MSC_ConnHdlr {
5845 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs;
5846 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
5847 f_ho_into_this_bsc(id, oldToNewBSSIEs);
5848 f_ho_out_of_this_bsc(oldToNewBSSIEs);
5849 setverdict(pass);
5850}
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005851
5852private function f_tc_srvcc_eutran_to_geran_ho_out_main(boolean disable_fast_return)
5853 runs on test_CT {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005854 var MSC_ConnHdlr vc_conn;
5855 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5856
5857 f_init(1, true);
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005858 if (disable_fast_return) {
5859 f_vty_allow_srvcc_fast_return(true, 0);
5860 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005861 f_sleep(1.0);
5862
5863 f_ctrs_bsc_and_bts_init();
5864
5865 pars.last_used_eutran_plmn := '323454'O;
5866 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5867 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
5868
5869 vc_conn := f_start_handler(refers(f_tc_srvcc_eutran_to_geran_ho_out), pars);
5870 vc_conn.done;
5871
5872 f_ctrs_bsc_and_bts_add(0, "handover:attempted", 2);
5873 f_ctrs_bsc_and_bts_add(0, "handover:completed", 2);
5874 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted", 1);
5875 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed", 1);
5876 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted", 1);
5877 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed", 1);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005878
5879 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted", 1);
5880 f_ctrs_bsc_and_bts_add(0, "srvcc:completed", 1);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005881 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005882
5883 if (disable_fast_return) {
5884 f_vty_allow_srvcc_fast_return(false, 0);
5885 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005886 f_shutdown_helper();
5887}
5888
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005889/* First, HO into BSC from EUTRAN (SRVCC): HO Request contains "Old BSS to New
5890 BSS Information" IE with "Last Used E-UTRAN PLMN Id".
5891 Second, HO to another BSC: HO Required contains "Old BSS to New BSS Information"
5892 IE with "Last Used E-UTRAN PLMN Id" from first step. */
5893testcase TC_srvcc_eutran_to_geran_ho_out() runs on test_CT {
5894 f_tc_srvcc_eutran_to_geran_ho_out_main(false);
5895}
5896/* Validate subsequent intra-GSM-HO works the same (with OldBSSToNewBSSInfo IE)
5897 * independently of fast-reture allowed/forbidden in local BTS */
5898testcase TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() runs on test_CT {
5899 f_tc_srvcc_eutran_to_geran_ho_out_main(true);
5900}
5901
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005902private function f_tc_ho_in_fail_msc_clears(charstring id) runs on MSC_ConnHdlr {
5903 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5904 f_rslem_register(0, new_chan_nr);
5905 g_chan_nr := new_chan_nr;
5906 f_sleep(1.0);
5907
5908 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5909 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5910 activate(as_Media());
5911
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005912 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005913 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005914 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005915
5916 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5917
5918 var PDU_BSSAP rx_bssap;
5919 var octetstring ho_command_str;
5920
5921 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5922
5923 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5924 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5925 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5926 log("L3 Info in HO Request Ack is ", ho_command);
5927
5928 var GsmArfcn arfcn;
5929 var RslChannelNr actual_new_chan_nr;
5930 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5931 actual_new_chan_nr, arfcn);
5932
5933 if (actual_new_chan_nr != new_chan_nr) {
5934 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5935 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5936 setverdict(fail);
5937 return;
5938 }
5939 log("Handover Command chan_nr is", actual_new_chan_nr);
5940
Neels Hofmeyr61ca08d2019-05-06 23:52:22 +02005941 /* For deterministic test results, give some time for the MGW endpoint to be configured */
5942 f_sleep(1.0);
5943
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005944 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5945 * tells the MS to handover to the new lchan. In this case, the MS
5946 * reports a Handover Failure to the old BSS, which forwards a BSSMAP
5947 * Handover Failure to the MSC. The procedure according to 3GPP TS
5948 * 48.008 3.1.5.3.2 "Handover Failure" is then that the MSC sends a
5949 * BSSMAP Clear Command: */
5950
5951 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5952 var BssmapCause cause := enum2int(cause_val);
5953 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5954
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005955 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005956 BSSAP.receive(tr_BSSMAP_ClearComplete);
5957
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005958 setverdict(pass);
5959 f_sleep(1.0);
5960
5961 setverdict(pass);
5962}
5963testcase TC_ho_in_fail_msc_clears() runs on test_CT {
5964 var MSC_ConnHdlr vc_conn;
5965 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5966
5967 f_init(1, true);
5968 f_sleep(1.0);
5969
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005970 f_ctrs_bsc_and_bts_init();
5971
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005972 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5973 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005974
5975 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears), pars);
5976 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005977
5978 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5979 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5980 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5981 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5982 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005983 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005984}
5985
5986private function f_tc_ho_in_fail_msc_clears_after_ho_detect(charstring id) runs on MSC_ConnHdlr {
5987 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5988 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5989 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5990 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5991 * before we get started. */
5992 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5993 f_rslem_register(0, new_chan_nr);
5994 g_chan_nr := new_chan_nr;
5995 f_sleep(1.0);
5996
5997 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5998 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5999 activate(as_Media());
6000
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006001 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006002 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006003 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006004
6005 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6006
6007 var PDU_BSSAP rx_bssap;
6008 var octetstring ho_command_str;
6009
6010 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6011
6012 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6013 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6014 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6015 log("L3 Info in HO Request Ack is ", ho_command);
6016
6017 var GsmArfcn arfcn;
6018 var RslChannelNr actual_new_chan_nr;
6019 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6020 actual_new_chan_nr, arfcn);
6021
6022 if (actual_new_chan_nr != new_chan_nr) {
6023 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6024 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6025 setverdict(fail);
6026 return;
6027 }
6028 log("Handover Command chan_nr is", actual_new_chan_nr);
6029
6030 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6031 * tells the MS to handover to the new lchan. Here comes the new MS on
6032 * the new lchan with a Handover RACH: */
6033
6034 /* send handover detect */
6035
6036 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
6037
6038 BSSAP.receive(tr_BSSMAP_HandoverDetect);
6039
6040 /* The MSC chooses to clear the connection now, maybe we got the
6041 * Handover RACH on the new cell but the MS still signaled Handover
6042 * Failure to the old BSS? */
6043
6044 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6045 var BssmapCause cause := enum2int(cause_val);
6046 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6047
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006048 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006049 BSSAP.receive(tr_BSSMAP_ClearComplete);
6050
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006051 f_sleep(1.0);
6052}
6053testcase TC_ho_in_fail_msc_clears_after_ho_detect() runs on test_CT {
6054 var MSC_ConnHdlr vc_conn;
6055 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6056
6057 f_init(1, true);
6058 f_sleep(1.0);
6059
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006060 f_ctrs_bsc_and_bts_init();
6061
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006062 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6063 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006064
6065 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears_after_ho_detect), pars);
6066 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006067
6068 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6069 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
6070 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6071 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
6072 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006073 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006074}
6075
6076/* The new BSS's lchan times out before the MSC decides that handover failed. */
6077private function f_tc_ho_in_fail_no_detect(charstring id) runs on MSC_ConnHdlr {
6078 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6079 f_rslem_register(0, new_chan_nr);
6080 g_chan_nr := new_chan_nr;
6081 f_sleep(1.0);
6082
6083 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6084 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6085 activate(as_Media());
6086
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006087 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006088 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006089 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006090
6091 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6092
6093 var PDU_BSSAP rx_bssap;
6094 var octetstring ho_command_str;
6095
6096 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6097
6098 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6099 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6100 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6101 log("L3 Info in HO Request Ack is ", ho_command);
6102
6103 var GsmArfcn arfcn;
6104 var RslChannelNr actual_new_chan_nr;
6105 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6106 actual_new_chan_nr, arfcn);
6107
6108 if (actual_new_chan_nr != new_chan_nr) {
6109 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6110 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6111 setverdict(fail);
6112 return;
6113 }
6114 log("Handover Command chan_nr is", actual_new_chan_nr);
6115
6116 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6117 * tells the MS to handover to the new lchan. But the MS never shows up
6118 * on the new lchan. */
6119
6120 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6121
6122 /* Did osmo-bsc also send a Clear Request? */
6123 timer T := 0.5;
6124 T.start;
6125 alt {
6126 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
6127 [] T.timeout { }
6128 }
6129
6130 /* MSC plays along with a Clear Command (no matter whether osmo-bsc
6131 * asked for it, this is a Handover Failure after all). */
6132
6133 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6134 var BssmapCause cause := enum2int(cause_val);
6135 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6136
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006137 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006138 BSSAP.receive(tr_BSSMAP_ClearComplete);
6139
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006140 f_sleep(1.0);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006141}
6142testcase TC_ho_in_fail_no_detect() runs on test_CT {
6143 var MSC_ConnHdlr vc_conn;
6144 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6145
6146 f_init(1, true);
6147 f_sleep(1.0);
6148
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006149 f_ctrs_bsc_and_bts_init();
6150
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006151 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6152 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006153
6154 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect), pars);
6155 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006156
6157 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6158 f_ctrs_bsc_and_bts_add(0, "handover:error");
6159 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6160 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6161 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006162 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006163}
6164
6165/* Same as f_tc_ho_in_fail_no_detect, but MSC fails to send a Clear Command */
6166private function f_tc_ho_in_fail_no_detect2(charstring id) runs on MSC_ConnHdlr {
6167 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6168 f_rslem_register(0, new_chan_nr);
6169 g_chan_nr := new_chan_nr;
6170 f_sleep(1.0);
6171
6172 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6173 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6174 activate(as_Media());
6175
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006176 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006177 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006178 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006179
6180 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6181
6182 var PDU_BSSAP rx_bssap;
6183 var octetstring ho_command_str;
6184
6185 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6186
6187 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6188 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6189 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6190 log("L3 Info in HO Request Ack is ", ho_command);
6191
6192 var GsmArfcn arfcn;
6193 var RslChannelNr actual_new_chan_nr;
6194 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6195 actual_new_chan_nr, arfcn);
6196
6197 if (actual_new_chan_nr != new_chan_nr) {
6198 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6199 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6200 setverdict(fail);
6201 return;
6202 }
6203 log("Handover Command chan_nr is", actual_new_chan_nr);
6204
6205 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6206 * tells the MS to handover to the new lchan. But the MS never shows up
6207 * on the new lchan. */
6208
6209 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6210
6211 /* MSC plays dumb and sends no Clear Command */
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006212 var PDU_BSSAP rx_clear_request;
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02006213
6214 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request {
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006215 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
6216 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6217 };
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006218 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006219 BSSAP.receive(tr_BSSMAP_ClearComplete);
6220
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006221 f_sleep(1.0);
6222}
6223testcase TC_ho_in_fail_no_detect2() runs on test_CT {
6224 var MSC_ConnHdlr vc_conn;
6225 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6226
6227 f_init(1, true);
6228 f_sleep(1.0);
6229
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006230 f_ctrs_bsc_and_bts_init();
6231
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006232 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6233 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006234
6235 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect2), pars);
6236 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006237
6238 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6239 f_ctrs_bsc_and_bts_add(0, "handover:error");
6240 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6241 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6242 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006243 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006244}
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01006245
Neels Hofmeyr91401012019-07-11 00:42:35 +02006246type record of charstring Commands;
6247
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006248private function f_bts_0_cfg(TELNETasp_PT pt, Commands cmds := {})
Neels Hofmeyr91401012019-07-11 00:42:35 +02006249{
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006250 f_vty_enter_cfg_bts(pt, 0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006251 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006252 f_vty_transceive(pt, cmds[i]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006253 }
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006254 f_vty_transceive(pt, "end");
Neels Hofmeyr91401012019-07-11 00:42:35 +02006255}
6256
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01006257private function f_cs7_inst_0_cfg(TELNETasp_PT pt, Commands cmds := {})
6258{
6259 f_vty_enter_cfg_cs7_inst(pt, 0);
6260 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
6261 f_vty_transceive(pt, cmds[i]);
6262 }
6263 f_vty_transceive(pt, "end");
6264}
6265
Neels Hofmeyr91401012019-07-11 00:42:35 +02006266private function f_probe_for_handover(charstring log_label,
6267 charstring log_descr,
6268 charstring handover_vty_cmd,
6269 boolean expect_handover,
6270 boolean is_inter_bsc_handover := false)
6271runs on MSC_ConnHdlr
6272{
Neels Hofmeyrb3fc8982020-05-11 00:16:42 +02006273 /* We're going to thwart any and all handover attempts, just be ready to handle (and ignore) handover target
6274 * lchans to be established on bts 1 or bts 2. */
6275 f_rslem_suspend(RSL1_PROC);
6276 f_rslem_suspend(RSL2_PROC);
6277
Neels Hofmeyr91401012019-07-11 00:42:35 +02006278 var RSL_Message rsl;
6279
6280 var charstring log_msg := " (expecting handover)"
6281 if (not expect_handover) {
6282 log_msg := " (expecting NO handover)";
6283 }
6284 log("f_probe_for_handover starting: " & log_label & ": " & log_descr & log_msg);
6285 f_vty_transceive(BSCVTY, handover_vty_cmd);
6286
Neels Hofmeyr91401012019-07-11 00:42:35 +02006287 timer T := 2.0;
6288 T.start;
6289
6290 alt {
6291 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
6292 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
6293 log("Rx L3 from net: ", l3);
6294 if (ischosen(l3.msgs.rrm.handoverCommand)) {
6295 var RslChannelNr new_chan_nr;
6296 var GsmArfcn arfcn;
6297 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
6298 new_chan_nr, arfcn);
6299 log("Handover to new chan ", new_chan_nr, " on ARFCN ", arfcn);
6300 log(l3.msgs.rrm.handoverCommand);
6301
6302 /* Need to register for new lchan on new BTS -- it's either bts 1 or bts 2. It doesn't really
6303 * matter on which BTS it really is, we're not going to follow through an entire handover
6304 * anyway. */
6305 f_rslem_register(0, new_chan_nr, RSL1_PROC);
6306 f_rslem_resume(RSL1_PROC);
6307 f_rslem_register(0, new_chan_nr, RSL2_PROC);
6308 f_rslem_resume(RSL2_PROC);
6309
6310 if (expect_handover and not is_inter_bsc_handover) {
6311 setverdict(pass);
6312 log("f_probe_for_handover(" & log_label & "): Got RSL Handover Command as expected.");
6313 } else {
6314 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got RSL Handover Command. "
6315 & log_label & ": " & log_descr);
6316 }
6317
6318 log("f_probe_for_handover(" & log_label & "): Ending the test: Handover Failure stops the procedure.");
6319 /* osmo-bsc has triggered Handover. That's all we need to know for this test, reply with
6320 * Handover Failure. */
6321 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
6322
6323 /* target BTS is told to release lchan again; don't care which BTS nor what messages. */
6324 f_sleep(0.5);
6325 RSL1.clear;
6326 RSL2.clear;
6327 log("f_probe_for_handover(" & log_label & "): done (got RSL Handover Command)");
6328 break;
6329 } else {
6330 repeat;
6331 }
6332 }
6333 [] BSSAP.receive(tr_BSSMAP_HandoverRequired) {
6334 if (expect_handover and is_inter_bsc_handover) {
6335 setverdict(pass);
6336 log("f_probe_for_handover(" & log_label & "): Got BSSMAP Handover Required as expected.");
6337 } else {
6338 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got BSSMAP Handover Required. "
6339 & log_label & ": " & log_descr);
6340 }
6341
6342 log("f_probe_for_handover(" & log_label & "): done (got BSSMAP Handover Required)");
6343
6344 /* Note: f_tc_ho_neighbor_config_start() sets T7, the timeout for BSSMAP Handover Required, to
6345 * 1 second. There is no legal way to quickly abort a handover after a BSSMAP Handover Required,
6346 * setting a short timeout and waiting is the only way. */
6347 log("f_probe_for_handover(" & log_label & "): waiting for inter-BSC HO to time out...");
6348 f_sleep(1.5);
6349 log("f_probe_for_handover(" & log_label & "): ...done");
6350
6351 break;
6352 }
6353 [] T.timeout {
6354 if (expect_handover) {
6355 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected Handover, but got none. "
6356 & log_label & ": " & log_descr);
6357 } else {
6358 setverdict(pass);
6359 log("f_probe_for_handover(" & log_label & "): Got no Handover, as expected.");
6360 }
6361 log("f_probe_for_handover(" & log_label & "): done (got no Handover)");
6362 break;
6363 }
6364 }
6365
6366 f_rslem_resume(RSL1_PROC);
6367 f_rslem_resume(RSL2_PROC);
6368 f_sleep(3.0);
6369 RSL.clear;
6370
6371 log("f_probe_for_handover(" & log_label & "): done clearing");
6372}
6373
6374/* Test the effect of various neighbor configuration scenarios:
6375 *
6376 * To avoid complexity, block off any actual handover operation, and always remain on the lchan at bts 0.
6377 * Reconfigure the neighbors for bts 0, trigger a Handover, and probe whether osmo-bsc does or doesn't start HO.
6378 */
6379private function f_tc_ho_neighbor_config_start() runs on MSC_ConnHdlr {
6380 g_pars := f_gen_test_hdlr_pars();
6381 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
6382 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006383
6384 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
6385 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
6386
6387 /* Establish lchan at bts 0 */
6388 f_establish_fully(ass_cmd, exp_compl);
6389
6390 /* Shorten the inter-BSC Handover timeout, to not wait so long for inter-BSC Handovers */
6391 f_vty_enter_cfg_network(BSCVTY);
6392 f_vty_transceive(BSCVTY, "timer T7 1");
6393 f_vty_transceive(BSCVTY, "end");
6394}
6395
6396private function f_tc_ho_neighbor_config_1(charstring id) runs on MSC_ConnHdlr {
6397 f_tc_ho_neighbor_config_start();
6398
6399 /*
6400 * bts 0 ARFCN 871 BSIC 10
6401 * bts 1 ARFCN 871 BSIC 11
6402 * bts 2 ARFCN 871 BSIC 12
6403 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6404 */
6405
6406 log("f_tc_ho_neighbor_config: 1. No 'neighbor' config");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006407 f_bts_0_cfg(BSCVTY, {"no neighbors"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006408 f_probe_for_handover("1.a", "HO to bts 1 works, implicitly listed as neighbor (legacy behavior when none are configured)",
6409 "handover any to arfcn 871 bsic 11",
6410 true);
6411
6412 f_probe_for_handover("1.b", "HO to unknown cell does not start",
6413 "handover any to arfcn 13 bsic 39",
6414 false);
6415
6416 f_probe_for_handover("1.c", "HO to 871-12 is ambiguous = error",
6417 "handover any to arfcn 871 bsic 12",
6418 false);
6419
6420 f_probe_for_handover("1.d", "HO to 871-11 still works (verify that this test properly cleans up)",
6421 "handover any to arfcn 871 bsic 11",
6422 true);
6423}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006424testcase TC_ho_neighbor_config_1() runs on test_CT {
6425 var MSC_ConnHdlr vc_conn;
6426 f_init(3, true, guard_timeout := 60.0);
6427 f_sleep(1.0);
6428 f_ctrs_bsc_and_bts_init();
6429 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_1));
6430 vc_conn.done;
6431
6432 /* f_tc_ho_neighbor_config_start() */
6433 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6434 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6435
6436 /* 1.a */
6437 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6438 * handover quickly by sending a Handover Failure message. */
6439 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6440 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6441 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6442 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6443
6444 /* 1.b */
6445 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6446 f_ctrs_bsc_and_bts_add(0, "handover:error");
6447
6448 /* 1.c */
6449 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6450 f_ctrs_bsc_and_bts_add(0, "handover:error");
6451
6452 /* 1.d */
6453 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6454 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6455 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6456 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6457
6458 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006459 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006460}
6461
Neels Hofmeyr91401012019-07-11 00:42:35 +02006462private function f_tc_ho_neighbor_config_2(charstring id) runs on MSC_ConnHdlr {
6463 f_tc_ho_neighbor_config_start();
6464
6465 /*
6466 * bts 0 ARFCN 871 BSIC 10
6467 * bts 1 ARFCN 871 BSIC 11
6468 * bts 2 ARFCN 871 BSIC 12
6469 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6470 */
6471
6472 log("f_tc_ho_neighbor_config: 2. explicit local neighbor: 'neighbor bts 1'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006473 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006474 f_sleep(0.5);
6475
6476 f_probe_for_handover("2.a", "HO to bts 1 works, explicitly listed as neighbor",
6477 "handover any to arfcn 871 bsic 11",
6478 true);
6479
6480 f_probe_for_handover("2.b", "HO to bts 2 doesn't work, not listed as neighbor",
6481 "handover any to arfcn 871 bsic 12",
6482 false);
6483}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006484testcase TC_ho_neighbor_config_2() runs on test_CT {
6485 var MSC_ConnHdlr vc_conn;
6486 f_init(3, true, guard_timeout := 50.0);
6487 f_sleep(1.0);
6488 f_ctrs_bsc_and_bts_init();
6489 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_2));
6490 vc_conn.done;
6491
6492 /* f_tc_ho_neighbor_config_start() */
6493 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6494 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6495
6496 /* 2.a */
6497 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6498 * handover quickly by sending a Handover Failure message. */
6499 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6500 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6501 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6502 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6503
6504 /* 2.b */
6505 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6506 f_ctrs_bsc_and_bts_add(0, "handover:error");
6507
6508 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006509 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006510}
6511
Neels Hofmeyr91401012019-07-11 00:42:35 +02006512private function f_tc_ho_neighbor_config_3(charstring id) runs on MSC_ConnHdlr {
6513 f_tc_ho_neighbor_config_start();
6514
6515 /*
6516 * bts 0 ARFCN 871 BSIC 10
6517 * bts 1 ARFCN 871 BSIC 11
6518 * bts 2 ARFCN 871 BSIC 12
6519 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6520 */
6521
6522 log("f_tc_ho_neighbor_config: 3. explicit local neighbor: 'neighbor bts 2'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006523 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006524 f_sleep(0.5);
6525
6526 f_probe_for_handover("3.a", "HO to bts 1 doesn't work, not listed as neighbor",
6527 "handover any to arfcn 871 bsic 11",
6528 false);
6529 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",
6530 "handover any to arfcn 871 bsic 12",
6531 true);
6532}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006533testcase TC_ho_neighbor_config_3() runs on test_CT {
6534 var MSC_ConnHdlr vc_conn;
6535 f_init(3, true, guard_timeout := 50.0);
6536 f_sleep(1.0);
6537 f_ctrs_bsc_and_bts_init();
6538 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_3));
6539 vc_conn.done;
6540
6541 /* f_tc_ho_neighbor_config_start() */
6542 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6543 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6544
6545 /* 3.a */
6546 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6547 f_ctrs_bsc_and_bts_add(0, "handover:error");
6548
6549 /* 3.b */
6550 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6551 * handover quickly by sending a Handover Failure message. */
6552 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6553 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6554 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6555 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6556
6557 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006558 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006559}
6560
Neels Hofmeyr91401012019-07-11 00:42:35 +02006561private function f_tc_ho_neighbor_config_4(charstring id) runs on MSC_ConnHdlr {
6562 f_tc_ho_neighbor_config_start();
6563
6564 /*
6565 * bts 0 ARFCN 871 BSIC 10
6566 * bts 1 ARFCN 871 BSIC 11
6567 * bts 2 ARFCN 871 BSIC 12
6568 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6569 */
6570
6571 log("f_tc_ho_neighbor_config: 4. explicit remote neighbor: 'neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006572 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006573 f_sleep(0.5);
6574
6575 f_probe_for_handover("4.a", "HO to bts 1 doesn't work, not listed as neighbor",
6576 "handover any to arfcn 871 bsic 11",
6577 false);
6578 f_probe_for_handover("4.b", "HO to bts 2 doesn't work, not listed as neighbor",
6579 "handover any to arfcn 871 bsic 12",
6580 false);
6581 f_probe_for_handover("4.c", "HO to 123-45 triggers inter-BSC HO",
6582 "handover any to arfcn 123 bsic 45",
6583 true, true);
6584}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006585testcase TC_ho_neighbor_config_4() runs on test_CT {
6586 var MSC_ConnHdlr vc_conn;
6587 f_init(3, true, guard_timeout := 50.0);
6588 f_sleep(1.0);
6589 f_ctrs_bsc_and_bts_init();
6590 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_4));
6591 vc_conn.done;
6592
6593 /* f_tc_ho_neighbor_config_start() */
6594 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6595 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6596
6597 /* 4.a */
6598 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6599 f_ctrs_bsc_and_bts_add(0, "handover:error");
6600
6601 /* 4.b */
6602 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6603 f_ctrs_bsc_and_bts_add(0, "handover:error");
6604
6605 /* 4.c */
6606 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6607 * handover quickly by timing out after the Handover Required message */
6608 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6609 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6610 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6611 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6612
6613 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006614 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006615}
6616
Neels Hofmeyr91401012019-07-11 00:42:35 +02006617private function f_tc_ho_neighbor_config_5(charstring id) runs on MSC_ConnHdlr {
6618 f_tc_ho_neighbor_config_start();
6619
6620 /*
6621 * bts 0 ARFCN 871 BSIC 10
6622 * bts 1 ARFCN 871 BSIC 11
6623 * bts 2 ARFCN 871 BSIC 12
6624 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6625 */
6626
6627 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 +02006628 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006629 f_sleep(0.5);
6630
6631 f_probe_for_handover("5.a", "HO to 871-12 triggers inter-BSC HO (ignoring local cells with same ARFCN+BSIC)",
6632 "handover any to arfcn 871 bsic 12",
6633 true, true);
6634}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006635testcase TC_ho_neighbor_config_5() runs on test_CT {
6636 var MSC_ConnHdlr vc_conn;
6637 f_init(3, true);
6638 f_sleep(1.0);
6639 f_ctrs_bsc_and_bts_init();
6640 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_5));
6641 vc_conn.done;
6642
6643 /* f_tc_ho_neighbor_config_start() */
6644 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6645 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6646
6647 /* 5 */
6648 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6649 * handover quickly by timing out after the Handover Required message */
6650 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6651 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6652 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6653 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6654
6655 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006656 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006657}
6658
Neels Hofmeyr91401012019-07-11 00:42:35 +02006659private function f_tc_ho_neighbor_config_6(charstring id) runs on MSC_ConnHdlr {
6660 f_tc_ho_neighbor_config_start();
6661
6662 /*
6663 * bts 0 ARFCN 871 BSIC 10
6664 * bts 1 ARFCN 871 BSIC 11
6665 * bts 2 ARFCN 871 BSIC 12
6666 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6667 */
6668
6669 log("f_tc_ho_neighbor_config: 6. config error: explicit local and remote neighbors with ambiguous ARFCN+BSIC:"
6670 & " 'neighbor bts 2; neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006671 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006672 f_sleep(0.5);
6673
6674 f_probe_for_handover("6.a", "HO to 871-12 is ambiguous = error",
6675 "handover any to arfcn 871 bsic 12",
6676 false);
6677}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006678testcase TC_ho_neighbor_config_6() runs on test_CT {
6679 var MSC_ConnHdlr vc_conn;
6680 f_init(3, true);
6681 f_sleep(1.0);
6682 f_ctrs_bsc_and_bts_init();
6683 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_6));
6684 vc_conn.done;
6685
6686 /* f_tc_ho_neighbor_config_start() */
6687 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6688 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6689
6690 /* 6.a */
6691 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6692 * handover quickly by timing out after the Handover Required message */
6693 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6694 f_ctrs_bsc_and_bts_add(0, "handover:error");
6695
6696 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006697 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006698}
6699
Neels Hofmeyr91401012019-07-11 00:42:35 +02006700private function f_tc_ho_neighbor_config_7(charstring id) runs on MSC_ConnHdlr {
6701 f_tc_ho_neighbor_config_start();
6702
6703 /*
6704 * bts 0 ARFCN 871 BSIC 10
6705 * bts 1 ARFCN 871 BSIC 11
6706 * bts 2 ARFCN 871 BSIC 12
6707 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6708 */
6709
6710 log("f_tc_ho_neighbor_config: 7. explicit local and remote neighbors:"
6711 & " 'neighbor bts 2; neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006712 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006713 f_sleep(0.5);
6714
6715 f_probe_for_handover("7.a", "HO to 871-12 does HO to bts 2",
6716 "handover any to arfcn 871 bsic 12",
6717 true);
6718 f_probe_for_handover("7.b", "HO to 123-45 triggers inter-BSC HO",
6719 "handover any to arfcn 123 bsic 45",
6720 true, true);
6721}
Neels Hofmeyr91401012019-07-11 00:42:35 +02006722testcase TC_ho_neighbor_config_7() runs on test_CT {
6723 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf2b88032020-06-16 00:35:04 +02006724 f_init(3, true, guard_timeout := 50.0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006725 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006726 f_ctrs_bsc_and_bts_init();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006727 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_7));
6728 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006729
6730 /* f_tc_ho_neighbor_config_start() */
6731 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6732 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6733
6734 /* 7.a */
6735 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6736 * handover quickly by sending a Handover Failure message. */
6737 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6738 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6739 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6740 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6741
6742 /* 7.b */
6743 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6744 * handover quickly by timing out after the Handover Required message */
6745 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6746 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6747 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6748 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6749
6750 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006751 f_shutdown_helper();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006752}
6753
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006754/* OS#3041: Open and close N connections in a normal fashion, and expect no
6755 * BSSMAP Reset just because of that. */
6756testcase TC_bssap_rlsd_does_not_cause_bssmap_reset() runs on test_CT {
6757 var default d;
6758 var integer i;
6759 var DchanTuple dt;
6760
6761 f_init();
6762
6763 /* Wait for initial BSSMAP Reset to pass */
6764 f_sleep(4.0);
6765
6766 d := activate(no_bssmap_reset());
6767
6768 /* Setup up a number of connections and RLSD them again from the MSC
6769 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6770 * Let's do it some more times for good measure. */
Harald Weltec3260d92018-06-11 17:48:16 +02006771 for (i := 0; i < 4; i := i+1) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006772 /* Since we're doing a lot of runs, give each one a fresh
6773 * T_guard from the top. */
6774 T_guard.start;
6775
6776 /* Setup a BSSAP connection and clear it right away. This is
6777 * the MSC telling the BSC about a planned release, it's not an
6778 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006779 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006780
6781 /* MSC disconnects (RLSD). */
6782 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
6783 }
6784
6785 /* In the buggy behavior, a timeout of 2 seconds happens between above
6786 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6787 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6788 f_sleep(4.0);
6789
6790 deactivate(d);
6791 f_shutdown_helper();
6792}
Harald Welte552620d2017-12-16 23:21:36 +01006793
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006794/* OS#3041: Open and close N connections in a normal fashion, and expect no
6795 * BSSMAP Reset just because of that. Invoke the release by a BSSMAP Clear from
6796 * the MSC. */
6797testcase TC_bssmap_clear_does_not_cause_bssmap_reset() runs on test_CT {
6798 var default d;
6799 var integer i;
6800 var DchanTuple dt;
6801 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006802 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_CALL_CONTROL;
6803 var BssmapCause cause := enum2int(cause_val);
6804
6805 f_init();
6806
6807 /* Wait for initial BSSMAP Reset to pass */
6808 f_sleep(4.0);
6809
6810 d := activate(no_bssmap_reset());
6811
6812 /* Setup up a number of connections and RLSD them again from the MSC
6813 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6814 * Let's do it some more times for good measure. */
6815 for (i := 0; i < 8; i := i+1) {
6816 /* Since we're doing a lot of runs, give each one a fresh
6817 * T_guard from the top. */
6818 T_guard.start;
6819
6820 /* Setup a BSSAP connection and clear it right away. This is
6821 * the MSC telling the BSC about a planned release, it's not an
6822 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006823 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006824
6825 /* Instruct BSC to clear channel */
6826 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6827
6828 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006829 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006830 }
6831
6832 /* In the buggy behavior, a timeout of 2 seconds happens between above
6833 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6834 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6835 f_sleep(4.0);
6836
6837 deactivate(d);
6838 f_shutdown_helper();
6839}
6840
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006841/* OS#3041: Open and close N connections in a normal fashion, and expect no
6842 * BSSMAP Reset just because of that. Close connections from the MS side with a
6843 * Release Ind on RSL. */
6844testcase TC_ms_rel_ind_does_not_cause_bssmap_reset() runs on test_CT {
6845 var default d;
6846 var integer i;
6847 var DchanTuple dt;
6848 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006849 var integer j;
6850
6851 f_init();
6852
6853 /* Wait for initial BSSMAP Reset to pass */
6854 f_sleep(4.0);
6855
6856 d := activate(no_bssmap_reset());
6857
6858 /* Setup up a number of connections and RLSD them again from the MSC
6859 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6860 * Let's do it some more times for good measure. */
6861 for (i := 0; i < 8; i := i+1) {
6862 /* Since we're doing a lot of runs, give each one a fresh
6863 * T_guard from the top. */
6864 T_guard.start;
6865
6866 /* Setup a BSSAP connection and clear it right away. This is
6867 * the MSC telling the BSC about a planned release, it's not an
6868 * erratic loss of a connection. */
6869 dt := f_est_dchan('23'O, 23, '00010203040506'O);
6870
6871 /* simulate RLL REL IND */
6872 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
6873
6874 /* expect Clear Request on MSC side */
6875 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
6876
6877 /* Instruct BSC to clear channel */
6878 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
6879 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6880
6881 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006882 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006883 }
6884
6885 /* In the buggy behavior, a timeout of 2 seconds happens between above
6886 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6887 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6888 f_sleep(4.0);
6889
6890 deactivate(d);
6891 f_shutdown_helper();
6892}
6893
Harald Welte94e0c342018-04-07 11:33:23 +02006894/***********************************************************************
6895 * IPA style dynamic PDCH
6896 ***********************************************************************/
6897
6898private function f_dyn_ipa_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6899 template (omit) RSL_Cause nack := omit)
6900runs on test_CT {
6901 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6902 var RSL_Message rsl_unused;
6903 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6904 f_vty_ts_action("pdch activate", bts_nr, trx_nr, ts_nr);
6905 /* expect the BSC to issue the related RSL command */
6906 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6907 if (istemplatekind(nack, "omit")) {
6908 /* respond with a related acknowledgement */
6909 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6910 } else {
6911 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_NACK(chan_nr, valueof(nack)));
6912 }
6913}
6914
6915private function f_dyn_ipa_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6916 template (omit) RSL_Cause nack := omit)
6917runs on test_CT {
6918 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6919 var RSL_Message rsl_unused;
6920 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6921 f_vty_ts_action("pdch deactivate", bts_nr, trx_nr, ts_nr);
6922 /* expect the BSC to issue the related RSL command */
6923 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_DEACT(chan_nr));
6924 if (istemplatekind(nack, "omit")) {
6925 /* respond with a related acknowledgement */
6926 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_ACK(chan_nr));
6927 } else {
6928 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_NACK(chan_nr, valueof(nack)));
6929 }
6930}
6931
6932private function f_ts_dyn_mode_get(integer bts_nr, integer trx_nr, integer ts_nr)
6933runs on test_CT return charstring {
6934 var charstring cmd, resp;
6935 cmd := "show timeslot "&int2str(bts_nr)&" "&int2str(trx_nr)&" "&int2str(ts_nr);
Stefan Sperlingcff13562018-11-13 15:24:06 +01006936 return f_vty_transceive_match_regexp_retry(BSCVTY, cmd, "*\((*)\)*", 0, 4, 1.0);
Harald Welte94e0c342018-04-07 11:33:23 +02006937}
6938
6939private function f_ts_dyn_mode_assert(integer bts_nr, integer trx_nr, integer ts_nr,
6940 template charstring exp)
6941runs on test_CT {
6942 var charstring mode := f_ts_dyn_mode_get(bts_nr, trx_nr, ts_nr);
6943 if (not match(mode, exp)) {
6944 setverdict(fail, "Unexpected TS Mode: ", mode);
Daniel Willmannafce8662018-07-06 23:11:32 +02006945 mtc.stop;
Harald Welte94e0c342018-04-07 11:33:23 +02006946 }
6947}
6948
6949private function f_ts_set_chcomb(integer bts_nr, integer trx_nr, integer ts_nr, charstring chcomb)
6950runs on test_CT {
6951 f_vty_enter_cfg_ts(BSCVTY, bts_nr, trx_nr, ts_nr);
6952 f_vty_transceive(BSCVTY, "phys_chan_config " & chcomb);
6953 f_vty_transceive(BSCVTY, "end");
6954}
6955
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02006956
6957private function f_ts_reset_chcomb(integer bts_nr) runs on test_CT {
6958 var integer i;
6959 for (i := 0; i < 8; i := i + 1) {
6960 f_ts_set_chcomb(bts_nr, 0, i, phys_chan_config[i]);
6961 }
6962}
6963
Harald Welte94e0c342018-04-07 11:33:23 +02006964private const charstring TCHF_MODE := "TCH/F mode";
6965private const charstring TCHH_MODE := "TCH/H mode";
6966private const charstring PDCH_MODE := "PDCH mode";
6967private const charstring NONE_MODE := "NONE mode";
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006968private const charstring SDCCH8_MODE := "SDCCH8 mode";
Harald Welte94e0c342018-04-07 11:33:23 +02006969
6970/* Test IPA PDCH activation / deactivation triggered by VTY */
6971testcase TC_dyn_pdch_ipa_act_deact() runs on test_CT {
6972 var RSL_Message rsl_unused;
6973
6974 /* change Timeslot 6 before f_init() starts RSL */
6975 f_init_vty();
6976 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6977 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6978
6979 f_init(1, false);
6980 f_sleep(1.0);
6981
6982 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6983
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006984 log("TCH/F_PDCH pchan starts out in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006985 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6986 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6987 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6988 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6989 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006990 log("TCH/F_PDCH pchan, PDCH ACT was ACKed, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006991 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6992
6993 /* De-activate it via VTY */
6994 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6995 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006996 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006997 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6998
6999 /* re-activate it via VTY */
7000 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn);
7001 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007002 log("TCH/F_PDCH pchan, PDCH ACT via VTY, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007003 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7004
7005 /* and finally de-activate it again */
7006 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7007 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007008 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007009 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7010
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007011 /* clean up config */
7012 f_ts_set_chcomb(0, 0, 6, "PDCH");
7013
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007014 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007015}
7016
7017/* Test IPA PDCH activation NACK */
7018testcase TC_dyn_pdch_ipa_act_nack() runs on test_CT {
7019 var RSL_Message rsl_unused;
7020
7021 /* change Timeslot 6 before f_init() starts RSL */
7022 f_init_vty();
7023 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
7024 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7025
7026 f_init(1, false);
7027 f_sleep(1.0);
7028
7029 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
7030
7031 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7032 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7033 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
7034 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
7035 f_sleep(1.0);
7036 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7037
7038 /* De-activate it via VTY */
7039 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7040 f_sleep(1.0);
7041 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7042
7043 /* re-activate it via VTY, but fail that; check BSC still assumes TCH/F mode */
7044 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn, RSL_ERR_EQUIPMENT_FAIL);
7045 f_sleep(1.0);
7046 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7047
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007048 /* clean up config */
7049 f_ts_set_chcomb(0, 0, 6, "PDCH");
7050
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007051 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007052}
7053
7054
7055/***********************************************************************
7056 * Osmocom style dynamic PDCH
7057 ***********************************************************************/
7058
7059private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
7060 template (omit) RSL_Cause nack := omit)
7061runs on test_CT {
7062 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7063 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007064 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007065 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7066 /* expect the BSC to issue the related RSL command */
7067 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
7068 if (istemplatekind(nack, "omit")) {
7069 /* respond with a related acknowledgement */
7070 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7071 } else {
7072 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, valueof(nack)));
7073 }
7074}
7075
7076private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
7077 template (omit) RSL_Cause nack := omit)
7078runs on test_CT {
7079 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7080 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007081 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007082 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7083 /* expect the BSC to issue the related RSL command */
7084 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
7085 if (istemplatekind(nack, "omit")) {
7086 /* respond with a related acknowledgement */
7087 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
7088 } else {
7089 //f_ipa_tx(0, ts_RSL_RF_CHAN_REL_NACK(chan_nr, valueof(nack)));
7090 }
7091}
7092
7093/* Test Osmocom dyn PDCH activation / deactivation triggered by VTY */
7094testcase TC_dyn_pdch_osmo_act_deact() runs on test_CT {
7095 var RSL_Message rsl_unused;
7096
7097 /* change Timeslot 6 before f_init() starts RSL */
7098 f_init_vty();
7099 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7100 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7101
7102 f_init(1, false);
7103 f_sleep(1.0);
7104
7105 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7106
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007107 log("TCH/F_TCH/H_PDCH pchan starts out in disabled mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007108 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7109 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7110 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7111
7112 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7113 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007114 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 +02007115 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7116
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007117 /* clean up config */
7118 f_ts_set_chcomb(0, 0, 6, "PDCH");
7119
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007120 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007121}
7122
7123/* Test Osmocom dyn PDCH activation NACK behavior */
7124testcase TC_dyn_pdch_osmo_act_nack() runs on test_CT {
7125 var RSL_Message rsl_unused;
7126
7127 /* change Timeslot 6 before f_init() starts RSL */
7128 f_init_vty();
7129 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7130 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7131
7132 f_init(1, false);
7133 f_sleep(1.0);
7134
7135 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7136
7137 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7138 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7139 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7140
7141 /* NACK this activation and expect the "show timeslot" mode still to be NONE */
7142 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7143 f_sleep(1.0);
7144 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7145
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007146 /* clean up config */
7147 f_ts_set_chcomb(0, 0, 6, "PDCH");
7148
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007149 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007150}
7151
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02007152/* Test Osmocom dyn TS SDCCH8 activation / deactivation */
7153testcase TC_dyn_ts_sdcch8_act_deact() runs on test_CT {
7154 var RSL_Message rsl_unused, rsl_msg;
7155 var DchanTuple dt;
7156 var BSSAP_N_CONNECT_ind rx_c_ind;
7157
7158 /* change Timeslot 6 before f_init() starts RSL */
7159 f_init_vty();
7160 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7161 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7162
7163 f_init(1, false);
7164 f_sleep(1.0);
7165
7166 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7167
7168 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7169 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7170 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7171 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7172
7173 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7174 f_sleep(1.0);
7175 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7176 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7177
7178 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7179 * on CCCH+SDCCH4+CBCH) */
7180 var integer i;
7181 for (i := 0; i < 3; i := i + 1) {
7182 dt := f_est_dchan('23'O, i, '00010203040506'O);
7183 }
7184
7185 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7186 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7187 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7188 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7189
7190 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7191 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7192
7193 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7194 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7195 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7196 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7197
7198 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7199 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7200 dt.sccp_conn_id := rx_c_ind.connectionId;
7201 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7202
7203 /* Instruct BSC to clear channel */
7204 var BssmapCause cause := 0;
7205 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7206 f_exp_chan_rel_and_clear(dt, 0);
7207
7208 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7209 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7210 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7211 f_sleep(1.0);
7212 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7213
7214 /* clean up config */
7215 f_ts_set_chcomb(0, 0, 6, "PDCH");
7216
7217 f_shutdown_helper();
7218}
7219
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007220/* Test Osmocom dyn TS SDCCH8 activation / deactivation: If activating dyn TS as
7221 SDCCH8 would end up in having no free TCH, then BSC should decide to activate
7222 it as TCH directly instead. SYS#5309. */
7223testcase TC_dyn_ts_sdcch8_tch_call_act_deact() runs on test_CT {
7224 var RSL_Message rsl_unused, rsl_msg;
7225 var DchanTuple dt;
7226 var BSSAP_N_CONNECT_ind rx_c_ind;
7227 var integer i;
7228
7229 /* change Timeslot 6 before f_init() starts RSL */
7230 f_init_vty();
7231 for (i := 1; i < 8; i := i + 1) {
7232 if (i == 6) {
7233 f_ts_set_chcomb(0, 0, i, "TCH/F_TCH/H_SDCCH8_PDCH");
7234 } else {
7235 f_ts_set_chcomb(0, 0, i, "PDCH");
7236 }
7237 }
7238 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7239
7240 f_init(1, false);
7241 f_sleep(1.0);
7242
7243 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7244
7245 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7246 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7247 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7248 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7249
7250 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7251 f_sleep(1.0);
7252 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7253 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7254
7255 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7256 * on CCCH+SDCCH4+CBCH) */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007257 var OCT1 ra := '43'O; /* RA containing reason=originating speech call*/
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007258 for (i := 0; i < 3; i := i + 1) {
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007259 dt := f_est_dchan(ra, i, '00010203040506'O);
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007260 }
7261
7262 /* Now the dyn ts is selected. First PDCH is released, then TCH chan is activated */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007263 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int(ra) + i, 1), 2342));
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007264 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7265 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7266
7267 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7268 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7269
7270 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7271 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7272 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7273 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7274
7275 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7276 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7277 dt.sccp_conn_id := rx_c_ind.connectionId;
7278 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7279
7280 /* Instruct BSC to clear channel */
7281 var BssmapCause cause := 0;
7282 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7283 f_exp_chan_rel_and_clear(dt, 0);
7284
7285 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7286 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7287 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7288 f_sleep(1.0);
7289 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7290
7291 /* clean up config */
7292 f_ts_reset_chcomb(0);
7293 /* TODO: clean up other channels? */
7294
7295 f_shutdown_helper();
7296}
7297
Pau Espin Pedrolcdf26142021-06-28 17:14:03 +02007298/* Test Osmocom dyn TS SDCCH8 activation / deactivation when SDCCH fails at BTS */
7299testcase TC_dyn_ts_sdcch8_act_nack() runs on test_CT {
7300 var RSL_Message rsl_unused, rsl_msg;
7301 var DchanTuple dt;
7302 var BSSAP_N_CONNECT_ind rx_c_ind;
7303 var GsmRrMessage rr;
7304
7305 /* change Timeslot 6 before f_init() starts RSL */
7306 f_init_vty();
7307 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7308 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7309
7310 f_init(1, false);
7311 f_sleep(1.0);
7312
7313 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7314
7315 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7316 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7317 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7318 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7319
7320 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7321 f_sleep(1.0);
7322 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7323 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7324
7325 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7326 * on CCCH+SDCCH4+CBCH) */
7327 var integer i;
7328 for (i := 0; i < 3; i := i + 1) {
7329 dt := f_est_dchan('23'O, i, '00010203040506'O);
7330 }
7331
7332 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7333 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7334 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7335 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7336
7337 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7338 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7339
7340 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7341 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(dt.rsl_chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7342 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7343 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
7344 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
7345 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Expected reject");
7346 }
7347
7348 /* FIXME? Currently the TS stays in state BORKEN: */
7349
7350 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7351 /* rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7352 * f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7353 * f_sleep(1.0);
7354 * f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE)
7355 */
7356
7357 /* clean up config */
7358 f_ts_set_chcomb(0, 0, 6, "PDCH");
7359
7360 f_shutdown_helper();
7361}
7362
Stefan Sperling0796a822018-10-05 13:01:39 +02007363testcase TC_chopped_ipa_ping() runs on test_CT {
Stefan Sperling554123f2018-10-09 14:12:30 +02007364 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port, mp_bsc_ctrl_port};
Stefan Sperling0796a822018-10-05 13:01:39 +02007365 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7366 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7367 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007368 f_shutdown_helper();
Stefan Sperling0796a822018-10-05 13:01:39 +02007369}
7370
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007371testcase TC_chopped_ipa_payload() runs on test_CT {
7372 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port
7373 /* TODO: mp_bsc_ctrl_port does not work yet */};
7374 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7375 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7376 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007377 f_shutdown_helper();
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007378}
7379
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007380/* Verify the BSC sends the MS Power Parameters IE during CHAN ACT to make sure
7381 the BTS does autonomous MS power control loop */
7382testcase TC_assignment_verify_ms_power_params_ie() runs on test_CT {
7383 var MSC_ConnHdlr vc_conn;
7384 var TestHdlrParams pars := f_gen_test_hdlr_pars();
7385 //pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
7386 pars.exp_ms_power_params := true;
7387
7388 f_init(1, true);
7389 f_sleep(1.0);
7390 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
7391 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007392 f_shutdown_helper();
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007393}
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007394
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02007395/* Verify activation and deactivation of the BCCH carrier power reduction mode */
7396testcase TC_c0_power_red_mode() runs on test_CT {
7397 f_init(1);
7398
7399 for (var integer red := 6; red >= 0; red := red - 2) {
7400 /* Configure BCCH carrier power reduction mode via the VTY */
7401 f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
7402
7403 /* Expect Osmocom specific BS Power Control message on the RSL */
7404 var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
7405 chan_nr := t_RslChanNr_BCCH(0),
7406 bs_power := tr_RSL_IE_BS_Power(red / 2));
7407 tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
7408 var RSL_Message unused := f_exp_ipa_rx(0, tr_rsl_pdu);
7409
7410 /* Additionally verify the applied value over the CTRL interface */
7411 var CtrlValue cred := f_ctrl_get_bts(IPA_CTRL, 0, "c0-power-reduction");
7412 if (cred != int2str(red)) {
7413 setverdict(fail, "Unexpected BCCH carrier power reduction value ",
7414 cred, " (expected ", red, ")");
7415 }
7416 }
7417
7418 f_shutdown_helper();
7419}
7420
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007421/***********************************************************************
7422 * MSC Pooling
7423 ***********************************************************************/
7424
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007425template MobileIdentityLV ts_MI_TMSI_NRI_LV(integer nri_v, integer nri_bitlen := 10) :=
Harald Weltebf397612021-01-14 20:39:46 +01007426 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 +02007427
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007428private 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 +02007429runs on MSC_ConnHdlr {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007430 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007431 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007432 f_logp(BSCVTY, "Got RSL RR Release");
7433 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007434 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007435 f_logp(BSCVTY, "Got RSL Deact SACCH");
7436 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007437 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007438 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007439 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7440 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007441 break;
7442 }
7443 }
7444}
7445
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007446friend function f_perform_clear(RSL_DCHAN_PT rsl_pt := RSL, RSLEM_PROC_PT rsl_proc_pt := RSL_PROC,
7447 template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007448runs on MSC_ConnHdlr {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007449 f_logp(BSCVTY, "MSC instructs BSC to clear channel");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007450 BSSAP.send(ts_BSSMAP_ClearCommand(0));
7451 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007452 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007453 f_logp(BSCVTY, "Got RSL RR Release");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007454 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007455 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007456 f_logp(BSCVTY, "Got RSL Deact SACCH");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007457 }
7458 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007459 f_logp(BSCVTY, "Got BSSMAP Clear Complete");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007460 /* Also drop the SCCP connection */
7461 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
7462 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007463 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007464 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007465 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7466 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007467 }
7468 }
7469}
7470
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007471private function f_perform_compl_l3(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt,
7472 template PDU_ML3_MS_NW l3_info, boolean do_clear := true, boolean expect_bssmap_l3 := true)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007473runs on MSC_ConnHdlr {
7474 timer T := 10.0;
7475 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(l3_info));
7476
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007477 f_logp(BSCVTY, "establish channel, send Complete Layer 3 Info");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007478 f_create_bssmap_exp(l3_enc);
7479
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007480 /* RSL_Emulation.f_chan_est() on rsl_pt:
7481 * This is basically code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007482 * RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
7483 */
7484 var RSL_Message rx_rsl;
7485 var GsmRrMessage rr;
7486
7487 /* request a channel to be established */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007488 rsl_pt.send(ts_RSLDC_ChanRqd(g_pars.ra, g_pars.fn));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007489 /* expect immediate assignment.
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007490 * Code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007491 * rx_rsl := f_rx_or_fail(tr_RSL_IMM_ASSIGN);
7492 */
7493 timer Tt := 10.0;
7494
7495 /* request a channel to be established */
7496 Tt.start;
7497 alt {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007498 [] rsl_pt.receive(tr_RSL_IMM_ASSIGN) -> value rx_rsl {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007499 Tt.stop;
7500 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007501 [] rsl_pt.receive {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007502 setverdict(fail, "Unexpected RSL message on DCHAN");
7503 mtc.stop;
7504 }
7505 [] Tt.timeout {
7506 setverdict(fail, "Timeout waiting for RSL on DCHAN");
7507 mtc.stop;
7508 }
7509 }
7510 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
7511 g_chan_nr := rr.payload.imm_ass.chan_desc.chan_nr;
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007512 rsl_pt.send(ts_RSL_EST_IND(g_chan_nr, valueof(g_pars.link_id), l3_enc));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007513
7514
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007515 if (expect_bssmap_l3) {
7516 f_logp(BSCVTY, "expect BSSAP Complete Layer 3 Info at MSC");
7517 var template PDU_BSSAP exp_l3_compl;
7518 exp_l3_compl := tr_BSSMAP_ComplL3()
7519 if (g_pars.aoip == false) {
7520 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
7521 } else {
7522 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
7523 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007524
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007525 var PDU_BSSAP bssap;
7526 T.start;
7527 alt {
7528 [] BSSAP.receive(exp_l3_compl) -> value bssap {
7529 f_logp(BSCVTY, "received expected Complete Layer 3 Info at MSC");
7530 log("rx exp_l3_compl = ", bssap);
7531 }
7532 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
7533 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
7534 }
7535 [] T.timeout {
7536 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
7537 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007538 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007539
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007540 /* start ciphering, if requested */
7541 if (ispresent(g_pars.encr)) {
7542 f_logp(BSCVTY, "start ciphering");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007543 f_cipher_mode(g_pars.encr, rsl_pt := rsl_pt, rsl_proc_pt := rsl_proc_pt);
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007544 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007545 }
7546
7547 if (do_clear) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007548 f_perform_clear(rsl_pt, rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007549 }
7550 setverdict(pass);
7551 f_sleep(1.0);
7552}
7553
7554private function f_tc_mscpool_compl_l3(charstring id) runs on MSC_ConnHdlr {
7555 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7556 if (g_pars.mscpool.rsl_idx == 0) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007557 f_perform_compl_l3(RSL, RSL_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007558 } else if (g_pars.mscpool.rsl_idx == 1) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007559 f_perform_compl_l3(RSL1, RSL1_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007560 } else if (g_pars.mscpool.rsl_idx == 2) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007561 f_perform_compl_l3(RSL2, RSL2_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007562 }
7563}
7564
7565/* Various Complete Layer 3 by IMSI all end up with the first MSC, because the other MSCs are not connected. */
7566private function f_tc_mscpool_L3Compl_on_1_msc(charstring id) runs on MSC_ConnHdlr {
7567 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007568 f_perform_compl_l3(RSL, RSL_PROC, ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O) );
7569 f_perform_compl_l3(RSL, RSL_PROC, ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_IMSI_LV('001010000000002'H))) );
7570 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))) );
7571 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 +02007572}
7573testcase TC_mscpool_L3Compl_on_1_msc() runs on test_CT {
7574
7575 f_init(1, true);
7576 f_sleep(1.0);
7577 var MSC_ConnHdlr vc_conn;
7578 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007579
7580 f_ctrs_msc_init();
7581
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007582 vc_conn := f_start_handler(refers(f_tc_mscpool_L3Compl_on_1_msc), pars);
7583 vc_conn.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007584
7585 f_ctrs_msc_expect(0, "mscpool:subscr:new", 4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007586 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007587}
7588
7589/* Three Layer 3 Complete by IMSI are round-robin'ed across two connected MSCs */
7590/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7591 * just as well using only RSL. */
7592testcase TC_mscpool_L3Complete_by_imsi_round_robin() runs on test_CT {
7593
7594 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7595 f_sleep(1.0);
7596
7597 /* Control which MSC gets chosen next by the round-robin, otherwise
7598 * would be randomly affected by which other tests ran before this. */
7599 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7600
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007601 f_ctrs_msc_init();
7602
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007603 var MSC_ConnHdlr vc_conn1;
7604 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7605 pars1.mscpool.rsl_idx := 0;
7606 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7607 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7608 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007609 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007610
7611 var MSC_ConnHdlr vc_conn2;
7612 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7613 pars2.mscpool.rsl_idx := 1;
7614 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7615 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7616 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007617 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007618
7619 /* Test round-robin wrap to the first MSC */
7620 var MSC_ConnHdlr vc_conn3;
7621 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7622 pars3.mscpool.rsl_idx := 2;
7623 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7624 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7625 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007626 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007627 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007628}
7629
7630/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 0
7631 * (configured in osmo-bsc.cfg). */
7632/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7633 * just as well using only RSL. */
7634testcase TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() runs on test_CT {
7635
7636 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7637 f_sleep(1.0);
7638
7639 /* Control which MSC gets chosen next by the round-robin, otherwise
7640 * would be randomly affected by which other tests ran before this. */
7641 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7642
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007643 f_ctrs_msc_init();
7644
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007645 var MSC_ConnHdlr vc_conn1;
7646 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7647 pars1.mscpool.rsl_idx := 0;
7648 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7649 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7650 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007651 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007652
7653 var MSC_ConnHdlr vc_conn2;
7654 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7655 pars2.mscpool.rsl_idx := 1;
7656 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7657 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7658 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007659 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007660
7661 /* Test round-robin wrap to the first MSC */
7662 var MSC_ConnHdlr vc_conn3;
7663 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7664 pars3.mscpool.rsl_idx := 2;
7665 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7666 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7667 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007668 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007669 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007670}
7671
7672/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 1
7673 * (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
7674 * NULL-NRI setting is stronger than that. */
7675/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7676 * just as well using only RSL. */
7677testcase TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() runs on test_CT {
7678
7679 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7680 f_sleep(1.0);
7681
7682 /* Control which MSC gets chosen next by the round-robin, otherwise
7683 * would be randomly affected by which other tests ran before this. */
7684 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7685
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007686 f_ctrs_msc_init();
7687
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007688 var MSC_ConnHdlr vc_conn1;
7689 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7690 pars1.mscpool.rsl_idx := 0;
7691 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7692 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7693 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007694 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007695
7696 var MSC_ConnHdlr vc_conn2;
7697 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7698 pars2.mscpool.rsl_idx := 1;
7699 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7700 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7701 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007702 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007703
7704 /* Test round-robin wrap to the first MSC */
7705 var MSC_ConnHdlr vc_conn3;
7706 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7707 pars3.mscpool.rsl_idx := 2;
7708 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7709 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7710 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007711 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007712 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007713}
7714
7715/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI not
7716 * assigned to any MSC (configured in osmo-bsc.cfg). */
7717/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7718 * just as well using only RSL. */
7719testcase TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() runs on test_CT {
7720
7721 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7722 f_sleep(1.0);
7723
7724 /* Control which MSC gets chosen next by the round-robin, otherwise
7725 * would be randomly affected by which other tests ran before this. */
7726 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7727
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007728 f_ctrs_msc_init();
7729
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007730 var MSC_ConnHdlr vc_conn1;
7731 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7732 pars1.mscpool.rsl_idx := 0;
7733 /* An NRI that is not assigned to any MSC */
7734 pars1.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(1023))));
7735 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7736 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007737 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007738
7739 var MSC_ConnHdlr vc_conn2;
7740 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7741 pars2.mscpool.rsl_idx := 1;
7742 /* An NRI that is not assigned to any MSC */
7743 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(768)), '00F110'O));
7744 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7745 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007746 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007747
7748 /* Test round-robin wrap to the first MSC */
7749 var MSC_ConnHdlr vc_conn3;
7750 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7751 pars3.mscpool.rsl_idx := 2;
7752 /* An NRI that is not assigned to any MSC */
7753 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, valueof(ts_MI_TMSI_NRI_LV(819))));
7754 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7755 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007756 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007757 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007758}
7759
7760/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI
7761 * assigned to an MSC that is currently not connected (configured in osmo-bsc.cfg). */
7762/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7763 * just as well using only RSL. */
7764testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() runs on test_CT {
7765
7766 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7767 f_sleep(1.0);
7768
7769 /* Control which MSC gets chosen next by the round-robin, otherwise
7770 * would be randomly affected by which other tests ran before this. */
7771 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7772
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007773 f_ctrs_msc_init();
7774
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007775 var MSC_ConnHdlr vc_conn1;
7776 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7777 pars1.mscpool.rsl_idx := 0;
7778 /* An NRI that is assigned to an unconnected MSC */
7779 pars1.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(512))));
7780 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7781 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007782 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7783 f_ctrs_msc_add(0, "mscpool:subscr:new");
7784 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007785
7786 var MSC_ConnHdlr vc_conn2;
7787 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7788 pars2.mscpool.rsl_idx := 1;
7789 /* An NRI that is assigned to an unconnected MSC */
7790 pars2.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(767))));
7791 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7792 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007793 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7794 f_ctrs_msc_add(1, "mscpool:subscr:new");
7795 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007796
7797 /* Test round-robin wrap to the first MSC */
7798 var MSC_ConnHdlr vc_conn3;
7799 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7800 pars3.mscpool.rsl_idx := 2;
7801 /* An NRI that is assigned to an unconnected MSC */
7802 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(750)), '00F110'O));
7803 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7804 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007805 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7806 f_ctrs_msc_add(0, "mscpool:subscr:new");
7807 f_ctrs_msc_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007808 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007809}
7810
7811/* Three Layer 3 Complete by TMSI with valid NRI for the second MSC are all directed to the second MSC (configured in
7812 * osmo-bsc.cfg). */
7813/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7814 * just as well using only RSL. */
7815testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_1() runs on test_CT {
7816
7817 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7818 f_sleep(1.0);
7819
7820 /* All TMSIs in this test point at the second MSC, set the round robin to point at the first MSC to make sure
7821 * this is not using round-robin. */
7822 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7823
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007824 f_ctrs_msc_init();
7825
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007826 var MSC_ConnHdlr vc_conn1;
7827 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7828 pars1.mscpool.rsl_idx := 0;
7829 /* An NRI of the second MSC's range (256-511) */
7830 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(256))));
7831 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7832 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007833 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007834
7835 var MSC_ConnHdlr vc_conn2;
7836 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7837 pars2.mscpool.rsl_idx := 1;
7838 /* An NRI of the second MSC's range (256-511) */
7839 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(260))));
7840 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7841 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007842 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007843
7844 var MSC_ConnHdlr vc_conn3;
7845 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7846 pars3.mscpool.rsl_idx := 2;
7847 /* An NRI of the second MSC's range (256-511) */
7848 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(511)), '00F110'O));
7849 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7850 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007851 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007852 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007853}
7854
7855/* Layer 3 Complete by TMSI with valid NRI for the third MSC are directed to the third MSC (configured in osmo-bsc.cfg),
7856 * while a round-robin remains unaffected by that. */
7857/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7858 * just as well using only RSL. */
7859testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_2() runs on test_CT {
7860
7861 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7862 f_sleep(1.0);
7863
7864 /* All TMSIs in this test point at the third MSC, set the round robin to point at the second MSC to make sure
7865 * this is not using round-robin. */
7866 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7867
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007868 f_ctrs_msc_init();
7869
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007870 var MSC_ConnHdlr vc_conn1;
7871 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 2);
7872 pars1.mscpool.rsl_idx := 0;
7873 /* An NRI of the third MSC's range (512-767) */
7874 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(512))));
7875 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7876 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007877 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007878
7879 var MSC_ConnHdlr vc_conn2;
7880 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7881 pars2.mscpool.rsl_idx := 1;
7882 /* An NRI of the third MSC's range (512-767) */
7883 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(678))));
7884 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7885 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007886 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007887
7888 /* The above forwardings to third MSC have not affected the round robin, which still points at the second MSC */
7889 var MSC_ConnHdlr vc_conn3;
7890 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7891 pars3.mscpool.rsl_idx := 2;
7892 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000013'H)), '00F110'O));
7893 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7894 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007895 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007896 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007897}
7898
7899/* LU with a TMSI but indicating a different PLMN in its previous LAI: ignore the NRI. */
7900/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7901 * just as well using only RSL. */
7902testcase TC_mscpool_LU_by_tmsi_from_other_PLMN() runs on test_CT {
7903
7904 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7905 f_sleep(1.0);
7906
7907 /* The TMSIs in this test points at the second MSC, but since it is from a different PLMN, round-robin is used
7908 * instead, and hits msc 0. */
7909 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7910
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007911 f_ctrs_msc_init();
7912
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007913 /* An NRI of the second MSC's range (256-511), but a PLMN that doesn't match with osmo-bsc.cfg */
7914 var MSC_ConnHdlr vc_conn1;
7915 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7916 pars1.mscpool.rsl_idx := 0;
7917 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(260)), '99F999'O));
7918 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7919 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007920 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007921
7922 /* An NRI of the third MSC's range (512-767) and a matching PLMN gets directed by NRI. */
7923 var MSC_ConnHdlr vc_conn2;
7924 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7925 pars2.mscpool.rsl_idx := 1;
7926 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(555)), '00F110'O));
7927 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7928 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007929 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007930 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007931}
7932
7933/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by IMSI, which would be
7934 * round-robined to another MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7935private function f_tc_mscpool_paging_imsi(charstring id) runs on MSC_ConnHdlr {
7936 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7937 //cid_list := { cIl_allInBSS := ''O };
7938 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7939 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7940 var BSSAP_N_UNITDATA_req paging;
7941 var hexstring imsi := '001010000000123'H;
7942
7943 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7944
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007945 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007946 valueof(ts_BSSMAP_Paging(imsi, cid_list, omit, bssmap_chneed))));
7947 BSSAP.send(paging);
7948
7949 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7950 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7951 * channel number is picked here. */
7952 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7953 f_rslem_register(0, new_chan_nr);
7954 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(imsi)));
7955 f_rslem_unregister(0, new_chan_nr);
7956
7957 /* Despite the round robin pointing at the second MSC ('roundrobin next 1'), the earlier Paging for the same IMSI
7958 * causes this Paging Response to go to the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007959 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(imsi))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007960 f_sleep(1.0);
7961}
7962testcase TC_mscpool_paging_and_response_imsi() runs on test_CT {
7963 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7964 f_sleep(1.0);
7965
7966 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7967 * second MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7968 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7969
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007970 f_ctrs_msc_init();
7971
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007972 var MSC_ConnHdlr vc_conn1;
7973 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7974 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007975 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7976 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007977 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_imsi), pars1);
7978 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007979 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007980 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007981}
7982
7983/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by TMSI with an NRI value
7984 * that matches a different MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7985private function f_tc_mscpool_paging_tmsi(charstring id) runs on MSC_ConnHdlr {
7986 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7987 //cid_list := { cIl_allInBSS := ''O };
7988 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7989 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7990 var integer nri_v := 300; /* <-- second MSC's NRI */
Harald Weltebf397612021-01-14 20:39:46 +01007991 var octetstring tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007992 var BSSAP_N_UNITDATA_req paging;
7993
7994 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7995
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007996 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007997 valueof(ts_BSSMAP_Paging('001010000000011'H, cid_list, tmsi, bssmap_chneed))));
7998 BSSAP.send(paging);
7999
8000 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
8001 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
8002 * channel number is picked here. */
8003 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
8004 f_rslem_register(0, new_chan_nr);
8005 RSL.receive(tr_RSL_PAGING_CMD(t_MI_TMSI(tmsi)));
8006 f_rslem_unregister(0, new_chan_nr);
8007
8008 /* Despite the NRI matching the second MSC (NRI from 'msc 1' in osmo-bsc.cfg) and round robin pointing at the
8009 * third MSC ('roundrobin next 2'), the earlier Paging for the same TMSI causes this Paging Response to go to
8010 * the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008011 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 +02008012 f_sleep(1.0);
8013}
8014testcase TC_mscpool_paging_and_response_tmsi() runs on test_CT {
8015 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
8016 f_sleep(1.0);
8017
8018 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
8019 * third MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
8020 f_vty_transceive(BSCVTY, "mscpool roundrobin next 2");
8021
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008022 f_ctrs_msc_init();
8023
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008024 var MSC_ConnHdlr vc_conn1;
8025 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8026 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02008027 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
8028 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008029 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_tmsi), pars1);
8030 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008031 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008032 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008033}
8034
8035/* For round-robin, skip an MSC that has 'no allow-attach' set. */
8036/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
8037 * just as well using only RSL. */
8038testcase TC_mscpool_no_allow_attach_round_robin() runs on test_CT {
8039
8040 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8041 f_sleep(1.0);
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008042 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8043 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008044
8045 /* Control which MSC gets chosen next by the round-robin, otherwise
8046 * would be randomly affected by which other tests ran before this. */
8047 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8048
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008049 f_ctrs_msc_init();
8050
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008051 var MSC_ConnHdlr vc_conn1;
8052 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8053 pars1.mscpool.rsl_idx := 0;
8054 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
8055 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8056 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008057 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008058
8059 var MSC_ConnHdlr vc_conn2;
8060 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
8061 pars2.mscpool.rsl_idx := 1;
8062 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8063 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8064 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008065 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008066
8067 var MSC_ConnHdlr vc_conn3;
8068 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
8069 pars3.mscpool.rsl_idx := 2;
8070 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
8071 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8072 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008073 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008074 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008075}
8076
8077/* An MSC that has 'no allow-attach' set should still serve subscribers that are already attached according to their
8078 * TMSI NRI. */
8079testcase TC_mscpool_no_allow_attach_valid_nri() runs on test_CT {
8080
8081 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8082 f_sleep(1.0);
8083
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008084 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8085 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
8086
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008087 /* Control which MSC gets chosen next by the round-robin, otherwise
8088 * would be randomly affected by which other tests ran before this. */
8089 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8090
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008091 f_ctrs_msc_init();
8092
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008093 /* Round robin points at msc 0, but the valid NRI directs to msc 1, even though msc 1 has 'no allow-attach'. */
8094 var MSC_ConnHdlr vc_conn1;
8095 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
8096 pars1.mscpool.rsl_idx := 0;
8097 /* An NRI of the second MSC's range (256-511) */
8098 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_TMSI_NRI_LV(260))));
8099 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8100 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008101 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008102
8103 var MSC_ConnHdlr vc_conn2;
8104 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 0);
8105 pars2.mscpool.rsl_idx := 1;
8106 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8107 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8108 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008109 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008110
8111 var MSC_ConnHdlr vc_conn3;
8112 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 2);
8113 pars3.mscpool.rsl_idx := 2;
8114 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000003'H))));
8115 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8116 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008117 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008118 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008119}
8120
Philipp Maier783681c2020-07-16 16:47:06 +02008121/* Allow/Deny emergency calls globally via VTY */
8122private function f_vty_allow_emerg_msc(boolean allow) runs on test_CT {
8123 f_vty_enter_cfg_msc(BSCVTY, 0);
8124 if (allow) {
8125 f_vty_transceive(BSCVTY, "allow-emergency allow");
8126 } else {
8127 f_vty_transceive(BSCVTY, "allow-emergency deny");
8128 }
8129 f_vty_transceive(BSCVTY, "exit");
8130 f_vty_transceive(BSCVTY, "exit");
8131}
8132
8133/* Allow/Deny emergency calls per BTS via VTY */
8134private function f_vty_allow_emerg_bts(boolean allow, integer bts_nr) runs on test_CT {
8135 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8136 if (allow) {
8137 f_vty_transceive(BSCVTY, "rach emergency call allowed 1");
8138 } else {
8139 f_vty_transceive(BSCVTY, "rach emergency call allowed 0");
8140 }
8141 f_vty_transceive(BSCVTY, "exit");
8142 f_vty_transceive(BSCVTY, "exit");
Neels Hofmeyrb6ed80c2020-10-12 22:52:39 +00008143 f_vty_transceive(BSCVTY, "exit");
Philipp Maier783681c2020-07-16 16:47:06 +02008144}
8145
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02008146/* Allow/Forbid Fast Return after SRVCC on a given BTS via VTY */
8147private function f_vty_allow_srvcc_fast_return(boolean allow, integer bts_nr) runs on test_CT {
8148 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8149 if (allow) {
8150 f_vty_transceive(BSCVTY, "srvcc fast-return allow");
8151 } else {
8152 f_vty_transceive(BSCVTY, "srvcc fast-return forbid");
8153 }
8154 f_vty_transceive(BSCVTY, "exit");
8155 f_vty_transceive(BSCVTY, "exit");
8156 f_vty_transceive(BSCVTY, "exit");
8157}
8158
Pau Espin Pedrol14475352021-07-22 15:48:16 +02008159/* Allow/Forbid TCH for signalling if SDCCH exhausted on a given BTS via VTY */
8160private function f_vty_allow_tch_for_signalling(boolean allow, integer bts_nr) runs on test_CT {
8161 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8162 if (allow) {
8163 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 1");
8164 } else {
8165 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 0");
8166 }
8167 f_vty_transceive(BSCVTY, "exit");
8168 f_vty_transceive(BSCVTY, "exit");
8169 f_vty_transceive(BSCVTY, "exit");
8170}
8171
Philipp Maier783681c2020-07-16 16:47:06 +02008172/* Begin assignmet procedure and send an EMERGENCY SETUP (RR) */
8173private function f_assignment_emerg_setup() runs on MSC_ConnHdlr {
8174 var PDU_ML3_MS_NW emerg_setup;
8175 var octetstring emerg_setup_enc;
8176 var RSL_Message emerg_setup_data_ind;
8177
8178 f_establish_fully(omit, omit);
8179
8180 emerg_setup := valueof(ts_ML3_MO_CC_EMERG_SETUP(1, valueof(ts_Bcap_voice)));
8181 emerg_setup_enc := enc_PDU_ML3_MS_NW(emerg_setup);
8182 emerg_setup_data_ind := valueof(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), emerg_setup_enc));
8183
8184 RSL.send(emerg_setup_data_ind);
8185}
8186
8187/* Test if the EMERGENCY SETUP gets passed on to the MSC via A when EMERGENCY
8188 * CALLS are permitted by the BSC config. */
8189private function f_TC_assignment_emerg_setup_allow(charstring id) runs on MSC_ConnHdlr {
8190 var PDU_BSSAP emerg_setup_data_ind_bssap;
8191 var PDU_ML3_MS_NW emerg_setup;
8192 timer T := 3.0;
8193
8194 f_assignment_emerg_setup()
8195
8196 T.start;
8197 alt {
8198 [] BSSAP.receive(tr_BSSAP_DTAP) -> value emerg_setup_data_ind_bssap {
8199 emerg_setup := dec_PDU_ML3_MS_NW(emerg_setup_data_ind_bssap.pdu.dtap);
8200 if (not isbound(emerg_setup.msgs.cc.emergencySetup)) {
8201 setverdict(fail, "no emergency setup");
8202 }
8203 }
8204 [] BSSAP.receive {
8205 setverdict(fail, "unexpected BSSAP message!");
8206 }
8207 [] T.timeout {
8208 setverdict(fail, "timout waiting for EMERGENCY SETUP!");
8209 }
8210 }
8211
8212 setverdict(pass);
8213}
8214
8215/* Test if the EMERGENCY SETUP gets blocked by the BSC if EMERGENCY CALLS are
8216 * forbidden by the BSC config. */
8217private function f_TC_assignment_emerg_setup_deny(charstring id) runs on MSC_ConnHdlr {
8218 var PDU_BSSAP emerg_setup_data_ind_bssap;
8219 timer T := 3.0;
8220
8221 f_assignment_emerg_setup()
8222
8223 T.start;
8224 alt {
8225 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
8226 setverdict(pass);
8227 }
8228 [] RSL.receive {
8229 setverdict(fail, "unexpected RSL message!");
8230 }
8231 [] T.timeout {
8232 setverdict(fail, "timout waiting for RR CHANNEL RELEASE!");
8233 }
8234 }
8235}
8236
8237/* EMERGENCY CALL situation #1, allowed globally and by BTS */
8238testcase TC_assignment_emerg_setup_allow() runs on test_CT {
8239 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8240 var MSC_ConnHdlr vc_conn;
8241
8242 f_init(1, true);
8243 f_sleep(1.0);
8244
8245 f_vty_allow_emerg_msc(true);
8246 f_vty_allow_emerg_bts(true, 0);
8247 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_allow), pars);
8248 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008249 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008250}
8251
8252/* EMERGENCY CALL situation #2, forbidden globally but allowed by BTS */
8253testcase TC_assignment_emerg_setup_deny_msc() runs on test_CT {
8254 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8255 var MSC_ConnHdlr vc_conn;
8256
8257 f_init(1, true);
8258 f_sleep(1.0);
8259
8260 f_vty_allow_emerg_msc(false);
8261 f_vty_allow_emerg_bts(true, 0);
8262 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8263 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008264 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008265}
8266
8267/* EMERGENCY CALL situation #3, allowed globally but forbidden by BTS */
8268testcase TC_assignment_emerg_setup_deny_bts() runs on test_CT {
8269 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8270 var MSC_ConnHdlr vc_conn;
8271
8272 /* Note: This simulates a spec violation by the MS, correct MS
8273 * implementations would not try to establish an emergency call because
8274 * the system information tells in advance that emergency calls are
8275 * not forbidden */
8276
8277 f_init(1, true);
8278 f_sleep(1.0);
8279
8280 f_vty_allow_emerg_msc(true);
8281 f_vty_allow_emerg_bts(false, 0);
8282 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8283 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008284 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008285}
8286
Philipp Maier82812002020-08-13 18:48:27 +02008287/* Test what happens when an emergency call arrives while all TCH channels are
8288 * busy, the BSC is expected to terminate one call in favor of the incoming
8289 * emergency call */
8290testcase TC_emerg_premption() runs on test_CT {
8291 var ASP_RSL_Unitdata rsl_ud;
8292 var integer i;
8293 var integer chreq_total, chreq_nochan;
8294 var RSL_Message rx_rsl;
8295 var RslChannelNr chan_nr;
8296
8297 f_init(1);
8298 f_sleep(1.0);
8299
8300 f_vty_allow_emerg_msc(true);
8301 f_vty_allow_emerg_bts(true, 0);
8302
8303 /* Fill up all channels on the BTS */
8304 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
8305 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
8306 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
8307 chan_nr := f_chreq_act_ack('33'O, i);
8308 }
8309 IPA_RSL[0].clear;
8310 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
8311 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
8312
8313 /* Send Channel request for emegergency call */
8314 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
8315
8316 /* Expect the BSC to release one (the first) TCH/F on the BTS */
8317 chan_nr := valueof(t_RslChanNr_Bm(1));
8318 f_expect_chan_rel(0, chan_nr, expect_rr_chan_rel := false, expect_rll_rel_req := false);
8319
8320 /* Expect the BSC to send activate/assign the a channel for the emergency call */
8321 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8322 chan_nr := rx_rsl.ies[0].body.chan_nr;
8323 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 33));
8324 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Philipp Maier104f4c02020-09-11 18:12:18 +02008325
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008326 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008327}
8328
8329/* Hopping parameters per a timeslot */
Vadim Yanitskiybc6654a2020-09-13 01:27:40 +07008330private type record length(0..64) of GsmArfcn ArfcnList;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008331private type record FHParamsTs {
8332 boolean enabled,
8333 uint6_t hsn,
8334 uint6_t maio,
8335 ArfcnList ma
8336};
8337
8338/* Hopping parameters per a transceiver */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008339private type record FHParamsTrx {
8340 GsmArfcn arfcn,
8341 FHParamsTs ts[8]
8342};
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008343
8344/* Randomly generate the hopping parameters for the given timeslot numbers */
8345private function f_TC_fh_params_gen(template integer tr_tn := (1, 3, 5))
8346runs on test_CT return FHParamsTrx {
8347 var FHParamsTrx fhp;
8348
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008349 /* Generate a random ARFCN, including ARFCN 0 */
8350 fhp.arfcn := f_rnd_int(3);
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008351
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008352 for (var integer tn := 0; tn < 8; tn := tn + 1) {
8353 if (not match(tn, tr_tn)) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008354 fhp.ts[tn].enabled := false;
8355 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008356 continue;
8357 }
8358
8359 /* Random HSN / MAIO values: 0..63 */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008360 fhp.ts[tn].hsn := f_rnd_int(64);
8361 fhp.ts[tn].maio := f_rnd_int(64);
8362 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008363
8364 /* Random Mobile Allocation (hopping channels) */
8365 var integer ma_len := 2 + f_rnd_int(9); /* 2..10 channels */
8366 var integer step := 3 + f_rnd_int(4); /* 3..6 stepping */
8367 for (var integer i := 1; i <= ma_len; i := i + 1) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008368 fhp.ts[tn].ma := fhp.ts[tn].ma & { i * step };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008369 }
8370
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008371 fhp.ts[tn].enabled := true;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008372 }
8373
8374 log("f_TC_fh_params_gen(): ", fhp);
8375 return fhp;
8376}
8377
8378/* Make sure that the given Channel Description IE matches the hopping configuration */
8379private function f_TC_fh_params_match_chan_desc(in FHParamsTrx fhp, in ChannelDescription cd)
8380{
8381 var template (present) ChannelDescription tr_cd;
8382 var template (present) MaioHsn tr_maio_hsn;
8383 var uint3_t tn := cd.chan_nr.tn;
8384
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008385 if (fhp.ts[tn].enabled) {
8386 tr_maio_hsn := tr_HsnMaio(fhp.ts[tn].hsn, fhp.ts[tn].maio);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008387 tr_cd := tr_ChanDescH1(cd.chan_nr, tr_maio_hsn);
8388 } else {
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008389 tr_cd := tr_ChanDescH0(cd.chan_nr, fhp.arfcn);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008390 }
8391
8392 if (not match(cd, tr_cd)) {
8393 setverdict(fail, "Channel Description IE does not match: ",
8394 cd, " vs expected ", tr_cd);
8395 }
8396}
8397
8398/* Make sure that the given Mobile Allocation IE matches the hopping configuration */
8399private function f_TC_fh_params_match_ma(in FHParamsTrx fhp, uint3_t tn,
8400 in MobileAllocationLV ma)
8401{
8402 var template MobileAllocationLV tr_ma := f_TC_fh_params_gen_tr_ma(fhp, tn, ma);
8403
8404 if (not match(ma, tr_ma)) {
8405 setverdict(fail, "Mobile Allocation IE does not match (tn := ",
8406 tn, "): ", ma, " vs expected: ", tr_ma);
8407 } else {
8408 setverdict(pass);
8409 }
8410}
8411
8412private function f_TC_fh_params_gen_tr_ma(in FHParamsTrx fhp, uint3_t tn,
8413 in MobileAllocationLV ma)
8414return template MobileAllocationLV {
8415 /* Mobile Allocation IE is expected to be empty if hopping is not enabled */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008416 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008417 return { len := 0, ma := ''B };
8418 }
8419
8420 var bitstring full_mask := f_pad_bit(''B, 1024, '0'B);
8421 var bitstring slot_mask := f_pad_bit(''B, 1024, '0'B);
8422 var bitstring ma_mask := ''B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008423
8424 /* Compose the full bit-mask (all channels, up to 1024 entries) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008425 for (var integer i := 0; i < lengthof(fhp.ts); i := i + 1) {
8426 for (var integer j := 0; j < lengthof(fhp.ts[i].ma); j := j + 1) {
8427 if (full_mask[fhp.ts[i].ma[j]] == '1'B)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008428 { continue; }
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008429 full_mask[fhp.ts[i].ma[j]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008430 }
8431 }
8432
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008433 /* Take ARFCN of the TRX itself into account */
8434 full_mask[fhp.arfcn] := '1'B;
8435
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008436 /* Compose a bit-mask for the given timeslot number */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008437 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8438 slot_mask[fhp.ts[tn].ma[i]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008439 }
8440
8441 /* Finally, compose the Mobile Allocation bit-mask */
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008442 for (var integer i := 1; i < lengthof(full_mask); i := i + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008443 if (full_mask[i] != '1'B)
8444 { continue; }
8445
8446 /* FIXME: ma_mask := ma_mask & slot_mask[i]; // triggers a bug in TITAN */
8447 if (slot_mask[i] == '1'B) {
8448 ma_mask := ma_mask & '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008449 } else {
8450 ma_mask := ma_mask & '0'B;
8451 }
8452 }
8453
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008454 /* ARFCN 0 (if present) goes to the last position of the bit-mask */
8455 if (full_mask[0] == '1'B) {
8456 /* FIXME: ma_mask := ma_mask & slot_mask[0]; // triggers a bug in TITAN */
8457 if (slot_mask[0] == '1'B) {
8458 ma_mask := ma_mask & '1'B;
8459 } else {
8460 ma_mask := ma_mask & '0'B;
8461 }
8462 }
8463
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008464 /* Ensure that ma_mask is octet-aligned */
Vadim Yanitskiy2aa02522020-09-06 14:05:23 +07008465 var integer ma_mask_len := (lengthof(ma_mask) + 8 - 1) / 8;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008466 ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);
8467
8468 return { len := ma_mask_len, ma := ma_mask };
8469}
8470
8471/* Configure the hopping parameters in accordance with the given record */
8472private function f_TC_fh_params_set(in FHParamsTrx fhp,
8473 uint8_t bts_nr := 0,
8474 uint8_t trx_nr := 0)
8475runs on test_CT {
8476 /* Enter the configuration node for the given BTS/TRX numbers */
8477 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8478
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008479 f_vty_transceive(BSCVTY, "arfcn " & int2str(fhp.arfcn));
8480
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008481 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008482 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8483
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008484 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008485 f_vty_transceive(BSCVTY, "hopping enabled 0");
8486 f_vty_transceive(BSCVTY, "exit"); /* go back */
8487 continue;
8488 }
8489
8490 /* Configure HSN / MAIO values */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008491 f_vty_transceive(BSCVTY, "hopping sequence-number " & int2str(fhp.ts[tn].hsn));
8492 f_vty_transceive(BSCVTY, "hopping maio " & int2str(fhp.ts[tn].maio));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008493
8494 /* Configure the Mobile Allocation (hopping channels) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008495 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8496 f_vty_transceive(BSCVTY, "hopping arfcn add " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008497 }
8498
8499 f_vty_transceive(BSCVTY, "hopping enabled 1");
8500 f_vty_transceive(BSCVTY, "exit"); /* go back */
8501 }
8502
8503 f_vty_transceive(BSCVTY, "end");
8504}
8505
8506/* Disable frequency hopping on all timeslots */
8507private function f_TC_fh_params_unset(in FHParamsTrx fhp,
8508 uint8_t bts_nr := 0,
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008509 uint8_t trx_nr := 0,
8510 GsmArfcn arfcn := 871)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008511runs on test_CT {
8512 /* Enter the configuration node for the given BTS/TRX numbers */
8513 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8514
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008515 f_vty_transceive(BSCVTY, "arfcn " & int2str(arfcn));
8516
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008517 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008518 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8519
8520 /* Delete all ARFCNs from the Mobile Allocation (if any) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008521 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8522 f_vty_transceive(BSCVTY, "hopping arfcn del " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008523 }
8524
8525 f_vty_transceive(BSCVTY, "hopping enabled 0");
8526 f_vty_transceive(BSCVTY, "exit"); /* go back */
8527 }
8528
8529 f_vty_transceive(BSCVTY, "end");
8530 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8531}
8532
8533/* Verify presence and correctness of the hopping parameters (HSN, MAIO)
8534 * in the Channel Identification IE of the RSL CHANnel ACTIVation message. */
8535testcase TC_fh_params_chan_activ() runs on test_CT {
8536 var FHParamsTrx fhp := f_TC_fh_params_gen();
8537 var RSL_Message rsl_msg;
8538 var RSL_IE_Body ie;
8539
8540 f_init_vty();
8541
8542 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8543 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8544
8545 f_init(1);
8546
8547 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8548 for (var integer i := 0; i < 9; i := i + 1) {
8549 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8550 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8551
8552 /* Make sure that Channel Identification IE is present */
8553 if (not f_rsl_find_ie(rsl_msg, RSL_IE_CHAN_IDENT, ie)) {
8554 setverdict(fail, "RSL Channel Identification IE is absent");
8555 continue;
8556 }
8557
8558 /* Make sure that hopping parameters (HSN/MAIO) match */
8559 f_TC_fh_params_match_chan_desc(fhp, ie.chan_ident.ch_desc.v);
8560
8561 /* "Mobile Allocation shall be included but empty" - let's check this */
8562 if (ie.chan_ident.ma.v.len != 0) {
8563 setverdict(fail, "Mobile Allocation IE is not empty: ",
8564 ie.chan_ident.ma, ", despite it shall be");
8565 continue;
8566 }
8567 }
8568
8569 /* Disable frequency hopping */
8570 f_TC_fh_params_unset(fhp);
8571
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008572 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008573}
8574
8575/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Immediate Assignment */
8576testcase TC_fh_params_imm_ass() runs on test_CT {
8577 var FHParamsTrx fhp := f_TC_fh_params_gen();
8578 var RSL_Message rsl_msg;
8579 var RSL_IE_Body ie;
8580
8581 f_init_vty();
8582
8583 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8584 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8585
8586 f_init(1);
8587
8588 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8589 for (var integer i := 0; i < 9; i := i + 1) {
8590 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8591 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8592
8593 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8594 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
8595
8596 /* Make sure that Full Immediate Assign Info IE is present */
8597 if (not f_rsl_find_ie(rsl_msg, RSL_IE_FULL_IMM_ASS_INFO, ie)) {
8598 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
8599 continue;
8600 }
8601
8602 /* Decode the actual Immediate Assignment message */
8603 var GsmRrMessage rr_msg := dec_GsmRrMessage(ie.full_imm_ass_info.payload);
8604 if (not match(rr_msg.header, t_RrHeader(IMMEDIATE_ASSIGNMENT, ?))) {
8605 setverdict(fail, "Failed to match Immediate Assignment: ", rr_msg);
8606 continue;
8607 }
8608
8609 /* Make sure that hopping parameters (HSN/MAIO) match */
8610 f_TC_fh_params_match_chan_desc(fhp, rr_msg.payload.imm_ass.chan_desc);
8611
8612 /* Make sure that the Mobile Allocation IE matches */
8613 f_TC_fh_params_match_ma(fhp, rr_msg.payload.imm_ass.chan_desc.chan_nr.tn,
8614 rr_msg.payload.imm_ass.mobile_allocation);
8615 }
8616
8617 /* Disable frequency hopping */
8618 f_TC_fh_params_unset(fhp);
Philipp Maier82812002020-08-13 18:48:27 +02008619
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008620 f_shutdown_helper();
Philipp Maier82812002020-08-13 18:48:27 +02008621}
8622
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008623/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Assignment Command */
8624testcase TC_fh_params_assignment_cmd() runs on test_CT {
8625 var FHParamsTrx fhp := f_TC_fh_params_gen();
8626 var RSL_Message rsl_msg;
8627 var RSL_IE_Body ie;
8628
8629 f_init_vty();
8630
8631 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8632 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8633
8634 f_init(1);
8635
8636 /* HACK: work around "Couldn't find Expect for CRCX" */
8637 vc_MGCP.stop;
8638
8639 var template PDU_BSSAP ass_cmd := f_gen_ass_req();
8640 ass_cmd.pdu.bssmap.assignmentRequest.codecList := ts_BSSMAP_IE_CodecList({ts_CodecFR});
8641
8642 /* CS domain (TCH): 4 (TCH/F) + 2 (TCH/H) channels available
8643 * NOTE: only 3 SDCCH/4 channels are available on CCCH+SDCCH4+CBCH */
8644 for (var integer i := 0; i < 3; i := i + 1) {
8645 /* Establish a dedicated channel, so we can trigger (late) TCH assignment */
8646 var DchanTuple dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8647
8648 /* Send a BSSMAP Assignment Command, expect CHANnel ACTIVation */
8649 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
8650 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8651
8652 /* ACKnowledge CHANnel ACTIVation, expect RSL DATA REQuest */
8653 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8654 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8655
8656 /* Make sure that L3 Information IE is present */
8657 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8658 setverdict(fail, "RSL L3 Information IE is absent");
8659 continue;
8660 }
8661
8662 /* Decode the L3 message and make sure it is (RR) Assignment Command */
8663 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8664 if (not match(l3_msg.header, t_RrL3Header(ASSIGNMENT_COMMAND))) {
8665 setverdict(fail, "Failed to match Assignment Command: ", l3_msg);
8666 continue;
8667 }
8668
8669 /* Make sure that hopping parameters (HSN/MAIO) match */
8670 var ChannelDescription chan_desc := l3_msg.payload.ass_cmd.chan_desc;
8671 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8672
8673 /* Make sure that Cell Channel Description IE is present if FH is enabled */
8674 if (chan_desc.h and not ispresent(l3_msg.payload.ass_cmd.cell_chan_desc)) {
Vadim Yanitskiy38d069d2020-09-02 17:18:57 +07008675 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008676 continue;
8677 }
8678
8679 /* Make sure that the Mobile Allocation IE matches (if present) */
8680 var boolean ma_present := ispresent(l3_msg.payload.ass_cmd.mobile_allocation);
8681 if (chan_desc.h and ma_present) {
8682 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8683 l3_msg.payload.ass_cmd.mobile_allocation.v);
8684 } else if (chan_desc.h and not ma_present) {
8685 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8686 continue;
8687 } else if (not chan_desc.h and ma_present) {
8688 setverdict(fail, "FH disabled, but Mobile Allocation IE is present");
8689 continue;
8690 }
8691 }
8692
8693 /* Give the IUT some time to release all channels */
8694 f_sleep(3.0);
8695
8696 /* Disable frequency hopping */
8697 f_TC_fh_params_unset(fhp);
8698
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008699 f_shutdown_helper();
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008700}
8701
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07008702/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Handover Command */
8703private function f_TC_fh_params_handover_cmd(in FHParamsTrx fhp)
8704runs on test_CT {
8705 var RSL_Message rsl_msg;
8706 var RSL_IE_Body ie;
8707 var DchanTuple dt;
8708
8709 /* Establish a dedicated channel, so we can trigger handover */
8710 dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8711
8712 /* Trigger handover from BTS0 to BTS1 */
8713 f_bts_0_cfg(BSCVTY, { "neighbor bts 1" });
8714 f_vty_handover(BSCVTY, 0, 0, dt.rsl_chan_nr, 1);
8715
8716 /* Expect RSL CHANnel ACTIVation on BTS1/TRX0/TS1 */
8717 rsl_msg := f_exp_ipa_rx(1, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8718
8719 /* ACKnowledge channel activation and expect (RR) Handover Command */
8720 f_ipa_tx(1, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8721 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8722
8723 /* Make sure that L3 Information IE is present */
8724 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8725 setverdict(fail, "RSL L3 Information IE is absent");
8726 return;
8727 }
8728
8729 /* Decode the L3 message and make sure it is (RR) Handover Command */
8730 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8731 if (not match(l3_msg.header, t_RrL3Header(HANDOVER_COMMAND))) {
8732 setverdict(fail, "Failed to match Handover Command: ", l3_msg);
8733 return;
8734 }
8735
8736 /* Make sure that we've got SDCCH/8 on TS1 (expected to be hopping) */
8737 var ChannelDescription chan_desc := l3_msg.payload.ho_cmd.chan_desc;
8738 if (not match(chan_desc.chan_nr, t_RslChanNr_SDCCH8(1, ?))) {
8739 setverdict(fail, "Unexpected channel number: ", chan_desc.chan_nr);
8740 return;
8741 }
8742
8743 /* Make sure that hopping parameters (HSN/MAIO) match */
8744 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8745
8746 /* Make sure that Cell Channel Description IE is present */
8747 if (not ispresent(l3_msg.payload.ho_cmd.cell_chan_desc)) {
8748 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
8749 return;
8750 }
8751
8752 /* Make sure that the Mobile Allocation (after time) IE is present and matches */
8753 var boolean ma_present := ispresent(l3_msg.payload.ho_cmd.mobile_allocation);
8754 if (ma_present) {
8755 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8756 l3_msg.payload.ho_cmd.mobile_allocation.v);
8757 } else {
8758 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8759 return;
8760 }
8761}
8762testcase TC_fh_params_handover_cmd() runs on test_CT {
8763 var FHParamsTrx fhp := f_TC_fh_params_gen();
8764
8765 f_init_vty();
8766
8767 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8 on BTS1/TRX0 */
8768 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8769
8770 f_vty_transceive(BSCVTY, "timeslot 0");
8771 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8772 f_vty_transceive(BSCVTY, "exit"); /* go back */
8773
8774 f_vty_transceive(BSCVTY, "timeslot 1");
8775 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8");
8776 f_vty_transceive(BSCVTY, "end"); /* we're done */
8777
8778 f_TC_fh_params_set(fhp, 1); /* Enable frequency hopping on BTS1 */
8779 f_vty_transceive(BSCVTY, "drop bts connection 1 oml");
8780
8781 f_init(2);
8782
8783 f_TC_fh_params_handover_cmd(fhp);
8784
8785 /* Disable frequency hopping on BTS1 */
8786 f_TC_fh_params_unset(fhp, 1);
8787
8788 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
8789 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8790
8791 f_vty_transceive(BSCVTY, "timeslot 0");
8792 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
8793 f_vty_transceive(BSCVTY, "exit"); /* go back */
8794
8795 f_vty_transceive(BSCVTY, "timeslot 1");
8796 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8797 f_vty_transceive(BSCVTY, "end"); /* we're done */
8798
8799 f_shutdown_helper();
8800}
8801
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008802/* Verify the hopping parameters in System Information Type 4 */
8803testcase TC_fh_params_si4_cbch() runs on test_CT {
8804 var FHParamsTrx fhp := f_TC_fh_params_gen(tr_tn := 1);
8805 var ASP_RSL_Unitdata rx_rsl_ud;
8806 timer T := 5.0;
8807
8808 f_init_vty();
8809
8810 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8+CBCH */
8811 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8812
8813 f_vty_transceive(BSCVTY, "timeslot 0");
8814 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8815 f_vty_transceive(BSCVTY, "exit"); /* go back */
8816
8817 f_vty_transceive(BSCVTY, "timeslot 1");
8818 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8+cbch");
8819 f_vty_transceive(BSCVTY, "end"); /* we're done */
8820
8821 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8822 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8823
8824 f_init(1);
8825
8826 T.start;
8827 alt {
8828 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO(RSL_SYSTEM_INFO_4))) -> value rx_rsl_ud {
8829 var RSL_IE_Body ie := rx_rsl_ud.rsl.ies[2].body; /* FULL BCCH Information IE */
8830 var SystemInformation si := dec_SystemInformation(ie.other.payload);
8831
8832 /* Make sure that what we decoded is System Information Type 4 */
8833 if (si.header.message_type != SYSTEM_INFORMATION_TYPE_4) {
8834 setverdict(fail, "RSL FULL BCCH Information IE contains: ", si);
8835 repeat;
8836 }
8837
8838 /* Make sure that CBCH Channel Description IE is present */
8839 if (not ispresent(si.payload.si4.cbch_chan_desc)) {
8840 setverdict(fail, "CBCH Channel Description IE is absent");
8841 break;
8842 }
8843
8844 /* Finally, check the hopping parameters (HSN, MAIO) */
8845 var ChannelDescription chan_desc := si.payload.si4.cbch_chan_desc.v;
8846 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8847
8848 /* 3GPP TS 44.018, section 9.1.36.2 "CBCH Mobile Allocation":
8849 * The CBCH Mobile Allocation IE *shall* be present if FH is enabled. */
8850 if (chan_desc.h and not ispresent(si.payload.si4.cbch_mobile_alloc)) {
8851 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8852 break;
8853 } else if (chan_desc.h and ispresent(si.payload.si4.cbch_mobile_alloc)) {
8854 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8855 si.payload.si4.cbch_mobile_alloc.v);
8856 }
8857 }
8858 [] IPA_RSL[0].receive { repeat; }
8859 [] T.timeout {
8860 setverdict(fail, "Timeout waiting for RSL BCCH INFOrmation (SI4)");
8861 }
8862 }
8863
8864 /* Disable frequency hopping */
8865 f_TC_fh_params_unset(fhp);
8866
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008867 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008868 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8869
8870 f_vty_transceive(BSCVTY, "timeslot 0");
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008871 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008872 f_vty_transceive(BSCVTY, "exit"); /* go back */
8873
8874 f_vty_transceive(BSCVTY, "timeslot 1");
8875 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8876 f_vty_transceive(BSCVTY, "end"); /* we're done */
8877
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008878 f_shutdown_helper();
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008879}
8880
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008881template (value) PDU_BSSAP_LE ts_BSSMAP_LE_BSSLAP(template (value) BSSLAP_PDU bsslap)
8882 := ts_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, data := enc_BSSLAP_PDU(valueof(bsslap)));
8883
8884private function f_match_bsslap(PDU_BSSAP_LE got_bsslap_msg,
8885 template (present) BSSLAP_PDU expect_bsslap)
8886{
8887 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(got_bsslap_msg.pdu.bssmap.co_info.bsslap_apdu.data);
8888 if (not match(bsslap, expect_bsslap)) {
8889 log("EXPECTING BSSLAP: ", expect_bsslap);
8890 log("GOT BSSLAP: ", bsslap);
8891 setverdict(fail, "BSSLAP is not as expected");
8892 mtc.stop;
8893 }
8894 setverdict(pass);
8895}
8896
8897/* GAD: this is an Ellipsoid point with uncertainty circle, encoded as in 3GPP TS 23.032 §7.3.2. */
8898const octetstring gad_ell_point_unc_circle := '10b0646d0d5f6627'O;
8899
8900private function f_expect_bsslap(template (present) BSSLAP_PDU expect_rx_bsslap) runs on MSC_ConnHdlr {
8901 var PDU_BSSAP_LE rx_bsslap;
8902 BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap);
8903 f_match_bsslap(rx_bsslap, expect_rx_bsslap);
8904}
8905
8906/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8907 * Request on Lb interface. Either with or without the SMLC doing a BSSLAP TA Request. */
8908private function f_lcs_loc_req_for_active_ms(boolean do_ta_request := false) runs on MSC_ConnHdlr {
8909 f_sleep(1.0);
8910
8911 f_establish_fully(omit, omit);
8912 f_bssap_le_register_imsi(g_pars.imsi, omit);
8913
8914 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8915 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8916
8917 var PDU_BSSAP_LE plr;
8918 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8919
8920 if (not do_ta_request) {
8921 /* verify TA Layer 3 in APDU. First the APDU type (BSSLAP), then the BSSLAP data contents. */
8922 var template BSSMAP_LE_IE_APDU expect_apdu := tr_BSSMAP_LE_APDU(BSSMAP_LE_PROT_BSSLAP, ?);
8923 if (not match(plr.pdu.bssmap.perf_loc_req.bsslap_apdu, expect_apdu)) {
8924 log("EXPECTING BSSMAP-LE APDU IE ", expect_apdu);
8925 log("GOT BSSMAP-LE APDU IE ", plr.pdu.bssmap.perf_loc_req.bsslap_apdu);
8926 setverdict(fail, "BSSMAP-LE APDU IE is not as expected");
8927 mtc.stop;
8928 }
8929 var template BSSLAP_PDU expect_ta_layer3 := tr_BSSLAP_TA_Layer3(tr_BSSLAP_IE_TA(0));
8930 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(plr.pdu.bssmap.perf_loc_req.bsslap_apdu.data);
8931 if (not match(bsslap, expect_ta_layer3)) {
8932 log("EXPECTING BSSLAP TA Layer 3: ", expect_ta_layer3);
8933 log("GOT BSSLAP: ", bsslap);
8934 setverdict(fail, "BSSLAP is not as expected");
8935 mtc.stop;
8936 }
8937 /* OsmoBSC directly sent the TA as BSSLAP APDU in the BSSMAP-LE Perform Location Request to the SMLC. The SMLC
8938 * has no need to request the TA from the BSC and directly responds. */
8939 } else {
8940 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8941 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8942 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8943 }
8944
8945 /* SMLC got the TA from the BSC, now responds with geo information data. */
8946 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8947 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8948 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8949
8950 /* The LCS was using an active A-interface conn. It should still remain active after this. */
8951 f_mo_l3_transceive();
8952
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008953 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008954
8955 f_sleep(2.0);
8956 setverdict(pass);
8957}
8958
8959/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8960 * Request on Lb interface. Without the SMLC doing a BSSLAP TA Request. */
8961private function f_tc_lcs_loc_req_for_active_ms(charstring id) runs on MSC_ConnHdlr {
8962 f_lcs_loc_req_for_active_ms(false);
8963}
8964testcase TC_lcs_loc_req_for_active_ms() runs on test_CT {
8965 var MSC_ConnHdlr vc_conn;
8966 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8967
8968 f_init(1, true);
8969 f_sleep(1.0);
8970 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms), pars);
8971 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008972 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008973}
8974
8975/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8976 * Request on Lb interface. With the SMLC doing a BSSLAP TA Request. */
8977private function f_tc_lcs_loc_req_for_active_ms_ta_req(charstring id) runs on MSC_ConnHdlr {
8978 f_lcs_loc_req_for_active_ms(true);
8979}
8980testcase TC_lcs_loc_req_for_active_ms_ta_req() runs on test_CT {
8981 var MSC_ConnHdlr vc_conn;
8982 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8983
8984 f_init(1, true);
8985 f_sleep(1.0);
8986 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_ta_req), pars);
8987 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008988 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008989}
8990
8991/* Clear the A-interface conn only, without doing anything on Abis. Useful for LCS, for cases where there is only an A
8992 * conn without an active lchan. */
8993private function f_clear_A_conn() runs on MSC_ConnHdlr
8994{
8995 var BssmapCause cause := 0;
8996 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
8997 BSSAP.receive(tr_BSSMAP_ClearComplete);
8998 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
8999
9000 timer no_more_bssap := 5.0;
9001 no_more_bssap.start;
9002 alt {
9003 [] no_more_bssap.timeout { break; }
9004 [] BSSAP.receive(tr_BSSAP_BSSMAP) {
9005 setverdict(fail, "Expected no more BSSAP after Clear Complete");
9006 mtc.stop;
9007 }
9008 }
9009 setverdict(pass);
9010}
9011
9012/* Verify that the A-interface connection is still working, and then clear it, without doing anything on Abis. Useful
9013 * for LCS, for cases where there is only an A conn without an active lchan. */
9014private function f_verify_active_A_conn_and_clear() runs on MSC_ConnHdlr
9015{
9016 f_logp(BSCVTY, "f_verify_active_A_conn_and_clear: test A link, then clear");
9017
9018 /* When an lchan is active, we can send some L3 data from the BTS side and verify that it shows up on the other
9019 * side towards the MSC. When there is no lchan, this is not possible. To probe whether the A-interface
9020 * connection is still up, we need something that echos back on the A-interface. Another LCS request! */
9021 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9022 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9023 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?));
9024
9025 /* Right, the Perform Location Request showed up on Lb, now we can clear the A conn. */
9026 f_clear_A_conn();
9027 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9028 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9029}
9030
9031/* With *no* active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
9032 * Request on Lb interface. BSC will Page for the subscriber as soon as we (virtual SMLC) request the TA via BSSLAP.
9033 */
9034private function f_tc_lcs_loc_req_for_idle_ms(charstring id) runs on MSC_ConnHdlr {
9035 f_sleep(1.0);
9036
9037 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9038 f_bssap_le_register_imsi(g_pars.imsi, omit);
9039
9040 /* Register to receive the Paging Command */
9041 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9042 g_chan_nr := new_chan_nr;
9043 f_rslem_register(0, g_chan_nr);
9044
9045 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9046 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9047 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9048 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9049
9050 var PDU_BSSAP_LE plr;
9051 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9052
9053 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9054 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9055
9056 /* OsmoBSC needs to Page */
9057 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi)));
9058 f_logp(BSCVTY, "got Paging Command");
9059
9060 /* MS requests channel. Since the Paging was for LCS, the Paging Response does not trigger a Complete Layer 3 to
9061 * the MSC, and releases the lchan directly. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009062 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);
9063 f_expect_lchan_rel(RSL, RSL_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009064
9065 /* From the Paging Response, the TA is now known to the BSC, and it responds to the SMLC. */
9066
9067 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9068
9069 /* SMLC got the TA from the BSC, now responds with geo information data. */
9070 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9071 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9072
9073 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9074
9075 /* The lchan is gone, the A-interface conn was created for the LCS only.
9076 * Still it is clearly the MSC's job to decide whether to tear down the conn or not. */
9077 f_verify_active_A_conn_and_clear();
9078
9079 f_sleep(2.0);
9080 setverdict(pass);
9081}
9082testcase TC_lcs_loc_req_for_idle_ms() runs on test_CT {
9083 var MSC_ConnHdlr vc_conn;
9084 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9085
9086 f_init(1, true);
9087 f_sleep(1.0);
9088
9089 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9090 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9091
9092 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms), pars);
9093 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009094 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009095}
9096
9097/* With no active lchan, start BSSMAP Perform Location Request on A interface, but omit IMSI; expect failure response.
9098 */
9099private function f_tc_lcs_loc_req_no_subscriber(charstring id) runs on MSC_ConnHdlr {
9100 f_sleep(1.0);
9101
9102 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9103 f_bssap_le_register_imsi(g_pars.imsi, omit);
9104
9105 /* provoke an abort by omitting both IMSI and IMEI */
9106 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9107 valueof(ts_BSSMAP_Perform_Location_Request(omit,
9108 ts_CellId_CGI('262'H, '42'H, 23, 42)))));
9109 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9110
9111 /* BSC tells MSC about failure */
9112 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9113 locationEstimate := omit, positioningData := omit,
9114 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_DATA_MISSING_IN_REQ)));
9115
9116 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9117 f_verify_active_A_conn_and_clear();
9118
9119 f_sleep(2.0);
9120 setverdict(pass);
9121}
9122testcase TC_lcs_loc_req_no_subscriber() runs on test_CT {
9123 var MSC_ConnHdlr vc_conn;
9124 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9125
9126 f_init(1, true);
9127 f_sleep(1.0);
9128
9129 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9130 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9131
9132 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_no_subscriber), pars);
9133 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009134 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009135}
9136
9137/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9138 * BSSMAP-LE Perform Location Response (before or after sending a BSSLAP TA Request) */
9139private function f_lcs_loc_req_for_active_ms_le_timeout(boolean do_ta) runs on MSC_ConnHdlr {
9140 f_sleep(1.0);
9141
9142 f_establish_fully(omit, omit);
9143 f_bssap_le_register_imsi(g_pars.imsi, omit);
9144
9145 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9146 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9147
9148 var PDU_BSSAP_LE plr;
9149 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9150
9151 if (do_ta) {
9152 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9153 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9154 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9155 }
9156
9157 /* SMLC fails to respond, BSC runs into timeout */
9158 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_SYSTEM_FAILURE));
9159 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9160
9161 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9162 locationEstimate := omit, positioningData := omit,
9163 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_SYSTEM_FAILURE)));
9164
9165 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9166 f_verify_active_A_conn_and_clear();
9167
9168 f_sleep(2.0);
9169 setverdict(pass);
9170}
9171
9172/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9173 * BSSMAP-LE Perform Location Response, without sending a BSSLAP TA Request. */
9174private function f_tc_lcs_loc_req_for_active_ms_le_timeout(charstring id) runs on MSC_ConnHdlr {
9175 f_lcs_loc_req_for_active_ms_le_timeout(false);
9176}
9177
9178testcase TC_lcs_loc_req_for_active_ms_le_timeout() runs on test_CT {
9179 var MSC_ConnHdlr vc_conn;
9180 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9181
9182 f_init(1, true);
9183 f_sleep(1.0);
9184 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout), pars);
9185 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009186 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009187}
9188
9189/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9190 * BSSMAP-LE Perform Location Response, after sending a BSSLAP TA Request. */
9191private function f_tc_lcs_loc_req_for_active_ms_le_timeout2(charstring id) runs on MSC_ConnHdlr {
9192 f_lcs_loc_req_for_active_ms_le_timeout(true);
9193}
9194
9195testcase TC_lcs_loc_req_for_active_ms_le_timeout2() runs on test_CT {
9196 var MSC_ConnHdlr vc_conn;
9197 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9198
9199 f_init(1, true);
9200 f_sleep(1.0);
9201 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout2), pars);
9202 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009203 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009204}
9205
9206/* With *no* active lchan, start a Perform Location Request, expecting that the MS will be Paged. */
9207private function f_tc_lcs_loc_req_for_idle_ms_no_pag_resp(charstring id) runs on MSC_ConnHdlr {
9208 f_sleep(1.0);
9209
9210 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9211 f_bssap_le_register_imsi(g_pars.imsi, omit);
9212
9213 /* Register to receive the Paging Command */
9214 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9215 g_chan_nr := new_chan_nr;
9216 f_rslem_register(0, g_chan_nr);
9217
9218 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9219 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9220 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9221 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9222
9223 var PDU_BSSAP_LE plr;
9224 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9225
9226 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9227 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9228
9229 /* OsmoBSC needs to Page */
9230 var PDU_BSSAP_LE rx_bsslap;
9231 alt {
9232 [] RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi))) {
9233 f_logp(BSCVTY, "got Paging Command");
9234 repeat;
9235 }
9236 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9237 /* MS does not respond to Paging, TA Req runs into timeout. */
9238 f_match_bsslap(rx_bsslap, tr_BSSLAP_Abort(?));
9239 }
9240 }
9241
9242 /* SMLC responds with failure */
9243 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(omit, BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9244 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9245
9246 /* BSC tells MSC about failure */
9247 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9248 locationEstimate := omit, positioningData := omit,
9249 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_REQUEST_ABORTED)));
9250
9251 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9252 f_verify_active_A_conn_and_clear();
9253
9254 f_sleep(2.0);
9255 setverdict(pass);
9256}
9257testcase TC_lcs_loc_req_for_idle_ms_no_pag_resp() runs on test_CT {
9258 var MSC_ConnHdlr vc_conn;
9259 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9260
9261 f_init(1, true);
9262 f_sleep(1.0);
9263
9264 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9265 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9266
9267 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms_no_pag_resp), pars);
9268 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009269 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009270}
9271
9272/* During an ongoing Location Request, the MS sends a CM Service Request. Expect the same A-conn to be re-used / taken
9273 * over. */
9274private function f_tc_cm_service_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9275 f_sleep(1.0);
9276
9277 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9278 f_bssap_le_register_imsi(g_pars.imsi, omit);
9279
9280 /* Register to receive the Paging Command */
9281 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9282 g_chan_nr := new_chan_nr;
9283 f_rslem_register(0, g_chan_nr);
9284
9285 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9286 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9287 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9288 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9289
9290 var PDU_BSSAP_LE plr;
9291 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9292
9293 /* As the A-interface conn was established for LCS, the MS coincidentally decides to issue a CM Service Request
9294 * and establish Layer 3. It should use the existing A-interface conn. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009295 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 +02009296 do_clear := false, expect_bssmap_l3 := true);
9297
9298 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9299 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9300
9301 /* OsmoBSC already has an lchan, no need to Page, just returns the TA */
9302 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9303
9304 /* SMLC got the TA from the BSC, now responds with geo information data. */
9305 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9306 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9307 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9308
9309 /* The lchan should still exist, it was from a CM Service Request. */
9310 f_mo_l3_transceive();
9311
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009312 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009313
9314 f_sleep(2.0);
9315 setverdict(pass);
9316}
9317testcase TC_cm_service_during_lcs_loc_req() runs on test_CT {
9318 var MSC_ConnHdlr vc_conn;
9319 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9320
9321 f_init(1, true);
9322 f_sleep(1.0);
9323
9324 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9325 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9326
9327 vc_conn := f_start_handler(refers(f_tc_cm_service_during_lcs_loc_req), pars);
9328 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009329 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009330}
9331
9332/* During an ongoing Perform Location Request, do a Handover, an expect a BSSLAP Reset message from the BSC to indicate
9333 * the new lchan after handover. */
9334private function f_tc_ho_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9335 f_sleep(1.0);
9336
9337 f_establish_fully(omit, omit);
9338 f_bssap_le_register_imsi(g_pars.imsi, omit);
9339
9340 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9341 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9342
9343 var PDU_BSSAP_LE plr;
9344 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9345
9346 /* SMLC ponders the Location Request, in the meantime the BSC decides to handover */
9347 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
9348
9349 var HandoverState hs := {
9350 rr_ho_cmpl_seen := false,
9351 handover_done := false,
Neels Hofmeyrc741fcb2021-10-02 14:52:28 +02009352 old_chan_nr := -,
9353 expect_target_tsc := BTS_TSC[1]
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009354 };
9355 /* issue hand-over command on VTY */
9356 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
9357 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
9358 f_rslem_suspend(RSL1_PROC);
9359
9360 /* From the MGW perspective, a handover is is characterized by
9361 * performing one MDCX operation with the MGW. So we expect to see
9362 * one more MDCX during handover. */
9363 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
9364
9365 alt {
9366 [] as_handover(hs);
9367 }
9368
9369 var PDU_BSSAP_LE rx_bsslap;
9370
9371 interleave {
9372 /* Expect the BSC to inform the MSC about the handover */
9373 [] BSSAP.receive(tr_BSSMAP_HandoverPerformed);
9374
9375 /* Expect the BSC to inform the SMLC about the handover */
9376 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9377 f_match_bsslap(rx_bsslap, tr_BSSLAP_Reset(BSSLAP_CAUSE_INTRA_BSS_HO));
9378 }
9379 }
9380
9381 /* SMLC now responds with geo information data. */
9382 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9383 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9384 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9385
9386 /* lchan still active */
9387 f_mo_l3_transceive(RSL1);
9388
9389 /* MSC decides it is done now. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009390 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009391
9392 f_sleep(2.0);
9393 setverdict(pass);
9394}
9395testcase TC_ho_during_lcs_loc_req() runs on test_CT {
9396 var MSC_ConnHdlr vc_conn;
9397 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9398
9399 f_init(2, true);
9400 f_sleep(1.0);
9401 vc_conn := f_start_handler(refers(f_tc_ho_during_lcs_loc_req), pars);
9402 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009403 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009404}
9405
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009406/* Attempt Complete Layer 3 without any MSC available (OS#4832) */
9407private function f_tc_no_msc(charstring id) runs on MSC_ConnHdlr {
9408 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9409
9410 /* Also disable attach for the single connected MSC */
9411 f_vty_msc_allow_attach(BSCVTY, { false });
9412
9413 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) ));
9414 f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
9415
9416 /* No MSC is found, expecting a proper release on RSL */
9417 interleave {
9418 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
9419 f_logp(BSCVTY, "Got RSL RR Release");
9420 }
9421 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9422 f_logp(BSCVTY, "Got RSL Deact SACCH");
9423 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009424 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009425 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
9426 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009427 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009428 }
9429 }
9430 setverdict(pass);
9431}
9432testcase TC_no_msc() runs on test_CT {
9433
9434 f_init(1, true);
9435 f_sleep(1.0);
9436 var MSC_ConnHdlr vc_conn;
9437 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9438
9439 f_ctrs_bsc_init(counternames_bsc_mscpool);
9440
9441 vc_conn := f_start_handler(refers(f_tc_no_msc), pars);
9442 vc_conn.done;
9443
9444 f_ctrs_bsc_add("mscpool:subscr:no_msc");
9445 f_ctrs_bsc_verify();
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009446 f_shutdown_helper();
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009447}
9448
Harald Welte0ea2d5e2018-04-07 21:40:29 +02009449/* Dyn PDCH todo:
9450 * activate OSMO as TCH/F
9451 * activate OSMO as TCH/H
9452 * does the BSC-located PCU socket get the updated INFO?
9453 * what if no PCU is connected at the time?
9454 * is the info correct on delayed PCU (re)connect?
9455 */
Harald Welte94e0c342018-04-07 11:33:23 +02009456
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009457private function f_TC_refuse_mode_modif_to_vamos(charstring id) runs on MSC_ConnHdlr {
9458 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
9459 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
9460
9461 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
9462 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9463 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
9464 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
9465 g_pars.ass_codec_list.codecElements[0];
9466 if (isvalue(g_pars.expect_mr_s0_s7)) {
9467 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
9468 g_pars.expect_mr_s0_s7;
9469 }
9470 }
9471 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
9472 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
9473 log("expecting ASS COMPL like this: ", exp_compl);
9474
9475 f_establish_fully(ass_cmd, exp_compl);
9476
Neels Hofmeyr8746b0d2021-06-01 17:25:39 +02009477 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 +00009478
9479 var RSL_Message rsl;
9480
9481 timer T := 5.0;
9482 T.start;
9483 alt {
9484 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
9485 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
9486 log("Rx L3 from net: ", l3);
9487 if (ischosen(l3.msgs.rrm.channelModeModify)) {
9488 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9489 mtc.stop;
9490 }
9491 }
9492 [] RSL.receive(tr_RSL_MODE_MODIFY_REQ(g_chan_nr, ?)) -> value rsl {
9493 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9494 mtc.stop;
9495 }
9496 [] T.timeout {
9497 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related Mode Modify should happen. */
9498 setverdict(pass);
9499 }
9500 }
9501 T.stop;
9502}
9503
9504/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel Mode Modify to VAMOS mode is refused by
9505 * osmo-bsc. */
9506testcase TC_refuse_mode_modif_to_vamos() runs on test_CT {
9507 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9508 var MSC_ConnHdlr vc_conn;
9509
9510 f_init(1, true);
9511 f_sleep(1.0);
9512
9513 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9514 vc_conn := f_start_handler(refers(f_TC_refuse_mode_modif_to_vamos), pars);
9515 vc_conn.done;
9516 f_shutdown_helper();
9517}
9518
9519/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel activation to VAMOS mode is refused by osmo-bsc.
9520 */
9521testcase TC_refuse_chan_act_to_vamos() runs on test_CT {
9522 f_init_vty();
9523
9524 f_init(1, false);
9525 f_sleep(1.0);
9526
9527 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 activate-vamos fr");
9528
9529 var ASP_RSL_Unitdata rx_rsl_ud;
9530 timer T := 5.0;
9531
9532 T.start;
9533 alt {
9534 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(?, IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud {
9535 if (rx_rsl_ud.rsl.msg_type == RSL_MT_CHAN_ACTIV) {
9536 T.stop;
9537 setverdict(fail, "CHANnel ACTivate in VAMOS mode succeeded even though BTS does not support VAMOS");
9538 mtc.stop;
9539 }
9540 repeat;
9541 }
9542 [] T.timeout {
9543 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related CHANnel ACTivate should happen. */
9544 setverdict(pass);
9545 }
9546 }
9547}
9548
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009549private function f_TC_reassignment_codec(charstring id) runs on MSC_ConnHdlr {
9550 /* First fully set up a speech lchan */
9551 f_TC_assignment_codec(id);
9552
9553 /* Trigger re-assignment to another lchan */
9554 var AssignmentState assignment_st := valueof(ts_AssignmentStateInit);
9555
9556 /* Re-Assignment should tell the MGW endpoint the new lchan's RTP address and port, so expecting to see exactly
9557 * one MDCX on MGCP. */
9558 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].mdcx_seen_exp + 1;
9559
9560 /* The new lchan will see all-new IPAC_CRCX and IPAC_MDCX messages telling the BTS the same RTP address and port
9561 * as the old lchan used. */
9562 g_media.bts.ipa_crcx_seen := false;
9563 g_media.bts.ipa_mdcx_seen := false;
9564
9565 /* Send different BTS side RTP port number for the new lchan */
9566 g_media.bts.bts.port_nr := 4223;
9567
9568 f_rslem_register(0, valueof(ts_RslChanNr_Bm(2))); /* <-- FIXME: can we somehow infer the timeslot that will be used? */
9569
9570 /* Trigger re-assignment. */
9571 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot " & int2str(g_chan_nr.tn) & " sub-slot 0 assignment");
9572
9573 timer T := 5.0;
9574 T.start;
9575 alt {
9576 [] as_assignment(assignment_st);
9577 [] as_Media();
9578 [] T.timeout {
9579 break;
9580 }
9581 }
9582
9583 if (not assignment_st.assignment_done) {
9584 setverdict(fail, "Assignment did not complete");
9585 mtc.stop;
9586 }
9587
9588 f_check_mgcp_expectations()
9589 setverdict(pass);
9590
9591 f_sleep(2.0);
9592 log("show lchan summary: ", f_vty_transceive_ret(BSCVTY, "show lchan summary"));
9593
9594 /* Instruct BSC to clear channel */
9595 var BssmapCause cause := 0;
9596 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9597 interleave {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009598 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {}
9599 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009600 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009601 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009602 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009603 }
9604 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
9605 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9606 }
9607 }
Neels Hofmeyr40a45d12021-09-23 22:57:12 +02009608 f_expect_dlcx_conns();
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009609
9610 f_sleep(0.5);
9611}
9612
9613testcase TC_reassignment_fr() runs on test_CT {
9614 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9615 var MSC_ConnHdlr vc_conn;
9616
9617 f_init(1, true);
9618 f_sleep(1.0);
9619
9620 f_ctrs_bsc_and_bts_init();
9621
9622 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9623 vc_conn := f_start_handler(refers(f_TC_reassignment_codec), pars);
9624 vc_conn.done;
9625
9626 /* from f_establish_fully() */
9627 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9628 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9629 /* from re-assignment */
9630 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9631 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9632 f_ctrs_bsc_and_bts_verify();
9633 f_shutdown_helper();
9634}
9635
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009636const charstring REEST_LOST_CONNECTION := "REEST_LOST_CONNECTION";
9637const charstring REEST_CLEAR := "REEST_CLEAR";
9638const charstring REEST_CLEAR_DONE := "REEST_CLEAR_DONE";
9639
9640/* CM Re-Establishment, 3GPP TS 24.008 4.5.1.6.
9641 * The MS <-> BTS loses radio connection, MS shows up on second BTS and asks for CM Re-Establishment.
9642 * BSC should establish a separate A conn for the same MS, the original A conn is then cleared by
9643 * the MSC as the CM Re-Establishment is handled.
9644 *
9645 * MS bts0 bts1 bsc msc test-component
9646 * |<----->|<----------------->|<-0-->| _1 Establish channel on bts 0
9647 * | | _1 wait a bit, to settle down
9648 * |<-x x--| | _1 "lose connection"
9649 * | | REEST_LOST_CONNECTION
9650 * |----------------->|------->|--1-->| _2 new A-conn: Chan Rqd, Imm Ass, Compl L3 with CM Re-Establishment Req
9651 * | | REEST_CLEAR
9652 * | |<-0---| _1 Clear Command on first A-conn
9653 * | |--0-->| _1 Clear Complete
9654 * | |<----------------->| | _1 Release first channel
9655 * | | REEST_CLEAR_DONE
9656 * |<-----------------|<-------|<-1---| _2 Chan Activ, Assignment Command
9657 * |<-----------------|<-------|<-1---| _2 Clear Command, Release
9658 *
9659 */
9660private function f_tc_cm_reestablishment_1(charstring id) runs on MSC_ConnHdlr {
9661 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
9662 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9663
9664 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9665 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9666
9667 f_establish_fully(ass_cmd, exp_compl);
9668
9669 /* The original channel loses connection, MS attemts CM Re-Establishment on another cell, see
9670 * f_tc_cm_reestablishment_2(). This established channel stays active until MSC sends a Clear Command. The time
9671 * when exactly that happens is determined by f_tc_cm_reestablishment_2(). */
9672 f_sleep(2.0);
9673 COORD.send(REEST_LOST_CONNECTION);
9674
9675 alt {
9676 [] COORD.receive(REEST_CLEAR);
9677 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9678 setverdict(fail, "Unexpected channel release");
9679 mtc.stop;
9680 }
9681 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
9682 setverdict(fail, "Unexpected channel release");
9683 mtc.stop;
9684 }
9685 }
9686 f_perform_clear()
9687 f_expect_dlcx_conns();
Neels Hofmeyr969abd02021-09-23 22:24:08 +02009688 f_create_mgcp_delete_ep(g_media.mgcp_ep);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009689 COORD.send(REEST_CLEAR_DONE);
9690}
9691
9692private function f_tc_cm_reestablishment_2(charstring id) runs on MSC_ConnHdlr {
9693 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
9694
9695 /* The MS lost the connection on the first channel, now establishes another one */
9696 COORD.receive(REEST_LOST_CONNECTION);
9697
9698 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
9699 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_REESTABL_REQ(mi));
9700 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
9701
9702 f_create_bssmap_exp(l3_enc);
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009703 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 +02009704 BSSAP.receive(tr_BSSMAP_ComplL3(l3_enc));
9705
9706 /* MSC got the CM Re-Establishment request and first off clears the previous conn. */
9707 COORD.send(REEST_CLEAR);
9708 COORD.receive(REEST_CLEAR_DONE);
9709
9710 f_sleep(2.0);
9711
9712 /* Answer the CM Re-Establishment with an Assignment Command. */
9713 var template PDU_BSSAP expect_assignment_compl := f_gen_exp_compl();
9714 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9715 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9716 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9717
9718 var AssignmentState st := valueof(ts_AssignmentStateInit);
9719 st.voice_call := true;
9720 st.is_assignment := true;
9721
9722 var ExpectCriteria mgcpcrit := {
9723 connid := omit,
9724 endpoint := omit,
9725 transid := omit
9726 };
9727 f_create_mgcp_expect(mgcpcrit);
9728
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009729 f_rslem_dchan_queue_enable(RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009730
9731 BSSAP.send(ass_cmd);
9732
9733 var PDU_BSSAP bssap;
9734
9735 alt {
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009736 [] as_assignment(st, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
9737 [] as_Media_ipacc(RSL1, RSL2);
9738 [] as_Media_mgw();
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009739 [st.assignment_done] BSSAP.receive(expect_assignment_compl) {
9740 break;
9741 }
9742 }
9743
9744 f_sleep(3.0);
9745
9746 f_logp(BSCVTY, "f_tc_cm_reestablishment_2 clearing");
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009747 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009748 f_expect_dlcx_conns();
9749}
9750
9751testcase TC_cm_reestablishment() runs on test_CT {
9752 var TestHdlrParams pars1 := f_gen_test_hdlr_pars();
9753 var MSC_ConnHdlr vc_conn1;
9754
9755 var TestHdlrParams pars2 := f_gen_test_hdlr_pars();
9756 var MSC_ConnHdlr vc_conn2;
9757 pars2.imsi := pars1.imsi;
9758 pars2.media_nr := 2;
Neels Hofmeyrbf720202021-10-02 12:58:24 +02009759 pars2.expect_tsc := BTS_TSC[1];
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009760
9761 f_init(2, true, guard_timeout := 40.0);
9762 f_sleep(1.0);
9763
9764 vc_conn1 := f_start_handler_create(pars1);
9765 vc_conn2 := f_start_handler_create(pars2);
9766 connect(vc_conn1:COORD, vc_conn2:COORD);
9767 f_start_handler_run(vc_conn1, refers(f_tc_cm_reestablishment_1), pars1);
9768 f_start_handler_run(vc_conn2, refers(f_tc_cm_reestablishment_2), pars2);
9769 vc_conn1.done;
9770 vc_conn2.done;
9771
9772 f_shutdown_helper();
9773}
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009774
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009775function f_exp_ipa_rx_nonfatal(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0,
9776 IpaStreamId sid := IPAC_PROTO_RSL_TRX0, boolean ignore_other_rx := true)
9777runs on test_CT return template (omit) RSL_Message {
9778 var ASP_RSL_Unitdata rx_rsl_ud;
9779 timer T := t_secs;
9780
9781 T.start;
9782 alt {
9783 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
9784 T.stop;
9785 }
9786 [ignore_other_rx] IPA_RSL[bts_nr].receive { repeat; }
9787 [not ignore_other_rx] IPA_RSL[bts_nr].receive {
9788 log("f_exp_ipa_rx_nonfatal(): Got different message than ", t_rx);
9789 T.stop;
9790 return omit;
9791 }
9792 [] T.timeout {
9793 return omit;
9794 }
9795 }
9796 return rx_rsl_ud.rsl;
9797}
9798
9799private function f_vty_set_imm_ass(TELNETasp_PT pt, BtsNr bts_nr := 0, charstring imm_ass_setting := "post-chan-ack") {
9800 f_vty_enter_cfg_bts(pt, bts_nr);
9801 f_vty_transceive(pt, "immediate-assignment " & imm_ass_setting);
9802 f_vty_transceive(pt, "exit");
9803 f_vty_transceive(pt, "exit");
9804 f_vty_transceive(pt, "exit");
9805}
9806
9807private function f_verify_imm_ass(RSL_Message imm_ass, template uint8_t ra := ?, template GsmFrameNumber fn := ?,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009808 template RslChannelNr chan_nr := ?,
9809 template (present) uint12_t arfcn := ?,
9810 template (present) uint3_t tsc := ?)
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009811{
9812 var RSL_IE_Body full_imm_ass_info;
9813 if (not f_rsl_find_ie(imm_ass, RSL_IE_FULL_IMM_ASS_INFO, full_imm_ass_info)) {
9814 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
9815 mtc.stop;
9816 }
9817
9818 var GsmRrMessage rr_imm_ass := dec_GsmRrMessage(full_imm_ass_info.full_imm_ass_info.payload);
9819 var template GsmRrMessage expect_imm_ass := tr_IMM_ASS(ra := ra,
9820 fn := fn,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009821 ch_desc := tr_ChanDescH0(chan_nr, arfcn, tsc),
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009822 page_mode := ?);
9823 if (not match(rr_imm_ass, expect_imm_ass)) {
9824 log("Error: expected ", expect_imm_ass, " got ", rr_imm_ass);
9825 setverdict(fail, "Failed to match Immediate Assignment");
9826 mtc.stop;
9827 }
9828}
9829
9830testcase TC_imm_ass_post_chan_ack() runs on test_CT {
9831 var RSL_Message chan_act;
9832 var RSL_Message imm_ass;
9833
9834 f_init(1, false);
9835 f_sleep(1.0);
9836
9837 /* (should be the default anyway, just to make things clear) */
9838 f_vty_set_imm_ass(BSCVTY, 0, "post-chan-ack");
9839
9840 /* RA containing reason=LU */
9841 var GsmFrameNumber fn := 2342;
9842 var uint8_t ra := 2;
9843 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9844
9845 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9846
9847 /* First send the Chan Act ACK */
9848 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009849 var RSL_IE_Body chan_ident_ie;
9850 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9851 setverdict(fail, "RSL Channel Identification IE is absent");
9852 mtc.stop;
9853 }
9854
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009855 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn + 10));
9856
9857 /* Then expect the Immediate Assignment, after we ACKed the chan act */
9858 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9859
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009860 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9861 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009862
9863 /* Check that the lchan is working */
9864 var octetstring l3 := '00010203040506'O;
9865 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9866
9867 var BSSAP_N_CONNECT_ind rx_c_ind;
9868 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9869 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9870
9871 f_sleep(1.0);
9872 f_shutdown_helper();
9873}
9874
9875testcase TC_imm_ass_pre_chan_ack() runs on test_CT {
9876 var RSL_Message chan_act;
9877 var RSL_Message imm_ass;
9878
9879 f_init(1, false);
9880 f_sleep(1.0);
9881
9882 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9883
9884 /* RA containing reason=LU */
9885 var GsmFrameNumber fn := 2342;
9886 var uint8_t ra := 2;
9887 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9888
9889 /* (set bts 0 cfg back to default) */
9890 f_vty_set_imm_ass(BSCVTY);
9891
9892 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9893 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009894 var RSL_IE_Body chan_ident_ie;
9895 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9896 setverdict(fail, "RSL Channel Identification IE is absent");
9897 mtc.stop;
9898 }
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009899
9900 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9901 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009902 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9903 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009904
9905 /* Only now send the Chan Act ACK */
9906 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9907
9908 /* Check that the lchan is working */
9909 var octetstring l3 := '00010203040506'O;
9910 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9911
9912 var BSSAP_N_CONNECT_ind rx_c_ind;
9913 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9914 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9915
9916 f_sleep(1.0);
9917 f_shutdown_helper();
9918}
9919
Neels Hofmeyr23158742021-09-07 19:08:07 +02009920testcase TC_imm_ass_pre_ts_ack() runs on test_CT {
9921 var RSL_Message chan_act;
9922 var RSL_Message imm_ass;
9923
9924 f_init(1, false);
9925 f_sleep(1.0);
9926
9927 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
9928
9929 /* RA containing reason=LU */
9930 var GsmFrameNumber fn := 2342;
9931 var uint8_t ra := 2;
9932 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9933
9934 /* (set bts 0 cfg back to default) */
9935 f_vty_set_imm_ass(BSCVTY);
9936
9937 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9938 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
9939 var RSL_IE_Body chan_ident_ie;
9940 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9941 setverdict(fail, "RSL Channel Identification IE is absent");
9942 mtc.stop;
9943 }
9944
9945 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9946 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9947 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9948 chan_ident_ie.chan_ident.ch_desc.v.tsc);
9949
9950 /* Only now send the Chan Act ACK */
9951 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9952
9953 /* Check that the lchan is working */
9954 var octetstring l3 := '00010203040506'O;
9955 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9956
9957 var BSSAP_N_CONNECT_ind rx_c_ind;
9958 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9959 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9960
9961 f_sleep(1.0);
9962 f_shutdown_helper();
9963}
9964
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +02009965testcase TC_imm_ass_pre_chan_ack_dyn_ts() runs on test_CT {
9966 /* change Timeslot 6 before f_init() starts RSL */
9967 f_init_vty();
9968 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
9969 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
9970
9971 f_init(1, false);
9972 f_sleep(1.0);
9973
9974 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
9975 /* The BSC will activate the dynamic PDCH by default, so confirm that */
9976 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
9977 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
9978
9979 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
9980 f_ts_set_chcomb(0, 0, 6, "PDCH");
9981
9982 /* block all static timeslots so that the dyn TS will be used */
9983 f_disable_all_tch_f();
9984 f_disable_all_tch_h();
9985 f_disable_all_sdcch();
9986
9987 var RSL_Message chan_act;
9988 var RSL_Message imm_ass;
9989
9990 f_init(1, false);
9991 f_sleep(1.0);
9992
9993 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9994
9995 /* RA containing reason=LU */
9996 var GsmFrameNumber fn := 2342;
9997 var uint8_t ra := 2;
9998 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9999
10000 /* (set bts 0 cfg back to default) */
10001 f_vty_set_imm_ass(BSCVTY);
10002
10003 /* Expect the dyn TS to deactivate PDCH first */
10004 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10005 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10006
10007 /* Now activation as SDCCH8 */
10008 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10009
10010 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010011 var RSL_IE_Body chan_ident_ie;
10012 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10013 setverdict(fail, "RSL Channel Identification IE is absent");
10014 mtc.stop;
10015 }
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010016
10017 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
10018 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010019 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10020 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010021
10022 /* Only now send the Chan Act ACK */
10023 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10024
10025 /* Check that the lchan is working */
10026 var octetstring l3 := '00010203040506'O;
10027 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10028
10029 var BSSAP_N_CONNECT_ind rx_c_ind;
10030 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10031 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10032
10033 f_sleep(1.0);
10034 f_shutdown_helper();
10035}
10036
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010037testcase TC_imm_ass_pre_ts_ack_dyn_ts() runs on test_CT {
10038 /* change Timeslot 6 before f_init() starts RSL */
10039 f_init_vty();
10040 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
10041 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
10042
10043 f_init(1, false);
10044 f_sleep(1.0);
10045
10046 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
10047 /* The BSC will activate the dynamic PDCH by default, so confirm that */
10048 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
10049 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
10050
10051 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
10052 f_ts_set_chcomb(0, 0, 6, "PDCH");
10053
10054 /* block all static timeslots so that the dyn TS will be used */
10055 f_disable_all_tch_f();
10056 f_disable_all_tch_h();
10057 f_disable_all_sdcch();
10058
10059 var RSL_Message chan_act;
10060 var RSL_Message imm_ass;
10061
10062 f_init(1, false);
10063 f_sleep(1.0);
10064
10065 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
10066
10067 /* RA containing reason=LU */
10068 var GsmFrameNumber fn := 2342;
10069 var uint8_t ra := 2;
10070 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
10071
10072 /* (set bts 0 cfg back to default) */
10073 f_vty_set_imm_ass(BSCVTY);
10074
10075 /* Expect the dyn TS to deactivate PDCH first */
10076 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10077
10078 /* And already the Immediate Assignment even before the PDCH Deact ACK */
10079 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
10080
10081 /* continue the Osmo style PDCH Deact (usual chan rel) */
10082 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10083
10084 /* Now activation as SDCCH8 */
10085 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10086
10087 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010088 var RSL_IE_Body chan_ident_ie;
10089 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10090 setverdict(fail, "RSL Channel Identification IE is absent");
10091 mtc.stop;
10092 }
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010093 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10094
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010095 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10096 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010097
10098 /* Check that the lchan is working */
10099 var octetstring l3 := '00010203040506'O;
10100 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10101
10102 var BSSAP_N_CONNECT_ind rx_c_ind;
10103 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10104 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10105
10106 f_sleep(1.0);
10107 f_shutdown_helper();
10108}
10109
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010110/* GET and SET the bts.N.trx.M.rf_locked CTRL variable */
10111testcase TC_ctrl_trx_rf_locked() runs on test_CT {
10112 var MSC_ConnHdlr vc_conn;
10113
10114 f_init(nr_bts := 2, handler_mode := true, nr_msc := 1);
10115 f_sleep(1.0);
10116
10117 /* BTS 0, 1, 2 are OML unlocked, only BTS 0, 1 are actually connected to RSL. */
10118 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10119 "0,0,operational,unlocked,on,rsl-up;" &
10120 "1,0,operational,unlocked,on,rsl-up;" &
10121 "2,0,operational,unlocked,on,rsl-down;" &
10122 "3,0,inoperational,locked,on,rsl-down;");
10123
10124 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock BTS 1 TRX 0");
10125 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10126 /* give it a moment to settle the FSM status */
10127 f_sleep(1.0);
10128
10129 /* Now BTS 1 TRX 0 should reflect "locked". Note the RF policy stays "on", because this is still handled
10130 * globally in osmo-bsc. Probably after sending "rf_locked 1" for a TRX, that TRX should reflect an RF policy
10131 * of "off"? But that's for a future patch if at all. */
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: lock the already locked TRX, nothing should change");
10139 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
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,locked,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 BTS 1 TRX 0");
10148 f_ctrl_set(IPA_CTRL, "bts.1.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 already unlocked TRX, nothing should change");
10157 f_ctrl_set(IPA_CTRL, "bts.0.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_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an inoperational TRX");
10166 f_ctrl_set(IPA_CTRL, "bts.3.trx.0.rf_locked", "0");
10167 f_sleep(1.0);
10168 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10169 "0,0,operational,unlocked,on,rsl-up;" &
10170 "1,0,operational,unlocked,on,rsl-up;" &
10171 "2,0,operational,unlocked,on,rsl-down;" &
10172 "3,0,inoperational,locked,on,rsl-down;");
10173
10174 f_shutdown_helper();
10175}
10176
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010177/* Reproduce a segfault happening when the SDCCH (primary) lchan is lost in-between a TCH Channel Activ and its Channel
10178 * Activ Ack (SYS#5627). */
10179private function f_TC_lost_sdcch_during_assignment(charstring id) runs on MSC_ConnHdlr {
10180 var PDU_BSSAP ass_cmd := f_gen_ass_req();
10181 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10182 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
10183 }
10184 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
10185 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
10186
10187 var BSSMAP_FIELD_CodecType codecType;
10188 codecType := valueof(ass_cmd.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType);
10189
10190 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
10191
10192 /* First establish a signalling lchan */
10193 f_create_chan_and_exp();
10194 f_rslem_dchan_queue_enable();
10195
10196 /* we should now have a COMPL_L3 at the MSC */
10197 var template PDU_BSSAP exp_l3_compl;
10198 exp_l3_compl := tr_BSSMAP_ComplL3()
10199 if (g_pars.aoip == false) {
10200 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
10201 } else {
10202 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
10203 }
10204 timer T := 10.0;
10205 T.start;
10206 alt {
10207 [] BSSAP.receive(exp_l3_compl);
10208 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
10209 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
10210 }
10211 [] T.timeout {
10212 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
10213 }
10214 }
10215
10216 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
10217 activate(as_Media_mgw());
10218
10219 var RslChannelNr chan_nr := { u := { ch0 := RSL_CHAN_NR_Bm_ACCH }, tn := 1 };
10220 f_rslem_register(0, chan_nr);
10221
10222 f_rslem_set_auto_chan_act_ack(RSL_PROC, false);
10223 BSSAP.send(ass_cmd);
10224
10225
10226 /* Wait for the Channel Activ for the TCH channel */
10227 var ASP_RSL_Unitdata rx_rsl_ud;
10228 RSL.receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV), sid := ?)) -> value rx_rsl_ud;
10229
10230 /* make the original SDCCH disappear */
10231 RSL.send(ts_RSL_REL_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
10232
10233 /* and ACK the TCH channel activation. This caused a segfault up to OsmoBSC 1.7.0 (SYS#5627) */
10234 RSL.send(ts_ASP_RSL_UD(ts_RSL_CHAN_ACT_ACK(chan_nr, 23), rx_rsl_ud.streamId));
10235
10236 interleave {
10237 [] BSSAP.receive(tr_BSSMAP_AssignmentFail);
10238 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
10239 }
10240
10241 BSSAP.send(ts_BSSMAP_ClearCommand(0));
10242 BSSAP.receive(tr_BSSMAP_ClearComplete);
10243 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
10244
10245 var MgcpCommand mgcp;
10246 MGCP.receive(tr_DLCX()) -> value mgcp {
10247 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
10248 };
10249
10250 f_sleep(0.5);
10251}
10252testcase TC_lost_sdcch_during_assignment() runs on test_CT {
10253 var TestHdlrParams pars := f_gen_test_hdlr_pars();
10254 var MSC_ConnHdlr vc_conn;
10255
10256 f_init(1, true);
10257 f_sleep(1.0);
10258
10259 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
10260 vc_conn := f_start_handler(refers(f_TC_lost_sdcch_during_assignment), pars);
10261 vc_conn.done;
10262
10263 f_shutdown_helper();
10264}
10265
Harald Welte28d943e2017-11-25 15:00:50 +010010266control {
Harald Welte898113b2018-01-31 18:32:21 +010010267 /* CTRL interface testing */
Harald Welte4003d112017-12-09 22:35:39 +010010268 execute( TC_ctrl_msc_connection_status() );
Stefan Sperlingb041b3d2018-01-03 17:14:55 +010010269 execute( TC_ctrl_msc0_connection_status() );
Neels Hofmeyrf65ce872021-09-23 18:40:10 +020010270 /* In SCCPlite tests, only one MSC is configured. These tests assume that three MSCs are configured, so only run
10271 * these in the AoIP test suite. */
10272 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10273 execute( TC_stat_num_msc_connected_1() );
10274 execute( TC_stat_num_msc_connected_2() );
10275 execute( TC_stat_num_msc_connected_3() );
10276 }
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020010277 execute( TC_stat_num_bts_connected_1() );
10278 execute( TC_stat_num_bts_connected_2() );
10279 execute( TC_stat_num_bts_connected_3() );
Harald Welte96c94412017-12-09 03:12:45 +010010280 execute( TC_ctrl() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010281 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER) {
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +020010282 execute( TC_ctrl_location() );
10283 }
Harald Welte898113b2018-01-31 18:32:21 +010010284
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010285 execute( TC_si_default() );
Neels Hofmeyr66aeba42020-07-06 02:21:21 +020010286 execute( TC_si2quater_2_earfcns() );
10287 execute( TC_si2quater_3_earfcns() );
10288 execute( TC_si2quater_4_earfcns() );
10289 execute( TC_si2quater_5_earfcns() );
10290 execute( TC_si2quater_6_earfcns() );
Neels Hofmeyrad132f22020-07-08 02:20:16 +020010291 execute( TC_si2quater_12_earfcns() );
10292 execute( TC_si2quater_23_earfcns() );
10293 execute( TC_si2quater_32_earfcns() );
10294 execute( TC_si2quater_33_earfcns() );
10295 execute( TC_si2quater_42_earfcns() );
10296 execute( TC_si2quater_48_earfcns() );
10297 execute( TC_si2quater_49_earfcns() );
Pau Espin Pedrol85a84432020-07-20 18:45:03 +020010298 execute( TC_si_acc_rotate() );
Alexander Couzens4ad3a352020-09-10 22:29:12 +020010299 execute( TC_si_acc_ramp_rotate() );
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010300
Harald Welte898113b2018-01-31 18:32:21 +010010301 /* RSL DCHAN Channel ACtivation / Deactivation */
Harald Welteae026692017-12-09 01:03:01 +010010302 execute( TC_chan_act_noreply() );
Harald Welte4003d112017-12-09 22:35:39 +010010303 execute( TC_chan_act_counter() );
Harald Welteae026692017-12-09 01:03:01 +010010304 execute( TC_chan_act_ack_noest() );
Philipp Maier9c60a622020-07-09 15:08:46 +020010305 execute( TC_chan_act_ack_noest_emerg() );
Philipp Maier606f07d2020-08-12 17:21:58 +020010306 execute( TC_chan_rqd_emerg_deny() );
Harald Welteae026692017-12-09 01:03:01 +010010307 execute( TC_chan_act_ack_est_ind_noreply() );
10308 execute( TC_chan_act_ack_est_ind_refused() );
Harald Welte618ef642017-12-14 14:58:20 +010010309 execute( TC_chan_act_nack() );
Harald Welte799c97b2017-12-14 17:50:30 +010010310 execute( TC_chan_exhaustion() );
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +070010311 execute( TC_chan_deact_silence() );
Harald Welte4003d112017-12-09 22:35:39 +010010312 execute( TC_chan_rel_rll_rel_ind() );
10313 execute( TC_chan_rel_conn_fail() );
10314 execute( TC_chan_rel_hard_clear() );
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +020010315 execute( TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() );
10316 execute( TC_chan_rel_last_eutran_plmn_hard_clear_csfb() );
Harald Welte99787102019-02-04 10:41:36 +010010317 execute( TC_chan_rel_hard_clear_csfb() );
Harald Welted8c36cd2017-12-09 23:05:31 +010010318 execute( TC_chan_rel_hard_rlsd() );
Harald Welte550daf92018-06-11 19:22:13 +020010319 execute( TC_chan_rel_hard_rlsd_ms_dead() );
Harald Welte85804d42017-12-10 14:11:58 +010010320 execute( TC_chan_rel_a_reset() );
Pau Espin Pedrolc675b612020-01-09 19:55:40 +010010321 execute( TC_chan_rel_sccp_tiar_timeout() );
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +020010322 execute( TC_chan_rel_rr_cause() );
Harald Welte6f521d82017-12-11 19:52:02 +010010323
Harald Weltecfe2c962017-12-15 12:09:32 +010010324 execute( TC_outbound_connect() );
Harald Welte898113b2018-01-31 18:32:21 +010010325
10326 /* Assignment related */
Harald Welte16a4adf2017-12-14 18:54:01 +010010327 execute( TC_assignment_cic_only() );
Harald Welte235ebf12017-12-15 14:18:16 +010010328 execute( TC_assignment_csd() );
10329 execute( TC_assignment_ctm() );
10330 execute( TC_assignment_sign() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010331 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10332 execute( TC_assignment_aoip_tla_v6() );
10333 }
Harald Welte235ebf12017-12-15 14:18:16 +010010334 execute( TC_assignment_fr_a5_0() );
10335 execute( TC_assignment_fr_a5_1() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010336 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte8f67d1d2018-05-25 20:38:42 +020010337 execute( TC_assignment_fr_a5_1_codec_missing() );
10338 }
Harald Welte235ebf12017-12-15 14:18:16 +010010339 execute( TC_assignment_fr_a5_3() );
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +020010340 execute( TC_assignment_fr_a5_4() );
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +020010341 execute( TC_assignment_fr_a5_4_fail() );
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +020010342 execute( TC_assignment_fr_a5_not_sup() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010343 execute( TC_ciph_mode_a5_0() );
10344 execute( TC_ciph_mode_a5_1() );
Oliver Smith50b98122021-07-09 15:00:28 +020010345 execute( TC_ciph_mode_a5_2_0() );
Oliver Smith1dff88d2021-07-09 08:45:51 +020010346 execute( TC_ciph_mode_a5_2_1() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010347 execute( TC_ciph_mode_a5_3() );
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +020010348 execute( TC_ciph_mode_a5_4() );
Harald Welte16a4adf2017-12-14 18:54:01 +010010349
Harald Welte60aa5762018-03-21 19:33:13 +010010350 execute( TC_assignment_codec_fr() );
Neels Hofmeyr559d5d02021-04-16 16:50:49 +020010351 execute( TC_assignment_codec_fr_by_mode_modify() );
Harald Welte60aa5762018-03-21 19:33:13 +010010352 execute( TC_assignment_codec_hr() );
10353 execute( TC_assignment_codec_efr() );
10354 execute( TC_assignment_codec_amr_f() );
10355 execute( TC_assignment_codec_amr_h() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010356
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010357 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier8a581d22019-03-26 18:32:48 +010010358 execute( TC_assignment_codec_amr_f_S1() );
10359 execute( TC_assignment_codec_amr_h_S1() );
10360 execute( TC_assignment_codec_amr_f_S124() );
10361 execute( TC_assignment_codec_amr_h_S124() );
10362 execute( TC_assignment_codec_amr_f_S0() );
10363 execute( TC_assignment_codec_amr_f_S02() );
10364 execute( TC_assignment_codec_amr_f_S024() );
10365 execute( TC_assignment_codec_amr_f_S0247() );
10366 execute( TC_assignment_codec_amr_h_S0() );
10367 execute( TC_assignment_codec_amr_h_S02() );
10368 execute( TC_assignment_codec_amr_h_S024() );
10369 execute( TC_assignment_codec_amr_h_S0247() );
10370 execute( TC_assignment_codec_amr_f_S01234567() );
10371 execute( TC_assignment_codec_amr_f_S0234567() );
10372 execute( TC_assignment_codec_amr_f_zero() );
10373 execute( TC_assignment_codec_amr_f_unsupp() );
10374 execute( TC_assignment_codec_amr_h_S7() );
Neels Hofmeyr21863562020-11-26 00:34:33 +000010375 execute( TC_assignment_codec_amr_f_start_mode_auto() );
10376 execute( TC_assignment_codec_amr_h_start_mode_auto() );
Neels Hofmeyr3eb94562020-11-26 02:40:26 +000010377 execute( TC_assignment_codec_amr_f_start_mode_4() );
10378 execute( TC_assignment_codec_amr_h_start_mode_4() );
Neels Hofmeyr454d7922020-11-26 02:24:57 +000010379 execute( TC_assignment_codec_amr_startmode_cruft() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010380 }
Harald Welte60aa5762018-03-21 19:33:13 +010010381
Philipp Maierac09bfc2019-01-08 13:41:39 +010010382 execute( TC_assignment_codec_fr_exhausted_req_hr() );
10383 execute( TC_assignment_codec_fr_exhausted_req_fr() );
10384 execute( TC_assignment_codec_fr_exhausted_req_fr_hr() );
10385 execute( TC_assignment_codec_fr_exhausted_req_hr_fr() );
10386 execute( TC_assignment_codec_hr_exhausted_req_fr() );
10387 execute( TC_assignment_codec_hr_exhausted_req_hr() );
10388 execute( TC_assignment_codec_hr_exhausted_req_hr_fr() );
10389 execute( TC_assignment_codec_hr_exhausted_req_fr_hr() );
10390 execute( TC_assignment_codec_req_hr_fr() );
10391 execute( TC_assignment_codec_req_fr_hr() );
Pau Espin Pedrol14475352021-07-22 15:48:16 +020010392 execute( TC_assignment_sdcch_exhausted_req_signalling() );
10393 execute( TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() );
10394 execute( TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() );
Philipp Maierac09bfc2019-01-08 13:41:39 +010010395
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +020010396 execute( TC_assignment_osmux() );
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +020010397
Harald Welte898113b2018-01-31 18:32:21 +010010398 /* RLL Establish Indication on inactive DCHAN / SAPI */
Harald Welte5cd20ed2017-12-13 21:03:20 +010010399 execute( TC_rll_est_ind_inact_lchan() );
10400 execute( TC_rll_est_ind_inval_sapi1() );
10401 execute( TC_rll_est_ind_inval_sapi3() );
10402 execute( TC_rll_est_ind_inval_sacch() );
10403
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +070010404 /* DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
10405 execute( TC_tch_dlci_link_id_sapi() );
10406
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +070010407 /* SAPI N Reject triggered by RLL establishment failures */
10408 execute( TC_rll_rel_ind_sapi_n_reject() );
10409 execute( TC_rll_err_ind_sapi_n_reject() );
10410 execute( TC_rll_timeout_sapi_n_reject() );
10411
Harald Welte898113b2018-01-31 18:32:21 +010010412 /* Paging related tests */
Harald Welte6f521d82017-12-11 19:52:02 +010010413 execute( TC_paging_imsi_nochan() );
10414 execute( TC_paging_tmsi_nochan() );
10415 execute( TC_paging_tmsi_any() );
10416 execute( TC_paging_tmsi_sdcch() );
10417 execute( TC_paging_tmsi_tch_f() );
10418 execute( TC_paging_tmsi_tch_hf() );
10419 execute( TC_paging_imsi_nochan_cgi() );
10420 execute( TC_paging_imsi_nochan_lac_ci() );
10421 execute( TC_paging_imsi_nochan_ci() );
10422 execute( TC_paging_imsi_nochan_lai() );
10423 execute( TC_paging_imsi_nochan_lac() );
10424 execute( TC_paging_imsi_nochan_all() );
Harald Welte751d3eb2018-01-31 15:51:06 +010010425 execute( TC_paging_imsi_nochan_plmn_lac_rnc() );
10426 execute( TC_paging_imsi_nochan_rnc() );
10427 execute( TC_paging_imsi_nochan_lac_rnc() );
10428 execute( TC_paging_imsi_nochan_lacs() );
10429 execute( TC_paging_imsi_nochan_lacs_empty() );
Stefan Sperling049a86e2018-03-20 15:51:00 +010010430 execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
Harald Welte10985002017-12-12 09:29:15 +010010431 execute( TC_paging_imsi_a_reset() );
Harald Weltee65d40e2017-12-13 00:09:06 +010010432 execute( TC_paging_imsi_load() );
Philipp Maier779a7922018-02-16 11:00:37 +010010433 execute( TC_paging_counter() );
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +010010434 execute( TC_paging_resp_unsol() );
Harald Welte4e9b9cc2017-12-14 18:31:02 +010010435
10436 execute( TC_rsl_drop_counter() );
Stefan Sperling830dc9d2018-02-12 21:08:28 +010010437 execute( TC_rsl_unknown_unit_id() );
10438
10439 execute( TC_oml_unknown_unit_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010440
10441 execute( TC_classmark() );
Harald Welteeddf0e92020-06-21 19:42:15 +020010442 execute( TC_common_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010443 execute( TC_unsol_ass_fail() );
Harald Welteea99a002018-01-31 20:46:43 +010010444 execute( TC_unsol_ass_compl() );
Harald Weltefbf9b5e2018-01-31 20:41:23 +010010445 execute( TC_unsol_ho_fail() );
Harald Weltee3bd6582018-01-31 22:51:25 +010010446 execute( TC_err_82_short_msg() );
Harald Weltee9e02e42018-01-31 23:36:25 +010010447 execute( TC_err_84_unknown_msg() );
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010448
Harald Welte261af4b2018-02-12 21:20:39 +010010449 execute( TC_ho_int() );
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +020010450 execute( TC_ho_int_a5_0() );
10451 execute( TC_ho_int_a5_1() );
10452 execute( TC_ho_int_a5_3() );
10453 execute( TC_ho_int_a5_4() );
Neels Hofmeyr5f144212020-11-03 15:41:58 +000010454 execute( TC_ho_int_radio_link_failure() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010455
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010456 execute( TC_ho_out_of_this_bsc() );
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +020010457 execute( TC_ho_out_fail_no_msc_response() );
10458 execute( TC_ho_out_fail_rr_ho_failure() );
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +020010459 execute( TC_ho_out_fail_no_result_after_ho_cmd() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010460
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010461 execute( TC_ho_into_this_bsc() );
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +020010462 execute( TC_ho_into_this_bsc_a5_0() );
10463 execute( TC_ho_into_this_bsc_a5_1() );
10464 execute( TC_ho_into_this_bsc_a5_3() );
10465 execute( TC_ho_into_this_bsc_a5_4() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010466 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10467 execute( TC_ho_into_this_bsc_tla_v6() );
10468 }
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +020010469 execute( TC_srvcc_eutran_to_geran() );
Pau Espin Pedrol35801c32021-04-19 13:03:20 +020010470 execute( TC_srvcc_eutran_to_geran_ho_out() );
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +020010471 execute( TC_srvcc_eutran_to_geran_forbid_fast_return() );
10472 execute( TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010473 execute( TC_ho_in_fail_msc_clears() );
10474 execute( TC_ho_in_fail_msc_clears_after_ho_detect() );
10475 execute( TC_ho_in_fail_no_detect() );
10476 execute( TC_ho_in_fail_no_detect2() );
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010477
Neels Hofmeyr91401012019-07-11 00:42:35 +020010478 execute( TC_ho_neighbor_config_1() );
10479 execute( TC_ho_neighbor_config_2() );
10480 execute( TC_ho_neighbor_config_3() );
10481 execute( TC_ho_neighbor_config_4() );
10482 execute( TC_ho_neighbor_config_5() );
10483 execute( TC_ho_neighbor_config_6() );
10484 execute( TC_ho_neighbor_config_7() );
10485
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010486 execute( TC_bssap_rlsd_does_not_cause_bssmap_reset() );
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010010487 execute( TC_bssmap_clear_does_not_cause_bssmap_reset() );
Neels Hofmeyrfd445c32018-03-09 15:39:31 +010010488 execute( TC_ms_rel_ind_does_not_cause_bssmap_reset() );
Harald Welte94e0c342018-04-07 11:33:23 +020010489
10490 execute( TC_dyn_pdch_ipa_act_deact() );
10491 execute( TC_dyn_pdch_ipa_act_nack() );
10492 execute( TC_dyn_pdch_osmo_act_deact() );
10493 execute( TC_dyn_pdch_osmo_act_nack() );
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +020010494 if (mp_enable_dyn_sdcch8_test) {
10495 execute( TC_dyn_ts_sdcch8_act_deact() );
10496 execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
10497 execute( TC_dyn_ts_sdcch8_act_nack() );
10498 }
Harald Welte99f3ca02018-06-14 13:40:29 +020010499
Stefan Sperling0796a822018-10-05 13:01:39 +020010500 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +020010501 execute( TC_chopped_ipa_payload() );
Stefan Sperling0796a822018-10-05 13:01:39 +020010502
Pau Espin Pedrol8f773632019-11-05 11:46:53 +010010503 /* Power control related */
10504 execute( TC_assignment_verify_ms_power_params_ie() );
Vadim Yanitskiy4b233042021-06-30 00:58:43 +020010505 execute( TC_c0_power_red_mode() );
Neels Hofmeyr4f118412020-06-04 15:25:10 +020010506
10507 /* MSC pooling */
10508 /* FIXME: in SCCPlite, indicating how many MSCs should be connected does currently not work. Since
10509 * RESET->RESET-ACK is unconditionally negotiated for all configured MSCs, they always all appear as connected
10510 * to osmo-bsc. The MSC pooling tests however require disconnecting selected MSCs, and hence don't work out as
10511 * intended on SCCPlite. So for now, run these only for SCCP/M3UA. */
10512 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10513 execute( TC_mscpool_L3Compl_on_1_msc() );
10514 execute( TC_mscpool_L3Complete_by_imsi_round_robin() );
10515 execute( TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() );
10516 execute( TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() );
10517 execute( TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() );
10518 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() );
10519 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_1() );
10520 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_2() );
10521 execute( TC_mscpool_LU_by_tmsi_from_other_PLMN() );
10522 execute( TC_mscpool_paging_and_response_imsi() );
10523 execute( TC_mscpool_paging_and_response_tmsi() );
10524 execute( TC_mscpool_no_allow_attach_round_robin() );
10525 execute( TC_mscpool_no_allow_attach_valid_nri() );
10526 }
10527
Harald Welte99f3ca02018-06-14 13:40:29 +020010528 execute( TC_early_conn_fail() );
10529 execute( TC_late_conn_fail() );
Oliver Smithaf03bef2021-08-24 15:34:51 +020010530 execute( TC_stats_conn_fail() );
Harald Welte99f3ca02018-06-14 13:40:29 +020010531
Philipp Maier783681c2020-07-16 16:47:06 +020010532 /* Emergency call handling (deny / allow) */
10533 execute( TC_assignment_emerg_setup_allow() );
10534 execute( TC_assignment_emerg_setup_deny_msc() );
10535 execute( TC_assignment_emerg_setup_deny_bts() );
Philipp Maier82812002020-08-13 18:48:27 +020010536 execute( TC_emerg_premption() );
10537
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +070010538 /* Frequency hopping parameters handling */
10539 execute( TC_fh_params_chan_activ() );
10540 execute( TC_fh_params_imm_ass() );
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +070010541 execute( TC_fh_params_assignment_cmd() );
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +070010542 execute( TC_fh_params_handover_cmd() );
Vadim Yanitskiyca974032020-09-01 07:20:39 +070010543 execute( TC_fh_params_si4_cbch() );
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020010544
10545 if (mp_enable_lcs_tests) {
10546 execute( TC_lcs_loc_req_for_active_ms() );
10547 execute( TC_lcs_loc_req_for_active_ms_ta_req() );
10548 execute( TC_lcs_loc_req_for_idle_ms() );
10549 execute( TC_lcs_loc_req_no_subscriber() );
10550 execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
10551 execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
10552 execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
10553 execute( TC_cm_service_during_lcs_loc_req() );
10554 execute( TC_ho_during_lcs_loc_req() );
10555 }
Neels Hofmeyrbf037052020-10-28 22:52:02 +000010556
10557 execute( TC_no_msc() );
Neels Hofmeyr87857ec2021-04-25 16:17:47 +000010558
10559 execute( TC_refuse_chan_act_to_vamos() );
10560 execute( TC_refuse_mode_modif_to_vamos() );
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +000010561
10562 execute( TC_reassignment_fr() );
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +020010563
10564 execute( TC_cm_reestablishment() );
Neels Hofmeyrb07b2952021-08-07 04:23:14 +020010565
10566 execute( TC_imm_ass_post_chan_ack() );
10567 execute( TC_imm_ass_pre_chan_ack() );
Neels Hofmeyr23158742021-09-07 19:08:07 +020010568 execute( TC_imm_ass_pre_ts_ack() );
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010569 execute( TC_imm_ass_pre_chan_ack_dyn_ts() );
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010570 execute( TC_imm_ass_pre_ts_ack_dyn_ts() );
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010571
10572 execute( TC_ctrl_trx_rf_locked() );
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010573
10574 execute( TC_lost_sdcch_during_assignment() );
Harald Welte28d943e2017-11-25 15:00:50 +010010575}
10576
10577}