blob: e8bb99cf61b969e365f1d9595767b391af3ab1cd [file] [log] [blame]
Harald Welte28d943e2017-11-25 15:00:50 +01001module BSC_Tests {
2
Harald Welte21b46bd2017-12-17 19:46:32 +01003/* Integration Tests for OsmoBSC
Harald Weltea0630032018-03-20 21:09:55 +01004 * (C) 2017-2018 by Harald Welte <laforge@gnumonks.org>
Harald Welte21b46bd2017-12-17 19:46:32 +01005 * All rights reserved.
6 *
7 * Released under the terms of GNU General Public License, Version 2 or
8 * (at your option) any later version.
9 *
Harald Welte34b5a952019-05-27 11:54:11 +020010 * SPDX-License-Identifier: GPL-2.0-or-later
11 *
Harald Welte21b46bd2017-12-17 19:46:32 +010012 * This test suite tests OsmoBSC while emulating both multiple BTS + MS as
13 * well as the MSC. See README for more details.
14 *
15 * There are test cases that run in so-called 'handler mode' and test cases
16 * that run directly on top of the BSSAP and RSL CodecPorts. The "handler mode"
17 * tests abstract the multiplexing/demultiplexing of multiple SCCP connections
18 * and/or RSL channels and are hence suitable for higher-level test cases, while
19 * the "raw" tests directly on top of the CodecPorts are more suitable for lower-
20 * level testing.
21 */
22
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +020023friend module BSC_Tests_VAMOS;
24
Neels Hofmeyr4f118412020-06-04 15:25:10 +020025import from Misc_Helpers all;
Harald Welte4003d112017-12-09 22:35:39 +010026import from General_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010027import from Osmocom_Types all;
Harald Welteae026692017-12-09 01:03:01 +010028import from GSM_Types all;
Harald Welte28d943e2017-11-25 15:00:50 +010029import from IPL4asp_Types all;
30
Harald Welte6f521d82017-12-11 19:52:02 +010031import from BSSAP_Types all;
Harald Welte6811d102019-04-14 22:23:14 +020032import from RAN_Adapter all;
Harald Welte47cd0e32020-08-21 12:39:11 +020033import from BSSAP_LE_Adapter all;
34import from BSSAP_LE_CodecPort all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020035import from BSSAP_LE_Types all;
36import from BSSLAP_Types all;
Harald Welteae026692017-12-09 01:03:01 +010037import from BSSAP_CodecPort all;
38import from BSSMAP_Templates all;
Harald Welte28d943e2017-11-25 15:00:50 +010039import from IPA_Emulation all;
Stefan Sperling830dc9d2018-02-12 21:08:28 +010040import from IPA_CodecPort all;
Harald Welteae026692017-12-09 01:03:01 +010041import from IPA_Types all;
Stefan Sperling0796a822018-10-05 13:01:39 +020042import from IPA_Testing all;
Harald Welteae026692017-12-09 01:03:01 +010043import from RSL_Types all;
Harald Welte624f9632017-12-16 19:26:04 +010044import from RSL_Emulation all;
Daniel Willmann191e0d92018-01-17 12:44:35 +010045import from MGCP_Emulation all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010046import from MGCP_Templates all;
47import from MGCP_Types all;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +020048import from MGCP_CodecPort all;
Harald Welte28d943e2017-11-25 15:00:50 +010049
Harald Welte96c94412017-12-09 03:12:45 +010050import from Osmocom_CTRL_Functions all;
Harald Weltea5d2ab22017-12-09 14:21:42 +010051import from Osmocom_CTRL_Types all;
Harald Welteffe55fc2018-01-17 22:39:54 +010052import from Osmocom_CTRL_Adapter all;
Harald Welte96c94412017-12-09 03:12:45 +010053
Daniel Willmannebdecc02020-08-12 15:30:17 +020054import from StatsD_Types all;
55import from StatsD_CodecPort all;
56import from StatsD_CodecPort_CtrlFunct all;
57import from StatsD_Checker all;
58
Harald Weltebc03c762018-02-12 18:09:38 +010059import from Osmocom_VTY_Functions all;
60import from TELNETasp_PortType all;
61
Harald Welte6f521d82017-12-11 19:52:02 +010062import from MobileL3_CommonIE_Types all;
Harald Weltee3bd6582018-01-31 22:51:25 +010063import from MobileL3_Types all;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010064import from MobileL3_RRM_Types all;
Harald Welte6f521d82017-12-11 19:52:02 +010065import from L3_Templates all;
66import from GSM_RR_Types all;
67
Stefan Sperlingc307e682018-06-14 15:15:46 +020068import from SCCP_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010069import from BSSMAP_Templates all;
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020070import from BSSMAP_LE_Templates all;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010071
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010072import from SCCPasp_Types all;
73
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020074import from GSM_SystemInformation all;
75import from GSM_RestOctets all;
Neels Hofmeyrad132f22020-07-08 02:20:16 +020076import from TCCConversion_Functions all;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020077
Neels Hofmeyrbf720202021-10-02 12:58:24 +020078type record of integer integer_list;
79
Harald Welte5d1a2202017-12-13 19:51:29 +010080const integer NUM_BTS := 3;
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020081const integer NUM_BTS_CFG := 4; /* we have 4 BTS in the osmo-bsc.cfg (for inter-BSC HO tests) but use only 3 */
Neels Hofmeyrf246a922020-05-13 02:27:10 +020082const integer NUM_MSC := 3;
Harald Welteae026692017-12-09 01:03:01 +010083const float T3101_MAX := 12.0;
Harald Welte28d943e2017-11-25 15:00:50 +010084
Harald Welte799c97b2017-12-14 17:50:30 +010085/* make sure to sync this with the osmo-bts.cfg you're using */
Philipp Maiercb6cc482018-03-26 13:08:00 +020086const integer NUM_TCHH_PER_BTS := 2;
87const integer NUM_TCHF_PER_BTS := 4;
Neels Hofmeyr74083c22020-07-29 00:43:01 +020088const integer NUM_SDCCH_PER_BTS := 3;
Harald Welte799c97b2017-12-14 17:50:30 +010089
Neels Hofmeyrbf720202021-10-02 12:58:24 +020090/* Default Training Sequence Code expected for bts[i]:
91 * BTS 0 has BSIC 10 (and no explicit timeslot training_sequence_code config), so expecting TSC = (BSIC & 7) = 2.
92 * BTS 1 has BSIC 11, TSC = (BSIC & 7) = 3.
93 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
94 * BTS 2 has BSIC 12, TSC = (BSIC & 7) = 4.
95 */
96const integer_list BTS_TSC := {
97 2,
98 3,
99 4,
100 4
101}
Harald Welte4003d112017-12-09 22:35:39 +0100102
Harald Welte21b46bd2017-12-17 19:46:32 +0100103/* per-BTS state which we keep */
Harald Welte96c94412017-12-09 03:12:45 +0100104type record BTS_State {
Harald Welte21b46bd2017-12-17 19:46:32 +0100105 /* component reference to the IPA_Client component used for RSL */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100106 IPA_Client rsl
Harald Welte96c94412017-12-09 03:12:45 +0100107}
108
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200109/* Default list of counters for an 'msc' entity. */
110const CounterNameVals counternames_msc_mscpool := {
111 { "mscpool:subscr:new", 0 },
112 { "mscpool:subscr:known", 0 },
113 { "mscpool:subscr:reattach", 0 },
114 { "mscpool:subscr:attach_lost", 0 },
115 { "mscpool:subscr:paged", 0 }
116};
117
Neels Hofmeyrbf037052020-10-28 22:52:02 +0000118/* List of global mscpool counters, not related to a specific 'msc' entity. */
119const CounterNameVals counternames_bsc_mscpool := {
120 { "mscpool:subscr:no_msc", 0 }
121};
122
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000123/* Default list of counters for 'bsc' and 'bts' entities. */
124const CounterNameVals counternames_bsc_bts_handover := {
125 { "assignment:attempted", 0 },
126 { "assignment:completed", 0 },
127 { "assignment:stopped", 0 },
128 { "assignment:no_channel", 0 },
129 { "assignment:timeout", 0 },
130 { "assignment:failed", 0 },
131 { "assignment:error", 0 },
132
133 { "handover:attempted", 0 },
134 { "handover:completed", 0 },
135 { "handover:stopped", 0 },
136 { "handover:no_channel", 0 },
137 { "handover:timeout", 0 },
138 { "handover:failed", 0 },
139 { "handover:error", 0 },
140
141 { "intra_cell_ho:attempted", 0 },
142 { "intra_cell_ho:completed", 0 },
143 { "intra_cell_ho:stopped", 0 },
144 { "intra_cell_ho:no_channel", 0 },
145 { "intra_cell_ho:timeout", 0 },
146 { "intra_cell_ho:failed", 0 },
147 { "intra_cell_ho:error", 0 },
148
149 { "intra_bsc_ho:attempted", 0 },
150 { "intra_bsc_ho:completed", 0 },
151 { "intra_bsc_ho:stopped", 0 },
152 { "intra_bsc_ho:no_channel", 0 },
153 { "intra_bsc_ho:timeout", 0 },
154 { "intra_bsc_ho:failed", 0 },
155 { "intra_bsc_ho:error", 0 },
156
157 { "interbsc_ho_out:attempted", 0 },
158 { "interbsc_ho_out:completed", 0 },
159 { "interbsc_ho_out:stopped", 0 },
160 { "interbsc_ho_out:timeout", 0 },
161 { "interbsc_ho_out:failed", 0 },
162 { "interbsc_ho_out:error", 0 },
163
164 { "interbsc_ho_in:attempted", 0 },
165 { "interbsc_ho_in:completed", 0 },
166 { "interbsc_ho_in:stopped", 0 },
167 { "interbsc_ho_in:no_channel", 0 },
168 { "interbsc_ho_in:timeout", 0 },
169 { "interbsc_ho_in:failed", 0 },
170 { "interbsc_ho_in:error", 0 }
171};
172
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200173/* Set of all System Information received during one RSL port's startup.
174 * Note that some System Information may be sent on RSL, but lacking actual SI data, to indicate that the BTS should not
175 * broadcast that SI type. That will be reflected as 'omit' here.
176 */
177type record SystemInformationConfig {
178 SystemInformationType1 si1 optional,
179 SystemInformationType2 si2 optional,
180 SystemInformationType2bis si2bis optional,
181 SystemInformationType2ter si2ter optional,
Neels Hofmeyrad132f22020-07-08 02:20:16 +0200182 SI2quaterRestOctetsList si2quater optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200183 SystemInformationType3 si3 optional,
184 SystemInformationType4 si4 optional,
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100185 SystemInformationType13 si13 optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200186 SystemInformationType5 si5 optional,
187 SystemInformationType5bis si5bis optional,
188 SystemInformationType5ter si5ter optional,
189 SystemInformationType6 si6 optional
190};
191
192const SystemInformationConfig SystemInformationConfig_omit := {
193 si1 := omit,
194 si2 := omit,
195 si2bis := omit,
196 si2ter := omit,
197 si2quater := omit,
198 si3 := omit,
199 si4 := omit,
200 si13 := omit,
201 si5 := omit,
202 si5bis := omit,
203 si5ter := omit,
204 si6 := omit
205};
206
207/* tr_EUTRAN_CellDesc with defaults used in BSC_Tests.ttcn */
208template EUTRAN_CellDesc tr_EUTRAN_CellDesc_default(template (present) uint16_t e_arfcn := ?,
209 template uint3_t meas_bw := 3)
210:= tr_EUTRAN_CellDesc(e_arfcn := e_arfcn,
211 meas_bw_presence := '1'B,
212 meas_bw := meas_bw);
213
214/* tr_EUTRAN_NeighbourCells with defaults used in BSC_Tests.ttcn */
Harald Welte65e419a2020-08-21 12:38:33 +0200215template EUTRAN_NeighbourCells tr_EUTRAN_NeighbourCells_default(template (present) EUTRAN_CellDescs cell_desc_list := { tr_EUTRAN_CellDesc_default },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200216 template uint3_t prio := 3,
217 template (present) uint5_t thresh_high := 20,
218 template uint5_t thresh_low := 10,
219 template uint5_t qrxlevmin := 22)
220:= tr_EUTRAN_NeighbourCells(
221 cell_desc_list := cell_desc_list,
222 prio_presence := '1'B,
223 prio := prio,
224 thresh_high := thresh_high,
225 thresh_low_presence := '1'B,
226 thresh_low := thresh_low,
227 qrxlevmin_presence := '1'B,
228 qrxlevmin := qrxlevmin);
229
230template SystemInformationConfig SystemInformationConfig_default := {
231 si1 := {
232 cell_chan_desc := '8FB38000000000000000000000000000'O,
233 rach_control := {
234 max_retrans := RACH_MAX_RETRANS_7,
235 tx_integer := '1001'B,
236 cell_barr_access := false,
237 re_not_allowed := true,
238 acc := '0000010000000000'B
239 },
240 rest_octets := ?
241 },
242 si2 := {
243 bcch_freq_list := '00000000000000000000000000000000'O,
244 ncc_permitted := '11111111'B,
245 rach_control := {
246 max_retrans := RACH_MAX_RETRANS_7,
247 tx_integer := '1001'B,
248 cell_barr_access := false,
249 re_not_allowed := true,
250 acc := '0000010000000000'B
251 }
252 },
253 si2bis := omit,
254 si2ter := {
255 extd_bcch_freq_list := '8E320000000000000000000000000800'O,
256 rest_octets := ?
257 },
258 si2quater := {
259 tr_SI2quaterRestOctets_EUTRAN( repeated_neigh_cells := { tr_EUTRAN_NeighbourCells_default } )
260 },
261 si3 := {
262 cell_id := 0,
263 lai := {
264 mcc_mnc := '001F01'H,
265 lac := 1
266 },
267 ctrl_chan_desc := {
268 msc_r99 := true,
269 att := true,
270 bs_ag_blks_res := 1,
271 ccch_conf := CCHAN_DESC_1CCCH_COMBINED,
272 si22ind := false,
273 cbq3 := CBQ3_IU_MODE_NOT_SUPPORTED,
274 spare := '00'B,
275 bs_pa_mfrms := 3,
276 t3212 := 30
277 },
278 cell_options := {
279 dn_ind := false,
280 pwrc := false,
281 dtx := MS_SHALL_USE_UL_DTX,
282 radio_link_tout_div4 := 7
283 },
284 cell_sel_par := {
285 cell_resel_hyst_2dB := 2,
286 ms_txpwr_max_cch := 7,
287 acs := '0'B,
288 neci := true,
289 rxlev_access_min := 0
290 },
291 rach_control := {
292 max_retrans := RACH_MAX_RETRANS_7,
293 tx_integer := '1001'B,
294 cell_barr_access := false,
295 re_not_allowed := true,
296 acc := '0000010000000000'B
297 },
298 rest_octets := {
299 sel_params := {
300 presence := '0'B,
301 params := omit
302 },
303 pwr_offset := {
304 presence := '0'B,
305 offset := omit
306 },
307 si_2ter_ind := '1'B,
308 early_cm_ind := '0'B,
309 sched_where := {
310 presence := '0'B,
311 where := omit
312 },
313 gprs_ind := {
314 presence := '1'B,
315 ind := {
316 ra_colour := 0,
317 si13_pos := '0'B
318 }
319 },
320 umts_early_cm_ind := '1'B,
321 si2_quater_ind := {
322 presence := '1'B,
323 ind := '0'B
324 },
325 iu_mode_ind := omit,
326 si21_ind := {
327 presence := '0'B,
328 pos := omit
329 }
330 }
331 },
332 si4 := {
333 lai := {
334 mcc_mnc := '001F01'H,
335 lac := 1
336 },
337 cell_sel_par := {
338 cell_resel_hyst_2dB := 2,
339 ms_txpwr_max_cch := 7,
340 acs := '0'B,
341 neci := true,
342 rxlev_access_min := 0
343 },
344 rach_control := {
345 max_retrans := RACH_MAX_RETRANS_7,
346 tx_integer := '1001'B,
347 cell_barr_access := false,
348 re_not_allowed := true,
349 acc := '0000010000000000'B
350 },
Neels Hofmeyr74083c22020-07-29 00:43:01 +0200351 cbch_chan_desc := {
352 iei := '64'O,
353 v := {
354 chan_nr := {
355 u := {
356 sdcch4 := {
357 tag := '001'B,
358 sub_chan := 2
359 }
360 },
361 tn := 0
362 },
363 tsc := 2,
364 h := false,
365 arfcn := 871,
366 maio_hsn := omit
367 }
368 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200369 cbch_mobile_alloc := omit,
370 rest_octets := {
371 sel_params := {
372 presence := '0'B,
373 params := omit
374 },
375 pwr_offset := {
376 presence := '0'B,
377 offset := omit
378 },
379 gprs_ind := {
380 presence := '1'B,
381 ind := {
382 ra_colour := 0,
383 si13_pos := '0'B
384 }
385 },
386 s_presence := '0'B,
387 s := omit
388 }
389 },
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100390 si13 := {
391 rest_octets := {
392 presence := '1'B,
393 bcch_change_mark := ?,
394 si_change_field := '0000'B,
395 presence2 := '0'B,
396 si13_change_mark := omit,
397 gprs_ma := omit,
398 zero := '0'B, /* PBCCH not present in cell */
399 rac := 0,
400 spgc_ccch_sup := '0'B,
401 priority_access_thr := '110'B,
402 network_control_order := '00'B,
403 gprs_cell_opts := {
404 nmo := '01'B,
405 t3168 := '011'B,
406 t3192 := '010'B,
407 drx_timer_max := '011'B,
408 access_burst_type := '0'B,
409 control_ack_type := '1'B,
410 bs_cv_max := 15,
411 pan_presence := '1'B,
412 pan_dec := 1,
413 pan_inc := 1,
414 pan_max := '111'B,
415 ext_info_presence := ?,
416 ext_info_length := *,
417 ext_info := *
418 },
419 gprs_pwr_ctrl_params := {
420 alpha := 0,
421 t_avg_w := '10000'B,
422 t_avg_t := '10000'B,
423 pc_meas_chan := '0'B,
424 n_avg_i := '1000'B
425 }
426 }
427 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200428 si5 := {
429 bcch_freq_list := '10000000000000000000000000000000'O
430 },
431 si5bis := omit,
432 si5ter := {
433 extd_bcch_freq_list := '9E050020000000000000000000000000'O
434 },
435 si6 := {
436 cell_id := 0,
437 lai := {
438 mcc_mnc := '001F01'H,
439 lac := 1
440 },
441 cell_options := {
442 dtx_ext := '1'B,
443 pwrc := false,
444 dtx := '01'B,
445 radio_link_timeout := '0111'B
446 },
447 ncc_permitted := '11111111'B,
448 rest_octets := ?
449 }
450 };
451
452
453/* List of all the System Information received on all RSL ports */
454type record of SystemInformationConfig SystemInformationConfig_list;
455
456function f_sysinfo_dec_raw(inout SystemInformationConfig si, RSL_Message rsl)
457{
458 var RSL_IE_Body sysinfo_type_ie;
459 var RSL_IE_SysinfoType si_type;
460 var octetstring data;
461
462 if (f_rsl_find_ie(rsl, RSL_IE_SYSINFO_TYPE, sysinfo_type_ie) == false) {
463 setverdict(fail, "Cannot find RSL_IE_SYSINFO_TYPE");
464 mtc.stop;
465 }
466 si_type := sysinfo_type_ie.sysinfo_type;
467
468 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
469 var RSL_IE_Body bcch_ie;
470 if (f_rsl_find_ie(rsl, RSL_IE_FULL_BCCH_INFO, bcch_ie)) {
471 data := bcch_ie.other.payload;
472 }
473 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
474 var RSL_IE_Body l3_ie;
475 if (f_rsl_find_ie(rsl, RSL_IE_L3_INFO, l3_ie)) {
476 data := l3_ie.l3_info.payload;
477 }
478 } else {
479 setverdict(fail, "Don't understand this System Information message");
480 mtc.stop;
481 }
482
483 var boolean handled := false;
484
485 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
486 handled := true;
487
488 if (si_type == RSL_SYSTEM_INFO_1) {
489 if (not isbound(data)) {
490 si.si1 := omit;
491 } else {
492 si.si1 := dec_SystemInformation(data).payload.si1;
493 }
494 } else if (si_type == RSL_SYSTEM_INFO_2) {
495 if (not isbound(data)) {
496 si.si2 := omit;
497 } else {
498 si.si2 := dec_SystemInformation(data).payload.si2;
499 }
500 } else if (si_type == RSL_SYSTEM_INFO_2bis) {
501 if (not isbound(data)) {
502 si.si2bis := omit;
503 } else {
504 si.si2bis := dec_SystemInformation(data).payload.si2bis;
505 }
506 } else if (si_type == RSL_SYSTEM_INFO_2ter) {
507 if (not isbound(data)) {
508 si.si2ter := omit;
509 } else {
510 si.si2ter := dec_SystemInformation(data).payload.si2ter;
511 }
512 } else if (si_type == RSL_SYSTEM_INFO_2quater) {
513 if (not isbound(data)) {
514 si.si2quater := {};
515 } else {
516 var SystemInformationType2quater decoded := dec_SystemInformation(data).payload.si2quater;
517 /* this is a *record* of SI2quaterRestOctets! (multiplexed) */
518 si.si2quater[decoded.rest_octets.si2quater_index] := decoded.rest_octets;
519 }
520 } else if (si_type == RSL_SYSTEM_INFO_3) {
521 if (not isbound(data)) {
522 si.si3 := omit;
523 } else {
524 si.si3 := dec_SystemInformation(data).payload.si3;
525 }
526 } else if (si_type == RSL_SYSTEM_INFO_4) {
527 if (not isbound(data)) {
528 si.si4 := omit;
529 } else {
530 si.si4 := dec_SystemInformation(data).payload.si4;
531 }
532 } else if (si_type == RSL_SYSTEM_INFO_13) {
533 if (not isbound(data)) {
534 si.si13 := omit;
535 } else {
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100536 si.si13 := dec_SystemInformation(data).payload.si13;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200537 }
538 } else {
539 handled := false;
540 }
541 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
542 handled := true;
543
544 if (si_type == RSL_SYSTEM_INFO_5) {
545 if (not isbound(data)) {
546 si.si5 := omit;
547 } else {
548 si.si5 := dec_SystemInformation(data).payload.si5;
549 }
550 } else if (si_type == RSL_SYSTEM_INFO_5bis) {
551 if (not isbound(data)) {
552 si.si5bis := omit;
553 } else {
554 si.si5bis := dec_SystemInformation(data).payload.si5bis;
555 }
556 } else if (si_type == RSL_SYSTEM_INFO_5ter) {
557 if (not isbound(data)) {
558 si.si5ter := omit;
559 } else {
560 si.si5ter := dec_SystemInformation(data).payload.si5ter;
561 }
562 } else if (si_type == RSL_SYSTEM_INFO_6) {
563 if (not isbound(data)) {
564 si.si6 := omit;
565 } else {
566 si.si6 := dec_SystemInformation(data).payload.si6;
567 }
568 } else {
569 handled := false;
570 }
571 }
572
573 if (not handled) {
574 setverdict(fail, "Unexpected SI type in ", rsl.msg_type, " message: ", si_type);
575 }
576}
577
Harald Weltea4ca4462018-02-09 00:17:14 +0100578type component test_CT extends CTRL_Adapter_CT {
Harald Welte21b46bd2017-12-17 19:46:32 +0100579 /* Array of per-BTS state */
Harald Welte96c94412017-12-09 03:12:45 +0100580 var BTS_State bts[NUM_BTS];
Harald Welte89ab1912018-02-23 18:56:29 +0100581 /* RSL common Channel Port (for RSL_Emulation) */
582 port RSL_CCHAN_PT RSL_CCHAN[NUM_BTS];
Harald Welte21b46bd2017-12-17 19:46:32 +0100583 /* array of per-BTS RSL test ports */
Harald Welteae026692017-12-09 01:03:01 +0100584 port IPA_RSL_PT IPA_RSL[NUM_BTS];
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100585 port IPA_CODEC_PT IPA; /* Required for compilation of TC_rsl_unknown_unit_id() */
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +0200586 /* CTRL muxed over IPA in SCCPlite conn BSC<->MSC (or BSC-NAT) */
587 port IPA_CTRL_PT SCCPLITE_IPA_CTRL;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100588
Daniel Willmann191e0d92018-01-17 12:44:35 +0100589 var MGCP_Emulation_CT vc_MGCP;
Harald Weltebc03c762018-02-12 18:09:38 +0100590 port TELNETasp_PT BSCVTY;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100591
Daniel Willmannebdecc02020-08-12 15:30:17 +0200592 /* StatsD */
593 var StatsD_Checker_CT vc_STATSD;
594
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200595 var RAN_Adapter g_bssap[NUM_MSC];
Harald Welte47cd0e32020-08-21 12:39:11 +0200596 var BSSAP_LE_Adapter g_bssap_le;
Harald Weltea4ca4462018-02-09 00:17:14 +0100597 /* for old legacy-tests only */
598 port BSSAP_CODEC_PT BSSAP;
Harald Welte47cd0e32020-08-21 12:39:11 +0200599 port BSSAP_LE_CODEC_PT BSSAP_LE;
Harald Weltea4ca4462018-02-09 00:17:14 +0100600
Harald Welte21b46bd2017-12-17 19:46:32 +0100601 /* are we initialized yet */
Harald Welte28d943e2017-11-25 15:00:50 +0100602 var boolean g_initialized := false;
Harald Welte21b46bd2017-12-17 19:46:32 +0100603
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200604 /* Osmux is enabled through VTY */
605 var boolean g_osmux_enabled := false;
606
Pau Espin Pedrolc675b612020-01-09 19:55:40 +0100607 /*Configure T(tias) over VTY, seconds */
608 var integer g_bsc_sccp_timer_ias := 7 * 60;
609 /*Configure T(tiar) over VTY, seconds */
610 var integer g_bsc_sccp_timer_iar := 15 * 60;
611
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +0200612 /* global test case guard timer (actual timeout value is set in f_init()) */
Harald Welteae026692017-12-09 01:03:01 +0100613 timer T_guard := 30.0;
614
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200615 var CounterNameValsList g_ctr_msc;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000616 var CounterNameValsList g_ctr_bsc;
617 var CounterNameValsList g_ctr_bts;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200618
619 /* System Information bytes as received during RSL startup, for each RSL[idx]. */
620 var SystemInformationConfig_list g_system_information := {};
Harald Welte28d943e2017-11-25 15:00:50 +0100621}
622
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200623type record of charstring phys_chan_configs;
Harald Welte28d943e2017-11-25 15:00:50 +0100624modulepar {
Harald Welte21b46bd2017-12-17 19:46:32 +0100625 /* IP address at which the BSC can be reached */
Harald Welte696ddb62017-12-08 14:01:43 +0100626 charstring mp_bsc_ip := "127.0.0.1";
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100627 /* port number to which to establish the IPA OML connections */
628 integer mp_bsc_oml_port := 3002;
Harald Welte21b46bd2017-12-17 19:46:32 +0100629 /* port number to which to establish the IPA RSL connections */
Harald Welte696ddb62017-12-08 14:01:43 +0100630 integer mp_bsc_rsl_port := 3003;
Harald Welte21b46bd2017-12-17 19:46:32 +0100631 /* port number to which to establish the IPA CTRL connection */
Harald Welte96c94412017-12-09 03:12:45 +0100632 integer mp_bsc_ctrl_port := 4249;
Daniel Willmannebdecc02020-08-12 15:30:17 +0200633 /* port number to which to listen for STATSD metrics */
634 integer mp_bsc_statsd_port := 8125;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100635 /* IP address at which the test binds */
636 charstring mp_test_ip := "127.0.0.1";
Harald Weltea4ca4462018-02-09 00:17:14 +0100637
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200638 RAN_Configurations mp_bssap_cfg := {
639 {
640 transport := BSSAP_TRANSPORT_AoIP,
641 sccp_service_type := "mtp3_itu",
642 sctp_addr := { 23905, "127.0.0.1", 2905, "127.0.0.1" },
643 own_pc := 185, /* 0.23.1 first MSC emulation */
644 own_ssn := 254,
645 peer_pc := 187, /* 0.23.3 osmo-bsc */
646 peer_ssn := 254,
647 sio := '83'O,
Harald Weltecb0cc432020-06-21 19:42:31 +0200648 rctx := 1
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200649 },
650 {
651 transport := BSSAP_TRANSPORT_AoIP,
652 sccp_service_type := "mtp3_itu",
653 sctp_addr := { 23906, "127.0.0.1", 2905, "127.0.0.1" },
654 own_pc := 2, /* 0.0.2 second MSC emulation */
655 own_ssn := 254,
656 peer_pc := 187, /* 0.23.3 osmo-bsc */
657 peer_ssn := 254,
658 sio := '83'O,
659 rctx := 2
660 },
661 {
662 transport := BSSAP_TRANSPORT_AoIP,
663 sccp_service_type := "mtp3_itu",
664 sctp_addr := { 23907, "127.0.0.1", 2905, "127.0.0.1" },
665 own_pc := 3, /* 0.0.3 third MSC emulation */
666 own_ssn := 254,
667 peer_pc := 187, /* 0.23.3 osmo-bsc */
668 peer_ssn := 254,
669 sio := '83'O,
670 rctx := 3
671 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100672 };
Pau Espin Pedrol58cf6822019-05-28 18:11:33 +0200673
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200674 /* Must match per BTS config in osmo-bsc.cfg */
675 phys_chan_configs phys_chan_config := {
676 "CCCH+SDCCH4+CBCH",
677 "TCH/F",
678 "TCH/F",
679 "TCH/F",
680 "TCH/F",
Vadim Yanitskiy343c9eb2021-07-16 18:36:01 +0600681 "TCH/H",
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200682 "PDCH",
683 "PDCH"
684 };
685
Harald Welte47cd0e32020-08-21 12:39:11 +0200686 BSSAP_LE_Configuration mp_bssap_le_cfg := {
687 sccp_service_type := "mtp3_itu",
688 sctp_addr := { 23908, "127.0.0.1", 2905, "127.0.0.1" },
Neels Hofmeyrac086c12020-09-18 23:46:42 +0200689 own_pc := 190, /* 0.23.6 SMLC emulation */
Harald Welte47cd0e32020-08-21 12:39:11 +0200690 own_ssn := 252, /* SMLC side SSN */
691 peer_pc := 187, /* 0.23.3 osmo-bsc */
692 peer_ssn := 250, /* BSC side SSN */
693 sio := '83'O,
694 rctx := 6
695 };
Neels Hofmeyrcfe44062020-10-15 02:28:08 +0200696 boolean mp_enable_lcs_tests := true;
Harald Welte47cd0e32020-08-21 12:39:11 +0200697
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +0200698 /* Whether to enable dyn TS SDCCH8 tests. Can be dropped completely and enable
699 unconditionally once new version of osmo-bsc is released (current
700 version: 1.7.0) */
701 boolean mp_enable_dyn_sdcch8_test := true;
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100702 /* Value set in osmo-bsc.cfg "ms max power" */
703 uint8_t mp_exp_ms_power_level := 7;
Harald Weltea4ca4462018-02-09 00:17:14 +0100704}
705
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200706friend function f_gen_test_hdlr_pars(integer bssap_idx := 0) return TestHdlrParams {
Philipp Maier48604732018-10-09 15:00:37 +0200707
708 var TestHdlrParams pars := valueof(t_def_TestHdlrPars);
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200709 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier48604732018-10-09 15:00:37 +0200710 pars.aoip := true;
711 } else {
712 pars.aoip := false;
713 }
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100714 pars.exp_ms_power_level := mp_exp_ms_power_level;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200715 pars.mscpool.bssap_idx := bssap_idx;
Neels Hofmeyrbf720202021-10-02 12:58:24 +0200716 pars.expect_tsc := BTS_TSC[0];
Neels Hofmeyrb5b7a6e2021-06-04 19:03:45 +0200717
Philipp Maier48604732018-10-09 15:00:37 +0200718 return pars;
719}
720
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200721/* Convenience functions for rate counters using g_ctr_msc. */
722
723private function f_ctrs_msc_init(integer mscs_count := NUM_MSC, CounterNameVals counternames := counternames_msc_mscpool) runs on test_CT {
724 g_ctr_msc := f_counter_name_vals_get_n(IPA_CTRL, "msc", mscs_count, counternames);
725 log("initial msc rate counters: ", g_ctr_msc);
726}
727
728private function f_ctrs_msc_add(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
Neels Hofmeyr9656e922020-06-30 01:27:01 +0200729 f_counter_name_vals_list_add(g_ctr_msc, msc_nr, countername, val);
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200730}
731
732/* f_ctrs_msc_init();
733 * f_do_thing(on_msc := 0);
734 * f_do_thing(on_msc := 0);
735 * f_do_other(on_msc := 1);
736 * f_ctrs_msc_add(0, "thing", 2);
737 * f_ctrs_msc_add(1, "other");
738 * f_ctrs_msc_verify();
739 */
740private function f_ctrs_msc_verify() runs on test_CT {
741 log("verifying msc rate counters: ", g_ctr_msc);
742 f_counter_name_vals_expect_n(IPA_CTRL, "msc", g_ctr_msc);
743}
744
745/* convenience: f_ctrs_msc_add() and f_ctrs_msc_verify() in one call.
746 * f_ctrs_msc_init();
747 * f_do_thing(on_msc := 0);
748 * f_do_thing(on_msc := 0);
749 * f_do_thing(on_msc := 0);
750 * f_ctrs_msc_expect(0, "thing", 3);
751 */
752private function f_ctrs_msc_expect(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
753 f_ctrs_msc_add(msc_nr, countername, val);
754 f_ctrs_msc_verify();
755}
756
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000757/* Convenience functions for rate counters using g_ctr_bts, always also including g_ctr_bsc. */
758
759private function f_ctrs_bsc_and_bts_init(integer bts_count := NUM_BTS, CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
760 g_ctr_bts := f_counter_name_vals_get_n(IPA_CTRL, "bts", bts_count, counternames);
761 log("initial bts rate counters: ", g_ctr_bts);
762 f_ctrs_bsc_init(counternames);
763}
764
765private function f_ctrs_bsc_and_bts_add(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
766 f_counter_name_vals_list_add(g_ctr_bts, bts_nr, countername, val);
767 f_ctrs_bsc_add(countername, val);
768}
769
770/* f_ctrs_bsc_and_bts_init();
771 * f_do_thing(on_bts := 0);
772 * f_do_thing(on_bts := 0);
773 * f_do_other(on_bts := 1);
774 * f_ctrs_bsc_and_bts_add(0, "thing", 2);
775 * f_ctrs_bsc_and_bts_add(1, "other");
776 * f_ctrs_bsc_and_bts_verify();
777 */
778private function f_ctrs_bsc_and_bts_verify() runs on test_CT {
779 f_counter_name_vals_expect_n(IPA_CTRL, "bts", g_ctr_bts);
780 f_ctrs_bsc_verify();
781}
782
783/* convenience: f_ctrs_bsc_and_bts_add() and f_ctrs_bsc_and_bts_verify() in one call.
784 * f_ctrs_bsc_and_bts_init();
785 * f_do_thing(on_bts := 0);
786 * f_do_thing(on_bts := 0);
787 * f_do_thing(on_bts := 0);
788 * f_ctrs_bsc_and_bts_expect(0, "thing", 3);
789 */
790private function f_ctrs_bsc_and_bts_expect(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
791 f_ctrs_bsc_and_bts_add(bts_nr, countername, val);
792 f_ctrs_bsc_and_bts_verify();
793}
794
795
796/* Convenience functions for rate counters using g_ctr_bsc. */
797
798private function f_ctrs_bsc_init(CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
799 g_ctr_bsc := f_counter_name_vals_get_n(IPA_CTRL, "bsc", 1, counternames);
800 log("initial bsc rate counters: ", g_ctr_bsc);
801}
802
803private function f_ctrs_bsc_add(charstring countername, integer val := 1) runs on test_CT {
804 f_counter_name_vals_list_add(g_ctr_bsc, 0, countername, val);
805}
806
807/* f_ctrs_bsc_init();
808 * f_do_thing();
809 * f_do_thing();
810 * f_do_other();
811 * f_ctrs_bsc_add("thing", 2);
812 * f_ctrs_bsc_add("other");
813 * f_ctrs_bsc_verify();
814 */
815private function f_ctrs_bsc_verify() runs on test_CT {
816 f_counter_name_vals_expect_n(IPA_CTRL, "bsc", g_ctr_bsc);
817}
818
819/* convenience: f_ctrs_bsc_add() and f_ctrs_bsc_verify() in one call.
820 * f_ctrs_bsc_init();
821 * f_do_thing();
822 * f_ctrs_bsc_expect("thing", 1);
823 */
824private function f_ctrs_bsc_expect(charstring countername, integer val := 1) runs on test_CT {
825 f_ctrs_bsc_add(countername, val);
826 f_ctrs_bsc_verify();
827}
828
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200829
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200830friend function f_shutdown_helper() runs on test_CT {
Daniel Willmann637ef6c2018-07-25 10:49:09 +0200831 all component.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100832 setverdict(pass);
Daniel Willmannafce8662018-07-06 23:11:32 +0200833 mtc.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100834}
835
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200836private function f_legacy_bssap_reset(integer bssap_idx := 0) runs on test_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100837 var BSSAP_N_UNITDATA_ind ud_ind;
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200838 var boolean reset_received := false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100839 timer T := 5.0;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200840 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
841 ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Weltea4ca4462018-02-09 00:17:14 +0100842 T.start;
843 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200844 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[bssap_idx].sccp_addr_own, g_bssap[bssap_idx].sccp_addr_peer,
845 tr_BSSMAP_ResetAck(g_osmux_enabled))) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200846 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Weltea4ca4462018-02-09 00:17:14 +0100847 }
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200848 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200849 log("BSSMAP: Respoding to inbound RESET with RESET-ACK");
Harald Weltea4ca4462018-02-09 00:17:14 +0100850 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200851 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200852 reset_received := true;
Harald Weltea4ca4462018-02-09 00:17:14 +0100853 repeat;
854 }
855 [] BSSAP.receive { repeat; }
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200856 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200857 log("BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200858 /* If we received a RESET after ours was sent, it
859 may be a race condition where the other peer beacame
860 available after we sent it, but we are in a desired
861 state anyway, so go forward. */
862 if (not reset_received) {
863 setverdict(fail);
864 }
865 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100866 }
Harald Welte28d943e2017-11-25 15:00:50 +0100867}
868
Harald Welteae026692017-12-09 01:03:01 +0100869type record IPA_Client {
Harald Welte21b46bd2017-12-17 19:46:32 +0100870 /* IPA Emulation component reference */
Harald Welteae026692017-12-09 01:03:01 +0100871 IPA_Emulation_CT vc_IPA,
Harald Welte21b46bd2017-12-17 19:46:32 +0100872 /* Unit-ID and other CCM parameters to use for IPA client emulation */
Harald Welteae026692017-12-09 01:03:01 +0100873 IPA_CCM_Parameters ccm_pars,
Harald Welte21b46bd2017-12-17 19:46:32 +0100874 /* String identifier for this IPA Client */
Harald Welte624f9632017-12-16 19:26:04 +0100875 charstring id,
Harald Welte21b46bd2017-12-17 19:46:32 +0100876 /* Associated RSL Emulation Component (if any). Only used in "Handler mode" */
Harald Welte624f9632017-12-16 19:26:04 +0100877 RSL_Emulation_CT vc_RSL optional
Harald Welte28d943e2017-11-25 15:00:50 +0100878}
879
Harald Welte21b46bd2017-12-17 19:46:32 +0100880/*! Start the IPA/RSL related bits for one IPA_Client.
881 * \param clnt IPA_Client for which to establish
882 * \param bsc_host IP address / hostname of the BSC
883 * \param bsc_port TCP port number of the BSC
884 * \param i number identifying this BTS
885 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false) */
Harald Welte624f9632017-12-16 19:26:04 +0100886function f_ipa_rsl_start(inout IPA_Client clnt, charstring bsc_host, PortNumber bsc_port, integer i,
887 boolean handler_mode := false)
Harald Welte28d943e2017-11-25 15:00:50 +0100888runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +0100889 timer T := 10.0;
890
Harald Welte96c94412017-12-09 03:12:45 +0100891 clnt.id := "IPA" & int2str(i) & "-RSL";
Harald Welteae026692017-12-09 01:03:01 +0100892 clnt.vc_IPA := IPA_Emulation_CT.create(clnt.id & "-IPA");
893 clnt.ccm_pars := c_IPA_default_ccm_pars;
894 clnt.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
895 clnt.ccm_pars.unit_id := int2str(1234+i) & "/0/0";
Harald Welte624f9632017-12-16 19:26:04 +0100896 if (handler_mode) {
897 clnt.vc_RSL := RSL_Emulation_CT.create(clnt.id & "-RSL");
Harald Welte89ab1912018-02-23 18:56:29 +0100898 connect(clnt.vc_RSL:CCHAN_PT, self:RSL_CCHAN[i]);
Harald Welte624f9632017-12-16 19:26:04 +0100899 }
Harald Welteae026692017-12-09 01:03:01 +0100900
901 map(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT);
Harald Welte624f9632017-12-16 19:26:04 +0100902 if (handler_mode) {
903 connect(clnt.vc_IPA:IPA_RSL_PORT, clnt.vc_RSL:IPA_PT);
904 } else {
905 connect(clnt.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[i]);
906 }
Harald Welteae026692017-12-09 01:03:01 +0100907
Harald Welte5d1a2202017-12-13 19:51:29 +0100908 clnt.vc_IPA.start(IPA_Emulation.main_client(bsc_host, bsc_port, "", 10000+i, clnt.ccm_pars));
Harald Welte624f9632017-12-16 19:26:04 +0100909 if (handler_mode) {
910 clnt.vc_RSL.start(RSL_Emulation.main());
911 return;
912 }
Harald Welteae026692017-12-09 01:03:01 +0100913
914 /* wait for IPA RSL link to connect and send ID ACK */
915 T.start;
916 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +0700917 [] IPA_RSL[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {
Harald Welteae026692017-12-09 01:03:01 +0100918 T.stop;
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +0700919 IPA_RSL[i].send(ts_ASP_RSL_UD(ts_RSL_PAGING_LOAD_IND(23)));
Harald Welteae026692017-12-09 01:03:01 +0100920 }
Harald Welte60e823a2017-12-10 14:10:59 +0100921 [] IPA_RSL[i].receive(ASP_IPA_Event:?) { repeat }
Harald Welteae026692017-12-09 01:03:01 +0100922 [] IPA_RSL[i].receive { repeat }
923 [] T.timeout {
Harald Welte96c94412017-12-09 03:12:45 +0100924 setverdict(fail, "Timeout RSL waiting for ASP_IPA_EVENT_ID_ACK");
Daniel Willmannafce8662018-07-06 23:11:32 +0200925 mtc.stop;
Harald Welteae026692017-12-09 01:03:01 +0100926 }
927 }
928}
929
Harald Welte12055472018-03-17 20:10:08 +0100930function f_ipa_rsl_stop(inout IPA_Client clnt) runs on test_CT {
931 if (not isbound(clnt) or not isbound(clnt.vc_IPA)) {
932 return;
933 }
934 clnt.vc_IPA.stop;
935 if (isbound(clnt.vc_RSL)) {
936 clnt.vc_RSL.stop;
937 }
938}
939
Harald Welte21b46bd2017-12-17 19:46:32 +0100940/* Wait for the OML connection to be brought up by the external osmo-bts-omldummy */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100941function f_wait_oml(integer bts_nr, charstring status, float secs_max) runs on test_CT {
942 timer T := secs_max;
943 T.start;
944 while (true) {
945 if (f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-connection-state") == status) {
946 T.stop;
Harald Weltebd868bd2017-12-10 18:28:40 +0100947 /* the 'degraded' state exists from OML connection time, and we have to wait
948 * until all MO's are initialized */
949 T.start(1.0);
950 T.timeout;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100951 return;
952 }
Harald Weltef0d6ac62017-12-17 17:02:21 +0100953 f_sleep(0.1);
Harald Weltea5d2ab22017-12-09 14:21:42 +0100954 if (not T.running) {
Max99253902018-11-16 17:57:39 +0100955 setverdict(fail, "Timeout waiting for BTS" & int2str(bts_nr) & " oml-connection-state ", status);
Daniel Willmannafce8662018-07-06 23:11:32 +0200956 mtc.stop;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100957 }
958 }
959}
960
Harald Welte21b46bd2017-12-17 19:46:32 +0100961/* global altstep for global guard timer; also takes care of responding RESET witH RESET-ACK */
Harald Welteae026692017-12-09 01:03:01 +0100962altstep as_Tguard() runs on test_CT {
Harald Welte60e823a2017-12-10 14:10:59 +0100963 var BSSAP_N_UNITDATA_ind ud_ind;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100964 [] T_guard.timeout {
965 setverdict(fail, "Timeout of T_guard");
Daniel Willmannafce8662018-07-06 23:11:32 +0200966 mtc.stop;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100967 }
Harald Welte60e823a2017-12-10 14:10:59 +0100968 /* always respond with RESET ACK to RESET */
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200969 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Harald Welte60e823a2017-12-10 14:10:59 +0100970 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200971 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Harald Welte69c1c262017-12-13 21:02:08 +0100972 repeat;
Harald Welte60e823a2017-12-10 14:10:59 +0100973 }
Harald Welte28d943e2017-11-25 15:00:50 +0100974}
975
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100976altstep no_bssmap_reset() runs on test_CT {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200977 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100978 setverdict(fail, "unexpected BSSMAP Reset");
Daniel Willmannafce8662018-07-06 23:11:32 +0200979 mtc.stop;
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100980 }
981}
982
Daniel Willmann191e0d92018-01-17 12:44:35 +0100983function f_init_mgcp(charstring id) runs on test_CT {
984 id := id & "-MGCP";
985
986 var MGCPOps ops := {
987 create_cb := refers(MGCP_Emulation.ExpectedCreateCallback),
988 unitdata_cb := refers(MGCP_Emulation.DummyUnitdataCallback)
989 };
990 var MGCP_conn_parameters mgcp_pars := {
991 callagent_ip := mp_bsc_ip,
Harald Welte9e4273e2018-01-29 22:01:22 +0100992 callagent_udp_port := -1,
Daniel Willmann191e0d92018-01-17 12:44:35 +0100993 mgw_ip := mp_test_ip,
Pau Espin Pedrol1a026a52019-06-18 17:21:52 +0200994 mgw_udp_port := 2427,
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +0200995 /* Enable it for SCCPlite, since we have 2 MGCP sockets towards MGW (UDP one +
996 the on with MGCP over IPA forwarded from MSC one) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200997 multi_conn_mode := (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER)
Daniel Willmann191e0d92018-01-17 12:44:35 +0100998 };
999
1000 vc_MGCP := MGCP_Emulation_CT.create(id);
1001 vc_MGCP.start(MGCP_Emulation.main(ops, mgcp_pars, id));
1002}
1003
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001004/* Enable or disable (current default) Osmux. When enabling, BSSMAP Reset
1005 * contains extra IE (OsmuxSupport) and osmo-bsc will handle AssignReq with
1006 * OsmuxCID IE.
1007 */
1008private function f_vty_allow_osmux(boolean allow) runs on test_CT {
1009 f_vty_enter_cfg_msc(BSCVTY, 0);
1010 if (allow) {
1011 f_vty_transceive(BSCVTY, "osmux on");
1012 } else {
1013 f_vty_transceive(BSCVTY, "osmux off");
1014 }
1015 f_vty_transceive(BSCVTY, "exit");
1016 f_vty_transceive(BSCVTY, "exit");
1017 g_osmux_enabled := allow;
1018}
1019
Max2253c0b2018-11-06 19:28:05 +01001020function f_init_vty(charstring id := "foo") runs on test_CT {
Harald Welte94e0c342018-04-07 11:33:23 +02001021 if (BSCVTY.checkstate("Mapped")) {
1022 /* skip initialization if already executed once */
1023 return;
1024 }
Harald Weltebc03c762018-02-12 18:09:38 +01001025 map(self:BSCVTY, system:BSCVTY);
1026 f_vty_set_prompts(BSCVTY);
1027 f_vty_transceive(BSCVTY, "enable");
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01001028 f_cs7_inst_0_cfg(BSCVTY, {"sccp-timer ias " & int2str(g_bsc_sccp_timer_ias),
1029 "sccp-timer iar " & int2str(g_bsc_sccp_timer_iar)});
Harald Weltebc03c762018-02-12 18:09:38 +01001030}
1031
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001032friend function f_logp(TELNETasp_PT pt, charstring log_msg)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001033{
1034 // log on TTCN3 log output
1035 log(log_msg);
1036 // log in stderr log
Neels Hofmeyr767548a2020-08-09 20:26:07 +00001037 f_vty_transceive(pt, "logp lglobal notice TTCN3 f_logp(): " & log_msg);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001038}
1039
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001040private function f_sysinfo_seen(integer rsl_idx, RSL_Message rsl) runs on test_CT
1041{
1042 if (rsl_idx >= lengthof(g_system_information)) {
1043 g_system_information[rsl_idx] := SystemInformationConfig_omit
1044 }
1045 f_sysinfo_dec_raw(g_system_information[rsl_idx], rsl);
1046}
1047
1048altstep as_catch_RSL_sysinfo(integer rsl_idx) runs on test_CT {
1049 var ASP_RSL_Unitdata rx_rsl_ud;
1050
1051 /* For handler_mode := false, receiving the RSL bootstrap messages directly on IPA_RSL */
1052 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1053 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1054 repeat;
1055 }
1056 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1057 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1058 repeat;
1059 }
1060 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1061 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1062 repeat;
1063 }
1064 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1065 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1066 repeat;
1067 }
1068
1069 /* For handler_mode := true, receiving the RSL bootstrap messages via RSL_Emulation */
1070 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1071 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1072 repeat;
1073 }
1074 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1075 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1076 repeat;
1077 }
1078 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1079 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1080 repeat;
1081 }
1082 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1083 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1084 repeat;
1085 }
1086}
1087
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001088/* TODO: use BooleanList from COMMON/src/General_Types.ttcn */
1089private type record of boolean my_BooleanList;
1090
1091private function f_vty_msc_allow_attach(TELNETasp_PT pt, my_BooleanList allow_attach_list)
1092{
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001093 var charstring config := f_vty_transceive_ret(pt, "show running-config");
1094
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001095 for (var integer msc_nr := 0; msc_nr < sizeof(allow_attach_list); msc_nr := msc_nr+1) {
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001096 if (f_strstr(config, "\nmsc " & int2str(msc_nr) & "\n") < 0) {
1097 /* There is no 'msc N' for this msc_nr in the running config, so don't create an empty msc by
1098 * stepping into that config node. */
1099 log("msc ", msc_nr, " is not configured, skipping");
1100 continue;
1101 }
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001102 f_vty_enter_cfg_msc(pt, msc_nr);
1103 if (allow_attach_list[msc_nr]) {
1104 /* strict := false: ignore if osmo-bsc does not support this config option (latest build) */
1105 f_vty_transceive(pt, "allow-attach", strict := false);
1106 } else {
1107 f_vty_transceive(pt, "no allow-attach", strict := false);
1108 }
1109 f_vty_transceive(pt, "exit");
1110 f_vty_transceive(pt, "exit");
1111 }
1112}
1113
Harald Welte21b46bd2017-12-17 19:46:32 +01001114/* global initialization function
1115 * \param nr_bts Number of BTSs we should start/bring up
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001116 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false).
1117 * \param nr_msc Number of virtual MSCs to bring up to connect to osmo-bsc.
1118 */
1119function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolean allow_osmux := false,
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001120 integer nr_msc := 1, float guard_timeout := 30.0) runs on test_CT {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001121 var integer bssap_idx;
Harald Welte28d943e2017-11-25 15:00:50 +01001122
Harald Welteae026692017-12-09 01:03:01 +01001123 if (g_initialized) {
1124 return;
Harald Welte28d943e2017-11-25 15:00:50 +01001125 }
Harald Welteae026692017-12-09 01:03:01 +01001126 g_initialized := true;
1127
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001128 T_guard.start(guard_timeout);
Daniel Willmanne68f9272018-11-27 15:15:28 +01001129 activate(as_Tguard());
1130
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001131 f_init_vty("VirtMSC");
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +02001132 f_vty_allow_osmux(allow_osmux);
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001133
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001134 var my_BooleanList allow_attach := { false, false, false };
Daniel Willmannebdecc02020-08-12 15:30:17 +02001135 f_init_statsd("VirtMSC", vc_STATSD, mp_test_ip, mp_bsc_statsd_port);
1136
Neels Hofmeyr9db8e0e2021-08-23 20:45:58 +02001137 /* Make sure each MSC's internal state is "DISCONNECTED" at first */
1138 for (bssap_idx := 0; bssap_idx < NUM_MSC; bssap_idx := bssap_idx+1) {
1139 f_vty_transceive(BSCVTY, "msc " & int2str(bssap_idx) & " bssmap reset", strict := false);
1140 }
1141
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001142 for (bssap_idx := 0; bssap_idx < nr_msc; bssap_idx := bssap_idx+1) {
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001143 allow_attach[bssap_idx] := true;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001144 /* Call a function of our 'parent component' RAN_Adapter_CT to start the
1145 * MSC-side BSSAP emulation */
1146 if (handler_mode) {
1147 var RanOps ranops := MSC_RanOps;
1148 ranops.use_osmux := g_osmux_enabled;
1149 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", ranops);
1150 connect(self:SCCPLITE_IPA_CTRL, g_bssap[bssap_idx].vc_RAN:CTRL_CLIENT);
1151 f_ran_adapter_start(g_bssap[bssap_idx]);
1152 } else {
1153 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", omit);
1154 connect(self:BSSAP, g_bssap[bssap_idx].vc_SCCP:SCCP_SP_PORT);
1155 f_ran_adapter_start(g_bssap[bssap_idx]);
1156 f_legacy_bssap_reset();
1157 }
Harald Welte67089ee2018-01-17 22:19:03 +01001158 }
Harald Welted5833a82018-05-27 16:52:56 +02001159
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02001160 if (mp_enable_lcs_tests) {
1161 if (handler_mode) {
1162 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", SMLC_BssapLeOps);
1163 } else {
1164 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", omit);
1165 connect(self:BSSAP_LE, g_bssap_le.vc_SCCP:SCCP_SP_PORT);
1166 }
1167 f_bssap_le_adapter_start(g_bssap_le);
Harald Welte47cd0e32020-08-21 12:39:11 +02001168 }
Harald Welte47cd0e32020-08-21 12:39:11 +02001169
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001170 /* start the test with exactly all enabled MSCs allowed to attach */
1171 f_vty_msc_allow_attach(BSCVTY, allow_attach);
1172
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01001173 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Harald Welte28d943e2017-11-25 15:00:50 +01001174
Daniel Willmann191e0d92018-01-17 12:44:35 +01001175 f_init_mgcp("VirtMSC");
1176
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001177 for (var integer i := 0; i < nr_bts; i := i+1) {
1178 f_init_bts(i, handler_mode);
Harald Welte696ddb62017-12-08 14:01:43 +01001179 }
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001180}
Harald Welte696ddb62017-12-08 14:01:43 +01001181
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001182function f_init_bts(integer bts_idx := 0, boolean handler_mode := false)
1183runs on test_CT {
1184 /* wait until osmo-bts-omldummy has respawned */
1185 f_wait_oml(bts_idx, "degraded", 5.0);
1186
1187 /* start RSL connection */
1188 f_ipa_rsl_start(bts[bts_idx].rsl, mp_bsc_ip, mp_bsc_rsl_port, bts_idx, handler_mode);
1189 /* wait until BSC tells us "connected" */
1190 f_wait_oml(bts_idx, "connected", 5.0);
Harald Welte28d943e2017-11-25 15:00:50 +01001191}
1192
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001193function f_init_bts_and_check_sysinfo(integer bts_idx := 0, boolean handler_mode := false,
1194 template SystemInformationConfig expect_si)
1195runs on test_CT {
1196 var default sysinfo := activate(as_catch_RSL_sysinfo(bts_idx));
1197
1198 f_init_bts(bts_idx, handler_mode);
1199
1200 /* Give some time to (hopefully/most likely) collect all system informations from RSL startup.
1201 * We could stop as soon as all expected SI are received, but then we might miss SI that we don't expect and
1202 * that might be sent afterwards. So rather give a generous timeout and be quite sure to catch all SI.
1203 */
1204 f_sleep(5.0);
1205 log("RSL ", bts_idx, " SYSTEM INFORMATION: ", g_system_information[bts_idx]);
1206
1207 deactivate(sysinfo);
1208
1209 if (match(g_system_information[bts_idx], expect_si)) {
1210 setverdict(pass);
1211 } else {
1212 log("RSL ", bts_idx, ": EXPECTED SI: ", expect_si);
1213 log("RSL ", bts_idx, ": GOT SI: ", g_system_information[bts_idx]);
1214 setverdict(fail, "received SI does not match expectations");
1215 return;
1216 }
1217}
1218
Maxd4e56962018-10-31 19:08:25 +01001219/* expect to receive a RSL message matching a specified template on a given BTS / stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001220function f_exp_ipa_rx(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001221runs on test_CT return RSL_Message {
1222 var ASP_RSL_Unitdata rx_rsl_ud;
1223 timer T := t_secs;
1224
1225 T.start;
1226 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001227 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
Harald Welteae026692017-12-09 01:03:01 +01001228 T.stop;
1229 }
1230 [] IPA_RSL[bts_nr].receive { repeat; }
Harald Welteb2917702017-12-10 15:48:52 +01001231 [] T.timeout {
1232 setverdict(fail, "Timeout expecting ", t_rx);
Daniel Willmannafce8662018-07-06 23:11:32 +02001233 mtc.stop;
Harald Welteb2917702017-12-10 15:48:52 +01001234 }
Harald Welteae026692017-12-09 01:03:01 +01001235 }
1236 return rx_rsl_ud.rsl;
1237}
1238
Harald Welte21b46bd2017-12-17 19:46:32 +01001239/* helper function to transmit RSL on a given BTS/stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001240function f_ipa_tx(integer bts_nr, template (value) RSL_Message t_tx, IpaStreamId sid := IPAC_PROTO_RSL_TRX0)
Harald Welteae026692017-12-09 01:03:01 +01001241runs on test_CT {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001242 IPA_RSL[bts_nr].send(ts_ASP_RSL_UD(t_tx, sid));
Harald Welteae026692017-12-09 01:03:01 +01001243}
1244
1245
Harald Welte4003d112017-12-09 22:35:39 +01001246/* verify we get a CHAN_ACT after CHAN RQD */
Harald Welteae026692017-12-09 01:03:01 +01001247testcase TC_chan_act_noreply() runs on test_CT {
1248 var BSSAP_N_UNITDATA_ind ud_ind;
Harald Welte930d0a72018-03-22 22:08:40 +01001249 var RSL_Message rsl_unused;
Harald Welte28d943e2017-11-25 15:00:50 +01001250
Harald Welte89d42e82017-12-17 16:42:41 +01001251 f_init(1);
Harald Welte28d943e2017-11-25 15:00:50 +01001252
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001253 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001254 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001255 f_shutdown_helper();
Harald Welte28d943e2017-11-25 15:00:50 +01001256}
1257
Harald Welte4003d112017-12-09 22:35:39 +01001258/* verify if the "chreq:total" counter increments as expected */
1259testcase TC_chan_act_counter() runs on test_CT {
1260 var BSSAP_N_UNITDATA_ind ud_ind;
1261 var integer chreq_total;
Harald Welte930d0a72018-03-22 22:08:40 +01001262 var RSL_Message rsl_unused;
Harald Welte4003d112017-12-09 22:35:39 +01001263
Harald Welte89d42e82017-12-17 16:42:41 +01001264 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001265
1266 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001267 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001268 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Harald Welte4003d112017-12-09 22:35:39 +01001269 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total", chreq_total+1);
1270
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001271 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001272}
1273
Harald Welteae026692017-12-09 01:03:01 +01001274/* CHAN RQD -> CHAN ACT -> CHAN ACT ACK -> RF CHAN REL */
Philipp Maier9c60a622020-07-09 15:08:46 +02001275private function f_TC_chan_act_ack_noest(OCT1 ra := '23'O) runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +01001276 var RSL_Message rx_rsl;
1277
Harald Welteae026692017-12-09 01:03:01 +01001278 /* Send CHAN RQD and wait for allocation; acknowledge it */
Philipp Maier9c60a622020-07-09 15:08:46 +02001279 var RslChannelNr chan_nr := f_chreq_act_ack(ra);
Harald Welteae026692017-12-09 01:03:01 +01001280
1281 /* expect BSC to disable the channel again if there's no RLL EST IND */
1282 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1283
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001284 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001285}
1286
Philipp Maier9c60a622020-07-09 15:08:46 +02001287/* Normal variant */
1288testcase TC_chan_act_ack_noest() runs on test_CT {
Philipp Maieraf58db22020-08-12 17:24:40 +02001289 f_init(1);
Philipp Maier9c60a622020-07-09 15:08:46 +02001290 f_TC_chan_act_ack_noest();
1291}
1292
1293/* Emergency call variant */
1294testcase TC_chan_act_ack_noest_emerg() runs on test_CT {
1295 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
Philipp Maieraf58db22020-08-12 17:24:40 +02001296 f_init(1);
1297 f_vty_allow_emerg_bts(true, 0);
Philipp Maier9c60a622020-07-09 15:08:46 +02001298 f_TC_chan_act_ack_noest(ra := 'A5'O);
1299}
1300
Philipp Maier606f07d2020-08-12 17:21:58 +02001301/* Emergency call variant, but emergency calls are not allowed */
1302testcase TC_chan_rqd_emerg_deny() runs on test_CT {
1303 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
1304
1305 var RSL_Message rx_rsl;
1306 var GsmRrMessage rr;
1307
1308 f_init(1);
1309 f_vty_allow_emerg_bts(false, 0);
1310
1311 IPA_RSL[0].clear;
1312 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
1313
1314 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
1315 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
1316 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1317 setverdict(pass);
1318 } else {
1319 setverdict(fail, "immediate assignment not rejected");
1320 }
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01001321
1322 f_shutdown_helper();
Philipp Maier606f07d2020-08-12 17:21:58 +02001323}
1324
Harald Welteae026692017-12-09 01:03:01 +01001325/* Test behavior if MSC never answers to CR */
1326testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
Harald Weltef77aef62018-01-28 15:35:42 +01001327 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
1328 var IpaStreamId sid := IPAC_PROTO_RSL_TRX0;
Harald Welteae026692017-12-09 01:03:01 +01001329 var RSL_Message rx_rsl;
Harald Weltef77aef62018-01-28 15:35:42 +01001330 var ASP_RSL_Unitdata rx_rsl_ud;
Harald Welteae026692017-12-09 01:03:01 +01001331
Harald Welte89d42e82017-12-17 16:42:41 +01001332 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001333
1334 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001335 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001336
1337 var octetstring l3 := '00010203040506'O
1338 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1339
1340 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3)));
1341
1342 /* expect BSC to disable the channel again if there's no response from MSC */
Harald Weltef77aef62018-01-28 15:35:42 +01001343 /* MS waits 20s (T3210) at LU; 10s (T3230) at CM SERV REQ and 5s (T3220) AT detach */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001344 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001345 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001346}
1347
1348/* Test behavior if MSC answers with CREF to CR */
1349testcase TC_chan_act_ack_est_ind_refused() runs on test_CT {
1350 var BSSAP_N_CONNECT_ind rx_c_ind;
1351 var RSL_Message rx_rsl;
1352
Harald Welte89d42e82017-12-17 16:42:41 +01001353 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001354
1355 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001356 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001357
1358 var octetstring l3 := '00010203040506'O
1359 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1360
1361 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1362 BSSAP.send(ts_BSSAP_DISC_req(rx_c_ind.connectionId, 0));
1363
1364 /* expect BSC to disable the channel */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001365 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001366 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001367}
1368
Harald Welte618ef642017-12-14 14:58:20 +01001369/* CHAN RQD -> CHAN ACT -> CHAN ACT NACK -> RF CHAN REL */
1370testcase TC_chan_act_nack() runs on test_CT {
1371 var RSL_Message rx_rsl;
1372 var integer chact_nack;
1373
Harald Welte89d42e82017-12-17 16:42:41 +01001374 f_init(1);
Harald Welte618ef642017-12-14 14:58:20 +01001375
1376 chact_nack := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack");
1377
1378 f_ipa_tx(0, ts_RSL_CHAN_RQD('33'O, 33));
1379 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1380 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1381
1382 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
1383
1384 /* wait for some time to hope the NACK arrives before the CTRL GET below */
1385 f_sleep(0.5);
1386
1387 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack", chact_nack+1);
1388
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001389 f_shutdown_helper();
Harald Welte618ef642017-12-14 14:58:20 +01001390}
1391
Harald Welte799c97b2017-12-14 17:50:30 +01001392/* Test for channel exhaustion due to RACH overload */
1393testcase TC_chan_exhaustion() runs on test_CT {
1394 var ASP_RSL_Unitdata rsl_ud;
1395 var integer i;
1396 var integer chreq_total, chreq_nochan;
1397
Harald Welte89d42e82017-12-17 16:42:41 +01001398 f_init(1);
Harald Welte799c97b2017-12-14 17:50:30 +01001399
1400 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
1401 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
1402
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001403 /* GSM 04.08 Table 9.9a:
1404 * RA = '33'O -> Establishment cause = 0011xxxx (MS dual rate capable and asks for "TCH/H or TCH/F").
1405 * With current setup, expect 4xSDCCH + 4xTCH/F + 1xTCH/H to succeed */
Philipp Maiercb6cc482018-03-26 13:08:00 +02001406 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001407 var RslChannelNr chan_nr := f_chreq_act_ack('33'O, i);
Harald Welte799c97b2017-12-14 17:50:30 +01001408 }
1409
1410 IPA_RSL[0].clear;
1411
Harald Weltedd8cbf32018-01-28 12:07:52 +01001412 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001413 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
Harald Welte799c97b2017-12-14 17:50:30 +01001414
1415 /* now expect additional channel activations to fail */
1416 f_ipa_tx(0, ts_RSL_CHAN_RQD('42'O, 42));
1417
1418 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001419 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV))) {
Harald Welte799c97b2017-12-14 17:50:30 +01001420 setverdict(fail, "Received CHAN ACT ACK without resources?!?");
1421 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001422 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) -> value rsl_ud {
Harald Welte799c97b2017-12-14 17:50:30 +01001423 var GsmRrMessage rr;
1424 /* match on IMM ASS REJ */
1425 rr := dec_GsmRrMessage(rsl_ud.rsl.ies[1].body.full_imm_ass_info.payload);
1426 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1427 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001428 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS+1);
Harald Welte799c97b2017-12-14 17:50:30 +01001429 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel",
1430 chreq_nochan+1);
1431 setverdict(pass);
1432 } else {
1433 repeat;
1434 }
1435 }
1436 [] IPA_RSL[0].receive { repeat; }
1437 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001438 f_shutdown_helper();
Harald Welte799c97b2017-12-14 17:50:30 +01001439}
1440
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001441/* Test channel deactivation due to silence from MS */
1442testcase TC_chan_deact_silence() runs on test_CT {
1443 var RslChannelNr chan_nr;
1444
1445 f_init(1);
1446
1447 /* Request for a dedicated channel */
1448 chan_nr := f_chreq_act_ack('23'O);
1449
1450 /* Wait some time until the channel is released */
1451 f_sleep(2.0);
1452
1453 /* Expect CHANnel RELease */
1454 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001455 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001456 log("Received CHANnel RELease");
1457 setverdict(pass);
1458 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001459 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001460 /* See OS#3709, OsmoBSC should not send Immediate
1461 * Assignment Reject since a dedicated channel was
1462 * already allocated, and Immediate Assignment was
1463 * already sent. */
1464 setverdict(fail, "Unexpected Immediate Assignment!");
1465 }
1466 [] IPA_RSL[0].receive {
1467 setverdict(fail, "Unexpected RSL message!");
1468 }
1469 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001470 f_shutdown_helper();
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001471}
1472
Harald Weltecfe2c962017-12-15 12:09:32 +01001473/***********************************************************************
1474 * Assignment Testing
1475 ***********************************************************************/
1476
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02001477/* Verify that the BSC refuses any BSSAP connection from the MSC (They are all BSC->MSC direction,
1478 * except for the inter-BSC handover, MT side) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001479testcase TC_outbound_connect(integer bssap_idx := 0) runs on test_CT {
Harald Welte89d42e82017-12-17 16:42:41 +01001480 f_init(1);
Harald Weltecfe2c962017-12-15 12:09:32 +01001481
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001482 BSSAP.send(ts_BSSAP_CONNECT_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
1483 2342, ts_BSSMAP_AssignmentReq));
Harald Weltecfe2c962017-12-15 12:09:32 +01001484 BSSAP.receive(tr_BSSAP_DISC_ind(2342, ?, ?));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001485 f_shutdown_helper();
Harald Weltecfe2c962017-12-15 12:09:32 +01001486}
1487
Harald Welte16a4adf2017-12-14 18:54:01 +01001488/* Test behavior if MSC answers with CREF to CR */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001489testcase TC_assignment_cic_only(integer bssap_idx := 0) runs on test_CT {
Harald Welte16a4adf2017-12-14 18:54:01 +01001490 var BSSAP_N_CONNECT_ind rx_c_ind;
1491 var RSL_Message rx_rsl;
1492 var DchanTuple dt;
1493
Harald Welte89d42e82017-12-17 16:42:41 +01001494 f_init(1);
Harald Welte16a4adf2017-12-14 18:54:01 +01001495
1496 dt := f_est_dchan('23'O, 23, '00000000'O);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001497 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte17b27da2018-05-25 20:33:53 +02001498 /* send assignment without AoIP IEs */
1499 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(ts_BSSMAP_IE_CIC(0, 1))));
1500 } else {
1501 /* Send assignmetn without CIC in IPA case */
1502 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
1503 valueof(ts_BSSMAP_IE_AoIP_TLA4('01020304'O, 2342));
1504 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(omit, tla)));
1505 }
Harald Welte16a4adf2017-12-14 18:54:01 +01001506 alt {
1507 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1508 setverdict(fail, "AoIP BSC cannot accept ASSIGNMENT without AoIP Transport IE");
1509 }
Harald Welte235ebf12017-12-15 14:18:16 +01001510 /* TODO: Actually expect GSM0808_CAUSE_REQ_A_IF_TYPE_NOT_SUPP */
Harald Welte16a4adf2017-12-14 18:54:01 +01001511 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1512 setverdict(pass);
1513 }
1514 [] BSSAP.receive { repeat; }
1515 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001516 f_shutdown_helper();
Harald Welte16a4adf2017-12-14 18:54:01 +01001517}
1518
Harald Welteed848512018-05-24 22:27:58 +02001519/* generate an assignment request for either AoIP or SCCPlite */
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001520function f_gen_ass_req(boolean osmux_enabled := false, integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4") return PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001521 var PDU_BSSAP ass_cmd;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001522 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001523 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welteed848512018-05-24 22:27:58 +02001524 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001525 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001526 if (osmux_enabled) {
1527 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla, osmux_cid));
1528 } else {
1529 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla));
1530 }
Harald Welteed848512018-05-24 22:27:58 +02001531 } else {
1532 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001533 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(cic, omit));
Harald Welteed848512018-05-24 22:27:58 +02001534 }
1535 return ass_cmd;
1536}
1537
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02001538function f_gen_handover_req(integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4",
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001539 template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit,
1540 template (omit) TestHdlrEncrParams enc := omit) return PDU_BSSAP {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001541 var PDU_BSSAP ho_req;
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001542
1543 var BSSMAP_IE_EncryptionInformation encryptionInformation :=
1544 valueof(ts_BSSMAP_IE_EncrInfo('0000000000000000'O,'01'O));
1545 var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
1546 var template BSSMAP_IE_KC128 kc128 := omit;
1547 if (ispresent(enc)) {
1548 var TestHdlrEncrParams v_enc := valueof(enc);
1549 encryptionInformation := valueof(ts_BSSMAP_IE_EncrInfo(v_enc.enc_key, v_enc.enc_alg));
1550 chosenEncryptionAlgorithm := valueof(
1551 ts_BSSMAP_IE_ChosenEncryptionAlgorithm(int2oct(enum2int(
Oliver Smith598e1ed2021-07-09 10:28:40 +02001552 f_cipher_mode_bssmap_to_rsl(v_enc.enc_alg)), 1)));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001553 if (ispresent(v_enc.enc_kc128)) {
1554 kc128 := ts_BSSMAP_IE_Kc128(v_enc.enc_kc128);
1555 }
1556 }
1557
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001558 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001559 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001560 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001561 ho_req := valueof(ts_BSSMAP_HandoverRequest(omit, tla, oldToNewBSSIEs := oldToNewBSSIEs,
1562 encryptionInformation := encryptionInformation,
1563 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1564 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001565 } else {
1566 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001567 ho_req := valueof(ts_BSSMAP_HandoverRequest(cic, omit, oldToNewBSSIEs := oldToNewBSSIEs,
1568 encryptionInformation := encryptionInformation,
1569 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1570 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001571 }
1572 return ho_req;
1573}
1574
Harald Welteed848512018-05-24 22:27:58 +02001575/* generate an assignment complete template for either AoIP or SCCPlite */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001576function f_gen_exp_compl(boolean expect_osmux := false, integer bssap_idx := 0) return template PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001577 var template PDU_BSSAP exp_compl;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001578 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001579 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001580 if (expect_osmux) {
1581 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, osmux_cid);
1582 } else {
1583 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, omit);
1584 }
Harald Welteed848512018-05-24 22:27:58 +02001585 } else {
1586 /* CIC is optional "*" as the MSC allocated it */
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001587 exp_compl := tr_BSSMAP_AssignmentComplete(*, omit);
Harald Welteed848512018-05-24 22:27:58 +02001588 }
1589 return exp_compl;
1590}
1591
Harald Welte235ebf12017-12-15 14:18:16 +01001592/* Run everything required up to sending a caller-specified assignment command and expect response */
1593function f_assignment_exp(PDU_BSSAP ass_cmd, template PDU_BSSAP exp, charstring fail_text)
1594runs on test_CT {
1595 var BSSAP_N_CONNECT_ind rx_c_ind;
1596 var RSL_Message rx_rsl;
1597 var DchanTuple dt;
1598
Harald Welte89d42e82017-12-17 16:42:41 +01001599 f_init(1);
Harald Welte235ebf12017-12-15 14:18:16 +01001600
1601 dt := f_est_dchan('23'O, 23, '00000000'O);
1602 /* send assignment without AoIP IEs */
1603 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
1604 alt {
1605 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1606 if (ischosen(exp.pdu.bssmap.assignmentComplete)) {
1607 setverdict(pass);
1608 } else {
1609 setverdict(fail, fail_text);
1610 }
1611 }
1612 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1613 if (ischosen(exp.pdu.bssmap.assignmentFailure)) {
1614 setverdict(pass);
1615 } else {
1616 setverdict(fail, fail_text);
1617 }
1618 }
1619 [] BSSAP.receive { repeat; }
1620 }
1621}
1622testcase TC_assignment_csd() runs on test_CT {
1623 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001624 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001625 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1626 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1627 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for CSD");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001628 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001629}
1630
1631testcase TC_assignment_ctm() runs on test_CT {
1632 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001633 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001634 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCTM);
1635 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1636 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for Speech+CTM");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001637 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001638}
1639
Harald Welte4003d112017-12-09 22:35:39 +01001640type record DchanTuple {
1641 integer sccp_conn_id,
1642 RslChannelNr rsl_chan_nr
Harald Weltea5d2ab22017-12-09 14:21:42 +01001643}
1644
Harald Welted6939652017-12-13 21:02:46 +01001645/* Send CHAN RQD and wait for allocation; acknowledge it */
1646private function f_chreq_act_ack(OCT1 ra := '23'O, GsmFrameNumber fn := 23)
1647runs on test_CT return RslChannelNr {
1648 var RSL_Message rx_rsl;
1649 f_ipa_tx(0, ts_RSL_CHAN_RQD(ra, fn));
1650 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1651 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1652 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
Daniel Willmannf4ac4ce2018-08-02 14:06:30 +02001653 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Harald Welted6939652017-12-13 21:02:46 +01001654 return chan_nr;
1655}
1656
Harald Welte4003d112017-12-09 22:35:39 +01001657/* helper function to establish a dedicated channel via BTS and MSC */
1658function f_est_dchan(OCT1 ra, GsmFrameNumber fn, octetstring l3)
1659runs on test_CT return DchanTuple {
1660 var BSSAP_N_CONNECT_ind rx_c_ind;
Harald Welte4003d112017-12-09 22:35:39 +01001661 var DchanTuple dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001662
Harald Welte4003d112017-12-09 22:35:39 +01001663 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001664 dt.rsl_chan_nr := f_chreq_act_ack(ra, fn);
Harald Welte4003d112017-12-09 22:35:39 +01001665
1666 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1667
1668 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1669 dt.sccp_conn_id := rx_c_ind.connectionId;
1670 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
1671
1672 return dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001673}
1674
Harald Welte641fcbe2018-06-14 10:58:35 +02001675/* expect RF CAN REL from BTS, acknowledge it and clear the MSC side */
1676private function f_exp_chan_rel_and_clear(DchanTuple dt, integer bts_nr := 0) runs on test_CT {
1677 var RSL_Message rx_rsl;
1678 /* expect BSC to disable the channel */
1679 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1680 /* respond with CHAN REL ACK */
1681 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1682
1683 /* expect Clear Complete from BSC */
1684 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1685
1686 /* MSC disconnects as instructed. */
1687 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1688}
1689
Harald Welte4003d112017-12-09 22:35:39 +01001690/* Test behavior of channel release after unilateral RLL REL IND (DISC from MS) */
1691testcase TC_chan_rel_rll_rel_ind() runs on test_CT {
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001692 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001693 var DchanTuple dt;
Harald Welte96c94412017-12-09 03:12:45 +01001694
Harald Welte89d42e82017-12-17 16:42:41 +01001695 f_init(1);
Harald Welte96c94412017-12-09 03:12:45 +01001696
Harald Welte4003d112017-12-09 22:35:39 +01001697 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1698
1699 /* simulate RLL REL IND */
1700 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
1701
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001702 /* expect Clear Request on MSC side */
1703 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1704
1705 /* Instruct BSC to clear channel */
1706 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1707 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1708
Harald Welte4003d112017-12-09 22:35:39 +01001709 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001710 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001711
1712 /* wait for SCCP emulation to do its job */
1713 f_sleep(1.0);
Harald Welte4003d112017-12-09 22:35:39 +01001714
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001715 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001716}
1717
1718/* Test behavior of channel release after CONN FAIL IND from BTS */
1719testcase TC_chan_rel_conn_fail() runs on test_CT {
1720 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001721 var DchanTuple dt;
1722
Harald Welte89d42e82017-12-17 16:42:41 +01001723 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001724
1725 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1726
1727 /* simulate CONN FAIL IND */
Harald Weltea8ed9062017-12-14 09:46:01 +01001728 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
Harald Welte4003d112017-12-09 22:35:39 +01001729 /* TODO: different cause values? */
1730
Harald Welte4003d112017-12-09 22:35:39 +01001731 /* expect Clear Request from BSC */
1732 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1733
1734 /* Instruct BSC to clear channel */
1735 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1736 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1737
Harald Welte6ff76ea2018-01-28 13:08:01 +01001738 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001739 f_exp_chan_rel_and_clear(dt, 0);
Harald Welte4003d112017-12-09 22:35:39 +01001740
1741 /* wait for SCCP emulation to do its job */
1742 f_sleep(1.0);
1743
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001744 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001745}
1746
Harald Welte99f3ca02018-06-14 13:40:29 +02001747/* Test behavior of early CONN FAIL IND from BTS (before EST IND!) */
1748/* See also https://www.osmocom.org/issues/3182 */
1749testcase TC_early_conn_fail() runs on test_CT {
1750 var RSL_Message rx_rsl;
1751 var DchanTuple dt;
1752
1753 f_init(1);
1754
1755 /* BTS->BSC: Send CHAN RQD and wait for allocation; acknowledge it */
Harald Weltec46ea3c2020-10-10 18:46:12 +02001756 dt.rsl_chan_nr := f_chreq_act_ack(f_rnd_ra_cs(), 23);
Harald Welte99f3ca02018-06-14 13:40:29 +02001757
1758 /* BTS->BSC: simulate CONN FAIL IND */
1759 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1760
1761 /* BTS->BSC: Expect RF channel release from BSC on Abis */
1762 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1763
1764 /* BTS<-BSC: respond with CHAN REL ACK */
1765 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1766
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001767 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001768}
1769
1770/* Test behavior of late CONN FAIL IND from BTS (ater REL IND!) */
1771/* See also https://www.osmocom.org/issues/3182 */
1772testcase TC_late_conn_fail() runs on test_CT {
1773 var RSL_Message rx_rsl;
1774 var DchanTuple dt;
1775
1776 f_init(1);
1777
1778 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1779
1780 /* BSC<-MSC: Instruct BSC to clear connection */
1781 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(0)));
1782
1783 /* BTS->BSC: expect BSC to deactivate SACCH */
1784 rx_rsl := f_exp_ipa_rx(0, tr_RSL_DEACT_SACCH(dt.rsl_chan_nr));
1785
1786 /* BTS->BSC: simulate a late CONN FAIL IND from BTS */
1787 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1788
1789 /* BTS<-BSC: Expect RF channel release from BSC on Abis */
1790 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1791 /* BTS->BSC: respond with CHAN REL ACK */
1792 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1793
1794 /* BSC->MSC: expect Clear Complete from BSC */
1795 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1796
1797 /* BSC<-MSC: MSC disconnects as requested. */
1798 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1799
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001800 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001801}
1802
Oliver Smithaf03bef2021-08-24 15:34:51 +02001803private function f_TC_stats_conn_fail(charstring id) runs on MSC_ConnHdlr {
1804 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
1805 var PDU_BSSAP ass_cmd := f_gen_ass_req();
1806
1807 f_statsd_reset();
1808
1809 /* Establish SDCCH */
1810 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1811 f_establish_fully(ass_cmd, exp_fail);
1812
1813 /* Expect stats to be 0 */
1814 var StatsDExpects expect := {
1815 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 0, max := 0},
1816 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 0, max := 0}
1817 };
1818 f_statsd_expect(expect);
1819
1820 /* Simulate CONN FAIL IND on SDCCH */
1821 RSL.send(ts_ASP_RSL_UD(
1822 ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL),
1823 IPAC_PROTO_RSL_TRX0));
1824
Neels Hofmeyr58be48a2021-09-07 18:39:21 +02001825 f_sleep(1.0);
1826
Oliver Smithaf03bef2021-08-24 15:34:51 +02001827 /* Expect stats to be 1 */
1828 expect := {
1829 {name := "TTCN3.bts.0.chan.rf_fail", mtype := "c", min := 1, max := 1},
1830 {name := "TTCN3.bts.0.chan.rf_fail_sdcch", mtype := "c", min := 1, max := 1}
1831 };
1832 f_statsd_expect(expect);
1833}
1834testcase TC_stats_conn_fail() runs on test_CT {
1835 var TestHdlrParams pars := f_gen_test_hdlr_pars();
1836 var MSC_ConnHdlr vc_conn;
1837
1838 f_init(1, true);
1839 f_sleep(1.0);
1840
1841 vc_conn := f_start_handler(refers(f_TC_stats_conn_fail), pars);
1842 vc_conn.done;
1843
1844 f_shutdown_helper();
1845}
1846
Neels Hofmeyrf44ccd12018-11-05 19:15:23 +01001847function f_expect_chan_rel(integer bts_nr, RslChannelNr rsl_chan_nr,
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001848 boolean expect_deact_sacch := true,
1849 boolean expect_rr_chan_rel := true,
1850 boolean expect_rll_rel_req := true,
Harald Welte99787102019-02-04 10:41:36 +01001851 boolean handle_rll_rel := true,
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001852 template CellSelIndValue expect_cells := omit,
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001853 template RR_Cause expect_rr_cause := ?
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001854 ) runs on test_CT {
Harald Welte91d54a52018-01-28 15:35:07 +01001855
1856 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001857 var boolean got_deact_sacch := false;
1858 var boolean got_rr_chan_rel := false;
1859 var boolean got_rll_rel_req := false;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001860 var ASP_RSL_Unitdata ud;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001861 var RSL_IE_Body l3_ie;
1862 var PDU_ML3_NW_MS l3;
1863 var RR_Cause got_cause;
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001864 log("f_expect_chan_rel() expecting: expect_deact_sacch=", expect_deact_sacch, " expect_rr_chan_rel=", expect_rr_chan_rel,
1865 " expect_rll_rel_req=", expect_rll_rel_req);
Harald Welte91d54a52018-01-28 15:35:07 +01001866 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001867 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DEACT_SACCH(rsl_chan_nr))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001868 got_deact_sacch := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001869 repeat;
1870 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001871 [not istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE_CellSelectInd))) -> value ud {
Harald Welte99787102019-02-04 10:41:36 +01001872 got_rr_chan_rel := true;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001873
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001874 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1875 setverdict(fail, "cannot find L3");
1876 mtc.stop;
1877 }
1878 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1879
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001880 if (not istemplatekind(expect_cells, "omit")) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001881 var CellSelIndValue cells := dec_CellSelIndValue(
1882 l3.msgs.rrm.channelRelease.cellSelectionIndicator.cellSelectionIndicatorValue);
1883
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001884 log("GOT RR CHANNEL RELEASE WITH CELLS: ", cells);
1885 if (match(cells, expect_cells)) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001886 setverdict(pass);
1887 } else {
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001888 log("EXPECTED CELLS: ", expect_cells);
1889 setverdict(fail, "Received cells list on RR Channel Release does not match expectations");
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001890 }
1891 }
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001892
1893 if (not istemplatekind(expect_rr_cause, "omit")) {
1894 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1895 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1896 if (match(got_cause, expect_rr_cause)) {
1897 setverdict(pass);
1898 } else {
1899 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1900 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1901 }
1902 }
Harald Welte99787102019-02-04 10:41:36 +01001903 repeat;
1904 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001905 [istemplatekind(expect_cells, "omit")] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DATA_REQ(rsl_chan_nr, ?, decmatch tr_RRM_RR_RELEASE))) -> value ud {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001906 got_rr_chan_rel := true;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001907
1908 if (not istemplatekind(expect_rr_cause, "omit")) {
1909 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1910 setverdict(fail, "cannot find L3");
1911 mtc.stop;
1912 }
1913 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1914
1915 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1916 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1917 if (match(got_cause, expect_rr_cause)) {
1918 setverdict(pass);
1919 } else {
1920 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1921 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1922 }
1923 }
Neels Hofmeyr211169d2018-11-07 00:37:29 +01001924 repeat;
1925 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001926 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_REL_REQ(rsl_chan_nr, ?))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001927 got_rll_rel_req := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001928 /* FIXME: Why are we getting this for LinkID SACCH? */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001929 if (handle_rll_rel) {
1930 f_ipa_tx(0, ts_RSL_REL_CONF(rsl_chan_nr, main_dcch));
1931 }
Harald Welte91d54a52018-01-28 15:35:07 +01001932 repeat;
1933 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001934 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001935 /* respond with CHAN REL ACK */
1936 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(rsl_chan_nr));
1937 }
1938 /* ignore any user data */
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001939 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeR(?))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001940 repeat;
1941 }
1942 }
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001943
1944 log("f_expect_chan_rel() summary: got_deact_sacch=", got_deact_sacch, " got_rr_chan_rel=", got_rr_chan_rel,
1945 " got_rll_rel_req=", got_rll_rel_req);
1946
1947 if (expect_deact_sacch != got_deact_sacch) {
1948 setverdict(fail, "f_expect_chan_rel(): expect_deact_sacch=", expect_deact_sacch, " got_deact_sacch=", got_deact_sacch);
1949 }
1950 if (expect_rr_chan_rel != got_rr_chan_rel) {
1951 setverdict(fail, "f_expect_chan_rel(): expect_rr_chan_rel=", expect_rr_chan_rel, " got_rr_chan_rel=", got_rr_chan_rel);
1952 }
1953 if (expect_rll_rel_req != got_rll_rel_req) {
1954 setverdict(fail, "f_expect_chan_rel(): expect_rll_rel_req=", expect_rll_rel_req, " got_rll_rel_req=", got_rll_rel_req);
1955 }
Harald Welte91d54a52018-01-28 15:35:07 +01001956}
1957
Harald Welte4003d112017-12-09 22:35:39 +01001958/* Test behavior of channel release after hard Clear Command from MSC */
1959testcase TC_chan_rel_hard_clear() runs on test_CT {
1960 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001961 var DchanTuple dt;
Harald Welte4003d112017-12-09 22:35:39 +01001962
Harald Welte89d42e82017-12-17 16:42:41 +01001963 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001964
1965 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1966
1967 /* Instruct BSC to clear channel */
1968 var BssmapCause cause := 0;
1969 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1970
1971 /* expect Clear Complete from BSC on A */
1972 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1973 /* release the SCCP connection */
1974 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1975 }
1976
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001977 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001978 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001979}
1980
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001981function f_TC_chan_rel_last_eutran_plmn_hard_clear(boolean tx_csfb_ind) runs on test_CT {
1982 var BSSAP_N_DATA_ind rx_di;
1983 var DchanTuple dt;
1984
1985 f_init(1);
1986
1987 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1988 /* Send CommonID with some random PLMN (BSC doesn't take it into account
1989 /* yet when generating the EUTRAN neigh list in RR CHannel Release) */
1990 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
1991
1992 /* Instruct BSC to clear channel */
1993 var BssmapCause cause := 0;
1994 if (tx_csfb_ind) {
1995 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
1996 } else {
1997 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1998 }
1999
2000 /* expect Clear Complete from BSC on A */
2001 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2002 /* release the SCCP connection */
2003 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2004 }
2005
2006 /* 1 neighbor is added by default in osmo-bts.cfg and
2007 SystemInformationConfig_default, use that: */
2008 var template CellSelIndValue exp_cells := f_tr_rr_chan_rel_earfcns(1);
2009
2010 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := exp_cells);
2011 f_shutdown_helper();
2012}
2013
2014/* Test behavior of RR Channel rRelease after Clear Command without CSFB indicator
2015 from MSC, previously receiving any CommonID containing the "Last Used E-UTRAN
2016 PLMN Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2017 EUTRAN neighbor list sent later on by BSC in RR Channel, so receiving CSFB
2018 Indicator or not shouldn't matter at all. */
2019testcase TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() runs on test_CT {
2020 f_TC_chan_rel_last_eutran_plmn_hard_clear(false);
2021}
2022
2023/* Test behavior of RR Channel rRelease after Clear Command with CSFB indicator from
2024 MSC, previously receiving any CommonID containing the "Last Used E-UTRAN PLMN
2025 Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
2026 EUTRAN neighbor list sent later on by BSC in RR Channel. */
2027testcase TC_chan_rel_last_eutran_plmn_hard_clear_csfb() runs on test_CT {
2028 f_TC_chan_rel_last_eutran_plmn_hard_clear(true);
2029}
2030
2031/* Test behavior of RR Channel Release after Clear Command with CSFB indicator from
2032 MSC, without receiving any CommonID containing the "Last Used E-UTRAN PLMN
2033 Id". According to spec (TS 48.008 version 16.0.0 Release 16 "3.2.1.21") the
2034 CSFB Indicator should not be used anymore, and hence, there should be no
2035 EUTRAN neighbor list sent by BSC in RR Channel release since no CommonId with
2036 Last Used E-UTRAN PLMN Id" IE was sent for this conn. */
Harald Welte99787102019-02-04 10:41:36 +01002037testcase TC_chan_rel_hard_clear_csfb() runs on test_CT {
2038 var BSSAP_N_DATA_ind rx_di;
2039 var DchanTuple dt;
2040
2041 f_init(1);
2042
2043 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2044
2045 /* Instruct BSC to clear channel */
2046 var BssmapCause cause := 0;
2047 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2048
2049 /* expect Clear Complete from BSC on A */
2050 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2051 /* release the SCCP connection */
2052 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2053 }
2054
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002055 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002056 f_shutdown_helper();
Harald Welte99787102019-02-04 10:41:36 +01002057}
2058
Harald Welted8c36cd2017-12-09 23:05:31 +01002059/* Test behavior of channel release after hard RLSD from MSC */
2060testcase TC_chan_rel_hard_rlsd() runs on test_CT {
Harald Welted8c36cd2017-12-09 23:05:31 +01002061 var DchanTuple dt;
Harald Welted8c36cd2017-12-09 23:05:31 +01002062
Harald Welte89d42e82017-12-17 16:42:41 +01002063 f_init(1);
Harald Welted8c36cd2017-12-09 23:05:31 +01002064
2065 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2066
2067 /* release the SCCP connection */
2068 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2069
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002070 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002071 f_shutdown_helper();
Harald Welted8c36cd2017-12-09 23:05:31 +01002072}
2073
Harald Welte550daf92018-06-11 19:22:13 +02002074/* Test behavior of channel release after hard RLSD from MSC and MS is not responding to RLL REL REQ */
2075testcase TC_chan_rel_hard_rlsd_ms_dead() runs on test_CT {
2076 var DchanTuple dt;
2077
2078 f_init(1);
2079
2080 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2081
2082 /* release the SCCP connection */
2083 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2084
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002085 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002086 f_shutdown_helper();
Harald Welte550daf92018-06-11 19:22:13 +02002087}
2088
Harald Welte85804d42017-12-10 14:11:58 +01002089/* Test behavior of channel release after BSSMAP RESET from MSC */
2090testcase TC_chan_rel_a_reset() runs on test_CT {
Harald Welte85804d42017-12-10 14:11:58 +01002091 var DchanTuple dt;
Harald Welte85804d42017-12-10 14:11:58 +01002092
Harald Welte89d42e82017-12-17 16:42:41 +01002093 f_init(1);
Harald Welte85804d42017-12-10 14:11:58 +01002094
2095 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2096
2097 /* Clear the queue, it might still contain stuff like IMMEDIATE ASSIGN */
2098 IPA_RSL[0].clear;
2099
2100 /* perform BSSAP RESET, expect RESET ACK and DISC.ind on connection */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002101 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte85804d42017-12-10 14:11:58 +01002102 interleave {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002103 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte85804d42017-12-10 14:11:58 +01002104 [] BSSAP.receive(tr_BSSAP_DISC_ind(dt.sccp_conn_id, ?, ?)) { }
2105 }
2106
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002107 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002108 f_shutdown_helper();
Harald Welte85804d42017-12-10 14:11:58 +01002109}
2110
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002111/* Verify T(iar) triggers and releases the channel */
2112testcase TC_chan_rel_sccp_tiar_timeout() runs on test_CT {
2113 var DchanTuple dt;
2114
2115 /* Set T(iar) in BSC low enough that it will trigger before other side
2116 has time to keep alive with a T(ias). Keep recommended ratio of
2117 T(iar) >= T(ias)*2 */
2118 g_bsc_sccp_timer_ias := 2;
2119 g_bsc_sccp_timer_iar := 5;
2120
2121 f_init(1);
2122
2123 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2124 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002125 f_shutdown_helper();
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002126}
2127
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002128private function f_tc_chan_rel_rr_cause(myBSSMAP_Cause clear_cmd_cause, template RR_Cause expect_rr_cause)
2129runs on test_CT
2130{
2131 var DchanTuple dt;
2132
2133 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2134 var BssmapCause cause := 0;
2135 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(enum2int(clear_cmd_cause))));
2136 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2137 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2138 }
2139
2140 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_rr_cause := expect_rr_cause);
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002141}
2142
2143/* Test that Clear Command cause codes affect the RR Channel Release cause code */
2144testcase TC_chan_rel_rr_cause() runs on test_CT {
2145 f_init(1);
2146
2147 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_CALL_CONTROL, GSM48_RR_CAUSE_NORMAL);
2148 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_HANDOVER_SUCCESSFUL, GSM48_RR_CAUSE_NORMAL);
2149 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_PREEMPTION, GSM48_RR_CAUSE_PREMPTIVE_REL);
2150 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_MESSAGE_FAILURE, GSM48_RR_CAUSE_PROT_ERROR_UNSPC);
2151 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
2152 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_EQUIPMENT_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
Vadim Yanitskiye18aebb2021-01-03 13:10:43 +01002153
2154 f_shutdown_helper();
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002155}
2156
Harald Welte5cd20ed2017-12-13 21:03:20 +01002157/* Test behavior if RSL EST IND for non-active channel */
2158testcase TC_rll_est_ind_inact_lchan() runs on test_CT {
2159 timer T := 2.0;
2160
Harald Welte89d42e82017-12-17 16:42:41 +01002161 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002162
2163 var octetstring l3 := '00010203040506'O;
2164 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
2165 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
2166
2167 T.start;
2168 alt {
2169 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2170 setverdict(fail, "MSC received COMPL L3 for non-active lchan");
2171 }
2172 [] BSSAP.receive {}
2173 [] IPA_RSL[0].receive {}
2174 [] T.timeout {}
2175 }
2176
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002177 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002178}
2179
2180/* Test behavior if RSL EST IND for invalid SAPI */
2181testcase TC_rll_est_ind_inval_sapi1() runs on test_CT {
2182 var RslChannelNr chan_nr;
2183
Harald Welte89d42e82017-12-17 16:42:41 +01002184 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002185
2186 chan_nr := f_chreq_act_ack()
2187
2188 var octetstring l3 := '00010203040506'O;
2189 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(1)), l3));
2190
2191 timer T := 2.0;
2192 T.start;
2193 alt {
2194 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2195 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 1");
2196 }
2197 [] BSSAP.receive { repeat; }
2198 [] IPA_RSL[0].receive { repeat; }
2199 [] T.timeout {}
2200 }
2201
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002202 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002203}
2204
2205/* Test behavior if RSL EST IND for invalid SAPI */
2206testcase TC_rll_est_ind_inval_sapi3() runs on test_CT {
2207 timer T := 2.0;
2208
Harald Welte89d42e82017-12-17 16:42:41 +01002209 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002210
2211 var RslChannelNr chan_nr := f_chreq_act_ack();
2212
2213 var octetstring l3 := '00010203040506'O;
2214 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(3)), l3));
2215
2216 T.start;
2217 alt {
2218 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2219 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 3");
2220 }
2221 [] BSSAP.receive { repeat; }
2222 [] IPA_RSL[0].receive { repeat; }
2223 [] T.timeout {}
2224 }
2225
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002226 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002227}
2228
2229/* Test behavior if RSL EST IND for invalid SACCH */
2230testcase TC_rll_est_ind_inval_sacch() runs on test_CT {
2231 timer T := 2.0;
2232
Harald Welte89d42e82017-12-17 16:42:41 +01002233 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002234
2235 var RslChannelNr chan_nr := f_chreq_act_ack();
2236
2237 var octetstring l3 := '00010203040506'O;
2238 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_SACCH(0)), l3));
2239
2240 T.start;
2241 alt {
2242 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2243 setverdict(fail, "MSC received COMPL L3 for invalid Link SACCH");
2244 }
2245 [] BSSAP.receive { repeat; }
2246 [] IPA_RSL[0].receive { repeat; }
2247 [] T.timeout {}
2248 }
2249
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002250 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002251}
2252
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002253/* Verify DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
2254private function f_TC_tch_dlci_link_id_sapi(charstring id) runs on MSC_ConnHdlr {
2255 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
2256 var PDU_BSSAP ass_cmd := f_gen_ass_req();
2257
2258 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
2259 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
2260
2261 f_establish_fully(ass_cmd, exp_compl);
2262
2263 /* SAPI0 has already been established by f_establish_fully(), establish SAPI3 */
2264 RSL.send(ts_RSL_EST_IND(g_chan_nr, ts_RslLinkID_SACCH(3), '0904'O));
2265 /* Expect BSSAP/DTAP on SAPI3 (DLCI IE) */
2266 BSSAP.receive(PDU_BSSAP:{
2267 discriminator := '1'B,
2268 spare := '0000000'B,
2269 dlci := 'C3'O,
2270 lengthIndicator := ?,
2271 pdu := { dtap := '0904'O }
2272 });
2273
2274 /* Send messages on DCCH/SAPI0 and ACCH/SAPI3 */
2275 for (var integer i := 0; i < 32; i := i + 1) {
2276 var octetstring l3 := '09'O & f_rnd_octstring(14);
2277 var template (value) RslLinkId link_id;
2278 var template (value) OCT1 dlci;
2279
2280 if (i mod 2 == 0) {
2281 /* SAPI0 on FACCH or SDCCH */
2282 link_id := ts_RslLinkID_DCCH(0);
2283 dlci := '80'O;
2284 } else {
2285 /* SAPI3 on SACCH */
2286 link_id := ts_RslLinkID_SACCH(3);
2287 dlci := 'C3'O;
2288 }
2289
2290 /* Send MO message: RSL -> BSSAP */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002291 f_mo_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002292 /* Send MT message: BSSAP -> RSL */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002293 f_mt_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002294 }
2295}
2296testcase TC_tch_dlci_link_id_sapi() runs on test_CT {
2297 var TestHdlrParams pars := f_gen_test_hdlr_pars();
2298 var MSC_ConnHdlr vc_conn;
2299
2300 f_init(1, true);
2301 f_sleep(1.0);
2302
2303 vc_conn := f_start_handler(refers(f_TC_tch_dlci_link_id_sapi), pars);
2304 vc_conn.done;
2305
2306 f_shutdown_helper();
2307}
2308
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002309private function f_exp_sapi_n_reject(template (present) GsmSapi sapi := ?,
2310 template myBSSMAP_Cause cause := ?,
2311 float T_val := 2.0)
2312runs on test_CT {
2313 var BSSAP_N_DATA_ind rx_di;
2314 timer T;
2315
2316 var template BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
2317 var template PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
2318
2319 T.start(T_val);
2320 alt {
2321 [] BSSAP.receive(tr_BSSAP_DATA_ind(?, tr_pdu)) -> value rx_di {
2322 var BSSMAP_IE_Cause rx_cause := rx_di.userData.pdu.bssmap.sAPInReject.cause;
2323 if (not match(rx_cause, tr_cause)) {
2324 setverdict(fail, "Rx unexpected Cause IE: ",
2325 rx_cause, " vs expected ", tr_cause);
2326 }
2327 setverdict(pass);
2328 }
2329 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value rx_di {
2330 setverdict(fail, "Rx unexpected BSSAP PDU: ", rx_di);
2331 }
2332 [] T.timeout {
2333 setverdict(fail, "Timeout waiting for BSSMAP SAPI N Reject");
2334 }
2335 }
2336}
2337
2338/* Check if we get SAPI N Reject on receipt of unexpected RLL RELease INDication */
2339testcase TC_rll_rel_ind_sapi_n_reject() runs on test_CT {
2340 var octetstring rnd_data := f_rnd_octstring(16);
2341 var RSL_Message rx_rsl;
2342 var DchanTuple dt;
2343
2344 f_init(1);
2345
2346 /* MS establishes a SAPI=0 link on DCCH */
2347 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2348
2349 /* MSC sends some data on (not yet established) SAPI=3 link */
2350 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2351 /* BSC attempts to establish a SAPI=3 link on DCCH */
2352 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2353
2354 /* MS sends unexpected RELease INDication on SAPI=3 */
2355 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3)));
2356 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2357 f_exp_sapi_n_reject(3, GSM0808_CAUSE_MS_NOT_EQUIPPED);
2358
2359 /* Clean up the connection */
2360 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2361 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2362
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002363 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002364}
2365
2366/* Check if we get SAPI N Reject on receipt of unexpected RLL ERROR INDication */
2367testcase TC_rll_err_ind_sapi_n_reject() runs on test_CT {
2368 var octetstring rnd_data := f_rnd_octstring(16);
2369 var RSL_Message rx_rsl;
2370 var DchanTuple dt;
2371
2372 f_init(1);
2373
2374 /* MS establishes a SAPI=0 link on DCCH */
2375 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2376
2377 /* MSC sends some data on (not yet established) SAPI=3 link */
2378 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2379 /* BSC attempts to establish a SAPI=3 link on DCCH */
2380 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2381
2382 /* BTS sends unexpected ERROR INDication on SAPI=3 */
2383 f_ipa_tx(0, ts_RSL_ERROR_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3), ''O));
2384 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2385 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED);
2386
2387 /* Clean up the connection */
2388 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2389 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2390
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002391 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002392}
2393
2394/* Check if we get SAPI N Reject due to a SAPI=3 link establishment timeout */
2395testcase TC_rll_timeout_sapi_n_reject() runs on test_CT {
2396 var octetstring rnd_data := f_rnd_octstring(16);
2397 var RSL_Message rx_rsl;
2398 var DchanTuple dt;
2399
2400 f_init(1);
2401
2402 /* MS establishes a SAPI=0 link on DCCH */
2403 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2404
2405 /* MSC sends some data on (not yet established) SAPI=3 link */
2406 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2407 /* BSC attempts to establish a SAPI=3 link on DCCH */
2408 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2409
2410 /* MS does not respond, so the link establishment timeout triggers SAPI N Reject */
2411 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED, T_val := 8.0);
2412
2413 /* Clean up the connection */
2414 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2415 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2416
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002417 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002418}
2419
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002420testcase TC_si_default() runs on test_CT {
2421 f_init(0);
2422 f_init_bts_and_check_sysinfo(0, expect_si := SystemInformationConfig_default);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002423 f_shutdown_helper();
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002424}
Harald Welte4003d112017-12-09 22:35:39 +01002425
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002426/* We're testing SI2quater with lists of EARFCNs. Instead of just incrementing EARFCNs, also pick some from the edges of
2427 * the entire value range. This function provides the same EARFCN numbers for the same earfcn_index */
2428private function f_test_si2quater_earfcn_by_idx(integer earfcn_index) return uint16_t
2429{
2430 select (earfcn_index) {
2431 case (0) {
2432 /* E-ARFCN 111 is already added in the osmo-bsc.cfg */
2433 return 111;
2434 }
2435 case (1) {
2436 return 1;
2437 }
2438 case (2) {
2439 return 0;
2440 }
2441 case (3) {
2442 return 65535;
2443 }
2444 case else {
2445 return 23 * (earfcn_index - 3);
2446 }
2447 }
2448}
2449
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002450function f_test_si2quater(integer total_earfcns, template SystemInformationConfig expect_si,
2451 template CellSelIndValue expect_cells := omit) runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002452
2453 f_init(0);
2454
2455 /* E-ARFCN 111 is already added in the osmo-bsc.cfg, so only add more arfcns if total_earfcns > 1 */
2456 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002457 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2458 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002459 }
2460
2461 f_init_bts_and_check_sysinfo(0, expect_si := expect_si);
2462
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002463 if (not istemplatekind(expect_cells, "omit")) {
2464 /* Also check that RR Channel Release contains these EARFCNs.
2465 * (copied code from TC_chan_rel_hard_clear_csfb) */
2466 var BSSAP_N_DATA_ind rx_di;
2467 var DchanTuple dt;
2468
2469 dt := f_est_dchan('23'O, 23, '00010203040506'O);
Pau Espin Pedrold0046312021-04-19 16:35:58 +02002470 /* Send CommonID with some random PLMN (BSC doesn't take it into account
2471 * yet when generating the EUTRAN neigh list in RR CHannel Release) */
2472 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002473
2474 /* Instruct BSC to clear channel */
2475 var BssmapCause cause := 0;
2476 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2477
2478 /* expect Clear Complete from BSC on A */
2479 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2480 /* release the SCCP connection */
2481 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2482 }
2483
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002484 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := expect_cells);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002485 }
2486
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002487 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002488 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002489 }
2490}
2491
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002492private function f_tr_si2quater_earfcns(integer count) return template SI2quaterRestOctetsList
2493{
2494 var template SI2quaterRestOctetsList si2quater := {};
2495 var integer si2quater_count := (count + 2) / 3;
2496
2497 for (var integer i := 0; i < count; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002498 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002499 var integer index := i / 3;
2500 var integer earfcn_index := i mod 3;
2501 if (index >= lengthof(si2quater)) {
2502 si2quater[index] := tr_SI2quaterRestOctets_EUTRAN(index := index, count := si2quater_count - 1);
2503 }
2504 si2quater[index].rel_additions.rel5.rel6.rel7.rel8.prio_eutran_params_desc.desc.eutran_params_desc.desc.repeated_neigh_cells[0].cell_desc_list[earfcn_index] := tr_EUTRAN_CellDesc_default(e_arfcn := earfcn);
2505 }
2506
2507 return si2quater;
2508}
2509
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002510private function f_tr_rr_chan_rel_earfcns(integer count) return template CellSelIndValue
2511{
2512 var template CellSelIndValue_EUTRAN_Descrs cells := {};
2513
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002514 /* the lte neighbors must match the config & vty to pass this test */
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002515 for (var integer i := 0; i < count; i := i + 1) {
2516 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002517 cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002518 }
2519
2520 return tr_CellSelIndValue_EUTRAN(cells);
2521}
2522
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002523private function f_tc_si2quater_n_earfcns(integer n) runs on test_CT
2524{
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002525 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrol8ab62e42020-12-18 16:19:11 +01002526 sic.si2quater := f_tr_si2quater_earfcns(n);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002527 var template CellSelIndValue cells := f_tr_rr_chan_rel_earfcns(n);
2528 f_test_si2quater(n, sic, cells);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002529}
2530
2531testcase TC_si2quater_2_earfcns() runs on test_CT {
2532 f_tc_si2quater_n_earfcns(2);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002533 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002534}
2535
2536testcase TC_si2quater_3_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002537 f_tc_si2quater_n_earfcns(3);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002538 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002539}
2540
2541testcase TC_si2quater_4_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002542 f_tc_si2quater_n_earfcns(4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002543 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002544}
2545
2546testcase TC_si2quater_5_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002547 f_tc_si2quater_n_earfcns(5);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002548 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002549}
2550
2551testcase TC_si2quater_6_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002552 f_tc_si2quater_n_earfcns(6);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002553 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002554}
2555
2556testcase TC_si2quater_12_earfcns() runs on test_CT {
2557 f_tc_si2quater_n_earfcns(12);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002558 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002559}
2560
2561testcase TC_si2quater_23_earfcns() runs on test_CT {
2562 f_tc_si2quater_n_earfcns(23);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002563 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002564}
2565
2566testcase TC_si2quater_32_earfcns() runs on test_CT {
2567 f_tc_si2quater_n_earfcns(32);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002568 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002569}
2570
2571testcase TC_si2quater_33_earfcns() runs on test_CT {
2572 f_tc_si2quater_n_earfcns(33);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002573 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002574}
2575
2576testcase TC_si2quater_42_earfcns() runs on test_CT {
2577 f_tc_si2quater_n_earfcns(42);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002578 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002579}
2580
2581testcase TC_si2quater_48_earfcns() runs on test_CT {
2582 f_tc_si2quater_n_earfcns(48);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002583 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002584}
2585
2586/* verify the VTY error response when adding too many EARFCNs, and showing that osmo-bsc still sends 16 SI2quater with
2587 * 48 EARFCNs. */
2588testcase TC_si2quater_49_earfcns() runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002589 var template SystemInformationConfig sic := SystemInformationConfig_default;
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002590 sic.si2quater := f_tr_si2quater_earfcns(48); /* 48, not 49! */
2591 f_init(0);
2592
2593 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002594 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2595 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002596 }
2597
2598 /* The 49th EARFCN no longer fits, expect VTY error */
2599 f_vty_enter_cfg_bts(BSCVTY, 0);
2600 var charstring vty_error;
2601 vty_error := f_vty_transceive_ret(BSCVTY,
2602 "si2quater neighbor-list add earfcn 70 thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3")
2603 f_vty_transceive(BSCVTY, "end");
2604
2605 if (f_strstr(vty_error, "Unable to add ARFCN 70") >= 0) {
2606 log("Got expected VTY error: ", vty_error);
2607 setverdict(pass);
2608 } else {
2609 setverdict(fail, "Expected the 49th EUTRAN ARFCN to be rejected by vty config, got: ", vty_error);
2610 }
2611
2612 f_init_bts_and_check_sysinfo(0, expect_si := sic);
2613
2614 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002615 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list del earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002616 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002617 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002618}
2619
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002620private function f_acc09_count_allowed(AccessControlClass acc) return uint8_t
2621{
2622 var uint8_t count := 0;
2623 for (var integer i := 5; i < 16; i := i + 1) {
2624 if (acc[i] == '0'B) { /* the list marks barred, we count allowed */
2625 count := count + 1;
2626 }
2627 }
2628 return count;
2629}
2630
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002631private function f_recv_next_si1(integer rsl_idx := 0) runs on test_CT return SystemInformationType1
2632{
2633 var ASP_RSL_Unitdata rx_rsl_ud;
2634 var SystemInformationType1 last_si1;
2635
2636 timer T := 30.0;
2637 T.start;
2638 alt {
2639 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD((tr_RSL_NO_BCCH_INFO,
2640 tr_RSL_BCCH_INFO,
2641 tr_RSL_NO_SACCH_FILL,
2642 tr_RSL_SACCH_FILL))
2643 ) -> value rx_rsl_ud {
2644 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
2645 if (g_system_information[rsl_idx].si1 == omit) {
2646 repeat;
2647 }
2648 last_si1 := g_system_information[rsl_idx].si1;
2649 g_system_information[rsl_idx].si1 := omit;
2650 T.stop;
2651 }
Vadim Yanitskiy79ebd5e2021-01-04 00:12:55 +01002652 [] IPA_RSL[rsl_idx].receive { repeat; }
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002653 [] T.timeout { setverdict(fail, "Timeout receiving next SI1"); }
2654 }
2655 return last_si1;
2656}
2657
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002658/* verify ACC rotate feature */
2659testcase TC_si_acc_rotate() runs on test_CT {
2660 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002661 var SystemInformationType1 last_si1;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002662 var AccessControlClass acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002663 var uint8_t count;
2664 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2665
2666 f_init(0, guard_timeout := 60.0);
2667
2668 f_bts_0_cfg(BSCVTY, {"rach access-control-class 5 barred",
2669 "access-control-class-rotate 3",
2670 "access-control-class-rotate-quantum 1"});
2671
2672 /* Init and get first sysinfo */
2673 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2674
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002675 for (var integer i:= 0; i < 20; i := i + 1) {
2676 last_si1 := f_recv_next_si1(0);
2677 acc := last_si1.rach_control.acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002678 count := f_acc09_count_allowed(acc);
2679 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2680
2681 if (count != 3) {
2682 log("RSL: EXPECTED SI ACC len=3");
2683 setverdict(fail, "received SI does not match expectations");
2684 break;
2685 }
2686
2687 for (var integer j := 0; j < 10; j := j + 1) {
2688 if (acc[16 - 1 - j] == '0'B) { /* the list marks barred, we count allowed */
2689 times_allowed[j] := times_allowed[j] + 1;
2690 }
2691 }
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002692 }
2693
2694 for (var integer j := 0; j < 10; j := j + 1) {
2695 log("ACC", j, " allowed ", times_allowed[j], " times" );
2696 if (j != 5 and times_allowed[j] < 3) {
2697 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " < 1 times");
2698 } else if (j == 5 and times_allowed[j] > 0) {
2699 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " > 0 times");
2700 }
2701 }
2702
2703 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2704 "rach access-control-class 5 allowed"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002705 f_shutdown_helper();
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002706}
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002707
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002708/* verify ACC startup ramp+rotate feature */
2709testcase TC_si_acc_ramp_rotate() runs on test_CT {
2710 var template SystemInformationConfig sic := SystemInformationConfig_default;
2711 var SystemInformationType1 last_si1;
2712 var AccessControlClass acc;
2713 var ASP_RSL_Unitdata rx_rsl_ud;
2714 var uint8_t count;
2715 var uint8_t prev_count;
2716 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2717
2718 f_init(0, guard_timeout := 80.0);
2719
2720 f_bts_0_cfg(BSCVTY, {"rach access-control-class 4 barred",
2721 "access-control-class-rotate 0",
2722 "access-control-class-rotate-quantum 1",
2723 "access-control-class-ramping",
2724 "access-control-class-ramping-step-interval 5",
2725 "access-control-class-ramping-step-size 5"});
2726
2727 /* Init and get first sysinfo */
2728 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2729 last_si1 := g_system_information[0].si1;
2730 acc := last_si1.rach_control.acc;
2731 count := f_acc09_count_allowed(acc);
2732 /* Adm subset size was set to 0 above, so wait until all ACC are barred */
2733 while (count > 0) {
2734 last_si1 := f_recv_next_si1(0);
2735 acc := last_si1.rach_control.acc;
2736 count := f_acc09_count_allowed(acc);
2737 log("RSL: wait len()=0: GOT SI1 ACC len=", count, ": ", acc);
2738 }
2739
2740 /* Increase adm subset size, we should see ramping start up */
2741 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10"});
2742 prev_count := 0;
2743 while (true) {
2744 last_si1 := f_recv_next_si1(0);
2745 acc := last_si1.rach_control.acc;
2746 count := f_acc09_count_allowed(acc);
2747 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2748
2749 if (prev_count > count) {
2750 setverdict(fail, "ACC allowed count dropped while expecting grow: ", prev_count, " -> ", count);
2751 break;
2752 }
2753
2754 if (count == 9) {
2755 break; /* Maximum reached (10 - 1 perm barred), done here */
2756 }
2757
2758 prev_count := count;
2759 }
2760
2761 setverdict(pass);
2762
2763 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2764 "rach access-control-class 4 allowed",
2765 "no access-control-class-ramping"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002766 f_shutdown_helper();
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002767}
2768
Harald Welte4003d112017-12-09 22:35:39 +01002769testcase TC_ctrl_msc_connection_status() runs on test_CT {
2770 var charstring ctrl_resp;
2771
Harald Welte89d42e82017-12-17 16:42:41 +01002772 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002773
2774 /* See https://osmocom.org/issues/2729 */
2775 f_ctrl_get_exp(IPA_CTRL, "msc_connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002776 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01002777}
2778
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002779testcase TC_ctrl_msc0_connection_status() runs on test_CT {
2780 var charstring ctrl_resp;
2781
2782 f_init(1);
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002783
2784 f_ctrl_get_exp(IPA_CTRL, "msc.0.connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002785 f_shutdown_helper();
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002786}
2787
Neels Hofmeyr0bc470d2021-08-21 13:37:13 +02002788/* Verify correct stats on the number of configured and connected MSCs */
2789private function f_tc_stat_num_msc_connected_msc_connhdlr(integer expect_num_msc_connected) runs on MSC_ConnHdlr {
2790 g_pars := f_gen_test_hdlr_pars();
2791 var StatsDExpects expect := {
2792 { name := "TTCN3.bsc.0.num_msc.connected", mtype := "g", min := expect_num_msc_connected, max := expect_num_msc_connected },
2793 { name := "TTCN3.bsc.0.num_msc.total", mtype := "g", min := NUM_MSC, max := NUM_MSC }
2794 };
2795 f_statsd_expect(expect);
2796}
2797
2798private function f_tc_stat_num_msc_connected_test_ct(void_fn tc_fn, integer nr_msc) runs on test_CT
2799{
2800 var MSC_ConnHdlr vc_conn;
2801
2802 f_init(nr_bts := 1, handler_mode := true, nr_msc := nr_msc);
2803 f_sleep(1.0);
2804 vc_conn := f_start_handler(tc_fn);
2805 vc_conn.done;
2806
2807 /* Also verify stat exposed on CTRL interface */
2808 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:connected", int2str(nr_msc));
2809 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_msc:total", int2str(NUM_MSC));
2810
2811 f_shutdown_helper();
2812}
2813
2814/* Verify that when 1 MSC is active, that num_msc:connected reports 1. */
2815private function f_tc_stat_num_msc_connected_1(charstring id) runs on MSC_ConnHdlr {
2816 f_tc_stat_num_msc_connected_msc_connhdlr(1);
2817}
2818testcase TC_stat_num_msc_connected_1() runs on test_CT {
2819 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_1), 1);
2820}
2821
2822/* Verify that when 2 MSCs are active, that num_msc:connected reports 2. */
2823private function f_tc_stat_num_msc_connected_2(charstring id) runs on MSC_ConnHdlr {
2824 f_tc_stat_num_msc_connected_msc_connhdlr(2);
2825}
2826testcase TC_stat_num_msc_connected_2() runs on test_CT {
2827 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_2), 2);
2828}
2829
2830/* Verify that when 3 MSCs are active, that num_msc:connected reports 3. */
2831private function f_tc_stat_num_msc_connected_3(charstring id) runs on MSC_ConnHdlr {
2832 f_tc_stat_num_msc_connected_msc_connhdlr(3);
2833}
2834testcase TC_stat_num_msc_connected_3() runs on test_CT {
2835 f_tc_stat_num_msc_connected_test_ct(refers(f_tc_stat_num_msc_connected_3), 3);
2836}
2837
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002838/* Verify correct stats on the number of configured and connected MSCs */
2839private function f_tc_stat_num_bts_connected_msc_connhdlr(integer expect_num_bts_connected) runs on MSC_ConnHdlr {
2840 g_pars := f_gen_test_hdlr_pars();
2841 var StatsDExpects expect := {
2842 { name := "TTCN3.bsc.0.num_bts.oml_connected", mtype := "g", min := expect_num_bts_connected, max := NUM_BTS_CFG },
2843 { name := "TTCN3.bsc.0.num_bts.all_trx_rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2844 { name := "TTCN3.bsc.0.num_bts.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG },
2845 { name := "TTCN3.bsc.0.num_trx.rsl_connected", mtype := "g", min := expect_num_bts_connected, max := expect_num_bts_connected },
2846 { name := "TTCN3.bsc.0.num_trx.total", mtype := "g", min := NUM_BTS_CFG, max := NUM_BTS_CFG }
2847 };
2848 f_statsd_expect(expect);
2849}
2850
2851private function f_tc_stat_num_bts_connected_test_ct(void_fn tc_fn, integer nr_bts) runs on test_CT {
2852 var MSC_ConnHdlr vc_conn;
2853
2854 f_init(nr_bts := nr_bts, handler_mode := true, nr_msc := 1);
2855 f_sleep(1.0);
2856 vc_conn := f_start_handler(tc_fn);
2857 vc_conn.done;
2858
2859 /* Also verify stat exposed on CTRL interface */
2860 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:all_trx_rsl_connected", int2str(nr_bts));
2861 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_bts:total", int2str(NUM_BTS_CFG));
2862 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:rsl_connected", int2str(nr_bts));
2863 f_ctrl_get_exp(IPA_CTRL, "stat_item.last.bsc.0.num_trx:total", int2str(NUM_BTS_CFG));
2864
Neels Hofmeyra41ae302021-09-06 22:06:02 +02002865 /* Verify rf_states exposed on CTRL interface */
2866 var charstring expect_net_rf_states := "";
2867 for (var integer i := 0; i < NUM_BTS_CFG; i := i + 1) {
2868 var charstring expect_bts_rf_states := int2str(i) & ",0,";
2869 if (i < NUM_BTS) {
2870 /* In these tests, OML for the first NUM_BTS are always connected via osmo-bts-omldummy */
2871 expect_bts_rf_states := expect_bts_rf_states & "operational,unlocked,";
2872 } else {
2873 /* For remaining i < NUM_BTS_CFG, OML is not connected, i.e. inoperational */
2874 expect_bts_rf_states := expect_bts_rf_states & "inoperational,locked,";
2875 }
2876 /* The RF policy is still global in osmo-bsc, i.e. always "on" */
2877 expect_bts_rf_states := expect_bts_rf_states & "on,";
2878 if (i < nr_bts) {
2879 /* For BTS where RSL is connected, the RSL state will be "up" */
2880 expect_bts_rf_states := expect_bts_rf_states & "rsl-up;";
2881 } else {
2882 expect_bts_rf_states := expect_bts_rf_states & "rsl-down;";
2883 }
2884
2885 f_ctrl_get_exp(IPA_CTRL, "bts." & int2str(i) & ".rf_states", expect_bts_rf_states);
2886 expect_net_rf_states := expect_net_rf_states & expect_bts_rf_states;
2887 }
2888 f_ctrl_get_exp(IPA_CTRL, "rf_states", expect_net_rf_states);
2889
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +02002890 f_shutdown_helper();
2891}
2892
2893/* Verify that when 1 BTS is connected, that num_{bts,trx}:*_connected reports 1. */
2894private function f_tc_stat_num_bts_connected_1(charstring id) runs on MSC_ConnHdlr {
2895 f_tc_stat_num_bts_connected_msc_connhdlr(1);
2896}
2897testcase TC_stat_num_bts_connected_1() runs on test_CT {
2898 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_1), 1);
2899}
2900
2901/* Verify that when 2 BTS is connected, that num_{bts,trx}:*_connected reports 2. */
2902private function f_tc_stat_num_bts_connected_2(charstring id) runs on MSC_ConnHdlr {
2903 f_tc_stat_num_bts_connected_msc_connhdlr(2);
2904}
2905testcase TC_stat_num_bts_connected_2() runs on test_CT {
2906 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_2), 2);
2907}
2908
2909/* Verify that when 3 BTS is connected, that num_{bts,trx}:*_connected reports 3. */
2910private function f_tc_stat_num_bts_connected_3(charstring id) runs on MSC_ConnHdlr {
2911 f_tc_stat_num_bts_connected_msc_connhdlr(3);
2912}
2913testcase TC_stat_num_bts_connected_3() runs on test_CT {
2914 f_tc_stat_num_bts_connected_test_ct(refers(f_tc_stat_num_bts_connected_3), 3);
2915}
2916
Harald Welte4003d112017-12-09 22:35:39 +01002917testcase TC_ctrl() runs on test_CT {
2918 var charstring ctrl_resp;
2919
Harald Welte89d42e82017-12-17 16:42:41 +01002920 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002921
2922 /* all below values must match the osmo-bsc.cfg config file used */
2923
Harald Welte6a129692018-03-17 17:30:14 +01002924 f_ctrl_get_exp(IPA_CTRL, "mcc", "001");
2925 f_ctrl_get_exp(IPA_CTRL, "mnc", "01");
Oliver Smith75aa0202019-08-19 14:17:50 +02002926 f_ctrl_get_exp(IPA_CTRL, "number-of-bts", "4");
Harald Welte4003d112017-12-09 22:35:39 +01002927
2928 var integer bts_nr := 0;
2929 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "location-area-code", "1");
2930 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "cell-identity", "0");
2931 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "oml-connection-state", "connected");
2932 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "gprs-mode", "gprs");
2933 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "rf_state", "operational,unlocked,on");
2934 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "arfcn", "871");
2935 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "max-power-reduction", "20");
2936
2937 var integer uptime := str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime"));
2938 f_sleep(2.0);
2939 if (str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime")) < uptime+1) {
2940 setverdict(fail, "oml-uptime not incrementing as expected");
2941 }
2942 /* TODO: Disconnect RSL, imply that OML is disconnected and check for uptime zero? */
2943
2944 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", 0);
2945
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002946 f_shutdown_helper();
Harald Welte96c94412017-12-09 03:12:45 +01002947}
2948
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002949/* Verify that Upon receival of SET "location", BSC forwards a TRAP
2950 "location-state" over the SCCPlite IPA conn */
2951testcase TC_ctrl_location() runs on test_CT {
2952 var MSC_ConnHdlr vc_conn;
2953 var integer bts_nr := 0;
2954
2955 f_init(1, true);
2956 f_sleep(1.0);
2957
2958 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234567,fix3d,0.340000,0.560000,0.780000");
2959 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2960 "1234567,fix3d,0.340000,0.560000,0.780000,operational,unlocked,on,001,01");
2961
2962 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "1");
2963 f_sleep(2.0);
2964
2965 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234888,fix3d,0.350000,0.570000,0.790000");
2966 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2967 "1234888,fix3d,0.350000,0.570000,0.790000,operational,locked,off,001,01");
2968
2969 /* should match the one from config */
2970 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "0");
2971
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002972 f_shutdown_helper();
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002973}
2974
Harald Welte6f521d82017-12-11 19:52:02 +01002975
2976/***********************************************************************
2977 * Paging Testing
2978 ***********************************************************************/
2979
2980type record Cell_Identity {
2981 GsmMcc mcc,
2982 GsmMnc mnc,
2983 GsmLac lac,
2984 GsmCellId ci
2985};
Harald Welte24135bd2018-03-17 19:27:53 +01002986private const Cell_Identity cid := { '001'H, '01'H, 1, 0 };
Stefan Sperling049a86e2018-03-20 15:51:00 +01002987private const Cell_Identity unknown_cid := { '678'H, 'f90'H, 1, 0 };
Harald Welte6f521d82017-12-11 19:52:02 +01002988
Harald Welte5d1a2202017-12-13 19:51:29 +01002989type set of integer BtsIdList;
2990
2991private function f_bts_in_list(integer bts_id, BtsIdList bts_ids) return boolean {
2992 for (var integer j := 0; j < sizeof(bts_ids); j := j + 1) {
2993 if (bts_id == bts_ids[j]) {
2994 return true;
2995 }
2996 }
2997 return false;
2998}
Harald Welte6f521d82017-12-11 19:52:02 +01002999
3000/* core paging test helper function; used by most paging test cases */
3001private function f_pageing_helper(hexstring imsi,
3002 template BSSMAP_FIELD_CellIdentificationList cid_list,
Harald Welte5d1a2202017-12-13 19:51:29 +01003003 BtsIdList bts_ids := { 0 },
Harald Welte6f521d82017-12-11 19:52:02 +01003004 template RSL_ChanNeeded rsl_chneed := omit,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003005 template (omit) OCT4 tmsi := omit) runs on test_CT
Harald Welte6f521d82017-12-11 19:52:02 +01003006{
3007 var template BSSMAP_IE_ChannelNeeded bssmap_chneed;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003008 var template MobileIdentityV mi;
Harald Welte6f521d82017-12-11 19:52:02 +01003009 var RSL_Message rx_rsl;
3010 var integer paging_group := hex2int(imsi[lengthof(imsi)-1]);
Harald Welte5d1a2202017-12-13 19:51:29 +01003011 var integer i;
Harald Welte6f521d82017-12-11 19:52:02 +01003012
3013 f_init();
Harald Welte6f521d82017-12-11 19:52:02 +01003014
3015 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Harald Weltec3068592018-03-17 19:55:31 +01003016 for (i := 0; i < NUM_BTS; i := i + 1) {
3017 IPA_RSL[i].clear;
Harald Welte5d1a2202017-12-13 19:51:29 +01003018 }
Harald Welte6f521d82017-12-11 19:52:02 +01003019
3020 if (isvalue(rsl_chneed)) {
3021 /* The values of 08.08 3.2.2.36 and 08.58 9.3.40 are luckily identical */
3022 bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
3023 } else {
3024 bssmap_chneed := omit;
3025 }
3026
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003027 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own,
3028 ts_BSSMAP_Paging(imsi, cid_list, tmsi, bssmap_chneed)));
Harald Welte6f521d82017-12-11 19:52:02 +01003029
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003030 if (not istemplatekind(tmsi, "omit")) {
3031 mi := t_MI_TMSI(tmsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003032 } else {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003033 mi := tr_MI_IMSI(imsi);
Harald Welte6f521d82017-12-11 19:52:02 +01003034 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003035
Harald Welte5d1a2202017-12-13 19:51:29 +01003036 for (i := 0; i < sizeof(bts_ids); i := i + 1) {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07003037 rx_rsl := f_exp_ipa_rx(bts_ids[i], tr_RSL_PAGING_CMD(mi));
Harald Welte5d1a2202017-12-13 19:51:29 +01003038 /* check channel type, paging group */
3039 if (rx_rsl.ies[1].body.paging_group != paging_group) {
3040 setverdict(fail, "Paging for wrong paging group");
3041 }
3042 if (ispresent(rsl_chneed) and
3043 rx_rsl.ies[3].body.chan_needed.chan_needed != valueof(rsl_chneed)) {
3044 setverdict(fail, "RSL Channel Needed != BSSMAP Channel Needed");
3045 }
Harald Welte6f521d82017-12-11 19:52:02 +01003046 }
Harald Welte2fccd982018-01-31 15:48:19 +01003047 f_sleep(2.0);
Harald Welte5d1a2202017-12-13 19:51:29 +01003048 /* do a quick check on all not-included BTSs if they received paging */
3049 for (i := 0; i < NUM_BTS; i := i + 1) {
3050 timer T := 0.1;
3051 if (f_bts_in_list(i, bts_ids)) {
3052 continue;
3053 }
3054 T.start;
3055 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003056 [] IPA_RSL[i].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(mi))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003057 setverdict(fail, "Paging on BTS ", i, " which is not part of ", bts_ids);
3058 }
3059 [] IPA_RSL[i].receive { repeat; }
3060 [] T.timeout { }
3061 }
Harald Welte6f521d82017-12-11 19:52:02 +01003062 }
3063
3064 setverdict(pass);
3065}
3066
Harald Welte5d1a2202017-12-13 19:51:29 +01003067const BtsIdList c_BtsId_all := { 0, 1, 2 };
Harald Welte751d3eb2018-01-31 15:51:06 +01003068const BtsIdList c_BtsId_none := { };
Harald Welte5d1a2202017-12-13 19:51:29 +01003069const BtsIdList c_BtsId_LAC1 := { 0, 1 };
3070const BtsIdList c_BtsId_LAC2 := { 2 };
3071
Harald Welte6f521d82017-12-11 19:52:02 +01003072/* PAGING by IMSI + TMSI */
3073testcase TC_paging_imsi_nochan() runs on test_CT {
3074 var BSSMAP_FIELD_CellIdentificationList cid_list;
3075 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Philipp Maier8c04b0a2018-02-23 13:48:48 +01003076 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, omit);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003077 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003078}
3079
3080/* PAGING by IMSI + TMSI */
3081testcase TC_paging_tmsi_nochan() runs on test_CT {
3082 var BSSMAP_FIELD_CellIdentificationList cid_list;
3083 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003084 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, 'A1B2C301'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003085 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003086}
3087
3088/* Paging with different "channel needed' values */
3089testcase TC_paging_tmsi_any() runs on test_CT {
3090 var BSSMAP_FIELD_CellIdentificationList cid_list;
3091 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003092 f_pageing_helper('001010100000002'H, cid_list, c_BtsId_all, RSL_CHANNEED_ANY, 'A1B2C302'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003093 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003094}
3095testcase TC_paging_tmsi_sdcch() runs on test_CT {
3096 var BSSMAP_FIELD_CellIdentificationList cid_list;
3097 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003098 f_pageing_helper('001010100000003'H, cid_list, c_BtsId_all, RSL_CHANNEED_SDCCH, 'A1B2C303'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003099 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003100}
3101testcase TC_paging_tmsi_tch_f() runs on test_CT {
3102 var BSSMAP_FIELD_CellIdentificationList cid_list;
3103 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003104 f_pageing_helper('001010000000004'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_F, 'A1B2C304'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003105 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003106}
3107testcase TC_paging_tmsi_tch_hf() runs on test_CT {
3108 var BSSMAP_FIELD_CellIdentificationList cid_list;
3109 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003110 f_pageing_helper('001010000000005'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_ForH, 'A1B2C305'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003111 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003112}
3113
3114/* Paging by CGI */
3115testcase TC_paging_imsi_nochan_cgi() runs on test_CT {
3116 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3117 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(cid.mcc, cid.mnc, cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003118 f_pageing_helper('001010000000006'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003119 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003120}
3121
3122/* Paging by LAC+CI */
3123testcase TC_paging_imsi_nochan_lac_ci() runs on test_CT {
3124 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3125 cid_list := { cIl_LAC_CI := { ts_BSSMAP_CI_LAC_CI(cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003126 f_pageing_helper('001010000000007'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003127 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003128}
3129
3130/* Paging by CI */
3131testcase TC_paging_imsi_nochan_ci() runs on test_CT {
3132 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3133 cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003134 f_pageing_helper('001010000000008'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01003135 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003136}
3137
3138/* Paging by LAI */
3139testcase TC_paging_imsi_nochan_lai() runs on test_CT {
3140 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3141 cid_list := { cIl_LAI := { ts_BSSMAP_CI_LAI(cid.mcc, cid.mnc, cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003142 f_pageing_helper('001010000000009'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003143 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003144}
3145
3146/* Paging by LAC */
3147testcase TC_paging_imsi_nochan_lac() runs on test_CT {
3148 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3149 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01003150 f_pageing_helper('001010000000010'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003151 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003152}
3153
3154/* Paging by "all in BSS" */
3155testcase TC_paging_imsi_nochan_all() runs on test_CT {
3156 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3157 cid_list := { cIl_allInBSS := ''O };
Harald Welte5d1a2202017-12-13 19:51:29 +01003158 f_pageing_helper('001010000000011'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003159 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01003160}
3161
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003162/* Paging by PLMN+LAC+RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003163testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
3164 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3165 cid_list := { cIl_PLMN_LAC_RNC := { ts_BSSMAP_CI_PLMN_LAC_RNC(cid.mcc, cid.mnc, cid.lac, 12) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003166 f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003167 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003168}
Harald Welte6f521d82017-12-11 19:52:02 +01003169
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003170/* Paging by RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003171testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
3172 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3173 cid_list := { cIl_RNC := { int2oct(13, 2) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003174 f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003175 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003176}
3177
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003178/* Paging by LAC+RNC; We do not implement; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01003179testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
3180 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3181 cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01003182 f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003183 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003184}
3185
Harald Welte6f521d82017-12-11 19:52:02 +01003186/* Paging on multiple cells (multiple entries in list): Verify all of them page */
Harald Welte751d3eb2018-01-31 15:51:06 +01003187testcase TC_paging_imsi_nochan_lacs() runs on test_CT {
3188 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3189 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(1), ts_BSSMAP_CI_LAC(2) } };
3190 f_pageing_helper('001010000000015'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003191 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003192}
3193
3194/* Paging on empty list: Verify none of them page */
3195testcase TC_paging_imsi_nochan_lacs_empty() runs on test_CT {
3196 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3197 cid_list := { cIl_LAC := { } };
3198 f_pageing_helper('001010000000016'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003199 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003200}
3201
Stefan Sperling049a86e2018-03-20 15:51:00 +01003202/* Paging by CGI with unknown MCC/MNC: Verify nothing is paged. */
3203testcase TC_paging_imsi_nochan_cgi_unknown_cid() runs on test_CT {
3204 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3205 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(unknown_cid.mcc, unknown_cid.mnc, unknown_cid.lac, unknown_cid.ci) } };
3206 f_pageing_helper('001010000000006'H, cid_list, c_BtsId_none);
3207 f_shutdown_helper();
3208}
3209
Harald Welte6f521d82017-12-11 19:52:02 +01003210/* Verify paging retransmission interval + count */
3211/* Verify paging stops after channel establishment */
Harald Welte6f521d82017-12-11 19:52:02 +01003212/* Test behavior under paging overload */
Harald Welteae026692017-12-09 01:03:01 +01003213
Harald Weltee65d40e2017-12-13 00:09:06 +01003214/* Verify PCH load */
3215testcase TC_paging_imsi_load() runs on test_CT {
3216 var BSSMAP_FIELD_CellIdentificationList cid_list;
3217 timer T := 4.0;
Harald Welte2caa1062018-03-17 18:19:05 +01003218 timer T_retrans := 1.0;
Harald Weltee65d40e2017-12-13 00:09:06 +01003219 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003220 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Weltee65d40e2017-12-13 00:09:06 +01003221
3222 /* tell BSC there is no paging space anymore */
3223 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
Harald Welte3b57ab52018-03-17 18:01:10 +01003224 f_sleep(0.2);
3225 IPA_RSL[0].clear;
Harald Weltee65d40e2017-12-13 00:09:06 +01003226
3227 /* Wait for 4 seconds if any more PAGING CMD are received on RSL. Normally,
3228 * there would be 8 retransmissions during 4 seconds */
3229 T.start;
Harald Welte2caa1062018-03-17 18:19:05 +01003230 T_retrans.start;
Harald Weltee65d40e2017-12-13 00:09:06 +01003231 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003232 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Weltee65d40e2017-12-13 00:09:06 +01003233 setverdict(fail, "Received PAGING after LOAD_IND(0)");
Daniel Willmannafce8662018-07-06 23:11:32 +02003234 mtc.stop;
Harald Weltee65d40e2017-12-13 00:09:06 +01003235 }
Harald Welte2caa1062018-03-17 18:19:05 +01003236 [] T_retrans.timeout {
3237 /* re-trnsmit the zero-space LOAD IND to avoid BSC 'auto credit' */
3238 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
3239 T_retrans.start;
3240 repeat;
3241 }
Harald Weltee65d40e2017-12-13 00:09:06 +01003242 [] T.timeout {
3243 setverdict(pass);
3244 }
3245 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003246
3247 f_shutdown_helper();
Harald Weltee65d40e2017-12-13 00:09:06 +01003248}
3249
Harald Welte235ebf12017-12-15 14:18:16 +01003250/* Verify Paging Counter */
Harald Welte1ff69992017-12-14 12:31:17 +01003251testcase TC_paging_counter() runs on test_CT {
3252 var BSSMAP_FIELD_CellIdentificationList cid_list;
3253 timer T := 4.0;
3254 var integer i;
3255 var integer paging_attempted_bsc;
3256 var integer paging_attempted_bts[NUM_BTS];
3257 var integer paging_expired_bts[NUM_BTS];
3258 cid_list := valueof(ts_BSSMAP_CIL_noCell);
3259
3260 f_init();
3261
3262 /* read counters before paging */
3263 paging_attempted_bsc := f_ctrl_get_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted");
3264 for (i := 0; i < NUM_BTS; i := i+1) {
3265 paging_attempted_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted");
3266 paging_expired_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired");
3267 }
3268
3269 f_pageing_helper('001230000000001'H, cid_list, c_BtsId_all);
3270
3271 /* expect the attempted pages on BSC and each BTSs to have incremented by one */
3272 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", paging_attempted_bsc+1);
3273 for (i := 0; i < NUM_BTS; i := i+1) {
3274 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted",
3275 paging_attempted_bts[i]+1);
3276 }
3277
3278 /* assume that 12s later the paging on all BTSs have expired and hence incremented by 1 */
3279 f_sleep(12.0);
3280 for (i := 0; i < NUM_BTS; i := i+1) {
3281 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired",
3282 paging_expired_bts[i]+1);
3283 }
Harald Welte1ff69992017-12-14 12:31:17 +01003284
Philipp Maier282ca4b2018-02-27 17:17:00 +01003285 f_shutdown_helper();
Harald Welte1ff69992017-12-14 12:31:17 +01003286}
3287
3288
Harald Welte10985002017-12-12 09:29:15 +01003289/* Verify paging stops after A-RESET */
3290testcase TC_paging_imsi_a_reset() runs on test_CT {
3291 var BSSMAP_FIELD_CellIdentificationList cid_list;
3292 timer T := 3.0;
3293 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003294 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Welte10985002017-12-12 09:29:15 +01003295
3296 /* Perform a BSSMAP Reset and wait for ACK */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003297 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own, ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Welte10985002017-12-12 09:29:15 +01003298 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003299 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[0].sccp_addr_own, g_bssap[0].sccp_addr_peer, tr_BSSMAP_ResetAck(g_osmux_enabled))) { }
Harald Welte10985002017-12-12 09:29:15 +01003300 [] BSSAP.receive { repeat; }
3301 }
3302
Daniel Willmanncbef3982018-07-30 09:22:40 +02003303 /* Wait to avoid a possible race condition if a paging message is
3304 * received right before the reset ACK. */
3305 f_sleep(0.2);
3306
Harald Welte10985002017-12-12 09:29:15 +01003307 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Philipp Maier1e6b4422018-02-23 14:02:13 +01003308 for (var integer i := 0; i < sizeof(IPA_RSL); i := i+1) {
3309 IPA_RSL[i].clear;
3310 }
Harald Welte10985002017-12-12 09:29:15 +01003311
3312 /* Wait for 3 seconds if any more PAGING CMD are received on RSL */
3313 T.start;
3314 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003315 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte10985002017-12-12 09:29:15 +01003316 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003317 mtc.stop;
Harald Welte10985002017-12-12 09:29:15 +01003318 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003319 [] IPA_RSL[1].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003320 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003321 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003322 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003323 [] IPA_RSL[2].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003324 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003325 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003326 }
Harald Welte10985002017-12-12 09:29:15 +01003327 [] T.timeout {
3328 setverdict(pass);
3329 }
3330 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003331
3332 f_shutdown_helper();
Harald Welte10985002017-12-12 09:29:15 +01003333}
Harald Welteae026692017-12-09 01:03:01 +01003334
Philipp Maierf45824a2019-08-14 14:44:10 +02003335/* Verify how we handle unsolicited Paging Response. In case of an unsolicit
3336 * paging response we can not know which MSC is in charge, so we will blindly
3337 * pick the first configured MSC. This behavior is required in order to make
3338 * MT-CSFB calls working because in those cases the BSC can not know that the
3339 * MSC has already paged the subscriver via SGs. So any MT-CSFB call will look
3340 * like an unsolicited Paging Response to the MSC.
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003341 */
3342testcase TC_paging_resp_unsol() runs on test_CT {
3343
3344 f_init(1);
Philipp Maierf45824a2019-08-14 14:44:10 +02003345 timer T := 5.0;
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003346
3347 var BSSAP_N_CONNECT_ind rx_c_ind;
3348 var DchanTuple dt;
3349 var PDU_ML3_MS_NW l3 := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010008880018'H))));
Philipp Maierf45824a2019-08-14 14:44:10 +02003350 var octetstring rr_pag_resp := enc_PDU_ML3_MS_NW(l3);
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003351
3352 /* Send CHAN RQD and wait for allocation; acknowledge it */
3353 dt.rsl_chan_nr := f_chreq_act_ack();
3354
3355 /* Send unsolicited Paging response (no matching Paging CMD stored in BSC) */
3356 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), enc_PDU_ML3_MS_NW(l3)));
3357
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003358
Philipp Maierf45824a2019-08-14 14:44:10 +02003359 /* Expevct a CR with a matching Paging response on the A-Interface */
3360 T.start;
3361 alt {
3362 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(rr_pag_resp))) {
3363 setverdict(pass);
3364 }
3365 [] BSSAP.receive {
3366 setverdict(fail, "Received unexpected message on A-Interface!");
3367 }
3368 [] T.timeout {
3369 setverdict(fail, "Received nothing on A-Interface!");
3370 }
3371 }
3372
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003373 f_shutdown_helper();
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003374}
3375
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003376/* Test RSL link drop causes counter increment */
3377testcase TC_rsl_drop_counter() runs on test_CT {
3378 var integer rsl_fail;
3379
Harald Welte89d42e82017-12-17 16:42:41 +01003380 f_init(1);
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003381
3382 rsl_fail := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail");
3383
3384 bts[0].rsl.vc_IPA.stop;
3385
3386 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail", rsl_fail+1);
3387
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003388 f_shutdown_helper();
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003389}
3390
3391/* TODO: Test OML link drop causes counter increment */
3392
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003393/* The body of TC_rsl_unknown_unit_id() and TC_oml_unknown_unit_id() tests. */
3394function f_ipa_unknown_unit_id(integer mp_bsc_ipa_port) runs on test_CT return boolean {
3395 timer T := 10.0;
3396
3397 bts[0].rsl.id := "IPA-0-RSL";
3398 bts[0].rsl.vc_IPA := IPA_Emulation_CT.create(bts[0].rsl.id & "-IPA");
3399 bts[0].rsl.ccm_pars := c_IPA_default_ccm_pars;
3400 bts[0].rsl.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
Oliver Smith92c2bdb2019-08-20 15:11:24 +02003401 bts[0].rsl.ccm_pars.unit_id := "99/0/0"; /* value which is unknown at BTS */
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003402
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01003403 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003404
3405 f_init_mgcp("VirtMSC");
3406
3407 /* start RSL/OML connection (XXX re-uses RSL port/protocol definitions for OML) */
3408 map(bts[0].rsl.vc_IPA:IPA_PORT, system:IPA);
3409 connect(bts[0].rsl.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[0]);
3410 bts[0].rsl.vc_IPA.start(IPA_Emulation.main_client(mp_bsc_ip, mp_bsc_ipa_port, "", 10000, bts[0].rsl.ccm_pars));
3411
3412 /* wait for IPA OML link to connect and then disconnect */
3413 T.start;
3414 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07003415 [] IPA_RSL[0].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003416 T.stop;
3417 return true;
3418 }
3419 [] IPA_RSL[0].receive { repeat }
3420 [] T.timeout {
Daniel Willmannafce8662018-07-06 23:11:32 +02003421 return false;
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003422 }
3423 }
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003424 return false;
3425}
3426
3427/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3428testcase TC_rsl_unknown_unit_id() runs on test_CT {
3429 if (f_ipa_unknown_unit_id(mp_bsc_rsl_port)) {
3430 setverdict(pass);
3431 } else {
3432 setverdict(fail, "Timeout RSL waiting for connection to close");
3433 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003434 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003435}
3436
3437
3438/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3439testcase TC_oml_unknown_unit_id() runs on test_CT {
3440 if (f_ipa_unknown_unit_id(mp_bsc_oml_port)) {
3441 setverdict(pass);
3442 } else {
3443 setverdict(fail, "Timeout OML waiting for connection to close");
3444 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003445 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003446}
3447
3448
Harald Weltec1a2fff2017-12-17 11:06:19 +01003449/***********************************************************************
Harald Welte6811d102019-04-14 22:23:14 +02003450 * "New world" test cases using RSL_Emulation + RAN_Emulation
Harald Weltec1a2fff2017-12-17 11:06:19 +01003451 ***********************************************************************/
3452
Harald Welte6811d102019-04-14 22:23:14 +02003453import from RAN_Emulation all;
Harald Welte47cd0e32020-08-21 12:39:11 +02003454import from BSSAP_LE_Emulation all;
Harald Weltec1a2fff2017-12-17 11:06:19 +01003455import from RSL_Emulation all;
3456import from MSC_ConnectionHandler all;
3457
3458type function void_fn(charstring id) runs on MSC_ConnHdlr;
3459
Harald Welte336820c2018-05-31 20:34:52 +02003460/* helper function to create and connect a MSC_ConnHdlr component */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003461private function f_connect_handler(inout MSC_ConnHdlr vc_conn, integer bssap_idx := 0) runs on test_CT {
3462 connect(vc_conn:RAN, g_bssap[bssap_idx].vc_RAN:PROC);
Daniel Willmann191e0d92018-01-17 12:44:35 +01003463 connect(vc_conn:MGCP_PROC, vc_MGCP:MGCP_PROC);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003464 connect(vc_conn:RSL, bts[0].rsl.vc_RSL:CLIENT_PT);
Harald Weltef70df652018-01-29 22:00:23 +01003465 connect(vc_conn:RSL_PROC, bts[0].rsl.vc_RSL:RSL_PROC);
Philipp Maier88f4ae82018-03-01 14:00:58 +01003466 if (isvalue(bts[1])) {
Philipp Maier956a92f2018-02-16 10:58:07 +01003467 connect(vc_conn:RSL1, bts[1].rsl.vc_RSL:CLIENT_PT);
3468 connect(vc_conn:RSL1_PROC, bts[1].rsl.vc_RSL:RSL_PROC);
3469 }
Neels Hofmeyr91401012019-07-11 00:42:35 +02003470 if (isvalue(bts[2])) {
3471 connect(vc_conn:RSL2, bts[2].rsl.vc_RSL:CLIENT_PT);
3472 connect(vc_conn:RSL2_PROC, bts[2].rsl.vc_RSL:RSL_PROC);
3473 }
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003474 connect(vc_conn:BSSAP, g_bssap[bssap_idx].vc_RAN:CLIENT);
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02003475 if (mp_enable_lcs_tests) {
3476 connect(vc_conn:BSSAP_LE, g_bssap_le.vc_BSSAP_LE:CLIENT);
3477 connect(vc_conn:BSSAP_LE_PROC, g_bssap_le.vc_BSSAP_LE:PROC);
3478 }
Daniel Willmann191e0d92018-01-17 12:44:35 +01003479 connect(vc_conn:MGCP, vc_MGCP:MGCP_CLIENT);
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02003480 connect(vc_conn:MGCP_MULTI, vc_MGCP:MGCP_CLIENT_MULTI);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003481 connect(vc_conn:STATSD_PROC, vc_STATSD:STATSD_PROC);
Harald Welte336820c2018-05-31 20:34:52 +02003482}
3483
Neels Hofmeyrda436782021-07-20 22:09:06 +02003484function f_start_handler_create(template (omit) TestHdlrParams pars := omit)
Harald Welte336820c2018-05-31 20:34:52 +02003485runs on test_CT return MSC_ConnHdlr {
3486 var charstring id := testcasename();
3487 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003488 var integer bssap_idx := 0;
3489 if (isvalue(pars)) {
3490 bssap_idx := valueof(pars).mscpool.bssap_idx;
3491 }
Harald Welte336820c2018-05-31 20:34:52 +02003492 vc_conn := MSC_ConnHdlr.create(id);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003493 f_connect_handler(vc_conn, bssap_idx);
Neels Hofmeyrda436782021-07-20 22:09:06 +02003494 return vc_conn;
3495}
3496
3497function f_start_handler_run(MSC_ConnHdlr vc_conn, void_fn fn, template (omit) TestHdlrParams pars := omit)
3498runs on test_CT return MSC_ConnHdlr {
3499 var charstring id := testcasename();
Neels Hofmeyr1708d1b2020-10-10 16:56:48 +02003500 /* Emit a marker to appear in the SUT's own logging output */
Neels Hofmeyrda436782021-07-20 22:09:06 +02003501 f_logp(BSCVTY, id & "() start");
Harald Weltea0630032018-03-20 21:09:55 +01003502 vc_conn.start(f_handler_init(fn, id, pars));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003503 return vc_conn;
3504}
3505
Neels Hofmeyrda436782021-07-20 22:09:06 +02003506function f_start_handler(void_fn fn, template (omit) TestHdlrParams pars := omit)
3507runs on test_CT return MSC_ConnHdlr {
3508 return f_start_handler_run(f_start_handler_create(pars), fn, pars);
3509}
3510
Harald Weltea0630032018-03-20 21:09:55 +01003511/* first function inside ConnHdlr component; sets g_pars + starts function */
3512private function f_handler_init(void_fn fn, charstring id, template (omit) TestHdlrParams pars := omit)
3513runs on MSC_ConnHdlr {
3514 if (isvalue(pars)) {
3515 g_pars := valueof(pars);
3516 }
3517 fn.apply(id);
3518}
3519
Oliver Smith26a3db72021-07-09 13:51:29 +02003520private function f_vty_encryption_a5(charstring options) runs on test_CT {
3521 f_vty_transceive(BSCVTY, "configure terminal");
3522 f_vty_transceive(BSCVTY, "network");
3523 f_vty_transceive(BSCVTY, "encryption a5 " & options);
3524 f_vty_transceive(BSCVTY, "exit");
3525 f_vty_transceive(BSCVTY, "exit");
3526}
3527
3528private function f_vty_encryption_a5_reset() runs on test_CT {
3529 /* keep in sync with docker-playground.git ttcn3-bsc-test/osmo-bsc.cfg */
3530 f_vty_encryption_a5("0 1 3");
3531}
3532
Harald Welte3c86ea02018-05-10 22:28:05 +02003533/* Establish signalling channel (non-assignment case) followed by cipher mode */
3534private function f_tc_ciph_mode_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003535 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3536 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte3c86ea02018-05-10 22:28:05 +02003537 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Philipp Maier23000732018-05-18 11:25:37 +02003538 ass_cmd.pdu.bssmap.assignmentRequest.circuitIdentityCode := omit;
3539 ass_cmd.pdu.bssmap.assignmentRequest.aoIPTransportLayer := omit;
3540 exp_compl.pdu.bssmap.assignmentComplete.circuitIdentityCode := omit;
3541 exp_compl.pdu.bssmap.assignmentComplete.aoIPTransportLayer := omit;
Harald Welte3c86ea02018-05-10 22:28:05 +02003542
Philipp Maier23000732018-05-18 11:25:37 +02003543 f_establish_fully(ass_cmd, exp_compl);
Harald Welte3c86ea02018-05-10 22:28:05 +02003544}
3545testcase TC_ciph_mode_a5_0() runs on test_CT {
3546 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003547 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003548 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
3549
3550 f_init(1, true);
3551 f_sleep(1.0);
3552 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3553 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003554 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003555}
3556testcase TC_ciph_mode_a5_1() runs on test_CT {
3557 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003558 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003559 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
3560
3561 f_init(1, true);
3562 f_sleep(1.0);
3563 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3564 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003565 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003566}
Oliver Smith50b98122021-07-09 15:00:28 +02003567/* OS#4975: verify that A5/2 is preferred over A5/0 */
3568testcase TC_ciph_mode_a5_2_0() runs on test_CT {
3569 var MSC_ConnHdlr vc_conn;
3570 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3571
3572 pars.encr := valueof(t_EncrParams('05'O, f_rnd_octstring(8))); /* A5/0 and A5/2 (0x01|0x04)*/
3573 pars.encr_exp_enc_alg := '04'O; /* A5/2 */
3574
3575 f_init(1, true);
3576 f_vty_encryption_a5("0 1 2 3");
3577 f_sleep(1.0);
3578 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3579 vc_conn.done;
3580 f_vty_encryption_a5_reset();
3581 f_shutdown_helper();
3582}
Oliver Smith1dff88d2021-07-09 08:45:51 +02003583/* OS#4975: verify that A5/1 is preferred over A5/2 */
3584testcase TC_ciph_mode_a5_2_1() runs on test_CT {
3585 var MSC_ConnHdlr vc_conn;
3586 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3587
3588 pars.encr := valueof(t_EncrParams('06'O, f_rnd_octstring(8))); /* A5/1 and A5/2 (0x02|0x04)*/
3589 pars.encr_exp_enc_alg := '02'O; /* A5/1 */
3590
3591 f_init(1, true);
3592 f_vty_encryption_a5("1 2");
3593 f_sleep(1.0);
3594 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3595 vc_conn.done;
3596 f_vty_encryption_a5_reset();
3597 f_shutdown_helper();
3598}
Harald Welte3c86ea02018-05-10 22:28:05 +02003599testcase TC_ciph_mode_a5_3() runs on test_CT {
3600 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003601 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003602 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
3603
3604 f_init(1, true);
3605 f_sleep(1.0);
3606 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3607 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003608 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003609}
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003610/* Establish a Signalling channel with A5/4 encryption. */
3611testcase TC_ciph_mode_a5_4() runs on test_CT {
3612 var MSC_ConnHdlr vc_conn;
3613 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3614 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Harald Welte3c86ea02018-05-10 22:28:05 +02003615
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003616 f_init(1, true);
Oliver Smith26a3db72021-07-09 13:51:29 +02003617 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003618 f_sleep(1.0);
3619 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3620 vc_conn.done;
Oliver Smith26a3db72021-07-09 13:51:29 +02003621 f_vty_encryption_a5_reset();
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003622 f_shutdown_helper();
3623}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003624/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
3625private function f_tc_assignment_aoip_tla_v6(charstring id) runs on MSC_ConnHdlr {
3626 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3627 var PDU_BSSAP ass_cmd := f_gen_ass_req(aoip_tla := "::3");
3628 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3629 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3630
3631 f_establish_fully(ass_cmd, exp_compl);
3632}
3633testcase TC_assignment_aoip_tla_v6() runs on test_CT {
3634 var MSC_ConnHdlr vc_conn;
3635 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3636
3637 f_init(1, true);
3638 f_sleep(1.0);
3639 vc_conn := f_start_handler(refers(f_tc_assignment_aoip_tla_v6), pars);
3640 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003641 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003642}
3643
Harald Welte3c86ea02018-05-10 22:28:05 +02003644
3645/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
Harald Welte651fcdc2018-05-10 20:23:16 +02003646private function f_tc_assignment_fr_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003647 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3648 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003649
Harald Welte552620d2017-12-16 23:21:36 +01003650 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3651 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte73cd2712017-12-17 00:44:52 +01003652
Harald Weltea0630032018-03-20 21:09:55 +01003653 f_establish_fully(ass_cmd, exp_compl);
Harald Welte552620d2017-12-16 23:21:36 +01003654}
Harald Welte552620d2017-12-16 23:21:36 +01003655testcase TC_assignment_fr_a5_0() runs on test_CT {
3656 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003657 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003658 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
Harald Welte552620d2017-12-16 23:21:36 +01003659
Harald Welte89d42e82017-12-17 16:42:41 +01003660 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003661 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003662 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003663 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003664 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003665}
Harald Welte552620d2017-12-16 23:21:36 +01003666testcase TC_assignment_fr_a5_1() runs on test_CT {
Harald Weltec1a2fff2017-12-17 11:06:19 +01003667 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003668 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003669 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003670
Harald Welte89d42e82017-12-17 16:42:41 +01003671 f_init(1, true);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003672 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003673 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3674 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003675 f_shutdown_helper();
Harald Welte651fcdc2018-05-10 20:23:16 +02003676}
3677testcase TC_assignment_fr_a5_3() runs on test_CT {
3678 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003679 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003680 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003681
Harald Welte651fcdc2018-05-10 20:23:16 +02003682 f_init(1, true);
3683 f_sleep(1.0);
3684 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003685 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003686 f_shutdown_helper();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003687}
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003688/* Establish a Signalling channel and re-assign to TCH/F with A5/4 encryption. */
3689testcase TC_assignment_fr_a5_4() runs on test_CT {
3690 var MSC_ConnHdlr vc_conn;
3691 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3692 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
3693
3694 f_init(1, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02003695 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003696 f_sleep(1.0);
3697 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3698 vc_conn.done;
Oliver Smith7eabd312021-07-12 14:18:56 +02003699 f_vty_encryption_a5_reset();
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003700 f_shutdown_helper();
3701}
Harald Weltec1a2fff2017-12-17 11:06:19 +01003702
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +02003703/* Allow only A5/4, but omit the Kc128 IE from MSC's msg. Expect Cipher Mode Reject. */
3704testcase TC_assignment_fr_a5_4_fail() runs on test_CT {
3705 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3706 var MSC_ConnHdlr vc_conn;
3707
3708 f_init(1, true);
3709 f_sleep(1.0);
3710
3711 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8))); // A5/4 support, but Kc128 missing!
3712 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
3713 vc_conn.done;
3714 f_shutdown_helper();
3715}
3716
Harald Welte552620d2017-12-16 23:21:36 +01003717/* Expect ASSIGNMENT FAIL if mandatory IE is missing */
3718private function f_tc_assignment_fr_a5_1_codec_missing(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003719 g_pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003720 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02003721 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003722
3723 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02003724 /* Omit: ass_cmd.pdu.bssmap.assignmentRequest.codecList */
3725
Harald Weltea0630032018-03-20 21:09:55 +01003726 f_establish_fully(ass_cmd, exp_fail);
Harald Welte552620d2017-12-16 23:21:36 +01003727}
Harald Welte552620d2017-12-16 23:21:36 +01003728testcase TC_assignment_fr_a5_1_codec_missing() runs on test_CT {
3729 var MSC_ConnHdlr vc_conn;
3730
Harald Welte89d42e82017-12-17 16:42:41 +01003731 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003732 f_sleep(1.0);
3733
Harald Welte8863fa12018-05-10 20:15:27 +02003734 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5_1_codec_missing));
Harald Welte552620d2017-12-16 23:21:36 +01003735 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003736 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003737}
3738
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003739private function f_TC_assignment_a5_not_sup(charstring id) runs on MSC_ConnHdlr {
3740 var template PDU_BSSAP exp_ass_cpl := f_gen_exp_compl();
3741 var PDU_BSSAP exp_ass_req := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003742
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003743 exp_ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3744 exp_ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3745
3746 /* this is like the beginning of f_establish_fully(), but only up to ciphering reject */
3747
3748 var BSSMAP_FIELD_CodecType codecType;
3749 timer T := 10.0;
3750
3751 codecType := exp_ass_req.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType;
3752 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
3753
3754 f_create_chan_and_exp();
3755 /* we should now have a COMPL_L3 at the MSC */
3756
3757 var template PDU_BSSAP exp_l3_compl;
3758 exp_l3_compl := tr_BSSMAP_ComplL3()
3759 if (g_pars.aoip == false) {
3760 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
3761 } else {
3762 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
3763 }
3764 T.start;
3765 alt {
3766 [] BSSAP.receive(exp_l3_compl);
3767 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
3768 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
3769 }
3770 [] T.timeout {
3771 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
3772 }
3773 }
3774
3775 /* Start ciphering, expect Cipher Mode Reject */
Neels Hofmeyr6c388f22021-06-11 02:36:56 +02003776 f_cipher_mode(g_pars.encr, exp_fail := true);
Harald Welte552620d2017-12-16 23:21:36 +01003777}
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003778testcase TC_assignment_fr_a5_not_sup() runs on test_CT {
3779 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003780 var MSC_ConnHdlr vc_conn;
3781
Harald Welte89d42e82017-12-17 16:42:41 +01003782 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003783 f_sleep(1.0);
3784
Neels Hofmeyr0588cad2021-06-11 01:38:18 +02003785 pars.encr := valueof(t_EncrParams('20'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003786 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003787 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003788 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003789}
3790
3791
Harald Welte4532e0a2017-12-23 02:05:44 +01003792private function f_tc_assignment_sign(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003793 g_pars := f_gen_test_hdlr_pars();
Harald Welte4532e0a2017-12-23 02:05:44 +01003794 var template PDU_BSSAP exp_compl := tr_BSSMAP_AssignmentComplete(omit, omit);
Philipp Maier48604732018-10-09 15:00:37 +02003795 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte4532e0a2017-12-23 02:05:44 +01003796 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003797
3798 f_statsd_reset();
Harald Weltea0630032018-03-20 21:09:55 +01003799 f_establish_fully(ass_cmd, exp_compl);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003800
3801 var StatsDExpects expect := {
Daniel Willmannc5398f72020-09-21 10:41:35 +02003802 { name := "TTCN3.bts.0.chreq.total", mtype := "c", min := 1, max := 1},
3803 { name := "TTCN3.bts.0.chreq.successful", mtype := "c", min := 1, max := 1},
Daniel Willmannebdecc02020-08-12 15:30:17 +02003804 { name := "TTCN3.bsc.0.assignment.attempted", mtype := "c", min := 1, max := 1},
3805 { name := "TTCN3.bsc.0.assignment.completed", mtype := "c", min := 1, max := 1}
3806 };
3807 f_statsd_expect(expect);
Harald Welte4532e0a2017-12-23 02:05:44 +01003808}
3809
3810testcase TC_assignment_sign() runs on test_CT {
3811 var MSC_ConnHdlr vc_conn;
3812
3813 f_init(1, true);
3814 f_sleep(1.0);
3815
Harald Welte8863fa12018-05-10 20:15:27 +02003816 vc_conn := f_start_handler(refers(f_tc_assignment_sign));
Harald Welte4532e0a2017-12-23 02:05:44 +01003817 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003818 f_shutdown_helper();
Harald Welte4532e0a2017-12-23 02:05:44 +01003819}
3820
Harald Welte60aa5762018-03-21 19:33:13 +01003821/***********************************************************************
3822 * Codec (list) testing
3823 ***********************************************************************/
3824
3825/* check if the given rsl_mode is compatible with the a_elem */
3826private function f_match_codec(BSSMAP_FIELD_CodecElement a_elem, RSL_IE_ChannelMode rsl_mode)
3827return boolean {
3828 select (a_elem.codecType) {
3829 case (GSM_FR) {
3830 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM1))) {
3831 return true;
3832 }
3833 }
3834 case (GSM_HR) {
3835 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1))) {
3836 return true;
3837 }
3838 }
3839 case (GSM_EFR) {
3840 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM2))) {
3841 return true;
3842 }
3843 }
3844 case (FR_AMR) {
3845 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM3))) {
3846 return true;
3847 }
3848 }
3849 case (HR_AMR) {
3850 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM3))) {
3851 return true;
3852 }
3853 }
3854 case else { }
3855 }
3856 return false;
3857}
3858
3859/* check if the given rsl_mode is compatible with the a_list */
3860private function f_match_codecs(BSSMAP_IE_SpeechCodecList a_list, RSL_IE_ChannelMode rsl_mode)
3861return boolean {
3862 for (var integer i := 0; i < sizeof(a_list); i := i+1) {
3863 if (f_match_codec(a_list.codecElements[i], rsl_mode)) {
3864 return true;
3865 }
3866 }
3867 return false;
3868}
3869
3870/* determine BSSMAP_IE_ChannelType from *first* element of BSSMAP_FIELD_CodecElement */
Philipp Maier61f6b572018-07-06 14:03:38 +02003871function f_BSSMAP_chtype_from_codec(BSSMAP_FIELD_CodecElement a_elem)
Harald Welte60aa5762018-03-21 19:33:13 +01003872return BSSMAP_IE_ChannelType {
3873 /* FIXME: actually look at all elements of BSSMAP_IE_SpeechCodecList */
3874 var BSSMAP_IE_ChannelType ret := valueof(ts_BSSMAP_IE_ChannelType);
3875 select (a_elem.codecType) {
3876 case (GSM_FR) {
3877 ret.channelRateAndType := ChRate_TCHF;
3878 ret.speechId_DataIndicator := Spdi_TCHF_FR;
3879 }
3880 case (GSM_HR) {
3881 ret.channelRateAndType := ChRate_TCHH;
3882 ret.speechId_DataIndicator := Spdi_TCHH_HR;
3883 }
3884 case (GSM_EFR) {
3885 ret.channelRateAndType := ChRate_TCHF;
3886 ret.speechId_DataIndicator := Spdi_TCHF_EFR;
3887 }
3888 case (FR_AMR) {
3889 ret.channelRateAndType := ChRate_TCHF;
3890 ret.speechId_DataIndicator := Spdi_TCHF_AMR;
3891 }
3892 case (HR_AMR) {
3893 ret.channelRateAndType := ChRate_TCHH;
3894 ret.speechId_DataIndicator := Spdi_TCHH_AMR;
3895 }
3896 case else {
3897 setverdict(fail, "Unsupported codec ", a_elem);
Daniel Willmannafce8662018-07-06 23:11:32 +02003898 mtc.stop;
Harald Welte60aa5762018-03-21 19:33:13 +01003899 }
3900 }
3901 return ret;
3902}
3903
Harald Weltea63b9102018-03-22 20:36:16 +01003904private function f_rsl_chmod_tmpl_from_codec(BSSMAP_FIELD_CodecElement a_elem)
3905return template RSL_IE_Body {
3906 var template RSL_IE_Body mode_ie := {
3907 chan_mode := {
3908 len := ?,
3909 reserved := ?,
3910 dtx_d := ?,
3911 dtx_u := ?,
3912 spd_ind := RSL_SPDI_SPEECH,
3913 ch_rate_type := -,
3914 coding_alg_rate := -
3915 }
3916 }
3917
3918 select (a_elem.codecType) {
3919 case (GSM_FR) {
3920 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3921 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3922 }
3923 case (GSM_HR) {
3924 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3925 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3926 }
3927 case (GSM_EFR) {
3928 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3929 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM2;
3930 }
3931 case (FR_AMR) {
3932 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3933 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3934 }
3935 case (HR_AMR) {
3936 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3937 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3938 }
3939 }
3940 return mode_ie;
3941}
3942
Harald Welte60aa5762018-03-21 19:33:13 +01003943type record CodecListTest {
3944 BSSMAP_IE_SpeechCodecList codec_list,
3945 charstring id
3946}
3947type record of CodecListTest CodecListTests
3948
3949private function f_TC_assignment_codec(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02003950 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
3951 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
Harald Welte60aa5762018-03-21 19:33:13 +01003952
3953 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003954 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte79f3f542018-05-25 20:02:37 +02003955 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
3956 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
3957 g_pars.ass_codec_list.codecElements[0];
Philipp Maierd0e64b02019-03-13 14:15:23 +01003958 if (isvalue(g_pars.expect_mr_s0_s7)) {
3959 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
3960 g_pars.expect_mr_s0_s7;
3961 }
Harald Welte79f3f542018-05-25 20:02:37 +02003962 }
Harald Welte60aa5762018-03-21 19:33:13 +01003963 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
3964 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
Harald Welte60aa5762018-03-21 19:33:13 +01003965 log("expecting ASS COMPL like this: ", exp_compl);
3966
3967 f_establish_fully(ass_cmd, exp_compl);
Harald Weltea63b9102018-03-22 20:36:16 +01003968
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003969 if (not g_pars.expect_channel_mode_modify) {
3970 /* Verify that the RSL-side activation actually matches our expectations */
3971 var RSL_Message rsl := f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr);
Harald Weltea63b9102018-03-22 20:36:16 +01003972
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003973 var RSL_IE_Body mode_ie;
3974 if (f_rsl_find_ie(rsl, RSL_IE_CHAN_MODE, mode_ie) == false) {
3975 setverdict(fail, "Couldn't find CHAN_MODE IE");
Daniel Willmannafce8662018-07-06 23:11:32 +02003976 mtc.stop;
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003977 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003978 var template RSL_IE_Body t_mode_ie := f_rsl_chmod_tmpl_from_codec(g_pars.ass_codec_list.codecElements[0]);
3979 if (not match(mode_ie, t_mode_ie)) {
3980 log("mode_ie ", mode_ie, " != t_mode_ie ", t_mode_ie);
3981 setverdict(fail, "RSL Channel Mode IE doesn't match expectation");
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003982 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003983
3984 var RSL_IE_Body mr_conf;
3985 if (g_pars.expect_mr_conf_ie != omit) {
3986 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == false) {
3987 setverdict(fail, "Missing MR CONFIG IE in RSL Chan Activ");
3988 mtc.stop;
3989 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003990 log("found RSL MR CONFIG IE: ", mr_conf);
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003991
3992 if (not match(mr_conf, g_pars.expect_mr_conf_ie)) {
3993 setverdict(fail, "RSL MR CONFIG IE does not match expectation. Expected: ",
3994 g_pars.expect_mr_conf_ie);
3995 }
3996 } else {
3997 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == true) {
3998 log("found RSL MR CONFIG IE: ", mr_conf);
3999 setverdict(fail, "Found MR CONFIG IE in RSL Chan Activ, expecting omit");
4000 mtc.stop;
4001 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004002 }
4003 }
Harald Welte60aa5762018-03-21 19:33:13 +01004004}
4005
Philipp Maierd0e64b02019-03-13 14:15:23 +01004006private function f_TC_assignment_codec_fail(charstring id) runs on MSC_ConnHdlr {
4007
4008 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4009 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4010
4011 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02004012 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maierd0e64b02019-03-13 14:15:23 +01004013 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
4014 }
4015 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
4016 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
4017 log("expecting ASS FAIL like this: ", exp_fail);
4018
4019 f_establish_fully(ass_cmd, exp_fail);
4020}
4021
Harald Welte60aa5762018-03-21 19:33:13 +01004022testcase TC_assignment_codec_fr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004023 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004024 var MSC_ConnHdlr vc_conn;
4025
4026 f_init(1, true);
4027 f_sleep(1.0);
4028
4029 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004030 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004031 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004032 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004033}
4034
4035testcase TC_assignment_codec_hr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004036 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004037 var MSC_ConnHdlr vc_conn;
4038
4039 f_init(1, true);
4040 f_sleep(1.0);
4041
4042 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004043 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004044 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004045 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004046}
4047
4048testcase TC_assignment_codec_efr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004049 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004050 var MSC_ConnHdlr vc_conn;
4051
4052 f_init(1, true);
4053 f_sleep(1.0);
4054
4055 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecEFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02004056 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004057 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004058 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004059}
4060
Philipp Maierd0e64b02019-03-13 14:15:23 +01004061/* Allow 5,90k only (current default config) */
4062private function f_allow_amr_rate_5_90k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004063 f_vty_cfg_msc(BSCVTY, 0, {
4064 "amr-config 12_2k forbidden",
4065 "amr-config 10_2k forbidden",
4066 "amr-config 7_95k forbidden",
4067 "amr-config 7_40k forbidden",
4068 "amr-config 6_70k forbidden",
4069 "amr-config 5_90k allowed",
4070 "amr-config 5_15k forbidden",
4071 "amr-config 4_75k forbidden"
4072 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004073}
4074
4075/* Allow 4,75k, 5,90k, 4,70k and 12,2k, which are the most common rates
4076 * ("Config-NB-Code = 1") */
4077private function f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00004078 f_vty_cfg_msc(BSCVTY, 0, {
4079 "amr-config 12_2k allowed",
4080 "amr-config 10_2k forbidden",
4081 "amr-config 7_95k forbidden",
4082 "amr-config 7_40k allowed",
4083 "amr-config 6_70k forbidden",
4084 "amr-config 5_90k allowed",
4085 "amr-config 5_15k forbidden",
4086 "amr-config 4_75k allowed"
4087 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01004088}
4089
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004090private function f_vty_amr_start_mode_set(boolean fr, charstring startmode) runs on test_CT {
4091 var charstring tch;
4092 if (fr) {
4093 tch := "tch-f";
4094 } else {
4095 tch := "tch-h";
4096 }
4097 f_vty_cfg_bts(BSCVTY, 0, { "amr " & tch & " start-mode " & startmode });
4098}
4099
4100/* Set the AMR start-mode for this TCH back to the default configuration. */
4101private function f_vty_amr_start_mode_restore(boolean fr) runs on test_CT {
4102 f_vty_amr_start_mode_set(fr, "auto");
4103}
4104
Harald Welte60aa5762018-03-21 19:33:13 +01004105testcase TC_assignment_codec_amr_f() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004106 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004107 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004108
4109 /* Note: This setups the codec configuration. The parameter payload in
4110 * mr_conf must be consistant with the parameter codecElements in pars
4111 * and also must match the amr-config in osmo-bsc.cfg! */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004112 var RSL_IE_Body mr_conf := {
4113 other := {
4114 len := 2,
4115 payload := '2804'O
4116 }
4117 };
Harald Welte60aa5762018-03-21 19:33:13 +01004118
Philipp Maier7695a0d2018-09-27 17:52:14 +02004119 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004120 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004121 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4122 pars.expect_mr_conf_ie := mr_conf;
4123
Harald Welte60aa5762018-03-21 19:33:13 +01004124 f_init(1, true);
4125 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004126 f_vty_amr_start_mode_set(true, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004127
Harald Welte8863fa12018-05-10 20:15:27 +02004128 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004129 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004130
4131 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004132 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004133}
4134
4135testcase TC_assignment_codec_amr_h() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02004136 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01004137 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02004138
4139 /* See note above */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02004140 var RSL_IE_Body mr_conf := {
4141 other := {
4142 len := 2,
4143 payload := '2804'O
4144 }
4145 };
Harald Welte60aa5762018-03-21 19:33:13 +01004146
Philipp Maier7695a0d2018-09-27 17:52:14 +02004147 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
Philipp Maier806f8f12019-03-12 12:13:41 +01004148 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02004149 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4150 pars.expect_mr_conf_ie := mr_conf;
4151
Harald Welte60aa5762018-03-21 19:33:13 +01004152 f_init(1, true);
4153 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004154 f_vty_amr_start_mode_set(false, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01004155
Harald Welte8863fa12018-05-10 20:15:27 +02004156 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01004157 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004158
4159 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004160 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01004161}
4162
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004163/* Establish signalling on a TCH/F lchan, and then switch to speech mode without a new Assignment. */
4164testcase TC_assignment_codec_fr_by_mode_modify() runs on test_CT {
4165 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4166 var MSC_ConnHdlr vc_conn;
4167
4168 f_init(1, true);
4169 f_sleep(1.0);
4170
4171 /* By disabling all SDCCH, the MS should be given a TCH/F for signalling. Then activating an FR codec should
4172 * merely do a Channel Mode Modify, and not assign to a new lchan. f_establish_fully() already accounts for
4173 * expecting a Channel Mode Modify if the channel type is compatible. */
4174 f_disable_all_sdcch();
4175 f_disable_all_tch_h();
4176
4177 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4178 pars.expect_channel_mode_modify := true;
4179 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4180 vc_conn.done;
4181
4182 f_enable_all_sdcch();
4183 f_enable_all_tch();
4184 f_shutdown_helper();
4185}
4186
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004187/* 'amr start-mode auto' should not keep the (unused) 'smod' bits from previous configuration */
4188testcase TC_assignment_codec_amr_startmode_cruft() runs on test_CT {
4189 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4190 var MSC_ConnHdlr vc_conn;
4191
4192 var RSL_IE_Body mr_conf := {
4193 other := {
4194 len := 2,
4195 payload := '2004'O /* <- expect ICMI=0, smod=00 */
4196 }
4197 };
4198
4199 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4200 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4201 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4202 pars.expect_mr_conf_ie := mr_conf;
4203
4204 f_init(1, true);
4205 f_sleep(1.0);
4206
4207 /* First set nonzero start mode bits */
4208 f_vty_amr_start_mode_set(true, "4");
4209 /* Now set to auto, and expect the startmode bits to be zero in the message, i.e. ensure that osmo-bsc does not
4210 * let the startmode bits stick around and has deterministic MultiRate config for 'start-mode auto'; that is
4211 * ensured by above '2004'O, where 'x0xx'O indicates ICMI = 0, spare = 0, smod = 00. */
4212 f_vty_amr_start_mode_set(true, "auto");
4213
4214 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4215 vc_conn.done;
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004216
4217 /* Clear the startmode bits to not affect subsequent tests, in case the bits should indeed stick around. */
4218 f_vty_amr_start_mode_set(true, "1");
4219 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004220 f_shutdown_helper();
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004221}
4222
Neels Hofmeyr21863562020-11-26 00:34:33 +00004223function f_TC_assignment_codec_amr(boolean fr, octetstring mrconf, bitstring s8_s0, bitstring exp_s8_s0,
4224 charstring start_mode := "1")
Philipp Maierd0e64b02019-03-13 14:15:23 +01004225runs on test_CT {
4226
4227 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4228 var MSC_ConnHdlr vc_conn;
4229
4230 /* See note above */
4231 var RSL_IE_Body mr_conf := {
4232 other := {
4233 len := lengthof(mrconf),
4234 payload := mrconf
4235 }
4236 };
4237
4238 if (fr) {
4239 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4240 } else {
4241 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4242 }
4243 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4244 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4245 pars.expect_mr_conf_ie := mr_conf;
4246 pars.expect_mr_s0_s7 := exp_s8_s0;
4247
4248 f_init(1, true);
4249 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004250 f_vty_amr_start_mode_set(fr, start_mode);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004251 f_sleep(1.0);
4252
4253 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4254 vc_conn.done;
4255 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004256 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004257}
4258
4259function f_TC_assignment_codec_amr_fail(boolean fr, bitstring s8_s0)
4260runs on test_CT {
4261
4262 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4263 var MSC_ConnHdlr vc_conn;
4264
4265 if (fr) {
4266 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4267 } else {
4268 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4269 }
4270 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4271 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4272
4273 f_init(1, true);
4274 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004275 f_vty_amr_start_mode_set(fr, "1");
Philipp Maierd0e64b02019-03-13 14:15:23 +01004276 f_sleep(1.0);
4277
4278 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fail), pars);
4279 vc_conn.done;
4280 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004281 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004282}
4283
4284
4285/* Set S1, we expect an AMR multirate configuration IE with all four rates
4286 * set. */
4287testcase TC_assignment_codec_amr_f_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004288 f_TC_assignment_codec_amr(true, '289520882208'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004289 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004290}
4291
4292/* Set S1, we expect an AMR multirate configuration IE with the lower three
4293 * rates set. */
4294testcase TC_assignment_codec_amr_h_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004295 f_TC_assignment_codec_amr(false, '2815208820'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004296 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004297}
4298
4299/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4300 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4301testcase TC_assignment_codec_amr_f_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004302 f_TC_assignment_codec_amr(true, '289520882208'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004303 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004304}
4305
4306/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4307 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4308testcase TC_assignment_codec_amr_h_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004309 f_TC_assignment_codec_amr(false, '2815208820'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004310 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004311}
4312
4313/* The following block of tests selects more and more rates until all four
4314 * possible rates are in the active set (full rate) */
4315testcase TC_assignment_codec_amr_f_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004316 f_TC_assignment_codec_amr(true, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004317 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004318}
4319
4320testcase TC_assignment_codec_amr_f_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004321 f_TC_assignment_codec_amr(true, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004322 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004323}
4324
4325testcase TC_assignment_codec_amr_f_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004326 f_TC_assignment_codec_amr(true, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004327 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004328}
4329
4330testcase TC_assignment_codec_amr_f_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004331 f_TC_assignment_codec_amr(true, '289520882208'O, '10010101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004332 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004333}
4334
4335/* The following block of tests selects more and more rates until all three
4336 * possible rates are in the active set (half rate) */
4337testcase TC_assignment_codec_amr_h_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004338 f_TC_assignment_codec_amr(false, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004339 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004340}
4341
4342testcase TC_assignment_codec_amr_h_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004343 f_TC_assignment_codec_amr(false, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004344 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004345}
4346
4347testcase TC_assignment_codec_amr_h_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004348 f_TC_assignment_codec_amr(false, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004349 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004350}
4351
4352/* The following block tests what happens when the MSC does offer rate
4353 * configurations that are not supported by the BSC. Normally such situations
4354 * should not happen because the MSC gets informed by the BSC in advance via
4355 * the L3 COMPLETE message which rates are applicable. The MSC should not try
4356 * to offer rates that are not applicable anyway. */
4357
4358testcase TC_assignment_codec_amr_h_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004359 /* Try to include 12,2k in into the active set even though the channel
4360 * is half rate only. The BSC is expected to remove the 12,0k */
4361 f_TC_assignment_codec_amr(false, '2815208820'O, '10010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004362 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004363}
4364
4365testcase TC_assignment_codec_amr_f_S01234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004366 /* See what happens when all rates are selected at once. Since then
4367 * Also S1 is selected, this setting will be prefered and we should
4368 * get 12.2k, 7,40k, 5,90k, and 4,75k in the active set. */
4369 f_TC_assignment_codec_amr(true, '289520882208'O, '11111111'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004370 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004371}
4372
4373testcase TC_assignment_codec_amr_f_S0234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004374 /* Same as above, but with S1 missing, the MSC is then expected to
4375 * select the currently supported rates, which are also 12.2k, 7,40k,
4376 * 5,90k, and 4,75k, into the active set. */
4377 f_TC_assignment_codec_amr(true, '289520882208'O, '11111101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004378 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004379}
4380
4381testcase TC_assignment_codec_amr_f_zero() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004382 /* Try to select no rates at all */
4383 f_TC_assignment_codec_amr_fail(true, '00000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004384 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004385}
4386
4387testcase TC_assignment_codec_amr_f_unsupp() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004388 /* Try to select only unsupported rates */
4389 f_TC_assignment_codec_amr_fail(true, '01101000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004390 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004391}
4392
4393testcase TC_assignment_codec_amr_h_S7() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004394 /* Try to select 12,2k for half rate */
4395 f_TC_assignment_codec_amr_fail(false, '10000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004396 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004397}
4398
Neels Hofmeyr21863562020-11-26 00:34:33 +00004399testcase TC_assignment_codec_amr_f_start_mode_auto() runs on test_CT {
4400 f_TC_assignment_codec_amr(true, '209520882208'O, '11111111'B, '00000010'B,
4401 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004402 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004403}
4404
4405testcase TC_assignment_codec_amr_h_start_mode_auto() runs on test_CT {
4406 f_TC_assignment_codec_amr(false, '2015208820'O, '10010101'B, '00010101'B,
4407 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004408 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004409}
4410
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004411testcase TC_assignment_codec_amr_f_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004412 /* "amr tch-f modes 0 2 4 7" => total 4 modes and start mode 4 => '11'B on the wire */
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004413 f_TC_assignment_codec_amr(true, '2b9520882208'O, '11111111'B, '00000010'B,
4414 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004415 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004416}
4417
4418testcase TC_assignment_codec_amr_h_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004419 /* "amr tch-h modes 0 2 4" => total 3 modes and start mode 4 => '10'B on the wire */
4420 f_TC_assignment_codec_amr(false, '2a15208820'O, '10010101'B, '00010101'B,
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004421 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004422 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004423}
4424
Philipp Maierac09bfc2019-01-08 13:41:39 +01004425private function f_disable_all_tch_f() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004426 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 borken");
4427 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 borken");
4428 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 borken");
4429 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004430}
4431
4432private function f_disable_all_tch_h() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004433 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 borken");
4434 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004435}
4436
4437private function f_enable_all_tch() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004438 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 unused");
4439 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 unused");
4440 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 unused");
4441 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 unused");
4442 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 unused");
4443 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 unused");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004444}
4445
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004446private function f_disable_all_sdcch() runs on test_CT {
4447 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 borken");
4448 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 borken");
4449 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 borken");
4450 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 borken");
4451}
4452
4453private function f_enable_all_sdcch() runs on test_CT {
4454 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 unused");
4455 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 unused");
4456 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 unused");
4457 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 unused");
4458}
4459
Philipp Maierac09bfc2019-01-08 13:41:39 +01004460/* Allow HR only */
4461private function f_TC_assignment_codec_xr_exhausted_req_hr(charstring id) runs on MSC_ConnHdlr {
4462 g_pars := f_gen_test_hdlr_pars();
4463 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4464 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4465 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4466 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4467 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4468 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4469 f_establish_fully(ass_cmd, exp_compl);
4470}
4471
4472/* Allow FR only */
4473private function f_TC_assignment_codec_xr_exhausted_req_fr(charstring id) runs on MSC_ConnHdlr {
4474 g_pars := f_gen_test_hdlr_pars();
4475 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4476 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4477 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4478 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4479 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4480 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4481 f_establish_fully(ass_cmd, exp_compl);
4482}
4483
4484/* Allow HR only (expect assignment failure) */
4485private function f_TC_assignment_codec_xr_exhausted_req_hr_fail(charstring id) runs on MSC_ConnHdlr {
4486 g_pars := f_gen_test_hdlr_pars();
4487 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4488 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4489 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4490 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4491 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4492 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4493 f_establish_fully(ass_cmd, exp_fail);
4494}
4495
4496/* Allow FR only (expect assignment failure) */
4497private function f_TC_assignment_codec_xr_exhausted_req_fr_fail(charstring id) runs on MSC_ConnHdlr {
4498 g_pars := f_gen_test_hdlr_pars();
4499 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4500 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4501 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4502 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4503 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4504 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4505 f_establish_fully(ass_cmd, exp_fail);
4506}
4507
4508/* Allow FR and HR, but prefer FR */
4509private function f_TC_assignment_codec_fr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4510 g_pars := f_gen_test_hdlr_pars();
4511 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4512 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4513 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4514 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4515 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4516 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4517 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4518 f_establish_fully(ass_cmd, exp_compl);
4519}
4520
4521/* Allow FR and HR, but prefer HR */
4522private function f_TC_assignment_codec_fr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4523 g_pars := f_gen_test_hdlr_pars();
4524 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4525 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4526 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4527 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4528 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4529 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4530 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4531 f_establish_fully(ass_cmd, exp_compl);
4532}
4533
4534/* Allow FR and HR, but prefer FR */
4535private function f_TC_assignment_codec_hr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4536 g_pars := f_gen_test_hdlr_pars();
4537 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4538 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4539 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4540 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4541 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4542 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4543 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4544 f_establish_fully(ass_cmd, exp_compl);
4545}
4546
4547/* Allow FR and HR, but prefer HR */
4548private function f_TC_assignment_codec_hr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4549 g_pars := f_gen_test_hdlr_pars();
4550 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4551 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4552 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4553 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4554 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4555 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4556 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4557 f_establish_fully(ass_cmd, exp_compl);
4558}
4559
4560/* Request a HR channel while all FR channels are exhausted, this is expected
4561 * to work without conflicts */
4562testcase TC_assignment_codec_fr_exhausted_req_hr() runs on test_CT {
4563 var MSC_ConnHdlr vc_conn;
4564 f_init(1, true);
4565 f_sleep(1.0);
4566 f_enable_all_tch();
4567 f_disable_all_tch_f();
4568 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr));
4569 vc_conn.done;
4570 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004571 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004572}
4573
4574/* Request a FR channel while all FR channels are exhausted, this is expected
4575 * to fail. */
4576testcase TC_assignment_codec_fr_exhausted_req_fr() runs on test_CT {
4577 var MSC_ConnHdlr vc_conn;
4578 f_init(1, true);
4579 f_sleep(1.0);
4580 f_enable_all_tch();
4581 f_disable_all_tch_f();
4582 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr_fail));
4583 vc_conn.done;
4584 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004585 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004586}
4587
4588/* Request a FR (prefered) or alternatively a HR channel while all FR channels
4589 * are exhausted, this is expected to be resolved by selecting a HR channel. */
4590testcase TC_assignment_codec_fr_exhausted_req_fr_hr() runs on test_CT {
4591 var MSC_ConnHdlr vc_conn;
4592 f_init(1, true);
4593 f_sleep(1.0);
4594 f_enable_all_tch();
4595 f_disable_all_tch_f();
4596 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_fr_hr));
4597 vc_conn.done;
4598 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004599 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004600}
4601
4602/* Request a HR (prefered) or alternatively a FR channel while all FR channels
4603 * are exhausted, this is expected to work without conflicts. */
4604testcase TC_assignment_codec_fr_exhausted_req_hr_fr() runs on test_CT {
4605 var MSC_ConnHdlr vc_conn;
4606 f_init(1, true);
4607 f_sleep(1.0);
4608 f_enable_all_tch();
4609 f_disable_all_tch_f();
4610 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_hr_fr));
4611 vc_conn.done;
4612 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004613 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004614}
4615
4616/* Request a FR channel while all HR channels are exhausted, this is expected
4617 * to work without conflicts */
4618testcase TC_assignment_codec_hr_exhausted_req_fr() runs on test_CT {
4619 var MSC_ConnHdlr vc_conn;
4620 f_init(1, true);
4621 f_sleep(1.0);
4622 f_enable_all_tch();
4623 f_disable_all_tch_h();
4624 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr));
4625 vc_conn.done;
4626 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004627 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004628}
4629
4630/* Request a HR channel while all HR channels are exhausted, this is expected
4631 * to fail. */
4632testcase TC_assignment_codec_hr_exhausted_req_hr() runs on test_CT {
4633 var MSC_ConnHdlr vc_conn;
4634 f_init(1, true);
4635 f_sleep(1.0);
4636 f_enable_all_tch();
4637 f_disable_all_tch_h();
4638 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr_fail));
4639 vc_conn.done;
4640 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004641 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004642}
4643
4644/* Request a HR (prefered) or alternatively a FR channel while all HR channels
4645 * are exhausted, this is expected to be resolved by selecting a FR channel. */
4646testcase TC_assignment_codec_hr_exhausted_req_hr_fr() runs on test_CT {
4647 var MSC_ConnHdlr vc_conn;
4648 f_init(1, true);
4649 f_sleep(1.0);
4650 f_enable_all_tch();
4651 f_disable_all_tch_h();
4652 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_hr_fr));
4653 vc_conn.done;
4654 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004655 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004656}
4657
4658/* Request a FR (prefered) or alternatively a HR channel while all HR channels
4659 * are exhausted, this is expected to work without conflicts. */
4660testcase TC_assignment_codec_hr_exhausted_req_fr_hr() runs on test_CT {
4661 var MSC_ConnHdlr vc_conn;
4662 f_init(1, true);
4663 f_sleep(1.0);
4664 f_enable_all_tch();
4665 f_disable_all_tch_h();
4666 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_fr_hr));
4667 vc_conn.done;
4668 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004669 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004670}
4671
4672/* Allow FR and HR, but prefer HR */
4673private function f_TC_assignment_codec_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4674 g_pars := f_gen_test_hdlr_pars();
4675 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4676 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4677 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4678 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4679 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4680 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4681 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4682 f_establish_fully(ass_cmd, exp_compl);
4683}
4684
4685/* Allow FR and HR, but prefer FR */
4686private function f_TC_assignment_codec_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4687 g_pars := f_gen_test_hdlr_pars();
4688 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4689 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4690 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4691 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4692 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4693 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4694 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4695 f_establish_fully(ass_cmd, exp_compl);
4696}
4697
4698/* Request a HR (prefered) or alternatively a FR channel, it is expected that
4699 * HR, which is the prefered type, is selected. */
4700testcase TC_assignment_codec_req_hr_fr() runs on test_CT {
4701 var MSC_ConnHdlr vc_conn;
4702 f_init(1, true);
4703 f_sleep(1.0);
4704 f_enable_all_tch();
4705 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_hr_fr));
4706 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004707 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004708}
4709
4710/* Request a FR (prefered) or alternatively a HR channel, it is expected that
4711 * FR, which is the prefered type, is selected. */
4712testcase TC_assignment_codec_req_fr_hr() runs on test_CT {
4713 var MSC_ConnHdlr vc_conn;
4714 f_init(1, true);
4715 f_sleep(1.0);
4716 f_enable_all_tch();
4717 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_fr_hr));
4718 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004719 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004720}
4721
Pau Espin Pedrol14475352021-07-22 15:48:16 +02004722/* request a signalling channel with all SDCCH exhausted, it is expected that a TCH will be selected */
4723private function f_TC_assignment_sdcch_exhausted_req_signalling(charstring id) runs on MSC_ConnHdlr {
4724 g_pars := f_gen_test_hdlr_pars();
4725 g_pars.ra := '02'O; /* RA containing reason=LU */
4726
4727 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4728 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4729 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4730 var template uint3_t tsc := ?;
4731
4732 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4733 f_create_bssmap_exp(l3_enc);
4734 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4735 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4736
4737 /* we should now have a COMPL_L3 at the MSC */
4738 timer T := 10.0;
4739 T.start;
4740 alt {
4741 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4742 [] T.timeout {
4743 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4744 }
4745 }
4746}
4747testcase TC_assignment_sdcch_exhausted_req_signalling() runs on test_CT {
4748 var MSC_ConnHdlr vc_conn;
4749 f_init(1, true);
4750 f_sleep(1.0);
4751 f_disable_all_sdcch();
4752 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_signalling));
4753 vc_conn.done;
4754 f_enable_all_sdcch();
4755 f_shutdown_helper();
4756}
4757
4758/* Request a signalling channel with all SDCCH exhausted, it is
4759 expected that no TCH will be selected for signalling and assigment will fail
4760 because it's dictated by VTY config */
4761testcase TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() runs on test_CT {
4762 var RSL_Message rsl_unused, rsl_msg;
4763 var GsmRrMessage rr;
4764 f_init(1, false);
4765 f_sleep(1.0);
4766 f_vty_allow_tch_for_signalling(false, 0);
4767 f_disable_all_sdcch();
4768
4769 /* RA containing reason=LU */
4770 f_ipa_tx(0, ts_RSL_CHAN_RQD('02'O, 2342));
4771 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
4772 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
4773 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
4774 setverdict(fail, "Expected reject");
4775 }
4776
4777 f_vty_allow_tch_for_signalling(true, 0);
4778 f_enable_all_sdcch();
4779 f_shutdown_helper();
4780}
4781
4782/* Request a voice channel with all SDCCH exhausted, it is
4783 * expected that TCH channel will be allocated since the VTY option is only
4784 * aimed at signalling requests */
4785private function f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden(charstring id) runs on MSC_ConnHdlr {
4786 g_pars := f_gen_test_hdlr_pars();
4787 g_pars.ra := '43'O; /* RA containing reason=originating speech call*/
4788
4789 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4790 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4791 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4792 var template uint3_t tsc := ?;
4793
4794 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4795 f_create_bssmap_exp(l3_enc);
4796 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4797 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4798
4799 /* we should now have a COMPL_L3 at the MSC */
4800 timer T := 10.0;
4801 T.start;
4802 alt {
4803 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4804 [] T.timeout {
4805 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4806 }
4807 }
4808}
4809testcase TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() runs on test_CT {
4810 var MSC_ConnHdlr vc_conn;
4811 f_init(1, true);
4812 f_sleep(1.0);
4813 f_vty_allow_tch_for_signalling(false, 0);
4814 f_disable_all_sdcch();
4815
4816 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden));
4817 vc_conn.done;
4818
4819 f_vty_allow_tch_for_signalling(true, 0);
4820 f_enable_all_sdcch();
4821 f_shutdown_helper();
4822}
4823
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004824testcase TC_assignment_osmux() runs on test_CT {
4825 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4826 var MSC_ConnHdlr vc_conn;
4827
4828 /* See note above */
4829 var RSL_IE_Body mr_conf := {
4830 other := {
4831 len := 2,
4832 payload := '2804'O
4833 }
4834 };
4835
4836 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4837 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4838 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4839 pars.expect_mr_conf_ie := mr_conf;
4840 pars.use_osmux := true;
4841
4842 f_init(1, true, true);
4843 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004844 f_vty_amr_start_mode_set(false, "1");
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004845
4846 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4847 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004848
4849 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004850 f_shutdown_helper();
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004851}
4852
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004853/* test the procedure of the MSC requesting a Classmark Update:
4854 * a) BSSMAP Classmark Request should result in RR CLASSMARK ENQUIRY,
4855 * b) L3 RR CLASSMARK CHANGE should result in BSSMAP CLASSMARK UPDATE */
Harald Welte898113b2018-01-31 18:32:21 +01004856private function f_tc_classmark(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004857 g_pars := f_gen_test_hdlr_pars();
4858
Harald Weltea0630032018-03-20 21:09:55 +01004859 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004860 /* we should now have a COMPL_L3 at the MSC */
4861 BSSAP.receive(tr_BSSMAP_ComplL3);
4862
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004863 BSSAP.send(ts_BSSMAP_ClassmarkRequest);
4864 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_CM_ENQUIRY));
4865
Harald Welte898113b2018-01-31 18:32:21 +01004866 f_rsl_send_l3(ts_RRM_CM_CHG(valueof(ts_CM2)));
4867 BSSAP.receive(tr_BSSMAP_ClassmarkUpd(?, omit));
4868 setverdict(pass);
4869}
4870testcase TC_classmark() runs on test_CT {
4871 var MSC_ConnHdlr vc_conn;
4872 f_init(1, true);
4873 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004874 vc_conn := f_start_handler(refers(f_tc_classmark));
Harald Welte898113b2018-01-31 18:32:21 +01004875 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004876 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004877}
4878
Harald Welteeddf0e92020-06-21 19:42:15 +02004879/* Send a CommonID from the simulated MSC and verify that the information is used to
4880 * fill BSC-internal data structures (specifically, bsc_subscr associated with subscr_conn) */
4881private function f_tc_common_id(charstring id) runs on MSC_ConnHdlr {
4882 g_pars := f_gen_test_hdlr_pars();
4883 f_MscConnHdlr_init_vty();
4884
4885 f_create_chan_and_exp();
4886 /* we should now have a COMPL_L3 at the MSC */
4887 BSSAP.receive(tr_BSSMAP_ComplL3);
4888
4889 /* Send CommonID */
4890 BSSAP.send(ts_BSSMAP_CommonId(g_pars.imsi));
4891
4892 /* Use VTY to verify that the IMSI of the subscr_conn is set */
4893 var charstring regex := "*(IMSI: " & hex2str(g_pars.imsi) & ")*";
4894 f_vty_transceive_match_regexp_retry(BSCVTY, "show conns", regex, 0, 4, 1.0);
4895
4896 setverdict(pass);
4897}
4898testcase TC_common_id() runs on test_CT {
4899 var MSC_ConnHdlr vc_conn;
4900 f_init(1, true);
4901 f_sleep(1.0);
4902 vc_conn := f_start_handler(refers(f_tc_common_id));
4903 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004904 f_shutdown_helper();
Harald Welteeddf0e92020-06-21 19:42:15 +02004905}
4906
Harald Weltee3bd6582018-01-31 22:51:25 +01004907private function f_est_single_l3(template PDU_ML3_MS_NW l3) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004908 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004909 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004910 /* we should now have a COMPL_L3 at the MSC */
4911 BSSAP.receive(tr_BSSMAP_ComplL3);
4912
Harald Weltee3bd6582018-01-31 22:51:25 +01004913 /* send the single message we want to send */
4914 f_rsl_send_l3(l3);
4915}
4916
4917private function f_bssap_expect_nothing(float sec := 5.00) runs on MSC_ConnHdlr {
4918 timer T := sec;
4919 var PDU_BSSAP bssap;
Harald Welte898113b2018-01-31 18:32:21 +01004920 T.start;
4921 alt {
Harald Weltee3bd6582018-01-31 22:51:25 +01004922 [] BSSAP.receive(PDU_BSSAP:?) -> value bssap {
4923 setverdict(fail, "Unexpected BSSMAP ", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02004924 mtc.stop;
Harald Welte898113b2018-01-31 18:32:21 +01004925 }
4926 [] T.timeout {
4927 setverdict(pass);
4928 }
4929 }
4930}
4931
Harald Weltee3bd6582018-01-31 22:51:25 +01004932/* unsolicited ASSIGNMENT FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4933private function f_tc_unsol_ass_fail(charstring id) runs on MSC_ConnHdlr {
4934 f_est_single_l3(ts_RRM_AssignmentFailure('00'O));
4935 f_bssap_expect_nothing();
4936}
Harald Welte898113b2018-01-31 18:32:21 +01004937testcase TC_unsol_ass_fail() runs on test_CT {
4938 var MSC_ConnHdlr vc_conn;
4939 f_init(1, true);
4940 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004941 vc_conn := f_start_handler(refers(f_tc_unsol_ass_fail));
Harald Welte898113b2018-01-31 18:32:21 +01004942 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004943 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004944}
Harald Welte552620d2017-12-16 23:21:36 +01004945
Harald Welteea99a002018-01-31 20:46:43 +01004946
4947/* unsolicited ASSIGNMENT COMPLETE (without ASSIGN) from MS shouldn't bring BSC down */
4948private function f_tc_unsol_ass_compl(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004949 f_est_single_l3(ts_RRM_AssignmentComplete('00'O));
4950 f_bssap_expect_nothing();
Harald Welteea99a002018-01-31 20:46:43 +01004951}
4952testcase TC_unsol_ass_compl() runs on test_CT {
4953 var MSC_ConnHdlr vc_conn;
4954 f_init(1, true);
4955 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004956 vc_conn := f_start_handler(refers(f_tc_unsol_ass_compl));
Harald Welteea99a002018-01-31 20:46:43 +01004957 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004958 f_shutdown_helper();
Harald Welteea99a002018-01-31 20:46:43 +01004959}
4960
4961
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004962/* unsolicited HANDOVER FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4963private function f_tc_unsol_ho_fail(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004964 f_est_single_l3(ts_RRM_HandoverFailure('00'O));
4965 f_bssap_expect_nothing();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004966}
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004967testcase TC_unsol_ho_fail() runs on test_CT {
4968 var MSC_ConnHdlr vc_conn;
4969 f_init(1, true);
4970 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004971 vc_conn := f_start_handler(refers(f_tc_unsol_ho_fail));
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004972 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004973 f_shutdown_helper();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004974}
4975
4976
Harald Weltee3bd6582018-01-31 22:51:25 +01004977/* short message from MS should be ignored */
4978private function f_tc_err_82_short_msg(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004979 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004980 f_create_chan_and_exp();
Harald Weltee3bd6582018-01-31 22:51:25 +01004981 /* we should now have a COMPL_L3 at the MSC */
4982 BSSAP.receive(tr_BSSMAP_ComplL3);
4983
4984 /* send short message */
4985 RSL.send(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), ''O));
4986 f_bssap_expect_nothing();
4987}
4988testcase TC_err_82_short_msg() runs on test_CT {
4989 var MSC_ConnHdlr vc_conn;
4990 f_init(1, true);
4991 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004992 vc_conn := f_start_handler(refers(f_tc_err_82_short_msg));
Harald Weltee3bd6582018-01-31 22:51:25 +01004993 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004994 f_shutdown_helper();
Harald Weltee3bd6582018-01-31 22:51:25 +01004995}
4996
4997
Harald Weltee9e02e42018-01-31 23:36:25 +01004998/* 24.008 8.4 Unknown message must trigger RR STATUS */
4999private function f_tc_err_84_unknown_msg(charstring id) runs on MSC_ConnHdlr {
5000 f_est_single_l3(ts_RRM_UL_REL('00'O));
5001 timer T := 3.0
5002 alt {
5003 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_STATUS)) {
5004 setverdict(pass);
5005 }
5006 [] BSSAP.receive { setverdict(fail, "unexpected BSSAP"); }
Harald Welte458fd372018-03-21 11:26:23 +01005007 [] T.timeout { setverdict(fail, "Timeout waiting for RR STATUS"); }
Harald Weltee9e02e42018-01-31 23:36:25 +01005008 }
5009}
5010testcase TC_err_84_unknown_msg() runs on test_CT {
5011 var MSC_ConnHdlr vc_conn;
5012 f_init(1, true);
5013 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02005014 vc_conn := f_start_handler(refers(f_tc_err_84_unknown_msg));
Harald Weltee9e02e42018-01-31 23:36:25 +01005015 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005016 f_shutdown_helper();
Harald Weltee9e02e42018-01-31 23:36:25 +01005017}
5018
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005019/***********************************************************************
5020 * Handover
5021 ***********************************************************************/
5022
Harald Welte94e0c342018-04-07 11:33:23 +02005023/* execute a "bts <0-255> trx <0-255> timeslot <0-7> " command on given Dchan */
5024private function f_vty_ts_action(charstring suffix, integer bts_nr, integer trx_nr, integer ts_nr)
5025runs on test_CT {
5026 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5027 " timeslot "&int2str(ts_nr)&" ";
5028 f_vty_transceive(BSCVTY, cmd & suffix);
5029}
5030
Harald Welte261af4b2018-02-12 21:20:39 +01005031/* execute a "bts <0-255> trx <0-255> timeslot <0-7> sub-slot <0-7>" command on given Dchan */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005032private function f_vty_ss_action(TELNETasp_PT pt, charstring suffix,
5033 uint8_t bts_nr, uint8_t trx_nr,
5034 in RslChannelNr chan_nr)
5035{
Harald Welte261af4b2018-02-12 21:20:39 +01005036 /* FIXME: resolve those from component-global state */
5037 var integer ts_nr := chan_nr.tn;
5038 var integer ss_nr;
5039 if (ischosen(chan_nr.u.ch0)) {
5040 ss_nr := 0;
5041 } else if (ischosen(chan_nr.u.lm)) {
5042 ss_nr := chan_nr.u.lm.sub_chan;
5043 } else if (ischosen(chan_nr.u.sdcch4)) {
5044 ss_nr := chan_nr.u.sdcch4.sub_chan;
5045 } else if (ischosen(chan_nr.u.sdcch8)) {
5046 ss_nr := chan_nr.u.sdcch8.sub_chan;
5047 } else {
5048 setverdict(fail, "Invalid ChanNr ", chan_nr);
Daniel Willmannafce8662018-07-06 23:11:32 +02005049 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +01005050 }
5051
5052 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
5053 " timeslot "&int2str(ts_nr)&" sub-slot "&int2str(ss_nr)&" ";
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005054 f_vty_transceive(pt, cmd & suffix);
Harald Welte261af4b2018-02-12 21:20:39 +01005055}
5056
Neels Hofmeyr91401012019-07-11 00:42:35 +02005057/* Even though the VTY command to trigger handover takes a new BTS number as argument, behind the scenes osmo-bsc always
5058 * translates that to a target ARFCN+BSIC first. See bsc_vty.c trigger_ho_or_as(), which puts the selected BTS' neighbor
5059 * ident key (ARFCN + BSIC) in the struct passed on to handover_request(). handover_start() then resolves that to a
5060 * viable actual neighbor cell. So from the internal osmo-bsc perspective, we always request handover to an ARFCN + BSIC
5061 * pair, not really to a specific BTS number. */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005062private function f_vty_handover(TELNETasp_PT pt, uint8_t bts_nr, uint8_t trx_nr,
5063 in RslChannelNr chan_nr, uint8_t new_bts_nr)
5064{
5065 f_vty_ss_action(pt, "handover " & int2str(new_bts_nr), bts_nr, trx_nr, chan_nr);
Harald Welte261af4b2018-02-12 21:20:39 +01005066}
5067
5068/* intra-BSC hand-over between BTS0 and BTS1 */
5069private function f_tc_ho_int(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02005070 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5071 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte261af4b2018-02-12 21:20:39 +01005072
5073 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5074 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5075
Harald Weltea0630032018-03-20 21:09:55 +01005076 f_establish_fully(ass_cmd, exp_compl);
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005077 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Harald Welte261af4b2018-02-12 21:20:39 +01005078
5079 var HandoverState hs := {
5080 rr_ho_cmpl_seen := false,
5081 handover_done := false,
5082 old_chan_nr := -
5083 };
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005084 /* issue hand-over command on VTY, from BTS 0 to BTS 1 */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07005085 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
Harald Welte261af4b2018-02-12 21:20:39 +01005086 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5087 f_rslem_suspend(RSL1_PROC);
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005088
5089 /* From the MGW perspective, a handover is is characterized by
5090 * performing one MDCX operation with the MGW. So we expect to see
5091 * one more MDCX during handover. */
5092 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5093
Harald Welte261af4b2018-02-12 21:20:39 +01005094 alt {
5095 [] as_handover(hs);
Harald Welte261af4b2018-02-12 21:20:39 +01005096 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005097
Philipp Maier4dae0652018-11-12 12:03:26 +01005098 /* Since this is an internal handover we expect the BSC to inform the
5099 * MSC about the event */
5100 BSSAP.receive(tr_BSSMAP_HandoverPerformed);
5101
Philipp Maier3e2af5d2018-07-11 17:01:05 +02005102 /* Check the amount of MGCP transactions is still consistant with the
5103 * test expectation */
5104 f_check_mgcp_expectations()
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005105
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005106 var RSL_Message chan_act := f_rslem_get_last_act(RSL1_PROC, 0, g_chan_nr);
5107
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005108 /* Ensure the Channel Activation for the new channel contained the right encryption params. as_handover() set
5109 * 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 +02005110 f_verify_encr_info(chan_act);
5111
5112 f_chan_act_verify_tsc(chan_act, BTS_TSC[1]);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005113
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005114 f_sleep(0.5);
Harald Welte261af4b2018-02-12 21:20:39 +01005115}
5116
5117testcase TC_ho_int() runs on test_CT {
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005118 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte261af4b2018-02-12 21:20:39 +01005119 var MSC_ConnHdlr vc_conn;
5120 f_init(2, true);
5121 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005122
Neels Hofmeyrc2cf4542021-10-02 12:26:38 +02005123 pars.expect_tsc := BTS_TSC[0];
5124
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005125 f_ctrs_bsc_and_bts_init();
5126
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02005127 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
Harald Welte261af4b2018-02-12 21:20:39 +01005128 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005129
5130 /* from f_establish_fully() */
5131 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5132 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5133 /* from handover */
5134 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5135 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5136 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5137 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5138 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005139 f_shutdown_helper();
Harald Welte261af4b2018-02-12 21:20:39 +01005140}
Harald Weltee9e02e42018-01-31 23:36:25 +01005141
Oliver Smith7eabd312021-07-12 14:18:56 +02005142function 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 +02005143 var MSC_ConnHdlr vc_conn;
5144 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5145 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5146
5147 f_init(2, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02005148 f_vty_encryption_a5(enc_a5);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005149 f_sleep(1.0);
5150
5151 f_ctrs_bsc_and_bts_init();
5152
5153 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
5154 vc_conn.done;
5155
5156 /* from f_establish_fully() */
5157 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5158 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5159 /* from handover */
5160 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5161 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5162 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5163 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
5164 f_ctrs_bsc_and_bts_verify();
Oliver Smith7eabd312021-07-12 14:18:56 +02005165 f_vty_encryption_a5_reset();
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005166 f_shutdown_helper();
5167}
5168
5169testcase TC_ho_int_a5_0() runs on test_CT {
5170 f_tc_ho_int_a5('01'O);
5171}
5172
5173testcase TC_ho_int_a5_1() runs on test_CT {
5174 f_tc_ho_int_a5('02'O);
5175}
5176
5177testcase TC_ho_int_a5_3() runs on test_CT {
5178 f_tc_ho_int_a5('08'O);
5179}
5180
5181testcase TC_ho_int_a5_4() runs on test_CT {
Oliver Smith7eabd312021-07-12 14:18:56 +02005182 f_tc_ho_int_a5('10'O, "0 1 3 4");
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02005183}
5184
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005185/* intra-BSC hand-over with CONNection FAILure and cause Radio Link Failure: check RR release cause */
5186private function f_tc_ho_int_radio_link_failure(charstring id) runs on MSC_ConnHdlr {
5187 g_pars := f_gen_test_hdlr_pars();
5188 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5189 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005190
5191 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5192 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5193
5194 f_establish_fully(ass_cmd, exp_compl);
5195 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
5196
5197 var HandoverState hs := {
5198 rr_ho_cmpl_seen := false,
5199 handover_done := false,
5200 old_chan_nr := -
5201 };
5202 /* issue hand-over command on VTY */
5203 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
5204 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5205 f_rslem_suspend(RSL1_PROC);
5206
5207 /* From the MGW perspective, a handover is is characterized by
5208 * performing one MDCX operation with the MGW. So we expect to see
5209 * one more MDCX during handover. */
5210 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5211
5212 var RSL_Message rsl;
5213 var PDU_ML3_NW_MS l3;
5214 var RslChannelNr new_chan_nr;
5215 var GsmArfcn arfcn;
5216 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
5217 l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
5218 if (not ischosen(l3.msgs.rrm.handoverCommand)) {
5219 setverdict(fail, "Expected handoverCommand");
5220 mtc.stop;
5221 }
5222 }
5223 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
5224 new_chan_nr, arfcn);
5225
5226 f_rslem_register(0, new_chan_nr, RSL1_PROC);
5227
5228 /* resume processing of RSL DChan messages, which was temporarily suspended
5229 * before performing a hand-over */
5230 f_rslem_resume(RSL1_PROC);
5231 RSL1.receive(tr_RSL_IPA_CRCX(new_chan_nr));
5232
5233 f_sleep(1.0);
5234
5235 /* Handover fails because no HANDO DET appears on the new lchan,
5236 * and the old lchan reports a Radio Link Failure. */
5237 RSL.send(ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
5238
5239 var PDU_BSSAP rx_clear_request;
5240 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5241 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5242 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5243
5244 var RR_Cause rr_cause := GSM48_RR_CAUSE_ABNORMAL_UNSPEC;
5245
5246 var MgcpCommand mgcp;
5247 interleave {
5248 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE(int2oct(enum2int(rr_cause), 1)))) {}
5249 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005250 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005251 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005252 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005253 }
5254 [] RSL1.receive(tr_RSL_DEACT_SACCH(new_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005255 [] RSL1.receive(tr_RSL_RF_CHAN_REL(new_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005256 RSL1.send(ts_RSL_RF_CHAN_REL_ACK(new_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005257 f_rslem_unregister(0, g_chan_nr, PT := RSL1_PROC);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005258 }
5259 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {}
5260 }
5261
5262 f_sleep(0.5);
5263 setverdict(pass);
5264}
5265testcase TC_ho_int_radio_link_failure() runs on test_CT {
5266 var MSC_ConnHdlr vc_conn;
5267 f_init(2, true);
5268 f_sleep(1.0);
5269
5270 f_ctrs_bsc_and_bts_init();
5271
5272 vc_conn := f_start_handler(refers(f_tc_ho_int_radio_link_failure));
5273 vc_conn.done;
5274
5275 /* from f_establish_fully() */
5276 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5277 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5278 /* from handover */
5279 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5280 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5281 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5282 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:stopped");
5283 f_ctrs_bsc_and_bts_verify();
5284 f_shutdown_helper();
5285}
5286
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005287/* Expecting MGCP to DLCX the endpoint's two connections: towards BTS and towards MSC */
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005288private function f_expect_dlcx_conns() runs on MSC_ConnHdlr {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005289 var MgcpCommand mgcp;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005290 var template MgcpResponse mgcp_resp;
5291 var MGCP_RecvFrom mrf;
5292 var template MgcpMessage msg_resp;
5293 var template MgcpMessage msg_dlcx := {
5294 command := tr_DLCX()
5295 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005296
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005297 if (g_pars.aoip) {
5298 MGCP.receive(tr_DLCX()) -> value mgcp {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005299 log("Got first DLCX: ", mgcp);
5300 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005301 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005302
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005303 MGCP.receive(tr_DLCX()) -> value mgcp {
5304 log("Got second DLCX: ", mgcp);
5305 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
5306 };
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005307 } else {
5308 /* For SCCPLite, BSC doesn't handle the MSC-side */
5309 MGCP_MULTI.receive(tr_MGCP_RecvFrom_any(msg_dlcx)) -> value mrf {
5310 log("Got first DLCX: ", mrf.msg.command);
5311 msg_resp := {
5312 response := ts_DLCX_ACK2(mrf.msg.command.line.trans_id)
5313 }
5314 MGCP_MULTI.send(t_MGCP_SendToMrf(mrf, msg_resp));
5315 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005316 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005317}
5318
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005319private 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 +01005320
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005321 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005322 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5323
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005324 BSSAP.receive(tr_BSSMAP_HandoverRequired(exp_oldToNewBSSIEs));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005325
5326 f_sleep(0.5);
5327 /* The MSC negotiates Handover Request and Handover Request Ack with
5328 * the other BSS and comes back with a BSSMAP Handover Command
5329 * containing an RR Handover Command coming from the target BSS... */
5330
5331 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5332 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5333 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5334 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5335 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5336
5337 /* expect the Handover Command to go out on RR */
5338 var RSL_Message rsl_ho_cmd
5339 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5340 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5341 var RSL_IE_Body rsl_ho_cmd_l3;
5342 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5343 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5344 setverdict(fail);
5345 } else {
5346 log("Found L3 Info: ", rsl_ho_cmd_l3);
5347 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5348 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5349 setverdict(fail);
5350 } else {
5351 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5352 setverdict(pass);
5353 }
5354 }
5355
5356 /* When the other BSS has reported a completed handover, this side is
5357 * torn down. */
5358
5359 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_HANDOVER_SUCCESSFUL;
5360 var BssmapCause cause := enum2int(cause_val);
5361 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5362
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005363 f_expect_dlcx_conns();
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005364
5365 interleave {
5366 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE));
5367 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr));
5368 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr));
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005369 [] BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005370 }
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005371 setverdict(pass);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005372}
5373
5374private function f_tc_ho_out_of_this_bsc(charstring id) runs on MSC_ConnHdlr {
5375 g_pars := f_gen_test_hdlr_pars();
5376 var PDU_BSSAP ass_req := f_gen_ass_req();
5377 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5378 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5379 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5380 f_establish_fully(ass_req, exp_compl);
5381
5382 f_ho_out_of_this_bsc();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005383}
5384testcase TC_ho_out_of_this_bsc() runs on test_CT {
5385 var MSC_ConnHdlr vc_conn;
5386
5387 f_init(1, true);
5388 f_sleep(1.0);
5389
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005390 f_ctrs_bsc_and_bts_init();
5391
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005392 vc_conn := f_start_handler(refers(f_tc_ho_out_of_this_bsc));
5393 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005394
5395 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5396 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5397 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5398 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5399 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5400 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed");
5401 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005402 f_shutdown_helper();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005403}
5404
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005405private function f_mo_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5406 template (value) RslLinkId link_id := ts_RslLinkID_DCCH(0),
Vadim Yanitskiy2ef6a2f2020-10-08 23:17:32 +07005407 template (present) OCT1 dlci := ?,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005408 octetstring l3 := '0123456789'O)
5409runs on MSC_ConnHdlr {
Neels Hofmeyr43654812020-09-25 01:35:35 +02005410 /* The old lchan and conn should still be active. See that arbitrary L3
5411 * is still going through. */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005412 rsl.send(ts_RSL_DATA_IND(g_chan_nr, link_id, l3));
Neels Hofmeyr43654812020-09-25 01:35:35 +02005413 var template PDU_BSSAP exp_data := {
5414 discriminator := '1'B,
5415 spare := '0000000'B,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005416 dlci := dlci,
5417 lengthIndicator := lengthof(l3),
Neels Hofmeyr43654812020-09-25 01:35:35 +02005418 pdu := {
5419 dtap := l3
5420 }
5421 };
5422 BSSAP.receive(exp_data);
5423 setverdict(pass);
5424}
5425
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005426private function f_mt_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5427 template (present) RslLinkId link_id := tr_RslLinkID_DCCH(0),
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005428 template (value) OCT1 dlci := '00'O,
5429 octetstring l3 := '0123456789'O)
5430runs on MSC_ConnHdlr {
5431 BSSAP.send(PDU_BSSAP:{
5432 discriminator := '1'B,
5433 spare := '0000000'B,
5434 dlci := dlci,
5435 lengthIndicator := lengthof(l3),
5436 pdu := {
5437 dtap := l3
5438 }
5439 });
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005440 rsl.receive(tr_RSL_DATA_REQ(g_chan_nr, link_id, l3));
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005441 setverdict(pass);
5442}
5443
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005444/* BSC asks for inter-BSC HO, but the MSC decides that it won't happen and
5445 * simply never sends a BSSMAP Handover Command. */
5446private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005447 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005448
5449 var PDU_BSSAP ass_req := f_gen_ass_req();
5450 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5451 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5452 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5453 f_establish_fully(ass_req, exp_compl);
5454
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005455 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005456 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5457
5458 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5459
5460 /* osmo-bsc should time out 10 seconds after the handover started.
5461 * Let's give it a bit extra. */
5462 f_sleep(15.0);
5463
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005464 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005465 f_sleep(1.0);
5466}
5467testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
5468 var MSC_ConnHdlr vc_conn;
5469
5470 f_init(1, true);
5471 f_sleep(1.0);
5472
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005473 f_ctrs_bsc_and_bts_init();
5474
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005475 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_msc_response));
5476 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005477
5478 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5479 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5480 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5481 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5482 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5483 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5484 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005485 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005486}
5487
5488/* BSC asks for inter-BSC HO, receives BSSMAP Handover Command, but MS reports
5489 * RR Handover Failure. */
5490private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005491 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005492
5493 var PDU_BSSAP ass_req := f_gen_ass_req();
5494 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5495 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5496 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5497 f_establish_fully(ass_req, exp_compl);
5498
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005499 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005500 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5501
5502 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5503
5504 f_sleep(0.5);
5505 /* The MSC negotiates Handover Request and Handover Request Ack with
5506 * the other BSS and comes back with a BSSMAP Handover Command
5507 * containing an RR Handover Command coming from the target BSS... */
5508
5509 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5510 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5511 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5512 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5513 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5514
5515 /* expect the Handover Command to go out on RR */
5516 var RSL_Message rsl_ho_cmd
5517 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5518 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5519 var RSL_IE_Body rsl_ho_cmd_l3;
5520 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5521 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5522 setverdict(fail);
5523 } else {
5524 log("Found L3 Info: ", rsl_ho_cmd_l3);
5525 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5526 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5527 setverdict(fail);
5528 } else {
5529 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5530 setverdict(pass);
5531 }
5532 }
5533
5534 f_sleep(0.2);
5535 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
5536
5537 /* Should tell the MSC about the failure */
5538 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5539
5540 f_sleep(1.0);
5541
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005542 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005543 f_sleep(1.0);
5544
5545 setverdict(pass);
5546 f_sleep(1.0);
5547}
5548testcase TC_ho_out_fail_rr_ho_failure() runs on test_CT {
5549 var MSC_ConnHdlr vc_conn;
5550
5551 f_init(1, true);
5552 f_sleep(1.0);
5553
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005554 f_ctrs_bsc_and_bts_init();
5555
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005556 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_rr_ho_failure));
5557 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005558
5559 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5560 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5561 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5562 f_ctrs_bsc_and_bts_add(0, "handover:failed");
5563 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5564 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:failed");
5565 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005566 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005567}
5568
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005569/* BSC asks for inter-BSC-out HO, receives BSSMAP Handover Command, but then no reply is received about HO outcome
5570 * (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 +02005571 * and the lchan is released. */
5572private function f_tc_ho_out_fail_no_result_after_ho_cmd(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005573 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005574
5575 var PDU_BSSAP ass_req := f_gen_ass_req();
5576 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5577 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5578 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5579 f_establish_fully(ass_req, exp_compl);
5580
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005581 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005582 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5583
5584 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5585
5586 f_sleep(0.5);
5587 /* The MSC negotiates Handover Request and Handover Request Ack with
5588 * the other BSS and comes back with a BSSMAP Handover Command
5589 * containing an RR Handover Command coming from the target BSS... */
5590
5591 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5592 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5593 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5594 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5595 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5596
5597 /* expect the Handover Command to go out on RR */
5598 var RSL_Message rsl_ho_cmd
5599 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5600 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5601 var RSL_IE_Body rsl_ho_cmd_l3;
5602 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5603 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5604 setverdict(fail);
5605 } else {
5606 log("Found L3 Info: ", rsl_ho_cmd_l3);
5607 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5608 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5609 setverdict(fail);
5610 } else {
5611 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5612 setverdict(pass);
5613 }
5614 }
5615
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005616 /* We get neither success nor failure report from the remote BSS. Eventually T8 times out and we run into 3GPP
5617 * TS 48.008 3.1.5.3.3 "Abnormal Conditions": Clear Request should go to the MSC, and RR should be released
5618 * after Clear Command */
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005619
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005620 var PDU_BSSAP rx_clear_request;
Neels Hofmeyre1797aa2019-07-09 19:34:04 +02005621 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5622 log("Got BSSMAP Clear Request");
5623 /* Instruct BSC to clear channel */
5624 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5625 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5626
5627 var MgcpCommand mgcp;
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005628 interleave {
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005629 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
5630 log("Got Deact SACCH");
5631 }
Harald Welte924b6ea2019-02-04 01:05:34 +01005632 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
Neels Hofmeyr211169d2018-11-07 00:37:29 +01005633 log("Got RR Release");
5634 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005635 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005636 log("Got RF Chan Rel");
5637 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005638 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005639 }
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005640 }
5641
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005642 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005643 BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005644
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005645 setverdict(pass);
5646 f_sleep(1.0);
5647}
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005648testcase TC_ho_out_fail_no_result_after_ho_cmd() runs on test_CT {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005649 var MSC_ConnHdlr vc_conn;
5650
5651 f_init(1, true);
5652 f_sleep(1.0);
5653
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005654 f_ctrs_bsc_and_bts_init();
5655
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005656 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_result_after_ho_cmd));
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005657 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005658
5659 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5660 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5661 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5662 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5663 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5664 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5665 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005666 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005667}
5668
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005669private 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 +01005670 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5671 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5672 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5673 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5674 * before we get started. */
5675 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5676 f_rslem_register(0, new_chan_nr);
5677 g_chan_nr := new_chan_nr;
5678 f_sleep(1.0);
5679
5680 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5681 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5682 activate(as_Media());
5683
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005684 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005685 f_gen_handover_req(aoip_tla := g_pars.host_aoip_tla,
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005686 oldToNewBSSIEs := oldToNewBSSIEs,
5687 enc := g_pars.encr)));
Harald Welte6811d102019-04-14 22:23:14 +02005688 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005689
5690 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5691
5692 var PDU_BSSAP rx_bssap;
5693 var octetstring ho_command_str;
5694
5695 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
Pau Espin Pedrol76ba5412019-06-10 11:00:33 +02005696
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005697 /* we're sure that the channel activation is done now, verify the encryption parameters in it */
5698 f_verify_encr_info(f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr));
5699
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005700 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5701 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5702 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5703 log("L3 Info in HO Request Ack is ", ho_command);
5704
5705 var GsmArfcn arfcn;
5706 var RslChannelNr actual_new_chan_nr;
5707 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5708 actual_new_chan_nr, arfcn);
5709
5710 if (actual_new_chan_nr != new_chan_nr) {
5711 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5712 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5713 setverdict(fail);
5714 return;
5715 }
5716 log("Handover Command chan_nr is", actual_new_chan_nr);
5717
5718 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5719 * tells the MS to handover to the new lchan. Here comes the new MS on
5720 * the new lchan with a Handover RACH: */
5721
5722 /* send handover detect */
5723
5724 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5725
5726 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5727
5728 /* send handover complete over the new channel */
5729
5730 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
5731 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
5732 enc_PDU_ML3_MS_NW(l3_tx)));
5733
5734 BSSAP.receive(tr_BSSMAP_HandoverComplete);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005735 setverdict(pass);
5736}
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005737
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005738private function f_tc_ho_into_this_bsc(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005739 var template PDU_ML3_NW_MS exp_rr_rel_tmpl;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005740 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit;
5741 if (not istemplatekind(g_pars.last_used_eutran_plmn, "omit")) {
5742 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005743 }
5744 if (g_pars.exp_fast_return) {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005745 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE_CellSelectInd;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005746 } else {
5747 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005748 }
5749 f_ho_into_this_bsc(id, oldToNewBSSIEs);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02005750 f_perform_clear(exp_rr_rel_tmpl := exp_rr_rel_tmpl);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005751 setverdict(pass);
5752}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005753function f_tc_ho_into_this_bsc_main(TestHdlrParams pars) runs on test_CT {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005754 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005755
5756 f_init(1, true);
5757 f_sleep(1.0);
5758
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005759 f_ctrs_bsc_and_bts_init();
5760
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005761 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5762 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005763
5764 vc_conn := f_start_handler(refers(f_tc_ho_into_this_bsc), pars);
5765 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005766
5767 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5768 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5769 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5770 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed");
5771 f_ctrs_bsc_and_bts_verify();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005772}
5773
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005774testcase TC_ho_into_this_bsc() runs on test_CT {
5775 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5776 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005777 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005778}
5779
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005780function f_tc_ho_into_this_bsc_a5(OCT1 encr_alg) runs on test_CT {
5781 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5782 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5783 f_tc_ho_into_this_bsc_main(pars);
5784 f_shutdown_helper();
5785}
5786
5787testcase TC_ho_into_this_bsc_a5_0() runs on test_CT {
5788 f_tc_ho_into_this_bsc_a5('01'O);
5789}
5790
5791testcase TC_ho_into_this_bsc_a5_1() runs on test_CT {
5792 f_tc_ho_into_this_bsc_a5('02'O);
5793}
5794
5795testcase TC_ho_into_this_bsc_a5_3() runs on test_CT {
5796 f_tc_ho_into_this_bsc_a5('08'O);
5797}
5798
5799testcase TC_ho_into_this_bsc_a5_4() runs on test_CT {
5800 f_tc_ho_into_this_bsc_a5('10'O);
5801}
5802
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005803testcase TC_ho_into_this_bsc_tla_v6() runs on test_CT {
5804 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5805 pars.host_aoip_tla := "::6";
5806 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005807 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005808}
5809
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005810/* Similar to TC_ho_into_this_bsc, but when in SRVCC, HO Req contains "Old BSS
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005811 to New BSS Information" IE with "Last Used E-UTRAN PLMN Id", which, when the
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005812 channel is later released (RR CHannel Release), should trigger inclusion of
5813 IE "Cell Selection Indicator after Release of all TCH and SDCCH" with E-UTRAN
5814 neighbors. */
5815testcase TC_srvcc_eutran_to_geran() runs on test_CT {
5816 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5817 pars.last_used_eutran_plmn := '323454'O;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005818 pars.exp_fast_return := true;
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005819 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005820
5821 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted");
5822 f_ctrs_bsc_and_bts_add(0, "srvcc:completed");
5823 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005824 f_shutdown_helper();
5825}
5826
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005827/* Same as TC_srvcc_eutran_to_geran, but test explicitly forbiding fast return
5828 on the BTS. As a result, RR Release shouldn't contain the EUTRAN neighbor
5829 list when the channel is released. */
5830testcase TC_srvcc_eutran_to_geran_forbid_fast_return() runs on test_CT {
5831 f_init_vty();
5832 f_vty_allow_srvcc_fast_return(true, 0)
5833
5834 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5835 pars.last_used_eutran_plmn := '323454'O;
5836 pars.exp_fast_return := false;
5837 f_tc_ho_into_this_bsc_main(pars);
5838 f_vty_allow_srvcc_fast_return(false, 0);
5839 f_shutdown_helper();
5840}
5841
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005842private function f_tc_srvcc_eutran_to_geran_ho_out(charstring id) runs on MSC_ConnHdlr {
5843 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs;
5844 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
5845 f_ho_into_this_bsc(id, oldToNewBSSIEs);
5846 f_ho_out_of_this_bsc(oldToNewBSSIEs);
5847 setverdict(pass);
5848}
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005849
5850private function f_tc_srvcc_eutran_to_geran_ho_out_main(boolean disable_fast_return)
5851 runs on test_CT {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005852 var MSC_ConnHdlr vc_conn;
5853 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5854
5855 f_init(1, true);
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005856 if (disable_fast_return) {
5857 f_vty_allow_srvcc_fast_return(true, 0);
5858 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005859 f_sleep(1.0);
5860
5861 f_ctrs_bsc_and_bts_init();
5862
5863 pars.last_used_eutran_plmn := '323454'O;
5864 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5865 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
5866
5867 vc_conn := f_start_handler(refers(f_tc_srvcc_eutran_to_geran_ho_out), pars);
5868 vc_conn.done;
5869
5870 f_ctrs_bsc_and_bts_add(0, "handover:attempted", 2);
5871 f_ctrs_bsc_and_bts_add(0, "handover:completed", 2);
5872 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted", 1);
5873 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed", 1);
5874 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted", 1);
5875 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed", 1);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005876
5877 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted", 1);
5878 f_ctrs_bsc_and_bts_add(0, "srvcc:completed", 1);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005879 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005880
5881 if (disable_fast_return) {
5882 f_vty_allow_srvcc_fast_return(false, 0);
5883 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005884 f_shutdown_helper();
5885}
5886
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005887/* First, HO into BSC from EUTRAN (SRVCC): HO Request contains "Old BSS to New
5888 BSS Information" IE with "Last Used E-UTRAN PLMN Id".
5889 Second, HO to another BSC: HO Required contains "Old BSS to New BSS Information"
5890 IE with "Last Used E-UTRAN PLMN Id" from first step. */
5891testcase TC_srvcc_eutran_to_geran_ho_out() runs on test_CT {
5892 f_tc_srvcc_eutran_to_geran_ho_out_main(false);
5893}
5894/* Validate subsequent intra-GSM-HO works the same (with OldBSSToNewBSSInfo IE)
5895 * independently of fast-reture allowed/forbidden in local BTS */
5896testcase TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() runs on test_CT {
5897 f_tc_srvcc_eutran_to_geran_ho_out_main(true);
5898}
5899
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005900private function f_tc_ho_in_fail_msc_clears(charstring id) runs on MSC_ConnHdlr {
5901 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5902 f_rslem_register(0, new_chan_nr);
5903 g_chan_nr := new_chan_nr;
5904 f_sleep(1.0);
5905
5906 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5907 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5908 activate(as_Media());
5909
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005910 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005911 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005912 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005913
5914 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5915
5916 var PDU_BSSAP rx_bssap;
5917 var octetstring ho_command_str;
5918
5919 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5920
5921 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5922 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5923 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5924 log("L3 Info in HO Request Ack is ", ho_command);
5925
5926 var GsmArfcn arfcn;
5927 var RslChannelNr actual_new_chan_nr;
5928 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5929 actual_new_chan_nr, arfcn);
5930
5931 if (actual_new_chan_nr != new_chan_nr) {
5932 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5933 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5934 setverdict(fail);
5935 return;
5936 }
5937 log("Handover Command chan_nr is", actual_new_chan_nr);
5938
Neels Hofmeyr61ca08d2019-05-06 23:52:22 +02005939 /* For deterministic test results, give some time for the MGW endpoint to be configured */
5940 f_sleep(1.0);
5941
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005942 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5943 * tells the MS to handover to the new lchan. In this case, the MS
5944 * reports a Handover Failure to the old BSS, which forwards a BSSMAP
5945 * Handover Failure to the MSC. The procedure according to 3GPP TS
5946 * 48.008 3.1.5.3.2 "Handover Failure" is then that the MSC sends a
5947 * BSSMAP Clear Command: */
5948
5949 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5950 var BssmapCause cause := enum2int(cause_val);
5951 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5952
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005953 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005954 BSSAP.receive(tr_BSSMAP_ClearComplete);
5955
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005956 setverdict(pass);
5957 f_sleep(1.0);
5958
5959 setverdict(pass);
5960}
5961testcase TC_ho_in_fail_msc_clears() runs on test_CT {
5962 var MSC_ConnHdlr vc_conn;
5963 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5964
5965 f_init(1, true);
5966 f_sleep(1.0);
5967
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005968 f_ctrs_bsc_and_bts_init();
5969
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005970 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5971 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005972
5973 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears), pars);
5974 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005975
5976 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5977 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5978 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5979 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5980 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005981 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005982}
5983
5984private function f_tc_ho_in_fail_msc_clears_after_ho_detect(charstring id) runs on MSC_ConnHdlr {
5985 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5986 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5987 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5988 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5989 * before we get started. */
5990 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5991 f_rslem_register(0, new_chan_nr);
5992 g_chan_nr := new_chan_nr;
5993 f_sleep(1.0);
5994
5995 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5996 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5997 activate(as_Media());
5998
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005999 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006000 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006001 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006002
6003 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6004
6005 var PDU_BSSAP rx_bssap;
6006 var octetstring ho_command_str;
6007
6008 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6009
6010 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6011 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6012 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6013 log("L3 Info in HO Request Ack is ", ho_command);
6014
6015 var GsmArfcn arfcn;
6016 var RslChannelNr actual_new_chan_nr;
6017 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6018 actual_new_chan_nr, arfcn);
6019
6020 if (actual_new_chan_nr != new_chan_nr) {
6021 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6022 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6023 setverdict(fail);
6024 return;
6025 }
6026 log("Handover Command chan_nr is", actual_new_chan_nr);
6027
6028 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6029 * tells the MS to handover to the new lchan. Here comes the new MS on
6030 * the new lchan with a Handover RACH: */
6031
6032 /* send handover detect */
6033
6034 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
6035
6036 BSSAP.receive(tr_BSSMAP_HandoverDetect);
6037
6038 /* The MSC chooses to clear the connection now, maybe we got the
6039 * Handover RACH on the new cell but the MS still signaled Handover
6040 * Failure to the old BSS? */
6041
6042 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6043 var BssmapCause cause := enum2int(cause_val);
6044 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6045
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006046 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006047 BSSAP.receive(tr_BSSMAP_ClearComplete);
6048
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006049 f_sleep(1.0);
6050}
6051testcase TC_ho_in_fail_msc_clears_after_ho_detect() runs on test_CT {
6052 var MSC_ConnHdlr vc_conn;
6053 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6054
6055 f_init(1, true);
6056 f_sleep(1.0);
6057
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006058 f_ctrs_bsc_and_bts_init();
6059
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006060 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6061 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006062
6063 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears_after_ho_detect), pars);
6064 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006065
6066 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6067 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
6068 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6069 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
6070 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006071 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006072}
6073
6074/* The new BSS's lchan times out before the MSC decides that handover failed. */
6075private function f_tc_ho_in_fail_no_detect(charstring id) runs on MSC_ConnHdlr {
6076 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6077 f_rslem_register(0, new_chan_nr);
6078 g_chan_nr := new_chan_nr;
6079 f_sleep(1.0);
6080
6081 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6082 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6083 activate(as_Media());
6084
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006085 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006086 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006087 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006088
6089 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6090
6091 var PDU_BSSAP rx_bssap;
6092 var octetstring ho_command_str;
6093
6094 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6095
6096 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6097 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6098 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6099 log("L3 Info in HO Request Ack is ", ho_command);
6100
6101 var GsmArfcn arfcn;
6102 var RslChannelNr actual_new_chan_nr;
6103 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6104 actual_new_chan_nr, arfcn);
6105
6106 if (actual_new_chan_nr != new_chan_nr) {
6107 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6108 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6109 setverdict(fail);
6110 return;
6111 }
6112 log("Handover Command chan_nr is", actual_new_chan_nr);
6113
6114 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6115 * tells the MS to handover to the new lchan. But the MS never shows up
6116 * on the new lchan. */
6117
6118 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6119
6120 /* Did osmo-bsc also send a Clear Request? */
6121 timer T := 0.5;
6122 T.start;
6123 alt {
6124 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
6125 [] T.timeout { }
6126 }
6127
6128 /* MSC plays along with a Clear Command (no matter whether osmo-bsc
6129 * asked for it, this is a Handover Failure after all). */
6130
6131 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
6132 var BssmapCause cause := enum2int(cause_val);
6133 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6134
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006135 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006136 BSSAP.receive(tr_BSSMAP_ClearComplete);
6137
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006138 f_sleep(1.0);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006139}
6140testcase TC_ho_in_fail_no_detect() runs on test_CT {
6141 var MSC_ConnHdlr vc_conn;
6142 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6143
6144 f_init(1, true);
6145 f_sleep(1.0);
6146
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006147 f_ctrs_bsc_and_bts_init();
6148
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006149 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6150 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006151
6152 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect), pars);
6153 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006154
6155 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6156 f_ctrs_bsc_and_bts_add(0, "handover:error");
6157 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6158 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6159 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006160 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006161}
6162
6163/* Same as f_tc_ho_in_fail_no_detect, but MSC fails to send a Clear Command */
6164private function f_tc_ho_in_fail_no_detect2(charstring id) runs on MSC_ConnHdlr {
6165 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
6166 f_rslem_register(0, new_chan_nr);
6167 g_chan_nr := new_chan_nr;
6168 f_sleep(1.0);
6169
6170 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
6171 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
6172 activate(as_Media());
6173
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006174 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006175 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02006176 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006177
6178 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
6179
6180 var PDU_BSSAP rx_bssap;
6181 var octetstring ho_command_str;
6182
6183 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
6184
6185 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
6186 log("Received L3 Info in HO Request Ack: ", ho_command_str);
6187 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
6188 log("L3 Info in HO Request Ack is ", ho_command);
6189
6190 var GsmArfcn arfcn;
6191 var RslChannelNr actual_new_chan_nr;
6192 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
6193 actual_new_chan_nr, arfcn);
6194
6195 if (actual_new_chan_nr != new_chan_nr) {
6196 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6197 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6198 setverdict(fail);
6199 return;
6200 }
6201 log("Handover Command chan_nr is", actual_new_chan_nr);
6202
6203 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6204 * tells the MS to handover to the new lchan. But the MS never shows up
6205 * on the new lchan. */
6206
6207 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6208
6209 /* MSC plays dumb and sends no Clear Command */
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006210 var PDU_BSSAP rx_clear_request;
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02006211
6212 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request {
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006213 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
6214 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6215 };
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006216 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006217 BSSAP.receive(tr_BSSMAP_ClearComplete);
6218
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006219 f_sleep(1.0);
6220}
6221testcase TC_ho_in_fail_no_detect2() runs on test_CT {
6222 var MSC_ConnHdlr vc_conn;
6223 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6224
6225 f_init(1, true);
6226 f_sleep(1.0);
6227
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006228 f_ctrs_bsc_and_bts_init();
6229
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006230 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6231 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006232
6233 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect2), pars);
6234 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006235
6236 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6237 f_ctrs_bsc_and_bts_add(0, "handover:error");
6238 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6239 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6240 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006241 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006242}
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01006243
Neels Hofmeyr91401012019-07-11 00:42:35 +02006244type record of charstring Commands;
6245
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006246private function f_bts_0_cfg(TELNETasp_PT pt, Commands cmds := {})
Neels Hofmeyr91401012019-07-11 00:42:35 +02006247{
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006248 f_vty_enter_cfg_bts(pt, 0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006249 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006250 f_vty_transceive(pt, cmds[i]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006251 }
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006252 f_vty_transceive(pt, "end");
Neels Hofmeyr91401012019-07-11 00:42:35 +02006253}
6254
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01006255private function f_cs7_inst_0_cfg(TELNETasp_PT pt, Commands cmds := {})
6256{
6257 f_vty_enter_cfg_cs7_inst(pt, 0);
6258 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
6259 f_vty_transceive(pt, cmds[i]);
6260 }
6261 f_vty_transceive(pt, "end");
6262}
6263
Neels Hofmeyr91401012019-07-11 00:42:35 +02006264private function f_probe_for_handover(charstring log_label,
6265 charstring log_descr,
6266 charstring handover_vty_cmd,
6267 boolean expect_handover,
6268 boolean is_inter_bsc_handover := false)
6269runs on MSC_ConnHdlr
6270{
Neels Hofmeyrb3fc8982020-05-11 00:16:42 +02006271 /* We're going to thwart any and all handover attempts, just be ready to handle (and ignore) handover target
6272 * lchans to be established on bts 1 or bts 2. */
6273 f_rslem_suspend(RSL1_PROC);
6274 f_rslem_suspend(RSL2_PROC);
6275
Neels Hofmeyr91401012019-07-11 00:42:35 +02006276 var RSL_Message rsl;
6277
6278 var charstring log_msg := " (expecting handover)"
6279 if (not expect_handover) {
6280 log_msg := " (expecting NO handover)";
6281 }
6282 log("f_probe_for_handover starting: " & log_label & ": " & log_descr & log_msg);
6283 f_vty_transceive(BSCVTY, handover_vty_cmd);
6284
Neels Hofmeyr91401012019-07-11 00:42:35 +02006285 timer T := 2.0;
6286 T.start;
6287
6288 alt {
6289 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
6290 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
6291 log("Rx L3 from net: ", l3);
6292 if (ischosen(l3.msgs.rrm.handoverCommand)) {
6293 var RslChannelNr new_chan_nr;
6294 var GsmArfcn arfcn;
6295 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
6296 new_chan_nr, arfcn);
6297 log("Handover to new chan ", new_chan_nr, " on ARFCN ", arfcn);
6298 log(l3.msgs.rrm.handoverCommand);
6299
6300 /* Need to register for new lchan on new BTS -- it's either bts 1 or bts 2. It doesn't really
6301 * matter on which BTS it really is, we're not going to follow through an entire handover
6302 * anyway. */
6303 f_rslem_register(0, new_chan_nr, RSL1_PROC);
6304 f_rslem_resume(RSL1_PROC);
6305 f_rslem_register(0, new_chan_nr, RSL2_PROC);
6306 f_rslem_resume(RSL2_PROC);
6307
6308 if (expect_handover and not is_inter_bsc_handover) {
6309 setverdict(pass);
6310 log("f_probe_for_handover(" & log_label & "): Got RSL Handover Command as expected.");
6311 } else {
6312 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got RSL Handover Command. "
6313 & log_label & ": " & log_descr);
6314 }
6315
6316 log("f_probe_for_handover(" & log_label & "): Ending the test: Handover Failure stops the procedure.");
6317 /* osmo-bsc has triggered Handover. That's all we need to know for this test, reply with
6318 * Handover Failure. */
6319 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
6320
6321 /* target BTS is told to release lchan again; don't care which BTS nor what messages. */
6322 f_sleep(0.5);
6323 RSL1.clear;
6324 RSL2.clear;
6325 log("f_probe_for_handover(" & log_label & "): done (got RSL Handover Command)");
6326 break;
6327 } else {
6328 repeat;
6329 }
6330 }
6331 [] BSSAP.receive(tr_BSSMAP_HandoverRequired) {
6332 if (expect_handover and is_inter_bsc_handover) {
6333 setverdict(pass);
6334 log("f_probe_for_handover(" & log_label & "): Got BSSMAP Handover Required as expected.");
6335 } else {
6336 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got BSSMAP Handover Required. "
6337 & log_label & ": " & log_descr);
6338 }
6339
6340 log("f_probe_for_handover(" & log_label & "): done (got BSSMAP Handover Required)");
6341
6342 /* Note: f_tc_ho_neighbor_config_start() sets T7, the timeout for BSSMAP Handover Required, to
6343 * 1 second. There is no legal way to quickly abort a handover after a BSSMAP Handover Required,
6344 * setting a short timeout and waiting is the only way. */
6345 log("f_probe_for_handover(" & log_label & "): waiting for inter-BSC HO to time out...");
6346 f_sleep(1.5);
6347 log("f_probe_for_handover(" & log_label & "): ...done");
6348
6349 break;
6350 }
6351 [] T.timeout {
6352 if (expect_handover) {
6353 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected Handover, but got none. "
6354 & log_label & ": " & log_descr);
6355 } else {
6356 setverdict(pass);
6357 log("f_probe_for_handover(" & log_label & "): Got no Handover, as expected.");
6358 }
6359 log("f_probe_for_handover(" & log_label & "): done (got no Handover)");
6360 break;
6361 }
6362 }
6363
6364 f_rslem_resume(RSL1_PROC);
6365 f_rslem_resume(RSL2_PROC);
6366 f_sleep(3.0);
6367 RSL.clear;
6368
6369 log("f_probe_for_handover(" & log_label & "): done clearing");
6370}
6371
6372/* Test the effect of various neighbor configuration scenarios:
6373 *
6374 * To avoid complexity, block off any actual handover operation, and always remain on the lchan at bts 0.
6375 * Reconfigure the neighbors for bts 0, trigger a Handover, and probe whether osmo-bsc does or doesn't start HO.
6376 */
6377private function f_tc_ho_neighbor_config_start() runs on MSC_ConnHdlr {
6378 g_pars := f_gen_test_hdlr_pars();
6379 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
6380 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006381
6382 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
6383 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
6384
6385 /* Establish lchan at bts 0 */
6386 f_establish_fully(ass_cmd, exp_compl);
6387
6388 /* Shorten the inter-BSC Handover timeout, to not wait so long for inter-BSC Handovers */
6389 f_vty_enter_cfg_network(BSCVTY);
6390 f_vty_transceive(BSCVTY, "timer T7 1");
6391 f_vty_transceive(BSCVTY, "end");
6392}
6393
6394private function f_tc_ho_neighbor_config_1(charstring id) runs on MSC_ConnHdlr {
6395 f_tc_ho_neighbor_config_start();
6396
6397 /*
6398 * bts 0 ARFCN 871 BSIC 10
6399 * bts 1 ARFCN 871 BSIC 11
6400 * bts 2 ARFCN 871 BSIC 12
6401 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6402 */
6403
6404 log("f_tc_ho_neighbor_config: 1. No 'neighbor' config");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006405 f_bts_0_cfg(BSCVTY, {"no neighbors"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006406 f_probe_for_handover("1.a", "HO to bts 1 works, implicitly listed as neighbor (legacy behavior when none are configured)",
6407 "handover any to arfcn 871 bsic 11",
6408 true);
6409
6410 f_probe_for_handover("1.b", "HO to unknown cell does not start",
6411 "handover any to arfcn 13 bsic 39",
6412 false);
6413
6414 f_probe_for_handover("1.c", "HO to 871-12 is ambiguous = error",
6415 "handover any to arfcn 871 bsic 12",
6416 false);
6417
6418 f_probe_for_handover("1.d", "HO to 871-11 still works (verify that this test properly cleans up)",
6419 "handover any to arfcn 871 bsic 11",
6420 true);
6421}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006422testcase TC_ho_neighbor_config_1() runs on test_CT {
6423 var MSC_ConnHdlr vc_conn;
6424 f_init(3, true, guard_timeout := 60.0);
6425 f_sleep(1.0);
6426 f_ctrs_bsc_and_bts_init();
6427 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_1));
6428 vc_conn.done;
6429
6430 /* f_tc_ho_neighbor_config_start() */
6431 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6432 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6433
6434 /* 1.a */
6435 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6436 * handover quickly by sending a Handover Failure message. */
6437 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6438 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6439 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6440 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6441
6442 /* 1.b */
6443 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6444 f_ctrs_bsc_and_bts_add(0, "handover:error");
6445
6446 /* 1.c */
6447 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6448 f_ctrs_bsc_and_bts_add(0, "handover:error");
6449
6450 /* 1.d */
6451 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6452 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6453 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6454 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6455
6456 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006457 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006458}
6459
Neels Hofmeyr91401012019-07-11 00:42:35 +02006460private function f_tc_ho_neighbor_config_2(charstring id) runs on MSC_ConnHdlr {
6461 f_tc_ho_neighbor_config_start();
6462
6463 /*
6464 * bts 0 ARFCN 871 BSIC 10
6465 * bts 1 ARFCN 871 BSIC 11
6466 * bts 2 ARFCN 871 BSIC 12
6467 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6468 */
6469
6470 log("f_tc_ho_neighbor_config: 2. explicit local neighbor: 'neighbor bts 1'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006471 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006472 f_sleep(0.5);
6473
6474 f_probe_for_handover("2.a", "HO to bts 1 works, explicitly listed as neighbor",
6475 "handover any to arfcn 871 bsic 11",
6476 true);
6477
6478 f_probe_for_handover("2.b", "HO to bts 2 doesn't work, not listed as neighbor",
6479 "handover any to arfcn 871 bsic 12",
6480 false);
6481}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006482testcase TC_ho_neighbor_config_2() runs on test_CT {
6483 var MSC_ConnHdlr vc_conn;
6484 f_init(3, true, guard_timeout := 50.0);
6485 f_sleep(1.0);
6486 f_ctrs_bsc_and_bts_init();
6487 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_2));
6488 vc_conn.done;
6489
6490 /* f_tc_ho_neighbor_config_start() */
6491 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6492 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6493
6494 /* 2.a */
6495 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6496 * handover quickly by sending a Handover Failure message. */
6497 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6498 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6499 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6500 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6501
6502 /* 2.b */
6503 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6504 f_ctrs_bsc_and_bts_add(0, "handover:error");
6505
6506 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006507 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006508}
6509
Neels Hofmeyr91401012019-07-11 00:42:35 +02006510private function f_tc_ho_neighbor_config_3(charstring id) runs on MSC_ConnHdlr {
6511 f_tc_ho_neighbor_config_start();
6512
6513 /*
6514 * bts 0 ARFCN 871 BSIC 10
6515 * bts 1 ARFCN 871 BSIC 11
6516 * bts 2 ARFCN 871 BSIC 12
6517 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6518 */
6519
6520 log("f_tc_ho_neighbor_config: 3. explicit local neighbor: 'neighbor bts 2'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006521 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006522 f_sleep(0.5);
6523
6524 f_probe_for_handover("3.a", "HO to bts 1 doesn't work, not listed as neighbor",
6525 "handover any to arfcn 871 bsic 11",
6526 false);
6527 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",
6528 "handover any to arfcn 871 bsic 12",
6529 true);
6530}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006531testcase TC_ho_neighbor_config_3() runs on test_CT {
6532 var MSC_ConnHdlr vc_conn;
6533 f_init(3, true, guard_timeout := 50.0);
6534 f_sleep(1.0);
6535 f_ctrs_bsc_and_bts_init();
6536 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_3));
6537 vc_conn.done;
6538
6539 /* f_tc_ho_neighbor_config_start() */
6540 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6541 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6542
6543 /* 3.a */
6544 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6545 f_ctrs_bsc_and_bts_add(0, "handover:error");
6546
6547 /* 3.b */
6548 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6549 * handover quickly by sending a Handover Failure message. */
6550 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6551 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6552 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6553 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6554
6555 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006556 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006557}
6558
Neels Hofmeyr91401012019-07-11 00:42:35 +02006559private function f_tc_ho_neighbor_config_4(charstring id) runs on MSC_ConnHdlr {
6560 f_tc_ho_neighbor_config_start();
6561
6562 /*
6563 * bts 0 ARFCN 871 BSIC 10
6564 * bts 1 ARFCN 871 BSIC 11
6565 * bts 2 ARFCN 871 BSIC 12
6566 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6567 */
6568
6569 log("f_tc_ho_neighbor_config: 4. explicit remote neighbor: 'neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006570 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006571 f_sleep(0.5);
6572
6573 f_probe_for_handover("4.a", "HO to bts 1 doesn't work, not listed as neighbor",
6574 "handover any to arfcn 871 bsic 11",
6575 false);
6576 f_probe_for_handover("4.b", "HO to bts 2 doesn't work, not listed as neighbor",
6577 "handover any to arfcn 871 bsic 12",
6578 false);
6579 f_probe_for_handover("4.c", "HO to 123-45 triggers inter-BSC HO",
6580 "handover any to arfcn 123 bsic 45",
6581 true, true);
6582}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006583testcase TC_ho_neighbor_config_4() runs on test_CT {
6584 var MSC_ConnHdlr vc_conn;
6585 f_init(3, true, guard_timeout := 50.0);
6586 f_sleep(1.0);
6587 f_ctrs_bsc_and_bts_init();
6588 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_4));
6589 vc_conn.done;
6590
6591 /* f_tc_ho_neighbor_config_start() */
6592 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6593 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6594
6595 /* 4.a */
6596 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6597 f_ctrs_bsc_and_bts_add(0, "handover:error");
6598
6599 /* 4.b */
6600 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6601 f_ctrs_bsc_and_bts_add(0, "handover:error");
6602
6603 /* 4.c */
6604 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6605 * handover quickly by timing out after the Handover Required message */
6606 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6607 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6608 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6609 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6610
6611 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006612 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006613}
6614
Neels Hofmeyr91401012019-07-11 00:42:35 +02006615private function f_tc_ho_neighbor_config_5(charstring id) runs on MSC_ConnHdlr {
6616 f_tc_ho_neighbor_config_start();
6617
6618 /*
6619 * bts 0 ARFCN 871 BSIC 10
6620 * bts 1 ARFCN 871 BSIC 11
6621 * bts 2 ARFCN 871 BSIC 12
6622 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6623 */
6624
6625 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 +02006626 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006627 f_sleep(0.5);
6628
6629 f_probe_for_handover("5.a", "HO to 871-12 triggers inter-BSC HO (ignoring local cells with same ARFCN+BSIC)",
6630 "handover any to arfcn 871 bsic 12",
6631 true, true);
6632}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006633testcase TC_ho_neighbor_config_5() runs on test_CT {
6634 var MSC_ConnHdlr vc_conn;
6635 f_init(3, true);
6636 f_sleep(1.0);
6637 f_ctrs_bsc_and_bts_init();
6638 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_5));
6639 vc_conn.done;
6640
6641 /* f_tc_ho_neighbor_config_start() */
6642 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6643 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6644
6645 /* 5 */
6646 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6647 * handover quickly by timing out after the Handover Required message */
6648 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6649 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6650 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6651 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6652
6653 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006654 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006655}
6656
Neels Hofmeyr91401012019-07-11 00:42:35 +02006657private function f_tc_ho_neighbor_config_6(charstring id) runs on MSC_ConnHdlr {
6658 f_tc_ho_neighbor_config_start();
6659
6660 /*
6661 * bts 0 ARFCN 871 BSIC 10
6662 * bts 1 ARFCN 871 BSIC 11
6663 * bts 2 ARFCN 871 BSIC 12
6664 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6665 */
6666
6667 log("f_tc_ho_neighbor_config: 6. config error: explicit local and remote neighbors with ambiguous ARFCN+BSIC:"
6668 & " 'neighbor bts 2; neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006669 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006670 f_sleep(0.5);
6671
6672 f_probe_for_handover("6.a", "HO to 871-12 is ambiguous = error",
6673 "handover any to arfcn 871 bsic 12",
6674 false);
6675}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006676testcase TC_ho_neighbor_config_6() runs on test_CT {
6677 var MSC_ConnHdlr vc_conn;
6678 f_init(3, true);
6679 f_sleep(1.0);
6680 f_ctrs_bsc_and_bts_init();
6681 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_6));
6682 vc_conn.done;
6683
6684 /* f_tc_ho_neighbor_config_start() */
6685 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6686 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6687
6688 /* 6.a */
6689 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6690 * handover quickly by timing out after the Handover Required message */
6691 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6692 f_ctrs_bsc_and_bts_add(0, "handover:error");
6693
6694 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006695 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006696}
6697
Neels Hofmeyr91401012019-07-11 00:42:35 +02006698private function f_tc_ho_neighbor_config_7(charstring id) runs on MSC_ConnHdlr {
6699 f_tc_ho_neighbor_config_start();
6700
6701 /*
6702 * bts 0 ARFCN 871 BSIC 10
6703 * bts 1 ARFCN 871 BSIC 11
6704 * bts 2 ARFCN 871 BSIC 12
6705 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6706 */
6707
6708 log("f_tc_ho_neighbor_config: 7. explicit local and remote neighbors:"
6709 & " 'neighbor bts 2; neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006710 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006711 f_sleep(0.5);
6712
6713 f_probe_for_handover("7.a", "HO to 871-12 does HO to bts 2",
6714 "handover any to arfcn 871 bsic 12",
6715 true);
6716 f_probe_for_handover("7.b", "HO to 123-45 triggers inter-BSC HO",
6717 "handover any to arfcn 123 bsic 45",
6718 true, true);
6719}
Neels Hofmeyr91401012019-07-11 00:42:35 +02006720testcase TC_ho_neighbor_config_7() runs on test_CT {
6721 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf2b88032020-06-16 00:35:04 +02006722 f_init(3, true, guard_timeout := 50.0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006723 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006724 f_ctrs_bsc_and_bts_init();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006725 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_7));
6726 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006727
6728 /* f_tc_ho_neighbor_config_start() */
6729 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6730 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6731
6732 /* 7.a */
6733 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6734 * handover quickly by sending a Handover Failure message. */
6735 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6736 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6737 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6738 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6739
6740 /* 7.b */
6741 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6742 * handover quickly by timing out after the Handover Required message */
6743 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6744 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6745 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6746 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6747
6748 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006749 f_shutdown_helper();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006750}
6751
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006752/* OS#3041: Open and close N connections in a normal fashion, and expect no
6753 * BSSMAP Reset just because of that. */
6754testcase TC_bssap_rlsd_does_not_cause_bssmap_reset() runs on test_CT {
6755 var default d;
6756 var integer i;
6757 var DchanTuple dt;
6758
6759 f_init();
6760
6761 /* Wait for initial BSSMAP Reset to pass */
6762 f_sleep(4.0);
6763
6764 d := activate(no_bssmap_reset());
6765
6766 /* Setup up a number of connections and RLSD them again from the MSC
6767 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6768 * Let's do it some more times for good measure. */
Harald Weltec3260d92018-06-11 17:48:16 +02006769 for (i := 0; i < 4; i := i+1) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006770 /* Since we're doing a lot of runs, give each one a fresh
6771 * T_guard from the top. */
6772 T_guard.start;
6773
6774 /* Setup a BSSAP connection and clear it right away. This is
6775 * the MSC telling the BSC about a planned release, it's not an
6776 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006777 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006778
6779 /* MSC disconnects (RLSD). */
6780 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
6781 }
6782
6783 /* In the buggy behavior, a timeout of 2 seconds happens between above
6784 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6785 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6786 f_sleep(4.0);
6787
6788 deactivate(d);
6789 f_shutdown_helper();
6790}
Harald Welte552620d2017-12-16 23:21:36 +01006791
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006792/* OS#3041: Open and close N connections in a normal fashion, and expect no
6793 * BSSMAP Reset just because of that. Invoke the release by a BSSMAP Clear from
6794 * the MSC. */
6795testcase TC_bssmap_clear_does_not_cause_bssmap_reset() runs on test_CT {
6796 var default d;
6797 var integer i;
6798 var DchanTuple dt;
6799 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006800 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_CALL_CONTROL;
6801 var BssmapCause cause := enum2int(cause_val);
6802
6803 f_init();
6804
6805 /* Wait for initial BSSMAP Reset to pass */
6806 f_sleep(4.0);
6807
6808 d := activate(no_bssmap_reset());
6809
6810 /* Setup up a number of connections and RLSD them again from the MSC
6811 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6812 * Let's do it some more times for good measure. */
6813 for (i := 0; i < 8; i := i+1) {
6814 /* Since we're doing a lot of runs, give each one a fresh
6815 * T_guard from the top. */
6816 T_guard.start;
6817
6818 /* Setup a BSSAP connection and clear it right away. This is
6819 * the MSC telling the BSC about a planned release, it's not an
6820 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006821 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006822
6823 /* Instruct BSC to clear channel */
6824 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6825
6826 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006827 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006828 }
6829
6830 /* In the buggy behavior, a timeout of 2 seconds happens between above
6831 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6832 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6833 f_sleep(4.0);
6834
6835 deactivate(d);
6836 f_shutdown_helper();
6837}
6838
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006839/* OS#3041: Open and close N connections in a normal fashion, and expect no
6840 * BSSMAP Reset just because of that. Close connections from the MS side with a
6841 * Release Ind on RSL. */
6842testcase TC_ms_rel_ind_does_not_cause_bssmap_reset() runs on test_CT {
6843 var default d;
6844 var integer i;
6845 var DchanTuple dt;
6846 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006847 var integer j;
6848
6849 f_init();
6850
6851 /* Wait for initial BSSMAP Reset to pass */
6852 f_sleep(4.0);
6853
6854 d := activate(no_bssmap_reset());
6855
6856 /* Setup up a number of connections and RLSD them again from the MSC
6857 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6858 * Let's do it some more times for good measure. */
6859 for (i := 0; i < 8; i := i+1) {
6860 /* Since we're doing a lot of runs, give each one a fresh
6861 * T_guard from the top. */
6862 T_guard.start;
6863
6864 /* Setup a BSSAP connection and clear it right away. This is
6865 * the MSC telling the BSC about a planned release, it's not an
6866 * erratic loss of a connection. */
6867 dt := f_est_dchan('23'O, 23, '00010203040506'O);
6868
6869 /* simulate RLL REL IND */
6870 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
6871
6872 /* expect Clear Request on MSC side */
6873 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
6874
6875 /* Instruct BSC to clear channel */
6876 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
6877 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6878
6879 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006880 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006881 }
6882
6883 /* In the buggy behavior, a timeout of 2 seconds happens between above
6884 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6885 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6886 f_sleep(4.0);
6887
6888 deactivate(d);
6889 f_shutdown_helper();
6890}
6891
Harald Welte94e0c342018-04-07 11:33:23 +02006892/***********************************************************************
6893 * IPA style dynamic PDCH
6894 ***********************************************************************/
6895
6896private function f_dyn_ipa_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6897 template (omit) RSL_Cause nack := omit)
6898runs on test_CT {
6899 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6900 var RSL_Message rsl_unused;
6901 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6902 f_vty_ts_action("pdch activate", bts_nr, trx_nr, ts_nr);
6903 /* expect the BSC to issue the related RSL command */
6904 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6905 if (istemplatekind(nack, "omit")) {
6906 /* respond with a related acknowledgement */
6907 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6908 } else {
6909 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_NACK(chan_nr, valueof(nack)));
6910 }
6911}
6912
6913private function f_dyn_ipa_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6914 template (omit) RSL_Cause nack := omit)
6915runs on test_CT {
6916 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6917 var RSL_Message rsl_unused;
6918 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6919 f_vty_ts_action("pdch deactivate", bts_nr, trx_nr, ts_nr);
6920 /* expect the BSC to issue the related RSL command */
6921 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_DEACT(chan_nr));
6922 if (istemplatekind(nack, "omit")) {
6923 /* respond with a related acknowledgement */
6924 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_ACK(chan_nr));
6925 } else {
6926 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_NACK(chan_nr, valueof(nack)));
6927 }
6928}
6929
6930private function f_ts_dyn_mode_get(integer bts_nr, integer trx_nr, integer ts_nr)
6931runs on test_CT return charstring {
6932 var charstring cmd, resp;
6933 cmd := "show timeslot "&int2str(bts_nr)&" "&int2str(trx_nr)&" "&int2str(ts_nr);
Stefan Sperlingcff13562018-11-13 15:24:06 +01006934 return f_vty_transceive_match_regexp_retry(BSCVTY, cmd, "*\((*)\)*", 0, 4, 1.0);
Harald Welte94e0c342018-04-07 11:33:23 +02006935}
6936
6937private function f_ts_dyn_mode_assert(integer bts_nr, integer trx_nr, integer ts_nr,
6938 template charstring exp)
6939runs on test_CT {
6940 var charstring mode := f_ts_dyn_mode_get(bts_nr, trx_nr, ts_nr);
6941 if (not match(mode, exp)) {
6942 setverdict(fail, "Unexpected TS Mode: ", mode);
Daniel Willmannafce8662018-07-06 23:11:32 +02006943 mtc.stop;
Harald Welte94e0c342018-04-07 11:33:23 +02006944 }
6945}
6946
6947private function f_ts_set_chcomb(integer bts_nr, integer trx_nr, integer ts_nr, charstring chcomb)
6948runs on test_CT {
6949 f_vty_enter_cfg_ts(BSCVTY, bts_nr, trx_nr, ts_nr);
6950 f_vty_transceive(BSCVTY, "phys_chan_config " & chcomb);
6951 f_vty_transceive(BSCVTY, "end");
6952}
6953
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02006954
6955private function f_ts_reset_chcomb(integer bts_nr) runs on test_CT {
6956 var integer i;
6957 for (i := 0; i < 8; i := i + 1) {
6958 f_ts_set_chcomb(bts_nr, 0, i, phys_chan_config[i]);
6959 }
6960}
6961
Harald Welte94e0c342018-04-07 11:33:23 +02006962private const charstring TCHF_MODE := "TCH/F mode";
6963private const charstring TCHH_MODE := "TCH/H mode";
6964private const charstring PDCH_MODE := "PDCH mode";
6965private const charstring NONE_MODE := "NONE mode";
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006966private const charstring SDCCH8_MODE := "SDCCH8 mode";
Harald Welte94e0c342018-04-07 11:33:23 +02006967
6968/* Test IPA PDCH activation / deactivation triggered by VTY */
6969testcase TC_dyn_pdch_ipa_act_deact() runs on test_CT {
6970 var RSL_Message rsl_unused;
6971
6972 /* change Timeslot 6 before f_init() starts RSL */
6973 f_init_vty();
6974 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6975 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6976
6977 f_init(1, false);
6978 f_sleep(1.0);
6979
6980 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6981
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006982 log("TCH/F_PDCH pchan starts out in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006983 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6984 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6985 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6986 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6987 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006988 log("TCH/F_PDCH pchan, PDCH ACT was ACKed, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006989 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6990
6991 /* De-activate it via VTY */
6992 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6993 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006994 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006995 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6996
6997 /* re-activate it via VTY */
6998 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn);
6999 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007000 log("TCH/F_PDCH pchan, PDCH ACT via VTY, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007001 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7002
7003 /* and finally de-activate it again */
7004 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7005 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007006 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007007 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7008
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007009 /* clean up config */
7010 f_ts_set_chcomb(0, 0, 6, "PDCH");
7011
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007012 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007013}
7014
7015/* Test IPA PDCH activation NACK */
7016testcase TC_dyn_pdch_ipa_act_nack() runs on test_CT {
7017 var RSL_Message rsl_unused;
7018
7019 /* change Timeslot 6 before f_init() starts RSL */
7020 f_init_vty();
7021 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
7022 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7023
7024 f_init(1, false);
7025 f_sleep(1.0);
7026
7027 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
7028
7029 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7030 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7031 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
7032 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
7033 f_sleep(1.0);
7034 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7035
7036 /* De-activate it via VTY */
7037 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
7038 f_sleep(1.0);
7039 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7040
7041 /* re-activate it via VTY, but fail that; check BSC still assumes TCH/F mode */
7042 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn, RSL_ERR_EQUIPMENT_FAIL);
7043 f_sleep(1.0);
7044 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
7045
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007046 /* clean up config */
7047 f_ts_set_chcomb(0, 0, 6, "PDCH");
7048
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007049 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007050}
7051
7052
7053/***********************************************************************
7054 * Osmocom style dynamic PDCH
7055 ***********************************************************************/
7056
7057private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
7058 template (omit) RSL_Cause nack := omit)
7059runs on test_CT {
7060 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7061 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007062 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007063 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7064 /* expect the BSC to issue the related RSL command */
7065 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
7066 if (istemplatekind(nack, "omit")) {
7067 /* respond with a related acknowledgement */
7068 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7069 } else {
7070 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, valueof(nack)));
7071 }
7072}
7073
7074private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
7075 template (omit) RSL_Cause nack := omit)
7076runs on test_CT {
7077 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
7078 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02007079 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02007080 /* FIXME: no VTY command to activate Osmocom PDCH !! */
7081 /* expect the BSC to issue the related RSL command */
7082 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
7083 if (istemplatekind(nack, "omit")) {
7084 /* respond with a related acknowledgement */
7085 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
7086 } else {
7087 //f_ipa_tx(0, ts_RSL_RF_CHAN_REL_NACK(chan_nr, valueof(nack)));
7088 }
7089}
7090
7091/* Test Osmocom dyn PDCH activation / deactivation triggered by VTY */
7092testcase TC_dyn_pdch_osmo_act_deact() runs on test_CT {
7093 var RSL_Message rsl_unused;
7094
7095 /* change Timeslot 6 before f_init() starts RSL */
7096 f_init_vty();
7097 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7098 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7099
7100 f_init(1, false);
7101 f_sleep(1.0);
7102
7103 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7104
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007105 log("TCH/F_TCH/H_PDCH pchan starts out in disabled mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02007106 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7107 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7108 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7109
7110 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
7111 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02007112 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 +02007113 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
7114
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007115 /* clean up config */
7116 f_ts_set_chcomb(0, 0, 6, "PDCH");
7117
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007118 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007119}
7120
7121/* Test Osmocom dyn PDCH activation NACK behavior */
7122testcase TC_dyn_pdch_osmo_act_nack() runs on test_CT {
7123 var RSL_Message rsl_unused;
7124
7125 /* change Timeslot 6 before f_init() starts RSL */
7126 f_init_vty();
7127 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
7128 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7129
7130 f_init(1, false);
7131 f_sleep(1.0);
7132
7133 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
7134
7135 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7136 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7137 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
7138
7139 /* NACK this activation and expect the "show timeslot" mode still to be NONE */
7140 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7141 f_sleep(1.0);
7142 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
7143
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02007144 /* clean up config */
7145 f_ts_set_chcomb(0, 0, 6, "PDCH");
7146
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007147 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02007148}
7149
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02007150/* Test Osmocom dyn TS SDCCH8 activation / deactivation */
7151testcase TC_dyn_ts_sdcch8_act_deact() runs on test_CT {
7152 var RSL_Message rsl_unused, rsl_msg;
7153 var DchanTuple dt;
7154 var BSSAP_N_CONNECT_ind rx_c_ind;
7155
7156 /* change Timeslot 6 before f_init() starts RSL */
7157 f_init_vty();
7158 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7159 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7160
7161 f_init(1, false);
7162 f_sleep(1.0);
7163
7164 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7165
7166 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7167 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7168 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7169 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7170
7171 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7172 f_sleep(1.0);
7173 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7174 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7175
7176 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7177 * on CCCH+SDCCH4+CBCH) */
7178 var integer i;
7179 for (i := 0; i < 3; i := i + 1) {
7180 dt := f_est_dchan('23'O, i, '00010203040506'O);
7181 }
7182
7183 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7184 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7185 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7186 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7187
7188 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7189 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7190
7191 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7192 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7193 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7194 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7195
7196 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7197 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7198 dt.sccp_conn_id := rx_c_ind.connectionId;
7199 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7200
7201 /* Instruct BSC to clear channel */
7202 var BssmapCause cause := 0;
7203 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7204 f_exp_chan_rel_and_clear(dt, 0);
7205
7206 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7207 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7208 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7209 f_sleep(1.0);
7210 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7211
7212 /* clean up config */
7213 f_ts_set_chcomb(0, 0, 6, "PDCH");
7214
7215 f_shutdown_helper();
7216}
7217
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007218/* Test Osmocom dyn TS SDCCH8 activation / deactivation: If activating dyn TS as
7219 SDCCH8 would end up in having no free TCH, then BSC should decide to activate
7220 it as TCH directly instead. SYS#5309. */
7221testcase TC_dyn_ts_sdcch8_tch_call_act_deact() runs on test_CT {
7222 var RSL_Message rsl_unused, rsl_msg;
7223 var DchanTuple dt;
7224 var BSSAP_N_CONNECT_ind rx_c_ind;
7225 var integer i;
7226
7227 /* change Timeslot 6 before f_init() starts RSL */
7228 f_init_vty();
7229 for (i := 1; i < 8; i := i + 1) {
7230 if (i == 6) {
7231 f_ts_set_chcomb(0, 0, i, "TCH/F_TCH/H_SDCCH8_PDCH");
7232 } else {
7233 f_ts_set_chcomb(0, 0, i, "PDCH");
7234 }
7235 }
7236 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7237
7238 f_init(1, false);
7239 f_sleep(1.0);
7240
7241 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7242
7243 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7244 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7245 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7246 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7247
7248 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7249 f_sleep(1.0);
7250 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7251 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7252
7253 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7254 * on CCCH+SDCCH4+CBCH) */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007255 var OCT1 ra := '43'O; /* RA containing reason=originating speech call*/
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007256 for (i := 0; i < 3; i := i + 1) {
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007257 dt := f_est_dchan(ra, i, '00010203040506'O);
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007258 }
7259
7260 /* Now the dyn ts is selected. First PDCH is released, then TCH chan is activated */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007261 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int(ra) + i, 1), 2342));
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007262 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7263 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7264
7265 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7266 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7267
7268 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7269 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7270 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7271 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7272
7273 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7274 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7275 dt.sccp_conn_id := rx_c_ind.connectionId;
7276 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7277
7278 /* Instruct BSC to clear channel */
7279 var BssmapCause cause := 0;
7280 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7281 f_exp_chan_rel_and_clear(dt, 0);
7282
7283 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7284 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7285 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7286 f_sleep(1.0);
7287 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7288
7289 /* clean up config */
7290 f_ts_reset_chcomb(0);
7291 /* TODO: clean up other channels? */
7292
7293 f_shutdown_helper();
7294}
7295
Pau Espin Pedrolcdf26142021-06-28 17:14:03 +02007296/* Test Osmocom dyn TS SDCCH8 activation / deactivation when SDCCH fails at BTS */
7297testcase TC_dyn_ts_sdcch8_act_nack() runs on test_CT {
7298 var RSL_Message rsl_unused, rsl_msg;
7299 var DchanTuple dt;
7300 var BSSAP_N_CONNECT_ind rx_c_ind;
7301 var GsmRrMessage rr;
7302
7303 /* change Timeslot 6 before f_init() starts RSL */
7304 f_init_vty();
7305 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7306 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7307
7308 f_init(1, false);
7309 f_sleep(1.0);
7310
7311 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7312
7313 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7314 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7315 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7316 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7317
7318 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7319 f_sleep(1.0);
7320 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7321 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7322
7323 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7324 * on CCCH+SDCCH4+CBCH) */
7325 var integer i;
7326 for (i := 0; i < 3; i := i + 1) {
7327 dt := f_est_dchan('23'O, i, '00010203040506'O);
7328 }
7329
7330 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7331 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7332 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7333 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7334
7335 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7336 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7337
7338 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7339 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(dt.rsl_chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7340 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7341 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
7342 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
7343 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Expected reject");
7344 }
7345
7346 /* FIXME? Currently the TS stays in state BORKEN: */
7347
7348 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7349 /* rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7350 * f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7351 * f_sleep(1.0);
7352 * f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE)
7353 */
7354
7355 /* clean up config */
7356 f_ts_set_chcomb(0, 0, 6, "PDCH");
7357
7358 f_shutdown_helper();
7359}
7360
Stefan Sperling0796a822018-10-05 13:01:39 +02007361testcase TC_chopped_ipa_ping() runs on test_CT {
Stefan Sperling554123f2018-10-09 14:12:30 +02007362 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port, mp_bsc_ctrl_port};
Stefan Sperling0796a822018-10-05 13:01:39 +02007363 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7364 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7365 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007366 f_shutdown_helper();
Stefan Sperling0796a822018-10-05 13:01:39 +02007367}
7368
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007369testcase TC_chopped_ipa_payload() runs on test_CT {
7370 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port
7371 /* TODO: mp_bsc_ctrl_port does not work yet */};
7372 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7373 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7374 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007375 f_shutdown_helper();
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007376}
7377
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007378/* Verify the BSC sends the MS Power Parameters IE during CHAN ACT to make sure
7379 the BTS does autonomous MS power control loop */
7380testcase TC_assignment_verify_ms_power_params_ie() runs on test_CT {
7381 var MSC_ConnHdlr vc_conn;
7382 var TestHdlrParams pars := f_gen_test_hdlr_pars();
7383 //pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
7384 pars.exp_ms_power_params := true;
7385
7386 f_init(1, true);
7387 f_sleep(1.0);
7388 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
7389 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007390 f_shutdown_helper();
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007391}
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007392
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02007393/* Verify activation and deactivation of the BCCH carrier power reduction mode */
7394testcase TC_c0_power_red_mode() runs on test_CT {
7395 f_init(1);
7396
7397 for (var integer red := 6; red >= 0; red := red - 2) {
7398 /* Configure BCCH carrier power reduction mode via the VTY */
7399 f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
7400
7401 /* Expect Osmocom specific BS Power Control message on the RSL */
7402 var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
7403 chan_nr := t_RslChanNr_BCCH(0),
7404 bs_power := tr_RSL_IE_BS_Power(red / 2));
7405 tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
7406 var RSL_Message unused := f_exp_ipa_rx(0, tr_rsl_pdu);
7407
7408 /* Additionally verify the applied value over the CTRL interface */
7409 var CtrlValue cred := f_ctrl_get_bts(IPA_CTRL, 0, "c0-power-reduction");
7410 if (cred != int2str(red)) {
7411 setverdict(fail, "Unexpected BCCH carrier power reduction value ",
7412 cred, " (expected ", red, ")");
7413 }
7414 }
7415
7416 f_shutdown_helper();
7417}
7418
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007419/***********************************************************************
7420 * MSC Pooling
7421 ***********************************************************************/
7422
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007423template MobileIdentityLV ts_MI_TMSI_NRI_LV(integer nri_v, integer nri_bitlen := 10) :=
Harald Weltebf397612021-01-14 20:39:46 +01007424 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 +02007425
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007426private 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 +02007427runs on MSC_ConnHdlr {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007428 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007429 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007430 f_logp(BSCVTY, "Got RSL RR Release");
7431 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007432 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007433 f_logp(BSCVTY, "Got RSL Deact SACCH");
7434 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007435 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007436 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007437 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7438 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007439 break;
7440 }
7441 }
7442}
7443
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007444friend function f_perform_clear(RSL_DCHAN_PT rsl_pt := RSL, RSLEM_PROC_PT rsl_proc_pt := RSL_PROC,
7445 template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007446runs on MSC_ConnHdlr {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007447 f_logp(BSCVTY, "MSC instructs BSC to clear channel");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007448 BSSAP.send(ts_BSSMAP_ClearCommand(0));
7449 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007450 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007451 f_logp(BSCVTY, "Got RSL RR Release");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007452 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007453 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007454 f_logp(BSCVTY, "Got RSL Deact SACCH");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007455 }
7456 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007457 f_logp(BSCVTY, "Got BSSMAP Clear Complete");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007458 /* Also drop the SCCP connection */
7459 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
7460 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007461 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007462 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007463 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7464 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007465 }
7466 }
7467}
7468
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007469private function f_perform_compl_l3(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt,
7470 template PDU_ML3_MS_NW l3_info, boolean do_clear := true, boolean expect_bssmap_l3 := true)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007471runs on MSC_ConnHdlr {
7472 timer T := 10.0;
7473 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(l3_info));
7474
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007475 f_logp(BSCVTY, "establish channel, send Complete Layer 3 Info");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007476 f_create_bssmap_exp(l3_enc);
7477
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007478 /* RSL_Emulation.f_chan_est() on rsl_pt:
7479 * This is basically code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007480 * RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
7481 */
7482 var RSL_Message rx_rsl;
7483 var GsmRrMessage rr;
7484
7485 /* request a channel to be established */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007486 rsl_pt.send(ts_RSLDC_ChanRqd(g_pars.ra, g_pars.fn));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007487 /* expect immediate assignment.
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007488 * Code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007489 * rx_rsl := f_rx_or_fail(tr_RSL_IMM_ASSIGN);
7490 */
7491 timer Tt := 10.0;
7492
7493 /* request a channel to be established */
7494 Tt.start;
7495 alt {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007496 [] rsl_pt.receive(tr_RSL_IMM_ASSIGN) -> value rx_rsl {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007497 Tt.stop;
7498 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007499 [] rsl_pt.receive {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007500 setverdict(fail, "Unexpected RSL message on DCHAN");
7501 mtc.stop;
7502 }
7503 [] Tt.timeout {
7504 setverdict(fail, "Timeout waiting for RSL on DCHAN");
7505 mtc.stop;
7506 }
7507 }
7508 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
7509 g_chan_nr := rr.payload.imm_ass.chan_desc.chan_nr;
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007510 rsl_pt.send(ts_RSL_EST_IND(g_chan_nr, valueof(g_pars.link_id), l3_enc));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007511
7512
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007513 if (expect_bssmap_l3) {
7514 f_logp(BSCVTY, "expect BSSAP Complete Layer 3 Info at MSC");
7515 var template PDU_BSSAP exp_l3_compl;
7516 exp_l3_compl := tr_BSSMAP_ComplL3()
7517 if (g_pars.aoip == false) {
7518 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
7519 } else {
7520 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
7521 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007522
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007523 var PDU_BSSAP bssap;
7524 T.start;
7525 alt {
7526 [] BSSAP.receive(exp_l3_compl) -> value bssap {
7527 f_logp(BSCVTY, "received expected Complete Layer 3 Info at MSC");
7528 log("rx exp_l3_compl = ", bssap);
7529 }
7530 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
7531 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
7532 }
7533 [] T.timeout {
7534 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
7535 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007536 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007537
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007538 /* start ciphering, if requested */
7539 if (ispresent(g_pars.encr)) {
7540 f_logp(BSCVTY, "start ciphering");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007541 f_cipher_mode(g_pars.encr, rsl_pt := rsl_pt, rsl_proc_pt := rsl_proc_pt);
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007542 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007543 }
7544
7545 if (do_clear) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007546 f_perform_clear(rsl_pt, rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007547 }
7548 setverdict(pass);
7549 f_sleep(1.0);
7550}
7551
7552private function f_tc_mscpool_compl_l3(charstring id) runs on MSC_ConnHdlr {
7553 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7554 if (g_pars.mscpool.rsl_idx == 0) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007555 f_perform_compl_l3(RSL, RSL_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007556 } else if (g_pars.mscpool.rsl_idx == 1) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007557 f_perform_compl_l3(RSL1, RSL1_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007558 } else if (g_pars.mscpool.rsl_idx == 2) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007559 f_perform_compl_l3(RSL2, RSL2_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007560 }
7561}
7562
7563/* Various Complete Layer 3 by IMSI all end up with the first MSC, because the other MSCs are not connected. */
7564private function f_tc_mscpool_L3Compl_on_1_msc(charstring id) runs on MSC_ConnHdlr {
7565 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007566 f_perform_compl_l3(RSL, RSL_PROC, ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O) );
7567 f_perform_compl_l3(RSL, RSL_PROC, ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_IMSI_LV('001010000000002'H))) );
7568 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))) );
7569 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 +02007570}
7571testcase TC_mscpool_L3Compl_on_1_msc() runs on test_CT {
7572
7573 f_init(1, true);
7574 f_sleep(1.0);
7575 var MSC_ConnHdlr vc_conn;
7576 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007577
7578 f_ctrs_msc_init();
7579
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007580 vc_conn := f_start_handler(refers(f_tc_mscpool_L3Compl_on_1_msc), pars);
7581 vc_conn.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007582
7583 f_ctrs_msc_expect(0, "mscpool:subscr:new", 4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007584 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007585}
7586
7587/* Three Layer 3 Complete by IMSI are round-robin'ed across two connected MSCs */
7588/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7589 * just as well using only RSL. */
7590testcase TC_mscpool_L3Complete_by_imsi_round_robin() runs on test_CT {
7591
7592 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7593 f_sleep(1.0);
7594
7595 /* Control which MSC gets chosen next by the round-robin, otherwise
7596 * would be randomly affected by which other tests ran before this. */
7597 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7598
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007599 f_ctrs_msc_init();
7600
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007601 var MSC_ConnHdlr vc_conn1;
7602 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7603 pars1.mscpool.rsl_idx := 0;
7604 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7605 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7606 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007607 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007608
7609 var MSC_ConnHdlr vc_conn2;
7610 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7611 pars2.mscpool.rsl_idx := 1;
7612 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7613 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7614 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007615 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007616
7617 /* Test round-robin wrap to the first MSC */
7618 var MSC_ConnHdlr vc_conn3;
7619 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7620 pars3.mscpool.rsl_idx := 2;
7621 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7622 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7623 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007624 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007625 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007626}
7627
7628/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 0
7629 * (configured in osmo-bsc.cfg). */
7630/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7631 * just as well using only RSL. */
7632testcase TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() runs on test_CT {
7633
7634 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7635 f_sleep(1.0);
7636
7637 /* Control which MSC gets chosen next by the round-robin, otherwise
7638 * would be randomly affected by which other tests ran before this. */
7639 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7640
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007641 f_ctrs_msc_init();
7642
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007643 var MSC_ConnHdlr vc_conn1;
7644 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7645 pars1.mscpool.rsl_idx := 0;
7646 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7647 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7648 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007649 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007650
7651 var MSC_ConnHdlr vc_conn2;
7652 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7653 pars2.mscpool.rsl_idx := 1;
7654 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7655 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7656 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007657 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007658
7659 /* Test round-robin wrap to the first MSC */
7660 var MSC_ConnHdlr vc_conn3;
7661 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7662 pars3.mscpool.rsl_idx := 2;
7663 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7664 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7665 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007666 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007667 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007668}
7669
7670/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 1
7671 * (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
7672 * NULL-NRI setting is stronger than that. */
7673/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7674 * just as well using only RSL. */
7675testcase TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() runs on test_CT {
7676
7677 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7678 f_sleep(1.0);
7679
7680 /* Control which MSC gets chosen next by the round-robin, otherwise
7681 * would be randomly affected by which other tests ran before this. */
7682 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7683
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007684 f_ctrs_msc_init();
7685
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007686 var MSC_ConnHdlr vc_conn1;
7687 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7688 pars1.mscpool.rsl_idx := 0;
7689 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7690 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7691 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007692 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007693
7694 var MSC_ConnHdlr vc_conn2;
7695 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7696 pars2.mscpool.rsl_idx := 1;
7697 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7698 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7699 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007700 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007701
7702 /* Test round-robin wrap to the first MSC */
7703 var MSC_ConnHdlr vc_conn3;
7704 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7705 pars3.mscpool.rsl_idx := 2;
7706 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7707 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7708 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007709 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007710 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007711}
7712
7713/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI not
7714 * assigned to any MSC (configured in osmo-bsc.cfg). */
7715/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7716 * just as well using only RSL. */
7717testcase TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() runs on test_CT {
7718
7719 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7720 f_sleep(1.0);
7721
7722 /* Control which MSC gets chosen next by the round-robin, otherwise
7723 * would be randomly affected by which other tests ran before this. */
7724 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7725
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007726 f_ctrs_msc_init();
7727
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007728 var MSC_ConnHdlr vc_conn1;
7729 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7730 pars1.mscpool.rsl_idx := 0;
7731 /* An NRI that is not assigned to any MSC */
7732 pars1.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(1023))));
7733 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7734 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007735 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007736
7737 var MSC_ConnHdlr vc_conn2;
7738 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7739 pars2.mscpool.rsl_idx := 1;
7740 /* An NRI that is not assigned to any MSC */
7741 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(768)), '00F110'O));
7742 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7743 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007744 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007745
7746 /* Test round-robin wrap to the first MSC */
7747 var MSC_ConnHdlr vc_conn3;
7748 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7749 pars3.mscpool.rsl_idx := 2;
7750 /* An NRI that is not assigned to any MSC */
7751 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, valueof(ts_MI_TMSI_NRI_LV(819))));
7752 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7753 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007754 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007755 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007756}
7757
7758/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI
7759 * assigned to an MSC that is currently not connected (configured in osmo-bsc.cfg). */
7760/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7761 * just as well using only RSL. */
7762testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() runs on test_CT {
7763
7764 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7765 f_sleep(1.0);
7766
7767 /* Control which MSC gets chosen next by the round-robin, otherwise
7768 * would be randomly affected by which other tests ran before this. */
7769 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7770
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007771 f_ctrs_msc_init();
7772
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007773 var MSC_ConnHdlr vc_conn1;
7774 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7775 pars1.mscpool.rsl_idx := 0;
7776 /* An NRI that is assigned to an unconnected MSC */
7777 pars1.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(512))));
7778 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7779 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007780 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7781 f_ctrs_msc_add(0, "mscpool:subscr:new");
7782 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007783
7784 var MSC_ConnHdlr vc_conn2;
7785 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7786 pars2.mscpool.rsl_idx := 1;
7787 /* An NRI that is assigned to an unconnected MSC */
7788 pars2.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(767))));
7789 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7790 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007791 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7792 f_ctrs_msc_add(1, "mscpool:subscr:new");
7793 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007794
7795 /* Test round-robin wrap to the first MSC */
7796 var MSC_ConnHdlr vc_conn3;
7797 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7798 pars3.mscpool.rsl_idx := 2;
7799 /* An NRI that is assigned to an unconnected MSC */
7800 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(750)), '00F110'O));
7801 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7802 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007803 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7804 f_ctrs_msc_add(0, "mscpool:subscr:new");
7805 f_ctrs_msc_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007806 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007807}
7808
7809/* Three Layer 3 Complete by TMSI with valid NRI for the second MSC are all directed to the second MSC (configured in
7810 * osmo-bsc.cfg). */
7811/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7812 * just as well using only RSL. */
7813testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_1() runs on test_CT {
7814
7815 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7816 f_sleep(1.0);
7817
7818 /* All TMSIs in this test point at the second MSC, set the round robin to point at the first MSC to make sure
7819 * this is not using round-robin. */
7820 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7821
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007822 f_ctrs_msc_init();
7823
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007824 var MSC_ConnHdlr vc_conn1;
7825 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7826 pars1.mscpool.rsl_idx := 0;
7827 /* An NRI of the second MSC's range (256-511) */
7828 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(256))));
7829 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7830 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007831 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007832
7833 var MSC_ConnHdlr vc_conn2;
7834 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7835 pars2.mscpool.rsl_idx := 1;
7836 /* An NRI of the second MSC's range (256-511) */
7837 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(260))));
7838 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7839 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007840 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007841
7842 var MSC_ConnHdlr vc_conn3;
7843 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7844 pars3.mscpool.rsl_idx := 2;
7845 /* An NRI of the second MSC's range (256-511) */
7846 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(511)), '00F110'O));
7847 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7848 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007849 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007850 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007851}
7852
7853/* Layer 3 Complete by TMSI with valid NRI for the third MSC are directed to the third MSC (configured in osmo-bsc.cfg),
7854 * while a round-robin remains unaffected by that. */
7855/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7856 * just as well using only RSL. */
7857testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_2() runs on test_CT {
7858
7859 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7860 f_sleep(1.0);
7861
7862 /* All TMSIs in this test point at the third MSC, set the round robin to point at the second MSC to make sure
7863 * this is not using round-robin. */
7864 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7865
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007866 f_ctrs_msc_init();
7867
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007868 var MSC_ConnHdlr vc_conn1;
7869 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 2);
7870 pars1.mscpool.rsl_idx := 0;
7871 /* An NRI of the third MSC's range (512-767) */
7872 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(512))));
7873 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7874 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007875 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007876
7877 var MSC_ConnHdlr vc_conn2;
7878 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7879 pars2.mscpool.rsl_idx := 1;
7880 /* An NRI of the third MSC's range (512-767) */
7881 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(678))));
7882 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7883 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007884 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007885
7886 /* The above forwardings to third MSC have not affected the round robin, which still points at the second MSC */
7887 var MSC_ConnHdlr vc_conn3;
7888 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7889 pars3.mscpool.rsl_idx := 2;
7890 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000013'H)), '00F110'O));
7891 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7892 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007893 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007894 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007895}
7896
7897/* LU with a TMSI but indicating a different PLMN in its previous LAI: ignore the NRI. */
7898/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7899 * just as well using only RSL. */
7900testcase TC_mscpool_LU_by_tmsi_from_other_PLMN() runs on test_CT {
7901
7902 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7903 f_sleep(1.0);
7904
7905 /* The TMSIs in this test points at the second MSC, but since it is from a different PLMN, round-robin is used
7906 * instead, and hits msc 0. */
7907 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7908
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007909 f_ctrs_msc_init();
7910
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007911 /* An NRI of the second MSC's range (256-511), but a PLMN that doesn't match with osmo-bsc.cfg */
7912 var MSC_ConnHdlr vc_conn1;
7913 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7914 pars1.mscpool.rsl_idx := 0;
7915 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(260)), '99F999'O));
7916 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7917 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007918 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007919
7920 /* An NRI of the third MSC's range (512-767) and a matching PLMN gets directed by NRI. */
7921 var MSC_ConnHdlr vc_conn2;
7922 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7923 pars2.mscpool.rsl_idx := 1;
7924 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(555)), '00F110'O));
7925 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7926 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007927 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007928 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007929}
7930
7931/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by IMSI, which would be
7932 * round-robined to another MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7933private function f_tc_mscpool_paging_imsi(charstring id) runs on MSC_ConnHdlr {
7934 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7935 //cid_list := { cIl_allInBSS := ''O };
7936 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7937 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7938 var BSSAP_N_UNITDATA_req paging;
7939 var hexstring imsi := '001010000000123'H;
7940
7941 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7942
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007943 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007944 valueof(ts_BSSMAP_Paging(imsi, cid_list, omit, bssmap_chneed))));
7945 BSSAP.send(paging);
7946
7947 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7948 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7949 * channel number is picked here. */
7950 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7951 f_rslem_register(0, new_chan_nr);
7952 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(imsi)));
7953 f_rslem_unregister(0, new_chan_nr);
7954
7955 /* Despite the round robin pointing at the second MSC ('roundrobin next 1'), the earlier Paging for the same IMSI
7956 * causes this Paging Response to go to the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007957 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(imsi))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007958 f_sleep(1.0);
7959}
7960testcase TC_mscpool_paging_and_response_imsi() runs on test_CT {
7961 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7962 f_sleep(1.0);
7963
7964 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7965 * second MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7966 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7967
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007968 f_ctrs_msc_init();
7969
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007970 var MSC_ConnHdlr vc_conn1;
7971 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7972 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007973 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7974 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007975 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_imsi), pars1);
7976 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007977 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007978 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007979}
7980
7981/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by TMSI with an NRI value
7982 * that matches a different MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7983private function f_tc_mscpool_paging_tmsi(charstring id) runs on MSC_ConnHdlr {
7984 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7985 //cid_list := { cIl_allInBSS := ''O };
7986 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7987 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7988 var integer nri_v := 300; /* <-- second MSC's NRI */
Harald Weltebf397612021-01-14 20:39:46 +01007989 var octetstring tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007990 var BSSAP_N_UNITDATA_req paging;
7991
7992 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7993
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007994 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007995 valueof(ts_BSSMAP_Paging('001010000000011'H, cid_list, tmsi, bssmap_chneed))));
7996 BSSAP.send(paging);
7997
7998 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7999 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
8000 * channel number is picked here. */
8001 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
8002 f_rslem_register(0, new_chan_nr);
8003 RSL.receive(tr_RSL_PAGING_CMD(t_MI_TMSI(tmsi)));
8004 f_rslem_unregister(0, new_chan_nr);
8005
8006 /* Despite the NRI matching the second MSC (NRI from 'msc 1' in osmo-bsc.cfg) and round robin pointing at the
8007 * third MSC ('roundrobin next 2'), the earlier Paging for the same TMSI causes this Paging Response to go to
8008 * the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008009 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 +02008010 f_sleep(1.0);
8011}
8012testcase TC_mscpool_paging_and_response_tmsi() runs on test_CT {
8013 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
8014 f_sleep(1.0);
8015
8016 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
8017 * third MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
8018 f_vty_transceive(BSCVTY, "mscpool roundrobin next 2");
8019
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008020 f_ctrs_msc_init();
8021
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008022 var MSC_ConnHdlr vc_conn1;
8023 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8024 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02008025 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
8026 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008027 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_tmsi), pars1);
8028 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008029 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008030 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008031}
8032
8033/* For round-robin, skip an MSC that has 'no allow-attach' set. */
8034/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
8035 * just as well using only RSL. */
8036testcase TC_mscpool_no_allow_attach_round_robin() runs on test_CT {
8037
8038 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8039 f_sleep(1.0);
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008040 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8041 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008042
8043 /* Control which MSC gets chosen next by the round-robin, otherwise
8044 * would be randomly affected by which other tests ran before this. */
8045 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8046
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008047 f_ctrs_msc_init();
8048
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008049 var MSC_ConnHdlr vc_conn1;
8050 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
8051 pars1.mscpool.rsl_idx := 0;
8052 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
8053 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8054 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008055 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008056
8057 var MSC_ConnHdlr vc_conn2;
8058 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
8059 pars2.mscpool.rsl_idx := 1;
8060 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8061 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8062 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008063 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008064
8065 var MSC_ConnHdlr vc_conn3;
8066 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
8067 pars3.mscpool.rsl_idx := 2;
8068 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
8069 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8070 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008071 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008072 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008073}
8074
8075/* An MSC that has 'no allow-attach' set should still serve subscribers that are already attached according to their
8076 * TMSI NRI. */
8077testcase TC_mscpool_no_allow_attach_valid_nri() runs on test_CT {
8078
8079 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
8080 f_sleep(1.0);
8081
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00008082 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
8083 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
8084
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008085 /* Control which MSC gets chosen next by the round-robin, otherwise
8086 * would be randomly affected by which other tests ran before this. */
8087 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
8088
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008089 f_ctrs_msc_init();
8090
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008091 /* Round robin points at msc 0, but the valid NRI directs to msc 1, even though msc 1 has 'no allow-attach'. */
8092 var MSC_ConnHdlr vc_conn1;
8093 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
8094 pars1.mscpool.rsl_idx := 0;
8095 /* An NRI of the second MSC's range (256-511) */
8096 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_TMSI_NRI_LV(260))));
8097 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
8098 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008099 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008100
8101 var MSC_ConnHdlr vc_conn2;
8102 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 0);
8103 pars2.mscpool.rsl_idx := 1;
8104 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
8105 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
8106 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008107 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008108
8109 var MSC_ConnHdlr vc_conn3;
8110 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 2);
8111 pars3.mscpool.rsl_idx := 2;
8112 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000003'H))));
8113 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
8114 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02008115 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008116 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02008117}
8118
Philipp Maier783681c2020-07-16 16:47:06 +02008119/* Allow/Deny emergency calls globally via VTY */
8120private function f_vty_allow_emerg_msc(boolean allow) runs on test_CT {
8121 f_vty_enter_cfg_msc(BSCVTY, 0);
8122 if (allow) {
8123 f_vty_transceive(BSCVTY, "allow-emergency allow");
8124 } else {
8125 f_vty_transceive(BSCVTY, "allow-emergency deny");
8126 }
8127 f_vty_transceive(BSCVTY, "exit");
8128 f_vty_transceive(BSCVTY, "exit");
8129}
8130
8131/* Allow/Deny emergency calls per BTS via VTY */
8132private function f_vty_allow_emerg_bts(boolean allow, integer bts_nr) runs on test_CT {
8133 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8134 if (allow) {
8135 f_vty_transceive(BSCVTY, "rach emergency call allowed 1");
8136 } else {
8137 f_vty_transceive(BSCVTY, "rach emergency call allowed 0");
8138 }
8139 f_vty_transceive(BSCVTY, "exit");
8140 f_vty_transceive(BSCVTY, "exit");
Neels Hofmeyrb6ed80c2020-10-12 22:52:39 +00008141 f_vty_transceive(BSCVTY, "exit");
Philipp Maier783681c2020-07-16 16:47:06 +02008142}
8143
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02008144/* Allow/Forbid Fast Return after SRVCC on a given BTS via VTY */
8145private function f_vty_allow_srvcc_fast_return(boolean allow, integer bts_nr) runs on test_CT {
8146 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8147 if (allow) {
8148 f_vty_transceive(BSCVTY, "srvcc fast-return allow");
8149 } else {
8150 f_vty_transceive(BSCVTY, "srvcc fast-return forbid");
8151 }
8152 f_vty_transceive(BSCVTY, "exit");
8153 f_vty_transceive(BSCVTY, "exit");
8154 f_vty_transceive(BSCVTY, "exit");
8155}
8156
Pau Espin Pedrol14475352021-07-22 15:48:16 +02008157/* Allow/Forbid TCH for signalling if SDCCH exhausted on a given BTS via VTY */
8158private function f_vty_allow_tch_for_signalling(boolean allow, integer bts_nr) runs on test_CT {
8159 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
8160 if (allow) {
8161 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 1");
8162 } else {
8163 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 0");
8164 }
8165 f_vty_transceive(BSCVTY, "exit");
8166 f_vty_transceive(BSCVTY, "exit");
8167 f_vty_transceive(BSCVTY, "exit");
8168}
8169
Philipp Maier783681c2020-07-16 16:47:06 +02008170/* Begin assignmet procedure and send an EMERGENCY SETUP (RR) */
8171private function f_assignment_emerg_setup() runs on MSC_ConnHdlr {
8172 var PDU_ML3_MS_NW emerg_setup;
8173 var octetstring emerg_setup_enc;
8174 var RSL_Message emerg_setup_data_ind;
8175
8176 f_establish_fully(omit, omit);
8177
8178 emerg_setup := valueof(ts_ML3_MO_CC_EMERG_SETUP(1, valueof(ts_Bcap_voice)));
8179 emerg_setup_enc := enc_PDU_ML3_MS_NW(emerg_setup);
8180 emerg_setup_data_ind := valueof(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), emerg_setup_enc));
8181
8182 RSL.send(emerg_setup_data_ind);
8183}
8184
8185/* Test if the EMERGENCY SETUP gets passed on to the MSC via A when EMERGENCY
8186 * CALLS are permitted by the BSC config. */
8187private function f_TC_assignment_emerg_setup_allow(charstring id) runs on MSC_ConnHdlr {
8188 var PDU_BSSAP emerg_setup_data_ind_bssap;
8189 var PDU_ML3_MS_NW emerg_setup;
8190 timer T := 3.0;
8191
8192 f_assignment_emerg_setup()
8193
8194 T.start;
8195 alt {
8196 [] BSSAP.receive(tr_BSSAP_DTAP) -> value emerg_setup_data_ind_bssap {
8197 emerg_setup := dec_PDU_ML3_MS_NW(emerg_setup_data_ind_bssap.pdu.dtap);
8198 if (not isbound(emerg_setup.msgs.cc.emergencySetup)) {
8199 setverdict(fail, "no emergency setup");
8200 }
8201 }
8202 [] BSSAP.receive {
8203 setverdict(fail, "unexpected BSSAP message!");
8204 }
8205 [] T.timeout {
8206 setverdict(fail, "timout waiting for EMERGENCY SETUP!");
8207 }
8208 }
8209
8210 setverdict(pass);
8211}
8212
8213/* Test if the EMERGENCY SETUP gets blocked by the BSC if EMERGENCY CALLS are
8214 * forbidden by the BSC config. */
8215private function f_TC_assignment_emerg_setup_deny(charstring id) runs on MSC_ConnHdlr {
8216 var PDU_BSSAP emerg_setup_data_ind_bssap;
8217 timer T := 3.0;
8218
8219 f_assignment_emerg_setup()
8220
8221 T.start;
8222 alt {
8223 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
8224 setverdict(pass);
8225 }
8226 [] RSL.receive {
8227 setverdict(fail, "unexpected RSL message!");
8228 }
8229 [] T.timeout {
8230 setverdict(fail, "timout waiting for RR CHANNEL RELEASE!");
8231 }
8232 }
8233}
8234
8235/* EMERGENCY CALL situation #1, allowed globally and by BTS */
8236testcase TC_assignment_emerg_setup_allow() runs on test_CT {
8237 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8238 var MSC_ConnHdlr vc_conn;
8239
8240 f_init(1, true);
8241 f_sleep(1.0);
8242
8243 f_vty_allow_emerg_msc(true);
8244 f_vty_allow_emerg_bts(true, 0);
8245 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_allow), pars);
8246 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008247 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008248}
8249
8250/* EMERGENCY CALL situation #2, forbidden globally but allowed by BTS */
8251testcase TC_assignment_emerg_setup_deny_msc() runs on test_CT {
8252 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8253 var MSC_ConnHdlr vc_conn;
8254
8255 f_init(1, true);
8256 f_sleep(1.0);
8257
8258 f_vty_allow_emerg_msc(false);
8259 f_vty_allow_emerg_bts(true, 0);
8260 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8261 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008262 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008263}
8264
8265/* EMERGENCY CALL situation #3, allowed globally but forbidden by BTS */
8266testcase TC_assignment_emerg_setup_deny_bts() runs on test_CT {
8267 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8268 var MSC_ConnHdlr vc_conn;
8269
8270 /* Note: This simulates a spec violation by the MS, correct MS
8271 * implementations would not try to establish an emergency call because
8272 * the system information tells in advance that emergency calls are
8273 * not forbidden */
8274
8275 f_init(1, true);
8276 f_sleep(1.0);
8277
8278 f_vty_allow_emerg_msc(true);
8279 f_vty_allow_emerg_bts(false, 0);
8280 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8281 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008282 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008283}
8284
Philipp Maier82812002020-08-13 18:48:27 +02008285/* Test what happens when an emergency call arrives while all TCH channels are
8286 * busy, the BSC is expected to terminate one call in favor of the incoming
8287 * emergency call */
8288testcase TC_emerg_premption() runs on test_CT {
8289 var ASP_RSL_Unitdata rsl_ud;
8290 var integer i;
8291 var integer chreq_total, chreq_nochan;
8292 var RSL_Message rx_rsl;
8293 var RslChannelNr chan_nr;
8294
8295 f_init(1);
8296 f_sleep(1.0);
8297
8298 f_vty_allow_emerg_msc(true);
8299 f_vty_allow_emerg_bts(true, 0);
8300
8301 /* Fill up all channels on the BTS */
8302 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
8303 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
8304 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
8305 chan_nr := f_chreq_act_ack('33'O, i);
8306 }
8307 IPA_RSL[0].clear;
8308 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
8309 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
8310
8311 /* Send Channel request for emegergency call */
8312 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
8313
8314 /* Expect the BSC to release one (the first) TCH/F on the BTS */
8315 chan_nr := valueof(t_RslChanNr_Bm(1));
8316 f_expect_chan_rel(0, chan_nr, expect_rr_chan_rel := false, expect_rll_rel_req := false);
8317
8318 /* Expect the BSC to send activate/assign the a channel for the emergency call */
8319 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8320 chan_nr := rx_rsl.ies[0].body.chan_nr;
8321 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 33));
8322 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Philipp Maier104f4c02020-09-11 18:12:18 +02008323
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008324 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008325}
8326
8327/* Hopping parameters per a timeslot */
Vadim Yanitskiybc6654a2020-09-13 01:27:40 +07008328private type record length(0..64) of GsmArfcn ArfcnList;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008329private type record FHParamsTs {
8330 boolean enabled,
8331 uint6_t hsn,
8332 uint6_t maio,
8333 ArfcnList ma
8334};
8335
8336/* Hopping parameters per a transceiver */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008337private type record FHParamsTrx {
8338 GsmArfcn arfcn,
8339 FHParamsTs ts[8]
8340};
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008341
8342/* Randomly generate the hopping parameters for the given timeslot numbers */
8343private function f_TC_fh_params_gen(template integer tr_tn := (1, 3, 5))
8344runs on test_CT return FHParamsTrx {
8345 var FHParamsTrx fhp;
8346
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008347 /* Generate a random ARFCN, including ARFCN 0 */
8348 fhp.arfcn := f_rnd_int(3);
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008349
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008350 for (var integer tn := 0; tn < 8; tn := tn + 1) {
8351 if (not match(tn, tr_tn)) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008352 fhp.ts[tn].enabled := false;
8353 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008354 continue;
8355 }
8356
8357 /* Random HSN / MAIO values: 0..63 */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008358 fhp.ts[tn].hsn := f_rnd_int(64);
8359 fhp.ts[tn].maio := f_rnd_int(64);
8360 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008361
8362 /* Random Mobile Allocation (hopping channels) */
8363 var integer ma_len := 2 + f_rnd_int(9); /* 2..10 channels */
8364 var integer step := 3 + f_rnd_int(4); /* 3..6 stepping */
8365 for (var integer i := 1; i <= ma_len; i := i + 1) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008366 fhp.ts[tn].ma := fhp.ts[tn].ma & { i * step };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008367 }
8368
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008369 fhp.ts[tn].enabled := true;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008370 }
8371
8372 log("f_TC_fh_params_gen(): ", fhp);
8373 return fhp;
8374}
8375
8376/* Make sure that the given Channel Description IE matches the hopping configuration */
8377private function f_TC_fh_params_match_chan_desc(in FHParamsTrx fhp, in ChannelDescription cd)
8378{
8379 var template (present) ChannelDescription tr_cd;
8380 var template (present) MaioHsn tr_maio_hsn;
8381 var uint3_t tn := cd.chan_nr.tn;
8382
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008383 if (fhp.ts[tn].enabled) {
8384 tr_maio_hsn := tr_HsnMaio(fhp.ts[tn].hsn, fhp.ts[tn].maio);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008385 tr_cd := tr_ChanDescH1(cd.chan_nr, tr_maio_hsn);
8386 } else {
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008387 tr_cd := tr_ChanDescH0(cd.chan_nr, fhp.arfcn);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008388 }
8389
8390 if (not match(cd, tr_cd)) {
8391 setverdict(fail, "Channel Description IE does not match: ",
8392 cd, " vs expected ", tr_cd);
8393 }
8394}
8395
8396/* Make sure that the given Mobile Allocation IE matches the hopping configuration */
8397private function f_TC_fh_params_match_ma(in FHParamsTrx fhp, uint3_t tn,
8398 in MobileAllocationLV ma)
8399{
8400 var template MobileAllocationLV tr_ma := f_TC_fh_params_gen_tr_ma(fhp, tn, ma);
8401
8402 if (not match(ma, tr_ma)) {
8403 setverdict(fail, "Mobile Allocation IE does not match (tn := ",
8404 tn, "): ", ma, " vs expected: ", tr_ma);
8405 } else {
8406 setverdict(pass);
8407 }
8408}
8409
8410private function f_TC_fh_params_gen_tr_ma(in FHParamsTrx fhp, uint3_t tn,
8411 in MobileAllocationLV ma)
8412return template MobileAllocationLV {
8413 /* Mobile Allocation IE is expected to be empty if hopping is not enabled */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008414 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008415 return { len := 0, ma := ''B };
8416 }
8417
8418 var bitstring full_mask := f_pad_bit(''B, 1024, '0'B);
8419 var bitstring slot_mask := f_pad_bit(''B, 1024, '0'B);
8420 var bitstring ma_mask := ''B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008421
8422 /* Compose the full bit-mask (all channels, up to 1024 entries) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008423 for (var integer i := 0; i < lengthof(fhp.ts); i := i + 1) {
8424 for (var integer j := 0; j < lengthof(fhp.ts[i].ma); j := j + 1) {
8425 if (full_mask[fhp.ts[i].ma[j]] == '1'B)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008426 { continue; }
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008427 full_mask[fhp.ts[i].ma[j]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008428 }
8429 }
8430
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008431 /* Take ARFCN of the TRX itself into account */
8432 full_mask[fhp.arfcn] := '1'B;
8433
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008434 /* Compose a bit-mask for the given timeslot number */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008435 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8436 slot_mask[fhp.ts[tn].ma[i]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008437 }
8438
8439 /* Finally, compose the Mobile Allocation bit-mask */
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008440 for (var integer i := 1; i < lengthof(full_mask); i := i + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008441 if (full_mask[i] != '1'B)
8442 { continue; }
8443
8444 /* FIXME: ma_mask := ma_mask & slot_mask[i]; // triggers a bug in TITAN */
8445 if (slot_mask[i] == '1'B) {
8446 ma_mask := ma_mask & '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008447 } else {
8448 ma_mask := ma_mask & '0'B;
8449 }
8450 }
8451
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008452 /* ARFCN 0 (if present) goes to the last position of the bit-mask */
8453 if (full_mask[0] == '1'B) {
8454 /* FIXME: ma_mask := ma_mask & slot_mask[0]; // triggers a bug in TITAN */
8455 if (slot_mask[0] == '1'B) {
8456 ma_mask := ma_mask & '1'B;
8457 } else {
8458 ma_mask := ma_mask & '0'B;
8459 }
8460 }
8461
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008462 /* Ensure that ma_mask is octet-aligned */
Vadim Yanitskiy2aa02522020-09-06 14:05:23 +07008463 var integer ma_mask_len := (lengthof(ma_mask) + 8 - 1) / 8;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008464 ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);
8465
8466 return { len := ma_mask_len, ma := ma_mask };
8467}
8468
8469/* Configure the hopping parameters in accordance with the given record */
8470private function f_TC_fh_params_set(in FHParamsTrx fhp,
8471 uint8_t bts_nr := 0,
8472 uint8_t trx_nr := 0)
8473runs on test_CT {
8474 /* Enter the configuration node for the given BTS/TRX numbers */
8475 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8476
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008477 f_vty_transceive(BSCVTY, "arfcn " & int2str(fhp.arfcn));
8478
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008479 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008480 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8481
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008482 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008483 f_vty_transceive(BSCVTY, "hopping enabled 0");
8484 f_vty_transceive(BSCVTY, "exit"); /* go back */
8485 continue;
8486 }
8487
8488 /* Configure HSN / MAIO values */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008489 f_vty_transceive(BSCVTY, "hopping sequence-number " & int2str(fhp.ts[tn].hsn));
8490 f_vty_transceive(BSCVTY, "hopping maio " & int2str(fhp.ts[tn].maio));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008491
8492 /* Configure the Mobile Allocation (hopping channels) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008493 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8494 f_vty_transceive(BSCVTY, "hopping arfcn add " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008495 }
8496
8497 f_vty_transceive(BSCVTY, "hopping enabled 1");
8498 f_vty_transceive(BSCVTY, "exit"); /* go back */
8499 }
8500
8501 f_vty_transceive(BSCVTY, "end");
8502}
8503
8504/* Disable frequency hopping on all timeslots */
8505private function f_TC_fh_params_unset(in FHParamsTrx fhp,
8506 uint8_t bts_nr := 0,
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008507 uint8_t trx_nr := 0,
8508 GsmArfcn arfcn := 871)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008509runs on test_CT {
8510 /* Enter the configuration node for the given BTS/TRX numbers */
8511 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8512
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008513 f_vty_transceive(BSCVTY, "arfcn " & int2str(arfcn));
8514
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008515 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008516 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8517
8518 /* Delete all ARFCNs from the Mobile Allocation (if any) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008519 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8520 f_vty_transceive(BSCVTY, "hopping arfcn del " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008521 }
8522
8523 f_vty_transceive(BSCVTY, "hopping enabled 0");
8524 f_vty_transceive(BSCVTY, "exit"); /* go back */
8525 }
8526
8527 f_vty_transceive(BSCVTY, "end");
8528 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8529}
8530
8531/* Verify presence and correctness of the hopping parameters (HSN, MAIO)
8532 * in the Channel Identification IE of the RSL CHANnel ACTIVation message. */
8533testcase TC_fh_params_chan_activ() runs on test_CT {
8534 var FHParamsTrx fhp := f_TC_fh_params_gen();
8535 var RSL_Message rsl_msg;
8536 var RSL_IE_Body ie;
8537
8538 f_init_vty();
8539
8540 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8541 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8542
8543 f_init(1);
8544
8545 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8546 for (var integer i := 0; i < 9; i := i + 1) {
8547 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8548 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8549
8550 /* Make sure that Channel Identification IE is present */
8551 if (not f_rsl_find_ie(rsl_msg, RSL_IE_CHAN_IDENT, ie)) {
8552 setverdict(fail, "RSL Channel Identification IE is absent");
8553 continue;
8554 }
8555
8556 /* Make sure that hopping parameters (HSN/MAIO) match */
8557 f_TC_fh_params_match_chan_desc(fhp, ie.chan_ident.ch_desc.v);
8558
8559 /* "Mobile Allocation shall be included but empty" - let's check this */
8560 if (ie.chan_ident.ma.v.len != 0) {
8561 setverdict(fail, "Mobile Allocation IE is not empty: ",
8562 ie.chan_ident.ma, ", despite it shall be");
8563 continue;
8564 }
8565 }
8566
8567 /* Disable frequency hopping */
8568 f_TC_fh_params_unset(fhp);
8569
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008570 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008571}
8572
8573/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Immediate Assignment */
8574testcase TC_fh_params_imm_ass() runs on test_CT {
8575 var FHParamsTrx fhp := f_TC_fh_params_gen();
8576 var RSL_Message rsl_msg;
8577 var RSL_IE_Body ie;
8578
8579 f_init_vty();
8580
8581 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8582 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8583
8584 f_init(1);
8585
8586 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8587 for (var integer i := 0; i < 9; i := i + 1) {
8588 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8589 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8590
8591 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8592 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
8593
8594 /* Make sure that Full Immediate Assign Info IE is present */
8595 if (not f_rsl_find_ie(rsl_msg, RSL_IE_FULL_IMM_ASS_INFO, ie)) {
8596 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
8597 continue;
8598 }
8599
8600 /* Decode the actual Immediate Assignment message */
8601 var GsmRrMessage rr_msg := dec_GsmRrMessage(ie.full_imm_ass_info.payload);
8602 if (not match(rr_msg.header, t_RrHeader(IMMEDIATE_ASSIGNMENT, ?))) {
8603 setverdict(fail, "Failed to match Immediate Assignment: ", rr_msg);
8604 continue;
8605 }
8606
8607 /* Make sure that hopping parameters (HSN/MAIO) match */
8608 f_TC_fh_params_match_chan_desc(fhp, rr_msg.payload.imm_ass.chan_desc);
8609
8610 /* Make sure that the Mobile Allocation IE matches */
8611 f_TC_fh_params_match_ma(fhp, rr_msg.payload.imm_ass.chan_desc.chan_nr.tn,
8612 rr_msg.payload.imm_ass.mobile_allocation);
8613 }
8614
8615 /* Disable frequency hopping */
8616 f_TC_fh_params_unset(fhp);
Philipp Maier82812002020-08-13 18:48:27 +02008617
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008618 f_shutdown_helper();
Philipp Maier82812002020-08-13 18:48:27 +02008619}
8620
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008621/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Assignment Command */
8622testcase TC_fh_params_assignment_cmd() runs on test_CT {
8623 var FHParamsTrx fhp := f_TC_fh_params_gen();
8624 var RSL_Message rsl_msg;
8625 var RSL_IE_Body ie;
8626
8627 f_init_vty();
8628
8629 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8630 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8631
8632 f_init(1);
8633
8634 /* HACK: work around "Couldn't find Expect for CRCX" */
8635 vc_MGCP.stop;
8636
8637 var template PDU_BSSAP ass_cmd := f_gen_ass_req();
8638 ass_cmd.pdu.bssmap.assignmentRequest.codecList := ts_BSSMAP_IE_CodecList({ts_CodecFR});
8639
8640 /* CS domain (TCH): 4 (TCH/F) + 2 (TCH/H) channels available
8641 * NOTE: only 3 SDCCH/4 channels are available on CCCH+SDCCH4+CBCH */
8642 for (var integer i := 0; i < 3; i := i + 1) {
8643 /* Establish a dedicated channel, so we can trigger (late) TCH assignment */
8644 var DchanTuple dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8645
8646 /* Send a BSSMAP Assignment Command, expect CHANnel ACTIVation */
8647 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
8648 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8649
8650 /* ACKnowledge CHANnel ACTIVation, expect RSL DATA REQuest */
8651 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8652 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8653
8654 /* Make sure that L3 Information IE is present */
8655 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8656 setverdict(fail, "RSL L3 Information IE is absent");
8657 continue;
8658 }
8659
8660 /* Decode the L3 message and make sure it is (RR) Assignment Command */
8661 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8662 if (not match(l3_msg.header, t_RrL3Header(ASSIGNMENT_COMMAND))) {
8663 setverdict(fail, "Failed to match Assignment Command: ", l3_msg);
8664 continue;
8665 }
8666
8667 /* Make sure that hopping parameters (HSN/MAIO) match */
8668 var ChannelDescription chan_desc := l3_msg.payload.ass_cmd.chan_desc;
8669 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8670
8671 /* Make sure that Cell Channel Description IE is present if FH is enabled */
8672 if (chan_desc.h and not ispresent(l3_msg.payload.ass_cmd.cell_chan_desc)) {
Vadim Yanitskiy38d069d2020-09-02 17:18:57 +07008673 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008674 continue;
8675 }
8676
8677 /* Make sure that the Mobile Allocation IE matches (if present) */
8678 var boolean ma_present := ispresent(l3_msg.payload.ass_cmd.mobile_allocation);
8679 if (chan_desc.h and ma_present) {
8680 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8681 l3_msg.payload.ass_cmd.mobile_allocation.v);
8682 } else if (chan_desc.h and not ma_present) {
8683 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8684 continue;
8685 } else if (not chan_desc.h and ma_present) {
8686 setverdict(fail, "FH disabled, but Mobile Allocation IE is present");
8687 continue;
8688 }
8689 }
8690
8691 /* Give the IUT some time to release all channels */
8692 f_sleep(3.0);
8693
8694 /* Disable frequency hopping */
8695 f_TC_fh_params_unset(fhp);
8696
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008697 f_shutdown_helper();
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008698}
8699
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07008700/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Handover Command */
8701private function f_TC_fh_params_handover_cmd(in FHParamsTrx fhp)
8702runs on test_CT {
8703 var RSL_Message rsl_msg;
8704 var RSL_IE_Body ie;
8705 var DchanTuple dt;
8706
8707 /* Establish a dedicated channel, so we can trigger handover */
8708 dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8709
8710 /* Trigger handover from BTS0 to BTS1 */
8711 f_bts_0_cfg(BSCVTY, { "neighbor bts 1" });
8712 f_vty_handover(BSCVTY, 0, 0, dt.rsl_chan_nr, 1);
8713
8714 /* Expect RSL CHANnel ACTIVation on BTS1/TRX0/TS1 */
8715 rsl_msg := f_exp_ipa_rx(1, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8716
8717 /* ACKnowledge channel activation and expect (RR) Handover Command */
8718 f_ipa_tx(1, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8719 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8720
8721 /* Make sure that L3 Information IE is present */
8722 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8723 setverdict(fail, "RSL L3 Information IE is absent");
8724 return;
8725 }
8726
8727 /* Decode the L3 message and make sure it is (RR) Handover Command */
8728 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8729 if (not match(l3_msg.header, t_RrL3Header(HANDOVER_COMMAND))) {
8730 setverdict(fail, "Failed to match Handover Command: ", l3_msg);
8731 return;
8732 }
8733
8734 /* Make sure that we've got SDCCH/8 on TS1 (expected to be hopping) */
8735 var ChannelDescription chan_desc := l3_msg.payload.ho_cmd.chan_desc;
8736 if (not match(chan_desc.chan_nr, t_RslChanNr_SDCCH8(1, ?))) {
8737 setverdict(fail, "Unexpected channel number: ", chan_desc.chan_nr);
8738 return;
8739 }
8740
8741 /* Make sure that hopping parameters (HSN/MAIO) match */
8742 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8743
8744 /* Make sure that Cell Channel Description IE is present */
8745 if (not ispresent(l3_msg.payload.ho_cmd.cell_chan_desc)) {
8746 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
8747 return;
8748 }
8749
8750 /* Make sure that the Mobile Allocation (after time) IE is present and matches */
8751 var boolean ma_present := ispresent(l3_msg.payload.ho_cmd.mobile_allocation);
8752 if (ma_present) {
8753 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8754 l3_msg.payload.ho_cmd.mobile_allocation.v);
8755 } else {
8756 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8757 return;
8758 }
8759}
8760testcase TC_fh_params_handover_cmd() runs on test_CT {
8761 var FHParamsTrx fhp := f_TC_fh_params_gen();
8762
8763 f_init_vty();
8764
8765 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8 on BTS1/TRX0 */
8766 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8767
8768 f_vty_transceive(BSCVTY, "timeslot 0");
8769 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8770 f_vty_transceive(BSCVTY, "exit"); /* go back */
8771
8772 f_vty_transceive(BSCVTY, "timeslot 1");
8773 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8");
8774 f_vty_transceive(BSCVTY, "end"); /* we're done */
8775
8776 f_TC_fh_params_set(fhp, 1); /* Enable frequency hopping on BTS1 */
8777 f_vty_transceive(BSCVTY, "drop bts connection 1 oml");
8778
8779 f_init(2);
8780
8781 f_TC_fh_params_handover_cmd(fhp);
8782
8783 /* Disable frequency hopping on BTS1 */
8784 f_TC_fh_params_unset(fhp, 1);
8785
8786 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
8787 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8788
8789 f_vty_transceive(BSCVTY, "timeslot 0");
8790 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
8791 f_vty_transceive(BSCVTY, "exit"); /* go back */
8792
8793 f_vty_transceive(BSCVTY, "timeslot 1");
8794 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8795 f_vty_transceive(BSCVTY, "end"); /* we're done */
8796
8797 f_shutdown_helper();
8798}
8799
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008800/* Verify the hopping parameters in System Information Type 4 */
8801testcase TC_fh_params_si4_cbch() runs on test_CT {
8802 var FHParamsTrx fhp := f_TC_fh_params_gen(tr_tn := 1);
8803 var ASP_RSL_Unitdata rx_rsl_ud;
8804 timer T := 5.0;
8805
8806 f_init_vty();
8807
8808 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8+CBCH */
8809 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8810
8811 f_vty_transceive(BSCVTY, "timeslot 0");
8812 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8813 f_vty_transceive(BSCVTY, "exit"); /* go back */
8814
8815 f_vty_transceive(BSCVTY, "timeslot 1");
8816 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8+cbch");
8817 f_vty_transceive(BSCVTY, "end"); /* we're done */
8818
8819 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8820 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8821
8822 f_init(1);
8823
8824 T.start;
8825 alt {
8826 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO(RSL_SYSTEM_INFO_4))) -> value rx_rsl_ud {
8827 var RSL_IE_Body ie := rx_rsl_ud.rsl.ies[2].body; /* FULL BCCH Information IE */
8828 var SystemInformation si := dec_SystemInformation(ie.other.payload);
8829
8830 /* Make sure that what we decoded is System Information Type 4 */
8831 if (si.header.message_type != SYSTEM_INFORMATION_TYPE_4) {
8832 setverdict(fail, "RSL FULL BCCH Information IE contains: ", si);
8833 repeat;
8834 }
8835
8836 /* Make sure that CBCH Channel Description IE is present */
8837 if (not ispresent(si.payload.si4.cbch_chan_desc)) {
8838 setverdict(fail, "CBCH Channel Description IE is absent");
8839 break;
8840 }
8841
8842 /* Finally, check the hopping parameters (HSN, MAIO) */
8843 var ChannelDescription chan_desc := si.payload.si4.cbch_chan_desc.v;
8844 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8845
8846 /* 3GPP TS 44.018, section 9.1.36.2 "CBCH Mobile Allocation":
8847 * The CBCH Mobile Allocation IE *shall* be present if FH is enabled. */
8848 if (chan_desc.h and not ispresent(si.payload.si4.cbch_mobile_alloc)) {
8849 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8850 break;
8851 } else if (chan_desc.h and ispresent(si.payload.si4.cbch_mobile_alloc)) {
8852 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8853 si.payload.si4.cbch_mobile_alloc.v);
8854 }
8855 }
8856 [] IPA_RSL[0].receive { repeat; }
8857 [] T.timeout {
8858 setverdict(fail, "Timeout waiting for RSL BCCH INFOrmation (SI4)");
8859 }
8860 }
8861
8862 /* Disable frequency hopping */
8863 f_TC_fh_params_unset(fhp);
8864
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008865 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008866 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8867
8868 f_vty_transceive(BSCVTY, "timeslot 0");
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008869 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008870 f_vty_transceive(BSCVTY, "exit"); /* go back */
8871
8872 f_vty_transceive(BSCVTY, "timeslot 1");
8873 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8874 f_vty_transceive(BSCVTY, "end"); /* we're done */
8875
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008876 f_shutdown_helper();
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008877}
8878
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008879template (value) PDU_BSSAP_LE ts_BSSMAP_LE_BSSLAP(template (value) BSSLAP_PDU bsslap)
8880 := ts_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, data := enc_BSSLAP_PDU(valueof(bsslap)));
8881
8882private function f_match_bsslap(PDU_BSSAP_LE got_bsslap_msg,
8883 template (present) BSSLAP_PDU expect_bsslap)
8884{
8885 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(got_bsslap_msg.pdu.bssmap.co_info.bsslap_apdu.data);
8886 if (not match(bsslap, expect_bsslap)) {
8887 log("EXPECTING BSSLAP: ", expect_bsslap);
8888 log("GOT BSSLAP: ", bsslap);
8889 setverdict(fail, "BSSLAP is not as expected");
8890 mtc.stop;
8891 }
8892 setverdict(pass);
8893}
8894
8895/* GAD: this is an Ellipsoid point with uncertainty circle, encoded as in 3GPP TS 23.032 §7.3.2. */
8896const octetstring gad_ell_point_unc_circle := '10b0646d0d5f6627'O;
8897
8898private function f_expect_bsslap(template (present) BSSLAP_PDU expect_rx_bsslap) runs on MSC_ConnHdlr {
8899 var PDU_BSSAP_LE rx_bsslap;
8900 BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap);
8901 f_match_bsslap(rx_bsslap, expect_rx_bsslap);
8902}
8903
8904/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8905 * Request on Lb interface. Either with or without the SMLC doing a BSSLAP TA Request. */
8906private function f_lcs_loc_req_for_active_ms(boolean do_ta_request := false) runs on MSC_ConnHdlr {
8907 f_sleep(1.0);
8908
8909 f_establish_fully(omit, omit);
8910 f_bssap_le_register_imsi(g_pars.imsi, omit);
8911
8912 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8913 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8914
8915 var PDU_BSSAP_LE plr;
8916 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8917
8918 if (not do_ta_request) {
8919 /* verify TA Layer 3 in APDU. First the APDU type (BSSLAP), then the BSSLAP data contents. */
8920 var template BSSMAP_LE_IE_APDU expect_apdu := tr_BSSMAP_LE_APDU(BSSMAP_LE_PROT_BSSLAP, ?);
8921 if (not match(plr.pdu.bssmap.perf_loc_req.bsslap_apdu, expect_apdu)) {
8922 log("EXPECTING BSSMAP-LE APDU IE ", expect_apdu);
8923 log("GOT BSSMAP-LE APDU IE ", plr.pdu.bssmap.perf_loc_req.bsslap_apdu);
8924 setverdict(fail, "BSSMAP-LE APDU IE is not as expected");
8925 mtc.stop;
8926 }
8927 var template BSSLAP_PDU expect_ta_layer3 := tr_BSSLAP_TA_Layer3(tr_BSSLAP_IE_TA(0));
8928 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(plr.pdu.bssmap.perf_loc_req.bsslap_apdu.data);
8929 if (not match(bsslap, expect_ta_layer3)) {
8930 log("EXPECTING BSSLAP TA Layer 3: ", expect_ta_layer3);
8931 log("GOT BSSLAP: ", bsslap);
8932 setverdict(fail, "BSSLAP is not as expected");
8933 mtc.stop;
8934 }
8935 /* OsmoBSC directly sent the TA as BSSLAP APDU in the BSSMAP-LE Perform Location Request to the SMLC. The SMLC
8936 * has no need to request the TA from the BSC and directly responds. */
8937 } else {
8938 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8939 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8940 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8941 }
8942
8943 /* SMLC got the TA from the BSC, now responds with geo information data. */
8944 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8945 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8946 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8947
8948 /* The LCS was using an active A-interface conn. It should still remain active after this. */
8949 f_mo_l3_transceive();
8950
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008951 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008952
8953 f_sleep(2.0);
8954 setverdict(pass);
8955}
8956
8957/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8958 * Request on Lb interface. Without the SMLC doing a BSSLAP TA Request. */
8959private function f_tc_lcs_loc_req_for_active_ms(charstring id) runs on MSC_ConnHdlr {
8960 f_lcs_loc_req_for_active_ms(false);
8961}
8962testcase TC_lcs_loc_req_for_active_ms() runs on test_CT {
8963 var MSC_ConnHdlr vc_conn;
8964 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8965
8966 f_init(1, true);
8967 f_sleep(1.0);
8968 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms), pars);
8969 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008970 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008971}
8972
8973/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8974 * Request on Lb interface. With the SMLC doing a BSSLAP TA Request. */
8975private function f_tc_lcs_loc_req_for_active_ms_ta_req(charstring id) runs on MSC_ConnHdlr {
8976 f_lcs_loc_req_for_active_ms(true);
8977}
8978testcase TC_lcs_loc_req_for_active_ms_ta_req() runs on test_CT {
8979 var MSC_ConnHdlr vc_conn;
8980 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8981
8982 f_init(1, true);
8983 f_sleep(1.0);
8984 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_ta_req), pars);
8985 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008986 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008987}
8988
8989/* Clear the A-interface conn only, without doing anything on Abis. Useful for LCS, for cases where there is only an A
8990 * conn without an active lchan. */
8991private function f_clear_A_conn() runs on MSC_ConnHdlr
8992{
8993 var BssmapCause cause := 0;
8994 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
8995 BSSAP.receive(tr_BSSMAP_ClearComplete);
8996 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
8997
8998 timer no_more_bssap := 5.0;
8999 no_more_bssap.start;
9000 alt {
9001 [] no_more_bssap.timeout { break; }
9002 [] BSSAP.receive(tr_BSSAP_BSSMAP) {
9003 setverdict(fail, "Expected no more BSSAP after Clear Complete");
9004 mtc.stop;
9005 }
9006 }
9007 setverdict(pass);
9008}
9009
9010/* Verify that the A-interface connection is still working, and then clear it, without doing anything on Abis. Useful
9011 * for LCS, for cases where there is only an A conn without an active lchan. */
9012private function f_verify_active_A_conn_and_clear() runs on MSC_ConnHdlr
9013{
9014 f_logp(BSCVTY, "f_verify_active_A_conn_and_clear: test A link, then clear");
9015
9016 /* When an lchan is active, we can send some L3 data from the BTS side and verify that it shows up on the other
9017 * side towards the MSC. When there is no lchan, this is not possible. To probe whether the A-interface
9018 * connection is still up, we need something that echos back on the A-interface. Another LCS request! */
9019 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9020 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9021 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?));
9022
9023 /* Right, the Perform Location Request showed up on Lb, now we can clear the A conn. */
9024 f_clear_A_conn();
9025 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9026 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9027}
9028
9029/* With *no* active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
9030 * Request on Lb interface. BSC will Page for the subscriber as soon as we (virtual SMLC) request the TA via BSSLAP.
9031 */
9032private function f_tc_lcs_loc_req_for_idle_ms(charstring id) runs on MSC_ConnHdlr {
9033 f_sleep(1.0);
9034
9035 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9036 f_bssap_le_register_imsi(g_pars.imsi, omit);
9037
9038 /* Register to receive the Paging Command */
9039 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9040 g_chan_nr := new_chan_nr;
9041 f_rslem_register(0, g_chan_nr);
9042
9043 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9044 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9045 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9046 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9047
9048 var PDU_BSSAP_LE plr;
9049 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9050
9051 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9052 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9053
9054 /* OsmoBSC needs to Page */
9055 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi)));
9056 f_logp(BSCVTY, "got Paging Command");
9057
9058 /* MS requests channel. Since the Paging was for LCS, the Paging Response does not trigger a Complete Layer 3 to
9059 * the MSC, and releases the lchan directly. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009060 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);
9061 f_expect_lchan_rel(RSL, RSL_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009062
9063 /* From the Paging Response, the TA is now known to the BSC, and it responds to the SMLC. */
9064
9065 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9066
9067 /* SMLC got the TA from the BSC, now responds with geo information data. */
9068 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9069 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9070
9071 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9072
9073 /* The lchan is gone, the A-interface conn was created for the LCS only.
9074 * Still it is clearly the MSC's job to decide whether to tear down the conn or not. */
9075 f_verify_active_A_conn_and_clear();
9076
9077 f_sleep(2.0);
9078 setverdict(pass);
9079}
9080testcase TC_lcs_loc_req_for_idle_ms() runs on test_CT {
9081 var MSC_ConnHdlr vc_conn;
9082 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9083
9084 f_init(1, true);
9085 f_sleep(1.0);
9086
9087 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9088 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9089
9090 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms), pars);
9091 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009092 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009093}
9094
9095/* With no active lchan, start BSSMAP Perform Location Request on A interface, but omit IMSI; expect failure response.
9096 */
9097private function f_tc_lcs_loc_req_no_subscriber(charstring id) runs on MSC_ConnHdlr {
9098 f_sleep(1.0);
9099
9100 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9101 f_bssap_le_register_imsi(g_pars.imsi, omit);
9102
9103 /* provoke an abort by omitting both IMSI and IMEI */
9104 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9105 valueof(ts_BSSMAP_Perform_Location_Request(omit,
9106 ts_CellId_CGI('262'H, '42'H, 23, 42)))));
9107 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9108
9109 /* BSC tells MSC about failure */
9110 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9111 locationEstimate := omit, positioningData := omit,
9112 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_DATA_MISSING_IN_REQ)));
9113
9114 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9115 f_verify_active_A_conn_and_clear();
9116
9117 f_sleep(2.0);
9118 setverdict(pass);
9119}
9120testcase TC_lcs_loc_req_no_subscriber() runs on test_CT {
9121 var MSC_ConnHdlr vc_conn;
9122 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9123
9124 f_init(1, true);
9125 f_sleep(1.0);
9126
9127 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9128 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9129
9130 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_no_subscriber), pars);
9131 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009132 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009133}
9134
9135/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9136 * BSSMAP-LE Perform Location Response (before or after sending a BSSLAP TA Request) */
9137private function f_lcs_loc_req_for_active_ms_le_timeout(boolean do_ta) runs on MSC_ConnHdlr {
9138 f_sleep(1.0);
9139
9140 f_establish_fully(omit, omit);
9141 f_bssap_le_register_imsi(g_pars.imsi, omit);
9142
9143 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9144 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9145
9146 var PDU_BSSAP_LE plr;
9147 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9148
9149 if (do_ta) {
9150 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9151 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9152 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9153 }
9154
9155 /* SMLC fails to respond, BSC runs into timeout */
9156 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_SYSTEM_FAILURE));
9157 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9158
9159 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9160 locationEstimate := omit, positioningData := omit,
9161 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_SYSTEM_FAILURE)));
9162
9163 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9164 f_verify_active_A_conn_and_clear();
9165
9166 f_sleep(2.0);
9167 setverdict(pass);
9168}
9169
9170/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9171 * BSSMAP-LE Perform Location Response, without sending a BSSLAP TA Request. */
9172private function f_tc_lcs_loc_req_for_active_ms_le_timeout(charstring id) runs on MSC_ConnHdlr {
9173 f_lcs_loc_req_for_active_ms_le_timeout(false);
9174}
9175
9176testcase TC_lcs_loc_req_for_active_ms_le_timeout() runs on test_CT {
9177 var MSC_ConnHdlr vc_conn;
9178 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9179
9180 f_init(1, true);
9181 f_sleep(1.0);
9182 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout), pars);
9183 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009184 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009185}
9186
9187/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
9188 * BSSMAP-LE Perform Location Response, after sending a BSSLAP TA Request. */
9189private function f_tc_lcs_loc_req_for_active_ms_le_timeout2(charstring id) runs on MSC_ConnHdlr {
9190 f_lcs_loc_req_for_active_ms_le_timeout(true);
9191}
9192
9193testcase TC_lcs_loc_req_for_active_ms_le_timeout2() runs on test_CT {
9194 var MSC_ConnHdlr vc_conn;
9195 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9196
9197 f_init(1, true);
9198 f_sleep(1.0);
9199 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout2), pars);
9200 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009201 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009202}
9203
9204/* With *no* active lchan, start a Perform Location Request, expecting that the MS will be Paged. */
9205private function f_tc_lcs_loc_req_for_idle_ms_no_pag_resp(charstring id) runs on MSC_ConnHdlr {
9206 f_sleep(1.0);
9207
9208 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9209 f_bssap_le_register_imsi(g_pars.imsi, omit);
9210
9211 /* Register to receive the Paging Command */
9212 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9213 g_chan_nr := new_chan_nr;
9214 f_rslem_register(0, g_chan_nr);
9215
9216 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9217 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9218 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9219 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9220
9221 var PDU_BSSAP_LE plr;
9222 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9223
9224 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9225 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9226
9227 /* OsmoBSC needs to Page */
9228 var PDU_BSSAP_LE rx_bsslap;
9229 alt {
9230 [] RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi))) {
9231 f_logp(BSCVTY, "got Paging Command");
9232 repeat;
9233 }
9234 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9235 /* MS does not respond to Paging, TA Req runs into timeout. */
9236 f_match_bsslap(rx_bsslap, tr_BSSLAP_Abort(?));
9237 }
9238 }
9239
9240 /* SMLC responds with failure */
9241 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(omit, BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9242 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9243
9244 /* BSC tells MSC about failure */
9245 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9246 locationEstimate := omit, positioningData := omit,
9247 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_REQUEST_ABORTED)));
9248
9249 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9250 f_verify_active_A_conn_and_clear();
9251
9252 f_sleep(2.0);
9253 setverdict(pass);
9254}
9255testcase TC_lcs_loc_req_for_idle_ms_no_pag_resp() runs on test_CT {
9256 var MSC_ConnHdlr vc_conn;
9257 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9258
9259 f_init(1, true);
9260 f_sleep(1.0);
9261
9262 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9263 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9264
9265 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms_no_pag_resp), pars);
9266 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009267 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009268}
9269
9270/* During an ongoing Location Request, the MS sends a CM Service Request. Expect the same A-conn to be re-used / taken
9271 * over. */
9272private function f_tc_cm_service_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9273 f_sleep(1.0);
9274
9275 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9276 f_bssap_le_register_imsi(g_pars.imsi, omit);
9277
9278 /* Register to receive the Paging Command */
9279 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9280 g_chan_nr := new_chan_nr;
9281 f_rslem_register(0, g_chan_nr);
9282
9283 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9284 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9285 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9286 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9287
9288 var PDU_BSSAP_LE plr;
9289 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9290
9291 /* As the A-interface conn was established for LCS, the MS coincidentally decides to issue a CM Service Request
9292 * and establish Layer 3. It should use the existing A-interface conn. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009293 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 +02009294 do_clear := false, expect_bssmap_l3 := true);
9295
9296 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9297 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9298
9299 /* OsmoBSC already has an lchan, no need to Page, just returns the TA */
9300 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9301
9302 /* SMLC got the TA from the BSC, now responds with geo information data. */
9303 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9304 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9305 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9306
9307 /* The lchan should still exist, it was from a CM Service Request. */
9308 f_mo_l3_transceive();
9309
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009310 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009311
9312 f_sleep(2.0);
9313 setverdict(pass);
9314}
9315testcase TC_cm_service_during_lcs_loc_req() runs on test_CT {
9316 var MSC_ConnHdlr vc_conn;
9317 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9318
9319 f_init(1, true);
9320 f_sleep(1.0);
9321
9322 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9323 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9324
9325 vc_conn := f_start_handler(refers(f_tc_cm_service_during_lcs_loc_req), pars);
9326 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009327 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009328}
9329
9330/* During an ongoing Perform Location Request, do a Handover, an expect a BSSLAP Reset message from the BSC to indicate
9331 * the new lchan after handover. */
9332private function f_tc_ho_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9333 f_sleep(1.0);
9334
9335 f_establish_fully(omit, omit);
9336 f_bssap_le_register_imsi(g_pars.imsi, omit);
9337
9338 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9339 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9340
9341 var PDU_BSSAP_LE plr;
9342 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9343
9344 /* SMLC ponders the Location Request, in the meantime the BSC decides to handover */
9345 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
9346
9347 var HandoverState hs := {
9348 rr_ho_cmpl_seen := false,
9349 handover_done := false,
9350 old_chan_nr := -
9351 };
9352 /* issue hand-over command on VTY */
9353 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
9354 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
9355 f_rslem_suspend(RSL1_PROC);
9356
9357 /* From the MGW perspective, a handover is is characterized by
9358 * performing one MDCX operation with the MGW. So we expect to see
9359 * one more MDCX during handover. */
9360 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
9361
9362 alt {
9363 [] as_handover(hs);
9364 }
9365
9366 var PDU_BSSAP_LE rx_bsslap;
9367
9368 interleave {
9369 /* Expect the BSC to inform the MSC about the handover */
9370 [] BSSAP.receive(tr_BSSMAP_HandoverPerformed);
9371
9372 /* Expect the BSC to inform the SMLC about the handover */
9373 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9374 f_match_bsslap(rx_bsslap, tr_BSSLAP_Reset(BSSLAP_CAUSE_INTRA_BSS_HO));
9375 }
9376 }
9377
9378 /* SMLC now responds with geo information data. */
9379 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9380 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9381 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9382
9383 /* lchan still active */
9384 f_mo_l3_transceive(RSL1);
9385
9386 /* MSC decides it is done now. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009387 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009388
9389 f_sleep(2.0);
9390 setverdict(pass);
9391}
9392testcase TC_ho_during_lcs_loc_req() runs on test_CT {
9393 var MSC_ConnHdlr vc_conn;
9394 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9395
9396 f_init(2, true);
9397 f_sleep(1.0);
9398 vc_conn := f_start_handler(refers(f_tc_ho_during_lcs_loc_req), pars);
9399 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009400 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009401}
9402
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009403/* Attempt Complete Layer 3 without any MSC available (OS#4832) */
9404private function f_tc_no_msc(charstring id) runs on MSC_ConnHdlr {
9405 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9406
9407 /* Also disable attach for the single connected MSC */
9408 f_vty_msc_allow_attach(BSCVTY, { false });
9409
9410 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) ));
9411 f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
9412
9413 /* No MSC is found, expecting a proper release on RSL */
9414 interleave {
9415 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
9416 f_logp(BSCVTY, "Got RSL RR Release");
9417 }
9418 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9419 f_logp(BSCVTY, "Got RSL Deact SACCH");
9420 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009421 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009422 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
9423 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009424 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009425 }
9426 }
9427 setverdict(pass);
9428}
9429testcase TC_no_msc() runs on test_CT {
9430
9431 f_init(1, true);
9432 f_sleep(1.0);
9433 var MSC_ConnHdlr vc_conn;
9434 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9435
9436 f_ctrs_bsc_init(counternames_bsc_mscpool);
9437
9438 vc_conn := f_start_handler(refers(f_tc_no_msc), pars);
9439 vc_conn.done;
9440
9441 f_ctrs_bsc_add("mscpool:subscr:no_msc");
9442 f_ctrs_bsc_verify();
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009443 f_shutdown_helper();
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009444}
9445
Harald Welte0ea2d5e2018-04-07 21:40:29 +02009446/* Dyn PDCH todo:
9447 * activate OSMO as TCH/F
9448 * activate OSMO as TCH/H
9449 * does the BSC-located PCU socket get the updated INFO?
9450 * what if no PCU is connected at the time?
9451 * is the info correct on delayed PCU (re)connect?
9452 */
Harald Welte94e0c342018-04-07 11:33:23 +02009453
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009454private function f_TC_refuse_mode_modif_to_vamos(charstring id) runs on MSC_ConnHdlr {
9455 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
9456 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
9457
9458 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
9459 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9460 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
9461 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
9462 g_pars.ass_codec_list.codecElements[0];
9463 if (isvalue(g_pars.expect_mr_s0_s7)) {
9464 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
9465 g_pars.expect_mr_s0_s7;
9466 }
9467 }
9468 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
9469 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
9470 log("expecting ASS COMPL like this: ", exp_compl);
9471
9472 f_establish_fully(ass_cmd, exp_compl);
9473
Neels Hofmeyr8746b0d2021-06-01 17:25:39 +02009474 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 +00009475
9476 var RSL_Message rsl;
9477
9478 timer T := 5.0;
9479 T.start;
9480 alt {
9481 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
9482 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
9483 log("Rx L3 from net: ", l3);
9484 if (ischosen(l3.msgs.rrm.channelModeModify)) {
9485 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9486 mtc.stop;
9487 }
9488 }
9489 [] RSL.receive(tr_RSL_MODE_MODIFY_REQ(g_chan_nr, ?)) -> value rsl {
9490 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9491 mtc.stop;
9492 }
9493 [] T.timeout {
9494 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related Mode Modify should happen. */
9495 setverdict(pass);
9496 }
9497 }
9498 T.stop;
9499}
9500
9501/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel Mode Modify to VAMOS mode is refused by
9502 * osmo-bsc. */
9503testcase TC_refuse_mode_modif_to_vamos() runs on test_CT {
9504 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9505 var MSC_ConnHdlr vc_conn;
9506
9507 f_init(1, true);
9508 f_sleep(1.0);
9509
9510 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9511 vc_conn := f_start_handler(refers(f_TC_refuse_mode_modif_to_vamos), pars);
9512 vc_conn.done;
9513 f_shutdown_helper();
9514}
9515
9516/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel activation to VAMOS mode is refused by osmo-bsc.
9517 */
9518testcase TC_refuse_chan_act_to_vamos() runs on test_CT {
9519 f_init_vty();
9520
9521 f_init(1, false);
9522 f_sleep(1.0);
9523
9524 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 activate-vamos fr");
9525
9526 var ASP_RSL_Unitdata rx_rsl_ud;
9527 timer T := 5.0;
9528
9529 T.start;
9530 alt {
9531 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(?, IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud {
9532 if (rx_rsl_ud.rsl.msg_type == RSL_MT_CHAN_ACTIV) {
9533 T.stop;
9534 setverdict(fail, "CHANnel ACTivate in VAMOS mode succeeded even though BTS does not support VAMOS");
9535 mtc.stop;
9536 }
9537 repeat;
9538 }
9539 [] T.timeout {
9540 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related CHANnel ACTivate should happen. */
9541 setverdict(pass);
9542 }
9543 }
9544}
9545
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009546private function f_TC_reassignment_codec(charstring id) runs on MSC_ConnHdlr {
9547 /* First fully set up a speech lchan */
9548 f_TC_assignment_codec(id);
9549
9550 /* Trigger re-assignment to another lchan */
9551 var AssignmentState assignment_st := valueof(ts_AssignmentStateInit);
9552
9553 /* Re-Assignment should tell the MGW endpoint the new lchan's RTP address and port, so expecting to see exactly
9554 * one MDCX on MGCP. */
9555 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].mdcx_seen_exp + 1;
9556
9557 /* The new lchan will see all-new IPAC_CRCX and IPAC_MDCX messages telling the BTS the same RTP address and port
9558 * as the old lchan used. */
9559 g_media.bts.ipa_crcx_seen := false;
9560 g_media.bts.ipa_mdcx_seen := false;
9561
9562 /* Send different BTS side RTP port number for the new lchan */
9563 g_media.bts.bts.port_nr := 4223;
9564
9565 f_rslem_register(0, valueof(ts_RslChanNr_Bm(2))); /* <-- FIXME: can we somehow infer the timeslot that will be used? */
9566
9567 /* Trigger re-assignment. */
9568 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot " & int2str(g_chan_nr.tn) & " sub-slot 0 assignment");
9569
9570 timer T := 5.0;
9571 T.start;
9572 alt {
9573 [] as_assignment(assignment_st);
9574 [] as_Media();
9575 [] T.timeout {
9576 break;
9577 }
9578 }
9579
9580 if (not assignment_st.assignment_done) {
9581 setverdict(fail, "Assignment did not complete");
9582 mtc.stop;
9583 }
9584
9585 f_check_mgcp_expectations()
9586 setverdict(pass);
9587
9588 f_sleep(2.0);
9589 log("show lchan summary: ", f_vty_transceive_ret(BSCVTY, "show lchan summary"));
9590
9591 /* Instruct BSC to clear channel */
9592 var BssmapCause cause := 0;
9593 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9594 interleave {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009595 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {}
9596 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009597 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009598 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009599 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009600 }
9601 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
9602 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9603 }
9604 }
Neels Hofmeyr40a45d12021-09-23 22:57:12 +02009605 f_expect_dlcx_conns();
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009606
9607 f_sleep(0.5);
9608}
9609
9610testcase TC_reassignment_fr() runs on test_CT {
9611 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9612 var MSC_ConnHdlr vc_conn;
9613
9614 f_init(1, true);
9615 f_sleep(1.0);
9616
9617 f_ctrs_bsc_and_bts_init();
9618
9619 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9620 vc_conn := f_start_handler(refers(f_TC_reassignment_codec), pars);
9621 vc_conn.done;
9622
9623 /* from f_establish_fully() */
9624 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9625 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9626 /* from re-assignment */
9627 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9628 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9629 f_ctrs_bsc_and_bts_verify();
9630 f_shutdown_helper();
9631}
9632
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009633const charstring REEST_LOST_CONNECTION := "REEST_LOST_CONNECTION";
9634const charstring REEST_CLEAR := "REEST_CLEAR";
9635const charstring REEST_CLEAR_DONE := "REEST_CLEAR_DONE";
9636
9637/* CM Re-Establishment, 3GPP TS 24.008 4.5.1.6.
9638 * The MS <-> BTS loses radio connection, MS shows up on second BTS and asks for CM Re-Establishment.
9639 * BSC should establish a separate A conn for the same MS, the original A conn is then cleared by
9640 * the MSC as the CM Re-Establishment is handled.
9641 *
9642 * MS bts0 bts1 bsc msc test-component
9643 * |<----->|<----------------->|<-0-->| _1 Establish channel on bts 0
9644 * | | _1 wait a bit, to settle down
9645 * |<-x x--| | _1 "lose connection"
9646 * | | REEST_LOST_CONNECTION
9647 * |----------------->|------->|--1-->| _2 new A-conn: Chan Rqd, Imm Ass, Compl L3 with CM Re-Establishment Req
9648 * | | REEST_CLEAR
9649 * | |<-0---| _1 Clear Command on first A-conn
9650 * | |--0-->| _1 Clear Complete
9651 * | |<----------------->| | _1 Release first channel
9652 * | | REEST_CLEAR_DONE
9653 * |<-----------------|<-------|<-1---| _2 Chan Activ, Assignment Command
9654 * |<-----------------|<-------|<-1---| _2 Clear Command, Release
9655 *
9656 */
9657private function f_tc_cm_reestablishment_1(charstring id) runs on MSC_ConnHdlr {
9658 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
9659 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9660
9661 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9662 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9663
9664 f_establish_fully(ass_cmd, exp_compl);
9665
9666 /* The original channel loses connection, MS attemts CM Re-Establishment on another cell, see
9667 * f_tc_cm_reestablishment_2(). This established channel stays active until MSC sends a Clear Command. The time
9668 * when exactly that happens is determined by f_tc_cm_reestablishment_2(). */
9669 f_sleep(2.0);
9670 COORD.send(REEST_LOST_CONNECTION);
9671
9672 alt {
9673 [] COORD.receive(REEST_CLEAR);
9674 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9675 setverdict(fail, "Unexpected channel release");
9676 mtc.stop;
9677 }
9678 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
9679 setverdict(fail, "Unexpected channel release");
9680 mtc.stop;
9681 }
9682 }
9683 f_perform_clear()
9684 f_expect_dlcx_conns();
Neels Hofmeyr969abd02021-09-23 22:24:08 +02009685 f_create_mgcp_delete_ep(g_media.mgcp_ep);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009686 COORD.send(REEST_CLEAR_DONE);
9687}
9688
9689private function f_tc_cm_reestablishment_2(charstring id) runs on MSC_ConnHdlr {
9690 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
9691
9692 /* The MS lost the connection on the first channel, now establishes another one */
9693 COORD.receive(REEST_LOST_CONNECTION);
9694
9695 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
9696 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_REESTABL_REQ(mi));
9697 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
9698
9699 f_create_bssmap_exp(l3_enc);
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009700 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 +02009701 BSSAP.receive(tr_BSSMAP_ComplL3(l3_enc));
9702
9703 /* MSC got the CM Re-Establishment request and first off clears the previous conn. */
9704 COORD.send(REEST_CLEAR);
9705 COORD.receive(REEST_CLEAR_DONE);
9706
9707 f_sleep(2.0);
9708
9709 /* Answer the CM Re-Establishment with an Assignment Command. */
9710 var template PDU_BSSAP expect_assignment_compl := f_gen_exp_compl();
9711 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9712 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9713 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9714
9715 var AssignmentState st := valueof(ts_AssignmentStateInit);
9716 st.voice_call := true;
9717 st.is_assignment := true;
9718
9719 var ExpectCriteria mgcpcrit := {
9720 connid := omit,
9721 endpoint := omit,
9722 transid := omit
9723 };
9724 f_create_mgcp_expect(mgcpcrit);
9725
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009726 f_rslem_dchan_queue_enable(RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009727
9728 BSSAP.send(ass_cmd);
9729
9730 var PDU_BSSAP bssap;
9731
9732 alt {
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009733 [] as_assignment(st, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
9734 [] as_Media_ipacc(RSL1, RSL2);
9735 [] as_Media_mgw();
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009736 [st.assignment_done] BSSAP.receive(expect_assignment_compl) {
9737 break;
9738 }
9739 }
9740
9741 f_sleep(3.0);
9742
9743 f_logp(BSCVTY, "f_tc_cm_reestablishment_2 clearing");
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009744 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009745 f_expect_dlcx_conns();
9746}
9747
9748testcase TC_cm_reestablishment() runs on test_CT {
9749 var TestHdlrParams pars1 := f_gen_test_hdlr_pars();
9750 var MSC_ConnHdlr vc_conn1;
9751
9752 var TestHdlrParams pars2 := f_gen_test_hdlr_pars();
9753 var MSC_ConnHdlr vc_conn2;
9754 pars2.imsi := pars1.imsi;
9755 pars2.media_nr := 2;
Neels Hofmeyrbf720202021-10-02 12:58:24 +02009756 pars2.expect_tsc := BTS_TSC[1];
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009757
9758 f_init(2, true, guard_timeout := 40.0);
9759 f_sleep(1.0);
9760
9761 vc_conn1 := f_start_handler_create(pars1);
9762 vc_conn2 := f_start_handler_create(pars2);
9763 connect(vc_conn1:COORD, vc_conn2:COORD);
9764 f_start_handler_run(vc_conn1, refers(f_tc_cm_reestablishment_1), pars1);
9765 f_start_handler_run(vc_conn2, refers(f_tc_cm_reestablishment_2), pars2);
9766 vc_conn1.done;
9767 vc_conn2.done;
9768
9769 f_shutdown_helper();
9770}
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009771
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009772function f_exp_ipa_rx_nonfatal(integer bts_nr, template (present) RSL_Message t_rx, float t_secs := 2.0,
9773 IpaStreamId sid := IPAC_PROTO_RSL_TRX0, boolean ignore_other_rx := true)
9774runs on test_CT return template (omit) RSL_Message {
9775 var ASP_RSL_Unitdata rx_rsl_ud;
9776 timer T := t_secs;
9777
9778 T.start;
9779 alt {
9780 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
9781 T.stop;
9782 }
9783 [ignore_other_rx] IPA_RSL[bts_nr].receive { repeat; }
9784 [not ignore_other_rx] IPA_RSL[bts_nr].receive {
9785 log("f_exp_ipa_rx_nonfatal(): Got different message than ", t_rx);
9786 T.stop;
9787 return omit;
9788 }
9789 [] T.timeout {
9790 return omit;
9791 }
9792 }
9793 return rx_rsl_ud.rsl;
9794}
9795
9796private function f_vty_set_imm_ass(TELNETasp_PT pt, BtsNr bts_nr := 0, charstring imm_ass_setting := "post-chan-ack") {
9797 f_vty_enter_cfg_bts(pt, bts_nr);
9798 f_vty_transceive(pt, "immediate-assignment " & imm_ass_setting);
9799 f_vty_transceive(pt, "exit");
9800 f_vty_transceive(pt, "exit");
9801 f_vty_transceive(pt, "exit");
9802}
9803
9804private function f_verify_imm_ass(RSL_Message imm_ass, template uint8_t ra := ?, template GsmFrameNumber fn := ?,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009805 template RslChannelNr chan_nr := ?,
9806 template (present) uint12_t arfcn := ?,
9807 template (present) uint3_t tsc := ?)
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009808{
9809 var RSL_IE_Body full_imm_ass_info;
9810 if (not f_rsl_find_ie(imm_ass, RSL_IE_FULL_IMM_ASS_INFO, full_imm_ass_info)) {
9811 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
9812 mtc.stop;
9813 }
9814
9815 var GsmRrMessage rr_imm_ass := dec_GsmRrMessage(full_imm_ass_info.full_imm_ass_info.payload);
9816 var template GsmRrMessage expect_imm_ass := tr_IMM_ASS(ra := ra,
9817 fn := fn,
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009818 ch_desc := tr_ChanDescH0(chan_nr, arfcn, tsc),
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009819 page_mode := ?);
9820 if (not match(rr_imm_ass, expect_imm_ass)) {
9821 log("Error: expected ", expect_imm_ass, " got ", rr_imm_ass);
9822 setverdict(fail, "Failed to match Immediate Assignment");
9823 mtc.stop;
9824 }
9825}
9826
9827testcase TC_imm_ass_post_chan_ack() runs on test_CT {
9828 var RSL_Message chan_act;
9829 var RSL_Message imm_ass;
9830
9831 f_init(1, false);
9832 f_sleep(1.0);
9833
9834 /* (should be the default anyway, just to make things clear) */
9835 f_vty_set_imm_ass(BSCVTY, 0, "post-chan-ack");
9836
9837 /* RA containing reason=LU */
9838 var GsmFrameNumber fn := 2342;
9839 var uint8_t ra := 2;
9840 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9841
9842 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9843
9844 /* First send the Chan Act ACK */
9845 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009846 var RSL_IE_Body chan_ident_ie;
9847 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9848 setverdict(fail, "RSL Channel Identification IE is absent");
9849 mtc.stop;
9850 }
9851
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009852 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn + 10));
9853
9854 /* Then expect the Immediate Assignment, after we ACKed the chan act */
9855 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9856
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009857 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9858 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009859
9860 /* Check that the lchan is working */
9861 var octetstring l3 := '00010203040506'O;
9862 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9863
9864 var BSSAP_N_CONNECT_ind rx_c_ind;
9865 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9866 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9867
9868 f_sleep(1.0);
9869 f_shutdown_helper();
9870}
9871
9872testcase TC_imm_ass_pre_chan_ack() runs on test_CT {
9873 var RSL_Message chan_act;
9874 var RSL_Message imm_ass;
9875
9876 f_init(1, false);
9877 f_sleep(1.0);
9878
9879 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9880
9881 /* RA containing reason=LU */
9882 var GsmFrameNumber fn := 2342;
9883 var uint8_t ra := 2;
9884 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9885
9886 /* (set bts 0 cfg back to default) */
9887 f_vty_set_imm_ass(BSCVTY);
9888
9889 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9890 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009891 var RSL_IE_Body chan_ident_ie;
9892 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9893 setverdict(fail, "RSL Channel Identification IE is absent");
9894 mtc.stop;
9895 }
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009896
9897 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9898 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +02009899 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9900 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrb07b2952021-08-07 04:23:14 +02009901
9902 /* Only now send the Chan Act ACK */
9903 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9904
9905 /* Check that the lchan is working */
9906 var octetstring l3 := '00010203040506'O;
9907 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9908
9909 var BSSAP_N_CONNECT_ind rx_c_ind;
9910 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9911 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9912
9913 f_sleep(1.0);
9914 f_shutdown_helper();
9915}
9916
Neels Hofmeyr23158742021-09-07 19:08:07 +02009917testcase TC_imm_ass_pre_ts_ack() runs on test_CT {
9918 var RSL_Message chan_act;
9919 var RSL_Message imm_ass;
9920
9921 f_init(1, false);
9922 f_sleep(1.0);
9923
9924 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
9925
9926 /* RA containing reason=LU */
9927 var GsmFrameNumber fn := 2342;
9928 var uint8_t ra := 2;
9929 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9930
9931 /* (set bts 0 cfg back to default) */
9932 f_vty_set_imm_ass(BSCVTY);
9933
9934 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
9935 var RslChannelNr chan_nr := chan_act.ies[0].body.chan_nr;
9936 var RSL_IE_Body chan_ident_ie;
9937 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
9938 setverdict(fail, "RSL Channel Identification IE is absent");
9939 mtc.stop;
9940 }
9941
9942 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
9943 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
9944 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
9945 chan_ident_ie.chan_ident.ch_desc.v.tsc);
9946
9947 /* Only now send the Chan Act ACK */
9948 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
9949
9950 /* Check that the lchan is working */
9951 var octetstring l3 := '00010203040506'O;
9952 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
9953
9954 var BSSAP_N_CONNECT_ind rx_c_ind;
9955 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
9956 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
9957
9958 f_sleep(1.0);
9959 f_shutdown_helper();
9960}
9961
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +02009962testcase TC_imm_ass_pre_chan_ack_dyn_ts() runs on test_CT {
9963 /* change Timeslot 6 before f_init() starts RSL */
9964 f_init_vty();
9965 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
9966 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
9967
9968 f_init(1, false);
9969 f_sleep(1.0);
9970
9971 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
9972 /* The BSC will activate the dynamic PDCH by default, so confirm that */
9973 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
9974 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
9975
9976 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
9977 f_ts_set_chcomb(0, 0, 6, "PDCH");
9978
9979 /* block all static timeslots so that the dyn TS will be used */
9980 f_disable_all_tch_f();
9981 f_disable_all_tch_h();
9982 f_disable_all_sdcch();
9983
9984 var RSL_Message chan_act;
9985 var RSL_Message imm_ass;
9986
9987 f_init(1, false);
9988 f_sleep(1.0);
9989
9990 f_vty_set_imm_ass(BSCVTY, 0, "pre-chan-ack");
9991
9992 /* RA containing reason=LU */
9993 var GsmFrameNumber fn := 2342;
9994 var uint8_t ra := 2;
9995 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
9996
9997 /* (set bts 0 cfg back to default) */
9998 f_vty_set_imm_ass(BSCVTY);
9999
10000 /* Expect the dyn TS to deactivate PDCH first */
10001 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10002 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10003
10004 /* Now activation as SDCCH8 */
10005 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10006
10007 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010008 var RSL_IE_Body chan_ident_ie;
10009 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10010 setverdict(fail, "RSL Channel Identification IE is absent");
10011 mtc.stop;
10012 }
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010013
10014 /* *FIRST* expect the Immediate Assignment, before we ACK the chan act */
10015 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010016 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10017 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010018
10019 /* Only now send the Chan Act ACK */
10020 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10021
10022 /* Check that the lchan is working */
10023 var octetstring l3 := '00010203040506'O;
10024 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10025
10026 var BSSAP_N_CONNECT_ind rx_c_ind;
10027 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10028 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10029
10030 f_sleep(1.0);
10031 f_shutdown_helper();
10032}
10033
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010034testcase TC_imm_ass_pre_ts_ack_dyn_ts() runs on test_CT {
10035 /* change Timeslot 6 before f_init() starts RSL */
10036 f_init_vty();
10037 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
10038 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
10039
10040 f_init(1, false);
10041 f_sleep(1.0);
10042
10043 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
10044 /* The BSC will activate the dynamic PDCH by default, so confirm that */
10045 f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
10046 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2323));
10047
10048 /* clean up timeslot 6 config, will only take effect when the OML drops the next time */
10049 f_ts_set_chcomb(0, 0, 6, "PDCH");
10050
10051 /* block all static timeslots so that the dyn TS will be used */
10052 f_disable_all_tch_f();
10053 f_disable_all_tch_h();
10054 f_disable_all_sdcch();
10055
10056 var RSL_Message chan_act;
10057 var RSL_Message imm_ass;
10058
10059 f_init(1, false);
10060 f_sleep(1.0);
10061
10062 f_vty_set_imm_ass(BSCVTY, 0, "pre-ts-ack");
10063
10064 /* RA containing reason=LU */
10065 var GsmFrameNumber fn := 2342;
10066 var uint8_t ra := 2;
10067 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(ra, 1), fn));
10068
10069 /* (set bts 0 cfg back to default) */
10070 f_vty_set_imm_ass(BSCVTY);
10071
10072 /* Expect the dyn TS to deactivate PDCH first */
10073 f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
10074
10075 /* And already the Immediate Assignment even before the PDCH Deact ACK */
10076 imm_ass := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
10077
10078 /* continue the Osmo style PDCH Deact (usual chan rel) */
10079 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
10080
10081 /* Now activation as SDCCH8 */
10082 chan_nr := valueof(t_RslChanNr_SDCCH8(tn := 6, sub_slot := 0));
10083
10084 chan_act := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010085 var RSL_IE_Body chan_ident_ie;
10086 if (not f_rsl_find_ie(chan_act, RSL_IE_CHAN_IDENT, chan_ident_ie)) {
10087 setverdict(fail, "RSL Channel Identification IE is absent");
10088 mtc.stop;
10089 }
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010090 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
10091
Neels Hofmeyr07603cf2021-09-07 19:05:52 +020010092 f_verify_imm_ass(imm_ass, ra, fn, chan_nr, chan_ident_ie.chan_ident.ch_desc.v.arfcn,
10093 chan_ident_ie.chan_ident.ch_desc.v.tsc);
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010094
10095 /* Check that the lchan is working */
10096 var octetstring l3 := '00010203040506'O;
10097 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
10098
10099 var BSSAP_N_CONNECT_ind rx_c_ind;
10100 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
10101 BSSAP.send(ts_BSSAP_CONNECT_res(rx_c_ind.connectionId));
10102
10103 f_sleep(1.0);
10104 f_shutdown_helper();
10105}
10106
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010107/* GET and SET the bts.N.trx.M.rf_locked CTRL variable */
10108testcase TC_ctrl_trx_rf_locked() runs on test_CT {
10109 var MSC_ConnHdlr vc_conn;
10110
10111 f_init(nr_bts := 2, handler_mode := true, nr_msc := 1);
10112 f_sleep(1.0);
10113
10114 /* BTS 0, 1, 2 are OML unlocked, only BTS 0, 1 are actually connected to RSL. */
10115 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10116 "0,0,operational,unlocked,on,rsl-up;" &
10117 "1,0,operational,unlocked,on,rsl-up;" &
10118 "2,0,operational,unlocked,on,rsl-down;" &
10119 "3,0,inoperational,locked,on,rsl-down;");
10120
10121 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock BTS 1 TRX 0");
10122 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10123 /* give it a moment to settle the FSM status */
10124 f_sleep(1.0);
10125
10126 /* Now BTS 1 TRX 0 should reflect "locked". Note the RF policy stays "on", because this is still handled
10127 * globally in osmo-bsc. Probably after sending "rf_locked 1" for a TRX, that TRX should reflect an RF policy
10128 * of "off"? But that's for a future patch if at all. */
10129 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10130 "0,0,operational,unlocked,on,rsl-up;" &
10131 "1,0,operational,locked,on,rsl-up;" &
10132 "2,0,operational,unlocked,on,rsl-down;" &
10133 "3,0,inoperational,locked,on,rsl-down;");
10134
10135 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: lock the already locked TRX, nothing should change");
10136 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "1");
10137 f_sleep(1.0);
10138 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10139 "0,0,operational,unlocked,on,rsl-up;" &
10140 "1,0,operational,locked,on,rsl-up;" &
10141 "2,0,operational,unlocked,on,rsl-down;" &
10142 "3,0,inoperational,locked,on,rsl-down;");
10143
10144 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock BTS 1 TRX 0");
10145 f_ctrl_set(IPA_CTRL, "bts.1.trx.0.rf_locked", "0");
10146 f_sleep(1.0);
10147 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10148 "0,0,operational,unlocked,on,rsl-up;" &
10149 "1,0,operational,unlocked,on,rsl-up;" &
10150 "2,0,operational,unlocked,on,rsl-down;" &
10151 "3,0,inoperational,locked,on,rsl-down;");
10152
10153 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an already unlocked TRX, nothing should change");
10154 f_ctrl_set(IPA_CTRL, "bts.0.trx.0.rf_locked", "0");
10155 f_sleep(1.0);
10156 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10157 "0,0,operational,unlocked,on,rsl-up;" &
10158 "1,0,operational,unlocked,on,rsl-up;" &
10159 "2,0,operational,unlocked,on,rsl-down;" &
10160 "3,0,inoperational,locked,on,rsl-down;");
10161
10162 f_logp(BSCVTY, "TC_ctrl_trx_rf_locked: unlock an inoperational TRX");
10163 f_ctrl_set(IPA_CTRL, "bts.3.trx.0.rf_locked", "0");
10164 f_sleep(1.0);
10165 f_ctrl_get_exp(IPA_CTRL, "rf_states",
10166 "0,0,operational,unlocked,on,rsl-up;" &
10167 "1,0,operational,unlocked,on,rsl-up;" &
10168 "2,0,operational,unlocked,on,rsl-down;" &
10169 "3,0,inoperational,locked,on,rsl-down;");
10170
10171 f_shutdown_helper();
10172}
10173
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010174/* Reproduce a segfault happening when the SDCCH (primary) lchan is lost in-between a TCH Channel Activ and its Channel
10175 * Activ Ack (SYS#5627). */
10176private function f_TC_lost_sdcch_during_assignment(charstring id) runs on MSC_ConnHdlr {
10177 var PDU_BSSAP ass_cmd := f_gen_ass_req();
10178 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10179 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
10180 }
10181 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
10182 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
10183
10184 var BSSMAP_FIELD_CodecType codecType;
10185 codecType := valueof(ass_cmd.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType);
10186
10187 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
10188
10189 /* First establish a signalling lchan */
10190 f_create_chan_and_exp();
10191 f_rslem_dchan_queue_enable();
10192
10193 /* we should now have a COMPL_L3 at the MSC */
10194 var template PDU_BSSAP exp_l3_compl;
10195 exp_l3_compl := tr_BSSMAP_ComplL3()
10196 if (g_pars.aoip == false) {
10197 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
10198 } else {
10199 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
10200 }
10201 timer T := 10.0;
10202 T.start;
10203 alt {
10204 [] BSSAP.receive(exp_l3_compl);
10205 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
10206 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
10207 }
10208 [] T.timeout {
10209 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
10210 }
10211 }
10212
10213 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
10214 activate(as_Media_mgw());
10215
10216 var RslChannelNr chan_nr := { u := { ch0 := RSL_CHAN_NR_Bm_ACCH }, tn := 1 };
10217 f_rslem_register(0, chan_nr);
10218
10219 f_rslem_set_auto_chan_act_ack(RSL_PROC, false);
10220 BSSAP.send(ass_cmd);
10221
10222
10223 /* Wait for the Channel Activ for the TCH channel */
10224 var ASP_RSL_Unitdata rx_rsl_ud;
10225 RSL.receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV), sid := ?)) -> value rx_rsl_ud;
10226
10227 /* make the original SDCCH disappear */
10228 RSL.send(ts_RSL_REL_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
10229
10230 /* and ACK the TCH channel activation. This caused a segfault up to OsmoBSC 1.7.0 (SYS#5627) */
10231 RSL.send(ts_ASP_RSL_UD(ts_RSL_CHAN_ACT_ACK(chan_nr, 23), rx_rsl_ud.streamId));
10232
10233 interleave {
10234 [] BSSAP.receive(tr_BSSMAP_AssignmentFail);
10235 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
10236 }
10237
10238 BSSAP.send(ts_BSSMAP_ClearCommand(0));
10239 BSSAP.receive(tr_BSSMAP_ClearComplete);
10240 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
10241
10242 var MgcpCommand mgcp;
10243 MGCP.receive(tr_DLCX()) -> value mgcp {
10244 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
10245 };
10246
10247 f_sleep(0.5);
10248}
10249testcase TC_lost_sdcch_during_assignment() runs on test_CT {
10250 var TestHdlrParams pars := f_gen_test_hdlr_pars();
10251 var MSC_ConnHdlr vc_conn;
10252
10253 f_init(1, true);
10254 f_sleep(1.0);
10255
10256 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
10257 vc_conn := f_start_handler(refers(f_TC_lost_sdcch_during_assignment), pars);
10258 vc_conn.done;
10259
10260 f_shutdown_helper();
10261}
10262
Harald Welte28d943e2017-11-25 15:00:50 +010010263control {
Harald Welte898113b2018-01-31 18:32:21 +010010264 /* CTRL interface testing */
Harald Welte4003d112017-12-09 22:35:39 +010010265 execute( TC_ctrl_msc_connection_status() );
Stefan Sperlingb041b3d2018-01-03 17:14:55 +010010266 execute( TC_ctrl_msc0_connection_status() );
Neels Hofmeyrf65ce872021-09-23 18:40:10 +020010267 /* In SCCPlite tests, only one MSC is configured. These tests assume that three MSCs are configured, so only run
10268 * these in the AoIP test suite. */
10269 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10270 execute( TC_stat_num_msc_connected_1() );
10271 execute( TC_stat_num_msc_connected_2() );
10272 execute( TC_stat_num_msc_connected_3() );
10273 }
Neels Hofmeyr5ce3ae42021-08-29 15:32:00 +020010274 execute( TC_stat_num_bts_connected_1() );
10275 execute( TC_stat_num_bts_connected_2() );
10276 execute( TC_stat_num_bts_connected_3() );
Harald Welte96c94412017-12-09 03:12:45 +010010277 execute( TC_ctrl() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010278 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER) {
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +020010279 execute( TC_ctrl_location() );
10280 }
Harald Welte898113b2018-01-31 18:32:21 +010010281
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010282 execute( TC_si_default() );
Neels Hofmeyr66aeba42020-07-06 02:21:21 +020010283 execute( TC_si2quater_2_earfcns() );
10284 execute( TC_si2quater_3_earfcns() );
10285 execute( TC_si2quater_4_earfcns() );
10286 execute( TC_si2quater_5_earfcns() );
10287 execute( TC_si2quater_6_earfcns() );
Neels Hofmeyrad132f22020-07-08 02:20:16 +020010288 execute( TC_si2quater_12_earfcns() );
10289 execute( TC_si2quater_23_earfcns() );
10290 execute( TC_si2quater_32_earfcns() );
10291 execute( TC_si2quater_33_earfcns() );
10292 execute( TC_si2quater_42_earfcns() );
10293 execute( TC_si2quater_48_earfcns() );
10294 execute( TC_si2quater_49_earfcns() );
Pau Espin Pedrol85a84432020-07-20 18:45:03 +020010295 execute( TC_si_acc_rotate() );
Alexander Couzens4ad3a352020-09-10 22:29:12 +020010296 execute( TC_si_acc_ramp_rotate() );
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +020010297
Harald Welte898113b2018-01-31 18:32:21 +010010298 /* RSL DCHAN Channel ACtivation / Deactivation */
Harald Welteae026692017-12-09 01:03:01 +010010299 execute( TC_chan_act_noreply() );
Harald Welte4003d112017-12-09 22:35:39 +010010300 execute( TC_chan_act_counter() );
Harald Welteae026692017-12-09 01:03:01 +010010301 execute( TC_chan_act_ack_noest() );
Philipp Maier9c60a622020-07-09 15:08:46 +020010302 execute( TC_chan_act_ack_noest_emerg() );
Philipp Maier606f07d2020-08-12 17:21:58 +020010303 execute( TC_chan_rqd_emerg_deny() );
Harald Welteae026692017-12-09 01:03:01 +010010304 execute( TC_chan_act_ack_est_ind_noreply() );
10305 execute( TC_chan_act_ack_est_ind_refused() );
Harald Welte618ef642017-12-14 14:58:20 +010010306 execute( TC_chan_act_nack() );
Harald Welte799c97b2017-12-14 17:50:30 +010010307 execute( TC_chan_exhaustion() );
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +070010308 execute( TC_chan_deact_silence() );
Harald Welte4003d112017-12-09 22:35:39 +010010309 execute( TC_chan_rel_rll_rel_ind() );
10310 execute( TC_chan_rel_conn_fail() );
10311 execute( TC_chan_rel_hard_clear() );
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +020010312 execute( TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() );
10313 execute( TC_chan_rel_last_eutran_plmn_hard_clear_csfb() );
Harald Welte99787102019-02-04 10:41:36 +010010314 execute( TC_chan_rel_hard_clear_csfb() );
Harald Welted8c36cd2017-12-09 23:05:31 +010010315 execute( TC_chan_rel_hard_rlsd() );
Harald Welte550daf92018-06-11 19:22:13 +020010316 execute( TC_chan_rel_hard_rlsd_ms_dead() );
Harald Welte85804d42017-12-10 14:11:58 +010010317 execute( TC_chan_rel_a_reset() );
Pau Espin Pedrolc675b612020-01-09 19:55:40 +010010318 execute( TC_chan_rel_sccp_tiar_timeout() );
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +020010319 execute( TC_chan_rel_rr_cause() );
Harald Welte6f521d82017-12-11 19:52:02 +010010320
Harald Weltecfe2c962017-12-15 12:09:32 +010010321 execute( TC_outbound_connect() );
Harald Welte898113b2018-01-31 18:32:21 +010010322
10323 /* Assignment related */
Harald Welte16a4adf2017-12-14 18:54:01 +010010324 execute( TC_assignment_cic_only() );
Harald Welte235ebf12017-12-15 14:18:16 +010010325 execute( TC_assignment_csd() );
10326 execute( TC_assignment_ctm() );
10327 execute( TC_assignment_sign() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010328 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10329 execute( TC_assignment_aoip_tla_v6() );
10330 }
Harald Welte235ebf12017-12-15 14:18:16 +010010331 execute( TC_assignment_fr_a5_0() );
10332 execute( TC_assignment_fr_a5_1() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010333 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte8f67d1d2018-05-25 20:38:42 +020010334 execute( TC_assignment_fr_a5_1_codec_missing() );
10335 }
Harald Welte235ebf12017-12-15 14:18:16 +010010336 execute( TC_assignment_fr_a5_3() );
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +020010337 execute( TC_assignment_fr_a5_4() );
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +020010338 execute( TC_assignment_fr_a5_4_fail() );
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +020010339 execute( TC_assignment_fr_a5_not_sup() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010340 execute( TC_ciph_mode_a5_0() );
10341 execute( TC_ciph_mode_a5_1() );
Oliver Smith50b98122021-07-09 15:00:28 +020010342 execute( TC_ciph_mode_a5_2_0() );
Oliver Smith1dff88d2021-07-09 08:45:51 +020010343 execute( TC_ciph_mode_a5_2_1() );
Harald Welte3c86ea02018-05-10 22:28:05 +020010344 execute( TC_ciph_mode_a5_3() );
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +020010345 execute( TC_ciph_mode_a5_4() );
Harald Welte16a4adf2017-12-14 18:54:01 +010010346
Harald Welte60aa5762018-03-21 19:33:13 +010010347 execute( TC_assignment_codec_fr() );
Neels Hofmeyr559d5d02021-04-16 16:50:49 +020010348 execute( TC_assignment_codec_fr_by_mode_modify() );
Harald Welte60aa5762018-03-21 19:33:13 +010010349 execute( TC_assignment_codec_hr() );
10350 execute( TC_assignment_codec_efr() );
10351 execute( TC_assignment_codec_amr_f() );
10352 execute( TC_assignment_codec_amr_h() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010353
Neels Hofmeyrf246a922020-05-13 02:27:10 +020010354 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier8a581d22019-03-26 18:32:48 +010010355 execute( TC_assignment_codec_amr_f_S1() );
10356 execute( TC_assignment_codec_amr_h_S1() );
10357 execute( TC_assignment_codec_amr_f_S124() );
10358 execute( TC_assignment_codec_amr_h_S124() );
10359 execute( TC_assignment_codec_amr_f_S0() );
10360 execute( TC_assignment_codec_amr_f_S02() );
10361 execute( TC_assignment_codec_amr_f_S024() );
10362 execute( TC_assignment_codec_amr_f_S0247() );
10363 execute( TC_assignment_codec_amr_h_S0() );
10364 execute( TC_assignment_codec_amr_h_S02() );
10365 execute( TC_assignment_codec_amr_h_S024() );
10366 execute( TC_assignment_codec_amr_h_S0247() );
10367 execute( TC_assignment_codec_amr_f_S01234567() );
10368 execute( TC_assignment_codec_amr_f_S0234567() );
10369 execute( TC_assignment_codec_amr_f_zero() );
10370 execute( TC_assignment_codec_amr_f_unsupp() );
10371 execute( TC_assignment_codec_amr_h_S7() );
Neels Hofmeyr21863562020-11-26 00:34:33 +000010372 execute( TC_assignment_codec_amr_f_start_mode_auto() );
10373 execute( TC_assignment_codec_amr_h_start_mode_auto() );
Neels Hofmeyr3eb94562020-11-26 02:40:26 +000010374 execute( TC_assignment_codec_amr_f_start_mode_4() );
10375 execute( TC_assignment_codec_amr_h_start_mode_4() );
Neels Hofmeyr454d7922020-11-26 02:24:57 +000010376 execute( TC_assignment_codec_amr_startmode_cruft() );
Philipp Maier8a581d22019-03-26 18:32:48 +010010377 }
Harald Welte60aa5762018-03-21 19:33:13 +010010378
Philipp Maierac09bfc2019-01-08 13:41:39 +010010379 execute( TC_assignment_codec_fr_exhausted_req_hr() );
10380 execute( TC_assignment_codec_fr_exhausted_req_fr() );
10381 execute( TC_assignment_codec_fr_exhausted_req_fr_hr() );
10382 execute( TC_assignment_codec_fr_exhausted_req_hr_fr() );
10383 execute( TC_assignment_codec_hr_exhausted_req_fr() );
10384 execute( TC_assignment_codec_hr_exhausted_req_hr() );
10385 execute( TC_assignment_codec_hr_exhausted_req_hr_fr() );
10386 execute( TC_assignment_codec_hr_exhausted_req_fr_hr() );
10387 execute( TC_assignment_codec_req_hr_fr() );
10388 execute( TC_assignment_codec_req_fr_hr() );
Pau Espin Pedrol14475352021-07-22 15:48:16 +020010389 execute( TC_assignment_sdcch_exhausted_req_signalling() );
10390 execute( TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() );
10391 execute( TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() );
Philipp Maierac09bfc2019-01-08 13:41:39 +010010392
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +020010393 execute( TC_assignment_osmux() );
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +020010394
Harald Welte898113b2018-01-31 18:32:21 +010010395 /* RLL Establish Indication on inactive DCHAN / SAPI */
Harald Welte5cd20ed2017-12-13 21:03:20 +010010396 execute( TC_rll_est_ind_inact_lchan() );
10397 execute( TC_rll_est_ind_inval_sapi1() );
10398 execute( TC_rll_est_ind_inval_sapi3() );
10399 execute( TC_rll_est_ind_inval_sacch() );
10400
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +070010401 /* DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
10402 execute( TC_tch_dlci_link_id_sapi() );
10403
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +070010404 /* SAPI N Reject triggered by RLL establishment failures */
10405 execute( TC_rll_rel_ind_sapi_n_reject() );
10406 execute( TC_rll_err_ind_sapi_n_reject() );
10407 execute( TC_rll_timeout_sapi_n_reject() );
10408
Harald Welte898113b2018-01-31 18:32:21 +010010409 /* Paging related tests */
Harald Welte6f521d82017-12-11 19:52:02 +010010410 execute( TC_paging_imsi_nochan() );
10411 execute( TC_paging_tmsi_nochan() );
10412 execute( TC_paging_tmsi_any() );
10413 execute( TC_paging_tmsi_sdcch() );
10414 execute( TC_paging_tmsi_tch_f() );
10415 execute( TC_paging_tmsi_tch_hf() );
10416 execute( TC_paging_imsi_nochan_cgi() );
10417 execute( TC_paging_imsi_nochan_lac_ci() );
10418 execute( TC_paging_imsi_nochan_ci() );
10419 execute( TC_paging_imsi_nochan_lai() );
10420 execute( TC_paging_imsi_nochan_lac() );
10421 execute( TC_paging_imsi_nochan_all() );
Harald Welte751d3eb2018-01-31 15:51:06 +010010422 execute( TC_paging_imsi_nochan_plmn_lac_rnc() );
10423 execute( TC_paging_imsi_nochan_rnc() );
10424 execute( TC_paging_imsi_nochan_lac_rnc() );
10425 execute( TC_paging_imsi_nochan_lacs() );
10426 execute( TC_paging_imsi_nochan_lacs_empty() );
Stefan Sperling049a86e2018-03-20 15:51:00 +010010427 execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
Harald Welte10985002017-12-12 09:29:15 +010010428 execute( TC_paging_imsi_a_reset() );
Harald Weltee65d40e2017-12-13 00:09:06 +010010429 execute( TC_paging_imsi_load() );
Philipp Maier779a7922018-02-16 11:00:37 +010010430 execute( TC_paging_counter() );
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +010010431 execute( TC_paging_resp_unsol() );
Harald Welte4e9b9cc2017-12-14 18:31:02 +010010432
10433 execute( TC_rsl_drop_counter() );
Stefan Sperling830dc9d2018-02-12 21:08:28 +010010434 execute( TC_rsl_unknown_unit_id() );
10435
10436 execute( TC_oml_unknown_unit_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010437
10438 execute( TC_classmark() );
Harald Welteeddf0e92020-06-21 19:42:15 +020010439 execute( TC_common_id() );
Harald Welte898113b2018-01-31 18:32:21 +010010440 execute( TC_unsol_ass_fail() );
Harald Welteea99a002018-01-31 20:46:43 +010010441 execute( TC_unsol_ass_compl() );
Harald Weltefbf9b5e2018-01-31 20:41:23 +010010442 execute( TC_unsol_ho_fail() );
Harald Weltee3bd6582018-01-31 22:51:25 +010010443 execute( TC_err_82_short_msg() );
Harald Weltee9e02e42018-01-31 23:36:25 +010010444 execute( TC_err_84_unknown_msg() );
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010445
Harald Welte261af4b2018-02-12 21:20:39 +010010446 execute( TC_ho_int() );
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +020010447 execute( TC_ho_int_a5_0() );
10448 execute( TC_ho_int_a5_1() );
10449 execute( TC_ho_int_a5_3() );
10450 execute( TC_ho_int_a5_4() );
Neels Hofmeyr5f144212020-11-03 15:41:58 +000010451 execute( TC_ho_int_radio_link_failure() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010452
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010453 execute( TC_ho_out_of_this_bsc() );
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +020010454 execute( TC_ho_out_fail_no_msc_response() );
10455 execute( TC_ho_out_fail_rr_ho_failure() );
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +020010456 execute( TC_ho_out_fail_no_result_after_ho_cmd() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010457
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +010010458 execute( TC_ho_into_this_bsc() );
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +020010459 execute( TC_ho_into_this_bsc_a5_0() );
10460 execute( TC_ho_into_this_bsc_a5_1() );
10461 execute( TC_ho_into_this_bsc_a5_3() );
10462 execute( TC_ho_into_this_bsc_a5_4() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +020010463 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10464 execute( TC_ho_into_this_bsc_tla_v6() );
10465 }
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +020010466 execute( TC_srvcc_eutran_to_geran() );
Pau Espin Pedrol35801c32021-04-19 13:03:20 +020010467 execute( TC_srvcc_eutran_to_geran_ho_out() );
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +020010468 execute( TC_srvcc_eutran_to_geran_forbid_fast_return() );
10469 execute( TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +010010470 execute( TC_ho_in_fail_msc_clears() );
10471 execute( TC_ho_in_fail_msc_clears_after_ho_detect() );
10472 execute( TC_ho_in_fail_no_detect() );
10473 execute( TC_ho_in_fail_no_detect2() );
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010474
Neels Hofmeyr91401012019-07-11 00:42:35 +020010475 execute( TC_ho_neighbor_config_1() );
10476 execute( TC_ho_neighbor_config_2() );
10477 execute( TC_ho_neighbor_config_3() );
10478 execute( TC_ho_neighbor_config_4() );
10479 execute( TC_ho_neighbor_config_5() );
10480 execute( TC_ho_neighbor_config_6() );
10481 execute( TC_ho_neighbor_config_7() );
10482
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +010010483 execute( TC_bssap_rlsd_does_not_cause_bssmap_reset() );
Neels Hofmeyr4ff93282018-03-12 04:25:35 +010010484 execute( TC_bssmap_clear_does_not_cause_bssmap_reset() );
Neels Hofmeyrfd445c32018-03-09 15:39:31 +010010485 execute( TC_ms_rel_ind_does_not_cause_bssmap_reset() );
Harald Welte94e0c342018-04-07 11:33:23 +020010486
10487 execute( TC_dyn_pdch_ipa_act_deact() );
10488 execute( TC_dyn_pdch_ipa_act_nack() );
10489 execute( TC_dyn_pdch_osmo_act_deact() );
10490 execute( TC_dyn_pdch_osmo_act_nack() );
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +020010491 if (mp_enable_dyn_sdcch8_test) {
10492 execute( TC_dyn_ts_sdcch8_act_deact() );
10493 execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
10494 execute( TC_dyn_ts_sdcch8_act_nack() );
10495 }
Harald Welte99f3ca02018-06-14 13:40:29 +020010496
Stefan Sperling0796a822018-10-05 13:01:39 +020010497 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +020010498 execute( TC_chopped_ipa_payload() );
Stefan Sperling0796a822018-10-05 13:01:39 +020010499
Pau Espin Pedrol8f773632019-11-05 11:46:53 +010010500 /* Power control related */
10501 execute( TC_assignment_verify_ms_power_params_ie() );
Vadim Yanitskiy4b233042021-06-30 00:58:43 +020010502 execute( TC_c0_power_red_mode() );
Neels Hofmeyr4f118412020-06-04 15:25:10 +020010503
10504 /* MSC pooling */
10505 /* FIXME: in SCCPlite, indicating how many MSCs should be connected does currently not work. Since
10506 * RESET->RESET-ACK is unconditionally negotiated for all configured MSCs, they always all appear as connected
10507 * to osmo-bsc. The MSC pooling tests however require disconnecting selected MSCs, and hence don't work out as
10508 * intended on SCCPlite. So for now, run these only for SCCP/M3UA. */
10509 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
10510 execute( TC_mscpool_L3Compl_on_1_msc() );
10511 execute( TC_mscpool_L3Complete_by_imsi_round_robin() );
10512 execute( TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() );
10513 execute( TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() );
10514 execute( TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() );
10515 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() );
10516 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_1() );
10517 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_2() );
10518 execute( TC_mscpool_LU_by_tmsi_from_other_PLMN() );
10519 execute( TC_mscpool_paging_and_response_imsi() );
10520 execute( TC_mscpool_paging_and_response_tmsi() );
10521 execute( TC_mscpool_no_allow_attach_round_robin() );
10522 execute( TC_mscpool_no_allow_attach_valid_nri() );
10523 }
10524
Harald Welte99f3ca02018-06-14 13:40:29 +020010525 execute( TC_early_conn_fail() );
10526 execute( TC_late_conn_fail() );
Oliver Smithaf03bef2021-08-24 15:34:51 +020010527 execute( TC_stats_conn_fail() );
Harald Welte99f3ca02018-06-14 13:40:29 +020010528
Philipp Maier783681c2020-07-16 16:47:06 +020010529 /* Emergency call handling (deny / allow) */
10530 execute( TC_assignment_emerg_setup_allow() );
10531 execute( TC_assignment_emerg_setup_deny_msc() );
10532 execute( TC_assignment_emerg_setup_deny_bts() );
Philipp Maier82812002020-08-13 18:48:27 +020010533 execute( TC_emerg_premption() );
10534
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +070010535 /* Frequency hopping parameters handling */
10536 execute( TC_fh_params_chan_activ() );
10537 execute( TC_fh_params_imm_ass() );
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +070010538 execute( TC_fh_params_assignment_cmd() );
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +070010539 execute( TC_fh_params_handover_cmd() );
Vadim Yanitskiyca974032020-09-01 07:20:39 +070010540 execute( TC_fh_params_si4_cbch() );
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +020010541
10542 if (mp_enable_lcs_tests) {
10543 execute( TC_lcs_loc_req_for_active_ms() );
10544 execute( TC_lcs_loc_req_for_active_ms_ta_req() );
10545 execute( TC_lcs_loc_req_for_idle_ms() );
10546 execute( TC_lcs_loc_req_no_subscriber() );
10547 execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
10548 execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
10549 execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
10550 execute( TC_cm_service_during_lcs_loc_req() );
10551 execute( TC_ho_during_lcs_loc_req() );
10552 }
Neels Hofmeyrbf037052020-10-28 22:52:02 +000010553
10554 execute( TC_no_msc() );
Neels Hofmeyr87857ec2021-04-25 16:17:47 +000010555
10556 execute( TC_refuse_chan_act_to_vamos() );
10557 execute( TC_refuse_mode_modif_to_vamos() );
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +000010558
10559 execute( TC_reassignment_fr() );
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +020010560
10561 execute( TC_cm_reestablishment() );
Neels Hofmeyrb07b2952021-08-07 04:23:14 +020010562
10563 execute( TC_imm_ass_post_chan_ack() );
10564 execute( TC_imm_ass_pre_chan_ack() );
Neels Hofmeyr23158742021-09-07 19:08:07 +020010565 execute( TC_imm_ass_pre_ts_ack() );
Neels Hofmeyr7a6d0602021-08-07 04:23:50 +020010566 execute( TC_imm_ass_pre_chan_ack_dyn_ts() );
Neels Hofmeyrc8b95c12021-08-07 04:24:02 +020010567 execute( TC_imm_ass_pre_ts_ack_dyn_ts() );
Neels Hofmeyr5d7d13f2021-09-07 14:44:36 +020010568
10569 execute( TC_ctrl_trx_rf_locked() );
Neels Hofmeyr92cfa1c2021-09-28 18:29:44 +020010570
10571 execute( TC_lost_sdcch_during_assignment() );
Harald Welte28d943e2017-11-25 15:00:50 +010010572}
10573
10574}