blob: 0a11a48ea436db289669ba549eef2ad77743995a [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
Harald Welte5d1a2202017-12-13 19:51:29 +010078const integer NUM_BTS := 3;
Neels Hofmeyrf246a922020-05-13 02:27:10 +020079const integer NUM_MSC := 3;
Harald Welteae026692017-12-09 01:03:01 +010080const float T3101_MAX := 12.0;
Harald Welte28d943e2017-11-25 15:00:50 +010081
Harald Welte799c97b2017-12-14 17:50:30 +010082/* make sure to sync this with the osmo-bts.cfg you're using */
Philipp Maiercb6cc482018-03-26 13:08:00 +020083const integer NUM_TCHH_PER_BTS := 2;
84const integer NUM_TCHF_PER_BTS := 4;
Neels Hofmeyr74083c22020-07-29 00:43:01 +020085const integer NUM_SDCCH_PER_BTS := 3;
Harald Welte799c97b2017-12-14 17:50:30 +010086
Harald Welte4003d112017-12-09 22:35:39 +010087
Harald Welte21b46bd2017-12-17 19:46:32 +010088/* per-BTS state which we keep */
Harald Welte96c94412017-12-09 03:12:45 +010089type record BTS_State {
Harald Welte21b46bd2017-12-17 19:46:32 +010090 /* component reference to the IPA_Client component used for RSL */
Harald Weltea5d2ab22017-12-09 14:21:42 +010091 IPA_Client rsl
Harald Welte96c94412017-12-09 03:12:45 +010092}
93
Neels Hofmeyr22c3f792020-06-17 02:49:28 +020094/* Default list of counters for an 'msc' entity. */
95const CounterNameVals counternames_msc_mscpool := {
96 { "mscpool:subscr:new", 0 },
97 { "mscpool:subscr:known", 0 },
98 { "mscpool:subscr:reattach", 0 },
99 { "mscpool:subscr:attach_lost", 0 },
100 { "mscpool:subscr:paged", 0 }
101};
102
Neels Hofmeyrbf037052020-10-28 22:52:02 +0000103/* List of global mscpool counters, not related to a specific 'msc' entity. */
104const CounterNameVals counternames_bsc_mscpool := {
105 { "mscpool:subscr:no_msc", 0 }
106};
107
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000108/* Default list of counters for 'bsc' and 'bts' entities. */
109const CounterNameVals counternames_bsc_bts_handover := {
110 { "assignment:attempted", 0 },
111 { "assignment:completed", 0 },
112 { "assignment:stopped", 0 },
113 { "assignment:no_channel", 0 },
114 { "assignment:timeout", 0 },
115 { "assignment:failed", 0 },
116 { "assignment:error", 0 },
117
118 { "handover:attempted", 0 },
119 { "handover:completed", 0 },
120 { "handover:stopped", 0 },
121 { "handover:no_channel", 0 },
122 { "handover:timeout", 0 },
123 { "handover:failed", 0 },
124 { "handover:error", 0 },
125
126 { "intra_cell_ho:attempted", 0 },
127 { "intra_cell_ho:completed", 0 },
128 { "intra_cell_ho:stopped", 0 },
129 { "intra_cell_ho:no_channel", 0 },
130 { "intra_cell_ho:timeout", 0 },
131 { "intra_cell_ho:failed", 0 },
132 { "intra_cell_ho:error", 0 },
133
134 { "intra_bsc_ho:attempted", 0 },
135 { "intra_bsc_ho:completed", 0 },
136 { "intra_bsc_ho:stopped", 0 },
137 { "intra_bsc_ho:no_channel", 0 },
138 { "intra_bsc_ho:timeout", 0 },
139 { "intra_bsc_ho:failed", 0 },
140 { "intra_bsc_ho:error", 0 },
141
142 { "interbsc_ho_out:attempted", 0 },
143 { "interbsc_ho_out:completed", 0 },
144 { "interbsc_ho_out:stopped", 0 },
145 { "interbsc_ho_out:timeout", 0 },
146 { "interbsc_ho_out:failed", 0 },
147 { "interbsc_ho_out:error", 0 },
148
149 { "interbsc_ho_in:attempted", 0 },
150 { "interbsc_ho_in:completed", 0 },
151 { "interbsc_ho_in:stopped", 0 },
152 { "interbsc_ho_in:no_channel", 0 },
153 { "interbsc_ho_in:timeout", 0 },
154 { "interbsc_ho_in:failed", 0 },
155 { "interbsc_ho_in:error", 0 }
156};
157
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200158/* Set of all System Information received during one RSL port's startup.
159 * Note that some System Information may be sent on RSL, but lacking actual SI data, to indicate that the BTS should not
160 * broadcast that SI type. That will be reflected as 'omit' here.
161 */
162type record SystemInformationConfig {
163 SystemInformationType1 si1 optional,
164 SystemInformationType2 si2 optional,
165 SystemInformationType2bis si2bis optional,
166 SystemInformationType2ter si2ter optional,
Neels Hofmeyrad132f22020-07-08 02:20:16 +0200167 SI2quaterRestOctetsList si2quater optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200168 SystemInformationType3 si3 optional,
169 SystemInformationType4 si4 optional,
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100170 SystemInformationType13 si13 optional,
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200171 SystemInformationType5 si5 optional,
172 SystemInformationType5bis si5bis optional,
173 SystemInformationType5ter si5ter optional,
174 SystemInformationType6 si6 optional
175};
176
177const SystemInformationConfig SystemInformationConfig_omit := {
178 si1 := omit,
179 si2 := omit,
180 si2bis := omit,
181 si2ter := omit,
182 si2quater := omit,
183 si3 := omit,
184 si4 := omit,
185 si13 := omit,
186 si5 := omit,
187 si5bis := omit,
188 si5ter := omit,
189 si6 := omit
190};
191
192/* tr_EUTRAN_CellDesc with defaults used in BSC_Tests.ttcn */
193template EUTRAN_CellDesc tr_EUTRAN_CellDesc_default(template (present) uint16_t e_arfcn := ?,
194 template uint3_t meas_bw := 3)
195:= tr_EUTRAN_CellDesc(e_arfcn := e_arfcn,
196 meas_bw_presence := '1'B,
197 meas_bw := meas_bw);
198
199/* tr_EUTRAN_NeighbourCells with defaults used in BSC_Tests.ttcn */
Harald Welte65e419a2020-08-21 12:38:33 +0200200template EUTRAN_NeighbourCells tr_EUTRAN_NeighbourCells_default(template (present) EUTRAN_CellDescs cell_desc_list := { tr_EUTRAN_CellDesc_default },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200201 template uint3_t prio := 3,
202 template (present) uint5_t thresh_high := 20,
203 template uint5_t thresh_low := 10,
204 template uint5_t qrxlevmin := 22)
205:= tr_EUTRAN_NeighbourCells(
206 cell_desc_list := cell_desc_list,
207 prio_presence := '1'B,
208 prio := prio,
209 thresh_high := thresh_high,
210 thresh_low_presence := '1'B,
211 thresh_low := thresh_low,
212 qrxlevmin_presence := '1'B,
213 qrxlevmin := qrxlevmin);
214
215template SystemInformationConfig SystemInformationConfig_default := {
216 si1 := {
217 cell_chan_desc := '8FB38000000000000000000000000000'O,
218 rach_control := {
219 max_retrans := RACH_MAX_RETRANS_7,
220 tx_integer := '1001'B,
221 cell_barr_access := false,
222 re_not_allowed := true,
223 acc := '0000010000000000'B
224 },
225 rest_octets := ?
226 },
227 si2 := {
228 bcch_freq_list := '00000000000000000000000000000000'O,
229 ncc_permitted := '11111111'B,
230 rach_control := {
231 max_retrans := RACH_MAX_RETRANS_7,
232 tx_integer := '1001'B,
233 cell_barr_access := false,
234 re_not_allowed := true,
235 acc := '0000010000000000'B
236 }
237 },
238 si2bis := omit,
239 si2ter := {
240 extd_bcch_freq_list := '8E320000000000000000000000000800'O,
241 rest_octets := ?
242 },
243 si2quater := {
244 tr_SI2quaterRestOctets_EUTRAN( repeated_neigh_cells := { tr_EUTRAN_NeighbourCells_default } )
245 },
246 si3 := {
247 cell_id := 0,
248 lai := {
249 mcc_mnc := '001F01'H,
250 lac := 1
251 },
252 ctrl_chan_desc := {
253 msc_r99 := true,
254 att := true,
255 bs_ag_blks_res := 1,
256 ccch_conf := CCHAN_DESC_1CCCH_COMBINED,
257 si22ind := false,
258 cbq3 := CBQ3_IU_MODE_NOT_SUPPORTED,
259 spare := '00'B,
260 bs_pa_mfrms := 3,
261 t3212 := 30
262 },
263 cell_options := {
264 dn_ind := false,
265 pwrc := false,
266 dtx := MS_SHALL_USE_UL_DTX,
267 radio_link_tout_div4 := 7
268 },
269 cell_sel_par := {
270 cell_resel_hyst_2dB := 2,
271 ms_txpwr_max_cch := 7,
272 acs := '0'B,
273 neci := true,
274 rxlev_access_min := 0
275 },
276 rach_control := {
277 max_retrans := RACH_MAX_RETRANS_7,
278 tx_integer := '1001'B,
279 cell_barr_access := false,
280 re_not_allowed := true,
281 acc := '0000010000000000'B
282 },
283 rest_octets := {
284 sel_params := {
285 presence := '0'B,
286 params := omit
287 },
288 pwr_offset := {
289 presence := '0'B,
290 offset := omit
291 },
292 si_2ter_ind := '1'B,
293 early_cm_ind := '0'B,
294 sched_where := {
295 presence := '0'B,
296 where := omit
297 },
298 gprs_ind := {
299 presence := '1'B,
300 ind := {
301 ra_colour := 0,
302 si13_pos := '0'B
303 }
304 },
305 umts_early_cm_ind := '1'B,
306 si2_quater_ind := {
307 presence := '1'B,
308 ind := '0'B
309 },
310 iu_mode_ind := omit,
311 si21_ind := {
312 presence := '0'B,
313 pos := omit
314 }
315 }
316 },
317 si4 := {
318 lai := {
319 mcc_mnc := '001F01'H,
320 lac := 1
321 },
322 cell_sel_par := {
323 cell_resel_hyst_2dB := 2,
324 ms_txpwr_max_cch := 7,
325 acs := '0'B,
326 neci := true,
327 rxlev_access_min := 0
328 },
329 rach_control := {
330 max_retrans := RACH_MAX_RETRANS_7,
331 tx_integer := '1001'B,
332 cell_barr_access := false,
333 re_not_allowed := true,
334 acc := '0000010000000000'B
335 },
Neels Hofmeyr74083c22020-07-29 00:43:01 +0200336 cbch_chan_desc := {
337 iei := '64'O,
338 v := {
339 chan_nr := {
340 u := {
341 sdcch4 := {
342 tag := '001'B,
343 sub_chan := 2
344 }
345 },
346 tn := 0
347 },
348 tsc := 2,
349 h := false,
350 arfcn := 871,
351 maio_hsn := omit
352 }
353 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200354 cbch_mobile_alloc := omit,
355 rest_octets := {
356 sel_params := {
357 presence := '0'B,
358 params := omit
359 },
360 pwr_offset := {
361 presence := '0'B,
362 offset := omit
363 },
364 gprs_ind := {
365 presence := '1'B,
366 ind := {
367 ra_colour := 0,
368 si13_pos := '0'B
369 }
370 },
371 s_presence := '0'B,
372 s := omit
373 }
374 },
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100375 si13 := {
376 rest_octets := {
377 presence := '1'B,
378 bcch_change_mark := ?,
379 si_change_field := '0000'B,
380 presence2 := '0'B,
381 si13_change_mark := omit,
382 gprs_ma := omit,
383 zero := '0'B, /* PBCCH not present in cell */
384 rac := 0,
385 spgc_ccch_sup := '0'B,
386 priority_access_thr := '110'B,
387 network_control_order := '00'B,
388 gprs_cell_opts := {
389 nmo := '01'B,
390 t3168 := '011'B,
391 t3192 := '010'B,
392 drx_timer_max := '011'B,
393 access_burst_type := '0'B,
394 control_ack_type := '1'B,
395 bs_cv_max := 15,
396 pan_presence := '1'B,
397 pan_dec := 1,
398 pan_inc := 1,
399 pan_max := '111'B,
400 ext_info_presence := ?,
401 ext_info_length := *,
402 ext_info := *
403 },
404 gprs_pwr_ctrl_params := {
405 alpha := 0,
406 t_avg_w := '10000'B,
407 t_avg_t := '10000'B,
408 pc_meas_chan := '0'B,
409 n_avg_i := '1000'B
410 }
411 }
412 },
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200413 si5 := {
414 bcch_freq_list := '10000000000000000000000000000000'O
415 },
416 si5bis := omit,
417 si5ter := {
418 extd_bcch_freq_list := '9E050020000000000000000000000000'O
419 },
420 si6 := {
421 cell_id := 0,
422 lai := {
423 mcc_mnc := '001F01'H,
424 lac := 1
425 },
426 cell_options := {
427 dtx_ext := '1'B,
428 pwrc := false,
429 dtx := '01'B,
430 radio_link_timeout := '0111'B
431 },
432 ncc_permitted := '11111111'B,
433 rest_octets := ?
434 }
435 };
436
437
438/* List of all the System Information received on all RSL ports */
439type record of SystemInformationConfig SystemInformationConfig_list;
440
441function f_sysinfo_dec_raw(inout SystemInformationConfig si, RSL_Message rsl)
442{
443 var RSL_IE_Body sysinfo_type_ie;
444 var RSL_IE_SysinfoType si_type;
445 var octetstring data;
446
447 if (f_rsl_find_ie(rsl, RSL_IE_SYSINFO_TYPE, sysinfo_type_ie) == false) {
448 setverdict(fail, "Cannot find RSL_IE_SYSINFO_TYPE");
449 mtc.stop;
450 }
451 si_type := sysinfo_type_ie.sysinfo_type;
452
453 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
454 var RSL_IE_Body bcch_ie;
455 if (f_rsl_find_ie(rsl, RSL_IE_FULL_BCCH_INFO, bcch_ie)) {
456 data := bcch_ie.other.payload;
457 }
458 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
459 var RSL_IE_Body l3_ie;
460 if (f_rsl_find_ie(rsl, RSL_IE_L3_INFO, l3_ie)) {
461 data := l3_ie.l3_info.payload;
462 }
463 } else {
464 setverdict(fail, "Don't understand this System Information message");
465 mtc.stop;
466 }
467
468 var boolean handled := false;
469
470 if (rsl.msg_type == RSL_MT_BCCH_INFO) {
471 handled := true;
472
473 if (si_type == RSL_SYSTEM_INFO_1) {
474 if (not isbound(data)) {
475 si.si1 := omit;
476 } else {
477 si.si1 := dec_SystemInformation(data).payload.si1;
478 }
479 } else if (si_type == RSL_SYSTEM_INFO_2) {
480 if (not isbound(data)) {
481 si.si2 := omit;
482 } else {
483 si.si2 := dec_SystemInformation(data).payload.si2;
484 }
485 } else if (si_type == RSL_SYSTEM_INFO_2bis) {
486 if (not isbound(data)) {
487 si.si2bis := omit;
488 } else {
489 si.si2bis := dec_SystemInformation(data).payload.si2bis;
490 }
491 } else if (si_type == RSL_SYSTEM_INFO_2ter) {
492 if (not isbound(data)) {
493 si.si2ter := omit;
494 } else {
495 si.si2ter := dec_SystemInformation(data).payload.si2ter;
496 }
497 } else if (si_type == RSL_SYSTEM_INFO_2quater) {
498 if (not isbound(data)) {
499 si.si2quater := {};
500 } else {
501 var SystemInformationType2quater decoded := dec_SystemInformation(data).payload.si2quater;
502 /* this is a *record* of SI2quaterRestOctets! (multiplexed) */
503 si.si2quater[decoded.rest_octets.si2quater_index] := decoded.rest_octets;
504 }
505 } else if (si_type == RSL_SYSTEM_INFO_3) {
506 if (not isbound(data)) {
507 si.si3 := omit;
508 } else {
509 si.si3 := dec_SystemInformation(data).payload.si3;
510 }
511 } else if (si_type == RSL_SYSTEM_INFO_4) {
512 if (not isbound(data)) {
513 si.si4 := omit;
514 } else {
515 si.si4 := dec_SystemInformation(data).payload.si4;
516 }
517 } else if (si_type == RSL_SYSTEM_INFO_13) {
518 if (not isbound(data)) {
519 si.si13 := omit;
520 } else {
Pau Espin Pedrol28652d82021-02-09 20:20:17 +0100521 si.si13 := dec_SystemInformation(data).payload.si13;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200522 }
523 } else {
524 handled := false;
525 }
526 } else if (rsl.msg_type == RSL_MT_SACCH_FILL) {
527 handled := true;
528
529 if (si_type == RSL_SYSTEM_INFO_5) {
530 if (not isbound(data)) {
531 si.si5 := omit;
532 } else {
533 si.si5 := dec_SystemInformation(data).payload.si5;
534 }
535 } else if (si_type == RSL_SYSTEM_INFO_5bis) {
536 if (not isbound(data)) {
537 si.si5bis := omit;
538 } else {
539 si.si5bis := dec_SystemInformation(data).payload.si5bis;
540 }
541 } else if (si_type == RSL_SYSTEM_INFO_5ter) {
542 if (not isbound(data)) {
543 si.si5ter := omit;
544 } else {
545 si.si5ter := dec_SystemInformation(data).payload.si5ter;
546 }
547 } else if (si_type == RSL_SYSTEM_INFO_6) {
548 if (not isbound(data)) {
549 si.si6 := omit;
550 } else {
551 si.si6 := dec_SystemInformation(data).payload.si6;
552 }
553 } else {
554 handled := false;
555 }
556 }
557
558 if (not handled) {
559 setverdict(fail, "Unexpected SI type in ", rsl.msg_type, " message: ", si_type);
560 }
561}
562
Harald Weltea4ca4462018-02-09 00:17:14 +0100563type component test_CT extends CTRL_Adapter_CT {
Harald Welte21b46bd2017-12-17 19:46:32 +0100564 /* Array of per-BTS state */
Harald Welte96c94412017-12-09 03:12:45 +0100565 var BTS_State bts[NUM_BTS];
Harald Welte89ab1912018-02-23 18:56:29 +0100566 /* RSL common Channel Port (for RSL_Emulation) */
567 port RSL_CCHAN_PT RSL_CCHAN[NUM_BTS];
Harald Welte21b46bd2017-12-17 19:46:32 +0100568 /* array of per-BTS RSL test ports */
Harald Welteae026692017-12-09 01:03:01 +0100569 port IPA_RSL_PT IPA_RSL[NUM_BTS];
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100570 port IPA_CODEC_PT IPA; /* Required for compilation of TC_rsl_unknown_unit_id() */
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +0200571 /* CTRL muxed over IPA in SCCPlite conn BSC<->MSC (or BSC-NAT) */
572 port IPA_CTRL_PT SCCPLITE_IPA_CTRL;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100573
Daniel Willmann191e0d92018-01-17 12:44:35 +0100574 var MGCP_Emulation_CT vc_MGCP;
Harald Weltebc03c762018-02-12 18:09:38 +0100575 port TELNETasp_PT BSCVTY;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100576
Daniel Willmannebdecc02020-08-12 15:30:17 +0200577 /* StatsD */
578 var StatsD_Checker_CT vc_STATSD;
579
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200580 var RAN_Adapter g_bssap[NUM_MSC];
Harald Welte47cd0e32020-08-21 12:39:11 +0200581 var BSSAP_LE_Adapter g_bssap_le;
Harald Weltea4ca4462018-02-09 00:17:14 +0100582 /* for old legacy-tests only */
583 port BSSAP_CODEC_PT BSSAP;
Harald Welte47cd0e32020-08-21 12:39:11 +0200584 port BSSAP_LE_CODEC_PT BSSAP_LE;
Harald Weltea4ca4462018-02-09 00:17:14 +0100585
Harald Welte21b46bd2017-12-17 19:46:32 +0100586 /* are we initialized yet */
Harald Welte28d943e2017-11-25 15:00:50 +0100587 var boolean g_initialized := false;
Harald Welte21b46bd2017-12-17 19:46:32 +0100588
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200589 /* Osmux is enabled through VTY */
590 var boolean g_osmux_enabled := false;
591
Pau Espin Pedrolc675b612020-01-09 19:55:40 +0100592 /*Configure T(tias) over VTY, seconds */
593 var integer g_bsc_sccp_timer_ias := 7 * 60;
594 /*Configure T(tiar) over VTY, seconds */
595 var integer g_bsc_sccp_timer_iar := 15 * 60;
596
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +0200597 /* global test case guard timer (actual timeout value is set in f_init()) */
Harald Welteae026692017-12-09 01:03:01 +0100598 timer T_guard := 30.0;
599
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200600 var CounterNameValsList g_ctr_msc;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000601 var CounterNameValsList g_ctr_bsc;
602 var CounterNameValsList g_ctr_bts;
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +0200603
604 /* System Information bytes as received during RSL startup, for each RSL[idx]. */
605 var SystemInformationConfig_list g_system_information := {};
Harald Welte28d943e2017-11-25 15:00:50 +0100606}
607
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200608type record of charstring phys_chan_configs;
Harald Welte28d943e2017-11-25 15:00:50 +0100609modulepar {
Harald Welte21b46bd2017-12-17 19:46:32 +0100610 /* IP address at which the BSC can be reached */
Harald Welte696ddb62017-12-08 14:01:43 +0100611 charstring mp_bsc_ip := "127.0.0.1";
Stefan Sperling830dc9d2018-02-12 21:08:28 +0100612 /* port number to which to establish the IPA OML connections */
613 integer mp_bsc_oml_port := 3002;
Harald Welte21b46bd2017-12-17 19:46:32 +0100614 /* port number to which to establish the IPA RSL connections */
Harald Welte696ddb62017-12-08 14:01:43 +0100615 integer mp_bsc_rsl_port := 3003;
Harald Welte21b46bd2017-12-17 19:46:32 +0100616 /* port number to which to establish the IPA CTRL connection */
Harald Welte96c94412017-12-09 03:12:45 +0100617 integer mp_bsc_ctrl_port := 4249;
Daniel Willmannebdecc02020-08-12 15:30:17 +0200618 /* port number to which to listen for STATSD metrics */
619 integer mp_bsc_statsd_port := 8125;
Daniel Willmann191e0d92018-01-17 12:44:35 +0100620 /* IP address at which the test binds */
621 charstring mp_test_ip := "127.0.0.1";
Harald Weltea4ca4462018-02-09 00:17:14 +0100622
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200623 RAN_Configurations mp_bssap_cfg := {
624 {
625 transport := BSSAP_TRANSPORT_AoIP,
626 sccp_service_type := "mtp3_itu",
627 sctp_addr := { 23905, "127.0.0.1", 2905, "127.0.0.1" },
628 own_pc := 185, /* 0.23.1 first MSC emulation */
629 own_ssn := 254,
630 peer_pc := 187, /* 0.23.3 osmo-bsc */
631 peer_ssn := 254,
632 sio := '83'O,
Harald Weltecb0cc432020-06-21 19:42:31 +0200633 rctx := 1
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200634 },
635 {
636 transport := BSSAP_TRANSPORT_AoIP,
637 sccp_service_type := "mtp3_itu",
638 sctp_addr := { 23906, "127.0.0.1", 2905, "127.0.0.1" },
639 own_pc := 2, /* 0.0.2 second MSC emulation */
640 own_ssn := 254,
641 peer_pc := 187, /* 0.23.3 osmo-bsc */
642 peer_ssn := 254,
643 sio := '83'O,
644 rctx := 2
645 },
646 {
647 transport := BSSAP_TRANSPORT_AoIP,
648 sccp_service_type := "mtp3_itu",
649 sctp_addr := { 23907, "127.0.0.1", 2905, "127.0.0.1" },
650 own_pc := 3, /* 0.0.3 third MSC emulation */
651 own_ssn := 254,
652 peer_pc := 187, /* 0.23.3 osmo-bsc */
653 peer_ssn := 254,
654 sio := '83'O,
655 rctx := 3
656 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100657 };
Pau Espin Pedrol58cf6822019-05-28 18:11:33 +0200658
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200659 /* Must match per BTS config in osmo-bsc.cfg */
660 phys_chan_configs phys_chan_config := {
661 "CCCH+SDCCH4+CBCH",
662 "TCH/F",
663 "TCH/F",
664 "TCH/F",
665 "TCH/F",
Vadim Yanitskiy343c9eb2021-07-16 18:36:01 +0600666 "TCH/H",
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +0200667 "PDCH",
668 "PDCH"
669 };
670
Harald Welte47cd0e32020-08-21 12:39:11 +0200671 BSSAP_LE_Configuration mp_bssap_le_cfg := {
672 sccp_service_type := "mtp3_itu",
673 sctp_addr := { 23908, "127.0.0.1", 2905, "127.0.0.1" },
Neels Hofmeyrac086c12020-09-18 23:46:42 +0200674 own_pc := 190, /* 0.23.6 SMLC emulation */
Harald Welte47cd0e32020-08-21 12:39:11 +0200675 own_ssn := 252, /* SMLC side SSN */
676 peer_pc := 187, /* 0.23.3 osmo-bsc */
677 peer_ssn := 250, /* BSC side SSN */
678 sio := '83'O,
679 rctx := 6
680 };
Neels Hofmeyrcfe44062020-10-15 02:28:08 +0200681 boolean mp_enable_lcs_tests := true;
Harald Welte47cd0e32020-08-21 12:39:11 +0200682
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +0200683 /* Whether to enable dyn TS SDCCH8 tests. Can be dropped completely and enable
684 unconditionally once new version of osmo-bsc is released (current
685 version: 1.7.0) */
686 boolean mp_enable_dyn_sdcch8_test := true;
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100687 /* Value set in osmo-bsc.cfg "ms max power" */
688 uint8_t mp_exp_ms_power_level := 7;
Harald Weltea4ca4462018-02-09 00:17:14 +0100689}
690
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200691friend function f_gen_test_hdlr_pars(integer bssap_idx := 0) return TestHdlrParams {
Philipp Maier48604732018-10-09 15:00:37 +0200692
693 var TestHdlrParams pars := valueof(t_def_TestHdlrPars);
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200694 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier48604732018-10-09 15:00:37 +0200695 pars.aoip := true;
696 } else {
697 pars.aoip := false;
698 }
Pau Espin Pedrol8f30ccd2019-11-01 17:30:57 +0100699 pars.exp_ms_power_level := mp_exp_ms_power_level;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200700 pars.mscpool.bssap_idx := bssap_idx;
Philipp Maier48604732018-10-09 15:00:37 +0200701
Neels Hofmeyrb5b7a6e2021-06-04 19:03:45 +0200702 /* BTS 0 has BSIC 10 (and no explicit timeslot training_sequence_code config), so expecting TSC = (BSIC & 7) = 2 */
703 pars.expect_tsc := 2;
704
Philipp Maier48604732018-10-09 15:00:37 +0200705 return pars;
706}
707
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200708/* Convenience functions for rate counters using g_ctr_msc. */
709
710private function f_ctrs_msc_init(integer mscs_count := NUM_MSC, CounterNameVals counternames := counternames_msc_mscpool) runs on test_CT {
711 g_ctr_msc := f_counter_name_vals_get_n(IPA_CTRL, "msc", mscs_count, counternames);
712 log("initial msc rate counters: ", g_ctr_msc);
713}
714
715private function f_ctrs_msc_add(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
Neels Hofmeyr9656e922020-06-30 01:27:01 +0200716 f_counter_name_vals_list_add(g_ctr_msc, msc_nr, countername, val);
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200717}
718
719/* f_ctrs_msc_init();
720 * f_do_thing(on_msc := 0);
721 * f_do_thing(on_msc := 0);
722 * f_do_other(on_msc := 1);
723 * f_ctrs_msc_add(0, "thing", 2);
724 * f_ctrs_msc_add(1, "other");
725 * f_ctrs_msc_verify();
726 */
727private function f_ctrs_msc_verify() runs on test_CT {
728 log("verifying msc rate counters: ", g_ctr_msc);
729 f_counter_name_vals_expect_n(IPA_CTRL, "msc", g_ctr_msc);
730}
731
732/* convenience: f_ctrs_msc_add() and f_ctrs_msc_verify() in one call.
733 * f_ctrs_msc_init();
734 * f_do_thing(on_msc := 0);
735 * f_do_thing(on_msc := 0);
736 * f_do_thing(on_msc := 0);
737 * f_ctrs_msc_expect(0, "thing", 3);
738 */
739private function f_ctrs_msc_expect(integer msc_nr, charstring countername, integer val := 1) runs on test_CT {
740 f_ctrs_msc_add(msc_nr, countername, val);
741 f_ctrs_msc_verify();
742}
743
Neels Hofmeyr12941bd2020-08-29 03:21:26 +0000744/* Convenience functions for rate counters using g_ctr_bts, always also including g_ctr_bsc. */
745
746private function f_ctrs_bsc_and_bts_init(integer bts_count := NUM_BTS, CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
747 g_ctr_bts := f_counter_name_vals_get_n(IPA_CTRL, "bts", bts_count, counternames);
748 log("initial bts rate counters: ", g_ctr_bts);
749 f_ctrs_bsc_init(counternames);
750}
751
752private function f_ctrs_bsc_and_bts_add(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
753 f_counter_name_vals_list_add(g_ctr_bts, bts_nr, countername, val);
754 f_ctrs_bsc_add(countername, val);
755}
756
757/* f_ctrs_bsc_and_bts_init();
758 * f_do_thing(on_bts := 0);
759 * f_do_thing(on_bts := 0);
760 * f_do_other(on_bts := 1);
761 * f_ctrs_bsc_and_bts_add(0, "thing", 2);
762 * f_ctrs_bsc_and_bts_add(1, "other");
763 * f_ctrs_bsc_and_bts_verify();
764 */
765private function f_ctrs_bsc_and_bts_verify() runs on test_CT {
766 f_counter_name_vals_expect_n(IPA_CTRL, "bts", g_ctr_bts);
767 f_ctrs_bsc_verify();
768}
769
770/* convenience: f_ctrs_bsc_and_bts_add() and f_ctrs_bsc_and_bts_verify() in one call.
771 * f_ctrs_bsc_and_bts_init();
772 * f_do_thing(on_bts := 0);
773 * f_do_thing(on_bts := 0);
774 * f_do_thing(on_bts := 0);
775 * f_ctrs_bsc_and_bts_expect(0, "thing", 3);
776 */
777private function f_ctrs_bsc_and_bts_expect(integer bts_nr, charstring countername, integer val := 1) runs on test_CT {
778 f_ctrs_bsc_and_bts_add(bts_nr, countername, val);
779 f_ctrs_bsc_and_bts_verify();
780}
781
782
783/* Convenience functions for rate counters using g_ctr_bsc. */
784
785private function f_ctrs_bsc_init(CounterNameVals counternames := counternames_bsc_bts_handover) runs on test_CT {
786 g_ctr_bsc := f_counter_name_vals_get_n(IPA_CTRL, "bsc", 1, counternames);
787 log("initial bsc rate counters: ", g_ctr_bsc);
788}
789
790private function f_ctrs_bsc_add(charstring countername, integer val := 1) runs on test_CT {
791 f_counter_name_vals_list_add(g_ctr_bsc, 0, countername, val);
792}
793
794/* f_ctrs_bsc_init();
795 * f_do_thing();
796 * f_do_thing();
797 * f_do_other();
798 * f_ctrs_bsc_add("thing", 2);
799 * f_ctrs_bsc_add("other");
800 * f_ctrs_bsc_verify();
801 */
802private function f_ctrs_bsc_verify() runs on test_CT {
803 f_counter_name_vals_expect_n(IPA_CTRL, "bsc", g_ctr_bsc);
804}
805
806/* convenience: f_ctrs_bsc_add() and f_ctrs_bsc_verify() in one call.
807 * f_ctrs_bsc_init();
808 * f_do_thing();
809 * f_ctrs_bsc_expect("thing", 1);
810 */
811private function f_ctrs_bsc_expect(charstring countername, integer val := 1) runs on test_CT {
812 f_ctrs_bsc_add(countername, val);
813 f_ctrs_bsc_verify();
814}
815
Neels Hofmeyr22c3f792020-06-17 02:49:28 +0200816
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +0200817friend function f_shutdown_helper() runs on test_CT {
Daniel Willmann637ef6c2018-07-25 10:49:09 +0200818 all component.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100819 setverdict(pass);
Daniel Willmannafce8662018-07-06 23:11:32 +0200820 mtc.stop;
Philipp Maier282ca4b2018-02-27 17:17:00 +0100821}
822
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200823private function f_legacy_bssap_reset(integer bssap_idx := 0) runs on test_CT {
Harald Weltea4ca4462018-02-09 00:17:14 +0100824 var BSSAP_N_UNITDATA_ind ud_ind;
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200825 var boolean reset_received := false;
Harald Weltea4ca4462018-02-09 00:17:14 +0100826 timer T := 5.0;
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200827 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
828 ts_BSSMAP_Reset(0, g_osmux_enabled)));
Harald Weltea4ca4462018-02-09 00:17:14 +0100829 T.start;
830 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200831 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(g_bssap[bssap_idx].sccp_addr_own, g_bssap[bssap_idx].sccp_addr_peer,
832 tr_BSSMAP_ResetAck(g_osmux_enabled))) {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200833 log("BSSMAP: Received RESET-ACK in response to RESET, we're ready to go!");
Harald Weltea4ca4462018-02-09 00:17:14 +0100834 }
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200835 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200836 log("BSSMAP: Respoding to inbound RESET with RESET-ACK");
Harald Weltea4ca4462018-02-09 00:17:14 +0100837 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200838 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200839 reset_received := true;
Harald Weltea4ca4462018-02-09 00:17:14 +0100840 repeat;
841 }
842 [] BSSAP.receive { repeat; }
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200843 [] T.timeout {
Neels Hofmeyr4f5d7be2020-10-16 16:28:16 +0200844 log("BSSMAP: Timeout waiting for RESET-ACK after sending RESET");
Pau Espin Pedrol24c05992020-09-01 12:54:12 +0200845 /* If we received a RESET after ours was sent, it
846 may be a race condition where the other peer beacame
847 available after we sent it, but we are in a desired
848 state anyway, so go forward. */
849 if (not reset_received) {
850 setverdict(fail);
851 }
852 }
Harald Weltea4ca4462018-02-09 00:17:14 +0100853 }
Harald Welte28d943e2017-11-25 15:00:50 +0100854}
855
Harald Welteae026692017-12-09 01:03:01 +0100856type record IPA_Client {
Harald Welte21b46bd2017-12-17 19:46:32 +0100857 /* IPA Emulation component reference */
Harald Welteae026692017-12-09 01:03:01 +0100858 IPA_Emulation_CT vc_IPA,
Harald Welte21b46bd2017-12-17 19:46:32 +0100859 /* Unit-ID and other CCM parameters to use for IPA client emulation */
Harald Welteae026692017-12-09 01:03:01 +0100860 IPA_CCM_Parameters ccm_pars,
Harald Welte21b46bd2017-12-17 19:46:32 +0100861 /* String identifier for this IPA Client */
Harald Welte624f9632017-12-16 19:26:04 +0100862 charstring id,
Harald Welte21b46bd2017-12-17 19:46:32 +0100863 /* Associated RSL Emulation Component (if any). Only used in "Handler mode" */
Harald Welte624f9632017-12-16 19:26:04 +0100864 RSL_Emulation_CT vc_RSL optional
Harald Welte28d943e2017-11-25 15:00:50 +0100865}
866
Harald Welte21b46bd2017-12-17 19:46:32 +0100867/*! Start the IPA/RSL related bits for one IPA_Client.
868 * \param clnt IPA_Client for which to establish
869 * \param bsc_host IP address / hostname of the BSC
870 * \param bsc_port TCP port number of the BSC
871 * \param i number identifying this BTS
872 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false) */
Harald Welte624f9632017-12-16 19:26:04 +0100873function f_ipa_rsl_start(inout IPA_Client clnt, charstring bsc_host, PortNumber bsc_port, integer i,
874 boolean handler_mode := false)
Harald Welte28d943e2017-11-25 15:00:50 +0100875runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +0100876 timer T := 10.0;
877
Harald Welte96c94412017-12-09 03:12:45 +0100878 clnt.id := "IPA" & int2str(i) & "-RSL";
Harald Welteae026692017-12-09 01:03:01 +0100879 clnt.vc_IPA := IPA_Emulation_CT.create(clnt.id & "-IPA");
880 clnt.ccm_pars := c_IPA_default_ccm_pars;
881 clnt.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
882 clnt.ccm_pars.unit_id := int2str(1234+i) & "/0/0";
Harald Welte624f9632017-12-16 19:26:04 +0100883 if (handler_mode) {
884 clnt.vc_RSL := RSL_Emulation_CT.create(clnt.id & "-RSL");
Harald Welte89ab1912018-02-23 18:56:29 +0100885 connect(clnt.vc_RSL:CCHAN_PT, self:RSL_CCHAN[i]);
Harald Welte624f9632017-12-16 19:26:04 +0100886 }
Harald Welteae026692017-12-09 01:03:01 +0100887
888 map(clnt.vc_IPA:IPA_PORT, system:IPA_CODEC_PT);
Harald Welte624f9632017-12-16 19:26:04 +0100889 if (handler_mode) {
890 connect(clnt.vc_IPA:IPA_RSL_PORT, clnt.vc_RSL:IPA_PT);
891 } else {
892 connect(clnt.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[i]);
893 }
Harald Welteae026692017-12-09 01:03:01 +0100894
Harald Welte5d1a2202017-12-13 19:51:29 +0100895 clnt.vc_IPA.start(IPA_Emulation.main_client(bsc_host, bsc_port, "", 10000+i, clnt.ccm_pars));
Harald Welte624f9632017-12-16 19:26:04 +0100896 if (handler_mode) {
897 clnt.vc_RSL.start(RSL_Emulation.main());
898 return;
899 }
Harald Welteae026692017-12-09 01:03:01 +0100900
901 /* wait for IPA RSL link to connect and send ID ACK */
902 T.start;
903 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +0700904 [] IPA_RSL[i].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_ID_ACK)) {
Harald Welteae026692017-12-09 01:03:01 +0100905 T.stop;
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +0700906 IPA_RSL[i].send(ts_ASP_RSL_UD(ts_RSL_PAGING_LOAD_IND(23)));
Harald Welteae026692017-12-09 01:03:01 +0100907 }
Harald Welte60e823a2017-12-10 14:10:59 +0100908 [] IPA_RSL[i].receive(ASP_IPA_Event:?) { repeat }
Harald Welteae026692017-12-09 01:03:01 +0100909 [] IPA_RSL[i].receive { repeat }
910 [] T.timeout {
Harald Welte96c94412017-12-09 03:12:45 +0100911 setverdict(fail, "Timeout RSL waiting for ASP_IPA_EVENT_ID_ACK");
Daniel Willmannafce8662018-07-06 23:11:32 +0200912 mtc.stop;
Harald Welteae026692017-12-09 01:03:01 +0100913 }
914 }
915}
916
Harald Welte12055472018-03-17 20:10:08 +0100917function f_ipa_rsl_stop(inout IPA_Client clnt) runs on test_CT {
918 if (not isbound(clnt) or not isbound(clnt.vc_IPA)) {
919 return;
920 }
921 clnt.vc_IPA.stop;
922 if (isbound(clnt.vc_RSL)) {
923 clnt.vc_RSL.stop;
924 }
925}
926
Harald Welte21b46bd2017-12-17 19:46:32 +0100927/* Wait for the OML connection to be brought up by the external osmo-bts-omldummy */
Harald Weltea5d2ab22017-12-09 14:21:42 +0100928function f_wait_oml(integer bts_nr, charstring status, float secs_max) runs on test_CT {
929 timer T := secs_max;
930 T.start;
931 while (true) {
932 if (f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-connection-state") == status) {
933 T.stop;
Harald Weltebd868bd2017-12-10 18:28:40 +0100934 /* the 'degraded' state exists from OML connection time, and we have to wait
935 * until all MO's are initialized */
936 T.start(1.0);
937 T.timeout;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100938 return;
939 }
Harald Weltef0d6ac62017-12-17 17:02:21 +0100940 f_sleep(0.1);
Harald Weltea5d2ab22017-12-09 14:21:42 +0100941 if (not T.running) {
Max99253902018-11-16 17:57:39 +0100942 setverdict(fail, "Timeout waiting for BTS" & int2str(bts_nr) & " oml-connection-state ", status);
Daniel Willmannafce8662018-07-06 23:11:32 +0200943 mtc.stop;
Harald Weltea5d2ab22017-12-09 14:21:42 +0100944 }
945 }
946}
947
Harald Welte21b46bd2017-12-17 19:46:32 +0100948/* global altstep for global guard timer; also takes care of responding RESET witH RESET-ACK */
Harald Welteae026692017-12-09 01:03:01 +0100949altstep as_Tguard() runs on test_CT {
Harald Welte60e823a2017-12-10 14:10:59 +0100950 var BSSAP_N_UNITDATA_ind ud_ind;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100951 [] T_guard.timeout {
952 setverdict(fail, "Timeout of T_guard");
Daniel Willmannafce8662018-07-06 23:11:32 +0200953 mtc.stop;
Neels Hofmeyrcc3f76a2018-03-12 01:43:25 +0100954 }
Harald Welte60e823a2017-12-10 14:10:59 +0100955 /* always respond with RESET ACK to RESET */
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200956 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) -> value ud_ind {
Harald Welte60e823a2017-12-10 14:10:59 +0100957 BSSAP.send(ts_BSSAP_UNITDATA_req(ud_ind.callingAddress, ud_ind.calledAddress,
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200958 ts_BSSMAP_ResetAck(g_osmux_enabled)));
Harald Welte69c1c262017-12-13 21:02:08 +0100959 repeat;
Harald Welte60e823a2017-12-10 14:10:59 +0100960 }
Harald Welte28d943e2017-11-25 15:00:50 +0100961}
962
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100963altstep no_bssmap_reset() runs on test_CT {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200964 [] BSSAP.receive(tr_BSSAP_UNITDATA_ind(?, ?, tr_BSSMAP_Reset(g_osmux_enabled))) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100965 setverdict(fail, "unexpected BSSMAP Reset");
Daniel Willmannafce8662018-07-06 23:11:32 +0200966 mtc.stop;
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +0100967 }
968}
969
Daniel Willmann191e0d92018-01-17 12:44:35 +0100970function f_init_mgcp(charstring id) runs on test_CT {
971 id := id & "-MGCP";
972
973 var MGCPOps ops := {
974 create_cb := refers(MGCP_Emulation.ExpectedCreateCallback),
975 unitdata_cb := refers(MGCP_Emulation.DummyUnitdataCallback)
976 };
977 var MGCP_conn_parameters mgcp_pars := {
978 callagent_ip := mp_bsc_ip,
Harald Welte9e4273e2018-01-29 22:01:22 +0100979 callagent_udp_port := -1,
Daniel Willmann191e0d92018-01-17 12:44:35 +0100980 mgw_ip := mp_test_ip,
Pau Espin Pedrol1a026a52019-06-18 17:21:52 +0200981 mgw_udp_port := 2427,
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +0200982 /* Enable it for SCCPlite, since we have 2 MGCP sockets towards MGW (UDP one +
983 the on with MGCP over IPA forwarded from MSC one) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +0200984 multi_conn_mode := (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER)
Daniel Willmann191e0d92018-01-17 12:44:35 +0100985 };
986
987 vc_MGCP := MGCP_Emulation_CT.create(id);
988 vc_MGCP.start(MGCP_Emulation.main(ops, mgcp_pars, id));
989}
990
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +0200991/* Enable or disable (current default) Osmux. When enabling, BSSMAP Reset
992 * contains extra IE (OsmuxSupport) and osmo-bsc will handle AssignReq with
993 * OsmuxCID IE.
994 */
995private function f_vty_allow_osmux(boolean allow) runs on test_CT {
996 f_vty_enter_cfg_msc(BSCVTY, 0);
997 if (allow) {
998 f_vty_transceive(BSCVTY, "osmux on");
999 } else {
1000 f_vty_transceive(BSCVTY, "osmux off");
1001 }
1002 f_vty_transceive(BSCVTY, "exit");
1003 f_vty_transceive(BSCVTY, "exit");
1004 g_osmux_enabled := allow;
1005}
1006
Max2253c0b2018-11-06 19:28:05 +01001007function f_init_vty(charstring id := "foo") runs on test_CT {
Harald Welte94e0c342018-04-07 11:33:23 +02001008 if (BSCVTY.checkstate("Mapped")) {
1009 /* skip initialization if already executed once */
1010 return;
1011 }
Harald Weltebc03c762018-02-12 18:09:38 +01001012 map(self:BSCVTY, system:BSCVTY);
1013 f_vty_set_prompts(BSCVTY);
1014 f_vty_transceive(BSCVTY, "enable");
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01001015 f_cs7_inst_0_cfg(BSCVTY, {"sccp-timer ias " & int2str(g_bsc_sccp_timer_ias),
1016 "sccp-timer iar " & int2str(g_bsc_sccp_timer_iar)});
Harald Weltebc03c762018-02-12 18:09:38 +01001017}
1018
Neels Hofmeyr9f3e6ac2021-04-08 23:09:24 +02001019friend function f_logp(TELNETasp_PT pt, charstring log_msg)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001020{
1021 // log on TTCN3 log output
1022 log(log_msg);
1023 // log in stderr log
Neels Hofmeyr767548a2020-08-09 20:26:07 +00001024 f_vty_transceive(pt, "logp lglobal notice TTCN3 f_logp(): " & log_msg);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02001025}
1026
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001027private function f_sysinfo_seen(integer rsl_idx, RSL_Message rsl) runs on test_CT
1028{
1029 if (rsl_idx >= lengthof(g_system_information)) {
1030 g_system_information[rsl_idx] := SystemInformationConfig_omit
1031 }
1032 f_sysinfo_dec_raw(g_system_information[rsl_idx], rsl);
1033}
1034
1035altstep as_catch_RSL_sysinfo(integer rsl_idx) runs on test_CT {
1036 var ASP_RSL_Unitdata rx_rsl_ud;
1037
1038 /* For handler_mode := false, receiving the RSL bootstrap messages directly on IPA_RSL */
1039 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1040 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1041 repeat;
1042 }
1043 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1044 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1045 repeat;
1046 }
1047 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1048 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1049 repeat;
1050 }
1051 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1052 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1053 repeat;
1054 }
1055
1056 /* For handler_mode := true, receiving the RSL bootstrap messages via RSL_Emulation */
1057 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_BCCH_INFO)) -> value rx_rsl_ud {
1058 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1059 repeat;
1060 }
1061 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO)) -> value rx_rsl_ud {
1062 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1063 repeat;
1064 }
1065 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_NO_SACCH_FILL)) -> value rx_rsl_ud {
1066 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1067 repeat;
1068 }
1069 [] RSL_CCHAN[rsl_idx].receive(tr_ASP_RSL_UD(tr_RSL_SACCH_FILL)) -> value rx_rsl_ud {
1070 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
1071 repeat;
1072 }
1073}
1074
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001075/* TODO: use BooleanList from COMMON/src/General_Types.ttcn */
1076private type record of boolean my_BooleanList;
1077
1078private function f_vty_msc_allow_attach(TELNETasp_PT pt, my_BooleanList allow_attach_list)
1079{
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001080 var charstring config := f_vty_transceive_ret(pt, "show running-config");
1081
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001082 for (var integer msc_nr := 0; msc_nr < sizeof(allow_attach_list); msc_nr := msc_nr+1) {
Neels Hofmeyr8f576712020-08-12 22:49:53 +00001083 if (f_strstr(config, "\nmsc " & int2str(msc_nr) & "\n") < 0) {
1084 /* There is no 'msc N' for this msc_nr in the running config, so don't create an empty msc by
1085 * stepping into that config node. */
1086 log("msc ", msc_nr, " is not configured, skipping");
1087 continue;
1088 }
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001089 f_vty_enter_cfg_msc(pt, msc_nr);
1090 if (allow_attach_list[msc_nr]) {
1091 /* strict := false: ignore if osmo-bsc does not support this config option (latest build) */
1092 f_vty_transceive(pt, "allow-attach", strict := false);
1093 } else {
1094 f_vty_transceive(pt, "no allow-attach", strict := false);
1095 }
1096 f_vty_transceive(pt, "exit");
1097 f_vty_transceive(pt, "exit");
1098 }
1099}
1100
Harald Welte21b46bd2017-12-17 19:46:32 +01001101/* global initialization function
1102 * \param nr_bts Number of BTSs we should start/bring up
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001103 * \param handler_mode Start an RSL_Emulation_CT component (true) or not (false).
1104 * \param nr_msc Number of virtual MSCs to bring up to connect to osmo-bsc.
1105 */
1106function f_init(integer nr_bts := NUM_BTS, boolean handler_mode := false, boolean allow_osmux := false,
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001107 integer nr_msc := 1, float guard_timeout := 30.0) runs on test_CT {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001108 var integer bssap_idx;
Harald Welte28d943e2017-11-25 15:00:50 +01001109
Harald Welteae026692017-12-09 01:03:01 +01001110 if (g_initialized) {
1111 return;
Harald Welte28d943e2017-11-25 15:00:50 +01001112 }
Harald Welteae026692017-12-09 01:03:01 +01001113 g_initialized := true;
1114
Neels Hofmeyr4fbad7f2020-06-16 00:30:47 +02001115 T_guard.start(guard_timeout);
Daniel Willmanne68f9272018-11-27 15:15:28 +01001116 activate(as_Tguard());
1117
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001118 f_init_vty("VirtMSC");
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +02001119 f_vty_allow_osmux(allow_osmux);
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001120
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001121 var my_BooleanList allow_attach := { false, false, false };
Daniel Willmannebdecc02020-08-12 15:30:17 +02001122 f_init_statsd("VirtMSC", vc_STATSD, mp_test_ip, mp_bsc_statsd_port);
1123
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001124 for (bssap_idx := 0; bssap_idx < nr_msc; bssap_idx := bssap_idx+1) {
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001125 allow_attach[bssap_idx] := true;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001126 /* Call a function of our 'parent component' RAN_Adapter_CT to start the
1127 * MSC-side BSSAP emulation */
1128 if (handler_mode) {
1129 var RanOps ranops := MSC_RanOps;
1130 ranops.use_osmux := g_osmux_enabled;
1131 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", ranops);
1132 connect(self:SCCPLITE_IPA_CTRL, g_bssap[bssap_idx].vc_RAN:CTRL_CLIENT);
1133 f_ran_adapter_start(g_bssap[bssap_idx]);
1134 } else {
1135 f_ran_adapter_init(g_bssap[bssap_idx], mp_bssap_cfg[bssap_idx], "VirtMSC", omit);
1136 connect(self:BSSAP, g_bssap[bssap_idx].vc_SCCP:SCCP_SP_PORT);
1137 f_ran_adapter_start(g_bssap[bssap_idx]);
1138 f_legacy_bssap_reset();
1139 }
Harald Welte67089ee2018-01-17 22:19:03 +01001140 }
Harald Welted5833a82018-05-27 16:52:56 +02001141
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02001142 if (mp_enable_lcs_tests) {
1143 if (handler_mode) {
1144 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", SMLC_BssapLeOps);
1145 } else {
1146 f_bssap_le_adapter_init(g_bssap_le, mp_bssap_le_cfg, "VirtSMLC", omit);
1147 connect(self:BSSAP_LE, g_bssap_le.vc_SCCP:SCCP_SP_PORT);
1148 }
1149 f_bssap_le_adapter_start(g_bssap_le);
Harald Welte47cd0e32020-08-21 12:39:11 +02001150 }
Harald Welte47cd0e32020-08-21 12:39:11 +02001151
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00001152 /* start the test with exactly all enabled MSCs allowed to attach */
1153 f_vty_msc_allow_attach(BSCVTY, allow_attach);
1154
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01001155 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Harald Welte28d943e2017-11-25 15:00:50 +01001156
Daniel Willmann191e0d92018-01-17 12:44:35 +01001157 f_init_mgcp("VirtMSC");
1158
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001159 for (var integer i := 0; i < nr_bts; i := i+1) {
1160 f_init_bts(i, handler_mode);
Harald Welte696ddb62017-12-08 14:01:43 +01001161 }
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001162}
Harald Welte696ddb62017-12-08 14:01:43 +01001163
Neels Hofmeyr0b7365b2020-07-04 00:52:34 +02001164function f_init_bts(integer bts_idx := 0, boolean handler_mode := false)
1165runs on test_CT {
1166 /* wait until osmo-bts-omldummy has respawned */
1167 f_wait_oml(bts_idx, "degraded", 5.0);
1168
1169 /* start RSL connection */
1170 f_ipa_rsl_start(bts[bts_idx].rsl, mp_bsc_ip, mp_bsc_rsl_port, bts_idx, handler_mode);
1171 /* wait until BSC tells us "connected" */
1172 f_wait_oml(bts_idx, "connected", 5.0);
Harald Welte28d943e2017-11-25 15:00:50 +01001173}
1174
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02001175function f_init_bts_and_check_sysinfo(integer bts_idx := 0, boolean handler_mode := false,
1176 template SystemInformationConfig expect_si)
1177runs on test_CT {
1178 var default sysinfo := activate(as_catch_RSL_sysinfo(bts_idx));
1179
1180 f_init_bts(bts_idx, handler_mode);
1181
1182 /* Give some time to (hopefully/most likely) collect all system informations from RSL startup.
1183 * We could stop as soon as all expected SI are received, but then we might miss SI that we don't expect and
1184 * that might be sent afterwards. So rather give a generous timeout and be quite sure to catch all SI.
1185 */
1186 f_sleep(5.0);
1187 log("RSL ", bts_idx, " SYSTEM INFORMATION: ", g_system_information[bts_idx]);
1188
1189 deactivate(sysinfo);
1190
1191 if (match(g_system_information[bts_idx], expect_si)) {
1192 setverdict(pass);
1193 } else {
1194 log("RSL ", bts_idx, ": EXPECTED SI: ", expect_si);
1195 log("RSL ", bts_idx, ": GOT SI: ", g_system_information[bts_idx]);
1196 setverdict(fail, "received SI does not match expectations");
1197 return;
1198 }
1199}
1200
Maxd4e56962018-10-31 19:08:25 +01001201/* expect to receive a RSL message matching a specified template on a given BTS / stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001202function 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 +01001203runs on test_CT return RSL_Message {
1204 var ASP_RSL_Unitdata rx_rsl_ud;
1205 timer T := t_secs;
1206
1207 T.start;
1208 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001209 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(t_rx, sid)) -> value rx_rsl_ud {
Harald Welteae026692017-12-09 01:03:01 +01001210 T.stop;
1211 }
1212 [] IPA_RSL[bts_nr].receive { repeat; }
Harald Welteb2917702017-12-10 15:48:52 +01001213 [] T.timeout {
1214 setverdict(fail, "Timeout expecting ", t_rx);
Daniel Willmannafce8662018-07-06 23:11:32 +02001215 mtc.stop;
Harald Welteb2917702017-12-10 15:48:52 +01001216 }
Harald Welteae026692017-12-09 01:03:01 +01001217 }
1218 return rx_rsl_ud.rsl;
1219}
1220
Harald Welte21b46bd2017-12-17 19:46:32 +01001221/* helper function to transmit RSL on a given BTS/stream */
Harald Welte65e419a2020-08-21 12:38:33 +02001222function 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 +01001223runs on test_CT {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001224 IPA_RSL[bts_nr].send(ts_ASP_RSL_UD(t_tx, sid));
Harald Welteae026692017-12-09 01:03:01 +01001225}
1226
1227
Harald Welte4003d112017-12-09 22:35:39 +01001228/* verify we get a CHAN_ACT after CHAN RQD */
Harald Welteae026692017-12-09 01:03:01 +01001229testcase TC_chan_act_noreply() runs on test_CT {
1230 var BSSAP_N_UNITDATA_ind ud_ind;
Harald Welte930d0a72018-03-22 22:08:40 +01001231 var RSL_Message rsl_unused;
Harald Welte28d943e2017-11-25 15:00:50 +01001232
Harald Welte89d42e82017-12-17 16:42:41 +01001233 f_init(1);
Harald Welte28d943e2017-11-25 15:00:50 +01001234
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001235 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001236 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001237 f_shutdown_helper();
Harald Welte28d943e2017-11-25 15:00:50 +01001238}
1239
Harald Welte4003d112017-12-09 22:35:39 +01001240/* verify if the "chreq:total" counter increments as expected */
1241testcase TC_chan_act_counter() runs on test_CT {
1242 var BSSAP_N_UNITDATA_ind ud_ind;
1243 var integer chreq_total;
Harald Welte930d0a72018-03-22 22:08:40 +01001244 var RSL_Message rsl_unused;
Harald Welte4003d112017-12-09 22:35:39 +01001245
Harald Welte89d42e82017-12-17 16:42:41 +01001246 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001247
1248 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001249 IPA_RSL[0].send(ts_ASP_RSL_UD(ts_RSL_CHAN_RQD('23'O, 23)));
Harald Welte930d0a72018-03-22 22:08:40 +01001250 rsl_unused := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
Harald Welte4003d112017-12-09 22:35:39 +01001251 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total", chreq_total+1);
1252
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001253 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001254}
1255
Harald Welteae026692017-12-09 01:03:01 +01001256/* CHAN RQD -> CHAN ACT -> CHAN ACT ACK -> RF CHAN REL */
Philipp Maier9c60a622020-07-09 15:08:46 +02001257private function f_TC_chan_act_ack_noest(OCT1 ra := '23'O) runs on test_CT {
Harald Welteae026692017-12-09 01:03:01 +01001258 var RSL_Message rx_rsl;
1259
Harald Welteae026692017-12-09 01:03:01 +01001260 /* Send CHAN RQD and wait for allocation; acknowledge it */
Philipp Maier9c60a622020-07-09 15:08:46 +02001261 var RslChannelNr chan_nr := f_chreq_act_ack(ra);
Harald Welteae026692017-12-09 01:03:01 +01001262
1263 /* expect BSC to disable the channel again if there's no RLL EST IND */
1264 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1265
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001266 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001267}
1268
Philipp Maier9c60a622020-07-09 15:08:46 +02001269/* Normal variant */
1270testcase TC_chan_act_ack_noest() runs on test_CT {
Philipp Maieraf58db22020-08-12 17:24:40 +02001271 f_init(1);
Philipp Maier9c60a622020-07-09 15:08:46 +02001272 f_TC_chan_act_ack_noest();
1273}
1274
1275/* Emergency call variant */
1276testcase TC_chan_act_ack_noest_emerg() runs on test_CT {
1277 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
Philipp Maieraf58db22020-08-12 17:24:40 +02001278 f_init(1);
1279 f_vty_allow_emerg_bts(true, 0);
Philipp Maier9c60a622020-07-09 15:08:46 +02001280 f_TC_chan_act_ack_noest(ra := 'A5'O);
1281}
1282
Philipp Maier606f07d2020-08-12 17:21:58 +02001283/* Emergency call variant, but emergency calls are not allowed */
1284testcase TC_chan_rqd_emerg_deny() runs on test_CT {
1285 /* See also: 3GPP TS 04.08, Table 9.9, ra=101xxxxx */
1286
1287 var RSL_Message rx_rsl;
1288 var GsmRrMessage rr;
1289
1290 f_init(1);
1291 f_vty_allow_emerg_bts(false, 0);
1292
1293 IPA_RSL[0].clear;
1294 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
1295
1296 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
1297 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
1298 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1299 setverdict(pass);
1300 } else {
1301 setverdict(fail, "immediate assignment not rejected");
1302 }
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01001303
1304 f_shutdown_helper();
Philipp Maier606f07d2020-08-12 17:21:58 +02001305}
1306
Harald Welteae026692017-12-09 01:03:01 +01001307/* Test behavior if MSC never answers to CR */
1308testcase TC_chan_act_ack_est_ind_noreply() runs on test_CT {
Harald Weltef77aef62018-01-28 15:35:42 +01001309 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
1310 var IpaStreamId sid := IPAC_PROTO_RSL_TRX0;
Harald Welteae026692017-12-09 01:03:01 +01001311 var RSL_Message rx_rsl;
Harald Weltef77aef62018-01-28 15:35:42 +01001312 var ASP_RSL_Unitdata rx_rsl_ud;
Harald Welteae026692017-12-09 01:03:01 +01001313
Harald Welte89d42e82017-12-17 16:42:41 +01001314 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001315
1316 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001317 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001318
1319 var octetstring l3 := '00010203040506'O
1320 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1321
1322 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3)));
1323
1324 /* expect BSC to disable the channel again if there's no response from MSC */
Harald Weltef77aef62018-01-28 15:35:42 +01001325 /* MS waits 20s (T3210) at LU; 10s (T3230) at CM SERV REQ and 5s (T3220) AT detach */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001326 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001327 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001328}
1329
1330/* Test behavior if MSC answers with CREF to CR */
1331testcase TC_chan_act_ack_est_ind_refused() runs on test_CT {
1332 var BSSAP_N_CONNECT_ind rx_c_ind;
1333 var RSL_Message rx_rsl;
1334
Harald Welte89d42e82017-12-17 16:42:41 +01001335 f_init(1);
Harald Welteae026692017-12-09 01:03:01 +01001336
1337 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001338 var RslChannelNr chan_nr := f_chreq_act_ack();
Harald Welteae026692017-12-09 01:03:01 +01001339
1340 var octetstring l3 := '00010203040506'O
1341 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1342
1343 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1344 BSSAP.send(ts_BSSAP_DISC_req(rx_c_ind.connectionId, 0));
1345
1346 /* expect BSC to disable the channel */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001347 f_expect_chan_rel(0, chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001348 f_shutdown_helper();
Harald Welteae026692017-12-09 01:03:01 +01001349}
1350
Harald Welte618ef642017-12-14 14:58:20 +01001351/* CHAN RQD -> CHAN ACT -> CHAN ACT NACK -> RF CHAN REL */
1352testcase TC_chan_act_nack() runs on test_CT {
1353 var RSL_Message rx_rsl;
1354 var integer chact_nack;
1355
Harald Welte89d42e82017-12-17 16:42:41 +01001356 f_init(1);
Harald Welte618ef642017-12-14 14:58:20 +01001357
1358 chact_nack := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack");
1359
1360 f_ipa_tx(0, ts_RSL_CHAN_RQD('33'O, 33));
1361 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1362 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1363
1364 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
1365
1366 /* wait for some time to hope the NACK arrives before the CTRL GET below */
1367 f_sleep(0.5);
1368
1369 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chan_act:nack", chact_nack+1);
1370
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001371 f_shutdown_helper();
Harald Welte618ef642017-12-14 14:58:20 +01001372}
1373
Harald Welte799c97b2017-12-14 17:50:30 +01001374/* Test for channel exhaustion due to RACH overload */
1375testcase TC_chan_exhaustion() runs on test_CT {
1376 var ASP_RSL_Unitdata rsl_ud;
1377 var integer i;
1378 var integer chreq_total, chreq_nochan;
1379
Harald Welte89d42e82017-12-17 16:42:41 +01001380 f_init(1);
Harald Welte799c97b2017-12-14 17:50:30 +01001381
1382 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
1383 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
1384
Pau Espin Pedrolfe200d72018-12-10 12:41:04 +01001385 /* GSM 04.08 Table 9.9a:
1386 * RA = '33'O -> Establishment cause = 0011xxxx (MS dual rate capable and asks for "TCH/H or TCH/F").
1387 * With current setup, expect 4xSDCCH + 4xTCH/F + 1xTCH/H to succeed */
Philipp Maiercb6cc482018-03-26 13:08:00 +02001388 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 +01001389 var RslChannelNr chan_nr := f_chreq_act_ack('33'O, i);
Harald Welte799c97b2017-12-14 17:50:30 +01001390 }
1391
1392 IPA_RSL[0].clear;
1393
Harald Weltedd8cbf32018-01-28 12:07:52 +01001394 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001395 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
Harald Welte799c97b2017-12-14 17:50:30 +01001396
1397 /* now expect additional channel activations to fail */
1398 f_ipa_tx(0, ts_RSL_CHAN_RQD('42'O, 42));
1399
1400 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001401 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV))) {
Harald Welte799c97b2017-12-14 17:50:30 +01001402 setverdict(fail, "Received CHAN ACT ACK without resources?!?");
1403 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001404 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) -> value rsl_ud {
Harald Welte799c97b2017-12-14 17:50:30 +01001405 var GsmRrMessage rr;
1406 /* match on IMM ASS REJ */
1407 rr := dec_GsmRrMessage(rsl_ud.rsl.ies[1].body.full_imm_ass_info.payload);
1408 if (rr.header.message_type == IMMEDIATE_ASSIGNMENT_REJECT) {
1409 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
Philipp Maiercb6cc482018-03-26 13:08:00 +02001410 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS+1);
Harald Welte799c97b2017-12-14 17:50:30 +01001411 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel",
1412 chreq_nochan+1);
1413 setverdict(pass);
1414 } else {
1415 repeat;
1416 }
1417 }
1418 [] IPA_RSL[0].receive { repeat; }
1419 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001420 f_shutdown_helper();
Harald Welte799c97b2017-12-14 17:50:30 +01001421}
1422
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001423/* Test channel deactivation due to silence from MS */
1424testcase TC_chan_deact_silence() runs on test_CT {
1425 var RslChannelNr chan_nr;
1426
1427 f_init(1);
1428
1429 /* Request for a dedicated channel */
1430 chan_nr := f_chreq_act_ack('23'O);
1431
1432 /* Wait some time until the channel is released */
1433 f_sleep(2.0);
1434
1435 /* Expect CHANnel RELease */
1436 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001437 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001438 log("Received CHANnel RELease");
1439 setverdict(pass);
1440 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001441 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_IMM_ASSIGN(?))) {
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001442 /* See OS#3709, OsmoBSC should not send Immediate
1443 * Assignment Reject since a dedicated channel was
1444 * already allocated, and Immediate Assignment was
1445 * already sent. */
1446 setverdict(fail, "Unexpected Immediate Assignment!");
1447 }
1448 [] IPA_RSL[0].receive {
1449 setverdict(fail, "Unexpected RSL message!");
1450 }
1451 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001452 f_shutdown_helper();
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07001453}
1454
Harald Weltecfe2c962017-12-15 12:09:32 +01001455/***********************************************************************
1456 * Assignment Testing
1457 ***********************************************************************/
1458
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02001459/* Verify that the BSC refuses any BSSAP connection from the MSC (They are all BSC->MSC direction,
1460 * except for the inter-BSC handover, MT side) */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001461testcase TC_outbound_connect(integer bssap_idx := 0) runs on test_CT {
Harald Welte89d42e82017-12-17 16:42:41 +01001462 f_init(1);
Harald Weltecfe2c962017-12-15 12:09:32 +01001463
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001464 BSSAP.send(ts_BSSAP_CONNECT_req(g_bssap[bssap_idx].sccp_addr_peer, g_bssap[bssap_idx].sccp_addr_own,
1465 2342, ts_BSSMAP_AssignmentReq));
Harald Weltecfe2c962017-12-15 12:09:32 +01001466 BSSAP.receive(tr_BSSAP_DISC_ind(2342, ?, ?));
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001467 f_shutdown_helper();
Harald Weltecfe2c962017-12-15 12:09:32 +01001468}
1469
Harald Welte16a4adf2017-12-14 18:54:01 +01001470/* Test behavior if MSC answers with CREF to CR */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001471testcase TC_assignment_cic_only(integer bssap_idx := 0) runs on test_CT {
Harald Welte16a4adf2017-12-14 18:54:01 +01001472 var BSSAP_N_CONNECT_ind rx_c_ind;
1473 var RSL_Message rx_rsl;
1474 var DchanTuple dt;
1475
Harald Welte89d42e82017-12-17 16:42:41 +01001476 f_init(1);
Harald Welte16a4adf2017-12-14 18:54:01 +01001477
1478 dt := f_est_dchan('23'O, 23, '00000000'O);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001479 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte17b27da2018-05-25 20:33:53 +02001480 /* send assignment without AoIP IEs */
1481 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(ts_BSSMAP_IE_CIC(0, 1))));
1482 } else {
1483 /* Send assignmetn without CIC in IPA case */
1484 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
1485 valueof(ts_BSSMAP_IE_AoIP_TLA4('01020304'O, 2342));
1486 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_AssignmentReq(omit, tla)));
1487 }
Harald Welte16a4adf2017-12-14 18:54:01 +01001488 alt {
1489 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1490 setverdict(fail, "AoIP BSC cannot accept ASSIGNMENT without AoIP Transport IE");
1491 }
Harald Welte235ebf12017-12-15 14:18:16 +01001492 /* TODO: Actually expect GSM0808_CAUSE_REQ_A_IF_TYPE_NOT_SUPP */
Harald Welte16a4adf2017-12-14 18:54:01 +01001493 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1494 setverdict(pass);
1495 }
1496 [] BSSAP.receive { repeat; }
1497 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001498 f_shutdown_helper();
Harald Welte16a4adf2017-12-14 18:54:01 +01001499}
1500
Harald Welteed848512018-05-24 22:27:58 +02001501/* generate an assignment request for either AoIP or SCCPlite */
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001502function 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 +02001503 var PDU_BSSAP ass_cmd;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001504 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001505 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welteed848512018-05-24 22:27:58 +02001506 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001507 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001508 if (osmux_enabled) {
1509 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla, osmux_cid));
1510 } else {
1511 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(omit, tla));
1512 }
Harald Welteed848512018-05-24 22:27:58 +02001513 } else {
1514 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001515 ass_cmd := valueof(ts_BSSMAP_AssignmentReq(cic, omit));
Harald Welteed848512018-05-24 22:27:58 +02001516 }
1517 return ass_cmd;
1518}
1519
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02001520function f_gen_handover_req(integer bssap_idx := 0, charstring aoip_tla := "1.2.3.4",
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001521 template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit,
1522 template (omit) TestHdlrEncrParams enc := omit) return PDU_BSSAP {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001523 var PDU_BSSAP ho_req;
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001524
1525 var BSSMAP_IE_EncryptionInformation encryptionInformation :=
1526 valueof(ts_BSSMAP_IE_EncrInfo('0000000000000000'O,'01'O));
1527 var template BSSMAP_IE_ChosenEncryptionAlgorithm chosenEncryptionAlgorithm := omit;
1528 var template BSSMAP_IE_KC128 kc128 := omit;
1529 if (ispresent(enc)) {
1530 var TestHdlrEncrParams v_enc := valueof(enc);
1531 encryptionInformation := valueof(ts_BSSMAP_IE_EncrInfo(v_enc.enc_key, v_enc.enc_alg));
1532 chosenEncryptionAlgorithm := valueof(
1533 ts_BSSMAP_IE_ChosenEncryptionAlgorithm(int2oct(enum2int(
Oliver Smith598e1ed2021-07-09 10:28:40 +02001534 f_cipher_mode_bssmap_to_rsl(v_enc.enc_alg)), 1)));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001535 if (ispresent(v_enc.enc_kc128)) {
1536 kc128 := ts_BSSMAP_IE_Kc128(v_enc.enc_kc128);
1537 }
1538 }
1539
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001540 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001541 var BSSMAP_IE_AoIP_TransportLayerAddress tla :=
Pau Espin Pedrol07866632020-09-03 19:10:55 +02001542 valueof(f_ts_BSSMAP_IE_AoIP_TLA(aoip_tla, 2342));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001543 ho_req := valueof(ts_BSSMAP_HandoverRequest(omit, tla, oldToNewBSSIEs := oldToNewBSSIEs,
1544 encryptionInformation := encryptionInformation,
1545 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1546 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001547 } else {
1548 var BSSMAP_IE_CircuitIdentityCode cic := valueof(ts_BSSMAP_IE_CIC(0,1));
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02001549 ho_req := valueof(ts_BSSMAP_HandoverRequest(cic, omit, oldToNewBSSIEs := oldToNewBSSIEs,
1550 encryptionInformation := encryptionInformation,
1551 chosenEncryptionAlgorithm := chosenEncryptionAlgorithm,
1552 kC128 := kc128));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01001553 }
1554 return ho_req;
1555}
1556
Harald Welteed848512018-05-24 22:27:58 +02001557/* generate an assignment complete template for either AoIP or SCCPlite */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001558function f_gen_exp_compl(boolean expect_osmux := false, integer bssap_idx := 0) return template PDU_BSSAP {
Harald Welteed848512018-05-24 22:27:58 +02001559 var template PDU_BSSAP exp_compl;
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001560 var BSSMAP_IE_Osmo_OsmuxCID osmux_cid := valueof(ts_OsmuxCID(0));
Neels Hofmeyrf246a922020-05-13 02:27:10 +02001561 if (mp_bssap_cfg[bssap_idx].transport == BSSAP_TRANSPORT_AoIP) {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02001562 if (expect_osmux) {
1563 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, osmux_cid);
1564 } else {
1565 exp_compl := tr_BSSMAP_AssignmentComplete(omit, ?, omit);
1566 }
Harald Welteed848512018-05-24 22:27:58 +02001567 } else {
1568 /* CIC is optional "*" as the MSC allocated it */
Pau Espin Pedrol096d73d2019-06-06 12:49:17 +02001569 exp_compl := tr_BSSMAP_AssignmentComplete(*, omit);
Harald Welteed848512018-05-24 22:27:58 +02001570 }
1571 return exp_compl;
1572}
1573
Harald Welte235ebf12017-12-15 14:18:16 +01001574/* Run everything required up to sending a caller-specified assignment command and expect response */
1575function f_assignment_exp(PDU_BSSAP ass_cmd, template PDU_BSSAP exp, charstring fail_text)
1576runs on test_CT {
1577 var BSSAP_N_CONNECT_ind rx_c_ind;
1578 var RSL_Message rx_rsl;
1579 var DchanTuple dt;
1580
Harald Welte89d42e82017-12-17 16:42:41 +01001581 f_init(1);
Harald Welte235ebf12017-12-15 14:18:16 +01001582
1583 dt := f_est_dchan('23'O, 23, '00000000'O);
1584 /* send assignment without AoIP IEs */
1585 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
1586 alt {
1587 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentComplete)) {
1588 if (ischosen(exp.pdu.bssmap.assignmentComplete)) {
1589 setverdict(pass);
1590 } else {
1591 setverdict(fail, fail_text);
1592 }
1593 }
1594 [] BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_AssignmentFail)) {
1595 if (ischosen(exp.pdu.bssmap.assignmentFailure)) {
1596 setverdict(pass);
1597 } else {
1598 setverdict(fail, fail_text);
1599 }
1600 }
1601 [] BSSAP.receive { repeat; }
1602 }
1603}
1604testcase TC_assignment_csd() runs on test_CT {
1605 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001606 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001607 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCSD);
1608 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1609 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for CSD");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001610 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001611}
1612
1613testcase TC_assignment_ctm() runs on test_CT {
1614 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02001615 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte235ebf12017-12-15 14:18:16 +01001616 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeCTM);
1617 //exp_fail.pdu.bssmap.assignmentFailure.cause.causeValue := int2bit(enum2int(GSM0808_CAUSE_REQ_CODEC_TYPE_OR_CONFIG_UNAVAIL), 7);
1618 f_assignment_exp(ass_cmd, exp_fail, "BSC accepted Assignment for Speech+CTM");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001619 f_shutdown_helper();
Harald Welte235ebf12017-12-15 14:18:16 +01001620}
1621
Harald Welte4003d112017-12-09 22:35:39 +01001622type record DchanTuple {
1623 integer sccp_conn_id,
1624 RslChannelNr rsl_chan_nr
Harald Weltea5d2ab22017-12-09 14:21:42 +01001625}
1626
Harald Welted6939652017-12-13 21:02:46 +01001627/* Send CHAN RQD and wait for allocation; acknowledge it */
1628private function f_chreq_act_ack(OCT1 ra := '23'O, GsmFrameNumber fn := 23)
1629runs on test_CT return RslChannelNr {
1630 var RSL_Message rx_rsl;
1631 f_ipa_tx(0, ts_RSL_CHAN_RQD(ra, fn));
1632 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
1633 var RslChannelNr chan_nr := rx_rsl.ies[0].body.chan_nr;
1634 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, fn+10));
Daniel Willmannf4ac4ce2018-08-02 14:06:30 +02001635 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Harald Welted6939652017-12-13 21:02:46 +01001636 return chan_nr;
1637}
1638
Harald Welte4003d112017-12-09 22:35:39 +01001639/* helper function to establish a dedicated channel via BTS and MSC */
1640function f_est_dchan(OCT1 ra, GsmFrameNumber fn, octetstring l3)
1641runs on test_CT return DchanTuple {
1642 var BSSAP_N_CONNECT_ind rx_c_ind;
Harald Welte4003d112017-12-09 22:35:39 +01001643 var DchanTuple dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001644
Harald Welte4003d112017-12-09 22:35:39 +01001645 /* Send CHAN RQD and wait for allocation; acknowledge it */
Harald Welted6939652017-12-13 21:02:46 +01001646 dt.rsl_chan_nr := f_chreq_act_ack(ra, fn);
Harald Welte4003d112017-12-09 22:35:39 +01001647
1648 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
1649
1650 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) -> value rx_c_ind;
1651 dt.sccp_conn_id := rx_c_ind.connectionId;
1652 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
1653
1654 return dt;
Harald Weltea5d2ab22017-12-09 14:21:42 +01001655}
1656
Harald Welte641fcbe2018-06-14 10:58:35 +02001657/* expect RF CAN REL from BTS, acknowledge it and clear the MSC side */
1658private function f_exp_chan_rel_and_clear(DchanTuple dt, integer bts_nr := 0) runs on test_CT {
1659 var RSL_Message rx_rsl;
1660 /* expect BSC to disable the channel */
1661 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), T3101_MAX);
1662 /* respond with CHAN REL ACK */
1663 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1664
1665 /* expect Clear Complete from BSC */
1666 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1667
1668 /* MSC disconnects as instructed. */
1669 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1670}
1671
Harald Welte4003d112017-12-09 22:35:39 +01001672/* Test behavior of channel release after unilateral RLL REL IND (DISC from MS) */
1673testcase TC_chan_rel_rll_rel_ind() runs on test_CT {
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001674 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001675 var DchanTuple dt;
Harald Welte96c94412017-12-09 03:12:45 +01001676
Harald Welte89d42e82017-12-17 16:42:41 +01001677 f_init(1);
Harald Welte96c94412017-12-09 03:12:45 +01001678
Harald Welte4003d112017-12-09 22:35:39 +01001679 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1680
1681 /* simulate RLL REL IND */
1682 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
1683
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001684 /* expect Clear Request on MSC side */
1685 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1686
1687 /* Instruct BSC to clear channel */
1688 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1689 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1690
Harald Welte4003d112017-12-09 22:35:39 +01001691 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001692 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr27f64362018-03-12 01:44:00 +01001693
1694 /* wait for SCCP emulation to do its job */
1695 f_sleep(1.0);
Harald Welte4003d112017-12-09 22:35:39 +01001696
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001697 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001698}
1699
1700/* Test behavior of channel release after CONN FAIL IND from BTS */
1701testcase TC_chan_rel_conn_fail() runs on test_CT {
1702 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001703 var DchanTuple dt;
1704
Harald Welte89d42e82017-12-17 16:42:41 +01001705 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001706
1707 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1708
1709 /* simulate CONN FAIL IND */
Harald Weltea8ed9062017-12-14 09:46:01 +01001710 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 +01001711 /* TODO: different cause values? */
1712
Harald Welte4003d112017-12-09 22:35:39 +01001713 /* expect Clear Request from BSC */
1714 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
1715
1716 /* Instruct BSC to clear channel */
1717 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
1718 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1719
Harald Welte6ff76ea2018-01-28 13:08:01 +01001720 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02001721 f_exp_chan_rel_and_clear(dt, 0);
Harald Welte4003d112017-12-09 22:35:39 +01001722
1723 /* wait for SCCP emulation to do its job */
1724 f_sleep(1.0);
1725
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001726 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001727}
1728
Harald Welte99f3ca02018-06-14 13:40:29 +02001729/* Test behavior of early CONN FAIL IND from BTS (before EST IND!) */
1730/* See also https://www.osmocom.org/issues/3182 */
1731testcase TC_early_conn_fail() runs on test_CT {
1732 var RSL_Message rx_rsl;
1733 var DchanTuple dt;
1734
1735 f_init(1);
1736
1737 /* BTS->BSC: Send CHAN RQD and wait for allocation; acknowledge it */
Harald Weltec46ea3c2020-10-10 18:46:12 +02001738 dt.rsl_chan_nr := f_chreq_act_ack(f_rnd_ra_cs(), 23);
Harald Welte99f3ca02018-06-14 13:40:29 +02001739
1740 /* BTS->BSC: simulate CONN FAIL IND */
1741 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1742
1743 /* BTS->BSC: Expect RF channel release from BSC on Abis */
1744 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1745
1746 /* BTS<-BSC: respond with CHAN REL ACK */
1747 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1748
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001749 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001750}
1751
1752/* Test behavior of late CONN FAIL IND from BTS (ater REL IND!) */
1753/* See also https://www.osmocom.org/issues/3182 */
1754testcase TC_late_conn_fail() runs on test_CT {
1755 var RSL_Message rx_rsl;
1756 var DchanTuple dt;
1757
1758 f_init(1);
1759
1760 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1761
1762 /* BSC<-MSC: Instruct BSC to clear connection */
1763 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(0)));
1764
1765 /* BTS->BSC: expect BSC to deactivate SACCH */
1766 rx_rsl := f_exp_ipa_rx(0, tr_RSL_DEACT_SACCH(dt.rsl_chan_nr));
1767
1768 /* BTS->BSC: simulate a late CONN FAIL IND from BTS */
1769 f_ipa_tx(0, ts_RSL_CONN_FAIL_IND(dt.rsl_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
1770
1771 /* BTS<-BSC: Expect RF channel release from BSC on Abis */
1772 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL), 10.0);
1773 /* BTS->BSC: respond with CHAN REL ACK */
1774 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(dt.rsl_chan_nr));
1775
1776 /* BSC->MSC: expect Clear Complete from BSC */
1777 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete));
1778
1779 /* BSC<-MSC: MSC disconnects as requested. */
1780 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1781
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001782 f_shutdown_helper();
Harald Welte99f3ca02018-06-14 13:40:29 +02001783}
1784
Neels Hofmeyrf44ccd12018-11-05 19:15:23 +01001785function f_expect_chan_rel(integer bts_nr, RslChannelNr rsl_chan_nr,
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001786 boolean expect_deact_sacch := true,
1787 boolean expect_rr_chan_rel := true,
1788 boolean expect_rll_rel_req := true,
Harald Welte99787102019-02-04 10:41:36 +01001789 boolean handle_rll_rel := true,
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001790 template CellSelIndValue expect_cells := omit,
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001791 template RR_Cause expect_rr_cause := ?
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001792 ) runs on test_CT {
Harald Welte91d54a52018-01-28 15:35:07 +01001793
1794 var RslLinkId main_dcch := valueof(ts_RslLinkID_DCCH(0));
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001795 var boolean got_deact_sacch := false;
1796 var boolean got_rr_chan_rel := false;
1797 var boolean got_rll_rel_req := false;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001798 var ASP_RSL_Unitdata ud;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001799 var RSL_IE_Body l3_ie;
1800 var PDU_ML3_NW_MS l3;
1801 var RR_Cause got_cause;
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001802 log("f_expect_chan_rel() expecting: expect_deact_sacch=", expect_deact_sacch, " expect_rr_chan_rel=", expect_rr_chan_rel,
1803 " expect_rll_rel_req=", expect_rll_rel_req);
Harald Welte91d54a52018-01-28 15:35:07 +01001804 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001805 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_DEACT_SACCH(rsl_chan_nr))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001806 got_deact_sacch := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001807 repeat;
1808 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001809 [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 +01001810 got_rr_chan_rel := true;
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001811
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001812 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1813 setverdict(fail, "cannot find L3");
1814 mtc.stop;
1815 }
1816 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1817
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001818 if (not istemplatekind(expect_cells, "omit")) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001819 var CellSelIndValue cells := dec_CellSelIndValue(
1820 l3.msgs.rrm.channelRelease.cellSelectionIndicator.cellSelectionIndicatorValue);
1821
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001822 log("GOT RR CHANNEL RELEASE WITH CELLS: ", cells);
1823 if (match(cells, expect_cells)) {
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001824 setverdict(pass);
1825 } else {
Pau Espin Pedrol36bd4fa2021-04-15 13:00:24 +02001826 log("EXPECTED CELLS: ", expect_cells);
1827 setverdict(fail, "Received cells list on RR Channel Release does not match expectations");
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02001828 }
1829 }
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001830
1831 if (not istemplatekind(expect_rr_cause, "omit")) {
1832 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1833 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1834 if (match(got_cause, expect_rr_cause)) {
1835 setverdict(pass);
1836 } else {
1837 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1838 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1839 }
1840 }
Harald Welte99787102019-02-04 10:41:36 +01001841 repeat;
1842 }
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001843 [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 +01001844 got_rr_chan_rel := true;
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02001845
1846 if (not istemplatekind(expect_rr_cause, "omit")) {
1847 if (f_rsl_find_ie(ud.rsl, RSL_IE_L3_INFO, l3_ie) == false) {
1848 setverdict(fail, "cannot find L3");
1849 mtc.stop;
1850 }
1851 l3 := dec_PDU_ML3_NW_MS(l3_ie.l3_info.payload);
1852
1853 int2enum(oct2int(l3.msgs.rrm.channelRelease.rRCause.valuePart), got_cause);
1854 log("GOT CAUSE CODE: ", l3.msgs.rrm.channelRelease.rRCause.valuePart, " = ", got_cause);
1855 if (match(got_cause, expect_rr_cause)) {
1856 setverdict(pass);
1857 } else {
1858 log("EXPECTED CAUSE CODE: ", expect_rr_cause);
1859 setverdict(fail, "Received RR Channel Release Cause code does not match expectations");
1860 }
1861 }
Neels Hofmeyr211169d2018-11-07 00:37:29 +01001862 repeat;
1863 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001864 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_REL_REQ(rsl_chan_nr, ?))) {
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001865 got_rll_rel_req := true;
Harald Welte91d54a52018-01-28 15:35:07 +01001866 /* FIXME: Why are we getting this for LinkID SACCH? */
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001867 if (handle_rll_rel) {
1868 f_ipa_tx(0, ts_RSL_REL_CONF(rsl_chan_nr, main_dcch));
1869 }
Harald Welte91d54a52018-01-28 15:35:07 +01001870 repeat;
1871 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001872 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeD(RSL_MT_RF_CHAN_REL))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001873 /* respond with CHAN REL ACK */
1874 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(rsl_chan_nr));
1875 }
1876 /* ignore any user data */
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07001877 [] IPA_RSL[bts_nr].receive(tr_ASP_RSL_UD(tr_RSL_MsgTypeR(?))) {
Harald Welte91d54a52018-01-28 15:35:07 +01001878 repeat;
1879 }
1880 }
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001881
1882 log("f_expect_chan_rel() summary: got_deact_sacch=", got_deact_sacch, " got_rr_chan_rel=", got_rr_chan_rel,
1883 " got_rll_rel_req=", got_rll_rel_req);
1884
1885 if (expect_deact_sacch != got_deact_sacch) {
1886 setverdict(fail, "f_expect_chan_rel(): expect_deact_sacch=", expect_deact_sacch, " got_deact_sacch=", got_deact_sacch);
1887 }
1888 if (expect_rr_chan_rel != got_rr_chan_rel) {
1889 setverdict(fail, "f_expect_chan_rel(): expect_rr_chan_rel=", expect_rr_chan_rel, " got_rr_chan_rel=", got_rr_chan_rel);
1890 }
1891 if (expect_rll_rel_req != got_rll_rel_req) {
1892 setverdict(fail, "f_expect_chan_rel(): expect_rll_rel_req=", expect_rll_rel_req, " got_rll_rel_req=", got_rll_rel_req);
1893 }
Harald Welte91d54a52018-01-28 15:35:07 +01001894}
1895
Harald Welte4003d112017-12-09 22:35:39 +01001896/* Test behavior of channel release after hard Clear Command from MSC */
1897testcase TC_chan_rel_hard_clear() runs on test_CT {
1898 var BSSAP_N_DATA_ind rx_di;
Harald Welte4003d112017-12-09 22:35:39 +01001899 var DchanTuple dt;
Harald Welte4003d112017-12-09 22:35:39 +01001900
Harald Welte89d42e82017-12-17 16:42:41 +01001901 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01001902
1903 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1904
1905 /* Instruct BSC to clear channel */
1906 var BssmapCause cause := 0;
1907 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1908
1909 /* expect Clear Complete from BSC on A */
1910 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1911 /* release the SCCP connection */
1912 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1913 }
1914
Neels Hofmeyra5302c82018-11-04 23:09:58 +01001915 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001916 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01001917}
1918
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001919function f_TC_chan_rel_last_eutran_plmn_hard_clear(boolean tx_csfb_ind) runs on test_CT {
1920 var BSSAP_N_DATA_ind rx_di;
1921 var DchanTuple dt;
1922
1923 f_init(1);
1924
1925 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1926 /* Send CommonID with some random PLMN (BSC doesn't take it into account
1927 /* yet when generating the EUTRAN neigh list in RR CHannel Release) */
1928 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
1929
1930 /* Instruct BSC to clear channel */
1931 var BssmapCause cause := 0;
1932 if (tx_csfb_ind) {
1933 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
1934 } else {
1935 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
1936 }
1937
1938 /* expect Clear Complete from BSC on A */
1939 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1940 /* release the SCCP connection */
1941 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1942 }
1943
1944 /* 1 neighbor is added by default in osmo-bts.cfg and
1945 SystemInformationConfig_default, use that: */
1946 var template CellSelIndValue exp_cells := f_tr_rr_chan_rel_earfcns(1);
1947
1948 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false, expect_cells := exp_cells);
1949 f_shutdown_helper();
1950}
1951
1952/* Test behavior of RR Channel rRelease after Clear Command without CSFB indicator
1953 from MSC, previously receiving any CommonID containing the "Last Used E-UTRAN
1954 PLMN Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
1955 EUTRAN neighbor list sent later on by BSC in RR Channel, so receiving CSFB
1956 Indicator or not shouldn't matter at all. */
1957testcase TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() runs on test_CT {
1958 f_TC_chan_rel_last_eutran_plmn_hard_clear(false);
1959}
1960
1961/* Test behavior of RR Channel rRelease after Clear Command with CSFB indicator from
1962 MSC, previously receiving any CommonID containing the "Last Used E-UTRAN PLMN
1963 Id". According to spec (3GPP TS 48.008 sec 3.1.30) that's the bit requesting
1964 EUTRAN neighbor list sent later on by BSC in RR Channel. */
1965testcase TC_chan_rel_last_eutran_plmn_hard_clear_csfb() runs on test_CT {
1966 f_TC_chan_rel_last_eutran_plmn_hard_clear(true);
1967}
1968
1969/* Test behavior of RR Channel Release after Clear Command with CSFB indicator from
1970 MSC, without receiving any CommonID containing the "Last Used E-UTRAN PLMN
1971 Id". According to spec (TS 48.008 version 16.0.0 Release 16 "3.2.1.21") the
1972 CSFB Indicator should not be used anymore, and hence, there should be no
1973 EUTRAN neighbor list sent by BSC in RR Channel release since no CommonId with
1974 Last Used E-UTRAN PLMN Id" IE was sent for this conn. */
Harald Welte99787102019-02-04 10:41:36 +01001975testcase TC_chan_rel_hard_clear_csfb() runs on test_CT {
1976 var BSSAP_N_DATA_ind rx_di;
1977 var DchanTuple dt;
1978
1979 f_init(1);
1980
1981 dt := f_est_dchan('23'O, 23, '00010203040506'O);
1982
1983 /* Instruct BSC to clear channel */
1984 var BssmapCause cause := 0;
1985 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
1986
1987 /* expect Clear Complete from BSC on A */
1988 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
1989 /* release the SCCP connection */
1990 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
1991 }
1992
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02001993 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02001994 f_shutdown_helper();
Harald Welte99787102019-02-04 10:41:36 +01001995}
1996
Harald Welted8c36cd2017-12-09 23:05:31 +01001997/* Test behavior of channel release after hard RLSD from MSC */
1998testcase TC_chan_rel_hard_rlsd() runs on test_CT {
Harald Welted8c36cd2017-12-09 23:05:31 +01001999 var DchanTuple dt;
Harald Welted8c36cd2017-12-09 23:05:31 +01002000
Harald Welte89d42e82017-12-17 16:42:41 +01002001 f_init(1);
Harald Welted8c36cd2017-12-09 23:05:31 +01002002
2003 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2004
2005 /* release the SCCP connection */
2006 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2007
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002008 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002009 f_shutdown_helper();
Harald Welted8c36cd2017-12-09 23:05:31 +01002010}
2011
Harald Welte550daf92018-06-11 19:22:13 +02002012/* Test behavior of channel release after hard RLSD from MSC and MS is not responding to RLL REL REQ */
2013testcase TC_chan_rel_hard_rlsd_ms_dead() runs on test_CT {
2014 var DchanTuple dt;
2015
2016 f_init(1);
2017
2018 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2019
2020 /* release the SCCP connection */
2021 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2022
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002023 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002024 f_shutdown_helper();
Harald Welte550daf92018-06-11 19:22:13 +02002025}
2026
Harald Welte85804d42017-12-10 14:11:58 +01002027/* Test behavior of channel release after BSSMAP RESET from MSC */
2028testcase TC_chan_rel_a_reset() runs on test_CT {
Harald Welte85804d42017-12-10 14:11:58 +01002029 var DchanTuple dt;
Harald Welte85804d42017-12-10 14:11:58 +01002030
Harald Welte89d42e82017-12-17 16:42:41 +01002031 f_init(1);
Harald Welte85804d42017-12-10 14:11:58 +01002032
2033 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2034
2035 /* Clear the queue, it might still contain stuff like IMMEDIATE ASSIGN */
2036 IPA_RSL[0].clear;
2037
2038 /* perform BSSAP RESET, expect RESET ACK and DISC.ind on connection */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002039 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 +01002040 interleave {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002041 [] 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 +01002042 [] BSSAP.receive(tr_BSSAP_DISC_ind(dt.sccp_conn_id, ?, ?)) { }
2043 }
2044
Neels Hofmeyra5302c82018-11-04 23:09:58 +01002045 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002046 f_shutdown_helper();
Harald Welte85804d42017-12-10 14:11:58 +01002047}
2048
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002049/* Verify T(iar) triggers and releases the channel */
2050testcase TC_chan_rel_sccp_tiar_timeout() runs on test_CT {
2051 var DchanTuple dt;
2052
2053 /* Set T(iar) in BSC low enough that it will trigger before other side
2054 has time to keep alive with a T(ias). Keep recommended ratio of
2055 T(iar) >= T(ias)*2 */
2056 g_bsc_sccp_timer_ias := 2;
2057 g_bsc_sccp_timer_iar := 5;
2058
2059 f_init(1);
2060
2061 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2062 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002063 f_shutdown_helper();
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01002064}
2065
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002066private function f_tc_chan_rel_rr_cause(myBSSMAP_Cause clear_cmd_cause, template RR_Cause expect_rr_cause)
2067runs on test_CT
2068{
2069 var DchanTuple dt;
2070
2071 dt := f_est_dchan('23'O, 23, '00010203040506'O);
2072 var BssmapCause cause := 0;
2073 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(enum2int(clear_cmd_cause))));
2074 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2075 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2076 }
2077
2078 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 +02002079}
2080
2081/* Test that Clear Command cause codes affect the RR Channel Release cause code */
2082testcase TC_chan_rel_rr_cause() runs on test_CT {
2083 f_init(1);
2084
2085 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_CALL_CONTROL, GSM48_RR_CAUSE_NORMAL);
2086 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_HANDOVER_SUCCESSFUL, GSM48_RR_CAUSE_NORMAL);
2087 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_PREEMPTION, GSM48_RR_CAUSE_PREMPTIVE_REL);
2088 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_MESSAGE_FAILURE, GSM48_RR_CAUSE_PROT_ERROR_UNSPC);
2089 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_RADIO_INTERFACE_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
2090 f_tc_chan_rel_rr_cause(GSM0808_CAUSE_EQUIPMENT_FAILURE, GSM48_RR_CAUSE_ABNORMAL_UNSPEC);
Vadim Yanitskiye18aebb2021-01-03 13:10:43 +01002091
2092 f_shutdown_helper();
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02002093}
2094
Harald Welte5cd20ed2017-12-13 21:03:20 +01002095/* Test behavior if RSL EST IND for non-active channel */
2096testcase TC_rll_est_ind_inact_lchan() runs on test_CT {
2097 timer T := 2.0;
2098
Harald Welte89d42e82017-12-17 16:42:41 +01002099 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002100
2101 var octetstring l3 := '00010203040506'O;
2102 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
2103 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(0)), l3));
2104
2105 T.start;
2106 alt {
2107 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2108 setverdict(fail, "MSC received COMPL L3 for non-active lchan");
2109 }
2110 [] BSSAP.receive {}
2111 [] IPA_RSL[0].receive {}
2112 [] T.timeout {}
2113 }
2114
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002115 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002116}
2117
2118/* Test behavior if RSL EST IND for invalid SAPI */
2119testcase TC_rll_est_ind_inval_sapi1() runs on test_CT {
2120 var RslChannelNr chan_nr;
2121
Harald Welte89d42e82017-12-17 16:42:41 +01002122 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002123
2124 chan_nr := f_chreq_act_ack()
2125
2126 var octetstring l3 := '00010203040506'O;
2127 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(1)), l3));
2128
2129 timer T := 2.0;
2130 T.start;
2131 alt {
2132 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2133 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 1");
2134 }
2135 [] BSSAP.receive { repeat; }
2136 [] IPA_RSL[0].receive { repeat; }
2137 [] T.timeout {}
2138 }
2139
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002140 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002141}
2142
2143/* Test behavior if RSL EST IND for invalid SAPI */
2144testcase TC_rll_est_ind_inval_sapi3() runs on test_CT {
2145 timer T := 2.0;
2146
Harald Welte89d42e82017-12-17 16:42:41 +01002147 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002148
2149 var RslChannelNr chan_nr := f_chreq_act_ack();
2150
2151 var octetstring l3 := '00010203040506'O;
2152 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_DCCH(3)), l3));
2153
2154 T.start;
2155 alt {
2156 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2157 setverdict(fail, "MSC received COMPL L3 for invalid SAPI 3");
2158 }
2159 [] BSSAP.receive { repeat; }
2160 [] IPA_RSL[0].receive { repeat; }
2161 [] T.timeout {}
2162 }
2163
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002164 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002165}
2166
2167/* Test behavior if RSL EST IND for invalid SACCH */
2168testcase TC_rll_est_ind_inval_sacch() runs on test_CT {
2169 timer T := 2.0;
2170
Harald Welte89d42e82017-12-17 16:42:41 +01002171 f_init(1);
Harald Welte5cd20ed2017-12-13 21:03:20 +01002172
2173 var RslChannelNr chan_nr := f_chreq_act_ack();
2174
2175 var octetstring l3 := '00010203040506'O;
2176 f_ipa_tx(0, ts_RSL_EST_IND(chan_nr, valueof(ts_RslLinkID_SACCH(0)), l3));
2177
2178 T.start;
2179 alt {
2180 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(l3))) {
2181 setverdict(fail, "MSC received COMPL L3 for invalid Link SACCH");
2182 }
2183 [] BSSAP.receive { repeat; }
2184 [] IPA_RSL[0].receive { repeat; }
2185 [] T.timeout {}
2186 }
2187
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002188 f_shutdown_helper();
Harald Welte5cd20ed2017-12-13 21:03:20 +01002189}
2190
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002191/* Verify DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
2192private function f_TC_tch_dlci_link_id_sapi(charstring id) runs on MSC_ConnHdlr {
2193 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
2194 var PDU_BSSAP ass_cmd := f_gen_ass_req();
2195
2196 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
2197 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
2198
2199 f_establish_fully(ass_cmd, exp_compl);
2200
2201 /* SAPI0 has already been established by f_establish_fully(), establish SAPI3 */
2202 RSL.send(ts_RSL_EST_IND(g_chan_nr, ts_RslLinkID_SACCH(3), '0904'O));
2203 /* Expect BSSAP/DTAP on SAPI3 (DLCI IE) */
2204 BSSAP.receive(PDU_BSSAP:{
2205 discriminator := '1'B,
2206 spare := '0000000'B,
2207 dlci := 'C3'O,
2208 lengthIndicator := ?,
2209 pdu := { dtap := '0904'O }
2210 });
2211
2212 /* Send messages on DCCH/SAPI0 and ACCH/SAPI3 */
2213 for (var integer i := 0; i < 32; i := i + 1) {
2214 var octetstring l3 := '09'O & f_rnd_octstring(14);
2215 var template (value) RslLinkId link_id;
2216 var template (value) OCT1 dlci;
2217
2218 if (i mod 2 == 0) {
2219 /* SAPI0 on FACCH or SDCCH */
2220 link_id := ts_RslLinkID_DCCH(0);
2221 dlci := '80'O;
2222 } else {
2223 /* SAPI3 on SACCH */
2224 link_id := ts_RslLinkID_SACCH(3);
2225 dlci := 'C3'O;
2226 }
2227
2228 /* Send MO message: RSL -> BSSAP */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002229 f_mo_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002230 /* Send MT message: BSSAP -> RSL */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00002231 f_mt_l3_transceive(RSL, link_id, dlci, l3);
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07002232 }
2233}
2234testcase TC_tch_dlci_link_id_sapi() runs on test_CT {
2235 var TestHdlrParams pars := f_gen_test_hdlr_pars();
2236 var MSC_ConnHdlr vc_conn;
2237
2238 f_init(1, true);
2239 f_sleep(1.0);
2240
2241 vc_conn := f_start_handler(refers(f_TC_tch_dlci_link_id_sapi), pars);
2242 vc_conn.done;
2243
2244 f_shutdown_helper();
2245}
2246
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002247private function f_exp_sapi_n_reject(template (present) GsmSapi sapi := ?,
2248 template myBSSMAP_Cause cause := ?,
2249 float T_val := 2.0)
2250runs on test_CT {
2251 var BSSAP_N_DATA_ind rx_di;
2252 timer T;
2253
2254 var template BSSMAP_IE_Cause tr_cause := tr_BSSMAP_IE_Cause(cause);
2255 var template PDU_BSSAP tr_pdu := tr_BSSMAP_SAPInReject(sapi);
2256
2257 T.start(T_val);
2258 alt {
2259 [] BSSAP.receive(tr_BSSAP_DATA_ind(?, tr_pdu)) -> value rx_di {
2260 var BSSMAP_IE_Cause rx_cause := rx_di.userData.pdu.bssmap.sAPInReject.cause;
2261 if (not match(rx_cause, tr_cause)) {
2262 setverdict(fail, "Rx unexpected Cause IE: ",
2263 rx_cause, " vs expected ", tr_cause);
2264 }
2265 setverdict(pass);
2266 }
2267 [] BSSAP.receive(BSSAP_N_DATA_ind:?) -> value rx_di {
2268 setverdict(fail, "Rx unexpected BSSAP PDU: ", rx_di);
2269 }
2270 [] T.timeout {
2271 setverdict(fail, "Timeout waiting for BSSMAP SAPI N Reject");
2272 }
2273 }
2274}
2275
2276/* Check if we get SAPI N Reject on receipt of unexpected RLL RELease INDication */
2277testcase TC_rll_rel_ind_sapi_n_reject() runs on test_CT {
2278 var octetstring rnd_data := f_rnd_octstring(16);
2279 var RSL_Message rx_rsl;
2280 var DchanTuple dt;
2281
2282 f_init(1);
2283
2284 /* MS establishes a SAPI=0 link on DCCH */
2285 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2286
2287 /* MSC sends some data on (not yet established) SAPI=3 link */
2288 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2289 /* BSC attempts to establish a SAPI=3 link on DCCH */
2290 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2291
2292 /* MS sends unexpected RELease INDication on SAPI=3 */
2293 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3)));
2294 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2295 f_exp_sapi_n_reject(3, GSM0808_CAUSE_MS_NOT_EQUIPPED);
2296
2297 /* Clean up the connection */
2298 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2299 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2300
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002301 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002302}
2303
2304/* Check if we get SAPI N Reject on receipt of unexpected RLL ERROR INDication */
2305testcase TC_rll_err_ind_sapi_n_reject() runs on test_CT {
2306 var octetstring rnd_data := f_rnd_octstring(16);
2307 var RSL_Message rx_rsl;
2308 var DchanTuple dt;
2309
2310 f_init(1);
2311
2312 /* MS establishes a SAPI=0 link on DCCH */
2313 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2314
2315 /* MSC sends some data on (not yet established) SAPI=3 link */
2316 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2317 /* BSC attempts to establish a SAPI=3 link on DCCH */
2318 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2319
2320 /* BTS sends unexpected ERROR INDication on SAPI=3 */
2321 f_ipa_tx(0, ts_RSL_ERROR_IND(dt.rsl_chan_nr, ts_RslLinkID_DCCH(3), ''O));
2322 /* We expect to receive BSSMAP SAPI N Reject message from the BSC */
2323 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED);
2324
2325 /* Clean up the connection */
2326 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2327 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2328
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002329 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002330}
2331
2332/* Check if we get SAPI N Reject due to a SAPI=3 link establishment timeout */
2333testcase TC_rll_timeout_sapi_n_reject() runs on test_CT {
2334 var octetstring rnd_data := f_rnd_octstring(16);
2335 var RSL_Message rx_rsl;
2336 var DchanTuple dt;
2337
2338 f_init(1);
2339
2340 /* MS establishes a SAPI=0 link on DCCH */
2341 dt := f_est_dchan(f_rnd_ra_cs(), 23, rnd_data);
2342
2343 /* MSC sends some data on (not yet established) SAPI=3 link */
2344 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSAP_DTAP(rnd_data, '03'O)));
2345 /* BSC attempts to establish a SAPI=3 link on DCCH */
2346 rx_rsl := f_exp_ipa_rx(0, tr_RSL_EST_REQ(dt.rsl_chan_nr, tr_RslLinkID_DCCH(3)));
2347
2348 /* MS does not respond, so the link establishment timeout triggers SAPI N Reject */
2349 f_exp_sapi_n_reject(3, GSM0808_CAUSE_BSS_NOT_EQUIPPED, T_val := 8.0);
2350
2351 /* Clean up the connection */
2352 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2353 f_expect_chan_rel(0, dt.rsl_chan_nr, expect_rll_rel_req := false);
2354
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002355 f_shutdown_helper();
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07002356}
2357
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002358testcase TC_si_default() runs on test_CT {
2359 f_init(0);
2360 f_init_bts_and_check_sysinfo(0, expect_si := SystemInformationConfig_default);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002361 f_shutdown_helper();
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02002362}
Harald Welte4003d112017-12-09 22:35:39 +01002363
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002364/* We're testing SI2quater with lists of EARFCNs. Instead of just incrementing EARFCNs, also pick some from the edges of
2365 * the entire value range. This function provides the same EARFCN numbers for the same earfcn_index */
2366private function f_test_si2quater_earfcn_by_idx(integer earfcn_index) return uint16_t
2367{
2368 select (earfcn_index) {
2369 case (0) {
2370 /* E-ARFCN 111 is already added in the osmo-bsc.cfg */
2371 return 111;
2372 }
2373 case (1) {
2374 return 1;
2375 }
2376 case (2) {
2377 return 0;
2378 }
2379 case (3) {
2380 return 65535;
2381 }
2382 case else {
2383 return 23 * (earfcn_index - 3);
2384 }
2385 }
2386}
2387
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002388function f_test_si2quater(integer total_earfcns, template SystemInformationConfig expect_si,
2389 template CellSelIndValue expect_cells := omit) runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002390
2391 f_init(0);
2392
2393 /* E-ARFCN 111 is already added in the osmo-bsc.cfg, so only add more arfcns if total_earfcns > 1 */
2394 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002395 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2396 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002397 }
2398
2399 f_init_bts_and_check_sysinfo(0, expect_si := expect_si);
2400
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002401 if (not istemplatekind(expect_cells, "omit")) {
2402 /* Also check that RR Channel Release contains these EARFCNs.
2403 * (copied code from TC_chan_rel_hard_clear_csfb) */
2404 var BSSAP_N_DATA_ind rx_di;
2405 var DchanTuple dt;
2406
2407 dt := f_est_dchan('23'O, 23, '00010203040506'O);
Pau Espin Pedrold0046312021-04-19 16:35:58 +02002408 /* Send CommonID with some random PLMN (BSC doesn't take it into account
2409 * yet when generating the EUTRAN neigh list in RR CHannel Release) */
2410 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_CommonId('001019876543210'H, '323454'O)));
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002411
2412 /* Instruct BSC to clear channel */
2413 var BssmapCause cause := 0;
2414 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommandCSFB(cause)));
2415
2416 /* expect Clear Complete from BSC on A */
2417 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearComplete)) {
2418 /* release the SCCP connection */
2419 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
2420 }
2421
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02002422 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 +02002423 }
2424
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002425 for (var integer i := 1; i < total_earfcns; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002426 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 +02002427 }
2428}
2429
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002430private function f_tr_si2quater_earfcns(integer count) return template SI2quaterRestOctetsList
2431{
2432 var template SI2quaterRestOctetsList si2quater := {};
2433 var integer si2quater_count := (count + 2) / 3;
2434
2435 for (var integer i := 0; i < count; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002436 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002437 var integer index := i / 3;
2438 var integer earfcn_index := i mod 3;
2439 if (index >= lengthof(si2quater)) {
2440 si2quater[index] := tr_SI2quaterRestOctets_EUTRAN(index := index, count := si2quater_count - 1);
2441 }
2442 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);
2443 }
2444
2445 return si2quater;
2446}
2447
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002448private function f_tr_rr_chan_rel_earfcns(integer count) return template CellSelIndValue
2449{
2450 var template CellSelIndValue_EUTRAN_Descrs cells := {};
2451
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002452 /* the lte neighbors must match the config & vty to pass this test */
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002453 for (var integer i := 0; i < count; i := i + 1) {
2454 var integer earfcn := f_test_si2quater_earfcn_by_idx(i);
Alexander Couzensf74b5cb2020-09-10 22:28:40 +02002455 cells[i] := tr_CellSelIndValue_EUTRAN_Descr(earfcn, '1'B, 3);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002456 }
2457
2458 return tr_CellSelIndValue_EUTRAN(cells);
2459}
2460
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002461private function f_tc_si2quater_n_earfcns(integer n) runs on test_CT
2462{
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002463 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrol8ab62e42020-12-18 16:19:11 +01002464 sic.si2quater := f_tr_si2quater_earfcns(n);
Neels Hofmeyr0edf4ac2020-07-10 17:33:24 +02002465 var template CellSelIndValue cells := f_tr_rr_chan_rel_earfcns(n);
2466 f_test_si2quater(n, sic, cells);
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002467}
2468
2469testcase TC_si2quater_2_earfcns() runs on test_CT {
2470 f_tc_si2quater_n_earfcns(2);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002471 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002472}
2473
2474testcase TC_si2quater_3_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002475 f_tc_si2quater_n_earfcns(3);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002476 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002477}
2478
2479testcase TC_si2quater_4_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002480 f_tc_si2quater_n_earfcns(4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002481 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002482}
2483
2484testcase TC_si2quater_5_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002485 f_tc_si2quater_n_earfcns(5);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002486 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002487}
2488
2489testcase TC_si2quater_6_earfcns() runs on test_CT {
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002490 f_tc_si2quater_n_earfcns(6);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002491 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002492}
2493
2494testcase TC_si2quater_12_earfcns() runs on test_CT {
2495 f_tc_si2quater_n_earfcns(12);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002496 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002497}
2498
2499testcase TC_si2quater_23_earfcns() runs on test_CT {
2500 f_tc_si2quater_n_earfcns(23);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002501 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002502}
2503
2504testcase TC_si2quater_32_earfcns() runs on test_CT {
2505 f_tc_si2quater_n_earfcns(32);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002506 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002507}
2508
2509testcase TC_si2quater_33_earfcns() runs on test_CT {
2510 f_tc_si2quater_n_earfcns(33);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002511 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002512}
2513
2514testcase TC_si2quater_42_earfcns() runs on test_CT {
2515 f_tc_si2quater_n_earfcns(42);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002516 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002517}
2518
2519testcase TC_si2quater_48_earfcns() runs on test_CT {
2520 f_tc_si2quater_n_earfcns(48);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002521 f_shutdown_helper();
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002522}
2523
2524/* verify the VTY error response when adding too many EARFCNs, and showing that osmo-bsc still sends 16 SI2quater with
2525 * 48 EARFCNs. */
2526testcase TC_si2quater_49_earfcns() runs on test_CT {
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002527 var template SystemInformationConfig sic := SystemInformationConfig_default;
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002528 sic.si2quater := f_tr_si2quater_earfcns(48); /* 48, not 49! */
2529 f_init(0);
2530
2531 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002532 f_bts_0_cfg(BSCVTY, {"si2quater neighbor-list add earfcn " & int2str(f_test_si2quater_earfcn_by_idx(i))
2533 & " thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3"});
Neels Hofmeyrad132f22020-07-08 02:20:16 +02002534 }
2535
2536 /* The 49th EARFCN no longer fits, expect VTY error */
2537 f_vty_enter_cfg_bts(BSCVTY, 0);
2538 var charstring vty_error;
2539 vty_error := f_vty_transceive_ret(BSCVTY,
2540 "si2quater neighbor-list add earfcn 70 thresh-hi 20 thresh-lo 10 prio 3 qrxlv 22 meas 3")
2541 f_vty_transceive(BSCVTY, "end");
2542
2543 if (f_strstr(vty_error, "Unable to add ARFCN 70") >= 0) {
2544 log("Got expected VTY error: ", vty_error);
2545 setverdict(pass);
2546 } else {
2547 setverdict(fail, "Expected the 49th EUTRAN ARFCN to be rejected by vty config, got: ", vty_error);
2548 }
2549
2550 f_init_bts_and_check_sysinfo(0, expect_si := sic);
2551
2552 for (var integer i := 1; i < 48; i := i + 1) {
Neels Hofmeyr56f24782020-07-09 00:50:49 +02002553 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 +02002554 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002555 f_shutdown_helper();
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002556}
2557
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002558private function f_acc09_count_allowed(AccessControlClass acc) return uint8_t
2559{
2560 var uint8_t count := 0;
2561 for (var integer i := 5; i < 16; i := i + 1) {
2562 if (acc[i] == '0'B) { /* the list marks barred, we count allowed */
2563 count := count + 1;
2564 }
2565 }
2566 return count;
2567}
2568
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002569private function f_recv_next_si1(integer rsl_idx := 0) runs on test_CT return SystemInformationType1
2570{
2571 var ASP_RSL_Unitdata rx_rsl_ud;
2572 var SystemInformationType1 last_si1;
2573
2574 timer T := 30.0;
2575 T.start;
2576 alt {
2577 [] IPA_RSL[rsl_idx].receive(tr_ASP_RSL_UD((tr_RSL_NO_BCCH_INFO,
2578 tr_RSL_BCCH_INFO,
2579 tr_RSL_NO_SACCH_FILL,
2580 tr_RSL_SACCH_FILL))
2581 ) -> value rx_rsl_ud {
2582 f_sysinfo_seen(rsl_idx, rx_rsl_ud.rsl);
2583 if (g_system_information[rsl_idx].si1 == omit) {
2584 repeat;
2585 }
2586 last_si1 := g_system_information[rsl_idx].si1;
2587 g_system_information[rsl_idx].si1 := omit;
2588 T.stop;
2589 }
Vadim Yanitskiy79ebd5e2021-01-04 00:12:55 +01002590 [] IPA_RSL[rsl_idx].receive { repeat; }
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002591 [] T.timeout { setverdict(fail, "Timeout receiving next SI1"); }
2592 }
2593 return last_si1;
2594}
2595
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002596/* verify ACC rotate feature */
2597testcase TC_si_acc_rotate() runs on test_CT {
2598 var template SystemInformationConfig sic := SystemInformationConfig_default;
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002599 var SystemInformationType1 last_si1;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002600 var AccessControlClass acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002601 var uint8_t count;
2602 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2603
2604 f_init(0, guard_timeout := 60.0);
2605
2606 f_bts_0_cfg(BSCVTY, {"rach access-control-class 5 barred",
2607 "access-control-class-rotate 3",
2608 "access-control-class-rotate-quantum 1"});
2609
2610 /* Init and get first sysinfo */
2611 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2612
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002613 for (var integer i:= 0; i < 20; i := i + 1) {
2614 last_si1 := f_recv_next_si1(0);
2615 acc := last_si1.rach_control.acc;
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002616 count := f_acc09_count_allowed(acc);
2617 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2618
2619 if (count != 3) {
2620 log("RSL: EXPECTED SI ACC len=3");
2621 setverdict(fail, "received SI does not match expectations");
2622 break;
2623 }
2624
2625 for (var integer j := 0; j < 10; j := j + 1) {
2626 if (acc[16 - 1 - j] == '0'B) { /* the list marks barred, we count allowed */
2627 times_allowed[j] := times_allowed[j] + 1;
2628 }
2629 }
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002630 }
2631
2632 for (var integer j := 0; j < 10; j := j + 1) {
2633 log("ACC", j, " allowed ", times_allowed[j], " times" );
2634 if (j != 5 and times_allowed[j] < 3) {
2635 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " < 1 times");
2636 } else if (j == 5 and times_allowed[j] > 0) {
2637 setverdict(fail, "ACC", j, " ERROR: allowed ", times_allowed[j], " > 0 times");
2638 }
2639 }
2640
2641 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2642 "rach access-control-class 5 allowed"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002643 f_shutdown_helper();
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02002644}
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02002645
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002646/* verify ACC startup ramp+rotate feature */
2647testcase TC_si_acc_ramp_rotate() runs on test_CT {
2648 var template SystemInformationConfig sic := SystemInformationConfig_default;
2649 var SystemInformationType1 last_si1;
2650 var AccessControlClass acc;
2651 var ASP_RSL_Unitdata rx_rsl_ud;
2652 var uint8_t count;
2653 var uint8_t prev_count;
2654 var integer times_allowed[10] := { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 };
2655
2656 f_init(0, guard_timeout := 80.0);
2657
2658 f_bts_0_cfg(BSCVTY, {"rach access-control-class 4 barred",
2659 "access-control-class-rotate 0",
2660 "access-control-class-rotate-quantum 1",
2661 "access-control-class-ramping",
2662 "access-control-class-ramping-step-interval 5",
2663 "access-control-class-ramping-step-size 5"});
2664
2665 /* Init and get first sysinfo */
2666 f_init_bts_and_check_sysinfo(0, expect_si := ?);
2667 last_si1 := g_system_information[0].si1;
2668 acc := last_si1.rach_control.acc;
2669 count := f_acc09_count_allowed(acc);
2670 /* Adm subset size was set to 0 above, so wait until all ACC are barred */
2671 while (count > 0) {
2672 last_si1 := f_recv_next_si1(0);
2673 acc := last_si1.rach_control.acc;
2674 count := f_acc09_count_allowed(acc);
2675 log("RSL: wait len()=0: GOT SI1 ACC len=", count, ": ", acc);
2676 }
2677
2678 /* Increase adm subset size, we should see ramping start up */
2679 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10"});
2680 prev_count := 0;
2681 while (true) {
2682 last_si1 := f_recv_next_si1(0);
2683 acc := last_si1.rach_control.acc;
2684 count := f_acc09_count_allowed(acc);
2685 log("RSL: GOT SI1 ACC len=", count, ": ", acc);
2686
2687 if (prev_count > count) {
2688 setverdict(fail, "ACC allowed count dropped while expecting grow: ", prev_count, " -> ", count);
2689 break;
2690 }
2691
2692 if (count == 9) {
2693 break; /* Maximum reached (10 - 1 perm barred), done here */
2694 }
2695
2696 prev_count := count;
2697 }
2698
2699 setverdict(pass);
2700
2701 f_bts_0_cfg(BSCVTY, {"access-control-class-rotate 10",
2702 "rach access-control-class 4 allowed",
2703 "no access-control-class-ramping"});
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002704 f_shutdown_helper();
Pau Espin Pedrolc6136cd2020-07-24 13:20:02 +02002705}
2706
Harald Welte4003d112017-12-09 22:35:39 +01002707testcase TC_ctrl_msc_connection_status() runs on test_CT {
2708 var charstring ctrl_resp;
2709
Harald Welte89d42e82017-12-17 16:42:41 +01002710 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002711
2712 /* See https://osmocom.org/issues/2729 */
2713 f_ctrl_get_exp(IPA_CTRL, "msc_connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002714 f_shutdown_helper();
Harald Welte4003d112017-12-09 22:35:39 +01002715}
2716
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002717testcase TC_ctrl_msc0_connection_status() runs on test_CT {
2718 var charstring ctrl_resp;
2719
2720 f_init(1);
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002721
2722 f_ctrl_get_exp(IPA_CTRL, "msc.0.connection_status", "connected");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002723 f_shutdown_helper();
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01002724}
2725
Harald Welte4003d112017-12-09 22:35:39 +01002726testcase TC_ctrl() runs on test_CT {
2727 var charstring ctrl_resp;
2728
Harald Welte89d42e82017-12-17 16:42:41 +01002729 f_init(1);
Harald Welte4003d112017-12-09 22:35:39 +01002730
2731 /* all below values must match the osmo-bsc.cfg config file used */
2732
Harald Welte6a129692018-03-17 17:30:14 +01002733 f_ctrl_get_exp(IPA_CTRL, "mcc", "001");
2734 f_ctrl_get_exp(IPA_CTRL, "mnc", "01");
Oliver Smith75aa0202019-08-19 14:17:50 +02002735 f_ctrl_get_exp(IPA_CTRL, "number-of-bts", "4");
Harald Welte4003d112017-12-09 22:35:39 +01002736
2737 var integer bts_nr := 0;
2738 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "location-area-code", "1");
2739 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "cell-identity", "0");
2740 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "oml-connection-state", "connected");
2741 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "gprs-mode", "gprs");
2742 f_ctrl_get_exp_bts(IPA_CTRL, bts_nr, "rf_state", "operational,unlocked,on");
2743 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "arfcn", "871");
2744 f_ctrl_get_exp_trx(IPA_CTRL, bts_nr, 0, "max-power-reduction", "20");
2745
2746 var integer uptime := str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime"));
2747 f_sleep(2.0);
2748 if (str2int(f_ctrl_get_bts(IPA_CTRL, bts_nr, "oml-uptime")) < uptime+1) {
2749 setverdict(fail, "oml-uptime not incrementing as expected");
2750 }
2751 /* TODO: Disconnect RSL, imply that OML is disconnected and check for uptime zero? */
2752
2753 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", 0);
2754
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002755 f_shutdown_helper();
Harald Welte96c94412017-12-09 03:12:45 +01002756}
2757
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002758/* Verify that Upon receival of SET "location", BSC forwards a TRAP
2759 "location-state" over the SCCPlite IPA conn */
2760testcase TC_ctrl_location() runs on test_CT {
2761 var MSC_ConnHdlr vc_conn;
2762 var integer bts_nr := 0;
2763
2764 f_init(1, true);
2765 f_sleep(1.0);
2766
2767 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234567,fix3d,0.340000,0.560000,0.780000");
2768 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2769 "1234567,fix3d,0.340000,0.560000,0.780000,operational,unlocked,on,001,01");
2770
2771 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "1");
2772 f_sleep(2.0);
2773
2774 f_ctrl_set_bts(IPA_CTRL, bts_nr, "location", "1234888,fix3d,0.350000,0.570000,0.790000");
2775 f_ctrl_exp_trap(SCCPLITE_IPA_CTRL, "bts." & int2str(bts_nr) & ".location-state",
2776 "1234888,fix3d,0.350000,0.570000,0.790000,operational,locked,off,001,01");
2777
2778 /* should match the one from config */
2779 f_ctrl_set(SCCPLITE_IPA_CTRL, "rf_locked", "0");
2780
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02002781 f_shutdown_helper();
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02002782}
2783
Harald Welte6f521d82017-12-11 19:52:02 +01002784
2785/***********************************************************************
2786 * Paging Testing
2787 ***********************************************************************/
2788
2789type record Cell_Identity {
2790 GsmMcc mcc,
2791 GsmMnc mnc,
2792 GsmLac lac,
2793 GsmCellId ci
2794};
Harald Welte24135bd2018-03-17 19:27:53 +01002795private const Cell_Identity cid := { '001'H, '01'H, 1, 0 };
Stefan Sperling049a86e2018-03-20 15:51:00 +01002796private const Cell_Identity unknown_cid := { '678'H, 'f90'H, 1, 0 };
Harald Welte6f521d82017-12-11 19:52:02 +01002797
Harald Welte5d1a2202017-12-13 19:51:29 +01002798type set of integer BtsIdList;
2799
2800private function f_bts_in_list(integer bts_id, BtsIdList bts_ids) return boolean {
2801 for (var integer j := 0; j < sizeof(bts_ids); j := j + 1) {
2802 if (bts_id == bts_ids[j]) {
2803 return true;
2804 }
2805 }
2806 return false;
2807}
Harald Welte6f521d82017-12-11 19:52:02 +01002808
2809/* core paging test helper function; used by most paging test cases */
2810private function f_pageing_helper(hexstring imsi,
2811 template BSSMAP_FIELD_CellIdentificationList cid_list,
Harald Welte5d1a2202017-12-13 19:51:29 +01002812 BtsIdList bts_ids := { 0 },
Harald Welte6f521d82017-12-11 19:52:02 +01002813 template RSL_ChanNeeded rsl_chneed := omit,
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002814 template (omit) OCT4 tmsi := omit) runs on test_CT
Harald Welte6f521d82017-12-11 19:52:02 +01002815{
2816 var template BSSMAP_IE_ChannelNeeded bssmap_chneed;
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002817 var template MobileIdentityV mi;
Harald Welte6f521d82017-12-11 19:52:02 +01002818 var RSL_Message rx_rsl;
2819 var integer paging_group := hex2int(imsi[lengthof(imsi)-1]);
Harald Welte5d1a2202017-12-13 19:51:29 +01002820 var integer i;
Harald Welte6f521d82017-12-11 19:52:02 +01002821
2822 f_init();
Harald Welte6f521d82017-12-11 19:52:02 +01002823
2824 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Harald Weltec3068592018-03-17 19:55:31 +01002825 for (i := 0; i < NUM_BTS; i := i + 1) {
2826 IPA_RSL[i].clear;
Harald Welte5d1a2202017-12-13 19:51:29 +01002827 }
Harald Welte6f521d82017-12-11 19:52:02 +01002828
2829 if (isvalue(rsl_chneed)) {
2830 /* The values of 08.08 3.2.2.36 and 08.58 9.3.40 are luckily identical */
2831 bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
2832 } else {
2833 bssmap_chneed := omit;
2834 }
2835
Neels Hofmeyrf246a922020-05-13 02:27:10 +02002836 BSSAP.send(ts_BSSAP_UNITDATA_req(g_bssap[0].sccp_addr_peer, g_bssap[0].sccp_addr_own,
2837 ts_BSSMAP_Paging(imsi, cid_list, tmsi, bssmap_chneed)));
Harald Welte6f521d82017-12-11 19:52:02 +01002838
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002839 if (not istemplatekind(tmsi, "omit")) {
2840 mi := t_MI_TMSI(tmsi);
Harald Welte6f521d82017-12-11 19:52:02 +01002841 } else {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002842 mi := tr_MI_IMSI(imsi);
Harald Welte6f521d82017-12-11 19:52:02 +01002843 }
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002844
Harald Welte5d1a2202017-12-13 19:51:29 +01002845 for (i := 0; i < sizeof(bts_ids); i := i + 1) {
Vadim Yanitskiycc4623d2020-03-28 06:14:06 +07002846 rx_rsl := f_exp_ipa_rx(bts_ids[i], tr_RSL_PAGING_CMD(mi));
Harald Welte5d1a2202017-12-13 19:51:29 +01002847 /* check channel type, paging group */
2848 if (rx_rsl.ies[1].body.paging_group != paging_group) {
2849 setverdict(fail, "Paging for wrong paging group");
2850 }
2851 if (ispresent(rsl_chneed) and
2852 rx_rsl.ies[3].body.chan_needed.chan_needed != valueof(rsl_chneed)) {
2853 setverdict(fail, "RSL Channel Needed != BSSMAP Channel Needed");
2854 }
Harald Welte6f521d82017-12-11 19:52:02 +01002855 }
Harald Welte2fccd982018-01-31 15:48:19 +01002856 f_sleep(2.0);
Harald Welte5d1a2202017-12-13 19:51:29 +01002857 /* do a quick check on all not-included BTSs if they received paging */
2858 for (i := 0; i < NUM_BTS; i := i + 1) {
2859 timer T := 0.1;
2860 if (f_bts_in_list(i, bts_ids)) {
2861 continue;
2862 }
2863 T.start;
2864 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07002865 [] IPA_RSL[i].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(mi))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01002866 setverdict(fail, "Paging on BTS ", i, " which is not part of ", bts_ids);
2867 }
2868 [] IPA_RSL[i].receive { repeat; }
2869 [] T.timeout { }
2870 }
Harald Welte6f521d82017-12-11 19:52:02 +01002871 }
2872
2873 setverdict(pass);
2874}
2875
Harald Welte5d1a2202017-12-13 19:51:29 +01002876const BtsIdList c_BtsId_all := { 0, 1, 2 };
Harald Welte751d3eb2018-01-31 15:51:06 +01002877const BtsIdList c_BtsId_none := { };
Harald Welte5d1a2202017-12-13 19:51:29 +01002878const BtsIdList c_BtsId_LAC1 := { 0, 1 };
2879const BtsIdList c_BtsId_LAC2 := { 2 };
2880
Harald Welte6f521d82017-12-11 19:52:02 +01002881/* PAGING by IMSI + TMSI */
2882testcase TC_paging_imsi_nochan() runs on test_CT {
2883 var BSSMAP_FIELD_CellIdentificationList cid_list;
2884 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Philipp Maier8c04b0a2018-02-23 13:48:48 +01002885 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, omit);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002886 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002887}
2888
2889/* PAGING by IMSI + TMSI */
2890testcase TC_paging_tmsi_nochan() runs on test_CT {
2891 var BSSMAP_FIELD_CellIdentificationList cid_list;
2892 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01002893 f_pageing_helper('001010100000001'H, cid_list, c_BtsId_all, omit, 'A1B2C301'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002894 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002895}
2896
2897/* Paging with different "channel needed' values */
2898testcase TC_paging_tmsi_any() runs on test_CT {
2899 var BSSMAP_FIELD_CellIdentificationList cid_list;
2900 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01002901 f_pageing_helper('001010100000002'H, cid_list, c_BtsId_all, RSL_CHANNEED_ANY, 'A1B2C302'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002902 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002903}
2904testcase TC_paging_tmsi_sdcch() runs on test_CT {
2905 var BSSMAP_FIELD_CellIdentificationList cid_list;
2906 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01002907 f_pageing_helper('001010100000003'H, cid_list, c_BtsId_all, RSL_CHANNEED_SDCCH, 'A1B2C303'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002908 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002909}
2910testcase TC_paging_tmsi_tch_f() runs on test_CT {
2911 var BSSMAP_FIELD_CellIdentificationList cid_list;
2912 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01002913 f_pageing_helper('001010000000004'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_F, 'A1B2C304'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002914 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002915}
2916testcase TC_paging_tmsi_tch_hf() runs on test_CT {
2917 var BSSMAP_FIELD_CellIdentificationList cid_list;
2918 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01002919 f_pageing_helper('001010000000005'H, cid_list, c_BtsId_all, RSL_CHANNEED_TCH_ForH, 'A1B2C305'O);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002920 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002921}
2922
2923/* Paging by CGI */
2924testcase TC_paging_imsi_nochan_cgi() runs on test_CT {
2925 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2926 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(cid.mcc, cid.mnc, cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01002927 f_pageing_helper('001010000000006'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01002928 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002929}
2930
2931/* Paging by LAC+CI */
2932testcase TC_paging_imsi_nochan_lac_ci() runs on test_CT {
2933 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2934 cid_list := { cIl_LAC_CI := { ts_BSSMAP_CI_LAC_CI(cid.lac, cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01002935 f_pageing_helper('001010000000007'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01002936 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002937}
2938
2939/* Paging by CI */
2940testcase TC_paging_imsi_nochan_ci() runs on test_CT {
2941 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2942 cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(cid.ci) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01002943 f_pageing_helper('001010000000008'H, cid_list, { 0 });
Philipp Maier282ca4b2018-02-27 17:17:00 +01002944 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002945}
2946
2947/* Paging by LAI */
2948testcase TC_paging_imsi_nochan_lai() runs on test_CT {
2949 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2950 cid_list := { cIl_LAI := { ts_BSSMAP_CI_LAI(cid.mcc, cid.mnc, cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01002951 f_pageing_helper('001010000000009'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002952 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002953}
2954
2955/* Paging by LAC */
2956testcase TC_paging_imsi_nochan_lac() runs on test_CT {
2957 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2958 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(cid.lac) } };
Harald Welte5d1a2202017-12-13 19:51:29 +01002959 f_pageing_helper('001010000000010'H, cid_list, c_BtsId_LAC1);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002960 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002961}
2962
2963/* Paging by "all in BSS" */
2964testcase TC_paging_imsi_nochan_all() runs on test_CT {
2965 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2966 cid_list := { cIl_allInBSS := ''O };
Harald Welte5d1a2202017-12-13 19:51:29 +01002967 f_pageing_helper('001010000000011'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002968 f_shutdown_helper();
Harald Welte6f521d82017-12-11 19:52:02 +01002969}
2970
Stefan Sperling7b5e1782018-03-20 19:32:43 +01002971/* Paging by PLMN+LAC+RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01002972testcase TC_paging_imsi_nochan_plmn_lac_rnc() runs on test_CT {
2973 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2974 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 +01002975 f_pageing_helper('001010000000012'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002976 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01002977}
Harald Welte6f521d82017-12-11 19:52:02 +01002978
Stefan Sperling7b5e1782018-03-20 19:32:43 +01002979/* Paging by RNC; We do not implement this; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01002980testcase TC_paging_imsi_nochan_rnc() runs on test_CT {
2981 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2982 cid_list := { cIl_RNC := { int2oct(13, 2) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01002983 f_pageing_helper('001010000000013'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002984 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01002985}
2986
Stefan Sperling7b5e1782018-03-20 19:32:43 +01002987/* Paging by LAC+RNC; We do not implement; Verify nothing is paged */
Harald Welte751d3eb2018-01-31 15:51:06 +01002988testcase TC_paging_imsi_nochan_lac_rnc() runs on test_CT {
2989 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2990 cid_list := { cIl_LAC_RNC := { ts_BSSMAP_CI_LAC_RNC(cid.lac, 14) } };
Stefan Sperling7b5e1782018-03-20 19:32:43 +01002991 f_pageing_helper('001010000000014'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01002992 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01002993}
2994
Harald Welte6f521d82017-12-11 19:52:02 +01002995/* Paging on multiple cells (multiple entries in list): Verify all of them page */
Harald Welte751d3eb2018-01-31 15:51:06 +01002996testcase TC_paging_imsi_nochan_lacs() runs on test_CT {
2997 var template BSSMAP_FIELD_CellIdentificationList cid_list;
2998 cid_list := { cIl_LAC := { ts_BSSMAP_CI_LAC(1), ts_BSSMAP_CI_LAC(2) } };
2999 f_pageing_helper('001010000000015'H, cid_list, c_BtsId_all);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003000 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003001}
3002
3003/* Paging on empty list: Verify none of them page */
3004testcase TC_paging_imsi_nochan_lacs_empty() runs on test_CT {
3005 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3006 cid_list := { cIl_LAC := { } };
3007 f_pageing_helper('001010000000016'H, cid_list, c_BtsId_none);
Philipp Maier282ca4b2018-02-27 17:17:00 +01003008 f_shutdown_helper();
Harald Welte751d3eb2018-01-31 15:51:06 +01003009}
3010
Stefan Sperling049a86e2018-03-20 15:51:00 +01003011/* Paging by CGI with unknown MCC/MNC: Verify nothing is paged. */
3012testcase TC_paging_imsi_nochan_cgi_unknown_cid() runs on test_CT {
3013 var template BSSMAP_FIELD_CellIdentificationList cid_list;
3014 cid_list := { cIl_CGI := { ts_BSSMAP_CI_CGI(unknown_cid.mcc, unknown_cid.mnc, unknown_cid.lac, unknown_cid.ci) } };
3015 f_pageing_helper('001010000000006'H, cid_list, c_BtsId_none);
3016 f_shutdown_helper();
3017}
3018
Harald Welte6f521d82017-12-11 19:52:02 +01003019/* Verify paging retransmission interval + count */
3020/* Verify paging stops after channel establishment */
Harald Welte6f521d82017-12-11 19:52:02 +01003021/* Test behavior under paging overload */
Harald Welteae026692017-12-09 01:03:01 +01003022
Harald Weltee65d40e2017-12-13 00:09:06 +01003023/* Verify PCH load */
3024testcase TC_paging_imsi_load() runs on test_CT {
3025 var BSSMAP_FIELD_CellIdentificationList cid_list;
3026 timer T := 4.0;
Harald Welte2caa1062018-03-17 18:19:05 +01003027 timer T_retrans := 1.0;
Harald Weltee65d40e2017-12-13 00:09:06 +01003028 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003029 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Weltee65d40e2017-12-13 00:09:06 +01003030
3031 /* tell BSC there is no paging space anymore */
3032 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
Harald Welte3b57ab52018-03-17 18:01:10 +01003033 f_sleep(0.2);
3034 IPA_RSL[0].clear;
Harald Weltee65d40e2017-12-13 00:09:06 +01003035
3036 /* Wait for 4 seconds if any more PAGING CMD are received on RSL. Normally,
3037 * there would be 8 retransmissions during 4 seconds */
3038 T.start;
Harald Welte2caa1062018-03-17 18:19:05 +01003039 T_retrans.start;
Harald Weltee65d40e2017-12-13 00:09:06 +01003040 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003041 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Weltee65d40e2017-12-13 00:09:06 +01003042 setverdict(fail, "Received PAGING after LOAD_IND(0)");
Daniel Willmannafce8662018-07-06 23:11:32 +02003043 mtc.stop;
Harald Weltee65d40e2017-12-13 00:09:06 +01003044 }
Harald Welte2caa1062018-03-17 18:19:05 +01003045 [] T_retrans.timeout {
3046 /* re-trnsmit the zero-space LOAD IND to avoid BSC 'auto credit' */
3047 f_ipa_tx(0, ts_RSL_PAGING_LOAD_IND(0));
3048 T_retrans.start;
3049 repeat;
3050 }
Harald Weltee65d40e2017-12-13 00:09:06 +01003051 [] T.timeout {
3052 setverdict(pass);
3053 }
3054 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003055
3056 f_shutdown_helper();
Harald Weltee65d40e2017-12-13 00:09:06 +01003057}
3058
Harald Welte235ebf12017-12-15 14:18:16 +01003059/* Verify Paging Counter */
Harald Welte1ff69992017-12-14 12:31:17 +01003060testcase TC_paging_counter() runs on test_CT {
3061 var BSSMAP_FIELD_CellIdentificationList cid_list;
3062 timer T := 4.0;
3063 var integer i;
3064 var integer paging_attempted_bsc;
3065 var integer paging_attempted_bts[NUM_BTS];
3066 var integer paging_expired_bts[NUM_BTS];
3067 cid_list := valueof(ts_BSSMAP_CIL_noCell);
3068
3069 f_init();
3070
3071 /* read counters before paging */
3072 paging_attempted_bsc := f_ctrl_get_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted");
3073 for (i := 0; i < NUM_BTS; i := i+1) {
3074 paging_attempted_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted");
3075 paging_expired_bts[i] := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired");
3076 }
3077
3078 f_pageing_helper('001230000000001'H, cid_list, c_BtsId_all);
3079
3080 /* expect the attempted pages on BSC and each BTSs to have incremented by one */
3081 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bsc", 0, "paging:attempted", paging_attempted_bsc+1);
3082 for (i := 0; i < NUM_BTS; i := i+1) {
3083 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:attempted",
3084 paging_attempted_bts[i]+1);
3085 }
3086
3087 /* assume that 12s later the paging on all BTSs have expired and hence incremented by 1 */
3088 f_sleep(12.0);
3089 for (i := 0; i < NUM_BTS; i := i+1) {
3090 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", i, "paging:expired",
3091 paging_expired_bts[i]+1);
3092 }
Harald Welte1ff69992017-12-14 12:31:17 +01003093
Philipp Maier282ca4b2018-02-27 17:17:00 +01003094 f_shutdown_helper();
Harald Welte1ff69992017-12-14 12:31:17 +01003095}
3096
3097
Harald Welte10985002017-12-12 09:29:15 +01003098/* Verify paging stops after A-RESET */
3099testcase TC_paging_imsi_a_reset() runs on test_CT {
3100 var BSSMAP_FIELD_CellIdentificationList cid_list;
3101 timer T := 3.0;
3102 cid_list := valueof(ts_BSSMAP_CIL_noCell);
Harald Welte5d1a2202017-12-13 19:51:29 +01003103 f_pageing_helper('001010123456789'H, cid_list, c_BtsId_all);
Harald Welte10985002017-12-12 09:29:15 +01003104
3105 /* Perform a BSSMAP Reset and wait for ACK */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003106 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 +01003107 alt {
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003108 [] 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 +01003109 [] BSSAP.receive { repeat; }
3110 }
3111
Daniel Willmanncbef3982018-07-30 09:22:40 +02003112 /* Wait to avoid a possible race condition if a paging message is
3113 * received right before the reset ACK. */
3114 f_sleep(0.2);
3115
Harald Welte10985002017-12-12 09:29:15 +01003116 /* Clear the queue, it might still contain stuff like BCCH FILLING */
Philipp Maier1e6b4422018-02-23 14:02:13 +01003117 for (var integer i := 0; i < sizeof(IPA_RSL); i := i+1) {
3118 IPA_RSL[i].clear;
3119 }
Harald Welte10985002017-12-12 09:29:15 +01003120
3121 /* Wait for 3 seconds if any more PAGING CMD are received on RSL */
3122 T.start;
3123 alt {
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003124 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte10985002017-12-12 09:29:15 +01003125 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003126 mtc.stop;
Harald Welte10985002017-12-12 09:29:15 +01003127 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003128 [] IPA_RSL[1].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003129 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003130 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003131 }
Vadim Yanitskiy9b4e3562020-05-25 21:40:52 +07003132 [] IPA_RSL[2].receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD(?))) {
Harald Welte5d1a2202017-12-13 19:51:29 +01003133 setverdict(fail, "Received PAGING after A-RESET");
Daniel Willmannafce8662018-07-06 23:11:32 +02003134 mtc.stop;
Harald Welte5d1a2202017-12-13 19:51:29 +01003135 }
Harald Welte10985002017-12-12 09:29:15 +01003136 [] T.timeout {
3137 setverdict(pass);
3138 }
3139 }
Philipp Maier282ca4b2018-02-27 17:17:00 +01003140
3141 f_shutdown_helper();
Harald Welte10985002017-12-12 09:29:15 +01003142}
Harald Welteae026692017-12-09 01:03:01 +01003143
Philipp Maierf45824a2019-08-14 14:44:10 +02003144/* Verify how we handle unsolicited Paging Response. In case of an unsolicit
3145 * paging response we can not know which MSC is in charge, so we will blindly
3146 * pick the first configured MSC. This behavior is required in order to make
3147 * MT-CSFB calls working because in those cases the BSC can not know that the
3148 * MSC has already paged the subscriver via SGs. So any MT-CSFB call will look
3149 * like an unsolicited Paging Response to the MSC.
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003150 */
3151testcase TC_paging_resp_unsol() runs on test_CT {
3152
3153 f_init(1);
Philipp Maierf45824a2019-08-14 14:44:10 +02003154 timer T := 5.0;
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003155
3156 var BSSAP_N_CONNECT_ind rx_c_ind;
3157 var DchanTuple dt;
3158 var PDU_ML3_MS_NW l3 := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010008880018'H))));
Philipp Maierf45824a2019-08-14 14:44:10 +02003159 var octetstring rr_pag_resp := enc_PDU_ML3_MS_NW(l3);
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003160
3161 /* Send CHAN RQD and wait for allocation; acknowledge it */
3162 dt.rsl_chan_nr := f_chreq_act_ack();
3163
3164 /* Send unsolicited Paging response (no matching Paging CMD stored in BSC) */
3165 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), enc_PDU_ML3_MS_NW(l3)));
3166
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003167
Philipp Maierf45824a2019-08-14 14:44:10 +02003168 /* Expevct a CR with a matching Paging response on the A-Interface */
3169 T.start;
3170 alt {
3171 [] BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3(rr_pag_resp))) {
3172 setverdict(pass);
3173 }
3174 [] BSSAP.receive {
3175 setverdict(fail, "Received unexpected message on A-Interface!");
3176 }
3177 [] T.timeout {
3178 setverdict(fail, "Received nothing on A-Interface!");
3179 }
3180 }
3181
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003182 f_shutdown_helper();
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01003183}
3184
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003185/* Test RSL link drop causes counter increment */
3186testcase TC_rsl_drop_counter() runs on test_CT {
3187 var integer rsl_fail;
3188
Harald Welte89d42e82017-12-17 16:42:41 +01003189 f_init(1);
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003190
3191 rsl_fail := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail");
3192
3193 bts[0].rsl.vc_IPA.stop;
3194
3195 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "rsl_fail", rsl_fail+1);
3196
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003197 f_shutdown_helper();
Harald Welte4e9b9cc2017-12-14 18:31:02 +01003198}
3199
3200/* TODO: Test OML link drop causes counter increment */
3201
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003202/* The body of TC_rsl_unknown_unit_id() and TC_oml_unknown_unit_id() tests. */
3203function f_ipa_unknown_unit_id(integer mp_bsc_ipa_port) runs on test_CT return boolean {
3204 timer T := 10.0;
3205
3206 bts[0].rsl.id := "IPA-0-RSL";
3207 bts[0].rsl.vc_IPA := IPA_Emulation_CT.create(bts[0].rsl.id & "-IPA");
3208 bts[0].rsl.ccm_pars := c_IPA_default_ccm_pars;
3209 bts[0].rsl.ccm_pars.name := "Osmocom TTCN-3 BTS Simulator";
Oliver Smith92c2bdb2019-08-20 15:11:24 +02003210 bts[0].rsl.ccm_pars.unit_id := "99/0/0"; /* value which is unknown at BTS */
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003211
Pau Espin Pedrol9a5b8ff2021-01-04 19:01:31 +01003212 f_ipa_ctrl_start_client(mp_bsc_ip, mp_bsc_ctrl_port);
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003213
3214 f_init_mgcp("VirtMSC");
3215
3216 /* start RSL/OML connection (XXX re-uses RSL port/protocol definitions for OML) */
3217 map(bts[0].rsl.vc_IPA:IPA_PORT, system:IPA);
3218 connect(bts[0].rsl.vc_IPA:IPA_RSL_PORT, self:IPA_RSL[0]);
3219 bts[0].rsl.vc_IPA.start(IPA_Emulation.main_client(mp_bsc_ip, mp_bsc_ipa_port, "", 10000, bts[0].rsl.ccm_pars));
3220
3221 /* wait for IPA OML link to connect and then disconnect */
3222 T.start;
3223 alt {
Vadim Yanitskiya2afacc2020-05-18 21:16:19 +07003224 [] IPA_RSL[0].receive(tr_ASP_IPA_EV(ASP_IPA_EVENT_DOWN)) {
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003225 T.stop;
3226 return true;
3227 }
3228 [] IPA_RSL[0].receive { repeat }
3229 [] T.timeout {
Daniel Willmannafce8662018-07-06 23:11:32 +02003230 return false;
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003231 }
3232 }
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003233 return false;
3234}
3235
3236/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3237testcase TC_rsl_unknown_unit_id() runs on test_CT {
3238 if (f_ipa_unknown_unit_id(mp_bsc_rsl_port)) {
3239 setverdict(pass);
3240 } else {
3241 setverdict(fail, "Timeout RSL waiting for connection to close");
3242 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003243 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003244}
3245
3246
3247/* BSC should close an RSL connection from a BTS with unknown unit ID (OS#2714). */
3248testcase TC_oml_unknown_unit_id() runs on test_CT {
3249 if (f_ipa_unknown_unit_id(mp_bsc_oml_port)) {
3250 setverdict(pass);
3251 } else {
3252 setverdict(fail, "Timeout OML waiting for connection to close");
3253 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003254 f_shutdown_helper();
Stefan Sperling830dc9d2018-02-12 21:08:28 +01003255}
3256
3257
Harald Weltec1a2fff2017-12-17 11:06:19 +01003258/***********************************************************************
Harald Welte6811d102019-04-14 22:23:14 +02003259 * "New world" test cases using RSL_Emulation + RAN_Emulation
Harald Weltec1a2fff2017-12-17 11:06:19 +01003260 ***********************************************************************/
3261
Harald Welte6811d102019-04-14 22:23:14 +02003262import from RAN_Emulation all;
Harald Welte47cd0e32020-08-21 12:39:11 +02003263import from BSSAP_LE_Emulation all;
Harald Weltec1a2fff2017-12-17 11:06:19 +01003264import from RSL_Emulation all;
3265import from MSC_ConnectionHandler all;
3266
3267type function void_fn(charstring id) runs on MSC_ConnHdlr;
3268
Harald Welte336820c2018-05-31 20:34:52 +02003269/* helper function to create and connect a MSC_ConnHdlr component */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003270private function f_connect_handler(inout MSC_ConnHdlr vc_conn, integer bssap_idx := 0) runs on test_CT {
3271 connect(vc_conn:RAN, g_bssap[bssap_idx].vc_RAN:PROC);
Daniel Willmann191e0d92018-01-17 12:44:35 +01003272 connect(vc_conn:MGCP_PROC, vc_MGCP:MGCP_PROC);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003273 connect(vc_conn:RSL, bts[0].rsl.vc_RSL:CLIENT_PT);
Harald Weltef70df652018-01-29 22:00:23 +01003274 connect(vc_conn:RSL_PROC, bts[0].rsl.vc_RSL:RSL_PROC);
Philipp Maier88f4ae82018-03-01 14:00:58 +01003275 if (isvalue(bts[1])) {
Philipp Maier956a92f2018-02-16 10:58:07 +01003276 connect(vc_conn:RSL1, bts[1].rsl.vc_RSL:CLIENT_PT);
3277 connect(vc_conn:RSL1_PROC, bts[1].rsl.vc_RSL:RSL_PROC);
3278 }
Neels Hofmeyr91401012019-07-11 00:42:35 +02003279 if (isvalue(bts[2])) {
3280 connect(vc_conn:RSL2, bts[2].rsl.vc_RSL:CLIENT_PT);
3281 connect(vc_conn:RSL2_PROC, bts[2].rsl.vc_RSL:RSL_PROC);
3282 }
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003283 connect(vc_conn:BSSAP, g_bssap[bssap_idx].vc_RAN:CLIENT);
Neels Hofmeyrcfe44062020-10-15 02:28:08 +02003284 if (mp_enable_lcs_tests) {
3285 connect(vc_conn:BSSAP_LE, g_bssap_le.vc_BSSAP_LE:CLIENT);
3286 connect(vc_conn:BSSAP_LE_PROC, g_bssap_le.vc_BSSAP_LE:PROC);
3287 }
Daniel Willmann191e0d92018-01-17 12:44:35 +01003288 connect(vc_conn:MGCP, vc_MGCP:MGCP_CLIENT);
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02003289 connect(vc_conn:MGCP_MULTI, vc_MGCP:MGCP_CLIENT_MULTI);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003290 connect(vc_conn:STATSD_PROC, vc_STATSD:STATSD_PROC);
Harald Welte336820c2018-05-31 20:34:52 +02003291}
3292
Neels Hofmeyrda436782021-07-20 22:09:06 +02003293function f_start_handler_create(template (omit) TestHdlrParams pars := omit)
Harald Welte336820c2018-05-31 20:34:52 +02003294runs on test_CT return MSC_ConnHdlr {
3295 var charstring id := testcasename();
3296 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003297 var integer bssap_idx := 0;
3298 if (isvalue(pars)) {
3299 bssap_idx := valueof(pars).mscpool.bssap_idx;
3300 }
Harald Welte336820c2018-05-31 20:34:52 +02003301 vc_conn := MSC_ConnHdlr.create(id);
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003302 f_connect_handler(vc_conn, bssap_idx);
Neels Hofmeyrda436782021-07-20 22:09:06 +02003303 return vc_conn;
3304}
3305
3306function f_start_handler_run(MSC_ConnHdlr vc_conn, void_fn fn, template (omit) TestHdlrParams pars := omit)
3307runs on test_CT return MSC_ConnHdlr {
3308 var charstring id := testcasename();
Neels Hofmeyr1708d1b2020-10-10 16:56:48 +02003309 /* Emit a marker to appear in the SUT's own logging output */
Neels Hofmeyrda436782021-07-20 22:09:06 +02003310 f_logp(BSCVTY, id & "() start");
Harald Weltea0630032018-03-20 21:09:55 +01003311 vc_conn.start(f_handler_init(fn, id, pars));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003312 return vc_conn;
3313}
3314
Neels Hofmeyrda436782021-07-20 22:09:06 +02003315function f_start_handler(void_fn fn, template (omit) TestHdlrParams pars := omit)
3316runs on test_CT return MSC_ConnHdlr {
3317 return f_start_handler_run(f_start_handler_create(pars), fn, pars);
3318}
3319
Harald Weltea0630032018-03-20 21:09:55 +01003320/* first function inside ConnHdlr component; sets g_pars + starts function */
3321private function f_handler_init(void_fn fn, charstring id, template (omit) TestHdlrParams pars := omit)
3322runs on MSC_ConnHdlr {
3323 if (isvalue(pars)) {
3324 g_pars := valueof(pars);
3325 }
3326 fn.apply(id);
3327}
3328
Oliver Smith26a3db72021-07-09 13:51:29 +02003329private function f_vty_encryption_a5(charstring options) runs on test_CT {
3330 f_vty_transceive(BSCVTY, "configure terminal");
3331 f_vty_transceive(BSCVTY, "network");
3332 f_vty_transceive(BSCVTY, "encryption a5 " & options);
3333 f_vty_transceive(BSCVTY, "exit");
3334 f_vty_transceive(BSCVTY, "exit");
3335}
3336
3337private function f_vty_encryption_a5_reset() runs on test_CT {
3338 /* keep in sync with docker-playground.git ttcn3-bsc-test/osmo-bsc.cfg */
3339 f_vty_encryption_a5("0 1 3");
3340}
3341
Harald Welte3c86ea02018-05-10 22:28:05 +02003342/* Establish signalling channel (non-assignment case) followed by cipher mode */
3343private function f_tc_ciph_mode_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003344 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3345 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte3c86ea02018-05-10 22:28:05 +02003346 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Philipp Maier23000732018-05-18 11:25:37 +02003347 ass_cmd.pdu.bssmap.assignmentRequest.circuitIdentityCode := omit;
3348 ass_cmd.pdu.bssmap.assignmentRequest.aoIPTransportLayer := omit;
3349 exp_compl.pdu.bssmap.assignmentComplete.circuitIdentityCode := omit;
3350 exp_compl.pdu.bssmap.assignmentComplete.aoIPTransportLayer := omit;
Harald Welte3c86ea02018-05-10 22:28:05 +02003351
Philipp Maier23000732018-05-18 11:25:37 +02003352 f_establish_fully(ass_cmd, exp_compl);
Harald Welte3c86ea02018-05-10 22:28:05 +02003353}
3354testcase TC_ciph_mode_a5_0() runs on test_CT {
3355 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003356 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003357 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
3358
3359 f_init(1, true);
3360 f_sleep(1.0);
3361 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3362 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003363 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003364}
3365testcase TC_ciph_mode_a5_1() runs on test_CT {
3366 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003367 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003368 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
3369
3370 f_init(1, true);
3371 f_sleep(1.0);
3372 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3373 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003374 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003375}
Oliver Smith50b98122021-07-09 15:00:28 +02003376/* OS#4975: verify that A5/2 is preferred over A5/0 */
3377testcase TC_ciph_mode_a5_2_0() runs on test_CT {
3378 var MSC_ConnHdlr vc_conn;
3379 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3380
3381 pars.encr := valueof(t_EncrParams('05'O, f_rnd_octstring(8))); /* A5/0 and A5/2 (0x01|0x04)*/
3382 pars.encr_exp_enc_alg := '04'O; /* A5/2 */
3383
3384 f_init(1, true);
3385 f_vty_encryption_a5("0 1 2 3");
3386 f_sleep(1.0);
3387 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3388 vc_conn.done;
3389 f_vty_encryption_a5_reset();
3390 f_shutdown_helper();
3391}
Oliver Smith1dff88d2021-07-09 08:45:51 +02003392/* OS#4975: verify that A5/1 is preferred over A5/2 */
3393testcase TC_ciph_mode_a5_2_1() runs on test_CT {
3394 var MSC_ConnHdlr vc_conn;
3395 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3396
3397 pars.encr := valueof(t_EncrParams('06'O, f_rnd_octstring(8))); /* A5/1 and A5/2 (0x02|0x04)*/
3398 pars.encr_exp_enc_alg := '02'O; /* A5/1 */
3399
3400 f_init(1, true);
3401 f_vty_encryption_a5("1 2");
3402 f_sleep(1.0);
3403 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3404 vc_conn.done;
3405 f_vty_encryption_a5_reset();
3406 f_shutdown_helper();
3407}
Harald Welte3c86ea02018-05-10 22:28:05 +02003408testcase TC_ciph_mode_a5_3() runs on test_CT {
3409 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003410 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte3c86ea02018-05-10 22:28:05 +02003411 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
3412
3413 f_init(1, true);
3414 f_sleep(1.0);
3415 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3416 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003417 f_shutdown_helper();
Harald Welte3c86ea02018-05-10 22:28:05 +02003418}
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003419/* Establish a Signalling channel with A5/4 encryption. */
3420testcase TC_ciph_mode_a5_4() runs on test_CT {
3421 var MSC_ConnHdlr vc_conn;
3422 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3423 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Harald Welte3c86ea02018-05-10 22:28:05 +02003424
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003425 f_init(1, true);
Oliver Smith26a3db72021-07-09 13:51:29 +02003426 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003427 f_sleep(1.0);
3428 vc_conn := f_start_handler(refers(f_tc_ciph_mode_a5), pars);
3429 vc_conn.done;
Oliver Smith26a3db72021-07-09 13:51:29 +02003430 f_vty_encryption_a5_reset();
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02003431 f_shutdown_helper();
3432}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003433/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
3434private function f_tc_assignment_aoip_tla_v6(charstring id) runs on MSC_ConnHdlr {
3435 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3436 var PDU_BSSAP ass_cmd := f_gen_ass_req(aoip_tla := "::3");
3437 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3438 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3439
3440 f_establish_fully(ass_cmd, exp_compl);
3441}
3442testcase TC_assignment_aoip_tla_v6() runs on test_CT {
3443 var MSC_ConnHdlr vc_conn;
3444 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3445
3446 f_init(1, true);
3447 f_sleep(1.0);
3448 vc_conn := f_start_handler(refers(f_tc_assignment_aoip_tla_v6), pars);
3449 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003450 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02003451}
3452
Harald Welte3c86ea02018-05-10 22:28:05 +02003453
3454/* establish initial channel, enable ciphering followed by assignment to ciphered channel */
Harald Welte651fcdc2018-05-10 20:23:16 +02003455private function f_tc_assignment_fr_a5(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02003456 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
3457 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003458
Harald Welte552620d2017-12-16 23:21:36 +01003459 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3460 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte73cd2712017-12-17 00:44:52 +01003461
Harald Weltea0630032018-03-20 21:09:55 +01003462 f_establish_fully(ass_cmd, exp_compl);
Harald Welte552620d2017-12-16 23:21:36 +01003463}
Harald Welte552620d2017-12-16 23:21:36 +01003464testcase TC_assignment_fr_a5_0() runs on test_CT {
3465 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003466 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003467 pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
Harald Welte552620d2017-12-16 23:21:36 +01003468
Harald Welte89d42e82017-12-17 16:42:41 +01003469 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003470 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003471 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003472 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003473 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003474}
Harald Welte552620d2017-12-16 23:21:36 +01003475testcase TC_assignment_fr_a5_1() runs on test_CT {
Harald Weltec1a2fff2017-12-17 11:06:19 +01003476 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003477 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003478 pars.encr := valueof(t_EncrParams('02'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003479
Harald Welte89d42e82017-12-17 16:42:41 +01003480 f_init(1, true);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003481 f_sleep(1.0);
Harald Welte651fcdc2018-05-10 20:23:16 +02003482 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3483 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003484 f_shutdown_helper();
Harald Welte651fcdc2018-05-10 20:23:16 +02003485}
3486testcase TC_assignment_fr_a5_3() runs on test_CT {
3487 var MSC_ConnHdlr vc_conn;
Philipp Maier48604732018-10-09 15:00:37 +02003488 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte651fcdc2018-05-10 20:23:16 +02003489 pars.encr := valueof(t_EncrParams('08'O, f_rnd_octstring(8)));
Harald Weltec1a2fff2017-12-17 11:06:19 +01003490
Harald Welte651fcdc2018-05-10 20:23:16 +02003491 f_init(1, true);
3492 f_sleep(1.0);
3493 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
Harald Weltec1a2fff2017-12-17 11:06:19 +01003494 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003495 f_shutdown_helper();
Harald Weltec1a2fff2017-12-17 11:06:19 +01003496}
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003497/* Establish a Signalling channel and re-assign to TCH/F with A5/4 encryption. */
3498testcase TC_assignment_fr_a5_4() runs on test_CT {
3499 var MSC_ConnHdlr vc_conn;
3500 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3501 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8), f_rnd_octstring(16)));
3502
3503 f_init(1, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02003504 f_vty_encryption_a5("0 1 3 4");
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003505 f_sleep(1.0);
3506 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
3507 vc_conn.done;
Oliver Smith7eabd312021-07-12 14:18:56 +02003508 f_vty_encryption_a5_reset();
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02003509 f_shutdown_helper();
3510}
Harald Weltec1a2fff2017-12-17 11:06:19 +01003511
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +02003512/* Allow only A5/4, but omit the Kc128 IE from MSC's msg. Expect Cipher Mode Reject. */
3513testcase TC_assignment_fr_a5_4_fail() runs on test_CT {
3514 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3515 var MSC_ConnHdlr vc_conn;
3516
3517 f_init(1, true);
3518 f_sleep(1.0);
3519
3520 pars.encr := valueof(t_EncrParams('10'O, f_rnd_octstring(8))); // A5/4 support, but Kc128 missing!
3521 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
3522 vc_conn.done;
3523 f_shutdown_helper();
3524}
3525
Harald Welte552620d2017-12-16 23:21:36 +01003526/* Expect ASSIGNMENT FAIL if mandatory IE is missing */
3527private function f_tc_assignment_fr_a5_1_codec_missing(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003528 g_pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003529 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
Harald Welteed848512018-05-24 22:27:58 +02003530 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003531
3532 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02003533 /* Omit: ass_cmd.pdu.bssmap.assignmentRequest.codecList */
3534
Harald Weltea0630032018-03-20 21:09:55 +01003535 f_establish_fully(ass_cmd, exp_fail);
Harald Welte552620d2017-12-16 23:21:36 +01003536}
Harald Welte552620d2017-12-16 23:21:36 +01003537testcase TC_assignment_fr_a5_1_codec_missing() runs on test_CT {
3538 var MSC_ConnHdlr vc_conn;
3539
Harald Welte89d42e82017-12-17 16:42:41 +01003540 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003541 f_sleep(1.0);
3542
Harald Welte8863fa12018-05-10 20:15:27 +02003543 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5_1_codec_missing));
Harald Welte552620d2017-12-16 23:21:36 +01003544 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003545 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003546}
3547
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003548private function f_TC_assignment_a5_not_sup(charstring id) runs on MSC_ConnHdlr {
3549 var template PDU_BSSAP exp_ass_cpl := f_gen_exp_compl();
3550 var PDU_BSSAP exp_ass_req := f_gen_ass_req();
Harald Welte552620d2017-12-16 23:21:36 +01003551
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003552 exp_ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
3553 exp_ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3554
3555 /* this is like the beginning of f_establish_fully(), but only up to ciphering reject */
3556
3557 var BSSMAP_FIELD_CodecType codecType;
3558 timer T := 10.0;
3559
3560 codecType := exp_ass_req.pdu.bssmap.assignmentRequest.codecList.codecElements[0].codecType;
3561 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, codecType);
3562
3563 f_create_chan_and_exp();
3564 /* we should now have a COMPL_L3 at the MSC */
3565
3566 var template PDU_BSSAP exp_l3_compl;
3567 exp_l3_compl := tr_BSSMAP_ComplL3()
3568 if (g_pars.aoip == false) {
3569 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
3570 } else {
3571 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
3572 }
3573 T.start;
3574 alt {
3575 [] BSSAP.receive(exp_l3_compl);
3576 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
3577 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
3578 }
3579 [] T.timeout {
3580 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
3581 }
3582 }
3583
3584 /* Start ciphering, expect Cipher Mode Reject */
Neels Hofmeyr6c388f22021-06-11 02:36:56 +02003585 f_cipher_mode(g_pars.encr, exp_fail := true);
Harald Welte552620d2017-12-16 23:21:36 +01003586}
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003587testcase TC_assignment_fr_a5_not_sup() runs on test_CT {
3588 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte552620d2017-12-16 23:21:36 +01003589 var MSC_ConnHdlr vc_conn;
3590
Harald Welte89d42e82017-12-17 16:42:41 +01003591 f_init(1, true);
Harald Welte552620d2017-12-16 23:21:36 +01003592 f_sleep(1.0);
3593
Neels Hofmeyr0588cad2021-06-11 01:38:18 +02003594 pars.encr := valueof(t_EncrParams('20'O, f_rnd_octstring(8), f_rnd_octstring(16)));
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02003595 vc_conn := f_start_handler(refers(f_TC_assignment_a5_not_sup), pars);
Harald Welte552620d2017-12-16 23:21:36 +01003596 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003597 f_shutdown_helper();
Harald Welte552620d2017-12-16 23:21:36 +01003598}
3599
3600
Harald Welte4532e0a2017-12-23 02:05:44 +01003601private function f_tc_assignment_sign(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02003602 g_pars := f_gen_test_hdlr_pars();
Harald Welte4532e0a2017-12-23 02:05:44 +01003603 var template PDU_BSSAP exp_compl := tr_BSSMAP_AssignmentComplete(omit, omit);
Philipp Maier48604732018-10-09 15:00:37 +02003604 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte4532e0a2017-12-23 02:05:44 +01003605 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelTypeSIGNAL);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003606
3607 f_statsd_reset();
Harald Weltea0630032018-03-20 21:09:55 +01003608 f_establish_fully(ass_cmd, exp_compl);
Daniel Willmannebdecc02020-08-12 15:30:17 +02003609
3610 var StatsDExpects expect := {
Daniel Willmannc5398f72020-09-21 10:41:35 +02003611 { name := "TTCN3.bts.0.chreq.total", mtype := "c", min := 1, max := 1},
3612 { name := "TTCN3.bts.0.chreq.successful", mtype := "c", min := 1, max := 1},
Daniel Willmannebdecc02020-08-12 15:30:17 +02003613 { name := "TTCN3.bsc.0.assignment.attempted", mtype := "c", min := 1, max := 1},
3614 { name := "TTCN3.bsc.0.assignment.completed", mtype := "c", min := 1, max := 1}
3615 };
3616 f_statsd_expect(expect);
Harald Welte4532e0a2017-12-23 02:05:44 +01003617}
3618
3619testcase TC_assignment_sign() runs on test_CT {
3620 var MSC_ConnHdlr vc_conn;
3621
3622 f_init(1, true);
3623 f_sleep(1.0);
3624
Harald Welte8863fa12018-05-10 20:15:27 +02003625 vc_conn := f_start_handler(refers(f_tc_assignment_sign));
Harald Welte4532e0a2017-12-23 02:05:44 +01003626 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003627 f_shutdown_helper();
Harald Welte4532e0a2017-12-23 02:05:44 +01003628}
3629
Harald Welte60aa5762018-03-21 19:33:13 +01003630/***********************************************************************
3631 * Codec (list) testing
3632 ***********************************************************************/
3633
3634/* check if the given rsl_mode is compatible with the a_elem */
3635private function f_match_codec(BSSMAP_FIELD_CodecElement a_elem, RSL_IE_ChannelMode rsl_mode)
3636return boolean {
3637 select (a_elem.codecType) {
3638 case (GSM_FR) {
3639 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM1))) {
3640 return true;
3641 }
3642 }
3643 case (GSM_HR) {
3644 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM1))) {
3645 return true;
3646 }
3647 }
3648 case (GSM_EFR) {
3649 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM2))) {
3650 return true;
3651 }
3652 }
3653 case (FR_AMR) {
3654 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_F, RSL_CMOD_SP_GSM3))) {
3655 return true;
3656 }
3657 }
3658 case (HR_AMR) {
3659 if (match(rsl_mode, tr_RSL_ChanMode(RSL_CHRT_TCH_H, RSL_CMOD_SP_GSM3))) {
3660 return true;
3661 }
3662 }
3663 case else { }
3664 }
3665 return false;
3666}
3667
3668/* check if the given rsl_mode is compatible with the a_list */
3669private function f_match_codecs(BSSMAP_IE_SpeechCodecList a_list, RSL_IE_ChannelMode rsl_mode)
3670return boolean {
3671 for (var integer i := 0; i < sizeof(a_list); i := i+1) {
3672 if (f_match_codec(a_list.codecElements[i], rsl_mode)) {
3673 return true;
3674 }
3675 }
3676 return false;
3677}
3678
3679/* determine BSSMAP_IE_ChannelType from *first* element of BSSMAP_FIELD_CodecElement */
Philipp Maier61f6b572018-07-06 14:03:38 +02003680function f_BSSMAP_chtype_from_codec(BSSMAP_FIELD_CodecElement a_elem)
Harald Welte60aa5762018-03-21 19:33:13 +01003681return BSSMAP_IE_ChannelType {
3682 /* FIXME: actually look at all elements of BSSMAP_IE_SpeechCodecList */
3683 var BSSMAP_IE_ChannelType ret := valueof(ts_BSSMAP_IE_ChannelType);
3684 select (a_elem.codecType) {
3685 case (GSM_FR) {
3686 ret.channelRateAndType := ChRate_TCHF;
3687 ret.speechId_DataIndicator := Spdi_TCHF_FR;
3688 }
3689 case (GSM_HR) {
3690 ret.channelRateAndType := ChRate_TCHH;
3691 ret.speechId_DataIndicator := Spdi_TCHH_HR;
3692 }
3693 case (GSM_EFR) {
3694 ret.channelRateAndType := ChRate_TCHF;
3695 ret.speechId_DataIndicator := Spdi_TCHF_EFR;
3696 }
3697 case (FR_AMR) {
3698 ret.channelRateAndType := ChRate_TCHF;
3699 ret.speechId_DataIndicator := Spdi_TCHF_AMR;
3700 }
3701 case (HR_AMR) {
3702 ret.channelRateAndType := ChRate_TCHH;
3703 ret.speechId_DataIndicator := Spdi_TCHH_AMR;
3704 }
3705 case else {
3706 setverdict(fail, "Unsupported codec ", a_elem);
Daniel Willmannafce8662018-07-06 23:11:32 +02003707 mtc.stop;
Harald Welte60aa5762018-03-21 19:33:13 +01003708 }
3709 }
3710 return ret;
3711}
3712
Harald Weltea63b9102018-03-22 20:36:16 +01003713private function f_rsl_chmod_tmpl_from_codec(BSSMAP_FIELD_CodecElement a_elem)
3714return template RSL_IE_Body {
3715 var template RSL_IE_Body mode_ie := {
3716 chan_mode := {
3717 len := ?,
3718 reserved := ?,
3719 dtx_d := ?,
3720 dtx_u := ?,
3721 spd_ind := RSL_SPDI_SPEECH,
3722 ch_rate_type := -,
3723 coding_alg_rate := -
3724 }
3725 }
3726
3727 select (a_elem.codecType) {
3728 case (GSM_FR) {
3729 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3730 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3731 }
3732 case (GSM_HR) {
3733 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3734 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM1;
3735 }
3736 case (GSM_EFR) {
3737 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3738 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM2;
3739 }
3740 case (FR_AMR) {
3741 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_F;
3742 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3743 }
3744 case (HR_AMR) {
3745 mode_ie.chan_mode.ch_rate_type := RSL_CHRT_TCH_H;
3746 mode_ie.chan_mode.coding_alg_rate := RSL_CMOD_SP_GSM3;
3747 }
3748 }
3749 return mode_ie;
3750}
3751
Harald Welte60aa5762018-03-21 19:33:13 +01003752type record CodecListTest {
3753 BSSMAP_IE_SpeechCodecList codec_list,
3754 charstring id
3755}
3756type record of CodecListTest CodecListTests
3757
3758private function f_TC_assignment_codec(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02003759 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
3760 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
Harald Welte60aa5762018-03-21 19:33:13 +01003761
3762 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003763 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte79f3f542018-05-25 20:02:37 +02003764 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
3765 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
3766 g_pars.ass_codec_list.codecElements[0];
Philipp Maierd0e64b02019-03-13 14:15:23 +01003767 if (isvalue(g_pars.expect_mr_s0_s7)) {
3768 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
3769 g_pars.expect_mr_s0_s7;
3770 }
Harald Welte79f3f542018-05-25 20:02:37 +02003771 }
Harald Welte60aa5762018-03-21 19:33:13 +01003772 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
3773 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
Harald Welte60aa5762018-03-21 19:33:13 +01003774 log("expecting ASS COMPL like this: ", exp_compl);
3775
3776 f_establish_fully(ass_cmd, exp_compl);
Harald Weltea63b9102018-03-22 20:36:16 +01003777
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003778 if (not g_pars.expect_channel_mode_modify) {
3779 /* Verify that the RSL-side activation actually matches our expectations */
3780 var RSL_Message rsl := f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr);
Harald Weltea63b9102018-03-22 20:36:16 +01003781
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003782 var RSL_IE_Body mode_ie;
3783 if (f_rsl_find_ie(rsl, RSL_IE_CHAN_MODE, mode_ie) == false) {
3784 setverdict(fail, "Couldn't find CHAN_MODE IE");
Daniel Willmannafce8662018-07-06 23:11:32 +02003785 mtc.stop;
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003786 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003787 var template RSL_IE_Body t_mode_ie := f_rsl_chmod_tmpl_from_codec(g_pars.ass_codec_list.codecElements[0]);
3788 if (not match(mode_ie, t_mode_ie)) {
3789 log("mode_ie ", mode_ie, " != t_mode_ie ", t_mode_ie);
3790 setverdict(fail, "RSL Channel Mode IE doesn't match expectation");
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003791 }
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003792
3793 var RSL_IE_Body mr_conf;
3794 if (g_pars.expect_mr_conf_ie != omit) {
3795 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == false) {
3796 setverdict(fail, "Missing MR CONFIG IE in RSL Chan Activ");
3797 mtc.stop;
3798 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003799 log("found RSL MR CONFIG IE: ", mr_conf);
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003800
3801 if (not match(mr_conf, g_pars.expect_mr_conf_ie)) {
3802 setverdict(fail, "RSL MR CONFIG IE does not match expectation. Expected: ",
3803 g_pars.expect_mr_conf_ie);
3804 }
3805 } else {
3806 if (f_rsl_find_ie(rsl, RSL_IE_MR_CONFIG, mr_conf) == true) {
3807 log("found RSL MR CONFIG IE: ", mr_conf);
3808 setverdict(fail, "Found MR CONFIG IE in RSL Chan Activ, expecting omit");
3809 mtc.stop;
3810 }
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003811 }
3812 }
Harald Welte60aa5762018-03-21 19:33:13 +01003813}
3814
Philipp Maierd0e64b02019-03-13 14:15:23 +01003815private function f_TC_assignment_codec_fail(charstring id) runs on MSC_ConnHdlr {
3816
3817 var PDU_BSSAP ass_cmd := f_gen_ass_req();
3818 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
3819
3820 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
Neels Hofmeyrf246a922020-05-13 02:27:10 +02003821 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maierd0e64b02019-03-13 14:15:23 +01003822 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
3823 }
3824 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
3825 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
3826 log("expecting ASS FAIL like this: ", exp_fail);
3827
3828 f_establish_fully(ass_cmd, exp_fail);
3829}
3830
Harald Welte60aa5762018-03-21 19:33:13 +01003831testcase TC_assignment_codec_fr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02003832 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01003833 var MSC_ConnHdlr vc_conn;
3834
3835 f_init(1, true);
3836 f_sleep(1.0);
3837
3838 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02003839 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01003840 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003841 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01003842}
3843
3844testcase TC_assignment_codec_hr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02003845 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01003846 var MSC_ConnHdlr vc_conn;
3847
3848 f_init(1, true);
3849 f_sleep(1.0);
3850
3851 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
Harald Welte8863fa12018-05-10 20:15:27 +02003852 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01003853 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003854 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01003855}
3856
3857testcase TC_assignment_codec_efr() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02003858 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01003859 var MSC_ConnHdlr vc_conn;
3860
3861 f_init(1, true);
3862 f_sleep(1.0);
3863
3864 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecEFR}));
Harald Welte8863fa12018-05-10 20:15:27 +02003865 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01003866 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02003867 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01003868}
3869
Philipp Maierd0e64b02019-03-13 14:15:23 +01003870/* Allow 5,90k only (current default config) */
3871private function f_allow_amr_rate_5_90k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00003872 f_vty_cfg_msc(BSCVTY, 0, {
3873 "amr-config 12_2k forbidden",
3874 "amr-config 10_2k forbidden",
3875 "amr-config 7_95k forbidden",
3876 "amr-config 7_40k forbidden",
3877 "amr-config 6_70k forbidden",
3878 "amr-config 5_90k allowed",
3879 "amr-config 5_15k forbidden",
3880 "amr-config 4_75k forbidden"
3881 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01003882}
3883
3884/* Allow 4,75k, 5,90k, 4,70k and 12,2k, which are the most common rates
3885 * ("Config-NB-Code = 1") */
3886private function f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k() runs on test_CT {
Neels Hofmeyr2a5670b2020-11-25 23:39:57 +00003887 f_vty_cfg_msc(BSCVTY, 0, {
3888 "amr-config 12_2k allowed",
3889 "amr-config 10_2k forbidden",
3890 "amr-config 7_95k forbidden",
3891 "amr-config 7_40k allowed",
3892 "amr-config 6_70k forbidden",
3893 "amr-config 5_90k allowed",
3894 "amr-config 5_15k forbidden",
3895 "amr-config 4_75k allowed"
3896 });
Philipp Maierd0e64b02019-03-13 14:15:23 +01003897}
3898
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00003899private function f_vty_amr_start_mode_set(boolean fr, charstring startmode) runs on test_CT {
3900 var charstring tch;
3901 if (fr) {
3902 tch := "tch-f";
3903 } else {
3904 tch := "tch-h";
3905 }
3906 f_vty_cfg_bts(BSCVTY, 0, { "amr " & tch & " start-mode " & startmode });
3907}
3908
3909/* Set the AMR start-mode for this TCH back to the default configuration. */
3910private function f_vty_amr_start_mode_restore(boolean fr) runs on test_CT {
3911 f_vty_amr_start_mode_set(fr, "auto");
3912}
3913
Harald Welte60aa5762018-03-21 19:33:13 +01003914testcase TC_assignment_codec_amr_f() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02003915 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01003916 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02003917
3918 /* Note: This setups the codec configuration. The parameter payload in
3919 * mr_conf must be consistant with the parameter codecElements in pars
3920 * and also must match the amr-config in osmo-bsc.cfg! */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003921 var RSL_IE_Body mr_conf := {
3922 other := {
3923 len := 2,
3924 payload := '2804'O
3925 }
3926 };
Harald Welte60aa5762018-03-21 19:33:13 +01003927
Philipp Maier7695a0d2018-09-27 17:52:14 +02003928 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
Philipp Maier806f8f12019-03-12 12:13:41 +01003929 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02003930 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
3931 pars.expect_mr_conf_ie := mr_conf;
3932
Harald Welte60aa5762018-03-21 19:33:13 +01003933 f_init(1, true);
3934 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00003935 f_vty_amr_start_mode_set(true, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01003936
Harald Welte8863fa12018-05-10 20:15:27 +02003937 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01003938 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00003939
3940 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01003941 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01003942}
3943
3944testcase TC_assignment_codec_amr_h() runs on test_CT {
Philipp Maier48604732018-10-09 15:00:37 +02003945 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte60aa5762018-03-21 19:33:13 +01003946 var MSC_ConnHdlr vc_conn;
Philipp Maier7695a0d2018-09-27 17:52:14 +02003947
3948 /* See note above */
Neels Hofmeyrbcf62bc2018-07-04 00:24:33 +02003949 var RSL_IE_Body mr_conf := {
3950 other := {
3951 len := 2,
3952 payload := '2804'O
3953 }
3954 };
Harald Welte60aa5762018-03-21 19:33:13 +01003955
Philipp Maier7695a0d2018-09-27 17:52:14 +02003956 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
Philipp Maier806f8f12019-03-12 12:13:41 +01003957 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
Philipp Maier7695a0d2018-09-27 17:52:14 +02003958 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
3959 pars.expect_mr_conf_ie := mr_conf;
3960
Harald Welte60aa5762018-03-21 19:33:13 +01003961 f_init(1, true);
3962 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00003963 f_vty_amr_start_mode_set(false, "1");
Harald Welte60aa5762018-03-21 19:33:13 +01003964
Harald Welte8863fa12018-05-10 20:15:27 +02003965 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
Harald Welte60aa5762018-03-21 19:33:13 +01003966 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00003967
3968 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01003969 f_shutdown_helper();
Harald Welte60aa5762018-03-21 19:33:13 +01003970}
3971
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02003972/* Establish signalling on a TCH/F lchan, and then switch to speech mode without a new Assignment. */
3973testcase TC_assignment_codec_fr_by_mode_modify() runs on test_CT {
3974 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3975 var MSC_ConnHdlr vc_conn;
3976
3977 f_init(1, true);
3978 f_sleep(1.0);
3979
3980 /* By disabling all SDCCH, the MS should be given a TCH/F for signalling. Then activating an FR codec should
3981 * merely do a Channel Mode Modify, and not assign to a new lchan. f_establish_fully() already accounts for
3982 * expecting a Channel Mode Modify if the channel type is compatible. */
3983 f_disable_all_sdcch();
3984 f_disable_all_tch_h();
3985
3986 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
3987 pars.expect_channel_mode_modify := true;
3988 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
3989 vc_conn.done;
3990
3991 f_enable_all_sdcch();
3992 f_enable_all_tch();
3993 f_shutdown_helper();
3994}
3995
Neels Hofmeyr454d7922020-11-26 02:24:57 +00003996/* 'amr start-mode auto' should not keep the (unused) 'smod' bits from previous configuration */
3997testcase TC_assignment_codec_amr_startmode_cruft() runs on test_CT {
3998 var TestHdlrParams pars := f_gen_test_hdlr_pars();
3999 var MSC_ConnHdlr vc_conn;
4000
4001 var RSL_IE_Body mr_conf := {
4002 other := {
4003 len := 2,
4004 payload := '2004'O /* <- expect ICMI=0, smod=00 */
4005 }
4006 };
4007
4008 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4009 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4010 pars.ass_codec_list.codecElements[0].s8_15 := '01010111'B;
4011 pars.expect_mr_conf_ie := mr_conf;
4012
4013 f_init(1, true);
4014 f_sleep(1.0);
4015
4016 /* First set nonzero start mode bits */
4017 f_vty_amr_start_mode_set(true, "4");
4018 /* Now set to auto, and expect the startmode bits to be zero in the message, i.e. ensure that osmo-bsc does not
4019 * let the startmode bits stick around and has deterministic MultiRate config for 'start-mode auto'; that is
4020 * ensured by above '2004'O, where 'x0xx'O indicates ICMI = 0, spare = 0, smod = 00. */
4021 f_vty_amr_start_mode_set(true, "auto");
4022
4023 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4024 vc_conn.done;
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004025
4026 /* Clear the startmode bits to not affect subsequent tests, in case the bits should indeed stick around. */
4027 f_vty_amr_start_mode_set(true, "1");
4028 f_vty_amr_start_mode_restore(true);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004029 f_shutdown_helper();
Neels Hofmeyr454d7922020-11-26 02:24:57 +00004030}
4031
Neels Hofmeyr21863562020-11-26 00:34:33 +00004032function f_TC_assignment_codec_amr(boolean fr, octetstring mrconf, bitstring s8_s0, bitstring exp_s8_s0,
4033 charstring start_mode := "1")
Philipp Maierd0e64b02019-03-13 14:15:23 +01004034runs on test_CT {
4035
4036 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4037 var MSC_ConnHdlr vc_conn;
4038
4039 /* See note above */
4040 var RSL_IE_Body mr_conf := {
4041 other := {
4042 len := lengthof(mrconf),
4043 payload := mrconf
4044 }
4045 };
4046
4047 if (fr) {
4048 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4049 } else {
4050 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4051 }
4052 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4053 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4054 pars.expect_mr_conf_ie := mr_conf;
4055 pars.expect_mr_s0_s7 := exp_s8_s0;
4056
4057 f_init(1, true);
4058 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004059 f_vty_amr_start_mode_set(fr, start_mode);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004060 f_sleep(1.0);
4061
4062 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4063 vc_conn.done;
4064 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004065 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004066}
4067
4068function f_TC_assignment_codec_amr_fail(boolean fr, bitstring s8_s0)
4069runs on test_CT {
4070
4071 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4072 var MSC_ConnHdlr vc_conn;
4073
4074 if (fr) {
4075 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_F}));
4076 } else {
4077 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4078 }
4079 pars.ass_codec_list.codecElements[0].s0_7 := s8_s0;
4080 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4081
4082 f_init(1, true);
4083 f_allow_amr_rate_4_75k_5_90k_7_40k_12_20k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004084 f_vty_amr_start_mode_set(fr, "1");
Philipp Maierd0e64b02019-03-13 14:15:23 +01004085 f_sleep(1.0);
4086
4087 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fail), pars);
4088 vc_conn.done;
4089 f_allow_amr_rate_5_90k();
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004090 f_vty_amr_start_mode_restore(fr);
Philipp Maierd0e64b02019-03-13 14:15:23 +01004091}
4092
4093
4094/* Set S1, we expect an AMR multirate configuration IE with all four rates
4095 * set. */
4096testcase TC_assignment_codec_amr_f_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004097 f_TC_assignment_codec_amr(true, '289520882208'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004098 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004099}
4100
4101/* Set S1, we expect an AMR multirate configuration IE with the lower three
4102 * rates set. */
4103testcase TC_assignment_codec_amr_h_S1() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004104 f_TC_assignment_codec_amr(false, '2815208820'O, '00000010'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004105 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004106}
4107
4108/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4109 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4110testcase TC_assignment_codec_amr_f_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004111 f_TC_assignment_codec_amr(true, '289520882208'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004112 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004113}
4114
4115/* Set S1 and two other rates, we expect an AMR MULTIRATE CONFIGURATION IE with
4116 * all four rates (and only S1 set in the ASSIGNMENT COMPLETE) */
4117testcase TC_assignment_codec_amr_h_S124() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004118 f_TC_assignment_codec_amr(false, '2815208820'O, '00010110'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004119 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004120}
4121
4122/* The following block of tests selects more and more rates until all four
4123 * possible rates are in the active set (full rate) */
4124testcase TC_assignment_codec_amr_f_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004125 f_TC_assignment_codec_amr(true, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004126 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004127}
4128
4129testcase TC_assignment_codec_amr_f_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004130 f_TC_assignment_codec_amr(true, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004131 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004132}
4133
4134testcase TC_assignment_codec_amr_f_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004135 f_TC_assignment_codec_amr(true, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004136 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004137}
4138
4139testcase TC_assignment_codec_amr_f_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004140 f_TC_assignment_codec_amr(true, '289520882208'O, '10010101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004141 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004142}
4143
4144/* The following block of tests selects more and more rates until all three
4145 * possible rates are in the active set (half rate) */
4146testcase TC_assignment_codec_amr_h_S0() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004147 f_TC_assignment_codec_amr(false, '2801'O, '00000001'B, '00000001'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004148 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004149}
4150
4151testcase TC_assignment_codec_amr_h_S02() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004152 f_TC_assignment_codec_amr(false, '28052080'O, '00000101'B, '00000101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004153 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004154}
4155
4156testcase TC_assignment_codec_amr_h_S024() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004157 f_TC_assignment_codec_amr(false, '2815208820'O, '00010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004158 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004159}
4160
4161/* The following block tests what happens when the MSC does offer rate
4162 * configurations that are not supported by the BSC. Normally such situations
4163 * should not happen because the MSC gets informed by the BSC in advance via
4164 * the L3 COMPLETE message which rates are applicable. The MSC should not try
4165 * to offer rates that are not applicable anyway. */
4166
4167testcase TC_assignment_codec_amr_h_S0247() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004168 /* Try to include 12,2k in into the active set even though the channel
4169 * is half rate only. The BSC is expected to remove the 12,0k */
4170 f_TC_assignment_codec_amr(false, '2815208820'O, '10010101'B, '00010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004171 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004172}
4173
4174testcase TC_assignment_codec_amr_f_S01234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004175 /* See what happens when all rates are selected at once. Since then
4176 * Also S1 is selected, this setting will be prefered and we should
4177 * get 12.2k, 7,40k, 5,90k, and 4,75k in the active set. */
4178 f_TC_assignment_codec_amr(true, '289520882208'O, '11111111'B, '00000010'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004179 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004180}
4181
4182testcase TC_assignment_codec_amr_f_S0234567() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004183 /* Same as above, but with S1 missing, the MSC is then expected to
4184 * select the currently supported rates, which are also 12.2k, 7,40k,
4185 * 5,90k, and 4,75k, into the active set. */
4186 f_TC_assignment_codec_amr(true, '289520882208'O, '11111101'B, '10010101'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004187 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004188}
4189
4190testcase TC_assignment_codec_amr_f_zero() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004191 /* Try to select no rates at all */
4192 f_TC_assignment_codec_amr_fail(true, '00000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004193 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004194}
4195
4196testcase TC_assignment_codec_amr_f_unsupp() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004197 /* Try to select only unsupported rates */
4198 f_TC_assignment_codec_amr_fail(true, '01101000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004199 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004200}
4201
4202testcase TC_assignment_codec_amr_h_S7() runs on test_CT {
Pau Espin Pedrol00f40e82020-09-23 14:16:04 +02004203 /* Try to select 12,2k for half rate */
4204 f_TC_assignment_codec_amr_fail(false, '10000000'B);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004205 f_shutdown_helper();
Philipp Maierd0e64b02019-03-13 14:15:23 +01004206}
4207
Neels Hofmeyr21863562020-11-26 00:34:33 +00004208testcase TC_assignment_codec_amr_f_start_mode_auto() runs on test_CT {
4209 f_TC_assignment_codec_amr(true, '209520882208'O, '11111111'B, '00000010'B,
4210 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004211 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004212}
4213
4214testcase TC_assignment_codec_amr_h_start_mode_auto() runs on test_CT {
4215 f_TC_assignment_codec_amr(false, '2015208820'O, '10010101'B, '00010101'B,
4216 start_mode := "auto");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004217 f_shutdown_helper();
Neels Hofmeyr21863562020-11-26 00:34:33 +00004218}
4219
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004220testcase TC_assignment_codec_amr_f_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004221 /* "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 +00004222 f_TC_assignment_codec_amr(true, '2b9520882208'O, '11111111'B, '00000010'B,
4223 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004224 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004225}
4226
4227testcase TC_assignment_codec_amr_h_start_mode_4() runs on test_CT {
Vadim Yanitskiy7815f482021-01-03 17:07:37 +01004228 /* "amr tch-h modes 0 2 4" => total 3 modes and start mode 4 => '10'B on the wire */
4229 f_TC_assignment_codec_amr(false, '2a15208820'O, '10010101'B, '00010101'B,
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004230 start_mode := "4");
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01004231 f_shutdown_helper();
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00004232}
4233
Philipp Maierac09bfc2019-01-08 13:41:39 +01004234private function f_disable_all_tch_f() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004235 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 borken");
4236 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 borken");
4237 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 borken");
4238 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004239}
4240
4241private function f_disable_all_tch_h() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004242 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 borken");
4243 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 borken");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004244}
4245
4246private function f_enable_all_tch() runs on test_CT {
Philipp Maierc704a882019-01-29 15:58:52 +01004247 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 unused");
4248 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 2 sub-slot 0 unused");
4249 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 3 sub-slot 0 unused");
4250 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 4 sub-slot 0 unused");
4251 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 0 unused");
4252 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 5 sub-slot 1 unused");
Philipp Maierac09bfc2019-01-08 13:41:39 +01004253}
4254
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02004255private function f_disable_all_sdcch() runs on test_CT {
4256 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 borken");
4257 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 borken");
4258 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 borken");
4259 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 borken");
4260}
4261
4262private function f_enable_all_sdcch() runs on test_CT {
4263 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 0 unused");
4264 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 1 unused");
4265 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 2 unused");
4266 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 0 sub-slot 3 unused");
4267}
4268
Philipp Maierac09bfc2019-01-08 13:41:39 +01004269/* Allow HR only */
4270private function f_TC_assignment_codec_xr_exhausted_req_hr(charstring id) runs on MSC_ConnHdlr {
4271 g_pars := f_gen_test_hdlr_pars();
4272 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4273 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4274 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4275 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4276 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4277 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4278 f_establish_fully(ass_cmd, exp_compl);
4279}
4280
4281/* Allow FR only */
4282private function f_TC_assignment_codec_xr_exhausted_req_fr(charstring id) runs on MSC_ConnHdlr {
4283 g_pars := f_gen_test_hdlr_pars();
4284 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4285 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4286 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4287 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4288 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4289 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4290 f_establish_fully(ass_cmd, exp_compl);
4291}
4292
4293/* Allow HR only (expect assignment failure) */
4294private function f_TC_assignment_codec_xr_exhausted_req_hr_fail(charstring id) runs on MSC_ConnHdlr {
4295 g_pars := f_gen_test_hdlr_pars();
4296 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4297 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4298 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4299 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '09'O;
4300 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '05'O;
4301 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR}));
4302 f_establish_fully(ass_cmd, exp_fail);
4303}
4304
4305/* Allow FR only (expect assignment failure) */
4306private function f_TC_assignment_codec_xr_exhausted_req_fr_fail(charstring id) runs on MSC_ConnHdlr {
4307 g_pars := f_gen_test_hdlr_pars();
4308 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4309 var template PDU_BSSAP exp_fail := tr_BSSMAP_AssignmentFail;
4310 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4311 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '08'O;
4312 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '01'O;
4313 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4314 f_establish_fully(ass_cmd, exp_fail);
4315}
4316
4317/* Allow FR and HR, but prefer FR */
4318private function f_TC_assignment_codec_fr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4319 g_pars := f_gen_test_hdlr_pars();
4320 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4321 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4322 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4323 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4324 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4325 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4326 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4327 f_establish_fully(ass_cmd, exp_compl);
4328}
4329
4330/* Allow FR and HR, but prefer HR */
4331private function f_TC_assignment_codec_fr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4332 g_pars := f_gen_test_hdlr_pars();
4333 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4334 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4335 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4336 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4337 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4338 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4339 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4340 f_establish_fully(ass_cmd, exp_compl);
4341}
4342
4343/* Allow FR and HR, but prefer FR */
4344private function f_TC_assignment_codec_hr_exhausted_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4345 g_pars := f_gen_test_hdlr_pars();
4346 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4347 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4348 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4349 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4350 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4351 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4352 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4353 f_establish_fully(ass_cmd, exp_compl);
4354}
4355
4356/* Allow FR and HR, but prefer HR */
4357private function f_TC_assignment_codec_hr_exhausted_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4358 g_pars := f_gen_test_hdlr_pars();
4359 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4360 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4361 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4362 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4363 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4364 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4365 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4366 f_establish_fully(ass_cmd, exp_compl);
4367}
4368
4369/* Request a HR channel while all FR channels are exhausted, this is expected
4370 * to work without conflicts */
4371testcase TC_assignment_codec_fr_exhausted_req_hr() runs on test_CT {
4372 var MSC_ConnHdlr vc_conn;
4373 f_init(1, true);
4374 f_sleep(1.0);
4375 f_enable_all_tch();
4376 f_disable_all_tch_f();
4377 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr));
4378 vc_conn.done;
4379 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004380 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004381}
4382
4383/* Request a FR channel while all FR channels are exhausted, this is expected
4384 * to fail. */
4385testcase TC_assignment_codec_fr_exhausted_req_fr() runs on test_CT {
4386 var MSC_ConnHdlr vc_conn;
4387 f_init(1, true);
4388 f_sleep(1.0);
4389 f_enable_all_tch();
4390 f_disable_all_tch_f();
4391 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr_fail));
4392 vc_conn.done;
4393 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004394 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004395}
4396
4397/* Request a FR (prefered) or alternatively a HR channel while all FR channels
4398 * are exhausted, this is expected to be resolved by selecting a HR channel. */
4399testcase TC_assignment_codec_fr_exhausted_req_fr_hr() runs on test_CT {
4400 var MSC_ConnHdlr vc_conn;
4401 f_init(1, true);
4402 f_sleep(1.0);
4403 f_enable_all_tch();
4404 f_disable_all_tch_f();
4405 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_fr_hr));
4406 vc_conn.done;
4407 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004408 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004409}
4410
4411/* Request a HR (prefered) or alternatively a FR channel while all FR channels
4412 * are exhausted, this is expected to work without conflicts. */
4413testcase TC_assignment_codec_fr_exhausted_req_hr_fr() runs on test_CT {
4414 var MSC_ConnHdlr vc_conn;
4415 f_init(1, true);
4416 f_sleep(1.0);
4417 f_enable_all_tch();
4418 f_disable_all_tch_f();
4419 vc_conn := f_start_handler(refers(f_TC_assignment_codec_fr_exhausted_req_hr_fr));
4420 vc_conn.done;
4421 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004422 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004423}
4424
4425/* Request a FR channel while all HR channels are exhausted, this is expected
4426 * to work without conflicts */
4427testcase TC_assignment_codec_hr_exhausted_req_fr() runs on test_CT {
4428 var MSC_ConnHdlr vc_conn;
4429 f_init(1, true);
4430 f_sleep(1.0);
4431 f_enable_all_tch();
4432 f_disable_all_tch_h();
4433 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_fr));
4434 vc_conn.done;
4435 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004436 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004437}
4438
4439/* Request a HR channel while all HR channels are exhausted, this is expected
4440 * to fail. */
4441testcase TC_assignment_codec_hr_exhausted_req_hr() runs on test_CT {
4442 var MSC_ConnHdlr vc_conn;
4443 f_init(1, true);
4444 f_sleep(1.0);
4445 f_enable_all_tch();
4446 f_disable_all_tch_h();
4447 vc_conn := f_start_handler(refers(f_TC_assignment_codec_xr_exhausted_req_hr_fail));
4448 vc_conn.done;
4449 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004450 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004451}
4452
4453/* Request a HR (prefered) or alternatively a FR channel while all HR channels
4454 * are exhausted, this is expected to be resolved by selecting a FR channel. */
4455testcase TC_assignment_codec_hr_exhausted_req_hr_fr() runs on test_CT {
4456 var MSC_ConnHdlr vc_conn;
4457 f_init(1, true);
4458 f_sleep(1.0);
4459 f_enable_all_tch();
4460 f_disable_all_tch_h();
4461 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_hr_fr));
4462 vc_conn.done;
4463 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004464 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004465}
4466
4467/* Request a FR (prefered) or alternatively a HR channel while all HR channels
4468 * are exhausted, this is expected to work without conflicts. */
4469testcase TC_assignment_codec_hr_exhausted_req_fr_hr() runs on test_CT {
4470 var MSC_ConnHdlr vc_conn;
4471 f_init(1, true);
4472 f_sleep(1.0);
4473 f_enable_all_tch();
4474 f_disable_all_tch_h();
4475 vc_conn := f_start_handler(refers(f_TC_assignment_codec_hr_exhausted_req_fr_hr));
4476 vc_conn.done;
4477 f_enable_all_tch();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004478 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004479}
4480
4481/* Allow FR and HR, but prefer HR */
4482private function f_TC_assignment_codec_req_hr_fr(charstring id) runs on MSC_ConnHdlr {
4483 g_pars := f_gen_test_hdlr_pars();
4484 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4485 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4486 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4487 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0B'O; /* Prefer HR */
4488 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8501'O;
4489 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecHR, ts_CodecFR}));
4490 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000101'B; /* Expect HR */
4491 f_establish_fully(ass_cmd, exp_compl);
4492}
4493
4494/* Allow FR and HR, but prefer FR */
4495private function f_TC_assignment_codec_req_fr_hr(charstring id) runs on MSC_ConnHdlr {
4496 g_pars := f_gen_test_hdlr_pars();
4497 var PDU_BSSAP ass_cmd := f_gen_ass_req();
4498 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4499 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4500 ass_cmd.pdu.bssmap.assignmentRequest.channelType.channelRateAndType := '0A'O; /* Prefer FR */
4501 ass_cmd.pdu.bssmap.assignmentRequest.channelType.speechId_DataIndicator := '8105'O;
4502 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR, ts_CodecHR}));
4503 exp_compl.pdu.bssmap.assignmentComplete.speechVersion.speechVersionIdentifier := '0000001'B; /* Expect FR */
4504 f_establish_fully(ass_cmd, exp_compl);
4505}
4506
4507/* Request a HR (prefered) or alternatively a FR channel, it is expected that
4508 * HR, which is the prefered type, is selected. */
4509testcase TC_assignment_codec_req_hr_fr() runs on test_CT {
4510 var MSC_ConnHdlr vc_conn;
4511 f_init(1, true);
4512 f_sleep(1.0);
4513 f_enable_all_tch();
4514 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_hr_fr));
4515 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004516 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004517}
4518
4519/* Request a FR (prefered) or alternatively a HR channel, it is expected that
4520 * FR, which is the prefered type, is selected. */
4521testcase TC_assignment_codec_req_fr_hr() runs on test_CT {
4522 var MSC_ConnHdlr vc_conn;
4523 f_init(1, true);
4524 f_sleep(1.0);
4525 f_enable_all_tch();
4526 vc_conn := f_start_handler(refers(f_TC_assignment_codec_req_fr_hr));
4527 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004528 f_shutdown_helper();
Philipp Maierac09bfc2019-01-08 13:41:39 +01004529}
4530
Pau Espin Pedrol14475352021-07-22 15:48:16 +02004531/* request a signalling channel with all SDCCH exhausted, it is expected that a TCH will be selected */
4532private function f_TC_assignment_sdcch_exhausted_req_signalling(charstring id) runs on MSC_ConnHdlr {
4533 g_pars := f_gen_test_hdlr_pars();
4534 g_pars.ra := '02'O; /* RA containing reason=LU */
4535
4536 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4537 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4538 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4539 var template uint3_t tsc := ?;
4540
4541 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4542 f_create_bssmap_exp(l3_enc);
4543 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4544 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4545
4546 /* we should now have a COMPL_L3 at the MSC */
4547 timer T := 10.0;
4548 T.start;
4549 alt {
4550 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4551 [] T.timeout {
4552 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4553 }
4554 }
4555}
4556testcase TC_assignment_sdcch_exhausted_req_signalling() runs on test_CT {
4557 var MSC_ConnHdlr vc_conn;
4558 f_init(1, true);
4559 f_sleep(1.0);
4560 f_disable_all_sdcch();
4561 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_signalling));
4562 vc_conn.done;
4563 f_enable_all_sdcch();
4564 f_shutdown_helper();
4565}
4566
4567/* Request a signalling channel with all SDCCH exhausted, it is
4568 expected that no TCH will be selected for signalling and assigment will fail
4569 because it's dictated by VTY config */
4570testcase TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() runs on test_CT {
4571 var RSL_Message rsl_unused, rsl_msg;
4572 var GsmRrMessage rr;
4573 f_init(1, false);
4574 f_sleep(1.0);
4575 f_vty_allow_tch_for_signalling(false, 0);
4576 f_disable_all_sdcch();
4577
4578 /* RA containing reason=LU */
4579 f_ipa_tx(0, ts_RSL_CHAN_RQD('02'O, 2342));
4580 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
4581 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
4582 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
4583 setverdict(fail, "Expected reject");
4584 }
4585
4586 f_vty_allow_tch_for_signalling(true, 0);
4587 f_enable_all_sdcch();
4588 f_shutdown_helper();
4589}
4590
4591/* Request a voice channel with all SDCCH exhausted, it is
4592 * expected that TCH channel will be allocated since the VTY option is only
4593 * aimed at signalling requests */
4594private function f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden(charstring id) runs on MSC_ConnHdlr {
4595 g_pars := f_gen_test_hdlr_pars();
4596 g_pars.ra := '43'O; /* RA containing reason=originating speech call*/
4597
4598 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
4599 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, mi));
4600 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
4601 var template uint3_t tsc := ?;
4602
4603 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
4604 f_create_bssmap_exp(l3_enc);
4605 /* call helper function for CHAN_RQD -> IMM ASS ->EST_IND */
4606 RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn, tsc);
4607
4608 /* we should now have a COMPL_L3 at the MSC */
4609 timer T := 10.0;
4610 T.start;
4611 alt {
4612 [] BSSAP.receive(tr_BSSMAP_ComplL3);
4613 [] T.timeout {
4614 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
4615 }
4616 }
4617}
4618testcase TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() runs on test_CT {
4619 var MSC_ConnHdlr vc_conn;
4620 f_init(1, true);
4621 f_sleep(1.0);
4622 f_vty_allow_tch_for_signalling(false, 0);
4623 f_disable_all_sdcch();
4624
4625 vc_conn := f_start_handler(refers(f_TC_assignment_sdcch_exhausted_req_voice_tch_forbidden));
4626 vc_conn.done;
4627
4628 f_vty_allow_tch_for_signalling(true, 0);
4629 f_enable_all_sdcch();
4630 f_shutdown_helper();
4631}
4632
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004633testcase TC_assignment_osmux() runs on test_CT {
4634 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4635 var MSC_ConnHdlr vc_conn;
4636
4637 /* See note above */
4638 var RSL_IE_Body mr_conf := {
4639 other := {
4640 len := 2,
4641 payload := '2804'O
4642 }
4643 };
4644
4645 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecAMR_H}));
4646 pars.ass_codec_list.codecElements[0].s0_7 := '00000100'B; /* 5,90k */
4647 pars.ass_codec_list.codecElements[0].s8_15 := '00000111'B;
4648 pars.expect_mr_conf_ie := mr_conf;
4649 pars.use_osmux := true;
4650
4651 f_init(1, true, true);
4652 f_sleep(1.0);
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004653 f_vty_amr_start_mode_set(false, "1");
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004654
4655 vc_conn := f_start_handler(refers(f_TC_assignment_codec), pars);
4656 vc_conn.done;
Neels Hofmeyra6ab8212020-11-25 23:57:47 +00004657
4658 f_vty_amr_start_mode_restore(false);
Vadim Yanitskiy292e5962021-01-03 14:18:47 +01004659 f_shutdown_helper();
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02004660}
4661
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004662/* test the procedure of the MSC requesting a Classmark Update:
4663 * a) BSSMAP Classmark Request should result in RR CLASSMARK ENQUIRY,
4664 * b) L3 RR CLASSMARK CHANGE should result in BSSMAP CLASSMARK UPDATE */
Harald Welte898113b2018-01-31 18:32:21 +01004665private function f_tc_classmark(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004666 g_pars := f_gen_test_hdlr_pars();
4667
Harald Weltea0630032018-03-20 21:09:55 +01004668 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004669 /* we should now have a COMPL_L3 at the MSC */
4670 BSSAP.receive(tr_BSSMAP_ComplL3);
4671
Neels Hofmeyr92b12b72018-09-18 14:30:23 +02004672 BSSAP.send(ts_BSSMAP_ClassmarkRequest);
4673 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_CM_ENQUIRY));
4674
Harald Welte898113b2018-01-31 18:32:21 +01004675 f_rsl_send_l3(ts_RRM_CM_CHG(valueof(ts_CM2)));
4676 BSSAP.receive(tr_BSSMAP_ClassmarkUpd(?, omit));
4677 setverdict(pass);
4678}
4679testcase TC_classmark() runs on test_CT {
4680 var MSC_ConnHdlr vc_conn;
4681 f_init(1, true);
4682 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004683 vc_conn := f_start_handler(refers(f_tc_classmark));
Harald Welte898113b2018-01-31 18:32:21 +01004684 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004685 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004686}
4687
Harald Welteeddf0e92020-06-21 19:42:15 +02004688/* Send a CommonID from the simulated MSC and verify that the information is used to
4689 * fill BSC-internal data structures (specifically, bsc_subscr associated with subscr_conn) */
4690private function f_tc_common_id(charstring id) runs on MSC_ConnHdlr {
4691 g_pars := f_gen_test_hdlr_pars();
4692 f_MscConnHdlr_init_vty();
4693
4694 f_create_chan_and_exp();
4695 /* we should now have a COMPL_L3 at the MSC */
4696 BSSAP.receive(tr_BSSMAP_ComplL3);
4697
4698 /* Send CommonID */
4699 BSSAP.send(ts_BSSMAP_CommonId(g_pars.imsi));
4700
4701 /* Use VTY to verify that the IMSI of the subscr_conn is set */
4702 var charstring regex := "*(IMSI: " & hex2str(g_pars.imsi) & ")*";
4703 f_vty_transceive_match_regexp_retry(BSCVTY, "show conns", regex, 0, 4, 1.0);
4704
4705 setverdict(pass);
4706}
4707testcase TC_common_id() runs on test_CT {
4708 var MSC_ConnHdlr vc_conn;
4709 f_init(1, true);
4710 f_sleep(1.0);
4711 vc_conn := f_start_handler(refers(f_tc_common_id));
4712 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004713 f_shutdown_helper();
Harald Welteeddf0e92020-06-21 19:42:15 +02004714}
4715
Harald Weltee3bd6582018-01-31 22:51:25 +01004716private function f_est_single_l3(template PDU_ML3_MS_NW l3) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004717 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004718 f_create_chan_and_exp();
Harald Welte898113b2018-01-31 18:32:21 +01004719 /* we should now have a COMPL_L3 at the MSC */
4720 BSSAP.receive(tr_BSSMAP_ComplL3);
4721
Harald Weltee3bd6582018-01-31 22:51:25 +01004722 /* send the single message we want to send */
4723 f_rsl_send_l3(l3);
4724}
4725
4726private function f_bssap_expect_nothing(float sec := 5.00) runs on MSC_ConnHdlr {
4727 timer T := sec;
4728 var PDU_BSSAP bssap;
Harald Welte898113b2018-01-31 18:32:21 +01004729 T.start;
4730 alt {
Harald Weltee3bd6582018-01-31 22:51:25 +01004731 [] BSSAP.receive(PDU_BSSAP:?) -> value bssap {
4732 setverdict(fail, "Unexpected BSSMAP ", bssap);
Daniel Willmannafce8662018-07-06 23:11:32 +02004733 mtc.stop;
Harald Welte898113b2018-01-31 18:32:21 +01004734 }
4735 [] T.timeout {
4736 setverdict(pass);
4737 }
4738 }
4739}
4740
Harald Weltee3bd6582018-01-31 22:51:25 +01004741/* unsolicited ASSIGNMENT FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4742private function f_tc_unsol_ass_fail(charstring id) runs on MSC_ConnHdlr {
4743 f_est_single_l3(ts_RRM_AssignmentFailure('00'O));
4744 f_bssap_expect_nothing();
4745}
Harald Welte898113b2018-01-31 18:32:21 +01004746testcase TC_unsol_ass_fail() runs on test_CT {
4747 var MSC_ConnHdlr vc_conn;
4748 f_init(1, true);
4749 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004750 vc_conn := f_start_handler(refers(f_tc_unsol_ass_fail));
Harald Welte898113b2018-01-31 18:32:21 +01004751 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004752 f_shutdown_helper();
Harald Welte898113b2018-01-31 18:32:21 +01004753}
Harald Welte552620d2017-12-16 23:21:36 +01004754
Harald Welteea99a002018-01-31 20:46:43 +01004755
4756/* unsolicited ASSIGNMENT COMPLETE (without ASSIGN) from MS shouldn't bring BSC down */
4757private function f_tc_unsol_ass_compl(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004758 f_est_single_l3(ts_RRM_AssignmentComplete('00'O));
4759 f_bssap_expect_nothing();
Harald Welteea99a002018-01-31 20:46:43 +01004760}
4761testcase TC_unsol_ass_compl() runs on test_CT {
4762 var MSC_ConnHdlr vc_conn;
4763 f_init(1, true);
4764 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004765 vc_conn := f_start_handler(refers(f_tc_unsol_ass_compl));
Harald Welteea99a002018-01-31 20:46:43 +01004766 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004767 f_shutdown_helper();
Harald Welteea99a002018-01-31 20:46:43 +01004768}
4769
4770
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004771/* unsolicited HANDOVER FAIL (without ASSIGN) from MS shouldn't bring BSC down */
4772private function f_tc_unsol_ho_fail(charstring id) runs on MSC_ConnHdlr {
Harald Weltee3bd6582018-01-31 22:51:25 +01004773 f_est_single_l3(ts_RRM_HandoverFailure('00'O));
4774 f_bssap_expect_nothing();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004775}
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004776testcase TC_unsol_ho_fail() runs on test_CT {
4777 var MSC_ConnHdlr vc_conn;
4778 f_init(1, true);
4779 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004780 vc_conn := f_start_handler(refers(f_tc_unsol_ho_fail));
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004781 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004782 f_shutdown_helper();
Harald Weltefbf9b5e2018-01-31 20:41:23 +01004783}
4784
4785
Harald Weltee3bd6582018-01-31 22:51:25 +01004786/* short message from MS should be ignored */
4787private function f_tc_err_82_short_msg(charstring id) runs on MSC_ConnHdlr {
Philipp Maier48604732018-10-09 15:00:37 +02004788 g_pars := f_gen_test_hdlr_pars();
Harald Weltea0630032018-03-20 21:09:55 +01004789 f_create_chan_and_exp();
Harald Weltee3bd6582018-01-31 22:51:25 +01004790 /* we should now have a COMPL_L3 at the MSC */
4791 BSSAP.receive(tr_BSSMAP_ComplL3);
4792
4793 /* send short message */
4794 RSL.send(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), ''O));
4795 f_bssap_expect_nothing();
4796}
4797testcase TC_err_82_short_msg() runs on test_CT {
4798 var MSC_ConnHdlr vc_conn;
4799 f_init(1, true);
4800 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004801 vc_conn := f_start_handler(refers(f_tc_err_82_short_msg));
Harald Weltee3bd6582018-01-31 22:51:25 +01004802 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004803 f_shutdown_helper();
Harald Weltee3bd6582018-01-31 22:51:25 +01004804}
4805
4806
Harald Weltee9e02e42018-01-31 23:36:25 +01004807/* 24.008 8.4 Unknown message must trigger RR STATUS */
4808private function f_tc_err_84_unknown_msg(charstring id) runs on MSC_ConnHdlr {
4809 f_est_single_l3(ts_RRM_UL_REL('00'O));
4810 timer T := 3.0
4811 alt {
4812 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_STATUS)) {
4813 setverdict(pass);
4814 }
4815 [] BSSAP.receive { setverdict(fail, "unexpected BSSAP"); }
Harald Welte458fd372018-03-21 11:26:23 +01004816 [] T.timeout { setverdict(fail, "Timeout waiting for RR STATUS"); }
Harald Weltee9e02e42018-01-31 23:36:25 +01004817 }
4818}
4819testcase TC_err_84_unknown_msg() runs on test_CT {
4820 var MSC_ConnHdlr vc_conn;
4821 f_init(1, true);
4822 f_sleep(1.0);
Harald Welte8863fa12018-05-10 20:15:27 +02004823 vc_conn := f_start_handler(refers(f_tc_err_84_unknown_msg));
Harald Weltee9e02e42018-01-31 23:36:25 +01004824 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004825 f_shutdown_helper();
Harald Weltee9e02e42018-01-31 23:36:25 +01004826}
4827
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01004828/***********************************************************************
4829 * Handover
4830 ***********************************************************************/
4831
Harald Welte94e0c342018-04-07 11:33:23 +02004832/* execute a "bts <0-255> trx <0-255> timeslot <0-7> " command on given Dchan */
4833private function f_vty_ts_action(charstring suffix, integer bts_nr, integer trx_nr, integer ts_nr)
4834runs on test_CT {
4835 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
4836 " timeslot "&int2str(ts_nr)&" ";
4837 f_vty_transceive(BSCVTY, cmd & suffix);
4838}
4839
Harald Welte261af4b2018-02-12 21:20:39 +01004840/* 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 +07004841private function f_vty_ss_action(TELNETasp_PT pt, charstring suffix,
4842 uint8_t bts_nr, uint8_t trx_nr,
4843 in RslChannelNr chan_nr)
4844{
Harald Welte261af4b2018-02-12 21:20:39 +01004845 /* FIXME: resolve those from component-global state */
4846 var integer ts_nr := chan_nr.tn;
4847 var integer ss_nr;
4848 if (ischosen(chan_nr.u.ch0)) {
4849 ss_nr := 0;
4850 } else if (ischosen(chan_nr.u.lm)) {
4851 ss_nr := chan_nr.u.lm.sub_chan;
4852 } else if (ischosen(chan_nr.u.sdcch4)) {
4853 ss_nr := chan_nr.u.sdcch4.sub_chan;
4854 } else if (ischosen(chan_nr.u.sdcch8)) {
4855 ss_nr := chan_nr.u.sdcch8.sub_chan;
4856 } else {
4857 setverdict(fail, "Invalid ChanNr ", chan_nr);
Daniel Willmannafce8662018-07-06 23:11:32 +02004858 mtc.stop;
Harald Welte261af4b2018-02-12 21:20:39 +01004859 }
4860
4861 var charstring cmd := "bts "&int2str(bts_nr)&" trx "&int2str(trx_nr)&
4862 " timeslot "&int2str(ts_nr)&" sub-slot "&int2str(ss_nr)&" ";
Vadim Yanitskiy00070722020-09-02 17:27:57 +07004863 f_vty_transceive(pt, cmd & suffix);
Harald Welte261af4b2018-02-12 21:20:39 +01004864}
4865
Neels Hofmeyr91401012019-07-11 00:42:35 +02004866/* Even though the VTY command to trigger handover takes a new BTS number as argument, behind the scenes osmo-bsc always
4867 * translates that to a target ARFCN+BSIC first. See bsc_vty.c trigger_ho_or_as(), which puts the selected BTS' neighbor
4868 * ident key (ARFCN + BSIC) in the struct passed on to handover_request(). handover_start() then resolves that to a
4869 * viable actual neighbor cell. So from the internal osmo-bsc perspective, we always request handover to an ARFCN + BSIC
4870 * pair, not really to a specific BTS number. */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07004871private function f_vty_handover(TELNETasp_PT pt, uint8_t bts_nr, uint8_t trx_nr,
4872 in RslChannelNr chan_nr, uint8_t new_bts_nr)
4873{
4874 f_vty_ss_action(pt, "handover " & int2str(new_bts_nr), bts_nr, trx_nr, chan_nr);
Harald Welte261af4b2018-02-12 21:20:39 +01004875}
4876
4877/* intra-BSC hand-over between BTS0 and BTS1 */
4878private function f_tc_ho_int(charstring id) runs on MSC_ConnHdlr {
Harald Welteed848512018-05-24 22:27:58 +02004879 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4880 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Harald Welte261af4b2018-02-12 21:20:39 +01004881
4882 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4883 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4884
Harald Weltea0630032018-03-20 21:09:55 +01004885 f_establish_fully(ass_cmd, exp_compl);
Neels Hofmeyr666f0432020-07-04 00:53:07 +02004886 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Harald Welte261af4b2018-02-12 21:20:39 +01004887
4888 var HandoverState hs := {
4889 rr_ho_cmpl_seen := false,
4890 handover_done := false,
4891 old_chan_nr := -
4892 };
4893 /* issue hand-over command on VTY */
Vadim Yanitskiy00070722020-09-02 17:27:57 +07004894 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
Harald Welte261af4b2018-02-12 21:20:39 +01004895 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
4896 f_rslem_suspend(RSL1_PROC);
Philipp Maier3e2af5d2018-07-11 17:01:05 +02004897
4898 /* From the MGW perspective, a handover is is characterized by
4899 * performing one MDCX operation with the MGW. So we expect to see
4900 * one more MDCX during handover. */
4901 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
4902
Harald Welte261af4b2018-02-12 21:20:39 +01004903 alt {
4904 [] as_handover(hs);
Harald Welte261af4b2018-02-12 21:20:39 +01004905 }
Philipp Maier3e2af5d2018-07-11 17:01:05 +02004906
Philipp Maier4dae0652018-11-12 12:03:26 +01004907 /* Since this is an internal handover we expect the BSC to inform the
4908 * MSC about the event */
4909 BSSAP.receive(tr_BSSMAP_HandoverPerformed);
4910
Philipp Maier3e2af5d2018-07-11 17:01:05 +02004911 /* Check the amount of MGCP transactions is still consistant with the
4912 * test expectation */
4913 f_check_mgcp_expectations()
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02004914
4915 /* Ensure the Channel Activation for the new channel contained the right encryption params. as_handover() set
4916 * g_chan_nr to the new lchan that was handed over to. It lives in bts 1, so look it up at RSL1_PROC. */
4917 f_verify_encr_info(f_rslem_get_last_act(RSL1_PROC, 0, g_chan_nr));
4918
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01004919 f_sleep(0.5);
Harald Welte261af4b2018-02-12 21:20:39 +01004920}
4921
4922testcase TC_ho_int() runs on test_CT {
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02004923 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Harald Welte261af4b2018-02-12 21:20:39 +01004924 var MSC_ConnHdlr vc_conn;
4925 f_init(2, true);
4926 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00004927
4928 f_ctrs_bsc_and_bts_init();
4929
Neels Hofmeyr5f7a9df2021-06-21 01:30:43 +02004930 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
Harald Welte261af4b2018-02-12 21:20:39 +01004931 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00004932
4933 /* from f_establish_fully() */
4934 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
4935 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
4936 /* from handover */
4937 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
4938 f_ctrs_bsc_and_bts_add(0, "handover:completed");
4939 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
4940 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
4941 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02004942 f_shutdown_helper();
Harald Welte261af4b2018-02-12 21:20:39 +01004943}
Harald Weltee9e02e42018-01-31 23:36:25 +01004944
Oliver Smith7eabd312021-07-12 14:18:56 +02004945function 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 +02004946 var MSC_ConnHdlr vc_conn;
4947 var TestHdlrParams pars := f_gen_test_hdlr_pars();
4948 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
4949
4950 f_init(2, true);
Oliver Smith7eabd312021-07-12 14:18:56 +02004951 f_vty_encryption_a5(enc_a5);
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02004952 f_sleep(1.0);
4953
4954 f_ctrs_bsc_and_bts_init();
4955
4956 vc_conn := f_start_handler(refers(f_tc_ho_int), pars);
4957 vc_conn.done;
4958
4959 /* from f_establish_fully() */
4960 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
4961 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
4962 /* from handover */
4963 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
4964 f_ctrs_bsc_and_bts_add(0, "handover:completed");
4965 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
4966 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:completed");
4967 f_ctrs_bsc_and_bts_verify();
Oliver Smith7eabd312021-07-12 14:18:56 +02004968 f_vty_encryption_a5_reset();
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02004969 f_shutdown_helper();
4970}
4971
4972testcase TC_ho_int_a5_0() runs on test_CT {
4973 f_tc_ho_int_a5('01'O);
4974}
4975
4976testcase TC_ho_int_a5_1() runs on test_CT {
4977 f_tc_ho_int_a5('02'O);
4978}
4979
4980testcase TC_ho_int_a5_3() runs on test_CT {
4981 f_tc_ho_int_a5('08'O);
4982}
4983
4984testcase TC_ho_int_a5_4() runs on test_CT {
Oliver Smith7eabd312021-07-12 14:18:56 +02004985 f_tc_ho_int_a5('10'O, "0 1 3 4");
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02004986}
4987
Neels Hofmeyr5f144212020-11-03 15:41:58 +00004988/* intra-BSC hand-over with CONNection FAILure and cause Radio Link Failure: check RR release cause */
4989private function f_tc_ho_int_radio_link_failure(charstring id) runs on MSC_ConnHdlr {
4990 g_pars := f_gen_test_hdlr_pars();
4991 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
4992 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr5f144212020-11-03 15:41:58 +00004993
4994 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
4995 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
4996
4997 f_establish_fully(ass_cmd, exp_compl);
4998 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
4999
5000 var HandoverState hs := {
5001 rr_ho_cmpl_seen := false,
5002 handover_done := false,
5003 old_chan_nr := -
5004 };
5005 /* issue hand-over command on VTY */
5006 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
5007 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
5008 f_rslem_suspend(RSL1_PROC);
5009
5010 /* From the MGW perspective, a handover is is characterized by
5011 * performing one MDCX operation with the MGW. So we expect to see
5012 * one more MDCX during handover. */
5013 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
5014
5015 var RSL_Message rsl;
5016 var PDU_ML3_NW_MS l3;
5017 var RslChannelNr new_chan_nr;
5018 var GsmArfcn arfcn;
5019 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
5020 l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
5021 if (not ischosen(l3.msgs.rrm.handoverCommand)) {
5022 setverdict(fail, "Expected handoverCommand");
5023 mtc.stop;
5024 }
5025 }
5026 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
5027 new_chan_nr, arfcn);
5028
5029 f_rslem_register(0, new_chan_nr, RSL1_PROC);
5030
5031 /* resume processing of RSL DChan messages, which was temporarily suspended
5032 * before performing a hand-over */
5033 f_rslem_resume(RSL1_PROC);
5034 RSL1.receive(tr_RSL_IPA_CRCX(new_chan_nr));
5035
5036 f_sleep(1.0);
5037
5038 /* Handover fails because no HANDO DET appears on the new lchan,
5039 * and the old lchan reports a Radio Link Failure. */
5040 RSL.send(ts_RSL_CONN_FAIL_IND(g_chan_nr, RSL_ERR_RADIO_LINK_FAIL));
5041
5042 var PDU_BSSAP rx_clear_request;
5043 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5044 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5045 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5046
5047 var RR_Cause rr_cause := GSM48_RR_CAUSE_ABNORMAL_UNSPEC;
5048
5049 var MgcpCommand mgcp;
5050 interleave {
5051 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE(int2oct(enum2int(rr_cause), 1)))) {}
5052 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005053 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005054 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005055 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005056 }
5057 [] RSL1.receive(tr_RSL_DEACT_SACCH(new_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005058 [] RSL1.receive(tr_RSL_RF_CHAN_REL(new_chan_nr)) {
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005059 RSL1.send(ts_RSL_RF_CHAN_REL_ACK(new_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005060 f_rslem_unregister(0, g_chan_nr, PT := RSL1_PROC);
Neels Hofmeyr5f144212020-11-03 15:41:58 +00005061 }
5062 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {}
5063 }
5064
5065 f_sleep(0.5);
5066 setverdict(pass);
5067}
5068testcase TC_ho_int_radio_link_failure() runs on test_CT {
5069 var MSC_ConnHdlr vc_conn;
5070 f_init(2, true);
5071 f_sleep(1.0);
5072
5073 f_ctrs_bsc_and_bts_init();
5074
5075 vc_conn := f_start_handler(refers(f_tc_ho_int_radio_link_failure));
5076 vc_conn.done;
5077
5078 /* from f_establish_fully() */
5079 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5080 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5081 /* from handover */
5082 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5083 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5084 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
5085 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:stopped");
5086 f_ctrs_bsc_and_bts_verify();
5087 f_shutdown_helper();
5088}
5089
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005090/* Expecting MGCP to DLCX the endpoint's two connections: towards BTS and towards MSC */
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005091private function f_expect_dlcx_conns() runs on MSC_ConnHdlr {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005092 var MgcpCommand mgcp;
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005093 var template MgcpResponse mgcp_resp;
5094 var MGCP_RecvFrom mrf;
5095 var template MgcpMessage msg_resp;
5096 var template MgcpMessage msg_dlcx := {
5097 command := tr_DLCX()
5098 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005099
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005100 if (g_pars.aoip) {
5101 MGCP.receive(tr_DLCX()) -> value mgcp {
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005102 log("Got first DLCX: ", mgcp);
5103 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005104 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005105
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005106 MGCP.receive(tr_DLCX()) -> value mgcp {
5107 log("Got second DLCX: ", mgcp);
5108 MGCP.send(ts_DLCX_ACK2(mgcp.line.trans_id));
5109 };
Pau Espin Pedrolfd02ad42019-06-18 17:45:20 +02005110 } else {
5111 /* For SCCPLite, BSC doesn't handle the MSC-side */
5112 MGCP_MULTI.receive(tr_MGCP_RecvFrom_any(msg_dlcx)) -> value mrf {
5113 log("Got first DLCX: ", mrf.msg.command);
5114 msg_resp := {
5115 response := ts_DLCX_ACK2(mrf.msg.command.line.trans_id)
5116 }
5117 MGCP_MULTI.send(t_MGCP_SendToMrf(mrf, msg_resp));
5118 };
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005119 }
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005120}
5121
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005122private 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 +01005123
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005124 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005125 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5126
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005127 BSSAP.receive(tr_BSSMAP_HandoverRequired(exp_oldToNewBSSIEs));
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005128
5129 f_sleep(0.5);
5130 /* The MSC negotiates Handover Request and Handover Request Ack with
5131 * the other BSS and comes back with a BSSMAP Handover Command
5132 * containing an RR Handover Command coming from the target BSS... */
5133
5134 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5135 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5136 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5137 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5138 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5139
5140 /* expect the Handover Command to go out on RR */
5141 var RSL_Message rsl_ho_cmd
5142 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5143 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5144 var RSL_IE_Body rsl_ho_cmd_l3;
5145 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5146 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5147 setverdict(fail);
5148 } else {
5149 log("Found L3 Info: ", rsl_ho_cmd_l3);
5150 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5151 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5152 setverdict(fail);
5153 } else {
5154 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5155 setverdict(pass);
5156 }
5157 }
5158
5159 /* When the other BSS has reported a completed handover, this side is
5160 * torn down. */
5161
5162 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_HANDOVER_SUCCESSFUL;
5163 var BssmapCause cause := enum2int(cause_val);
5164 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5165
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005166 f_expect_dlcx_conns();
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005167
5168 interleave {
5169 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE));
5170 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr));
5171 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr));
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005172 [] BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol06199952021-06-15 11:30:00 +02005173 }
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005174 setverdict(pass);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005175}
5176
5177private function f_tc_ho_out_of_this_bsc(charstring id) runs on MSC_ConnHdlr {
5178 g_pars := f_gen_test_hdlr_pars();
5179 var PDU_BSSAP ass_req := f_gen_ass_req();
5180 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5181 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5182 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5183 f_establish_fully(ass_req, exp_compl);
5184
5185 f_ho_out_of_this_bsc();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005186}
5187testcase TC_ho_out_of_this_bsc() runs on test_CT {
5188 var MSC_ConnHdlr vc_conn;
5189
5190 f_init(1, true);
5191 f_sleep(1.0);
5192
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005193 f_ctrs_bsc_and_bts_init();
5194
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005195 vc_conn := f_start_handler(refers(f_tc_ho_out_of_this_bsc));
5196 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005197
5198 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5199 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5200 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5201 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5202 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5203 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed");
5204 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005205 f_shutdown_helper();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005206}
5207
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005208private function f_mo_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5209 template (value) RslLinkId link_id := ts_RslLinkID_DCCH(0),
Vadim Yanitskiy2ef6a2f2020-10-08 23:17:32 +07005210 template (present) OCT1 dlci := ?,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005211 octetstring l3 := '0123456789'O)
5212runs on MSC_ConnHdlr {
Neels Hofmeyr43654812020-09-25 01:35:35 +02005213 /* The old lchan and conn should still be active. See that arbitrary L3
5214 * is still going through. */
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005215 rsl.send(ts_RSL_DATA_IND(g_chan_nr, link_id, l3));
Neels Hofmeyr43654812020-09-25 01:35:35 +02005216 var template PDU_BSSAP exp_data := {
5217 discriminator := '1'B,
5218 spare := '0000000'B,
Vadim Yanitskiyb93aa432020-10-01 14:23:11 +07005219 dlci := dlci,
5220 lengthIndicator := lengthof(l3),
Neels Hofmeyr43654812020-09-25 01:35:35 +02005221 pdu := {
5222 dtap := l3
5223 }
5224 };
5225 BSSAP.receive(exp_data);
5226 setverdict(pass);
5227}
5228
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005229private function f_mt_l3_transceive(RSL_DCHAN_PT rsl := RSL,
5230 template (present) RslLinkId link_id := tr_RslLinkID_DCCH(0),
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005231 template (value) OCT1 dlci := '00'O,
5232 octetstring l3 := '0123456789'O)
5233runs on MSC_ConnHdlr {
5234 BSSAP.send(PDU_BSSAP:{
5235 discriminator := '1'B,
5236 spare := '0000000'B,
5237 dlci := dlci,
5238 lengthIndicator := lengthof(l3),
5239 pdu := {
5240 dtap := l3
5241 }
5242 });
Neels Hofmeyr0aa719b2020-10-12 18:43:09 +00005243 rsl.receive(tr_RSL_DATA_REQ(g_chan_nr, link_id, l3));
Vadim Yanitskiy0033a3b2020-10-01 22:21:16 +07005244 setverdict(pass);
5245}
5246
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005247/* BSC asks for inter-BSC HO, but the MSC decides that it won't happen and
5248 * simply never sends a BSSMAP Handover Command. */
5249private function f_tc_ho_out_fail_no_msc_response(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005250 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005251
5252 var PDU_BSSAP ass_req := f_gen_ass_req();
5253 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5254 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5255 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5256 f_establish_fully(ass_req, exp_compl);
5257
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005258 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005259 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5260
5261 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5262
5263 /* osmo-bsc should time out 10 seconds after the handover started.
5264 * Let's give it a bit extra. */
5265 f_sleep(15.0);
5266
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005267 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005268 f_sleep(1.0);
5269}
5270testcase TC_ho_out_fail_no_msc_response() runs on test_CT {
5271 var MSC_ConnHdlr vc_conn;
5272
5273 f_init(1, true);
5274 f_sleep(1.0);
5275
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005276 f_ctrs_bsc_and_bts_init();
5277
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005278 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_msc_response));
5279 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005280
5281 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5282 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5283 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5284 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5285 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5286 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5287 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005288 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005289}
5290
5291/* BSC asks for inter-BSC HO, receives BSSMAP Handover Command, but MS reports
5292 * RR Handover Failure. */
5293private function f_tc_ho_out_fail_rr_ho_failure(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005294 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005295
5296 var PDU_BSSAP ass_req := f_gen_ass_req();
5297 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5298 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5299 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5300 f_establish_fully(ass_req, exp_compl);
5301
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005302 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005303 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5304
5305 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5306
5307 f_sleep(0.5);
5308 /* The MSC negotiates Handover Request and Handover Request Ack with
5309 * the other BSS and comes back with a BSSMAP Handover Command
5310 * containing an RR Handover Command coming from the target BSS... */
5311
5312 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5313 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5314 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5315 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5316 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5317
5318 /* expect the Handover Command to go out on RR */
5319 var RSL_Message rsl_ho_cmd
5320 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5321 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5322 var RSL_IE_Body rsl_ho_cmd_l3;
5323 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5324 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5325 setverdict(fail);
5326 } else {
5327 log("Found L3 Info: ", rsl_ho_cmd_l3);
5328 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5329 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5330 setverdict(fail);
5331 } else {
5332 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5333 setverdict(pass);
5334 }
5335 }
5336
5337 f_sleep(0.2);
5338 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
5339
5340 /* Should tell the MSC about the failure */
5341 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5342
5343 f_sleep(1.0);
5344
Vadim Yanitskiy74ae5eb2020-10-01 22:13:29 +07005345 f_mo_l3_transceive();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005346 f_sleep(1.0);
5347
5348 setverdict(pass);
5349 f_sleep(1.0);
5350}
5351testcase TC_ho_out_fail_rr_ho_failure() runs on test_CT {
5352 var MSC_ConnHdlr vc_conn;
5353
5354 f_init(1, true);
5355 f_sleep(1.0);
5356
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005357 f_ctrs_bsc_and_bts_init();
5358
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005359 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_rr_ho_failure));
5360 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005361
5362 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5363 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5364 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5365 f_ctrs_bsc_and_bts_add(0, "handover:failed");
5366 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5367 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:failed");
5368 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005369 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005370}
5371
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005372/* BSC asks for inter-BSC-out HO, receives BSSMAP Handover Command, but then no reply is received about HO outcome
5373 * (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 +02005374 * and the lchan is released. */
5375private function f_tc_ho_out_fail_no_result_after_ho_cmd(charstring id) runs on MSC_ConnHdlr {
Daniel Willmann3b59eb52018-10-29 15:40:55 +01005376 g_pars := f_gen_test_hdlr_pars();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005377
5378 var PDU_BSSAP ass_req := f_gen_ass_req();
5379 ass_req.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
5380 ass_req.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
5381 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
5382 f_establish_fully(ass_req, exp_compl);
5383
Neels Hofmeyr666f0432020-07-04 00:53:07 +02005384 f_bts_0_cfg(BSCVTY, {"neighbor lac 99 arfcn 123 bsic any"});
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005385 f_vty_transceive(BSCVTY, "handover any to arfcn 123 bsic any");
5386
5387 BSSAP.receive(tr_BSSMAP_HandoverRequired);
5388
5389 f_sleep(0.5);
5390 /* The MSC negotiates Handover Request and Handover Request Ack with
5391 * the other BSS and comes back with a BSSMAP Handover Command
5392 * containing an RR Handover Command coming from the target BSS... */
5393
5394 var PDU_ML3_NW_MS rr_ho_cmd := valueof(ts_RR_HandoverCommand);
5395 log("Remote cell's RR Handover Command passed through as L3 Info: ", rr_ho_cmd);
5396 var octetstring rr_ho_cmd_enc := enc_PDU_ML3_NW_MS(rr_ho_cmd);
5397 log("Remote cell's RR Handover Command passed through as L3 Info, encoded: ", rr_ho_cmd_enc);
5398 BSSAP.send(ts_BSSMAP_HandoverCommand(rr_ho_cmd_enc));
5399
5400 /* expect the Handover Command to go out on RR */
5401 var RSL_Message rsl_ho_cmd
5402 RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, ?)) -> value rsl_ho_cmd;
5403 log("RSL Data Req went out to first BTS: ", rsl_ho_cmd);
5404 var RSL_IE_Body rsl_ho_cmd_l3;
5405 if (not f_rsl_find_ie(rsl_ho_cmd, RSL_IE_L3_INFO, rsl_ho_cmd_l3)) {
5406 log("RSL message contains no L3 Info IE, expected RR Handover Command");
5407 setverdict(fail);
5408 } else {
5409 log("Found L3 Info: ", rsl_ho_cmd_l3);
5410 if (rsl_ho_cmd_l3.l3_info.payload != rr_ho_cmd_enc) {
5411 log("FAIL: the BSC sent out a different L3 Info, not matching the RR Handover Command the other BSS forwarded.");
5412 setverdict(fail);
5413 } else {
5414 log("Success: the BSC sent out the same RR Handover Command the other BSS forwarded.");
5415 setverdict(pass);
5416 }
5417 }
5418
Neels Hofmeyr10f2bfa2019-07-09 19:33:29 +02005419 /* We get neither success nor failure report from the remote BSS. Eventually T8 times out and we run into 3GPP
5420 * TS 48.008 3.1.5.3.3 "Abnormal Conditions": Clear Request should go to the MSC, and RR should be released
5421 * after Clear Command */
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005422
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005423 var PDU_BSSAP rx_clear_request;
Neels Hofmeyre1797aa2019-07-09 19:34:04 +02005424 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request;
5425 log("Got BSSMAP Clear Request");
5426 /* Instruct BSC to clear channel */
5427 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
5428 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5429
5430 var MgcpCommand mgcp;
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005431 interleave {
Neels Hofmeyr861a4c12018-11-07 01:23:17 +01005432 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
5433 log("Got Deact SACCH");
5434 }
Harald Welte924b6ea2019-02-04 01:05:34 +01005435 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
Neels Hofmeyr211169d2018-11-07 00:37:29 +01005436 log("Got RR Release");
5437 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02005438 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005439 log("Got RF Chan Rel");
5440 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02005441 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005442 }
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005443 }
5444
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005445 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005446 BSSAP.receive(tr_BSSMAP_ClearComplete);
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02005447
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005448 setverdict(pass);
5449 f_sleep(1.0);
5450}
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005451testcase TC_ho_out_fail_no_result_after_ho_cmd() runs on test_CT {
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005452 var MSC_ConnHdlr vc_conn;
5453
5454 f_init(1, true);
5455 f_sleep(1.0);
5456
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005457 f_ctrs_bsc_and_bts_init();
5458
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02005459 vc_conn := f_start_handler(refers(f_tc_ho_out_fail_no_result_after_ho_cmd));
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005460 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005461
5462 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
5463 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
5464 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5465 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
5466 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
5467 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
5468 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005469 f_shutdown_helper();
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02005470}
5471
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005472private 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 +01005473 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5474 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5475 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5476 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5477 * before we get started. */
5478 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5479 f_rslem_register(0, new_chan_nr);
5480 g_chan_nr := new_chan_nr;
5481 f_sleep(1.0);
5482
5483 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5484 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5485 activate(as_Media());
5486
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005487 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005488 f_gen_handover_req(aoip_tla := g_pars.host_aoip_tla,
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005489 oldToNewBSSIEs := oldToNewBSSIEs,
5490 enc := g_pars.encr)));
Harald Welte6811d102019-04-14 22:23:14 +02005491 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005492
5493 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5494
5495 var PDU_BSSAP rx_bssap;
5496 var octetstring ho_command_str;
5497
5498 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
Pau Espin Pedrol76ba5412019-06-10 11:00:33 +02005499
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005500 /* we're sure that the channel activation is done now, verify the encryption parameters in it */
5501 f_verify_encr_info(f_rslem_get_last_act(RSL_PROC, 0, g_chan_nr));
5502
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005503 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5504 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5505 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5506 log("L3 Info in HO Request Ack is ", ho_command);
5507
5508 var GsmArfcn arfcn;
5509 var RslChannelNr actual_new_chan_nr;
5510 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5511 actual_new_chan_nr, arfcn);
5512
5513 if (actual_new_chan_nr != new_chan_nr) {
5514 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5515 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5516 setverdict(fail);
5517 return;
5518 }
5519 log("Handover Command chan_nr is", actual_new_chan_nr);
5520
5521 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5522 * tells the MS to handover to the new lchan. Here comes the new MS on
5523 * the new lchan with a Handover RACH: */
5524
5525 /* send handover detect */
5526
5527 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5528
5529 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5530
5531 /* send handover complete over the new channel */
5532
5533 var PDU_ML3_MS_NW l3_tx := valueof(ts_RRM_HandoverComplete('00'O));
5534 RSL.send(ts_RSL_EST_IND(new_chan_nr, valueof(ts_RslLinkID_DCCH(0)),
5535 enc_PDU_ML3_MS_NW(l3_tx)));
5536
5537 BSSAP.receive(tr_BSSMAP_HandoverComplete);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005538 setverdict(pass);
5539}
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005540
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005541private function f_tc_ho_into_this_bsc(charstring id) runs on MSC_ConnHdlr {
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005542 var template PDU_ML3_NW_MS exp_rr_rel_tmpl;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005543 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs := omit;
5544 if (not istemplatekind(g_pars.last_used_eutran_plmn, "omit")) {
5545 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005546 }
5547 if (g_pars.exp_fast_return) {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005548 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE_CellSelectInd;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005549 } else {
5550 exp_rr_rel_tmpl := tr_RRM_RR_RELEASE;
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005551 }
5552 f_ho_into_this_bsc(id, oldToNewBSSIEs);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02005553 f_perform_clear(exp_rr_rel_tmpl := exp_rr_rel_tmpl);
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005554 setverdict(pass);
5555}
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005556function f_tc_ho_into_this_bsc_main(TestHdlrParams pars) runs on test_CT {
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005557 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005558
5559 f_init(1, true);
5560 f_sleep(1.0);
5561
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005562 f_ctrs_bsc_and_bts_init();
5563
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005564 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5565 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005566
5567 vc_conn := f_start_handler(refers(f_tc_ho_into_this_bsc), pars);
5568 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005569
5570 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5571 f_ctrs_bsc_and_bts_add(0, "handover:completed");
5572 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5573 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed");
5574 f_ctrs_bsc_and_bts_verify();
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01005575}
5576
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005577testcase TC_ho_into_this_bsc() runs on test_CT {
5578 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5579 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005580 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005581}
5582
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02005583function f_tc_ho_into_this_bsc_a5(OCT1 encr_alg) runs on test_CT {
5584 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5585 pars.encr := valueof(t_EncrParams(encr_alg, f_rnd_octstring(8), f_rnd_octstring(16)));
5586 f_tc_ho_into_this_bsc_main(pars);
5587 f_shutdown_helper();
5588}
5589
5590testcase TC_ho_into_this_bsc_a5_0() runs on test_CT {
5591 f_tc_ho_into_this_bsc_a5('01'O);
5592}
5593
5594testcase TC_ho_into_this_bsc_a5_1() runs on test_CT {
5595 f_tc_ho_into_this_bsc_a5('02'O);
5596}
5597
5598testcase TC_ho_into_this_bsc_a5_3() runs on test_CT {
5599 f_tc_ho_into_this_bsc_a5('08'O);
5600}
5601
5602testcase TC_ho_into_this_bsc_a5_4() runs on test_CT {
5603 f_tc_ho_into_this_bsc_a5('10'O);
5604}
5605
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005606testcase TC_ho_into_this_bsc_tla_v6() runs on test_CT {
5607 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5608 pars.host_aoip_tla := "::6";
5609 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005610 f_shutdown_helper();
Pau Espin Pedrol07866632020-09-03 19:10:55 +02005611}
5612
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005613/* Similar to TC_ho_into_this_bsc, but when in SRVCC, HO Req contains "Old BSS
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005614 to New BSS Information" IE with "Last Used E-UTRAN PLMN Id", which, when the
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005615 channel is later released (RR CHannel Release), should trigger inclusion of
5616 IE "Cell Selection Indicator after Release of all TCH and SDCCH" with E-UTRAN
5617 neighbors. */
5618testcase TC_srvcc_eutran_to_geran() runs on test_CT {
5619 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5620 pars.last_used_eutran_plmn := '323454'O;
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005621 pars.exp_fast_return := true;
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005622 f_tc_ho_into_this_bsc_main(pars);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005623
5624 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted");
5625 f_ctrs_bsc_and_bts_add(0, "srvcc:completed");
5626 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02005627 f_shutdown_helper();
5628}
5629
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005630/* Same as TC_srvcc_eutran_to_geran, but test explicitly forbiding fast return
5631 on the BTS. As a result, RR Release shouldn't contain the EUTRAN neighbor
5632 list when the channel is released. */
5633testcase TC_srvcc_eutran_to_geran_forbid_fast_return() runs on test_CT {
5634 f_init_vty();
5635 f_vty_allow_srvcc_fast_return(true, 0)
5636
5637 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5638 pars.last_used_eutran_plmn := '323454'O;
5639 pars.exp_fast_return := false;
5640 f_tc_ho_into_this_bsc_main(pars);
5641 f_vty_allow_srvcc_fast_return(false, 0);
5642 f_shutdown_helper();
5643}
5644
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005645private function f_tc_srvcc_eutran_to_geran_ho_out(charstring id) runs on MSC_ConnHdlr {
5646 var template (omit) BSSMAP_oldToNewBSSIEs oldToNewBSSIEs;
5647 oldToNewBSSIEs := f_ts_BSSMAP_oldToNewBSSIEs(ts_BSSMAP_LastUsedEUTRANPLMNId(g_pars.last_used_eutran_plmn));
5648 f_ho_into_this_bsc(id, oldToNewBSSIEs);
5649 f_ho_out_of_this_bsc(oldToNewBSSIEs);
5650 setverdict(pass);
5651}
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005652
5653private function f_tc_srvcc_eutran_to_geran_ho_out_main(boolean disable_fast_return)
5654 runs on test_CT {
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005655 var MSC_ConnHdlr vc_conn;
5656 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5657
5658 f_init(1, true);
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005659 if (disable_fast_return) {
5660 f_vty_allow_srvcc_fast_return(true, 0);
5661 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005662 f_sleep(1.0);
5663
5664 f_ctrs_bsc_and_bts_init();
5665
5666 pars.last_used_eutran_plmn := '323454'O;
5667 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5668 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
5669
5670 vc_conn := f_start_handler(refers(f_tc_srvcc_eutran_to_geran_ho_out), pars);
5671 vc_conn.done;
5672
5673 f_ctrs_bsc_and_bts_add(0, "handover:attempted", 2);
5674 f_ctrs_bsc_and_bts_add(0, "handover:completed", 2);
5675 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted", 1);
5676 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:completed", 1);
5677 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted", 1);
5678 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:completed", 1);
Pau Espin Pedrol211a7142021-06-15 16:43:03 +02005679
5680 f_ctrs_bsc_and_bts_add(0, "srvcc:attempted", 1);
5681 f_ctrs_bsc_and_bts_add(0, "srvcc:completed", 1);
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005682 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005683
5684 if (disable_fast_return) {
5685 f_vty_allow_srvcc_fast_return(false, 0);
5686 }
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02005687 f_shutdown_helper();
5688}
5689
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02005690/* First, HO into BSC from EUTRAN (SRVCC): HO Request contains "Old BSS to New
5691 BSS Information" IE with "Last Used E-UTRAN PLMN Id".
5692 Second, HO to another BSC: HO Required contains "Old BSS to New BSS Information"
5693 IE with "Last Used E-UTRAN PLMN Id" from first step. */
5694testcase TC_srvcc_eutran_to_geran_ho_out() runs on test_CT {
5695 f_tc_srvcc_eutran_to_geran_ho_out_main(false);
5696}
5697/* Validate subsequent intra-GSM-HO works the same (with OldBSSToNewBSSInfo IE)
5698 * independently of fast-reture allowed/forbidden in local BTS */
5699testcase TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() runs on test_CT {
5700 f_tc_srvcc_eutran_to_geran_ho_out_main(true);
5701}
5702
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005703private function f_tc_ho_in_fail_msc_clears(charstring id) runs on MSC_ConnHdlr {
5704 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5705 f_rslem_register(0, new_chan_nr);
5706 g_chan_nr := new_chan_nr;
5707 f_sleep(1.0);
5708
5709 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5710 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5711 activate(as_Media());
5712
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005713 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005714 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005715 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005716
5717 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5718
5719 var PDU_BSSAP rx_bssap;
5720 var octetstring ho_command_str;
5721
5722 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5723
5724 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5725 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5726 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5727 log("L3 Info in HO Request Ack is ", ho_command);
5728
5729 var GsmArfcn arfcn;
5730 var RslChannelNr actual_new_chan_nr;
5731 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5732 actual_new_chan_nr, arfcn);
5733
5734 if (actual_new_chan_nr != new_chan_nr) {
5735 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5736 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5737 setverdict(fail);
5738 return;
5739 }
5740 log("Handover Command chan_nr is", actual_new_chan_nr);
5741
Neels Hofmeyr61ca08d2019-05-06 23:52:22 +02005742 /* For deterministic test results, give some time for the MGW endpoint to be configured */
5743 f_sleep(1.0);
5744
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005745 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5746 * tells the MS to handover to the new lchan. In this case, the MS
5747 * reports a Handover Failure to the old BSS, which forwards a BSSMAP
5748 * Handover Failure to the MSC. The procedure according to 3GPP TS
5749 * 48.008 3.1.5.3.2 "Handover Failure" is then that the MSC sends a
5750 * BSSMAP Clear Command: */
5751
5752 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5753 var BssmapCause cause := enum2int(cause_val);
5754 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5755
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005756 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005757 BSSAP.receive(tr_BSSMAP_ClearComplete);
5758
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005759 setverdict(pass);
5760 f_sleep(1.0);
5761
5762 setverdict(pass);
5763}
5764testcase TC_ho_in_fail_msc_clears() runs on test_CT {
5765 var MSC_ConnHdlr vc_conn;
5766 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5767
5768 f_init(1, true);
5769 f_sleep(1.0);
5770
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005771 f_ctrs_bsc_and_bts_init();
5772
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005773 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5774 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005775
5776 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears), pars);
5777 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005778
5779 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5780 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5781 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5782 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5783 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005784 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005785}
5786
5787private function f_tc_ho_in_fail_msc_clears_after_ho_detect(charstring id) runs on MSC_ConnHdlr {
5788 /* Hack: the proper way would be to wait for the BSSMAP Handover Request ACK and extract the
5789 * actual assigned chan_nr from its L3 (RR Handover Command) message. But osmo-bsc starts acting
5790 * on the lchan even before we get a chance to evaluate the BSSMAP Handover Request ACK. So we
5791 * need to assume that osmo-bsc will activate TS 1 and already set up this lchan's RSL emulation
5792 * before we get started. */
5793 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5794 f_rslem_register(0, new_chan_nr);
5795 g_chan_nr := new_chan_nr;
5796 f_sleep(1.0);
5797
5798 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5799 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5800 activate(as_Media());
5801
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005802 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005803 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005804 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005805
5806 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5807
5808 var PDU_BSSAP rx_bssap;
5809 var octetstring ho_command_str;
5810
5811 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5812
5813 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5814 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5815 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5816 log("L3 Info in HO Request Ack is ", ho_command);
5817
5818 var GsmArfcn arfcn;
5819 var RslChannelNr actual_new_chan_nr;
5820 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5821 actual_new_chan_nr, arfcn);
5822
5823 if (actual_new_chan_nr != new_chan_nr) {
5824 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5825 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5826 setverdict(fail);
5827 return;
5828 }
5829 log("Handover Command chan_nr is", actual_new_chan_nr);
5830
5831 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5832 * tells the MS to handover to the new lchan. Here comes the new MS on
5833 * the new lchan with a Handover RACH: */
5834
5835 /* send handover detect */
5836
5837 RSL.send(ts_RSL_HANDO_DET(new_chan_nr));
5838
5839 BSSAP.receive(tr_BSSMAP_HandoverDetect);
5840
5841 /* The MSC chooses to clear the connection now, maybe we got the
5842 * Handover RACH on the new cell but the MS still signaled Handover
5843 * Failure to the old BSS? */
5844
5845 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5846 var BssmapCause cause := enum2int(cause_val);
5847 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5848
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005849 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005850 BSSAP.receive(tr_BSSMAP_ClearComplete);
5851
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005852 f_sleep(1.0);
5853}
5854testcase TC_ho_in_fail_msc_clears_after_ho_detect() runs on test_CT {
5855 var MSC_ConnHdlr vc_conn;
5856 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5857
5858 f_init(1, true);
5859 f_sleep(1.0);
5860
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005861 f_ctrs_bsc_and_bts_init();
5862
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005863 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5864 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005865
5866 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_msc_clears_after_ho_detect), pars);
5867 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005868
5869 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5870 f_ctrs_bsc_and_bts_add(0, "handover:stopped");
5871 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5872 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:stopped");
5873 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005874 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005875}
5876
5877/* The new BSS's lchan times out before the MSC decides that handover failed. */
5878private function f_tc_ho_in_fail_no_detect(charstring id) runs on MSC_ConnHdlr {
5879 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5880 f_rslem_register(0, new_chan_nr);
5881 g_chan_nr := new_chan_nr;
5882 f_sleep(1.0);
5883
5884 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5885 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5886 activate(as_Media());
5887
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005888 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005889 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005890 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005891
5892 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5893
5894 var PDU_BSSAP rx_bssap;
5895 var octetstring ho_command_str;
5896
5897 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5898
5899 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5900 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5901 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5902 log("L3 Info in HO Request Ack is ", ho_command);
5903
5904 var GsmArfcn arfcn;
5905 var RslChannelNr actual_new_chan_nr;
5906 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5907 actual_new_chan_nr, arfcn);
5908
5909 if (actual_new_chan_nr != new_chan_nr) {
5910 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
5911 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
5912 setverdict(fail);
5913 return;
5914 }
5915 log("Handover Command chan_nr is", actual_new_chan_nr);
5916
5917 /* Now the MSC forwards the RR Handover Command to the other BSC, which
5918 * tells the MS to handover to the new lchan. But the MS never shows up
5919 * on the new lchan. */
5920
5921 BSSAP.receive(tr_BSSMAP_HandoverFailure);
5922
5923 /* Did osmo-bsc also send a Clear Request? */
5924 timer T := 0.5;
5925 T.start;
5926 alt {
5927 [] BSSAP.receive(tr_BSSMAP_ClearRequest);
5928 [] T.timeout { }
5929 }
5930
5931 /* MSC plays along with a Clear Command (no matter whether osmo-bsc
5932 * asked for it, this is a Handover Failure after all). */
5933
5934 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_RADIO_INTERFACE_FAILURE_REVERSION;
5935 var BssmapCause cause := enum2int(cause_val);
5936 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
5937
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02005938 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02005939 BSSAP.receive(tr_BSSMAP_ClearComplete);
5940
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005941 f_sleep(1.0);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005942}
5943testcase TC_ho_in_fail_no_detect() runs on test_CT {
5944 var MSC_ConnHdlr vc_conn;
5945 var TestHdlrParams pars := f_gen_test_hdlr_pars();
5946
5947 f_init(1, true);
5948 f_sleep(1.0);
5949
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005950 f_ctrs_bsc_and_bts_init();
5951
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005952 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
5953 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005954
5955 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect), pars);
5956 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00005957
5958 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
5959 f_ctrs_bsc_and_bts_add(0, "handover:error");
5960 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
5961 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
5962 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02005963 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005964}
5965
5966/* Same as f_tc_ho_in_fail_no_detect, but MSC fails to send a Clear Command */
5967private function f_tc_ho_in_fail_no_detect2(charstring id) runs on MSC_ConnHdlr {
5968 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
5969 f_rslem_register(0, new_chan_nr);
5970 g_chan_nr := new_chan_nr;
5971 f_sleep(1.0);
5972
5973 f_create_mgcp_expect(ExpectCriteria:{omit,omit,omit});
5974 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
5975 activate(as_Media());
5976
Neels Hofmeyr90f80962020-06-12 16:16:55 +02005977 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005978 f_gen_handover_req()));
Harald Welte6811d102019-04-14 22:23:14 +02005979 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01005980
5981 /* The RSL Emulation magically accepts the Chan Activ behind the scenes. */
5982
5983 var PDU_BSSAP rx_bssap;
5984 var octetstring ho_command_str;
5985
5986 BSSAP.receive(tr_BSSMAP_HandoverRequestAcknowledge(?)) -> value rx_bssap;
5987
5988 ho_command_str := rx_bssap.pdu.bssmap.handoverRequestAck.layer3Information.layer3info;
5989 log("Received L3 Info in HO Request Ack: ", ho_command_str);
5990 var PDU_ML3_NW_MS ho_command := dec_PDU_ML3_NW_MS(ho_command_str);
5991 log("L3 Info in HO Request Ack is ", ho_command);
5992
5993 var GsmArfcn arfcn;
5994 var RslChannelNr actual_new_chan_nr;
5995 f_ChDesc2RslChanNr(ho_command.msgs.rrm.handoverCommand.channelDescription2,
5996 actual_new_chan_nr, arfcn);
5997
5998 if (actual_new_chan_nr != new_chan_nr) {
5999 log("ERROR: osmo-bsc assigned a different lchan than we assumed above -- this test will fail now.",
6000 " Assumed: ", new_chan_nr, " Assigned: ", actual_new_chan_nr);
6001 setverdict(fail);
6002 return;
6003 }
6004 log("Handover Command chan_nr is", actual_new_chan_nr);
6005
6006 /* Now the MSC forwards the RR Handover Command to the other BSC, which
6007 * tells the MS to handover to the new lchan. But the MS never shows up
6008 * on the new lchan. */
6009
6010 BSSAP.receive(tr_BSSMAP_HandoverFailure);
6011
6012 /* MSC plays dumb and sends no Clear Command */
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006013 var PDU_BSSAP rx_clear_request;
Pau Espin Pedrol1fc30b92019-06-18 13:08:22 +02006014
6015 BSSAP.receive(tr_BSSMAP_ClearRequest) -> value rx_clear_request {
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006016 var BssmapCause cause := bit2int(rx_clear_request.pdu.bssmap.clearRequest.cause.causeValue);
6017 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
6018 };
Pau Espin Pedrol7aa02742019-06-26 16:30:14 +02006019 f_expect_dlcx_conns();
Neels Hofmeyr8fcd8772021-07-22 16:12:57 +02006020 BSSAP.receive(tr_BSSMAP_ClearComplete);
6021
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006022 f_sleep(1.0);
6023}
6024testcase TC_ho_in_fail_no_detect2() runs on test_CT {
6025 var MSC_ConnHdlr vc_conn;
6026 var TestHdlrParams pars := f_gen_test_hdlr_pars();
6027
6028 f_init(1, true);
6029 f_sleep(1.0);
6030
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006031 f_ctrs_bsc_and_bts_init();
6032
Neels Hofmeyr90f80962020-06-12 16:16:55 +02006033 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
6034 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006035
6036 vc_conn := f_start_handler(refers(f_tc_ho_in_fail_no_detect2), pars);
6037 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006038
6039 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6040 f_ctrs_bsc_and_bts_add(0, "handover:error");
6041 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:attempted");
6042 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_in:error");
6043 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006044 f_shutdown_helper();
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01006045}
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01006046
Neels Hofmeyr91401012019-07-11 00:42:35 +02006047type record of charstring Commands;
6048
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006049private function f_bts_0_cfg(TELNETasp_PT pt, Commands cmds := {})
Neels Hofmeyr91401012019-07-11 00:42:35 +02006050{
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006051 f_vty_enter_cfg_bts(pt, 0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006052 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006053 f_vty_transceive(pt, cmds[i]);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006054 }
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006055 f_vty_transceive(pt, "end");
Neels Hofmeyr91401012019-07-11 00:42:35 +02006056}
6057
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01006058private function f_cs7_inst_0_cfg(TELNETasp_PT pt, Commands cmds := {})
6059{
6060 f_vty_enter_cfg_cs7_inst(pt, 0);
6061 for (var integer i := 0; i < sizeof(cmds); i := i+1) {
6062 f_vty_transceive(pt, cmds[i]);
6063 }
6064 f_vty_transceive(pt, "end");
6065}
6066
Neels Hofmeyr91401012019-07-11 00:42:35 +02006067private function f_probe_for_handover(charstring log_label,
6068 charstring log_descr,
6069 charstring handover_vty_cmd,
6070 boolean expect_handover,
6071 boolean is_inter_bsc_handover := false)
6072runs on MSC_ConnHdlr
6073{
Neels Hofmeyrb3fc8982020-05-11 00:16:42 +02006074 /* We're going to thwart any and all handover attempts, just be ready to handle (and ignore) handover target
6075 * lchans to be established on bts 1 or bts 2. */
6076 f_rslem_suspend(RSL1_PROC);
6077 f_rslem_suspend(RSL2_PROC);
6078
Neels Hofmeyr91401012019-07-11 00:42:35 +02006079 var RSL_Message rsl;
6080
6081 var charstring log_msg := " (expecting handover)"
6082 if (not expect_handover) {
6083 log_msg := " (expecting NO handover)";
6084 }
6085 log("f_probe_for_handover starting: " & log_label & ": " & log_descr & log_msg);
6086 f_vty_transceive(BSCVTY, handover_vty_cmd);
6087
Neels Hofmeyr91401012019-07-11 00:42:35 +02006088 timer T := 2.0;
6089 T.start;
6090
6091 alt {
6092 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
6093 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
6094 log("Rx L3 from net: ", l3);
6095 if (ischosen(l3.msgs.rrm.handoverCommand)) {
6096 var RslChannelNr new_chan_nr;
6097 var GsmArfcn arfcn;
6098 f_ChDesc2RslChanNr(l3.msgs.rrm.handoverCommand.channelDescription2,
6099 new_chan_nr, arfcn);
6100 log("Handover to new chan ", new_chan_nr, " on ARFCN ", arfcn);
6101 log(l3.msgs.rrm.handoverCommand);
6102
6103 /* Need to register for new lchan on new BTS -- it's either bts 1 or bts 2. It doesn't really
6104 * matter on which BTS it really is, we're not going to follow through an entire handover
6105 * anyway. */
6106 f_rslem_register(0, new_chan_nr, RSL1_PROC);
6107 f_rslem_resume(RSL1_PROC);
6108 f_rslem_register(0, new_chan_nr, RSL2_PROC);
6109 f_rslem_resume(RSL2_PROC);
6110
6111 if (expect_handover and not is_inter_bsc_handover) {
6112 setverdict(pass);
6113 log("f_probe_for_handover(" & log_label & "): Got RSL Handover Command as expected.");
6114 } else {
6115 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got RSL Handover Command. "
6116 & log_label & ": " & log_descr);
6117 }
6118
6119 log("f_probe_for_handover(" & log_label & "): Ending the test: Handover Failure stops the procedure.");
6120 /* osmo-bsc has triggered Handover. That's all we need to know for this test, reply with
6121 * Handover Failure. */
6122 f_rsl_send_l3(ts_RRM_HandoverFailure('00'O));
6123
6124 /* target BTS is told to release lchan again; don't care which BTS nor what messages. */
6125 f_sleep(0.5);
6126 RSL1.clear;
6127 RSL2.clear;
6128 log("f_probe_for_handover(" & log_label & "): done (got RSL Handover Command)");
6129 break;
6130 } else {
6131 repeat;
6132 }
6133 }
6134 [] BSSAP.receive(tr_BSSMAP_HandoverRequired) {
6135 if (expect_handover and is_inter_bsc_handover) {
6136 setverdict(pass);
6137 log("f_probe_for_handover(" & log_label & "): Got BSSMAP Handover Required as expected.");
6138 } else {
6139 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected none, but got BSSMAP Handover Required. "
6140 & log_label & ": " & log_descr);
6141 }
6142
6143 log("f_probe_for_handover(" & log_label & "): done (got BSSMAP Handover Required)");
6144
6145 /* Note: f_tc_ho_neighbor_config_start() sets T7, the timeout for BSSMAP Handover Required, to
6146 * 1 second. There is no legal way to quickly abort a handover after a BSSMAP Handover Required,
6147 * setting a short timeout and waiting is the only way. */
6148 log("f_probe_for_handover(" & log_label & "): waiting for inter-BSC HO to time out...");
6149 f_sleep(1.5);
6150 log("f_probe_for_handover(" & log_label & "): ...done");
6151
6152 break;
6153 }
6154 [] T.timeout {
6155 if (expect_handover) {
6156 setverdict(fail, "f_probe_for_handover(" & log_label & "): Expected Handover, but got none. "
6157 & log_label & ": " & log_descr);
6158 } else {
6159 setverdict(pass);
6160 log("f_probe_for_handover(" & log_label & "): Got no Handover, as expected.");
6161 }
6162 log("f_probe_for_handover(" & log_label & "): done (got no Handover)");
6163 break;
6164 }
6165 }
6166
6167 f_rslem_resume(RSL1_PROC);
6168 f_rslem_resume(RSL2_PROC);
6169 f_sleep(3.0);
6170 RSL.clear;
6171
6172 log("f_probe_for_handover(" & log_label & "): done clearing");
6173}
6174
6175/* Test the effect of various neighbor configuration scenarios:
6176 *
6177 * To avoid complexity, block off any actual handover operation, and always remain on the lchan at bts 0.
6178 * Reconfigure the neighbors for bts 0, trigger a Handover, and probe whether osmo-bsc does or doesn't start HO.
6179 */
6180private function f_tc_ho_neighbor_config_start() runs on MSC_ConnHdlr {
6181 g_pars := f_gen_test_hdlr_pars();
6182 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
6183 var PDU_BSSAP ass_cmd := f_gen_ass_req();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006184
6185 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
6186 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
6187
6188 /* Establish lchan at bts 0 */
6189 f_establish_fully(ass_cmd, exp_compl);
6190
6191 /* Shorten the inter-BSC Handover timeout, to not wait so long for inter-BSC Handovers */
6192 f_vty_enter_cfg_network(BSCVTY);
6193 f_vty_transceive(BSCVTY, "timer T7 1");
6194 f_vty_transceive(BSCVTY, "end");
6195}
6196
6197private function f_tc_ho_neighbor_config_1(charstring id) runs on MSC_ConnHdlr {
6198 f_tc_ho_neighbor_config_start();
6199
6200 /*
6201 * bts 0 ARFCN 871 BSIC 10
6202 * bts 1 ARFCN 871 BSIC 11
6203 * bts 2 ARFCN 871 BSIC 12
6204 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6205 */
6206
6207 log("f_tc_ho_neighbor_config: 1. No 'neighbor' config");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006208 f_bts_0_cfg(BSCVTY, {"no neighbors"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006209 f_probe_for_handover("1.a", "HO to bts 1 works, implicitly listed as neighbor (legacy behavior when none are configured)",
6210 "handover any to arfcn 871 bsic 11",
6211 true);
6212
6213 f_probe_for_handover("1.b", "HO to unknown cell does not start",
6214 "handover any to arfcn 13 bsic 39",
6215 false);
6216
6217 f_probe_for_handover("1.c", "HO to 871-12 is ambiguous = error",
6218 "handover any to arfcn 871 bsic 12",
6219 false);
6220
6221 f_probe_for_handover("1.d", "HO to 871-11 still works (verify that this test properly cleans up)",
6222 "handover any to arfcn 871 bsic 11",
6223 true);
6224}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006225testcase TC_ho_neighbor_config_1() runs on test_CT {
6226 var MSC_ConnHdlr vc_conn;
6227 f_init(3, true, guard_timeout := 60.0);
6228 f_sleep(1.0);
6229 f_ctrs_bsc_and_bts_init();
6230 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_1));
6231 vc_conn.done;
6232
6233 /* f_tc_ho_neighbor_config_start() */
6234 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6235 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6236
6237 /* 1.a */
6238 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6239 * handover quickly by sending a Handover Failure message. */
6240 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6241 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6242 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6243 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6244
6245 /* 1.b */
6246 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6247 f_ctrs_bsc_and_bts_add(0, "handover:error");
6248
6249 /* 1.c */
6250 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6251 f_ctrs_bsc_and_bts_add(0, "handover:error");
6252
6253 /* 1.d */
6254 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6255 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6256 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6257 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6258
6259 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006260 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006261}
6262
Neels Hofmeyr91401012019-07-11 00:42:35 +02006263private function f_tc_ho_neighbor_config_2(charstring id) runs on MSC_ConnHdlr {
6264 f_tc_ho_neighbor_config_start();
6265
6266 /*
6267 * bts 0 ARFCN 871 BSIC 10
6268 * bts 1 ARFCN 871 BSIC 11
6269 * bts 2 ARFCN 871 BSIC 12
6270 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6271 */
6272
6273 log("f_tc_ho_neighbor_config: 2. explicit local neighbor: 'neighbor bts 1'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006274 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006275 f_sleep(0.5);
6276
6277 f_probe_for_handover("2.a", "HO to bts 1 works, explicitly listed as neighbor",
6278 "handover any to arfcn 871 bsic 11",
6279 true);
6280
6281 f_probe_for_handover("2.b", "HO to bts 2 doesn't work, not listed as neighbor",
6282 "handover any to arfcn 871 bsic 12",
6283 false);
6284}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006285testcase TC_ho_neighbor_config_2() runs on test_CT {
6286 var MSC_ConnHdlr vc_conn;
6287 f_init(3, true, guard_timeout := 50.0);
6288 f_sleep(1.0);
6289 f_ctrs_bsc_and_bts_init();
6290 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_2));
6291 vc_conn.done;
6292
6293 /* f_tc_ho_neighbor_config_start() */
6294 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6295 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6296
6297 /* 2.a */
6298 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6299 * handover quickly by sending a Handover Failure message. */
6300 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6301 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6302 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6303 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6304
6305 /* 2.b */
6306 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6307 f_ctrs_bsc_and_bts_add(0, "handover:error");
6308
6309 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006310 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006311}
6312
Neels Hofmeyr91401012019-07-11 00:42:35 +02006313private function f_tc_ho_neighbor_config_3(charstring id) runs on MSC_ConnHdlr {
6314 f_tc_ho_neighbor_config_start();
6315
6316 /*
6317 * bts 0 ARFCN 871 BSIC 10
6318 * bts 1 ARFCN 871 BSIC 11
6319 * bts 2 ARFCN 871 BSIC 12
6320 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6321 */
6322
6323 log("f_tc_ho_neighbor_config: 3. explicit local neighbor: 'neighbor bts 2'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006324 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006325 f_sleep(0.5);
6326
6327 f_probe_for_handover("3.a", "HO to bts 1 doesn't work, not listed as neighbor",
6328 "handover any to arfcn 871 bsic 11",
6329 false);
6330 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",
6331 "handover any to arfcn 871 bsic 12",
6332 true);
6333}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006334testcase TC_ho_neighbor_config_3() runs on test_CT {
6335 var MSC_ConnHdlr vc_conn;
6336 f_init(3, true, guard_timeout := 50.0);
6337 f_sleep(1.0);
6338 f_ctrs_bsc_and_bts_init();
6339 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_3));
6340 vc_conn.done;
6341
6342 /* f_tc_ho_neighbor_config_start() */
6343 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6344 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6345
6346 /* 3.a */
6347 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6348 f_ctrs_bsc_and_bts_add(0, "handover:error");
6349
6350 /* 3.b */
6351 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6352 * handover quickly by sending a Handover Failure message. */
6353 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6354 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6355 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6356 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6357
6358 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006359 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006360}
6361
Neels Hofmeyr91401012019-07-11 00:42:35 +02006362private function f_tc_ho_neighbor_config_4(charstring id) runs on MSC_ConnHdlr {
6363 f_tc_ho_neighbor_config_start();
6364
6365 /*
6366 * bts 0 ARFCN 871 BSIC 10
6367 * bts 1 ARFCN 871 BSIC 11
6368 * bts 2 ARFCN 871 BSIC 12
6369 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6370 */
6371
6372 log("f_tc_ho_neighbor_config: 4. explicit remote neighbor: 'neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006373 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006374 f_sleep(0.5);
6375
6376 f_probe_for_handover("4.a", "HO to bts 1 doesn't work, not listed as neighbor",
6377 "handover any to arfcn 871 bsic 11",
6378 false);
6379 f_probe_for_handover("4.b", "HO to bts 2 doesn't work, not listed as neighbor",
6380 "handover any to arfcn 871 bsic 12",
6381 false);
6382 f_probe_for_handover("4.c", "HO to 123-45 triggers inter-BSC HO",
6383 "handover any to arfcn 123 bsic 45",
6384 true, true);
6385}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006386testcase TC_ho_neighbor_config_4() runs on test_CT {
6387 var MSC_ConnHdlr vc_conn;
6388 f_init(3, true, guard_timeout := 50.0);
6389 f_sleep(1.0);
6390 f_ctrs_bsc_and_bts_init();
6391 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_4));
6392 vc_conn.done;
6393
6394 /* f_tc_ho_neighbor_config_start() */
6395 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6396 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6397
6398 /* 4.a */
6399 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6400 f_ctrs_bsc_and_bts_add(0, "handover:error");
6401
6402 /* 4.b */
6403 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6404 f_ctrs_bsc_and_bts_add(0, "handover:error");
6405
6406 /* 4.c */
6407 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6408 * handover quickly by timing out after the Handover Required message */
6409 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6410 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6411 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6412 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6413
6414 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006415 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006416}
6417
Neels Hofmeyr91401012019-07-11 00:42:35 +02006418private function f_tc_ho_neighbor_config_5(charstring id) runs on MSC_ConnHdlr {
6419 f_tc_ho_neighbor_config_start();
6420
6421 /*
6422 * bts 0 ARFCN 871 BSIC 10
6423 * bts 1 ARFCN 871 BSIC 11
6424 * bts 2 ARFCN 871 BSIC 12
6425 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6426 */
6427
6428 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 +02006429 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006430 f_sleep(0.5);
6431
6432 f_probe_for_handover("5.a", "HO to 871-12 triggers inter-BSC HO (ignoring local cells with same ARFCN+BSIC)",
6433 "handover any to arfcn 871 bsic 12",
6434 true, true);
6435}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006436testcase TC_ho_neighbor_config_5() runs on test_CT {
6437 var MSC_ConnHdlr vc_conn;
6438 f_init(3, true);
6439 f_sleep(1.0);
6440 f_ctrs_bsc_and_bts_init();
6441 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_5));
6442 vc_conn.done;
6443
6444 /* f_tc_ho_neighbor_config_start() */
6445 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6446 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6447
6448 /* 5 */
6449 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6450 * handover quickly by timing out after the Handover Required message */
6451 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6452 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6453 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6454 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
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_6(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: 6. config error: explicit local and remote neighbors with ambiguous ARFCN+BSIC:"
6471 & " 'neighbor bts 2; neighbor lac 99 arfcn 871 bsic 12'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006472 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 871 bsic 12"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006473 f_sleep(0.5);
6474
6475 f_probe_for_handover("6.a", "HO to 871-12 is ambiguous = error",
6476 "handover any to arfcn 871 bsic 12",
6477 false);
6478}
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006479testcase TC_ho_neighbor_config_6() runs on test_CT {
6480 var MSC_ConnHdlr vc_conn;
6481 f_init(3, true);
6482 f_sleep(1.0);
6483 f_ctrs_bsc_and_bts_init();
6484 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_6));
6485 vc_conn.done;
6486
6487 /* f_tc_ho_neighbor_config_start() */
6488 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6489 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6490
6491 /* 6.a */
6492 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6493 * handover quickly by timing out after the Handover Required message */
6494 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6495 f_ctrs_bsc_and_bts_add(0, "handover:error");
6496
6497 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006498 f_shutdown_helper();
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006499}
6500
Neels Hofmeyr91401012019-07-11 00:42:35 +02006501private function f_tc_ho_neighbor_config_7(charstring id) runs on MSC_ConnHdlr {
6502 f_tc_ho_neighbor_config_start();
6503
6504 /*
6505 * bts 0 ARFCN 871 BSIC 10
6506 * bts 1 ARFCN 871 BSIC 11
6507 * bts 2 ARFCN 871 BSIC 12
6508 * bts 3 ARFCN 871 BSIC 12 serves as ambiguity for bts 2, re-using the ARFCN+BSIC
6509 */
6510
6511 log("f_tc_ho_neighbor_config: 7. explicit local and remote neighbors:"
6512 & " 'neighbor bts 2; neighbor lac 99 arfcn 123 bsic 45'");
Neels Hofmeyr666f0432020-07-04 00:53:07 +02006513 f_bts_0_cfg(BSCVTY, {"no neighbors", "neighbor bts 2", "neighbor lac 99 arfcn 123 bsic 45"});
Neels Hofmeyr91401012019-07-11 00:42:35 +02006514 f_sleep(0.5);
6515
6516 f_probe_for_handover("7.a", "HO to 871-12 does HO to bts 2",
6517 "handover any to arfcn 871 bsic 12",
6518 true);
6519 f_probe_for_handover("7.b", "HO to 123-45 triggers inter-BSC HO",
6520 "handover any to arfcn 123 bsic 45",
6521 true, true);
6522}
Neels Hofmeyr91401012019-07-11 00:42:35 +02006523testcase TC_ho_neighbor_config_7() runs on test_CT {
6524 var MSC_ConnHdlr vc_conn;
Neels Hofmeyrf2b88032020-06-16 00:35:04 +02006525 f_init(3, true, guard_timeout := 50.0);
Neels Hofmeyr91401012019-07-11 00:42:35 +02006526 f_sleep(1.0);
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006527 f_ctrs_bsc_and_bts_init();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006528 vc_conn := f_start_handler(refers(f_tc_ho_neighbor_config_7));
6529 vc_conn.done;
Neels Hofmeyr12941bd2020-08-29 03:21:26 +00006530
6531 /* f_tc_ho_neighbor_config_start() */
6532 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
6533 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
6534
6535 /* 7.a */
6536 /* "failed" means a handover was triggered and started (which is all this test aims for) and the test ended the
6537 * handover quickly by sending a Handover Failure message. */
6538 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6539 f_ctrs_bsc_and_bts_add(0, "handover:failed");
6540 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:attempted");
6541 f_ctrs_bsc_and_bts_add(0, "intra_bsc_ho:failed");
6542
6543 /* 7.b */
6544 /* "timeout" means a handover was triggered and started (which is all this test aims for) and the test ended the
6545 * handover quickly by timing out after the Handover Required message */
6546 f_ctrs_bsc_and_bts_add(0, "handover:attempted");
6547 f_ctrs_bsc_and_bts_add(0, "handover:timeout");
6548 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:attempted");
6549 f_ctrs_bsc_and_bts_add(0, "interbsc_ho_out:timeout");
6550
6551 f_ctrs_bsc_and_bts_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006552 f_shutdown_helper();
Neels Hofmeyr91401012019-07-11 00:42:35 +02006553}
6554
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006555/* OS#3041: Open and close N connections in a normal fashion, and expect no
6556 * BSSMAP Reset just because of that. */
6557testcase TC_bssap_rlsd_does_not_cause_bssmap_reset() runs on test_CT {
6558 var default d;
6559 var integer i;
6560 var DchanTuple dt;
6561
6562 f_init();
6563
6564 /* Wait for initial BSSMAP Reset to pass */
6565 f_sleep(4.0);
6566
6567 d := activate(no_bssmap_reset());
6568
6569 /* Setup up a number of connections and RLSD them again from the MSC
6570 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6571 * Let's do it some more times for good measure. */
Harald Weltec3260d92018-06-11 17:48:16 +02006572 for (i := 0; i < 4; i := i+1) {
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006573 /* Since we're doing a lot of runs, give each one a fresh
6574 * T_guard from the top. */
6575 T_guard.start;
6576
6577 /* Setup a BSSAP connection and clear it right away. This is
6578 * the MSC telling the BSC about a planned release, it's not an
6579 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006580 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01006581
6582 /* MSC disconnects (RLSD). */
6583 BSSAP.send(ts_BSSAP_DISC_req(dt.sccp_conn_id, 0));
6584 }
6585
6586 /* In the buggy behavior, a timeout of 2 seconds happens between above
6587 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6588 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6589 f_sleep(4.0);
6590
6591 deactivate(d);
6592 f_shutdown_helper();
6593}
Harald Welte552620d2017-12-16 23:21:36 +01006594
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006595/* OS#3041: Open and close N connections in a normal fashion, and expect no
6596 * BSSMAP Reset just because of that. Invoke the release by a BSSMAP Clear from
6597 * the MSC. */
6598testcase TC_bssmap_clear_does_not_cause_bssmap_reset() runs on test_CT {
6599 var default d;
6600 var integer i;
6601 var DchanTuple dt;
6602 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006603 var myBSSMAP_Cause cause_val := GSM0808_CAUSE_CALL_CONTROL;
6604 var BssmapCause cause := enum2int(cause_val);
6605
6606 f_init();
6607
6608 /* Wait for initial BSSMAP Reset to pass */
6609 f_sleep(4.0);
6610
6611 d := activate(no_bssmap_reset());
6612
6613 /* Setup up a number of connections and RLSD them again from the MSC
6614 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6615 * Let's do it some more times for good measure. */
6616 for (i := 0; i < 8; i := i+1) {
6617 /* Since we're doing a lot of runs, give each one a fresh
6618 * T_guard from the top. */
6619 T_guard.start;
6620
6621 /* Setup a BSSAP connection and clear it right away. This is
6622 * the MSC telling the BSC about a planned release, it's not an
6623 * erratic loss of a connection. */
Harald Weltea1897182018-06-11 13:53:09 +02006624 dt := f_est_dchan(int2oct(i,1), 23+i, '00010203040506'O);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006625
6626 /* Instruct BSC to clear channel */
6627 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6628
6629 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006630 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01006631 }
6632
6633 /* In the buggy behavior, a timeout of 2 seconds happens between above
6634 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6635 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6636 f_sleep(4.0);
6637
6638 deactivate(d);
6639 f_shutdown_helper();
6640}
6641
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006642/* OS#3041: Open and close N connections in a normal fashion, and expect no
6643 * BSSMAP Reset just because of that. Close connections from the MS side with a
6644 * Release Ind on RSL. */
6645testcase TC_ms_rel_ind_does_not_cause_bssmap_reset() runs on test_CT {
6646 var default d;
6647 var integer i;
6648 var DchanTuple dt;
6649 var BSSAP_N_DATA_ind rx_di;
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006650 var integer j;
6651
6652 f_init();
6653
6654 /* Wait for initial BSSMAP Reset to pass */
6655 f_sleep(4.0);
6656
6657 d := activate(no_bssmap_reset());
6658
6659 /* Setup up a number of connections and RLSD them again from the MSC
6660 * side. In the buggy behavior, the fourth one triggers BSSMAP Reset.
6661 * Let's do it some more times for good measure. */
6662 for (i := 0; i < 8; i := i+1) {
6663 /* Since we're doing a lot of runs, give each one a fresh
6664 * T_guard from the top. */
6665 T_guard.start;
6666
6667 /* Setup a BSSAP connection and clear it right away. This is
6668 * the MSC telling the BSC about a planned release, it's not an
6669 * erratic loss of a connection. */
6670 dt := f_est_dchan('23'O, 23, '00010203040506'O);
6671
6672 /* simulate RLL REL IND */
6673 f_ipa_tx(0, ts_RSL_REL_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0))));
6674
6675 /* expect Clear Request on MSC side */
6676 BSSAP.receive(tr_BSSAP_DATA_ind(dt.sccp_conn_id, tr_BSSMAP_ClearRequest)) -> value rx_di;
6677
6678 /* Instruct BSC to clear channel */
6679 var BssmapCause cause := bit2int(rx_di.userData.pdu.bssmap.clearRequest.cause.causeValue);
6680 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
6681
6682 /* expect BSC to disable the channel */
Harald Welte641fcbe2018-06-14 10:58:35 +02006683 f_exp_chan_rel_and_clear(dt, 0);
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01006684 }
6685
6686 /* In the buggy behavior, a timeout of 2 seconds happens between above
6687 * trigger (logs "SIGTRAN connection down, reconnecting...") and the
6688 * actual BSSMAP Reset. Wait a bit longer just to make sure. */
6689 f_sleep(4.0);
6690
6691 deactivate(d);
6692 f_shutdown_helper();
6693}
6694
Harald Welte94e0c342018-04-07 11:33:23 +02006695/***********************************************************************
6696 * IPA style dynamic PDCH
6697 ***********************************************************************/
6698
6699private function f_dyn_ipa_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6700 template (omit) RSL_Cause nack := omit)
6701runs on test_CT {
6702 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6703 var RSL_Message rsl_unused;
6704 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6705 f_vty_ts_action("pdch activate", bts_nr, trx_nr, ts_nr);
6706 /* expect the BSC to issue the related RSL command */
6707 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6708 if (istemplatekind(nack, "omit")) {
6709 /* respond with a related acknowledgement */
6710 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6711 } else {
6712 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_NACK(chan_nr, valueof(nack)));
6713 }
6714}
6715
6716private function f_dyn_ipa_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6717 template (omit) RSL_Cause nack := omit)
6718runs on test_CT {
6719 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(ts_nr));
6720 var RSL_Message rsl_unused;
6721 /* ask BSC via VTY to activate a given IPA style chan as PDCH */
6722 f_vty_ts_action("pdch deactivate", bts_nr, trx_nr, ts_nr);
6723 /* expect the BSC to issue the related RSL command */
6724 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_DEACT(chan_nr));
6725 if (istemplatekind(nack, "omit")) {
6726 /* respond with a related acknowledgement */
6727 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_ACK(chan_nr));
6728 } else {
6729 f_ipa_tx(0, ts_RSL_IPA_PDCH_DEACT_NACK(chan_nr, valueof(nack)));
6730 }
6731}
6732
6733private function f_ts_dyn_mode_get(integer bts_nr, integer trx_nr, integer ts_nr)
6734runs on test_CT return charstring {
6735 var charstring cmd, resp;
6736 cmd := "show timeslot "&int2str(bts_nr)&" "&int2str(trx_nr)&" "&int2str(ts_nr);
Stefan Sperlingcff13562018-11-13 15:24:06 +01006737 return f_vty_transceive_match_regexp_retry(BSCVTY, cmd, "*\((*)\)*", 0, 4, 1.0);
Harald Welte94e0c342018-04-07 11:33:23 +02006738}
6739
6740private function f_ts_dyn_mode_assert(integer bts_nr, integer trx_nr, integer ts_nr,
6741 template charstring exp)
6742runs on test_CT {
6743 var charstring mode := f_ts_dyn_mode_get(bts_nr, trx_nr, ts_nr);
6744 if (not match(mode, exp)) {
6745 setverdict(fail, "Unexpected TS Mode: ", mode);
Daniel Willmannafce8662018-07-06 23:11:32 +02006746 mtc.stop;
Harald Welte94e0c342018-04-07 11:33:23 +02006747 }
6748}
6749
6750private function f_ts_set_chcomb(integer bts_nr, integer trx_nr, integer ts_nr, charstring chcomb)
6751runs on test_CT {
6752 f_vty_enter_cfg_ts(BSCVTY, bts_nr, trx_nr, ts_nr);
6753 f_vty_transceive(BSCVTY, "phys_chan_config " & chcomb);
6754 f_vty_transceive(BSCVTY, "end");
6755}
6756
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02006757
6758private function f_ts_reset_chcomb(integer bts_nr) runs on test_CT {
6759 var integer i;
6760 for (i := 0; i < 8; i := i + 1) {
6761 f_ts_set_chcomb(bts_nr, 0, i, phys_chan_config[i]);
6762 }
6763}
6764
Harald Welte94e0c342018-04-07 11:33:23 +02006765private const charstring TCHF_MODE := "TCH/F mode";
6766private const charstring TCHH_MODE := "TCH/H mode";
6767private const charstring PDCH_MODE := "PDCH mode";
6768private const charstring NONE_MODE := "NONE mode";
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006769private const charstring SDCCH8_MODE := "SDCCH8 mode";
Harald Welte94e0c342018-04-07 11:33:23 +02006770
6771/* Test IPA PDCH activation / deactivation triggered by VTY */
6772testcase TC_dyn_pdch_ipa_act_deact() runs on test_CT {
6773 var RSL_Message rsl_unused;
6774
6775 /* change Timeslot 6 before f_init() starts RSL */
6776 f_init_vty();
6777 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6778 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6779
6780 f_init(1, false);
6781 f_sleep(1.0);
6782
6783 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6784
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006785 log("TCH/F_PDCH pchan starts out in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006786 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6787 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6788 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6789 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6790 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006791 log("TCH/F_PDCH pchan, PDCH ACT was ACKed, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006792 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6793
6794 /* De-activate it via VTY */
6795 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6796 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006797 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006798 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6799
6800 /* re-activate it via VTY */
6801 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn);
6802 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006803 log("TCH/F_PDCH pchan, PDCH ACT via VTY, so now in PDCH mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006804 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6805
6806 /* and finally de-activate it again */
6807 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6808 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006809 log("TCH/F_PDCH pchan, PDCH DEACT via VTY, so now back in TCH/F mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006810 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6811
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02006812 /* clean up config */
6813 f_ts_set_chcomb(0, 0, 6, "PDCH");
6814
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006815 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02006816}
6817
6818/* Test IPA PDCH activation NACK */
6819testcase TC_dyn_pdch_ipa_act_nack() runs on test_CT {
6820 var RSL_Message rsl_unused;
6821
6822 /* change Timeslot 6 before f_init() starts RSL */
6823 f_init_vty();
6824 f_ts_set_chcomb(0, 0, 6, "TCH/F_PDCH");
6825 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6826
6827 f_init(1, false);
6828 f_sleep(1.0);
6829
6830 var RslChannelNr chan_nr := valueof(t_RslChanNr_Bm(6));
6831
6832 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6833 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6834 rsl_unused := f_exp_ipa_rx(0, tr_RSL_IPA_PDCH_ACT(chan_nr));
6835 f_ipa_tx(0, ts_RSL_IPA_PDCH_ACT_ACK(chan_nr, ts_RSL_IE_FrameNumber(2342)));
6836 f_sleep(1.0);
6837 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6838
6839 /* De-activate it via VTY */
6840 f_dyn_ipa_pdch_deact(0, 0, chan_nr.tn);
6841 f_sleep(1.0);
6842 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6843
6844 /* re-activate it via VTY, but fail that; check BSC still assumes TCH/F mode */
6845 f_dyn_ipa_pdch_act(0, 0, chan_nr.tn, RSL_ERR_EQUIPMENT_FAIL);
6846 f_sleep(1.0);
6847 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, TCHF_MODE);
6848
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02006849 /* clean up config */
6850 f_ts_set_chcomb(0, 0, 6, "PDCH");
6851
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006852 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02006853}
6854
6855
6856/***********************************************************************
6857 * Osmocom style dynamic PDCH
6858 ***********************************************************************/
6859
6860private function f_dyn_osmo_pdch_act(integer bts_nr, integer trx_nr, integer ts_nr,
6861 template (omit) RSL_Cause nack := omit)
6862runs on test_CT {
6863 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
6864 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02006865 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02006866 /* FIXME: no VTY command to activate Osmocom PDCH !! */
6867 /* expect the BSC to issue the related RSL command */
6868 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT(chan_nr, ?));
6869 if (istemplatekind(nack, "omit")) {
6870 /* respond with a related acknowledgement */
6871 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
6872 } else {
6873 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, valueof(nack)));
6874 }
6875}
6876
6877private function f_dyn_osmo_pdch_deact(integer bts_nr, integer trx_nr, integer ts_nr,
6878 template (omit) RSL_Cause nack := omit)
6879runs on test_CT {
6880 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(ts_nr));
6881 var RSL_Message rsl_unused;
Pau Espin Pedrol64adf372021-06-28 16:25:47 +02006882 /* ask BSC via VTY to activate a given OSMO style chan as PDCH */
Harald Welte94e0c342018-04-07 11:33:23 +02006883 /* FIXME: no VTY command to activate Osmocom PDCH !! */
6884 /* expect the BSC to issue the related RSL command */
6885 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(chan_nr));
6886 if (istemplatekind(nack, "omit")) {
6887 /* respond with a related acknowledgement */
6888 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(chan_nr));
6889 } else {
6890 //f_ipa_tx(0, ts_RSL_RF_CHAN_REL_NACK(chan_nr, valueof(nack)));
6891 }
6892}
6893
6894/* Test Osmocom dyn PDCH activation / deactivation triggered by VTY */
6895testcase TC_dyn_pdch_osmo_act_deact() runs on test_CT {
6896 var RSL_Message rsl_unused;
6897
6898 /* change Timeslot 6 before f_init() starts RSL */
6899 f_init_vty();
6900 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
6901 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6902
6903 f_init(1, false);
6904 f_sleep(1.0);
6905
6906 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
6907
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006908 log("TCH/F_TCH/H_PDCH pchan starts out in disabled mode:");
Harald Welte94e0c342018-04-07 11:33:23 +02006909 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
6910 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6911 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
6912
6913 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 2342));
6914 f_sleep(1.0);
Neels Hofmeyrda4a6952018-06-14 04:02:49 +02006915 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 +02006916 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, PDCH_MODE);
6917
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02006918 /* clean up config */
6919 f_ts_set_chcomb(0, 0, 6, "PDCH");
6920
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006921 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02006922}
6923
6924/* Test Osmocom dyn PDCH activation NACK behavior */
6925testcase TC_dyn_pdch_osmo_act_nack() runs on test_CT {
6926 var RSL_Message rsl_unused;
6927
6928 /* change Timeslot 6 before f_init() starts RSL */
6929 f_init_vty();
6930 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_PDCH");
6931 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6932
6933 f_init(1, false);
6934 f_sleep(1.0);
6935
6936 var RslChannelNr chan_nr := valueof(t_RslChanNr_PDCH(6));
6937
6938 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
6939 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6940 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(chan_nr, ?));
6941
6942 /* NACK this activation and expect the "show timeslot" mode still to be NONE */
6943 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(chan_nr, RSL_ERR_EQUIPMENT_FAIL));
6944 f_sleep(1.0);
6945 f_ts_dyn_mode_assert(0, 0, chan_nr.tn, NONE_MODE);
6946
Neels Hofmeyr887e8f12018-06-27 01:01:55 +02006947 /* clean up config */
6948 f_ts_set_chcomb(0, 0, 6, "PDCH");
6949
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02006950 f_shutdown_helper();
Harald Welte94e0c342018-04-07 11:33:23 +02006951}
6952
Pau Espin Pedrol5b381082021-06-28 17:14:03 +02006953/* Test Osmocom dyn TS SDCCH8 activation / deactivation */
6954testcase TC_dyn_ts_sdcch8_act_deact() runs on test_CT {
6955 var RSL_Message rsl_unused, rsl_msg;
6956 var DchanTuple dt;
6957 var BSSAP_N_CONNECT_ind rx_c_ind;
6958
6959 /* change Timeslot 6 before f_init() starts RSL */
6960 f_init_vty();
6961 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
6962 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
6963
6964 f_init(1, false);
6965 f_sleep(1.0);
6966
6967 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
6968
6969 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
6970 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
6971 /* The BSC will activate the dynamic PDCH by default, so confirm that */
6972 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
6973
6974 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
6975 f_sleep(1.0);
6976 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
6977 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
6978
6979 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
6980 * on CCCH+SDCCH4+CBCH) */
6981 var integer i;
6982 for (i := 0; i < 3; i := i + 1) {
6983 dt := f_est_dchan('23'O, i, '00010203040506'O);
6984 }
6985
6986 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
6987 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
6988 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
6989 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
6990
6991 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
6992 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
6993
6994 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
6995 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
6996 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
6997 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
6998
6999 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7000 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7001 dt.sccp_conn_id := rx_c_ind.connectionId;
7002 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7003
7004 /* Instruct BSC to clear channel */
7005 var BssmapCause cause := 0;
7006 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7007 f_exp_chan_rel_and_clear(dt, 0);
7008
7009 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7010 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7011 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7012 f_sleep(1.0);
7013 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7014
7015 /* clean up config */
7016 f_ts_set_chcomb(0, 0, 6, "PDCH");
7017
7018 f_shutdown_helper();
7019}
7020
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007021/* Test Osmocom dyn TS SDCCH8 activation / deactivation: If activating dyn TS as
7022 SDCCH8 would end up in having no free TCH, then BSC should decide to activate
7023 it as TCH directly instead. SYS#5309. */
7024testcase TC_dyn_ts_sdcch8_tch_call_act_deact() runs on test_CT {
7025 var RSL_Message rsl_unused, rsl_msg;
7026 var DchanTuple dt;
7027 var BSSAP_N_CONNECT_ind rx_c_ind;
7028 var integer i;
7029
7030 /* change Timeslot 6 before f_init() starts RSL */
7031 f_init_vty();
7032 for (i := 1; i < 8; i := i + 1) {
7033 if (i == 6) {
7034 f_ts_set_chcomb(0, 0, i, "TCH/F_TCH/H_SDCCH8_PDCH");
7035 } else {
7036 f_ts_set_chcomb(0, 0, i, "PDCH");
7037 }
7038 }
7039 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7040
7041 f_init(1, false);
7042 f_sleep(1.0);
7043
7044 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7045
7046 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7047 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7048 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7049 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7050
7051 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7052 f_sleep(1.0);
7053 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7054 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7055
7056 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7057 * on CCCH+SDCCH4+CBCH) */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007058 var OCT1 ra := '43'O; /* RA containing reason=originating speech call*/
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007059 for (i := 0; i < 3; i := i + 1) {
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007060 dt := f_est_dchan(ra, i, '00010203040506'O);
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007061 }
7062
7063 /* Now the dyn ts is selected. First PDCH is released, then TCH chan is activated */
Pau Espin Pedrol2ebbe7c2021-07-23 16:17:09 +02007064 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int(ra) + i, 1), 2342));
Pau Espin Pedrol0953bf82021-07-09 13:20:19 +02007065 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7066 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7067
7068 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7069 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7070
7071 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7072 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(dt.rsl_chan_nr, 2342));
7073 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7074 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, TCHH_MODE);
7075
7076 f_ipa_tx(0, ts_RSL_EST_IND(dt.rsl_chan_nr, valueof(ts_RslLinkID_DCCH(0)), '1234'O));
7077 BSSAP.receive(tr_BSSAP_CONNECT_ind(?, ?, tr_BSSMAP_ComplL3('1234'O))) -> value rx_c_ind;
7078 dt.sccp_conn_id := rx_c_ind.connectionId;
7079 BSSAP.send(ts_BSSAP_CONNECT_res(dt.sccp_conn_id));
7080
7081 /* Instruct BSC to clear channel */
7082 var BssmapCause cause := 0;
7083 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ts_BSSMAP_ClearCommand(cause)));
7084 f_exp_chan_rel_and_clear(dt, 0);
7085
7086 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7087 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7088 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7089 f_sleep(1.0);
7090 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7091
7092 /* clean up config */
7093 f_ts_reset_chcomb(0);
7094 /* TODO: clean up other channels? */
7095
7096 f_shutdown_helper();
7097}
7098
Pau Espin Pedrolcdf26142021-06-28 17:14:03 +02007099/* Test Osmocom dyn TS SDCCH8 activation / deactivation when SDCCH fails at BTS */
7100testcase TC_dyn_ts_sdcch8_act_nack() runs on test_CT {
7101 var RSL_Message rsl_unused, rsl_msg;
7102 var DchanTuple dt;
7103 var BSSAP_N_CONNECT_ind rx_c_ind;
7104 var GsmRrMessage rr;
7105
7106 /* change Timeslot 6 before f_init() starts RSL */
7107 f_init_vty();
7108 f_ts_set_chcomb(0, 0, 6, "TCH/F_TCH/H_SDCCH8_PDCH");
7109 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
7110
7111 f_init(1, false);
7112 f_sleep(1.0);
7113
7114 var RslChannelNr pdch_chan_nr := valueof(t_RslChanNr_PDCH(6));
7115
7116 log("TCH/F_TCH/H_SDCCH8_PDCH pchan starts out in disabled mode:");
7117 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, NONE_MODE);
7118 /* The BSC will activate the dynamic PDCH by default, so confirm that */
7119 rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7120
7121 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7122 f_sleep(1.0);
7123 log("TCH/F_TCH/H_SDCCH8_PDC requested to PDCH ACT on startup, which was ACKed, so now in PDCH:");
7124 f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE);
7125
7126 /* Fill TS0 SDCCH channels (NOTE: only 3 SDCCH/4 channels are available
7127 * on CCCH+SDCCH4+CBCH) */
7128 var integer i;
7129 for (i := 0; i < 3; i := i + 1) {
7130 dt := f_est_dchan('23'O, i, '00010203040506'O);
7131 }
7132
7133 /* Now the dyn ts is selected. First PDCH is released, then sdcch chan is activated */
7134 f_ipa_tx(0, ts_RSL_CHAN_RQD(int2oct(oct2int('23'O) + i, 1), 2342));
7135 rsl_unused := f_exp_ipa_rx(0, tr_RSL_RF_CHAN_REL(pdch_chan_nr));
7136 f_ipa_tx(0, ts_RSL_RF_CHAN_REL_ACK(pdch_chan_nr));
7137
7138 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
7139 dt.rsl_chan_nr := rsl_msg.ies[0].body.chan_nr;
7140
7141 f_ts_dyn_mode_assert(0, 0, dt.rsl_chan_nr.tn, SDCCH8_MODE);
7142 f_ipa_tx(0, ts_RSL_CHAN_ACT_NACK(dt.rsl_chan_nr, RSL_ERR_EQUIPMENT_FAIL));
7143 rsl_msg := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
7144 rr := dec_GsmRrMessage(rsl_msg.ies[1].body.full_imm_ass_info.payload);
7145 if (rr.header.message_type != IMMEDIATE_ASSIGNMENT_REJECT) {
7146 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Expected reject");
7147 }
7148
7149 /* FIXME? Currently the TS stays in state BORKEN: */
7150
7151 /* The BSC will switch the TS back to PDCH once the only lchan using it is released: */
7152 /* rsl_unused := f_exp_ipa_rx(0, tr_RSL_CHAN_ACT_PDCH(pdch_chan_nr, ?));
7153 * f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(pdch_chan_nr, 2342));
7154 * f_sleep(1.0);
7155 * f_ts_dyn_mode_assert(0, 0, pdch_chan_nr.tn, PDCH_MODE)
7156 */
7157
7158 /* clean up config */
7159 f_ts_set_chcomb(0, 0, 6, "PDCH");
7160
7161 f_shutdown_helper();
7162}
7163
Stefan Sperling0796a822018-10-05 13:01:39 +02007164testcase TC_chopped_ipa_ping() runs on test_CT {
Stefan Sperling554123f2018-10-09 14:12:30 +02007165 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port, mp_bsc_ctrl_port};
Stefan Sperling0796a822018-10-05 13:01:39 +02007166 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7167 IPA_Testing.f_run_TC_chopped_ipa_ping(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7168 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007169 f_shutdown_helper();
Stefan Sperling0796a822018-10-05 13:01:39 +02007170}
7171
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007172testcase TC_chopped_ipa_payload() runs on test_CT {
7173 const Integers bsc_ipa_ports := {mp_bsc_rsl_port, mp_bsc_oml_port
7174 /* TODO: mp_bsc_ctrl_port does not work yet */};
7175 for (var integer i := 0; i < lengthof(bsc_ipa_ports); i := i + 1) {
7176 IPA_Testing.f_run_TC_chopped_ipa_payload(mp_bsc_ip, bsc_ipa_ports[i], CONNECT_TO_SERVER);
7177 }
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007178 f_shutdown_helper();
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007179}
7180
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007181/* Verify the BSC sends the MS Power Parameters IE during CHAN ACT to make sure
7182 the BTS does autonomous MS power control loop */
7183testcase TC_assignment_verify_ms_power_params_ie() runs on test_CT {
7184 var MSC_ConnHdlr vc_conn;
7185 var TestHdlrParams pars := f_gen_test_hdlr_pars();
7186 //pars.encr := valueof(t_EncrParams('01'O, f_rnd_octstring(8)));
7187 pars.exp_ms_power_params := true;
7188
7189 f_init(1, true);
7190 f_sleep(1.0);
7191 vc_conn := f_start_handler(refers(f_tc_assignment_fr_a5), pars);
7192 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007193 f_shutdown_helper();
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01007194}
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02007195
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02007196/* Verify activation and deactivation of the BCCH carrier power reduction mode */
7197testcase TC_c0_power_red_mode() runs on test_CT {
7198 f_init(1);
7199
7200 for (var integer red := 6; red >= 0; red := red - 2) {
7201 /* Configure BCCH carrier power reduction mode via the VTY */
7202 f_vty_transceive(BSCVTY, "bts 0 c0-power-reduction " & int2str(red));
7203
7204 /* Expect Osmocom specific BS Power Control message on the RSL */
7205 var template RSL_Message tr_rsl_pdu := tr_RSL_BS_PWR_CTRL(
7206 chan_nr := t_RslChanNr_BCCH(0),
7207 bs_power := tr_RSL_IE_BS_Power(red / 2));
7208 tr_rsl_pdu.msg_disc := tr_RSL_MsgDisc(RSL_MDISC_CCHAN, false);
7209 var RSL_Message unused := f_exp_ipa_rx(0, tr_rsl_pdu);
7210
7211 /* Additionally verify the applied value over the CTRL interface */
7212 var CtrlValue cred := f_ctrl_get_bts(IPA_CTRL, 0, "c0-power-reduction");
7213 if (cred != int2str(red)) {
7214 setverdict(fail, "Unexpected BCCH carrier power reduction value ",
7215 cred, " (expected ", red, ")");
7216 }
7217 }
7218
7219 f_shutdown_helper();
7220}
7221
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007222/***********************************************************************
7223 * MSC Pooling
7224 ***********************************************************************/
7225
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007226template MobileIdentityLV ts_MI_TMSI_NRI_LV(integer nri_v, integer nri_bitlen := 10) :=
Harald Weltebf397612021-01-14 20:39:46 +01007227 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 +02007228
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007229private 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 +02007230runs on MSC_ConnHdlr {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007231 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007232 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007233 f_logp(BSCVTY, "Got RSL RR Release");
7234 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007235 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007236 f_logp(BSCVTY, "Got RSL Deact SACCH");
7237 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007238 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007239 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007240 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7241 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02007242 break;
7243 }
7244 }
7245}
7246
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007247friend function f_perform_clear(RSL_DCHAN_PT rsl_pt := RSL, RSLEM_PROC_PT rsl_proc_pt := RSL_PROC,
7248 template PDU_ML3_NW_MS exp_rr_rel_tmpl := tr_RRM_RR_RELEASE)
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02007249runs on MSC_ConnHdlr {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007250 f_logp(BSCVTY, "MSC instructs BSC to clear channel");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007251 BSSAP.send(ts_BSSMAP_ClearCommand(0));
7252 interleave {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007253 [] rsl_pt.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch exp_rr_rel_tmpl)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007254 f_logp(BSCVTY, "Got RSL RR Release");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007255 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007256 [] rsl_pt.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007257 f_logp(BSCVTY, "Got RSL Deact SACCH");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007258 }
7259 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007260 f_logp(BSCVTY, "Got BSSMAP Clear Complete");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007261 /* Also drop the SCCP connection */
7262 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
7263 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02007264 [] rsl_pt.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007265 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007266 rsl_pt.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
7267 f_rslem_unregister(0, g_chan_nr, PT := rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007268 }
7269 }
7270}
7271
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007272private function f_perform_compl_l3(RSL_DCHAN_PT rsl_pt, RSLEM_PROC_PT rsl_proc_pt,
7273 template PDU_ML3_MS_NW l3_info, boolean do_clear := true, boolean expect_bssmap_l3 := true)
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007274runs on MSC_ConnHdlr {
7275 timer T := 10.0;
7276 var octetstring l3_enc := enc_PDU_ML3_MS_NW(valueof(l3_info));
7277
Neels Hofmeyr767548a2020-08-09 20:26:07 +00007278 f_logp(BSCVTY, "establish channel, send Complete Layer 3 Info");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007279 f_create_bssmap_exp(l3_enc);
7280
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007281 /* RSL_Emulation.f_chan_est() on rsl_pt:
7282 * This is basically code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007283 * RSL_Emulation.f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
7284 */
7285 var RSL_Message rx_rsl;
7286 var GsmRrMessage rr;
7287
7288 /* request a channel to be established */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007289 rsl_pt.send(ts_RSLDC_ChanRqd(g_pars.ra, g_pars.fn));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007290 /* expect immediate assignment.
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007291 * Code dup with s/RSL/rsl_pt from:
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007292 * rx_rsl := f_rx_or_fail(tr_RSL_IMM_ASSIGN);
7293 */
7294 timer Tt := 10.0;
7295
7296 /* request a channel to be established */
7297 Tt.start;
7298 alt {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007299 [] rsl_pt.receive(tr_RSL_IMM_ASSIGN) -> value rx_rsl {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007300 Tt.stop;
7301 }
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007302 [] rsl_pt.receive {
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007303 setverdict(fail, "Unexpected RSL message on DCHAN");
7304 mtc.stop;
7305 }
7306 [] Tt.timeout {
7307 setverdict(fail, "Timeout waiting for RSL on DCHAN");
7308 mtc.stop;
7309 }
7310 }
7311 rr := dec_GsmRrMessage(rx_rsl.ies[1].body.full_imm_ass_info.payload);
7312 g_chan_nr := rr.payload.imm_ass.chan_desc.chan_nr;
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007313 rsl_pt.send(ts_RSL_EST_IND(g_chan_nr, valueof(g_pars.link_id), l3_enc));
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007314
7315
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007316 if (expect_bssmap_l3) {
7317 f_logp(BSCVTY, "expect BSSAP Complete Layer 3 Info at MSC");
7318 var template PDU_BSSAP exp_l3_compl;
7319 exp_l3_compl := tr_BSSMAP_ComplL3()
7320 if (g_pars.aoip == false) {
7321 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := omit;
7322 } else {
7323 exp_l3_compl.pdu.bssmap.completeLayer3Information.codecList := ?;
7324 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007325
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007326 var PDU_BSSAP bssap;
7327 T.start;
7328 alt {
7329 [] BSSAP.receive(exp_l3_compl) -> value bssap {
7330 f_logp(BSCVTY, "received expected Complete Layer 3 Info at MSC");
7331 log("rx exp_l3_compl = ", bssap);
7332 }
7333 [] BSSAP.receive(tr_BSSMAP_ComplL3) {
7334 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Received non-matching COMPLETE LAYER 3 INFORMATION");
7335 }
7336 [] T.timeout {
7337 Misc_Helpers.f_shutdown(__BFILE__, __LINE__, fail, "Timeout waiting for COMPLETE LAYER 3 INFORMATION");
7338 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007339 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007340
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007341 /* start ciphering, if requested */
7342 if (ispresent(g_pars.encr)) {
7343 f_logp(BSCVTY, "start ciphering");
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007344 f_cipher_mode(g_pars.encr, rsl_pt := rsl_pt, rsl_proc_pt := rsl_proc_pt);
Neels Hofmeyr66e15092020-10-12 18:44:41 +00007345 }
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007346 }
7347
7348 if (do_clear) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007349 f_perform_clear(rsl_pt, rsl_proc_pt);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007350 }
7351 setverdict(pass);
7352 f_sleep(1.0);
7353}
7354
7355private function f_tc_mscpool_compl_l3(charstring id) runs on MSC_ConnHdlr {
7356 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7357 if (g_pars.mscpool.rsl_idx == 0) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007358 f_perform_compl_l3(RSL, RSL_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007359 } else if (g_pars.mscpool.rsl_idx == 1) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007360 f_perform_compl_l3(RSL1, RSL1_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007361 } else if (g_pars.mscpool.rsl_idx == 2) {
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007362 f_perform_compl_l3(RSL2, RSL2_PROC, g_pars.mscpool.l3_info);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007363 }
7364}
7365
7366/* Various Complete Layer 3 by IMSI all end up with the first MSC, because the other MSCs are not connected. */
7367private function f_tc_mscpool_L3Compl_on_1_msc(charstring id) runs on MSC_ConnHdlr {
7368 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007369 f_perform_compl_l3(RSL, RSL_PROC, ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O) );
7370 f_perform_compl_l3(RSL, RSL_PROC, ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_IMSI_LV('001010000000002'H))) );
7371 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))) );
7372 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 +02007373}
7374testcase TC_mscpool_L3Compl_on_1_msc() runs on test_CT {
7375
7376 f_init(1, true);
7377 f_sleep(1.0);
7378 var MSC_ConnHdlr vc_conn;
7379 var TestHdlrParams pars := f_gen_test_hdlr_pars();
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007380
7381 f_ctrs_msc_init();
7382
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007383 vc_conn := f_start_handler(refers(f_tc_mscpool_L3Compl_on_1_msc), pars);
7384 vc_conn.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007385
7386 f_ctrs_msc_expect(0, "mscpool:subscr:new", 4);
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007387 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007388}
7389
7390/* Three Layer 3 Complete by IMSI are round-robin'ed across two connected MSCs */
7391/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7392 * just as well using only RSL. */
7393testcase TC_mscpool_L3Complete_by_imsi_round_robin() runs on test_CT {
7394
7395 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7396 f_sleep(1.0);
7397
7398 /* Control which MSC gets chosen next by the round-robin, otherwise
7399 * would be randomly affected by which other tests ran before this. */
7400 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7401
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007402 f_ctrs_msc_init();
7403
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007404 var MSC_ConnHdlr vc_conn1;
7405 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7406 pars1.mscpool.rsl_idx := 0;
7407 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7408 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7409 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007410 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007411
7412 var MSC_ConnHdlr vc_conn2;
7413 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7414 pars2.mscpool.rsl_idx := 1;
7415 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7416 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7417 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007418 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007419
7420 /* Test round-robin wrap to the first MSC */
7421 var MSC_ConnHdlr vc_conn3;
7422 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7423 pars3.mscpool.rsl_idx := 2;
7424 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7425 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7426 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007427 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007428 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007429}
7430
7431/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 0
7432 * (configured in osmo-bsc.cfg). */
7433/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7434 * just as well using only RSL. */
7435testcase TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() runs on test_CT {
7436
7437 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7438 f_sleep(1.0);
7439
7440 /* Control which MSC gets chosen next by the round-robin, otherwise
7441 * would be randomly affected by which other tests ran before this. */
7442 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7443
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007444 f_ctrs_msc_init();
7445
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007446 var MSC_ConnHdlr vc_conn1;
7447 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7448 pars1.mscpool.rsl_idx := 0;
7449 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7450 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7451 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007452 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007453
7454 var MSC_ConnHdlr vc_conn2;
7455 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7456 pars2.mscpool.rsl_idx := 1;
7457 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7458 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7459 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007460 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007461
7462 /* Test round-robin wrap to the first MSC */
7463 var MSC_ConnHdlr vc_conn3;
7464 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7465 pars3.mscpool.rsl_idx := 2;
7466 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(0)), '00F110'O));
7467 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7468 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007469 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007470 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007471}
7472
7473/* Three LU by TMSI are round-robin'ed across two connected MSCs, because they contain the NULL-NRI 1
7474 * (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
7475 * NULL-NRI setting is stronger than that. */
7476/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7477 * just as well using only RSL. */
7478testcase TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() runs on test_CT {
7479
7480 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7481 f_sleep(1.0);
7482
7483 /* Control which MSC gets chosen next by the round-robin, otherwise
7484 * would be randomly affected by which other tests ran before this. */
7485 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7486
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007487 f_ctrs_msc_init();
7488
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007489 var MSC_ConnHdlr vc_conn1;
7490 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7491 pars1.mscpool.rsl_idx := 0;
7492 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7493 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7494 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007495 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007496
7497 var MSC_ConnHdlr vc_conn2;
7498 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7499 pars2.mscpool.rsl_idx := 1;
7500 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7501 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7502 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007503 f_ctrs_msc_expect(1, "mscpool:subscr:reattach");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007504
7505 /* Test round-robin wrap to the first MSC */
7506 var MSC_ConnHdlr vc_conn3;
7507 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7508 pars3.mscpool.rsl_idx := 2;
7509 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(1)), '00F110'O));
7510 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7511 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007512 f_ctrs_msc_expect(0, "mscpool:subscr:reattach");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007513 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007514}
7515
7516/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI not
7517 * assigned to any MSC (configured in osmo-bsc.cfg). */
7518/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7519 * just as well using only RSL. */
7520testcase TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() runs on test_CT {
7521
7522 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7523 f_sleep(1.0);
7524
7525 /* Control which MSC gets chosen next by the round-robin, otherwise
7526 * would be randomly affected by which other tests ran before this. */
7527 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7528
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007529 f_ctrs_msc_init();
7530
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007531 var MSC_ConnHdlr vc_conn1;
7532 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7533 pars1.mscpool.rsl_idx := 0;
7534 /* An NRI that is not assigned to any MSC */
7535 pars1.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(1023))));
7536 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7537 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007538 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007539
7540 var MSC_ConnHdlr vc_conn2;
7541 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7542 pars2.mscpool.rsl_idx := 1;
7543 /* An NRI that is not assigned to any MSC */
7544 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(768)), '00F110'O));
7545 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7546 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007547 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007548
7549 /* Test round-robin wrap to the first MSC */
7550 var MSC_ConnHdlr vc_conn3;
7551 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7552 pars3.mscpool.rsl_idx := 2;
7553 /* An NRI that is not assigned to any MSC */
7554 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_SS_ACT, valueof(ts_MI_TMSI_NRI_LV(819))));
7555 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7556 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007557 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007558 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007559}
7560
7561/* Three Layer 3 Complete by TMSI are round-robin'ed across two connected MSCs, because they contain an NRI
7562 * assigned to an MSC that is currently not connected (configured in osmo-bsc.cfg). */
7563/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7564 * just as well using only RSL. */
7565testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() runs on test_CT {
7566
7567 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7568 f_sleep(1.0);
7569
7570 /* Control which MSC gets chosen next by the round-robin, otherwise
7571 * would be randomly affected by which other tests ran before this. */
7572 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7573
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007574 f_ctrs_msc_init();
7575
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007576 var MSC_ConnHdlr vc_conn1;
7577 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7578 pars1.mscpool.rsl_idx := 0;
7579 /* An NRI that is assigned to an unconnected MSC */
7580 pars1.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(512))));
7581 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7582 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007583 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7584 f_ctrs_msc_add(0, "mscpool:subscr:new");
7585 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007586
7587 var MSC_ConnHdlr vc_conn2;
7588 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7589 pars2.mscpool.rsl_idx := 1;
7590 /* An NRI that is assigned to an unconnected MSC */
7591 pars2.mscpool.l3_info := valueof(ts_ML3_MO_MM_IMSI_DET_Ind(valueof(ts_MI_TMSI_NRI_LV(767))));
7592 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7593 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007594 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7595 f_ctrs_msc_add(1, "mscpool:subscr:new");
7596 f_ctrs_msc_verify();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007597
7598 /* Test round-robin wrap to the first MSC */
7599 var MSC_ConnHdlr vc_conn3;
7600 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7601 pars3.mscpool.rsl_idx := 2;
7602 /* An NRI that is assigned to an unconnected MSC */
7603 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(750)), '00F110'O));
7604 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7605 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007606 f_ctrs_msc_add(2, "mscpool:subscr:attach_lost");
7607 f_ctrs_msc_add(0, "mscpool:subscr:new");
7608 f_ctrs_msc_verify();
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007609 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007610}
7611
7612/* Three Layer 3 Complete by TMSI with valid NRI for the second MSC are all directed to the second MSC (configured in
7613 * osmo-bsc.cfg). */
7614/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7615 * just as well using only RSL. */
7616testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_1() runs on test_CT {
7617
7618 f_init(nr_bts := 3, handler_mode := true, nr_msc := 2);
7619 f_sleep(1.0);
7620
7621 /* All TMSIs in this test point at the second MSC, set the round robin to point at the first MSC to make sure
7622 * this is not using round-robin. */
7623 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7624
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007625 f_ctrs_msc_init();
7626
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007627 var MSC_ConnHdlr vc_conn1;
7628 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7629 pars1.mscpool.rsl_idx := 0;
7630 /* An NRI of the second MSC's range (256-511) */
7631 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(256))));
7632 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7633 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007634 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007635
7636 var MSC_ConnHdlr vc_conn2;
7637 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 1);
7638 pars2.mscpool.rsl_idx := 1;
7639 /* An NRI of the second MSC's range (256-511) */
7640 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(260))));
7641 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7642 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007643 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007644
7645 var MSC_ConnHdlr vc_conn3;
7646 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7647 pars3.mscpool.rsl_idx := 2;
7648 /* An NRI of the second MSC's range (256-511) */
7649 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(511)), '00F110'O));
7650 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7651 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007652 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007653 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007654}
7655
7656/* Layer 3 Complete by TMSI with valid NRI for the third MSC are directed to the third MSC (configured in osmo-bsc.cfg),
7657 * while a round-robin remains unaffected by that. */
7658/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7659 * just as well using only RSL. */
7660testcase TC_mscpool_L3Complete_by_tmsi_valid_nri_2() runs on test_CT {
7661
7662 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7663 f_sleep(1.0);
7664
7665 /* All TMSIs in this test point at the third MSC, set the round robin to point at the second MSC to make sure
7666 * this is not using round-robin. */
7667 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
7668
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007669 f_ctrs_msc_init();
7670
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007671 var MSC_ConnHdlr vc_conn1;
7672 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 2);
7673 pars1.mscpool.rsl_idx := 0;
7674 /* An NRI of the third MSC's range (512-767) */
7675 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_SMS, valueof(ts_MI_TMSI_NRI_LV(512))));
7676 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7677 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007678 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007679
7680 var MSC_ConnHdlr vc_conn2;
7681 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7682 pars2.mscpool.rsl_idx := 1;
7683 /* An NRI of the third MSC's range (512-767) */
7684 pars2.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_TMSI_NRI_LV(678))));
7685 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7686 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007687 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007688
7689 /* The above forwardings to third MSC have not affected the round robin, which still points at the second MSC */
7690 var MSC_ConnHdlr vc_conn3;
7691 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 1);
7692 pars3.mscpool.rsl_idx := 2;
7693 pars3.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000013'H)), '00F110'O));
7694 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7695 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007696 f_ctrs_msc_expect(1, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007697 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007698}
7699
7700/* LU with a TMSI but indicating a different PLMN in its previous LAI: ignore the NRI. */
7701/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7702 * just as well using only RSL. */
7703testcase TC_mscpool_LU_by_tmsi_from_other_PLMN() runs on test_CT {
7704
7705 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7706 f_sleep(1.0);
7707
7708 /* The TMSIs in this test points at the second MSC, but since it is from a different PLMN, round-robin is used
7709 * instead, and hits msc 0. */
7710 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7711
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007712 f_ctrs_msc_init();
7713
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007714 /* An NRI of the second MSC's range (256-511), but a PLMN that doesn't match with osmo-bsc.cfg */
7715 var MSC_ConnHdlr vc_conn1;
7716 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7717 pars1.mscpool.rsl_idx := 0;
7718 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(260)), '99F999'O));
7719 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7720 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007721 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007722
7723 /* An NRI of the third MSC's range (512-767) and a matching PLMN gets directed by NRI. */
7724 var MSC_ConnHdlr vc_conn2;
7725 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7726 pars2.mscpool.rsl_idx := 1;
7727 pars2.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_TMSI_NRI_LV(555)), '00F110'O));
7728 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7729 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007730 f_ctrs_msc_expect(2, "mscpool:subscr:known");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007731 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007732}
7733
7734/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by IMSI, which would be
7735 * round-robined to another MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7736private function f_tc_mscpool_paging_imsi(charstring id) runs on MSC_ConnHdlr {
7737 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7738 //cid_list := { cIl_allInBSS := ''O };
7739 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7740 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7741 var BSSAP_N_UNITDATA_req paging;
7742 var hexstring imsi := '001010000000123'H;
7743
7744 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7745
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007746 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007747 valueof(ts_BSSMAP_Paging(imsi, cid_list, omit, bssmap_chneed))));
7748 BSSAP.send(paging);
7749
7750 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7751 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7752 * channel number is picked here. */
7753 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7754 f_rslem_register(0, new_chan_nr);
7755 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(imsi)));
7756 f_rslem_unregister(0, new_chan_nr);
7757
7758 /* Despite the round robin pointing at the second MSC ('roundrobin next 1'), the earlier Paging for the same IMSI
7759 * causes this Paging Response to go to the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007760 f_perform_compl_l3(RSL, RSL_PROC, ts_PAG_RESP(valueof(ts_MI_IMSI_LV(imsi))) );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007761 f_sleep(1.0);
7762}
7763testcase TC_mscpool_paging_and_response_imsi() runs on test_CT {
7764 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7765 f_sleep(1.0);
7766
7767 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7768 * second MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7769 f_vty_transceive(BSCVTY, "mscpool roundrobin next 1");
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;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007776 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7777 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007778 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_imsi), pars1);
7779 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007780 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007781 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007782}
7783
7784/* Make sure that whichever MSC paged a subscriber will also get the Paging Response. Page by TMSI with an NRI value
7785 * that matches a different MSC, to make sure the Paging->Response relation is stronger than the NRI->MSC mapping. */
7786private function f_tc_mscpool_paging_tmsi(charstring id) runs on MSC_ConnHdlr {
7787 var template BSSMAP_FIELD_CellIdentificationList cid_list := { cIl_CI := { ts_BSSMAP_CI_CI(0) } };
7788 //cid_list := { cIl_allInBSS := ''O };
7789 var RSL_ChanNeeded rsl_chneed := RSL_CHANNEED_SDCCH;
7790 var template BSSMAP_IE_ChannelNeeded bssmap_chneed := ts_BSSMAP_IE_ChanNeeded(int2bit(enum2int(valueof(rsl_chneed)),2));
7791 var integer nri_v := 300; /* <-- second MSC's NRI */
Harald Weltebf397612021-01-14 20:39:46 +01007792 var octetstring tmsi := f_gen_tmsi(suffix := 0, nri_v := nri_v);
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007793 var BSSAP_N_UNITDATA_req paging;
7794
7795 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
7796
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007797 paging := valueof(ts_BSSAP_UNITDATA_req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007798 valueof(ts_BSSMAP_Paging('001010000000011'H, cid_list, tmsi, bssmap_chneed))));
7799 BSSAP.send(paging);
7800
7801 /* Register any RSL conn so that the Paging Command gets received here. With the current RSL_Emulation's main()
7802 * handling of '[bts_role] IPA_PT.receive(tr_ASP_RSL_UD(tr_RSL_PAGING_CMD()))' it doesn't matter at all which
7803 * channel number is picked here. */
7804 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(0, RSL_CHAN_NR_INVALID));
7805 f_rslem_register(0, new_chan_nr);
7806 RSL.receive(tr_RSL_PAGING_CMD(t_MI_TMSI(tmsi)));
7807 f_rslem_unregister(0, new_chan_nr);
7808
7809 /* Despite the NRI matching the second MSC (NRI from 'msc 1' in osmo-bsc.cfg) and round robin pointing at the
7810 * third MSC ('roundrobin next 2'), the earlier Paging for the same TMSI causes this Paging Response to go to
7811 * the first MSC (bssap_idx := 0). */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02007812 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 +02007813 f_sleep(1.0);
7814}
7815testcase TC_mscpool_paging_and_response_tmsi() runs on test_CT {
7816 f_init(nr_bts := 1, handler_mode := true, nr_msc := 3);
7817 f_sleep(1.0);
7818
7819 /* Testing a Paging on the first MSC to get a Paging Response back to the first MSC. Set round robin to the
7820 * third MSC to make sure we're getting the Paging logic, not a coincidental round robin match. */
7821 f_vty_transceive(BSCVTY, "mscpool roundrobin next 2");
7822
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007823 f_ctrs_msc_init();
7824
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007825 var MSC_ConnHdlr vc_conn1;
7826 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7827 pars1.mscpool.rsl_idx := 0;
Neels Hofmeyr90f80962020-06-12 16:16:55 +02007828 pars1.sccp_addr_bsc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_peer;
7829 pars1.sccp_addr_msc := g_bssap[pars1.mscpool.bssap_idx].sccp_addr_own;
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007830 vc_conn1 := f_start_handler(refers(f_tc_mscpool_paging_tmsi), pars1);
7831 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007832 f_ctrs_msc_expect(0, "mscpool:subscr:paged");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007833 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007834}
7835
7836/* For round-robin, skip an MSC that has 'no allow-attach' set. */
7837/* FIXME: each run is using a separate RSLem: RSL, RSL1, RSL2. It should work
7838 * just as well using only RSL. */
7839testcase TC_mscpool_no_allow_attach_round_robin() runs on test_CT {
7840
7841 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7842 f_sleep(1.0);
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00007843 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
7844 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007845
7846 /* Control which MSC gets chosen next by the round-robin, otherwise
7847 * would be randomly affected by which other tests ran before this. */
7848 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7849
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007850 f_ctrs_msc_init();
7851
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007852 var MSC_ConnHdlr vc_conn1;
7853 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 0);
7854 pars1.mscpool.rsl_idx := 0;
7855 pars1.mscpool.l3_info := valueof(ts_LU_REQ(LU_Type_IMSI_Attach, valueof(ts_MI_IMSI_LV('001010000000001'H)), '00F110'O));
7856 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7857 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007858 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007859
7860 var MSC_ConnHdlr vc_conn2;
7861 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 2);
7862 pars2.mscpool.rsl_idx := 1;
7863 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7864 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7865 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007866 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007867
7868 var MSC_ConnHdlr vc_conn3;
7869 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 0);
7870 pars3.mscpool.rsl_idx := 2;
7871 pars3.mscpool.l3_info := valueof(ts_PAG_RESP(valueof(ts_MI_IMSI_LV('001010000000003'H))));
7872 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7873 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007874 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007875 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007876}
7877
7878/* An MSC that has 'no allow-attach' set should still serve subscribers that are already attached according to their
7879 * TMSI NRI. */
7880testcase TC_mscpool_no_allow_attach_valid_nri() runs on test_CT {
7881
7882 f_init(nr_bts := 3, handler_mode := true, nr_msc := 3);
7883 f_sleep(1.0);
7884
Neels Hofmeyra460f1f2020-08-09 20:17:03 +00007885 /* Mark the second MSC as offloading, round-robin should skip this MSC now. */
7886 f_vty_msc_allow_attach(BSCVTY, {true, false, true});
7887
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007888 /* Control which MSC gets chosen next by the round-robin, otherwise
7889 * would be randomly affected by which other tests ran before this. */
7890 f_vty_transceive(BSCVTY, "mscpool roundrobin next 0");
7891
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007892 f_ctrs_msc_init();
7893
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007894 /* Round robin points at msc 0, but the valid NRI directs to msc 1, even though msc 1 has 'no allow-attach'. */
7895 var MSC_ConnHdlr vc_conn1;
7896 var TestHdlrParams pars1 := f_gen_test_hdlr_pars(bssap_idx := 1);
7897 pars1.mscpool.rsl_idx := 0;
7898 /* An NRI of the second MSC's range (256-511) */
7899 pars1.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_TMSI_NRI_LV(260))));
7900 vc_conn1 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars1);
7901 vc_conn1.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007902 f_ctrs_msc_expect(1, "mscpool:subscr:known");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007903
7904 var MSC_ConnHdlr vc_conn2;
7905 var TestHdlrParams pars2 := f_gen_test_hdlr_pars(bssap_idx := 0);
7906 pars2.mscpool.rsl_idx := 1;
7907 pars2.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000002'H))));
7908 vc_conn2 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars2);
7909 vc_conn2.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007910 f_ctrs_msc_expect(0, "mscpool:subscr:new");
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007911
7912 var MSC_ConnHdlr vc_conn3;
7913 var TestHdlrParams pars3 := f_gen_test_hdlr_pars(bssap_idx := 2);
7914 pars3.mscpool.rsl_idx := 2;
7915 pars3.mscpool.l3_info := valueof(ts_CM_SERV_REQ(CM_TYPE_MO_CALL, valueof(ts_MI_IMSI_LV('001010000000003'H))));
7916 vc_conn3 := f_start_handler(refers(f_tc_mscpool_compl_l3), pars3);
7917 vc_conn3.done;
Neels Hofmeyr22c3f792020-06-17 02:49:28 +02007918 f_ctrs_msc_expect(2, "mscpool:subscr:new");
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02007919 f_shutdown_helper();
Neels Hofmeyr4f118412020-06-04 15:25:10 +02007920}
7921
Philipp Maier783681c2020-07-16 16:47:06 +02007922/* Allow/Deny emergency calls globally via VTY */
7923private function f_vty_allow_emerg_msc(boolean allow) runs on test_CT {
7924 f_vty_enter_cfg_msc(BSCVTY, 0);
7925 if (allow) {
7926 f_vty_transceive(BSCVTY, "allow-emergency allow");
7927 } else {
7928 f_vty_transceive(BSCVTY, "allow-emergency deny");
7929 }
7930 f_vty_transceive(BSCVTY, "exit");
7931 f_vty_transceive(BSCVTY, "exit");
7932}
7933
7934/* Allow/Deny emergency calls per BTS via VTY */
7935private function f_vty_allow_emerg_bts(boolean allow, integer bts_nr) runs on test_CT {
7936 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
7937 if (allow) {
7938 f_vty_transceive(BSCVTY, "rach emergency call allowed 1");
7939 } else {
7940 f_vty_transceive(BSCVTY, "rach emergency call allowed 0");
7941 }
7942 f_vty_transceive(BSCVTY, "exit");
7943 f_vty_transceive(BSCVTY, "exit");
Neels Hofmeyrb6ed80c2020-10-12 22:52:39 +00007944 f_vty_transceive(BSCVTY, "exit");
Philipp Maier783681c2020-07-16 16:47:06 +02007945}
7946
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02007947/* Allow/Forbid Fast Return after SRVCC on a given BTS via VTY */
7948private function f_vty_allow_srvcc_fast_return(boolean allow, integer bts_nr) runs on test_CT {
7949 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
7950 if (allow) {
7951 f_vty_transceive(BSCVTY, "srvcc fast-return allow");
7952 } else {
7953 f_vty_transceive(BSCVTY, "srvcc fast-return forbid");
7954 }
7955 f_vty_transceive(BSCVTY, "exit");
7956 f_vty_transceive(BSCVTY, "exit");
7957 f_vty_transceive(BSCVTY, "exit");
7958}
7959
Pau Espin Pedrol14475352021-07-22 15:48:16 +02007960/* Allow/Forbid TCH for signalling if SDCCH exhausted on a given BTS via VTY */
7961private function f_vty_allow_tch_for_signalling(boolean allow, integer bts_nr) runs on test_CT {
7962 f_vty_enter_cfg_bts(BSCVTY, bts_nr);
7963 if (allow) {
7964 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 1");
7965 } else {
7966 f_vty_transceive(BSCVTY, "channel allocator allow-tch-for-signalling 0");
7967 }
7968 f_vty_transceive(BSCVTY, "exit");
7969 f_vty_transceive(BSCVTY, "exit");
7970 f_vty_transceive(BSCVTY, "exit");
7971}
7972
Philipp Maier783681c2020-07-16 16:47:06 +02007973/* Begin assignmet procedure and send an EMERGENCY SETUP (RR) */
7974private function f_assignment_emerg_setup() runs on MSC_ConnHdlr {
7975 var PDU_ML3_MS_NW emerg_setup;
7976 var octetstring emerg_setup_enc;
7977 var RSL_Message emerg_setup_data_ind;
7978
7979 f_establish_fully(omit, omit);
7980
7981 emerg_setup := valueof(ts_ML3_MO_CC_EMERG_SETUP(1, valueof(ts_Bcap_voice)));
7982 emerg_setup_enc := enc_PDU_ML3_MS_NW(emerg_setup);
7983 emerg_setup_data_ind := valueof(ts_RSL_DATA_IND(g_chan_nr, valueof(ts_RslLinkID_DCCH(0)), emerg_setup_enc));
7984
7985 RSL.send(emerg_setup_data_ind);
7986}
7987
7988/* Test if the EMERGENCY SETUP gets passed on to the MSC via A when EMERGENCY
7989 * CALLS are permitted by the BSC config. */
7990private function f_TC_assignment_emerg_setup_allow(charstring id) runs on MSC_ConnHdlr {
7991 var PDU_BSSAP emerg_setup_data_ind_bssap;
7992 var PDU_ML3_MS_NW emerg_setup;
7993 timer T := 3.0;
7994
7995 f_assignment_emerg_setup()
7996
7997 T.start;
7998 alt {
7999 [] BSSAP.receive(tr_BSSAP_DTAP) -> value emerg_setup_data_ind_bssap {
8000 emerg_setup := dec_PDU_ML3_MS_NW(emerg_setup_data_ind_bssap.pdu.dtap);
8001 if (not isbound(emerg_setup.msgs.cc.emergencySetup)) {
8002 setverdict(fail, "no emergency setup");
8003 }
8004 }
8005 [] BSSAP.receive {
8006 setverdict(fail, "unexpected BSSAP message!");
8007 }
8008 [] T.timeout {
8009 setverdict(fail, "timout waiting for EMERGENCY SETUP!");
8010 }
8011 }
8012
8013 setverdict(pass);
8014}
8015
8016/* Test if the EMERGENCY SETUP gets blocked by the BSC if EMERGENCY CALLS are
8017 * forbidden by the BSC config. */
8018private function f_TC_assignment_emerg_setup_deny(charstring id) runs on MSC_ConnHdlr {
8019 var PDU_BSSAP emerg_setup_data_ind_bssap;
8020 timer T := 3.0;
8021
8022 f_assignment_emerg_setup()
8023
8024 T.start;
8025 alt {
8026 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
8027 setverdict(pass);
8028 }
8029 [] RSL.receive {
8030 setverdict(fail, "unexpected RSL message!");
8031 }
8032 [] T.timeout {
8033 setverdict(fail, "timout waiting for RR CHANNEL RELEASE!");
8034 }
8035 }
8036}
8037
8038/* EMERGENCY CALL situation #1, allowed globally and by BTS */
8039testcase TC_assignment_emerg_setup_allow() runs on test_CT {
8040 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8041 var MSC_ConnHdlr vc_conn;
8042
8043 f_init(1, true);
8044 f_sleep(1.0);
8045
8046 f_vty_allow_emerg_msc(true);
8047 f_vty_allow_emerg_bts(true, 0);
8048 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_allow), pars);
8049 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008050 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008051}
8052
8053/* EMERGENCY CALL situation #2, forbidden globally but allowed by BTS */
8054testcase TC_assignment_emerg_setup_deny_msc() runs on test_CT {
8055 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8056 var MSC_ConnHdlr vc_conn;
8057
8058 f_init(1, true);
8059 f_sleep(1.0);
8060
8061 f_vty_allow_emerg_msc(false);
8062 f_vty_allow_emerg_bts(true, 0);
8063 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8064 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008065 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008066}
8067
8068/* EMERGENCY CALL situation #3, allowed globally but forbidden by BTS */
8069testcase TC_assignment_emerg_setup_deny_bts() runs on test_CT {
8070 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8071 var MSC_ConnHdlr vc_conn;
8072
8073 /* Note: This simulates a spec violation by the MS, correct MS
8074 * implementations would not try to establish an emergency call because
8075 * the system information tells in advance that emergency calls are
8076 * not forbidden */
8077
8078 f_init(1, true);
8079 f_sleep(1.0);
8080
8081 f_vty_allow_emerg_msc(true);
8082 f_vty_allow_emerg_bts(false, 0);
8083 vc_conn := f_start_handler(refers(f_TC_assignment_emerg_setup_deny), pars);
8084 vc_conn.done;
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008085 f_shutdown_helper();
Philipp Maier783681c2020-07-16 16:47:06 +02008086}
8087
Philipp Maier82812002020-08-13 18:48:27 +02008088/* Test what happens when an emergency call arrives while all TCH channels are
8089 * busy, the BSC is expected to terminate one call in favor of the incoming
8090 * emergency call */
8091testcase TC_emerg_premption() runs on test_CT {
8092 var ASP_RSL_Unitdata rsl_ud;
8093 var integer i;
8094 var integer chreq_total, chreq_nochan;
8095 var RSL_Message rx_rsl;
8096 var RslChannelNr chan_nr;
8097
8098 f_init(1);
8099 f_sleep(1.0);
8100
8101 f_vty_allow_emerg_msc(true);
8102 f_vty_allow_emerg_bts(true, 0);
8103
8104 /* Fill up all channels on the BTS */
8105 chreq_total := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total");
8106 chreq_nochan := f_ctrl_get_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:no_channel");
8107 for (i := 0; i < NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS; i := i+1) {
8108 chan_nr := f_chreq_act_ack('33'O, i);
8109 }
8110 IPA_RSL[0].clear;
8111 f_ctrl_get_exp_ratectr_abs(IPA_CTRL, "bts", 0, "chreq:total",
8112 chreq_total + NUM_TCHF_PER_BTS + NUM_TCHH_PER_BTS + NUM_SDCCH_PER_BTS);
8113
8114 /* Send Channel request for emegergency call */
8115 f_ipa_tx(0, ts_RSL_CHAN_RQD('A5'O, 23));
8116
8117 /* Expect the BSC to release one (the first) TCH/F on the BTS */
8118 chan_nr := valueof(t_RslChanNr_Bm(1));
8119 f_expect_chan_rel(0, chan_nr, expect_rr_chan_rel := false, expect_rll_rel_req := false);
8120
8121 /* Expect the BSC to send activate/assign the a channel for the emergency call */
8122 rx_rsl := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8123 chan_nr := rx_rsl.ies[0].body.chan_nr;
8124 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(chan_nr, 33));
8125 rx_rsl := f_exp_ipa_rx(0, tr_RSL_IMM_ASSIGN(0));
Philipp Maier104f4c02020-09-11 18:12:18 +02008126
Pau Espin Pedrol6ed083c2020-09-23 14:16:58 +02008127 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008128}
8129
8130/* Hopping parameters per a timeslot */
Vadim Yanitskiybc6654a2020-09-13 01:27:40 +07008131private type record length(0..64) of GsmArfcn ArfcnList;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008132private type record FHParamsTs {
8133 boolean enabled,
8134 uint6_t hsn,
8135 uint6_t maio,
8136 ArfcnList ma
8137};
8138
8139/* Hopping parameters per a transceiver */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008140private type record FHParamsTrx {
8141 GsmArfcn arfcn,
8142 FHParamsTs ts[8]
8143};
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008144
8145/* Randomly generate the hopping parameters for the given timeslot numbers */
8146private function f_TC_fh_params_gen(template integer tr_tn := (1, 3, 5))
8147runs on test_CT return FHParamsTrx {
8148 var FHParamsTrx fhp;
8149
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008150 /* Generate a random ARFCN, including ARFCN 0 */
8151 fhp.arfcn := f_rnd_int(3);
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008152
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008153 for (var integer tn := 0; tn < 8; tn := tn + 1) {
8154 if (not match(tn, tr_tn)) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008155 fhp.ts[tn].enabled := false;
8156 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008157 continue;
8158 }
8159
8160 /* Random HSN / MAIO values: 0..63 */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008161 fhp.ts[tn].hsn := f_rnd_int(64);
8162 fhp.ts[tn].maio := f_rnd_int(64);
8163 fhp.ts[tn].ma := { };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008164
8165 /* Random Mobile Allocation (hopping channels) */
8166 var integer ma_len := 2 + f_rnd_int(9); /* 2..10 channels */
8167 var integer step := 3 + f_rnd_int(4); /* 3..6 stepping */
8168 for (var integer i := 1; i <= ma_len; i := i + 1) {
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008169 fhp.ts[tn].ma := fhp.ts[tn].ma & { i * step };
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008170 }
8171
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008172 fhp.ts[tn].enabled := true;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008173 }
8174
8175 log("f_TC_fh_params_gen(): ", fhp);
8176 return fhp;
8177}
8178
8179/* Make sure that the given Channel Description IE matches the hopping configuration */
8180private function f_TC_fh_params_match_chan_desc(in FHParamsTrx fhp, in ChannelDescription cd)
8181{
8182 var template (present) ChannelDescription tr_cd;
8183 var template (present) MaioHsn tr_maio_hsn;
8184 var uint3_t tn := cd.chan_nr.tn;
8185
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008186 if (fhp.ts[tn].enabled) {
8187 tr_maio_hsn := tr_HsnMaio(fhp.ts[tn].hsn, fhp.ts[tn].maio);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008188 tr_cd := tr_ChanDescH1(cd.chan_nr, tr_maio_hsn);
8189 } else {
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008190 tr_cd := tr_ChanDescH0(cd.chan_nr, fhp.arfcn);
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008191 }
8192
8193 if (not match(cd, tr_cd)) {
8194 setverdict(fail, "Channel Description IE does not match: ",
8195 cd, " vs expected ", tr_cd);
8196 }
8197}
8198
8199/* Make sure that the given Mobile Allocation IE matches the hopping configuration */
8200private function f_TC_fh_params_match_ma(in FHParamsTrx fhp, uint3_t tn,
8201 in MobileAllocationLV ma)
8202{
8203 var template MobileAllocationLV tr_ma := f_TC_fh_params_gen_tr_ma(fhp, tn, ma);
8204
8205 if (not match(ma, tr_ma)) {
8206 setverdict(fail, "Mobile Allocation IE does not match (tn := ",
8207 tn, "): ", ma, " vs expected: ", tr_ma);
8208 } else {
8209 setverdict(pass);
8210 }
8211}
8212
8213private function f_TC_fh_params_gen_tr_ma(in FHParamsTrx fhp, uint3_t tn,
8214 in MobileAllocationLV ma)
8215return template MobileAllocationLV {
8216 /* Mobile Allocation IE is expected to be empty if hopping is not enabled */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008217 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008218 return { len := 0, ma := ''B };
8219 }
8220
8221 var bitstring full_mask := f_pad_bit(''B, 1024, '0'B);
8222 var bitstring slot_mask := f_pad_bit(''B, 1024, '0'B);
8223 var bitstring ma_mask := ''B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008224
8225 /* Compose the full bit-mask (all channels, up to 1024 entries) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008226 for (var integer i := 0; i < lengthof(fhp.ts); i := i + 1) {
8227 for (var integer j := 0; j < lengthof(fhp.ts[i].ma); j := j + 1) {
8228 if (full_mask[fhp.ts[i].ma[j]] == '1'B)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008229 { continue; }
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008230 full_mask[fhp.ts[i].ma[j]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008231 }
8232 }
8233
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008234 /* Take ARFCN of the TRX itself into account */
8235 full_mask[fhp.arfcn] := '1'B;
8236
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008237 /* Compose a bit-mask for the given timeslot number */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008238 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8239 slot_mask[fhp.ts[tn].ma[i]] := '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008240 }
8241
8242 /* Finally, compose the Mobile Allocation bit-mask */
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008243 for (var integer i := 1; i < lengthof(full_mask); i := i + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008244 if (full_mask[i] != '1'B)
8245 { continue; }
8246
8247 /* FIXME: ma_mask := ma_mask & slot_mask[i]; // triggers a bug in TITAN */
8248 if (slot_mask[i] == '1'B) {
8249 ma_mask := ma_mask & '1'B;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008250 } else {
8251 ma_mask := ma_mask & '0'B;
8252 }
8253 }
8254
Vadim Yanitskiy3e997362020-09-05 21:08:34 +07008255 /* ARFCN 0 (if present) goes to the last position of the bit-mask */
8256 if (full_mask[0] == '1'B) {
8257 /* FIXME: ma_mask := ma_mask & slot_mask[0]; // triggers a bug in TITAN */
8258 if (slot_mask[0] == '1'B) {
8259 ma_mask := ma_mask & '1'B;
8260 } else {
8261 ma_mask := ma_mask & '0'B;
8262 }
8263 }
8264
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008265 /* Ensure that ma_mask is octet-aligned */
Vadim Yanitskiy2aa02522020-09-06 14:05:23 +07008266 var integer ma_mask_len := (lengthof(ma_mask) + 8 - 1) / 8;
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008267 ma_mask := f_pad_bit(ma_mask, ma_mask_len * 8, '0'B);
8268
8269 return { len := ma_mask_len, ma := ma_mask };
8270}
8271
8272/* Configure the hopping parameters in accordance with the given record */
8273private function f_TC_fh_params_set(in FHParamsTrx fhp,
8274 uint8_t bts_nr := 0,
8275 uint8_t trx_nr := 0)
8276runs on test_CT {
8277 /* Enter the configuration node for the given BTS/TRX numbers */
8278 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8279
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008280 f_vty_transceive(BSCVTY, "arfcn " & int2str(fhp.arfcn));
8281
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008282 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008283 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8284
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008285 if (not fhp.ts[tn].enabled) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008286 f_vty_transceive(BSCVTY, "hopping enabled 0");
8287 f_vty_transceive(BSCVTY, "exit"); /* go back */
8288 continue;
8289 }
8290
8291 /* Configure HSN / MAIO values */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008292 f_vty_transceive(BSCVTY, "hopping sequence-number " & int2str(fhp.ts[tn].hsn));
8293 f_vty_transceive(BSCVTY, "hopping maio " & int2str(fhp.ts[tn].maio));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008294
8295 /* Configure the Mobile Allocation (hopping channels) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008296 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8297 f_vty_transceive(BSCVTY, "hopping arfcn add " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008298 }
8299
8300 f_vty_transceive(BSCVTY, "hopping enabled 1");
8301 f_vty_transceive(BSCVTY, "exit"); /* go back */
8302 }
8303
8304 f_vty_transceive(BSCVTY, "end");
8305}
8306
8307/* Disable frequency hopping on all timeslots */
8308private function f_TC_fh_params_unset(in FHParamsTrx fhp,
8309 uint8_t bts_nr := 0,
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008310 uint8_t trx_nr := 0,
8311 GsmArfcn arfcn := 871)
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008312runs on test_CT {
8313 /* Enter the configuration node for the given BTS/TRX numbers */
8314 f_vty_enter_cfg_trx(BSCVTY, bts_nr, trx_nr);
8315
Vadim Yanitskiye7c8c6e2020-09-13 14:33:03 +07008316 f_vty_transceive(BSCVTY, "arfcn " & int2str(arfcn));
8317
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008318 for (var integer tn := 0; tn < lengthof(fhp.ts); tn := tn + 1) {
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008319 f_vty_transceive(BSCVTY, "timeslot " & int2str(tn));
8320
8321 /* Delete all ARFCNs from the Mobile Allocation (if any) */
Vadim Yanitskiy1b996612020-09-13 13:22:34 +07008322 for (var integer i := 0; i < lengthof(fhp.ts[tn].ma); i := i + 1) {
8323 f_vty_transceive(BSCVTY, "hopping arfcn del " & int2str(fhp.ts[tn].ma[i]));
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008324 }
8325
8326 f_vty_transceive(BSCVTY, "hopping enabled 0");
8327 f_vty_transceive(BSCVTY, "exit"); /* go back */
8328 }
8329
8330 f_vty_transceive(BSCVTY, "end");
8331 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8332}
8333
8334/* Verify presence and correctness of the hopping parameters (HSN, MAIO)
8335 * in the Channel Identification IE of the RSL CHANnel ACTIVation message. */
8336testcase TC_fh_params_chan_activ() runs on test_CT {
8337 var FHParamsTrx fhp := f_TC_fh_params_gen();
8338 var RSL_Message rsl_msg;
8339 var RSL_IE_Body ie;
8340
8341 f_init_vty();
8342
8343 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8344 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8345
8346 f_init(1);
8347
8348 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8349 for (var integer i := 0; i < 9; i := i + 1) {
8350 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8351 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8352
8353 /* Make sure that Channel Identification IE is present */
8354 if (not f_rsl_find_ie(rsl_msg, RSL_IE_CHAN_IDENT, ie)) {
8355 setverdict(fail, "RSL Channel Identification IE is absent");
8356 continue;
8357 }
8358
8359 /* Make sure that hopping parameters (HSN/MAIO) match */
8360 f_TC_fh_params_match_chan_desc(fhp, ie.chan_ident.ch_desc.v);
8361
8362 /* "Mobile Allocation shall be included but empty" - let's check this */
8363 if (ie.chan_ident.ma.v.len != 0) {
8364 setverdict(fail, "Mobile Allocation IE is not empty: ",
8365 ie.chan_ident.ma, ", despite it shall be");
8366 continue;
8367 }
8368 }
8369
8370 /* Disable frequency hopping */
8371 f_TC_fh_params_unset(fhp);
8372
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008373 f_shutdown_helper();
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07008374}
8375
8376/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Immediate Assignment */
8377testcase TC_fh_params_imm_ass() runs on test_CT {
8378 var FHParamsTrx fhp := f_TC_fh_params_gen();
8379 var RSL_Message rsl_msg;
8380 var RSL_IE_Body ie;
8381
8382 f_init_vty();
8383
8384 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8385 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8386
8387 f_init(1);
8388
8389 /* CS domain: 3 (SDCCH/4+CBCH) + 4 (TCH/F) + 2 (TCH/H) channels available */
8390 for (var integer i := 0; i < 9; i := i + 1) {
8391 f_ipa_tx(0, ts_RSL_CHAN_RQD(f_rnd_ra_cs(), 23));
8392 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8393
8394 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8395 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeC(RSL_MT_IMMEDIATE_ASSIGN_CMD));
8396
8397 /* Make sure that Full Immediate Assign Info IE is present */
8398 if (not f_rsl_find_ie(rsl_msg, RSL_IE_FULL_IMM_ASS_INFO, ie)) {
8399 setverdict(fail, "RSL Full Immediate Assign Info IE is absent");
8400 continue;
8401 }
8402
8403 /* Decode the actual Immediate Assignment message */
8404 var GsmRrMessage rr_msg := dec_GsmRrMessage(ie.full_imm_ass_info.payload);
8405 if (not match(rr_msg.header, t_RrHeader(IMMEDIATE_ASSIGNMENT, ?))) {
8406 setverdict(fail, "Failed to match Immediate Assignment: ", rr_msg);
8407 continue;
8408 }
8409
8410 /* Make sure that hopping parameters (HSN/MAIO) match */
8411 f_TC_fh_params_match_chan_desc(fhp, rr_msg.payload.imm_ass.chan_desc);
8412
8413 /* Make sure that the Mobile Allocation IE matches */
8414 f_TC_fh_params_match_ma(fhp, rr_msg.payload.imm_ass.chan_desc.chan_nr.tn,
8415 rr_msg.payload.imm_ass.mobile_allocation);
8416 }
8417
8418 /* Disable frequency hopping */
8419 f_TC_fh_params_unset(fhp);
Philipp Maier82812002020-08-13 18:48:27 +02008420
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008421 f_shutdown_helper();
Philipp Maier82812002020-08-13 18:48:27 +02008422}
8423
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008424/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Assignment Command */
8425testcase TC_fh_params_assignment_cmd() runs on test_CT {
8426 var FHParamsTrx fhp := f_TC_fh_params_gen();
8427 var RSL_Message rsl_msg;
8428 var RSL_IE_Body ie;
8429
8430 f_init_vty();
8431
8432 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8433 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8434
8435 f_init(1);
8436
8437 /* HACK: work around "Couldn't find Expect for CRCX" */
8438 vc_MGCP.stop;
8439
8440 var template PDU_BSSAP ass_cmd := f_gen_ass_req();
8441 ass_cmd.pdu.bssmap.assignmentRequest.codecList := ts_BSSMAP_IE_CodecList({ts_CodecFR});
8442
8443 /* CS domain (TCH): 4 (TCH/F) + 2 (TCH/H) channels available
8444 * NOTE: only 3 SDCCH/4 channels are available on CCCH+SDCCH4+CBCH */
8445 for (var integer i := 0; i < 3; i := i + 1) {
8446 /* Establish a dedicated channel, so we can trigger (late) TCH assignment */
8447 var DchanTuple dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8448
8449 /* Send a BSSMAP Assignment Command, expect CHANnel ACTIVation */
8450 BSSAP.send(ts_BSSAP_DATA_req(dt.sccp_conn_id, ass_cmd));
8451 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8452
8453 /* ACKnowledge CHANnel ACTIVation, expect RSL DATA REQuest */
8454 f_ipa_tx(0, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8455 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8456
8457 /* Make sure that L3 Information IE is present */
8458 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8459 setverdict(fail, "RSL L3 Information IE is absent");
8460 continue;
8461 }
8462
8463 /* Decode the L3 message and make sure it is (RR) Assignment Command */
8464 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8465 if (not match(l3_msg.header, t_RrL3Header(ASSIGNMENT_COMMAND))) {
8466 setverdict(fail, "Failed to match Assignment Command: ", l3_msg);
8467 continue;
8468 }
8469
8470 /* Make sure that hopping parameters (HSN/MAIO) match */
8471 var ChannelDescription chan_desc := l3_msg.payload.ass_cmd.chan_desc;
8472 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8473
8474 /* Make sure that Cell Channel Description IE is present if FH is enabled */
8475 if (chan_desc.h and not ispresent(l3_msg.payload.ass_cmd.cell_chan_desc)) {
Vadim Yanitskiy38d069d2020-09-02 17:18:57 +07008476 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008477 continue;
8478 }
8479
8480 /* Make sure that the Mobile Allocation IE matches (if present) */
8481 var boolean ma_present := ispresent(l3_msg.payload.ass_cmd.mobile_allocation);
8482 if (chan_desc.h and ma_present) {
8483 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8484 l3_msg.payload.ass_cmd.mobile_allocation.v);
8485 } else if (chan_desc.h and not ma_present) {
8486 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8487 continue;
8488 } else if (not chan_desc.h and ma_present) {
8489 setverdict(fail, "FH disabled, but Mobile Allocation IE is present");
8490 continue;
8491 }
8492 }
8493
8494 /* Give the IUT some time to release all channels */
8495 f_sleep(3.0);
8496
8497 /* Disable frequency hopping */
8498 f_TC_fh_params_unset(fhp);
8499
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008500 f_shutdown_helper();
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07008501}
8502
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07008503/* Verify the hopping parameters (HSN, MAIO, MA) in (RR) Handover Command */
8504private function f_TC_fh_params_handover_cmd(in FHParamsTrx fhp)
8505runs on test_CT {
8506 var RSL_Message rsl_msg;
8507 var RSL_IE_Body ie;
8508 var DchanTuple dt;
8509
8510 /* Establish a dedicated channel, so we can trigger handover */
8511 dt := f_est_dchan(f_rnd_ra_cs(), 23, f_rnd_octstring(16));
8512
8513 /* Trigger handover from BTS0 to BTS1 */
8514 f_bts_0_cfg(BSCVTY, { "neighbor bts 1" });
8515 f_vty_handover(BSCVTY, 0, 0, dt.rsl_chan_nr, 1);
8516
8517 /* Expect RSL CHANnel ACTIVation on BTS1/TRX0/TS1 */
8518 rsl_msg := f_exp_ipa_rx(1, tr_RSL_MsgTypeD(RSL_MT_CHAN_ACTIV));
8519
8520 /* ACKnowledge channel activation and expect (RR) Handover Command */
8521 f_ipa_tx(1, ts_RSL_CHAN_ACT_ACK(rsl_msg.ies[0].body.chan_nr, 33));
8522 rsl_msg := f_exp_ipa_rx(0, tr_RSL_MsgTypeR(RSL_MT_DATA_REQ));
8523
8524 /* Make sure that L3 Information IE is present */
8525 if (not f_rsl_find_ie(rsl_msg, RSL_IE_L3_INFO, ie)) {
8526 setverdict(fail, "RSL L3 Information IE is absent");
8527 return;
8528 }
8529
8530 /* Decode the L3 message and make sure it is (RR) Handover Command */
8531 var GsmRrL3Message l3_msg := dec_GsmRrL3Message(ie.l3_info.payload);
8532 if (not match(l3_msg.header, t_RrL3Header(HANDOVER_COMMAND))) {
8533 setverdict(fail, "Failed to match Handover Command: ", l3_msg);
8534 return;
8535 }
8536
8537 /* Make sure that we've got SDCCH/8 on TS1 (expected to be hopping) */
8538 var ChannelDescription chan_desc := l3_msg.payload.ho_cmd.chan_desc;
8539 if (not match(chan_desc.chan_nr, t_RslChanNr_SDCCH8(1, ?))) {
8540 setverdict(fail, "Unexpected channel number: ", chan_desc.chan_nr);
8541 return;
8542 }
8543
8544 /* Make sure that hopping parameters (HSN/MAIO) match */
8545 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8546
8547 /* Make sure that Cell Channel Description IE is present */
8548 if (not ispresent(l3_msg.payload.ho_cmd.cell_chan_desc)) {
8549 setverdict(fail, "FH enabled, but Cell Channel Description IE is absent");
8550 return;
8551 }
8552
8553 /* Make sure that the Mobile Allocation (after time) IE is present and matches */
8554 var boolean ma_present := ispresent(l3_msg.payload.ho_cmd.mobile_allocation);
8555 if (ma_present) {
8556 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8557 l3_msg.payload.ho_cmd.mobile_allocation.v);
8558 } else {
8559 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8560 return;
8561 }
8562}
8563testcase TC_fh_params_handover_cmd() runs on test_CT {
8564 var FHParamsTrx fhp := f_TC_fh_params_gen();
8565
8566 f_init_vty();
8567
8568 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8 on BTS1/TRX0 */
8569 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8570
8571 f_vty_transceive(BSCVTY, "timeslot 0");
8572 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8573 f_vty_transceive(BSCVTY, "exit"); /* go back */
8574
8575 f_vty_transceive(BSCVTY, "timeslot 1");
8576 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8");
8577 f_vty_transceive(BSCVTY, "end"); /* we're done */
8578
8579 f_TC_fh_params_set(fhp, 1); /* Enable frequency hopping on BTS1 */
8580 f_vty_transceive(BSCVTY, "drop bts connection 1 oml");
8581
8582 f_init(2);
8583
8584 f_TC_fh_params_handover_cmd(fhp);
8585
8586 /* Disable frequency hopping on BTS1 */
8587 f_TC_fh_params_unset(fhp, 1);
8588
8589 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
8590 f_vty_enter_cfg_trx(BSCVTY, bts := 1, trx := 0);
8591
8592 f_vty_transceive(BSCVTY, "timeslot 0");
8593 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
8594 f_vty_transceive(BSCVTY, "exit"); /* go back */
8595
8596 f_vty_transceive(BSCVTY, "timeslot 1");
8597 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8598 f_vty_transceive(BSCVTY, "end"); /* we're done */
8599
8600 f_shutdown_helper();
8601}
8602
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008603/* Verify the hopping parameters in System Information Type 4 */
8604testcase TC_fh_params_si4_cbch() runs on test_CT {
8605 var FHParamsTrx fhp := f_TC_fh_params_gen(tr_tn := 1);
8606 var ASP_RSL_Unitdata rx_rsl_ud;
8607 timer T := 5.0;
8608
8609 f_init_vty();
8610
8611 /* (Re)configure TS0 as BCCH and TS1 as SDCCH8+CBCH */
8612 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8613
8614 f_vty_transceive(BSCVTY, "timeslot 0");
8615 f_vty_transceive(BSCVTY, "phys_chan_config ccch");
8616 f_vty_transceive(BSCVTY, "exit"); /* go back */
8617
8618 f_vty_transceive(BSCVTY, "timeslot 1");
8619 f_vty_transceive(BSCVTY, "phys_chan_config sdcch8+cbch");
8620 f_vty_transceive(BSCVTY, "end"); /* we're done */
8621
8622 f_TC_fh_params_set(fhp); /* Enable frequency hopping */
8623 f_vty_transceive(BSCVTY, "drop bts connection 0 oml");
8624
8625 f_init(1);
8626
8627 T.start;
8628 alt {
8629 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(tr_RSL_BCCH_INFO(RSL_SYSTEM_INFO_4))) -> value rx_rsl_ud {
8630 var RSL_IE_Body ie := rx_rsl_ud.rsl.ies[2].body; /* FULL BCCH Information IE */
8631 var SystemInformation si := dec_SystemInformation(ie.other.payload);
8632
8633 /* Make sure that what we decoded is System Information Type 4 */
8634 if (si.header.message_type != SYSTEM_INFORMATION_TYPE_4) {
8635 setverdict(fail, "RSL FULL BCCH Information IE contains: ", si);
8636 repeat;
8637 }
8638
8639 /* Make sure that CBCH Channel Description IE is present */
8640 if (not ispresent(si.payload.si4.cbch_chan_desc)) {
8641 setverdict(fail, "CBCH Channel Description IE is absent");
8642 break;
8643 }
8644
8645 /* Finally, check the hopping parameters (HSN, MAIO) */
8646 var ChannelDescription chan_desc := si.payload.si4.cbch_chan_desc.v;
8647 f_TC_fh_params_match_chan_desc(fhp, chan_desc);
8648
8649 /* 3GPP TS 44.018, section 9.1.36.2 "CBCH Mobile Allocation":
8650 * The CBCH Mobile Allocation IE *shall* be present if FH is enabled. */
8651 if (chan_desc.h and not ispresent(si.payload.si4.cbch_mobile_alloc)) {
8652 setverdict(fail, "FH enabled, but Mobile Allocation IE is absent");
8653 break;
8654 } else if (chan_desc.h and ispresent(si.payload.si4.cbch_mobile_alloc)) {
8655 f_TC_fh_params_match_ma(fhp, chan_desc.chan_nr.tn,
8656 si.payload.si4.cbch_mobile_alloc.v);
8657 }
8658 }
8659 [] IPA_RSL[0].receive { repeat; }
8660 [] T.timeout {
8661 setverdict(fail, "Timeout waiting for RSL BCCH INFOrmation (SI4)");
8662 }
8663 }
8664
8665 /* Disable frequency hopping */
8666 f_TC_fh_params_unset(fhp);
8667
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008668 /* (Re)configure TS0 as CCCH+SDCCH4+CBCH and TS1 as TCH/F */
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008669 f_vty_enter_cfg_trx(BSCVTY, trx := 0);
8670
8671 f_vty_transceive(BSCVTY, "timeslot 0");
Vadim Yanitskiy8bc46012020-09-06 12:38:01 +07008672 f_vty_transceive(BSCVTY, "phys_chan_config ccch+sdcch4+cbch");
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008673 f_vty_transceive(BSCVTY, "exit"); /* go back */
8674
8675 f_vty_transceive(BSCVTY, "timeslot 1");
8676 f_vty_transceive(BSCVTY, "phys_chan_config tch/f");
8677 f_vty_transceive(BSCVTY, "end"); /* we're done */
8678
Vadim Yanitskiy21726312020-09-04 01:45:36 +07008679 f_shutdown_helper();
Vadim Yanitskiyca974032020-09-01 07:20:39 +07008680}
8681
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008682template (value) PDU_BSSAP_LE ts_BSSMAP_LE_BSSLAP(template (value) BSSLAP_PDU bsslap)
8683 := ts_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, data := enc_BSSLAP_PDU(valueof(bsslap)));
8684
8685private function f_match_bsslap(PDU_BSSAP_LE got_bsslap_msg,
8686 template (present) BSSLAP_PDU expect_bsslap)
8687{
8688 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(got_bsslap_msg.pdu.bssmap.co_info.bsslap_apdu.data);
8689 if (not match(bsslap, expect_bsslap)) {
8690 log("EXPECTING BSSLAP: ", expect_bsslap);
8691 log("GOT BSSLAP: ", bsslap);
8692 setverdict(fail, "BSSLAP is not as expected");
8693 mtc.stop;
8694 }
8695 setverdict(pass);
8696}
8697
8698/* GAD: this is an Ellipsoid point with uncertainty circle, encoded as in 3GPP TS 23.032 §7.3.2. */
8699const octetstring gad_ell_point_unc_circle := '10b0646d0d5f6627'O;
8700
8701private function f_expect_bsslap(template (present) BSSLAP_PDU expect_rx_bsslap) runs on MSC_ConnHdlr {
8702 var PDU_BSSAP_LE rx_bsslap;
8703 BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap);
8704 f_match_bsslap(rx_bsslap, expect_rx_bsslap);
8705}
8706
8707/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8708 * Request on Lb interface. Either with or without the SMLC doing a BSSLAP TA Request. */
8709private function f_lcs_loc_req_for_active_ms(boolean do_ta_request := false) runs on MSC_ConnHdlr {
8710 f_sleep(1.0);
8711
8712 f_establish_fully(omit, omit);
8713 f_bssap_le_register_imsi(g_pars.imsi, omit);
8714
8715 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8716 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8717
8718 var PDU_BSSAP_LE plr;
8719 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8720
8721 if (not do_ta_request) {
8722 /* verify TA Layer 3 in APDU. First the APDU type (BSSLAP), then the BSSLAP data contents. */
8723 var template BSSMAP_LE_IE_APDU expect_apdu := tr_BSSMAP_LE_APDU(BSSMAP_LE_PROT_BSSLAP, ?);
8724 if (not match(plr.pdu.bssmap.perf_loc_req.bsslap_apdu, expect_apdu)) {
8725 log("EXPECTING BSSMAP-LE APDU IE ", expect_apdu);
8726 log("GOT BSSMAP-LE APDU IE ", plr.pdu.bssmap.perf_loc_req.bsslap_apdu);
8727 setverdict(fail, "BSSMAP-LE APDU IE is not as expected");
8728 mtc.stop;
8729 }
8730 var template BSSLAP_PDU expect_ta_layer3 := tr_BSSLAP_TA_Layer3(tr_BSSLAP_IE_TA(0));
8731 var BSSLAP_PDU bsslap := dec_BSSLAP_PDU(plr.pdu.bssmap.perf_loc_req.bsslap_apdu.data);
8732 if (not match(bsslap, expect_ta_layer3)) {
8733 log("EXPECTING BSSLAP TA Layer 3: ", expect_ta_layer3);
8734 log("GOT BSSLAP: ", bsslap);
8735 setverdict(fail, "BSSLAP is not as expected");
8736 mtc.stop;
8737 }
8738 /* OsmoBSC directly sent the TA as BSSLAP APDU in the BSSMAP-LE Perform Location Request to the SMLC. The SMLC
8739 * has no need to request the TA from the BSC and directly responds. */
8740 } else {
8741 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8742 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8743 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8744 }
8745
8746 /* SMLC got the TA from the BSC, now responds with geo information data. */
8747 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8748 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8749 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8750
8751 /* The LCS was using an active A-interface conn. It should still remain active after this. */
8752 f_mo_l3_transceive();
8753
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008754 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008755
8756 f_sleep(2.0);
8757 setverdict(pass);
8758}
8759
8760/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8761 * Request on Lb interface. Without the SMLC doing a BSSLAP TA Request. */
8762private function f_tc_lcs_loc_req_for_active_ms(charstring id) runs on MSC_ConnHdlr {
8763 f_lcs_loc_req_for_active_ms(false);
8764}
8765testcase TC_lcs_loc_req_for_active_ms() runs on test_CT {
8766 var MSC_ConnHdlr vc_conn;
8767 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8768
8769 f_init(1, true);
8770 f_sleep(1.0);
8771 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms), pars);
8772 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008773 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008774}
8775
8776/* With an active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8777 * Request on Lb interface. With the SMLC doing a BSSLAP TA Request. */
8778private function f_tc_lcs_loc_req_for_active_ms_ta_req(charstring id) runs on MSC_ConnHdlr {
8779 f_lcs_loc_req_for_active_ms(true);
8780}
8781testcase TC_lcs_loc_req_for_active_ms_ta_req() runs on test_CT {
8782 var MSC_ConnHdlr vc_conn;
8783 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8784
8785 f_init(1, true);
8786 f_sleep(1.0);
8787 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_ta_req), pars);
8788 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008789 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008790}
8791
8792/* Clear the A-interface conn only, without doing anything on Abis. Useful for LCS, for cases where there is only an A
8793 * conn without an active lchan. */
8794private function f_clear_A_conn() runs on MSC_ConnHdlr
8795{
8796 var BssmapCause cause := 0;
8797 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
8798 BSSAP.receive(tr_BSSMAP_ClearComplete);
8799 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
8800
8801 timer no_more_bssap := 5.0;
8802 no_more_bssap.start;
8803 alt {
8804 [] no_more_bssap.timeout { break; }
8805 [] BSSAP.receive(tr_BSSAP_BSSMAP) {
8806 setverdict(fail, "Expected no more BSSAP after Clear Complete");
8807 mtc.stop;
8808 }
8809 }
8810 setverdict(pass);
8811}
8812
8813/* Verify that the A-interface connection is still working, and then clear it, without doing anything on Abis. Useful
8814 * for LCS, for cases where there is only an A conn without an active lchan. */
8815private function f_verify_active_A_conn_and_clear() runs on MSC_ConnHdlr
8816{
8817 f_logp(BSCVTY, "f_verify_active_A_conn_and_clear: test A link, then clear");
8818
8819 /* When an lchan is active, we can send some L3 data from the BTS side and verify that it shows up on the other
8820 * side towards the MSC. When there is no lchan, this is not possible. To probe whether the A-interface
8821 * connection is still up, we need something that echos back on the A-interface. Another LCS request! */
8822 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8823 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8824 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?));
8825
8826 /* Right, the Perform Location Request showed up on Lb, now we can clear the A conn. */
8827 f_clear_A_conn();
8828 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
8829 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8830}
8831
8832/* With *no* active lchan, start BSSMAP Perform Location Request on A interface, starting BSSMAP-LE Perform Location
8833 * Request on Lb interface. BSC will Page for the subscriber as soon as we (virtual SMLC) request the TA via BSSLAP.
8834 */
8835private function f_tc_lcs_loc_req_for_idle_ms(charstring id) runs on MSC_ConnHdlr {
8836 f_sleep(1.0);
8837
8838 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
8839 f_bssap_le_register_imsi(g_pars.imsi, omit);
8840
8841 /* Register to receive the Paging Command */
8842 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
8843 g_chan_nr := new_chan_nr;
8844 f_rslem_register(0, g_chan_nr);
8845
8846 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
8847 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8848 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
8849 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
8850
8851 var PDU_BSSAP_LE plr;
8852 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8853
8854 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8855 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8856
8857 /* OsmoBSC needs to Page */
8858 RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi)));
8859 f_logp(BSCVTY, "got Paging Command");
8860
8861 /* MS requests channel. Since the Paging was for LCS, the Paging Response does not trigger a Complete Layer 3 to
8862 * the MSC, and releases the lchan directly. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02008863 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);
8864 f_expect_lchan_rel(RSL, RSL_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008865
8866 /* From the Paging Response, the TA is now known to the BSC, and it responds to the SMLC. */
8867
8868 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8869
8870 /* SMLC got the TA from the BSC, now responds with geo information data. */
8871 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
8872 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8873
8874 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
8875
8876 /* The lchan is gone, the A-interface conn was created for the LCS only.
8877 * Still it is clearly the MSC's job to decide whether to tear down the conn or not. */
8878 f_verify_active_A_conn_and_clear();
8879
8880 f_sleep(2.0);
8881 setverdict(pass);
8882}
8883testcase TC_lcs_loc_req_for_idle_ms() runs on test_CT {
8884 var MSC_ConnHdlr vc_conn;
8885 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8886
8887 f_init(1, true);
8888 f_sleep(1.0);
8889
8890 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
8891 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
8892
8893 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms), pars);
8894 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008895 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008896}
8897
8898/* With no active lchan, start BSSMAP Perform Location Request on A interface, but omit IMSI; expect failure response.
8899 */
8900private function f_tc_lcs_loc_req_no_subscriber(charstring id) runs on MSC_ConnHdlr {
8901 f_sleep(1.0);
8902
8903 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
8904 f_bssap_le_register_imsi(g_pars.imsi, omit);
8905
8906 /* provoke an abort by omitting both IMSI and IMEI */
8907 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
8908 valueof(ts_BSSMAP_Perform_Location_Request(omit,
8909 ts_CellId_CGI('262'H, '42'H, 23, 42)))));
8910 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
8911
8912 /* BSC tells MSC about failure */
8913 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
8914 locationEstimate := omit, positioningData := omit,
8915 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_DATA_MISSING_IN_REQ)));
8916
8917 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
8918 f_verify_active_A_conn_and_clear();
8919
8920 f_sleep(2.0);
8921 setverdict(pass);
8922}
8923testcase TC_lcs_loc_req_no_subscriber() runs on test_CT {
8924 var MSC_ConnHdlr vc_conn;
8925 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8926
8927 f_init(1, true);
8928 f_sleep(1.0);
8929
8930 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
8931 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
8932
8933 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_no_subscriber), pars);
8934 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008935 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008936}
8937
8938/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
8939 * BSSMAP-LE Perform Location Response (before or after sending a BSSLAP TA Request) */
8940private function f_lcs_loc_req_for_active_ms_le_timeout(boolean do_ta) runs on MSC_ConnHdlr {
8941 f_sleep(1.0);
8942
8943 f_establish_fully(omit, omit);
8944 f_bssap_le_register_imsi(g_pars.imsi, omit);
8945
8946 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
8947 ts_CellId_CGI('262'H, '42'H, 23, 42))));
8948
8949 var PDU_BSSAP_LE plr;
8950 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
8951
8952 if (do_ta) {
8953 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
8954 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
8955 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
8956 }
8957
8958 /* SMLC fails to respond, BSC runs into timeout */
8959 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocAbort(BSSMAP_LE_LCS_CAUSE_SYSTEM_FAILURE));
8960 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
8961
8962 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
8963 locationEstimate := omit, positioningData := omit,
8964 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_SYSTEM_FAILURE)));
8965
8966 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
8967 f_verify_active_A_conn_and_clear();
8968
8969 f_sleep(2.0);
8970 setverdict(pass);
8971}
8972
8973/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
8974 * BSSMAP-LE Perform Location Response, without sending a BSSLAP TA Request. */
8975private function f_tc_lcs_loc_req_for_active_ms_le_timeout(charstring id) runs on MSC_ConnHdlr {
8976 f_lcs_loc_req_for_active_ms_le_timeout(false);
8977}
8978
8979testcase TC_lcs_loc_req_for_active_ms_le_timeout() runs on test_CT {
8980 var MSC_ConnHdlr vc_conn;
8981 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8982
8983 f_init(1, true);
8984 f_sleep(1.0);
8985 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout), pars);
8986 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01008987 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02008988}
8989
8990/* With an active lchan, start a Perform Location Request on the A-interface, but virtual SMLC does not answer with
8991 * BSSMAP-LE Perform Location Response, after sending a BSSLAP TA Request. */
8992private function f_tc_lcs_loc_req_for_active_ms_le_timeout2(charstring id) runs on MSC_ConnHdlr {
8993 f_lcs_loc_req_for_active_ms_le_timeout(true);
8994}
8995
8996testcase TC_lcs_loc_req_for_active_ms_le_timeout2() runs on test_CT {
8997 var MSC_ConnHdlr vc_conn;
8998 var TestHdlrParams pars := f_gen_test_hdlr_pars();
8999
9000 f_init(1, true);
9001 f_sleep(1.0);
9002 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_active_ms_le_timeout2), pars);
9003 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009004 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009005}
9006
9007/* With *no* active lchan, start a Perform Location Request, expecting that the MS will be Paged. */
9008private function f_tc_lcs_loc_req_for_idle_ms_no_pag_resp(charstring id) runs on MSC_ConnHdlr {
9009 f_sleep(1.0);
9010
9011 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9012 f_bssap_le_register_imsi(g_pars.imsi, omit);
9013
9014 /* Register to receive the Paging Command */
9015 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9016 g_chan_nr := new_chan_nr;
9017 f_rslem_register(0, g_chan_nr);
9018
9019 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9020 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9021 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9022 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9023
9024 var PDU_BSSAP_LE plr;
9025 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9026
9027 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9028 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9029
9030 /* OsmoBSC needs to Page */
9031 var PDU_BSSAP_LE rx_bsslap;
9032 alt {
9033 [] RSL.receive(tr_RSL_PAGING_CMD(tr_MI_IMSI(g_pars.imsi))) {
9034 f_logp(BSCVTY, "got Paging Command");
9035 repeat;
9036 }
9037 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9038 /* MS does not respond to Paging, TA Req runs into timeout. */
9039 f_match_bsslap(rx_bsslap, tr_BSSLAP_Abort(?));
9040 }
9041 }
9042
9043 /* SMLC responds with failure */
9044 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(omit, BSSMAP_LE_LCS_CAUSE_REQUEST_ABORTED));
9045 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9046
9047 /* BSC tells MSC about failure */
9048 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(
9049 locationEstimate := omit, positioningData := omit,
9050 lCS_Cause := tr_BSSMAP_LcsCause(BSSMAP_LCS_CAUSE_REQUEST_ABORTED)));
9051
9052 /* There is no lchan. Still the MSC's job to decide whether to tear down the conn or not. */
9053 f_verify_active_A_conn_and_clear();
9054
9055 f_sleep(2.0);
9056 setverdict(pass);
9057}
9058testcase TC_lcs_loc_req_for_idle_ms_no_pag_resp() runs on test_CT {
9059 var MSC_ConnHdlr vc_conn;
9060 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9061
9062 f_init(1, true);
9063 f_sleep(1.0);
9064
9065 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9066 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9067
9068 vc_conn := f_start_handler(refers(f_tc_lcs_loc_req_for_idle_ms_no_pag_resp), pars);
9069 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009070 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009071}
9072
9073/* During an ongoing Location Request, the MS sends a CM Service Request. Expect the same A-conn to be re-used / taken
9074 * over. */
9075private function f_tc_cm_service_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9076 f_sleep(1.0);
9077
9078 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9079 f_bssap_le_register_imsi(g_pars.imsi, omit);
9080
9081 /* Register to receive the Paging Command */
9082 var RslChannelNr new_chan_nr := valueof(t_RslChanNr0(1, RSL_CHAN_NR_Bm_ACCH));
9083 g_chan_nr := new_chan_nr;
9084 f_rslem_register(0, g_chan_nr);
9085
9086 BSSAP.send(ts_BSSAP_Conn_Req(g_pars.sccp_addr_bsc, g_pars.sccp_addr_msc,
9087 valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9088 ts_CellId_CGI('001'H, '01'H, 1, 0)))));
9089 BSSAP.receive(RAN_Conn_Prim:MSC_CONN_PRIM_CONF_IND);
9090
9091 var PDU_BSSAP_LE plr;
9092 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9093
9094 /* As the A-interface conn was established for LCS, the MS coincidentally decides to issue a CM Service Request
9095 * and establish Layer 3. It should use the existing A-interface conn. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009096 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 +02009097 do_clear := false, expect_bssmap_l3 := true);
9098
9099 /* SMLC wants to ask the TA from the BSC explicitly in a BSSLAP TA Request message */
9100 BSSAP_LE.send(ts_BSSMAP_LE_BSSLAP(ts_BSSLAP_TA_Req));
9101
9102 /* OsmoBSC already has an lchan, no need to Page, just returns the TA */
9103 f_expect_bsslap(tr_BSSLAP_TA_Resp(?, ?));
9104
9105 /* SMLC got the TA from the BSC, now responds with geo information data. */
9106 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9107 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9108 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9109
9110 /* The lchan should still exist, it was from a CM Service Request. */
9111 f_mo_l3_transceive();
9112
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009113 f_perform_clear();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009114
9115 f_sleep(2.0);
9116 setverdict(pass);
9117}
9118testcase TC_cm_service_during_lcs_loc_req() runs on test_CT {
9119 var MSC_ConnHdlr vc_conn;
9120 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9121
9122 f_init(1, true);
9123 f_sleep(1.0);
9124
9125 pars.sccp_addr_msc := g_bssap[0].sccp_addr_own;
9126 pars.sccp_addr_bsc := g_bssap[0].sccp_addr_peer;
9127
9128 vc_conn := f_start_handler(refers(f_tc_cm_service_during_lcs_loc_req), pars);
9129 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009130 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009131}
9132
9133/* During an ongoing Perform Location Request, do a Handover, an expect a BSSLAP Reset message from the BSC to indicate
9134 * the new lchan after handover. */
9135private function f_tc_ho_during_lcs_loc_req(charstring id) runs on MSC_ConnHdlr {
9136 f_sleep(1.0);
9137
9138 f_establish_fully(omit, omit);
9139 f_bssap_le_register_imsi(g_pars.imsi, omit);
9140
9141 BSSAP.send(valueof(ts_BSSMAP_Perform_Location_Request(ts_BSSMAP_Imsi(g_pars.imsi),
9142 ts_CellId_CGI('262'H, '42'H, 23, 42))));
9143
9144 var PDU_BSSAP_LE plr;
9145 BSSAP_LE.receive(tr_BSSMAP_LE_PerfLocReq(BSSMAP_LE_LOC_INFO_CURRENT_GEOGRAPHIC_LOC, ?, ?)) -> value(plr);
9146
9147 /* SMLC ponders the Location Request, in the meantime the BSC decides to handover */
9148 f_bts_0_cfg(BSCVTY, {"neighbor bts 1"});
9149
9150 var HandoverState hs := {
9151 rr_ho_cmpl_seen := false,
9152 handover_done := false,
9153 old_chan_nr := -
9154 };
9155 /* issue hand-over command on VTY */
9156 f_vty_handover(BSCVTY, 0, 0, g_chan_nr, 1);
9157 /* temporarily suspend DChan processing on BTS1 to avoid race with RSLEM_register */
9158 f_rslem_suspend(RSL1_PROC);
9159
9160 /* From the MGW perspective, a handover is is characterized by
9161 * performing one MDCX operation with the MGW. So we expect to see
9162 * one more MDCX during handover. */
9163 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].crcx_seen_exp + 1;
9164
9165 alt {
9166 [] as_handover(hs);
9167 }
9168
9169 var PDU_BSSAP_LE rx_bsslap;
9170
9171 interleave {
9172 /* Expect the BSC to inform the MSC about the handover */
9173 [] BSSAP.receive(tr_BSSMAP_HandoverPerformed);
9174
9175 /* Expect the BSC to inform the SMLC about the handover */
9176 [] BSSAP_LE.receive(tr_BSSMAP_LE_ConnInfo(BSSMAP_LE_PROT_BSSLAP, ?)) -> value(rx_bsslap) {
9177 f_match_bsslap(rx_bsslap, tr_BSSLAP_Reset(BSSLAP_CAUSE_INTRA_BSS_HO));
9178 }
9179 }
9180
9181 /* SMLC now responds with geo information data. */
9182 BSSAP_LE.send(ts_BSSMAP_LE_PerfLocResp(gad_ell_point_unc_circle, omit));
9183 BSSAP_LE.receive(BSSAP_LE_Conn_Prim:CONN_PRIM_DISC_IND);
9184 BSSAP.receive(tr_BSSMAP_Perform_Location_Response(tr_BSSMAP_IE_LocationEstimate(gad_ell_point_unc_circle)));
9185
9186 /* lchan still active */
9187 f_mo_l3_transceive(RSL1);
9188
9189 /* MSC decides it is done now. */
Neels Hofmeyr85bcd272021-07-22 19:14:48 +02009190 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009191
9192 f_sleep(2.0);
9193 setverdict(pass);
9194}
9195testcase TC_ho_during_lcs_loc_req() runs on test_CT {
9196 var MSC_ConnHdlr vc_conn;
9197 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9198
9199 f_init(2, true);
9200 f_sleep(1.0);
9201 vc_conn := f_start_handler(refers(f_tc_ho_during_lcs_loc_req), pars);
9202 vc_conn.done;
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009203 f_shutdown_helper();
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009204}
9205
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009206/* Attempt Complete Layer 3 without any MSC available (OS#4832) */
9207private function f_tc_no_msc(charstring id) runs on MSC_ConnHdlr {
9208 f_MscConnHdlr_init(g_pars.media_nr, "127.0.0.2", "127.0.0.3", FR_AMR);
9209
9210 /* Also disable attach for the single connected MSC */
9211 f_vty_msc_allow_attach(BSCVTY, { false });
9212
9213 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) ));
9214 f_chan_est(g_pars.ra, l3_enc, g_pars.link_id, g_pars.fn);
9215
9216 /* No MSC is found, expecting a proper release on RSL */
9217 interleave {
9218 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {
9219 f_logp(BSCVTY, "Got RSL RR Release");
9220 }
9221 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9222 f_logp(BSCVTY, "Got RSL Deact SACCH");
9223 }
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009224 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009225 f_logp(BSCVTY, "Got RSL RF Chan Rel, sending Rel Ack");
9226 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009227 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009228 }
9229 }
9230 setverdict(pass);
9231}
9232testcase TC_no_msc() runs on test_CT {
9233
9234 f_init(1, true);
9235 f_sleep(1.0);
9236 var MSC_ConnHdlr vc_conn;
9237 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9238
9239 f_ctrs_bsc_init(counternames_bsc_mscpool);
9240
9241 vc_conn := f_start_handler(refers(f_tc_no_msc), pars);
9242 vc_conn.done;
9243
9244 f_ctrs_bsc_add("mscpool:subscr:no_msc");
9245 f_ctrs_bsc_verify();
Vadim Yanitskiy8ca840e2021-01-03 14:16:35 +01009246 f_shutdown_helper();
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009247}
9248
Harald Welte0ea2d5e2018-04-07 21:40:29 +02009249/* Dyn PDCH todo:
9250 * activate OSMO as TCH/F
9251 * activate OSMO as TCH/H
9252 * does the BSC-located PCU socket get the updated INFO?
9253 * what if no PCU is connected at the time?
9254 * is the info correct on delayed PCU (re)connect?
9255 */
Harald Welte94e0c342018-04-07 11:33:23 +02009256
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009257private function f_TC_refuse_mode_modif_to_vamos(charstring id) runs on MSC_ConnHdlr {
9258 var PDU_BSSAP ass_cmd := f_gen_ass_req(g_pars.use_osmux);
9259 var template PDU_BSSAP exp_compl := f_gen_exp_compl(g_pars.use_osmux);
9260
9261 /* puzzle together the ASSIGNMENT REQ for given codec[s] */
9262 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9263 ass_cmd.pdu.bssmap.assignmentRequest.codecList := g_pars.ass_codec_list;
9264 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0] :=
9265 g_pars.ass_codec_list.codecElements[0];
9266 if (isvalue(g_pars.expect_mr_s0_s7)) {
9267 exp_compl.pdu.bssmap.assignmentComplete.speechCodec.codecElements[0].s0_7 :=
9268 g_pars.expect_mr_s0_s7;
9269 }
9270 }
9271 ass_cmd.pdu.bssmap.assignmentRequest.channelType :=
9272 f_BSSMAP_chtype_from_codec(g_pars.ass_codec_list.codecElements[0]);
9273 log("expecting ASS COMPL like this: ", exp_compl);
9274
9275 f_establish_fully(ass_cmd, exp_compl);
9276
Neels Hofmeyr8746b0d2021-06-01 17:25:39 +02009277 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 +00009278
9279 var RSL_Message rsl;
9280
9281 timer T := 5.0;
9282 T.start;
9283 alt {
9284 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr)) -> value rsl {
9285 var PDU_ML3_NW_MS l3 := dec_PDU_ML3_NW_MS(rsl.ies[2].body.l3_info.payload);
9286 log("Rx L3 from net: ", l3);
9287 if (ischosen(l3.msgs.rrm.channelModeModify)) {
9288 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9289 mtc.stop;
9290 }
9291 }
9292 [] RSL.receive(tr_RSL_MODE_MODIFY_REQ(g_chan_nr, ?)) -> value rsl {
9293 setverdict(fail, "Mode Modify to VAMOS succeeded even though BTS does not support VAMOS");
9294 mtc.stop;
9295 }
9296 [] T.timeout {
9297 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related Mode Modify should happen. */
9298 setverdict(pass);
9299 }
9300 }
9301 T.stop;
9302}
9303
9304/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel Mode Modify to VAMOS mode is refused by
9305 * osmo-bsc. */
9306testcase TC_refuse_mode_modif_to_vamos() runs on test_CT {
9307 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9308 var MSC_ConnHdlr vc_conn;
9309
9310 f_init(1, true);
9311 f_sleep(1.0);
9312
9313 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9314 vc_conn := f_start_handler(refers(f_TC_refuse_mode_modif_to_vamos), pars);
9315 vc_conn.done;
9316 f_shutdown_helper();
9317}
9318
9319/* The BSC does *not* indicate BTS_FEAT_VAMOS; make sure that a channel activation to VAMOS mode is refused by osmo-bsc.
9320 */
9321testcase TC_refuse_chan_act_to_vamos() runs on test_CT {
9322 f_init_vty();
9323
9324 f_init(1, false);
9325 f_sleep(1.0);
9326
9327 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot 1 sub-slot 0 activate-vamos fr");
9328
9329 var ASP_RSL_Unitdata rx_rsl_ud;
9330 timer T := 5.0;
9331
9332 T.start;
9333 alt {
9334 [] IPA_RSL[0].receive(tr_ASP_RSL_UD(?, IPAC_PROTO_RSL_TRX0)) -> value rx_rsl_ud {
9335 if (rx_rsl_ud.rsl.msg_type == RSL_MT_CHAN_ACTIV) {
9336 T.stop;
9337 setverdict(fail, "CHANnel ACTivate in VAMOS mode succeeded even though BTS does not support VAMOS");
9338 mtc.stop;
9339 }
9340 repeat;
9341 }
9342 [] T.timeout {
9343 /* The BTS does not exhibit BTS_FEAT_VAMOS, so no VAMOS related CHANnel ACTivate should happen. */
9344 setverdict(pass);
9345 }
9346 }
9347}
9348
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009349private function f_TC_reassignment_codec(charstring id) runs on MSC_ConnHdlr {
9350 /* First fully set up a speech lchan */
9351 f_TC_assignment_codec(id);
9352
9353 /* Trigger re-assignment to another lchan */
9354 var AssignmentState assignment_st := valueof(ts_AssignmentStateInit);
9355
9356 /* Re-Assignment should tell the MGW endpoint the new lchan's RTP address and port, so expecting to see exactly
9357 * one MDCX on MGCP. */
9358 g_media.mgcp_conn[0].mdcx_seen_exp := g_media.mgcp_conn[0].mdcx_seen_exp + 1;
9359
9360 /* The new lchan will see all-new IPAC_CRCX and IPAC_MDCX messages telling the BTS the same RTP address and port
9361 * as the old lchan used. */
9362 g_media.bts.ipa_crcx_seen := false;
9363 g_media.bts.ipa_mdcx_seen := false;
9364
9365 /* Send different BTS side RTP port number for the new lchan */
9366 g_media.bts.bts.port_nr := 4223;
9367
9368 f_rslem_register(0, valueof(ts_RslChanNr_Bm(2))); /* <-- FIXME: can we somehow infer the timeslot that will be used? */
9369
9370 /* Trigger re-assignment. */
9371 f_vty_transceive(BSCVTY, "bts 0 trx 0 timeslot " & int2str(g_chan_nr.tn) & " sub-slot 0 assignment");
9372
9373 timer T := 5.0;
9374 T.start;
9375 alt {
9376 [] as_assignment(assignment_st);
9377 [] as_Media();
9378 [] T.timeout {
9379 break;
9380 }
9381 }
9382
9383 if (not assignment_st.assignment_done) {
9384 setverdict(fail, "Assignment did not complete");
9385 mtc.stop;
9386 }
9387
9388 f_check_mgcp_expectations()
9389 setverdict(pass);
9390
9391 f_sleep(2.0);
9392 log("show lchan summary: ", f_vty_transceive_ret(BSCVTY, "show lchan summary"));
9393
9394 /* Instruct BSC to clear channel */
9395 var BssmapCause cause := 0;
9396 BSSAP.send(ts_BSSMAP_ClearCommand(cause));
9397 interleave {
9398 [] MGCP.receive(tr_DLCX) {}
9399 [] MGCP.receive(tr_DLCX) {}
9400 [] RSL.receive(tr_RSL_DATA_REQ(g_chan_nr, ?, decmatch tr_RRM_RR_RELEASE)) {}
9401 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {}
Neels Hofmeyr3c5127e2021-07-22 19:18:40 +02009402 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009403 RSL.send(ts_RSL_RF_CHAN_REL_ACK(g_chan_nr));
Neels Hofmeyre680b012021-07-22 19:19:09 +02009404 f_rslem_unregister(0, g_chan_nr);
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009405 }
9406 [] BSSAP.receive(tr_BSSMAP_ClearComplete) {
9407 BSSAP.send(RAN_Conn_Prim:MSC_CONN_PRIM_DISC_REQ);
9408 }
9409 }
9410
9411 f_sleep(0.5);
9412}
9413
9414testcase TC_reassignment_fr() runs on test_CT {
9415 var TestHdlrParams pars := f_gen_test_hdlr_pars();
9416 var MSC_ConnHdlr vc_conn;
9417
9418 f_init(1, true);
9419 f_sleep(1.0);
9420
9421 f_ctrs_bsc_and_bts_init();
9422
9423 pars.ass_codec_list := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9424 vc_conn := f_start_handler(refers(f_TC_reassignment_codec), pars);
9425 vc_conn.done;
9426
9427 /* from f_establish_fully() */
9428 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9429 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9430 /* from re-assignment */
9431 f_ctrs_bsc_and_bts_add(0, "assignment:attempted");
9432 f_ctrs_bsc_and_bts_add(0, "assignment:completed");
9433 f_ctrs_bsc_and_bts_verify();
9434 f_shutdown_helper();
9435}
9436
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009437const charstring REEST_LOST_CONNECTION := "REEST_LOST_CONNECTION";
9438const charstring REEST_CLEAR := "REEST_CLEAR";
9439const charstring REEST_CLEAR_DONE := "REEST_CLEAR_DONE";
9440
9441/* CM Re-Establishment, 3GPP TS 24.008 4.5.1.6.
9442 * The MS <-> BTS loses radio connection, MS shows up on second BTS and asks for CM Re-Establishment.
9443 * BSC should establish a separate A conn for the same MS, the original A conn is then cleared by
9444 * the MSC as the CM Re-Establishment is handled.
9445 *
9446 * MS bts0 bts1 bsc msc test-component
9447 * |<----->|<----------------->|<-0-->| _1 Establish channel on bts 0
9448 * | | _1 wait a bit, to settle down
9449 * |<-x x--| | _1 "lose connection"
9450 * | | REEST_LOST_CONNECTION
9451 * |----------------->|------->|--1-->| _2 new A-conn: Chan Rqd, Imm Ass, Compl L3 with CM Re-Establishment Req
9452 * | | REEST_CLEAR
9453 * | |<-0---| _1 Clear Command on first A-conn
9454 * | |--0-->| _1 Clear Complete
9455 * | |<----------------->| | _1 Release first channel
9456 * | | REEST_CLEAR_DONE
9457 * |<-----------------|<-------|<-1---| _2 Chan Activ, Assignment Command
9458 * |<-----------------|<-------|<-1---| _2 Clear Command, Release
9459 *
9460 */
9461private function f_tc_cm_reestablishment_1(charstring id) runs on MSC_ConnHdlr {
9462 var template PDU_BSSAP exp_compl := f_gen_exp_compl();
9463 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9464
9465 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9466 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9467
9468 f_establish_fully(ass_cmd, exp_compl);
9469
9470 /* The original channel loses connection, MS attemts CM Re-Establishment on another cell, see
9471 * f_tc_cm_reestablishment_2(). This established channel stays active until MSC sends a Clear Command. The time
9472 * when exactly that happens is determined by f_tc_cm_reestablishment_2(). */
9473 f_sleep(2.0);
9474 COORD.send(REEST_LOST_CONNECTION);
9475
9476 alt {
9477 [] COORD.receive(REEST_CLEAR);
9478 [] RSL.receive(tr_RSL_DEACT_SACCH(g_chan_nr)) {
9479 setverdict(fail, "Unexpected channel release");
9480 mtc.stop;
9481 }
9482 [] RSL.receive(tr_RSL_RF_CHAN_REL(g_chan_nr)) {
9483 setverdict(fail, "Unexpected channel release");
9484 mtc.stop;
9485 }
9486 }
9487 f_perform_clear()
9488 f_expect_dlcx_conns();
9489 COORD.send(REEST_CLEAR_DONE);
9490}
9491
9492private function f_tc_cm_reestablishment_2(charstring id) runs on MSC_ConnHdlr {
9493 f_MscConnHdlr_init(g_pars.media_nr, host_bts, host_mgw_mgcp, FR_AMR);
9494
9495 /* The MS lost the connection on the first channel, now establishes another one */
9496 COORD.receive(REEST_LOST_CONNECTION);
9497
9498 var MobileIdentityLV mi := valueof(ts_MI_IMSI_LV(g_pars.imsi));
9499 var PDU_ML3_MS_NW l3_info := valueof(ts_CM_REESTABL_REQ(mi));
9500 var octetstring l3_enc := enc_PDU_ML3_MS_NW(l3_info);
9501
9502 f_create_bssmap_exp(l3_enc);
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009503 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 +02009504 BSSAP.receive(tr_BSSMAP_ComplL3(l3_enc));
9505
9506 /* MSC got the CM Re-Establishment request and first off clears the previous conn. */
9507 COORD.send(REEST_CLEAR);
9508 COORD.receive(REEST_CLEAR_DONE);
9509
9510 f_sleep(2.0);
9511
9512 /* Answer the CM Re-Establishment with an Assignment Command. */
9513 var template PDU_BSSAP expect_assignment_compl := f_gen_exp_compl();
9514 var PDU_BSSAP ass_cmd := f_gen_ass_req();
9515 ass_cmd.pdu.bssmap.assignmentRequest.channelType := valueof(ts_BSSMAP_IE_ChannelType);
9516 ass_cmd.pdu.bssmap.assignmentRequest.codecList := valueof(ts_BSSMAP_IE_CodecList({ts_CodecFR}));
9517
9518 var AssignmentState st := valueof(ts_AssignmentStateInit);
9519 st.voice_call := true;
9520 st.is_assignment := true;
9521
9522 var ExpectCriteria mgcpcrit := {
9523 connid := omit,
9524 endpoint := omit,
9525 transid := omit
9526 };
9527 f_create_mgcp_expect(mgcpcrit);
9528
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009529 f_rslem_dchan_queue_enable(RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009530
9531 BSSAP.send(ass_cmd);
9532
9533 var PDU_BSSAP bssap;
9534
9535 alt {
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009536 [] as_assignment(st, rsl_pt := RSL1, rsl_proc_pt := RSL1_PROC);
9537 [] as_Media_ipacc(RSL1, RSL2);
9538 [] as_Media_mgw();
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009539 [st.assignment_done] BSSAP.receive(expect_assignment_compl) {
9540 break;
9541 }
9542 }
9543
9544 f_sleep(3.0);
9545
9546 f_logp(BSCVTY, "f_tc_cm_reestablishment_2 clearing");
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009547 f_perform_clear(RSL1, RSL1_PROC);
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009548 f_expect_dlcx_conns();
9549}
9550
9551testcase TC_cm_reestablishment() runs on test_CT {
9552 var TestHdlrParams pars1 := f_gen_test_hdlr_pars();
9553 var MSC_ConnHdlr vc_conn1;
9554
9555 var TestHdlrParams pars2 := f_gen_test_hdlr_pars();
9556 var MSC_ConnHdlr vc_conn2;
9557 pars2.imsi := pars1.imsi;
9558 pars2.media_nr := 2;
Neels Hofmeyrc7b1f6d2021-07-20 23:21:36 +02009559 /* f_tc_cm_reestablishment_2 uses 'bts 1'.
9560 * BTS 1 has BSIC 11 (and no explicit timeslot training_sequence_code config), so expecting TSC = (BSIC & 7) = 3 */
9561 pars2.expect_tsc := 3;
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009562
9563 f_init(2, true, guard_timeout := 40.0);
9564 f_sleep(1.0);
9565
9566 vc_conn1 := f_start_handler_create(pars1);
9567 vc_conn2 := f_start_handler_create(pars2);
9568 connect(vc_conn1:COORD, vc_conn2:COORD);
9569 f_start_handler_run(vc_conn1, refers(f_tc_cm_reestablishment_1), pars1);
9570 f_start_handler_run(vc_conn2, refers(f_tc_cm_reestablishment_2), pars2);
9571 vc_conn1.done;
9572 vc_conn2.done;
9573
9574 f_shutdown_helper();
9575}
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009576
Harald Welte28d943e2017-11-25 15:00:50 +01009577control {
Harald Welte898113b2018-01-31 18:32:21 +01009578 /* CTRL interface testing */
Harald Welte4003d112017-12-09 22:35:39 +01009579 execute( TC_ctrl_msc_connection_status() );
Stefan Sperlingb041b3d2018-01-03 17:14:55 +01009580 execute( TC_ctrl_msc0_connection_status() );
Harald Welte96c94412017-12-09 03:12:45 +01009581 execute( TC_ctrl() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +02009582 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_SCCPlite_SERVER) {
Pau Espin Pedrol5a2d7432019-06-07 19:43:45 +02009583 execute( TC_ctrl_location() );
9584 }
Harald Welte898113b2018-01-31 18:32:21 +01009585
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02009586 execute( TC_si_default() );
Neels Hofmeyr66aeba42020-07-06 02:21:21 +02009587 execute( TC_si2quater_2_earfcns() );
9588 execute( TC_si2quater_3_earfcns() );
9589 execute( TC_si2quater_4_earfcns() );
9590 execute( TC_si2quater_5_earfcns() );
9591 execute( TC_si2quater_6_earfcns() );
Neels Hofmeyrad132f22020-07-08 02:20:16 +02009592 execute( TC_si2quater_12_earfcns() );
9593 execute( TC_si2quater_23_earfcns() );
9594 execute( TC_si2quater_32_earfcns() );
9595 execute( TC_si2quater_33_earfcns() );
9596 execute( TC_si2quater_42_earfcns() );
9597 execute( TC_si2quater_48_earfcns() );
9598 execute( TC_si2quater_49_earfcns() );
Pau Espin Pedrol85a84432020-07-20 18:45:03 +02009599 execute( TC_si_acc_rotate() );
Alexander Couzens4ad3a352020-09-10 22:29:12 +02009600 execute( TC_si_acc_ramp_rotate() );
Neels Hofmeyr5e686dc2020-06-30 01:26:53 +02009601
Harald Welte898113b2018-01-31 18:32:21 +01009602 /* RSL DCHAN Channel ACtivation / Deactivation */
Harald Welteae026692017-12-09 01:03:01 +01009603 execute( TC_chan_act_noreply() );
Harald Welte4003d112017-12-09 22:35:39 +01009604 execute( TC_chan_act_counter() );
Harald Welteae026692017-12-09 01:03:01 +01009605 execute( TC_chan_act_ack_noest() );
Philipp Maier9c60a622020-07-09 15:08:46 +02009606 execute( TC_chan_act_ack_noest_emerg() );
Philipp Maier606f07d2020-08-12 17:21:58 +02009607 execute( TC_chan_rqd_emerg_deny() );
Harald Welteae026692017-12-09 01:03:01 +01009608 execute( TC_chan_act_ack_est_ind_noreply() );
9609 execute( TC_chan_act_ack_est_ind_refused() );
Harald Welte618ef642017-12-14 14:58:20 +01009610 execute( TC_chan_act_nack() );
Harald Welte799c97b2017-12-14 17:50:30 +01009611 execute( TC_chan_exhaustion() );
Vadim Yanitskiy1ff1fdf2018-11-27 01:32:57 +07009612 execute( TC_chan_deact_silence() );
Harald Welte4003d112017-12-09 22:35:39 +01009613 execute( TC_chan_rel_rll_rel_ind() );
9614 execute( TC_chan_rel_conn_fail() );
9615 execute( TC_chan_rel_hard_clear() );
Pau Espin Pedrol841b90d2021-04-15 16:42:52 +02009616 execute( TC_chan_rel_last_eutran_plmn_hard_clear_no_csfb() );
9617 execute( TC_chan_rel_last_eutran_plmn_hard_clear_csfb() );
Harald Welte99787102019-02-04 10:41:36 +01009618 execute( TC_chan_rel_hard_clear_csfb() );
Harald Welted8c36cd2017-12-09 23:05:31 +01009619 execute( TC_chan_rel_hard_rlsd() );
Harald Welte550daf92018-06-11 19:22:13 +02009620 execute( TC_chan_rel_hard_rlsd_ms_dead() );
Harald Welte85804d42017-12-10 14:11:58 +01009621 execute( TC_chan_rel_a_reset() );
Pau Espin Pedrolc675b612020-01-09 19:55:40 +01009622 execute( TC_chan_rel_sccp_tiar_timeout() );
Neels Hofmeyr95a5edc2020-07-11 02:57:04 +02009623 execute( TC_chan_rel_rr_cause() );
Harald Welte6f521d82017-12-11 19:52:02 +01009624
Harald Weltecfe2c962017-12-15 12:09:32 +01009625 execute( TC_outbound_connect() );
Harald Welte898113b2018-01-31 18:32:21 +01009626
9627 /* Assignment related */
Harald Welte16a4adf2017-12-14 18:54:01 +01009628 execute( TC_assignment_cic_only() );
Harald Welte235ebf12017-12-15 14:18:16 +01009629 execute( TC_assignment_csd() );
9630 execute( TC_assignment_ctm() );
9631 execute( TC_assignment_sign() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +02009632 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9633 execute( TC_assignment_aoip_tla_v6() );
9634 }
Harald Welte235ebf12017-12-15 14:18:16 +01009635 execute( TC_assignment_fr_a5_0() );
9636 execute( TC_assignment_fr_a5_1() );
Neels Hofmeyrf246a922020-05-13 02:27:10 +02009637 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Harald Welte8f67d1d2018-05-25 20:38:42 +02009638 execute( TC_assignment_fr_a5_1_codec_missing() );
9639 }
Harald Welte235ebf12017-12-15 14:18:16 +01009640 execute( TC_assignment_fr_a5_3() );
Neels Hofmeyr0d8ec532021-06-11 00:09:48 +02009641 execute( TC_assignment_fr_a5_4() );
Neels Hofmeyr0faeb7a2021-06-10 23:59:35 +02009642 execute( TC_assignment_fr_a5_4_fail() );
Neels Hofmeyr04d6e6a2021-06-11 00:10:02 +02009643 execute( TC_assignment_fr_a5_not_sup() );
Harald Welte3c86ea02018-05-10 22:28:05 +02009644 execute( TC_ciph_mode_a5_0() );
9645 execute( TC_ciph_mode_a5_1() );
Oliver Smith50b98122021-07-09 15:00:28 +02009646 execute( TC_ciph_mode_a5_2_0() );
Oliver Smith1dff88d2021-07-09 08:45:51 +02009647 execute( TC_ciph_mode_a5_2_1() );
Harald Welte3c86ea02018-05-10 22:28:05 +02009648 execute( TC_ciph_mode_a5_3() );
Neels Hofmeyr81ad27f2021-06-11 00:09:40 +02009649 execute( TC_ciph_mode_a5_4() );
Harald Welte16a4adf2017-12-14 18:54:01 +01009650
Harald Welte60aa5762018-03-21 19:33:13 +01009651 execute( TC_assignment_codec_fr() );
Neels Hofmeyr559d5d02021-04-16 16:50:49 +02009652 execute( TC_assignment_codec_fr_by_mode_modify() );
Harald Welte60aa5762018-03-21 19:33:13 +01009653 execute( TC_assignment_codec_hr() );
9654 execute( TC_assignment_codec_efr() );
9655 execute( TC_assignment_codec_amr_f() );
9656 execute( TC_assignment_codec_amr_h() );
Philipp Maier8a581d22019-03-26 18:32:48 +01009657
Neels Hofmeyrf246a922020-05-13 02:27:10 +02009658 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
Philipp Maier8a581d22019-03-26 18:32:48 +01009659 execute( TC_assignment_codec_amr_f_S1() );
9660 execute( TC_assignment_codec_amr_h_S1() );
9661 execute( TC_assignment_codec_amr_f_S124() );
9662 execute( TC_assignment_codec_amr_h_S124() );
9663 execute( TC_assignment_codec_amr_f_S0() );
9664 execute( TC_assignment_codec_amr_f_S02() );
9665 execute( TC_assignment_codec_amr_f_S024() );
9666 execute( TC_assignment_codec_amr_f_S0247() );
9667 execute( TC_assignment_codec_amr_h_S0() );
9668 execute( TC_assignment_codec_amr_h_S02() );
9669 execute( TC_assignment_codec_amr_h_S024() );
9670 execute( TC_assignment_codec_amr_h_S0247() );
9671 execute( TC_assignment_codec_amr_f_S01234567() );
9672 execute( TC_assignment_codec_amr_f_S0234567() );
9673 execute( TC_assignment_codec_amr_f_zero() );
9674 execute( TC_assignment_codec_amr_f_unsupp() );
9675 execute( TC_assignment_codec_amr_h_S7() );
Neels Hofmeyr21863562020-11-26 00:34:33 +00009676 execute( TC_assignment_codec_amr_f_start_mode_auto() );
9677 execute( TC_assignment_codec_amr_h_start_mode_auto() );
Neels Hofmeyr3eb94562020-11-26 02:40:26 +00009678 execute( TC_assignment_codec_amr_f_start_mode_4() );
9679 execute( TC_assignment_codec_amr_h_start_mode_4() );
Neels Hofmeyr454d7922020-11-26 02:24:57 +00009680 execute( TC_assignment_codec_amr_startmode_cruft() );
Philipp Maier8a581d22019-03-26 18:32:48 +01009681 }
Harald Welte60aa5762018-03-21 19:33:13 +01009682
Philipp Maierac09bfc2019-01-08 13:41:39 +01009683 execute( TC_assignment_codec_fr_exhausted_req_hr() );
9684 execute( TC_assignment_codec_fr_exhausted_req_fr() );
9685 execute( TC_assignment_codec_fr_exhausted_req_fr_hr() );
9686 execute( TC_assignment_codec_fr_exhausted_req_hr_fr() );
9687 execute( TC_assignment_codec_hr_exhausted_req_fr() );
9688 execute( TC_assignment_codec_hr_exhausted_req_hr() );
9689 execute( TC_assignment_codec_hr_exhausted_req_hr_fr() );
9690 execute( TC_assignment_codec_hr_exhausted_req_fr_hr() );
9691 execute( TC_assignment_codec_req_hr_fr() );
9692 execute( TC_assignment_codec_req_fr_hr() );
Pau Espin Pedrol14475352021-07-22 15:48:16 +02009693 execute( TC_assignment_sdcch_exhausted_req_signalling() );
9694 execute( TC_assignment_sdcch_exhausted_req_signalling_tch_forbidden() );
9695 execute( TC_assignment_sdcch_exhausted_req_voice_tch_forbidden() );
Philipp Maierac09bfc2019-01-08 13:41:39 +01009696
Pau Espin Pedrol23510fb2021-07-20 17:00:38 +02009697 execute( TC_assignment_osmux() );
Pau Espin Pedrolc6a53db2019-05-20 19:31:47 +02009698
Harald Welte898113b2018-01-31 18:32:21 +01009699 /* RLL Establish Indication on inactive DCHAN / SAPI */
Harald Welte5cd20ed2017-12-13 21:03:20 +01009700 execute( TC_rll_est_ind_inact_lchan() );
9701 execute( TC_rll_est_ind_inval_sapi1() );
9702 execute( TC_rll_est_ind_inval_sapi3() );
9703 execute( TC_rll_est_ind_inval_sacch() );
9704
Vadim Yanitskiy61f784a2020-10-01 21:12:19 +07009705 /* DLCI / RSL Link ID conversion for MO/MT messages on SAPI0/SAPI3 */
9706 execute( TC_tch_dlci_link_id_sapi() );
9707
Vadim Yanitskiy6ef5dfa2020-08-28 18:04:41 +07009708 /* SAPI N Reject triggered by RLL establishment failures */
9709 execute( TC_rll_rel_ind_sapi_n_reject() );
9710 execute( TC_rll_err_ind_sapi_n_reject() );
9711 execute( TC_rll_timeout_sapi_n_reject() );
9712
Harald Welte898113b2018-01-31 18:32:21 +01009713 /* Paging related tests */
Harald Welte6f521d82017-12-11 19:52:02 +01009714 execute( TC_paging_imsi_nochan() );
9715 execute( TC_paging_tmsi_nochan() );
9716 execute( TC_paging_tmsi_any() );
9717 execute( TC_paging_tmsi_sdcch() );
9718 execute( TC_paging_tmsi_tch_f() );
9719 execute( TC_paging_tmsi_tch_hf() );
9720 execute( TC_paging_imsi_nochan_cgi() );
9721 execute( TC_paging_imsi_nochan_lac_ci() );
9722 execute( TC_paging_imsi_nochan_ci() );
9723 execute( TC_paging_imsi_nochan_lai() );
9724 execute( TC_paging_imsi_nochan_lac() );
9725 execute( TC_paging_imsi_nochan_all() );
Harald Welte751d3eb2018-01-31 15:51:06 +01009726 execute( TC_paging_imsi_nochan_plmn_lac_rnc() );
9727 execute( TC_paging_imsi_nochan_rnc() );
9728 execute( TC_paging_imsi_nochan_lac_rnc() );
9729 execute( TC_paging_imsi_nochan_lacs() );
9730 execute( TC_paging_imsi_nochan_lacs_empty() );
Stefan Sperling049a86e2018-03-20 15:51:00 +01009731 execute( TC_paging_imsi_nochan_cgi_unknown_cid() );
Harald Welte10985002017-12-12 09:29:15 +01009732 execute( TC_paging_imsi_a_reset() );
Harald Weltee65d40e2017-12-13 00:09:06 +01009733 execute( TC_paging_imsi_load() );
Philipp Maier779a7922018-02-16 11:00:37 +01009734 execute( TC_paging_counter() );
Pau Espin Pedrol3466cc52018-11-05 12:41:05 +01009735 execute( TC_paging_resp_unsol() );
Harald Welte4e9b9cc2017-12-14 18:31:02 +01009736
9737 execute( TC_rsl_drop_counter() );
Stefan Sperling830dc9d2018-02-12 21:08:28 +01009738 execute( TC_rsl_unknown_unit_id() );
9739
9740 execute( TC_oml_unknown_unit_id() );
Harald Welte898113b2018-01-31 18:32:21 +01009741
9742 execute( TC_classmark() );
Harald Welteeddf0e92020-06-21 19:42:15 +02009743 execute( TC_common_id() );
Harald Welte898113b2018-01-31 18:32:21 +01009744 execute( TC_unsol_ass_fail() );
Harald Welteea99a002018-01-31 20:46:43 +01009745 execute( TC_unsol_ass_compl() );
Harald Weltefbf9b5e2018-01-31 20:41:23 +01009746 execute( TC_unsol_ho_fail() );
Harald Weltee3bd6582018-01-31 22:51:25 +01009747 execute( TC_err_82_short_msg() );
Harald Weltee9e02e42018-01-31 23:36:25 +01009748 execute( TC_err_84_unknown_msg() );
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01009749
Harald Welte261af4b2018-02-12 21:20:39 +01009750 execute( TC_ho_int() );
Neels Hofmeyraf88d9d2021-06-21 02:14:27 +02009751 execute( TC_ho_int_a5_0() );
9752 execute( TC_ho_int_a5_1() );
9753 execute( TC_ho_int_a5_3() );
9754 execute( TC_ho_int_a5_4() );
Neels Hofmeyr5f144212020-11-03 15:41:58 +00009755 execute( TC_ho_int_radio_link_failure() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01009756
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01009757 execute( TC_ho_out_of_this_bsc() );
Neels Hofmeyr61ebb8b2018-10-09 18:28:06 +02009758 execute( TC_ho_out_fail_no_msc_response() );
9759 execute( TC_ho_out_fail_rr_ho_failure() );
Neels Hofmeyrd8a602c2019-07-09 19:46:01 +02009760 execute( TC_ho_out_fail_no_result_after_ho_cmd() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01009761
Neels Hofmeyrbd0ef932018-03-19 14:58:46 +01009762 execute( TC_ho_into_this_bsc() );
Neels Hofmeyr8ebf19c2021-06-21 05:24:01 +02009763 execute( TC_ho_into_this_bsc_a5_0() );
9764 execute( TC_ho_into_this_bsc_a5_1() );
9765 execute( TC_ho_into_this_bsc_a5_3() );
9766 execute( TC_ho_into_this_bsc_a5_4() );
Pau Espin Pedrol07866632020-09-03 19:10:55 +02009767 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9768 execute( TC_ho_into_this_bsc_tla_v6() );
9769 }
Pau Espin Pedrolc08d5522021-04-16 15:40:38 +02009770 execute( TC_srvcc_eutran_to_geran() );
Pau Espin Pedrol35801c32021-04-19 13:03:20 +02009771 execute( TC_srvcc_eutran_to_geran_ho_out() );
Pau Espin Pedrol9ae36d52021-06-15 17:29:43 +02009772 execute( TC_srvcc_eutran_to_geran_forbid_fast_return() );
9773 execute( TC_srvcc_eutran_to_geran_ho_out_forbid_fast_return() );
Neels Hofmeyr20bc3e22018-11-09 01:40:16 +01009774 execute( TC_ho_in_fail_msc_clears() );
9775 execute( TC_ho_in_fail_msc_clears_after_ho_detect() );
9776 execute( TC_ho_in_fail_no_detect() );
9777 execute( TC_ho_in_fail_no_detect2() );
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01009778
Neels Hofmeyr91401012019-07-11 00:42:35 +02009779 execute( TC_ho_neighbor_config_1() );
9780 execute( TC_ho_neighbor_config_2() );
9781 execute( TC_ho_neighbor_config_3() );
9782 execute( TC_ho_neighbor_config_4() );
9783 execute( TC_ho_neighbor_config_5() );
9784 execute( TC_ho_neighbor_config_6() );
9785 execute( TC_ho_neighbor_config_7() );
9786
Neels Hofmeyrcdc2d762018-03-12 01:48:11 +01009787 execute( TC_bssap_rlsd_does_not_cause_bssmap_reset() );
Neels Hofmeyr4ff93282018-03-12 04:25:35 +01009788 execute( TC_bssmap_clear_does_not_cause_bssmap_reset() );
Neels Hofmeyrfd445c32018-03-09 15:39:31 +01009789 execute( TC_ms_rel_ind_does_not_cause_bssmap_reset() );
Harald Welte94e0c342018-04-07 11:33:23 +02009790
9791 execute( TC_dyn_pdch_ipa_act_deact() );
9792 execute( TC_dyn_pdch_ipa_act_nack() );
9793 execute( TC_dyn_pdch_osmo_act_deact() );
9794 execute( TC_dyn_pdch_osmo_act_nack() );
Pau Espin Pedrole076b3f2021-07-20 16:45:57 +02009795 if (mp_enable_dyn_sdcch8_test) {
9796 execute( TC_dyn_ts_sdcch8_act_deact() );
9797 execute (TC_dyn_ts_sdcch8_tch_call_act_deact() );
9798 execute( TC_dyn_ts_sdcch8_act_nack() );
9799 }
Harald Welte99f3ca02018-06-14 13:40:29 +02009800
Stefan Sperling0796a822018-10-05 13:01:39 +02009801 execute( TC_chopped_ipa_ping() );
Stefan Sperlingaa1e60f2018-10-15 16:34:07 +02009802 execute( TC_chopped_ipa_payload() );
Stefan Sperling0796a822018-10-05 13:01:39 +02009803
Pau Espin Pedrol8f773632019-11-05 11:46:53 +01009804 /* Power control related */
9805 execute( TC_assignment_verify_ms_power_params_ie() );
Vadim Yanitskiy4b233042021-06-30 00:58:43 +02009806 execute( TC_c0_power_red_mode() );
Neels Hofmeyr4f118412020-06-04 15:25:10 +02009807
9808 /* MSC pooling */
9809 /* FIXME: in SCCPlite, indicating how many MSCs should be connected does currently not work. Since
9810 * RESET->RESET-ACK is unconditionally negotiated for all configured MSCs, they always all appear as connected
9811 * to osmo-bsc. The MSC pooling tests however require disconnecting selected MSCs, and hence don't work out as
9812 * intended on SCCPlite. So for now, run these only for SCCP/M3UA. */
9813 if (mp_bssap_cfg[0].transport == BSSAP_TRANSPORT_AoIP) {
9814 execute( TC_mscpool_L3Compl_on_1_msc() );
9815 execute( TC_mscpool_L3Complete_by_imsi_round_robin() );
9816 execute( TC_mscpool_LU_by_tmsi_null_nri_0_round_robin() );
9817 execute( TC_mscpool_LU_by_tmsi_null_nri_1_round_robin() );
9818 execute( TC_mscpool_L3Complete_by_tmsi_unassigned_nri_round_robin() );
9819 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_msc_not_connected_round_robin() );
9820 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_1() );
9821 execute( TC_mscpool_L3Complete_by_tmsi_valid_nri_2() );
9822 execute( TC_mscpool_LU_by_tmsi_from_other_PLMN() );
9823 execute( TC_mscpool_paging_and_response_imsi() );
9824 execute( TC_mscpool_paging_and_response_tmsi() );
9825 execute( TC_mscpool_no_allow_attach_round_robin() );
9826 execute( TC_mscpool_no_allow_attach_valid_nri() );
9827 }
9828
Harald Welte99f3ca02018-06-14 13:40:29 +02009829 /* at bottom as they might crash OsmoBSC before OS#3182 is fixed */
9830 execute( TC_early_conn_fail() );
9831 execute( TC_late_conn_fail() );
9832
Philipp Maier783681c2020-07-16 16:47:06 +02009833 /* Emergency call handling (deny / allow) */
9834 execute( TC_assignment_emerg_setup_allow() );
9835 execute( TC_assignment_emerg_setup_deny_msc() );
9836 execute( TC_assignment_emerg_setup_deny_bts() );
Philipp Maier82812002020-08-13 18:48:27 +02009837 execute( TC_emerg_premption() );
9838
Vadim Yanitskiy16bbde92020-08-28 05:30:45 +07009839 /* Frequency hopping parameters handling */
9840 execute( TC_fh_params_chan_activ() );
9841 execute( TC_fh_params_imm_ass() );
Vadim Yanitskiyaeb54a22020-09-01 06:25:25 +07009842 execute( TC_fh_params_assignment_cmd() );
Vadim Yanitskiy8f5430d2020-09-02 18:51:38 +07009843 execute( TC_fh_params_handover_cmd() );
Vadim Yanitskiyca974032020-09-01 07:20:39 +07009844 execute( TC_fh_params_si4_cbch() );
Neels Hofmeyr2b910dc2020-10-01 06:36:04 +02009845
9846 if (mp_enable_lcs_tests) {
9847 execute( TC_lcs_loc_req_for_active_ms() );
9848 execute( TC_lcs_loc_req_for_active_ms_ta_req() );
9849 execute( TC_lcs_loc_req_for_idle_ms() );
9850 execute( TC_lcs_loc_req_no_subscriber() );
9851 execute( TC_lcs_loc_req_for_active_ms_le_timeout() );
9852 execute( TC_lcs_loc_req_for_active_ms_le_timeout2() );
9853 execute( TC_lcs_loc_req_for_idle_ms_no_pag_resp() );
9854 execute( TC_cm_service_during_lcs_loc_req() );
9855 execute( TC_ho_during_lcs_loc_req() );
9856 }
Neels Hofmeyrbf037052020-10-28 22:52:02 +00009857
9858 execute( TC_no_msc() );
Neels Hofmeyr87857ec2021-04-25 16:17:47 +00009859
9860 execute( TC_refuse_chan_act_to_vamos() );
9861 execute( TC_refuse_mode_modif_to_vamos() );
Neels Hofmeyrd2d9f332021-04-28 22:23:36 +00009862
9863 execute( TC_reassignment_fr() );
Neels Hofmeyrfeda88e2021-07-19 13:51:29 +02009864
9865 execute( TC_cm_reestablishment() );
Harald Welte28d943e2017-11-25 15:00:50 +01009866}
9867
9868}