mirror of https://github.com/pvnis/srsRAN_4G.git
You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
619 lines
29 KiB
C++
619 lines
29 KiB
C++
/**
|
|
* Copyright 2013-2023 Software Radio Systems Limited
|
|
*
|
|
* This file is part of srsRAN.
|
|
*
|
|
* srsRAN is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as
|
|
* published by the Free Software Foundation, either version 3 of
|
|
* the License, or (at your option) any later version.
|
|
*
|
|
* srsRAN is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* A copy of the GNU Affero General Public License can be found in
|
|
* the LICENSE file in the top-level directory of this distribution
|
|
* and at http://www.gnu.org/licenses/.
|
|
*
|
|
*/
|
|
|
|
#include "srsenb/hdr/enb.h"
|
|
#include "srsenb/hdr/stack/rrc/rrc_mobility.h"
|
|
#include "srsenb/test/common/dummy_classes.h"
|
|
#include "srsran/asn1/rrc_utils.h"
|
|
#include "srsran/common/test_common.h"
|
|
#include "test_helpers.h"
|
|
#include <iostream>
|
|
|
|
using namespace asn1::rrc;
|
|
|
|
enum class test_event {
|
|
success,
|
|
wrong_measreport,
|
|
concurrent_ho,
|
|
ho_prep_failure,
|
|
duplicate_crnti_ce,
|
|
recover,
|
|
wrong_target_cell,
|
|
unknown_qci,
|
|
};
|
|
|
|
const char* to_string(test_event event)
|
|
{
|
|
switch (event) {
|
|
case test_event::success:
|
|
return "success";
|
|
case test_event::wrong_measreport:
|
|
return "wrong measreport";
|
|
case test_event::concurrent_ho:
|
|
return "measreport while in handover";
|
|
case test_event::ho_prep_failure:
|
|
return "ho preparation failure";
|
|
case test_event::recover:
|
|
return "fail and success";
|
|
case test_event::duplicate_crnti_ce:
|
|
return "duplicate CRNTI CE";
|
|
case test_event::wrong_target_cell:
|
|
return "wrong target cell";
|
|
case test_event::unknown_qci:
|
|
return "invalid QoS";
|
|
default:
|
|
return "none";
|
|
}
|
|
}
|
|
|
|
struct mobility_tester {
|
|
explicit mobility_tester(const test_event& args_) :
|
|
args(args_), logger(srslog::fetch_basic_logger("RRC")), rrc(&task_sched, bearers)
|
|
{
|
|
logger.set_level(srslog::basic_levels::info);
|
|
logger.set_hex_dump_max_size(1024);
|
|
}
|
|
virtual int generate_rrc_cfg() = 0;
|
|
virtual int setup_rrc() { return setup_rrc_common(); }
|
|
int run_preamble()
|
|
{
|
|
// mute all the startup log
|
|
logger.set_level(srslog::basic_levels::none);
|
|
|
|
// add user
|
|
sched_interface::ue_cfg_t ue_cfg{};
|
|
ue_cfg.supported_cc_list.resize(1);
|
|
ue_cfg.supported_cc_list[0].enb_cc_idx = 0;
|
|
ue_cfg.supported_cc_list[0].active = true;
|
|
rrc.add_user(rnti, ue_cfg);
|
|
|
|
// Do all the handshaking until the first RRC Connection Reconf
|
|
test_helpers::bring_rrc_to_reconf_state(rrc, *task_sched.get_timer_handler(), rnti);
|
|
logger.set_level(srslog::basic_levels::info);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
test_event args;
|
|
srslog::basic_logger& logger;
|
|
srsran::task_scheduler task_sched;
|
|
rrc_cfg_t cfg;
|
|
|
|
srsenb::rrc rrc;
|
|
test_dummies::mac_mobility_dummy mac;
|
|
test_dummies::rlc_mobility_dummy rlc;
|
|
test_dummies::pdcp_mobility_dummy pdcp;
|
|
test_dummies::phy_mobility_dummy phy;
|
|
test_dummies::s1ap_mobility_dummy s1ap;
|
|
enb_bearer_manager bearers;
|
|
gtpu_dummy gtpu;
|
|
|
|
void tic()
|
|
{
|
|
task_sched.tic();
|
|
rrc.tti_clock();
|
|
task_sched.run_pending_tasks();
|
|
};
|
|
|
|
const uint16_t rnti = 0x46;
|
|
|
|
protected:
|
|
int generate_rrc_cfg_common()
|
|
{
|
|
srsenb::all_args_t all_args;
|
|
TESTASSERT(test_helpers::parse_default_cfg(&cfg, all_args) == SRSRAN_SUCCESS);
|
|
cfg.meas_cfg_present = true;
|
|
report_cfg_eutra_s rep = generate_rep1();
|
|
cfg.cell_list[0].meas_cfg.meas_reports.push_back(rep);
|
|
cfg.cell_list[0].meas_cfg.meas_cells.resize(1);
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0] = generate_cell1();
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0].pci = 2;
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
int setup_rrc_common()
|
|
{
|
|
rrc.init(cfg, &phy, &mac, &rlc, &pdcp, &s1ap, >pu);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
};
|
|
|
|
struct s1ap_mobility_tester : public mobility_tester {
|
|
explicit s1ap_mobility_tester(const test_event& args_) : mobility_tester(args_) {}
|
|
int generate_rrc_cfg() final
|
|
{
|
|
TESTASSERT(generate_rrc_cfg_common() == SRSRAN_SUCCESS);
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0].eci = 0x19C02;
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0].earfcn = 2850;
|
|
cfg.cell_list[0].meas_cfg.meas_gap_period = 40;
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
};
|
|
|
|
struct intraenb_mobility_tester : public mobility_tester {
|
|
explicit intraenb_mobility_tester(const test_event& args_) : mobility_tester(args_) {}
|
|
int generate_rrc_cfg() final
|
|
{
|
|
TESTASSERT(generate_rrc_cfg_common() == SRSRAN_SUCCESS);
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0].eci = 0x19B02;
|
|
cfg.cell_list[0].meas_cfg.meas_gap_period = 40;
|
|
cfg.cell_list[0].meas_cfg.meas_cells[0].earfcn = 2850;
|
|
|
|
cell_cfg_t cell2 = cfg.cell_list[0];
|
|
cell2.pci = 2;
|
|
cell2.cell_id = 2;
|
|
cell2.dl_earfcn = 2850;
|
|
cell2.meas_cfg.meas_cells[0].pci = 1;
|
|
cell2.meas_cfg.meas_cells[0].earfcn = 3400;
|
|
cell2.meas_cfg.meas_cells[0].eci = 0x19B01;
|
|
cell2.meas_cfg.meas_gap_period = 80;
|
|
cfg.cell_list.push_back(cell2);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
};
|
|
|
|
int test_s1ap_mobility(srsran::log_sink_spy& spy, test_event test_params)
|
|
{
|
|
printf("\n===== TEST: test_s1ap_mobility() for event %s =====\n", to_string(test_params));
|
|
s1ap_mobility_tester tester{test_params};
|
|
spy.reset_counters();
|
|
srsran::unique_byte_buffer_t pdu;
|
|
|
|
TESTASSERT(tester.generate_rrc_cfg() == SRSRAN_SUCCESS);
|
|
TESTASSERT(tester.setup_rrc() == SRSRAN_SUCCESS);
|
|
TESTASSERT(tester.run_preamble() == SRSRAN_SUCCESS);
|
|
test_dummies::s1ap_mobility_dummy& s1ap = tester.s1ap;
|
|
|
|
/* Receive correct measConfig */
|
|
dl_dcch_msg_s dl_dcch_msg;
|
|
TESTASSERT(test_helpers::unpack_asn1(dl_dcch_msg, srsran::make_span(tester.pdcp.last_sdu.sdu)));
|
|
rrc_conn_recfg_r8_ies_s& recfg_r8 = dl_dcch_msg.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
TESTASSERT(recfg_r8.meas_cfg_present and recfg_r8.meas_cfg.meas_gap_cfg_present);
|
|
TESTASSERT(recfg_r8.meas_cfg.meas_gap_cfg.type().value == setup_opts::setup);
|
|
TESTASSERT((1 + recfg_r8.meas_cfg.meas_gap_cfg.setup().gap_offset.type().value) * 40u ==
|
|
tester.cfg.cell_list[0].meas_cfg.meas_gap_period);
|
|
|
|
/* Receive MeasReport from UE (correct if PCI=2) */
|
|
if (test_params == test_event::wrong_measreport) {
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x0D, 0xBC, 0x80}; // PCI == 3
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
} else {
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x09, 0xBC, 0x80}; // PCI == 2
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
}
|
|
tester.rrc.write_pdu(tester.rnti, 1, std::move(pdu));
|
|
tester.tic();
|
|
|
|
/* Test Case: the MeasReport is not valid */
|
|
if (test_params == test_event::wrong_measreport) {
|
|
TESTASSERT(s1ap.last_ho_required.rrc_container == nullptr);
|
|
TESTASSERT(spy.get_warning_counter() == 1);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
TESTASSERT(s1ap.last_ho_required.rrc_container != nullptr);
|
|
|
|
/* Test Case: Multiple concurrent MeasReports arrived. Only one HO procedure should be running */
|
|
if (test_params == test_event::concurrent_ho) {
|
|
s1ap.last_ho_required = {};
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x09, 0xBC, 0x80}; // PCI == 2
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
tester.rrc.write_pdu(tester.rnti, 1, std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(s1ap.last_ho_required.rrc_container == nullptr);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
/* Test Case: Check HO Required was sent to S1AP */
|
|
TESTASSERT(s1ap.last_ho_required.rnti == tester.rnti);
|
|
TESTASSERT(s1ap.last_ho_required.target_eci == tester.cfg.cell_list[0].meas_cfg.meas_cells[0].eci);
|
|
TESTASSERT(s1ap.last_ho_required.target_plmn.to_string() == "00101");
|
|
{
|
|
asn1::cbit_ref bref(s1ap.last_ho_required.rrc_container->msg, s1ap.last_ho_required.rrc_container->N_bytes);
|
|
asn1::rrc::ho_prep_info_s hoprep;
|
|
TESTASSERT(hoprep.unpack(bref) == asn1::SRSASN_SUCCESS);
|
|
ho_prep_info_r8_ies_s& hoprepr8 = hoprep.crit_exts.c1().ho_prep_info_r8();
|
|
TESTASSERT(hoprepr8.as_cfg_present);
|
|
// Check if RRC sends the current active bearers
|
|
TESTASSERT(hoprepr8.as_cfg.source_rr_cfg.srb_to_add_mod_list_present);
|
|
TESTASSERT(hoprepr8.as_cfg.source_rr_cfg.srb_to_add_mod_list[0].srb_id == 1);
|
|
TESTASSERT(hoprepr8.as_cfg.source_rr_cfg.srb_to_add_mod_list[1].srb_id == 2);
|
|
TESTASSERT(hoprepr8.as_cfg.source_rr_cfg.drb_to_add_mod_list_present);
|
|
TESTASSERT(hoprepr8.as_cfg.source_rr_cfg.drb_to_add_mod_list[0].drb_id == 1);
|
|
}
|
|
|
|
/* Test Case: HandoverPreparation has failed */
|
|
if (test_params == test_event::ho_prep_failure) {
|
|
tester.rrc.ho_preparation_complete(tester.rnti, rrc::ho_prep_result::failure, {}, nullptr);
|
|
// TESTASSERT(spy.get_error_counter() == 1);
|
|
TESTASSERT(not s1ap.last_enb_status.status_present);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
/* MME returns back an HandoverCommand, S1AP unwraps the RRC container */
|
|
uint8_t ho_cmd_rrc_container[] = {0x01, 0xa9, 0x00, 0xd9, 0xfc, 0x00, 0x00, 0x00, 0x00, 0x0b, 0x22, 0x04, 0x00, 0x00,
|
|
0x01, 0x48, 0x04, 0xbc, 0x00, 0x00, 0x00, 0x00, 0x08, 0x00, 0x02, 0xa0, 0x07, 0xa0,
|
|
0x10, 0x00, 0x01, 0x00, 0x05, 0x00, 0xa7, 0xd0, 0xc1, 0xf6, 0xaf, 0x3e, 0x12, 0xcc,
|
|
0x86, 0x0d, 0x30, 0x00, 0x0b, 0x5a, 0x02, 0x17, 0x86, 0x00, 0x05, 0xa0, 0x20};
|
|
copy_msg_to_buffer(pdu, ho_cmd_rrc_container);
|
|
TESTASSERT(s1ap.last_enb_status.rnti != tester.rnti);
|
|
tester.rrc.ho_preparation_complete(tester.rnti, rrc::ho_prep_result::success, asn1::s1ap::ho_cmd_s{}, std::move(pdu));
|
|
TESTASSERT(s1ap.last_enb_status.status_present);
|
|
TESTASSERT(spy.get_error_counter() == 0);
|
|
asn1::rrc::dl_dcch_msg_s ho_cmd;
|
|
TESTASSERT(test_helpers::unpack_asn1(ho_cmd, srsran::make_span(tester.pdcp.last_sdu.sdu)));
|
|
recfg_r8 = ho_cmd.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
TESTASSERT(recfg_r8.mob_ctrl_info_present);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
int test_s1ap_tenb_mobility(test_event test_params)
|
|
{
|
|
printf("\n===== TEST: test_s1ap_tenb_mobility() for event %s =====\n", to_string(test_params));
|
|
s1ap_mobility_tester tester{test_params};
|
|
srsran::unique_byte_buffer_t pdu;
|
|
|
|
TESTASSERT(tester.generate_rrc_cfg() == SRSRAN_SUCCESS);
|
|
tester.cfg.cell_list[0].meas_cfg.meas_cells[0].eci = 0x19B01;
|
|
tester.cfg.enb_id = 0x19C;
|
|
tester.cfg.cell.id = 0x02;
|
|
tester.cfg.cell_list[0].cell_id = 0x02;
|
|
tester.cfg.cell_list[0].pci = 2;
|
|
TESTASSERT(tester.setup_rrc() == SRSRAN_SUCCESS);
|
|
security_cfg_handler sec_cfg{tester.cfg};
|
|
|
|
/* TeNB receives S1AP Handover Request */
|
|
asn1::s1ap::ho_request_s ho_req;
|
|
ho_req->erab_to_be_setup_list_ho_req.value.resize(1);
|
|
auto& erab = ho_req->erab_to_be_setup_list_ho_req.value[0]->erab_to_be_setup_item_ho_req();
|
|
erab.erab_id = 5;
|
|
erab.erab_level_qos_params.qci = 9;
|
|
if (test_params == test_event::unknown_qci) {
|
|
erab.erab_level_qos_params.qci = 10;
|
|
}
|
|
ho_req->ue_security_cap.value.integrity_protection_algorithms.set(14, true);
|
|
asn1::s1ap::sourceenb_to_targetenb_transparent_container_s container;
|
|
container.target_cell_id.cell_id.from_number(0x19C02);
|
|
if (test_params == test_event::wrong_target_cell) {
|
|
container.target_cell_id.cell_id.from_number(0x19C03);
|
|
}
|
|
container.erab_info_list_present = true;
|
|
container.erab_info_list.resize(1);
|
|
container.erab_info_list[0].load_info_obj(ASN1_S1AP_ID_ERAB_INFO_LIST_ITEM);
|
|
container.erab_info_list[0]->erab_info_list_item().erab_id = 5;
|
|
container.erab_info_list[0]->erab_info_list_item().dl_forwarding_present = true;
|
|
container.erab_info_list[0]->erab_info_list_item().dl_forwarding.value =
|
|
asn1::s1ap::dl_forwarding_opts::dl_forwarding_proposed;
|
|
uint8_t ho_prep_container[] = {
|
|
0x0a, 0x10, 0x0b, 0x81, 0x80, 0x00, 0x01, 0x80, 0x00, 0xf3, 0x02, 0x08, 0x00, 0x00, 0x15, 0x80, 0x00, 0x14,
|
|
0x06, 0xa4, 0x02, 0xf0, 0x04, 0x04, 0xf0, 0x00, 0x14, 0x80, 0x4a, 0x00, 0x00, 0x00, 0x02, 0x12, 0x31, 0xb6,
|
|
0xf8, 0x3e, 0xa0, 0x6f, 0x05, 0xe4, 0x65, 0x14, 0x1d, 0x39, 0xd0, 0x54, 0x4c, 0x00, 0x02, 0x54, 0x00, 0x20,
|
|
0x04, 0x60, 0x00, 0x00, 0x00, 0x10, 0x01, 0x00, 0xc0, 0x00, 0x00, 0x00, 0x00, 0x02, 0x05, 0x00, 0x04, 0x14,
|
|
0x00, 0x67, 0x0d, 0xfb, 0xc4, 0x66, 0x06, 0x50, 0x0f, 0x00, 0x08, 0x00, 0x20, 0x80, 0x0c, 0x14, 0xca, 0x2d,
|
|
0x5c, 0xe1, 0x86, 0x35, 0x39, 0x80, 0x0e, 0x06, 0xa4, 0x40, 0x0f, 0x22, 0x78};
|
|
// 0a100b818000018000f3020800001580001406a402f00404f00014804a000000021231b6f83ea06f05e465141d39d0544c00025400200460000000100100c000000000020500041400670dfbc46606500f00080020800c14ca2d5ce1863539800e06a4400f2278
|
|
container.rrc_container.resize(sizeof(ho_prep_container));
|
|
memcpy(container.rrc_container.data(), ho_prep_container, sizeof(ho_prep_container));
|
|
asn1::s1ap::cause_c cause;
|
|
int rnti = tester.rrc.start_ho_ue_resource_alloc(ho_req, container, cause);
|
|
if (test_params == test_event::wrong_target_cell) {
|
|
TESTASSERT_EQ(SRSRAN_INVALID_RNTI, rnti);
|
|
TESTASSERT(cause.type().value == asn1::s1ap::cause_c::types_opts::radio_network);
|
|
TESTASSERT_EQ(asn1::s1ap::cause_radio_network_opts::cell_not_available, cause.radio_network().value);
|
|
TESTASSERT(tester.rrc.get_nof_users() == 0);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
if (test_params == test_event::unknown_qci) {
|
|
TESTASSERT(rnti == SRSRAN_INVALID_RNTI);
|
|
TESTASSERT(cause.type().value == asn1::s1ap::cause_c::types_opts::radio_network);
|
|
TESTASSERT(cause.radio_network().value == asn1::s1ap::cause_radio_network_opts::not_supported_qci_value);
|
|
TESTASSERT(tester.rrc.get_nof_users() == 0);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
TESTASSERT(tester.mac.ue_db.count(0x46));
|
|
auto& mac_ue = tester.mac.ue_db[0x46];
|
|
TESTASSERT(mac_ue.supported_cc_list[0].active);
|
|
TESTASSERT(mac_ue.supported_cc_list[0].enb_cc_idx == 0);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb0)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
|
|
tester.tic();
|
|
TESTASSERT(tester.rrc.get_nof_users() == 1);
|
|
TESTASSERT(tester.mac.ue_db.count(0x46));
|
|
TESTASSERT(mac_ue.supported_cc_list[0].active);
|
|
TESTASSERT(mac_ue.supported_cc_list[0].enb_cc_idx == 0);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb0)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
// Check Security Configuration
|
|
TESTASSERT(tester.pdcp.bearers.count(0x46));
|
|
TESTASSERT(tester.pdcp.bearers[0x46].count(srb_to_lcid(lte_srb::srb1)) and
|
|
tester.pdcp.bearers[0x46].count(srb_to_lcid(lte_srb::srb2)));
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].enable_encryption);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].enable_integrity);
|
|
sec_cfg.set_security_capabilities(ho_req->ue_security_cap.value);
|
|
sec_cfg.set_security_key(ho_req->security_context.value.next_hop_param);
|
|
sec_cfg.regenerate_keys_handover(tester.cfg.cell_list[0].pci, tester.cfg.cell_list[0].dl_earfcn);
|
|
srsran::as_security_config_t as_sec_cfg = sec_cfg.get_as_sec_cfg();
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].sec_cfg.k_rrc_int == as_sec_cfg.k_rrc_int);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].sec_cfg.k_rrc_enc == as_sec_cfg.k_rrc_enc);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].sec_cfg.k_up_int == as_sec_cfg.k_up_int);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].sec_cfg.cipher_algo == as_sec_cfg.cipher_algo);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][srb_to_lcid(lte_srb::srb1)].sec_cfg.integ_algo == as_sec_cfg.integ_algo);
|
|
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
|
|
// Check if S1AP Handover Request ACK send is called
|
|
TESTASSERT(tester.s1ap.last_ho_req_ack.rnti == 0x46);
|
|
TESTASSERT(tester.s1ap.last_ho_req_ack.ho_cmd_pdu != nullptr);
|
|
TESTASSERT(tester.s1ap.last_ho_req_ack.admitted_bearers.size() == ho_req->erab_to_be_setup_list_ho_req.value.size());
|
|
ho_cmd_s ho_cmd;
|
|
asn1::cbit_ref bref{tester.s1ap.last_ho_req_ack.ho_cmd_pdu->msg, tester.s1ap.last_ho_req_ack.ho_cmd_pdu->N_bytes};
|
|
TESTASSERT(ho_cmd.unpack(bref) == asn1::SRSASN_SUCCESS);
|
|
bref = asn1::cbit_ref{ho_cmd.crit_exts.c1().ho_cmd_r8().ho_cmd_msg.data(),
|
|
ho_cmd.crit_exts.c1().ho_cmd_r8().ho_cmd_msg.size()};
|
|
dl_dcch_msg_s dl_dcch_msg;
|
|
TESTASSERT(dl_dcch_msg.unpack(bref) == asn1::SRSASN_SUCCESS);
|
|
TESTASSERT(dl_dcch_msg.msg.type().value == dl_dcch_msg_type_c::types_opts::c1);
|
|
TESTASSERT(dl_dcch_msg.msg.c1().type().value == dl_dcch_msg_type_c::c1_c_::types_opts::rrc_conn_recfg);
|
|
auto& recfg_r8 = dl_dcch_msg.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
|
|
// Receives MMEStatusTransfer
|
|
asn1::s1ap::bearers_subject_to_status_transfer_list_l bearers;
|
|
bearers.resize(1);
|
|
bearers[0]->bearers_subject_to_status_transfer_item().erab_id = 5;
|
|
bearers[0]->bearers_subject_to_status_transfer_item().dl_coun_tvalue.pdcp_sn = 100;
|
|
bearers[0]->bearers_subject_to_status_transfer_item().dl_coun_tvalue.hfn = 3;
|
|
bearers[0]->bearers_subject_to_status_transfer_item().ul_coun_tvalue.pdcp_sn = 120;
|
|
bearers[0]->bearers_subject_to_status_transfer_item().ul_coun_tvalue.hfn = 4;
|
|
tester.rrc.set_erab_status(0x46, bearers);
|
|
TESTASSERT(tester.pdcp.bearers.count(0x46));
|
|
TESTASSERT(tester.pdcp.bearers[0x46].count(3));
|
|
TESTASSERT(tester.pdcp.bearers[0x46][3].state.next_pdcp_tx_sn == 100);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][3].state.tx_hfn == 3);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][3].state.next_pdcp_rx_sn == 120);
|
|
TESTASSERT(tester.pdcp.bearers[0x46][3].state.rx_hfn == 4);
|
|
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::IDLE);
|
|
|
|
// user PRACHs and sends C-RNTI CE
|
|
sched_interface::ue_cfg_t ue_cfg{};
|
|
ue_cfg.supported_cc_list.resize(1);
|
|
ue_cfg.supported_cc_list[0].enb_cc_idx = 0;
|
|
ue_cfg.supported_cc_list[0].active = true;
|
|
tester.rrc.add_user(0x47, ue_cfg);
|
|
tester.rrc.upd_user(0x47, 0x46);
|
|
|
|
uint8_t recfg_complete[] = {0x10, 0x00};
|
|
copy_msg_to_buffer(pdu, recfg_complete);
|
|
tester.rrc.write_pdu(0x46, srb_to_lcid(lte_srb::srb1), std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(mac_ue.pucch_cfg.I_sr == recfg_r8.rr_cfg_ded.phys_cfg_ded.sched_request_cfg.setup().sr_cfg_idx);
|
|
TESTASSERT(mac_ue.pucch_cfg.n_pucch_sr ==
|
|
recfg_r8.rr_cfg_ded.phys_cfg_ded.sched_request_cfg.setup().sr_pucch_res_idx);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
int test_intraenb_mobility(srsran::log_sink_spy& spy, test_event test_params)
|
|
{
|
|
printf("\n===== TEST: test_intraenb_mobility() for event %s =====\n", to_string(test_params));
|
|
intraenb_mobility_tester tester{test_params};
|
|
spy.reset_counters();
|
|
srsran::unique_byte_buffer_t pdu;
|
|
|
|
TESTASSERT(tester.generate_rrc_cfg() == SRSRAN_SUCCESS);
|
|
TESTASSERT(tester.setup_rrc() == SRSRAN_SUCCESS);
|
|
TESTASSERT(tester.run_preamble() == SRSRAN_SUCCESS);
|
|
|
|
/* Receive correct measConfig */
|
|
dl_dcch_msg_s dl_dcch_msg;
|
|
TESTASSERT(test_helpers::unpack_asn1(dl_dcch_msg, srsran::make_span(tester.pdcp.last_sdu.sdu)));
|
|
rrc_conn_recfg_r8_ies_s& recfg_r8 = dl_dcch_msg.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
TESTASSERT(recfg_r8.meas_cfg_present and recfg_r8.meas_cfg.meas_gap_cfg_present);
|
|
TESTASSERT(recfg_r8.meas_cfg.meas_gap_cfg.type().value == setup_opts::setup);
|
|
TESTASSERT((1 + recfg_r8.meas_cfg.meas_gap_cfg.setup().gap_offset.type().value) * 40u ==
|
|
tester.cfg.cell_list[0].meas_cfg.meas_gap_period);
|
|
|
|
tester.pdcp.last_sdu.sdu = nullptr;
|
|
tester.rlc.test_reset_all();
|
|
tester.phy.phy_cfg_set = false;
|
|
|
|
/* Receive MeasReport from UE (correct if PCI=2) */
|
|
if (test_params == test_event::wrong_measreport) {
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x0D, 0xBC, 0x80}; // PCI == 3
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
} else {
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x09, 0xBC, 0x80}; // PCI == 2
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
}
|
|
tester.rrc.write_pdu(tester.rnti, 1, std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(tester.s1ap.last_ho_required.rrc_container == nullptr);
|
|
|
|
/* Test Case: the MeasReport is not valid */
|
|
if (test_params == test_event::wrong_measreport) {
|
|
TESTASSERT(spy.get_warning_counter() == 1);
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu == nullptr);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu != nullptr);
|
|
TESTASSERT(tester.s1ap.last_ho_required.rrc_container == nullptr);
|
|
TESTASSERT(not tester.s1ap.last_enb_status.status_present);
|
|
|
|
/* Test Case: Multiple concurrent MeasReports arrived. Only one HO procedure should be running */
|
|
if (test_params == test_event::concurrent_ho) {
|
|
tester.pdcp.last_sdu = {};
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x09, 0xBC, 0x80}; // PCI == 2
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
tester.rrc.write_pdu(tester.rnti, 1, std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu == nullptr);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
/* Test Case: the HandoverCommand was sent to the lower layers */
|
|
TESTASSERT(spy.get_error_counter() == 0);
|
|
TESTASSERT(tester.pdcp.last_sdu.rnti == tester.rnti);
|
|
TESTASSERT(tester.pdcp.last_sdu.lcid == 1); // SRB1
|
|
asn1::rrc::dl_dcch_msg_s ho_cmd;
|
|
TESTASSERT(test_helpers::unpack_asn1(ho_cmd, srsran::make_span(tester.pdcp.last_sdu.sdu)));
|
|
recfg_r8 = ho_cmd.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
TESTASSERT(recfg_r8.mob_ctrl_info_present);
|
|
TESTASSERT(recfg_r8.mob_ctrl_info.new_ue_id.to_number() == tester.rnti);
|
|
TESTASSERT(recfg_r8.mob_ctrl_info.target_pci == 2);
|
|
TESTASSERT(recfg_r8.rr_cfg_ded_present);
|
|
TESTASSERT(recfg_r8.rr_cfg_ded.phys_cfg_ded_present);
|
|
const asn1::rrc::phys_cfg_ded_s& phy_cfg_ded = recfg_r8.rr_cfg_ded.phys_cfg_ded;
|
|
TESTASSERT(phy_cfg_ded.sched_request_cfg_present);
|
|
TESTASSERT(phy_cfg_ded.cqi_report_cfg_present);
|
|
// PHY should not be updated until the UE handovers to the new cell
|
|
TESTASSERT(not tester.phy.phy_cfg_set);
|
|
// Correct measConfig
|
|
TESTASSERT(recfg_r8.meas_cfg_present and recfg_r8.meas_cfg.meas_gap_cfg_present);
|
|
TESTASSERT(recfg_r8.meas_cfg.meas_gap_cfg.type().value == setup_opts::setup);
|
|
TESTASSERT((1 + recfg_r8.meas_cfg.meas_gap_cfg.setup().gap_offset.type().value) * 40u ==
|
|
tester.cfg.cell_list[1].meas_cfg.meas_gap_period);
|
|
auto* ue_cfg = &tester.mac.ue_db[tester.rnti];
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == srsenb::mac_lc_ch_cfg_t::DL);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == srsenb::mac_lc_ch_cfg_t::DL);
|
|
|
|
/* Test Case: The UE sends a C-RNTI CE. Bearers are reestablished, PHY is configured */
|
|
tester.pdcp.last_sdu.sdu = nullptr;
|
|
tester.rrc.upd_user(tester.rnti + 1, tester.rnti);
|
|
TESTASSERT(tester.rlc.ue_db[tester.rnti].reest_sdu_counter == 0);
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu == nullptr);
|
|
TESTASSERT(tester.phy.phy_cfg_set);
|
|
TESTASSERT(tester.phy.last_cfg.size() == 1 and ue_cfg->supported_cc_list.size() == 1);
|
|
TESTASSERT(tester.phy.last_cfg[0].enb_cc_idx == ue_cfg->supported_cc_list[0].enb_cc_idx);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb0)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == srsenb::mac_lc_ch_cfg_t::IDLE);
|
|
TESTASSERT(ue_cfg->ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == srsenb::mac_lc_ch_cfg_t::IDLE);
|
|
|
|
/* Test Case: The UE receives a duplicate C-RNTI CE. Nothing should happen */
|
|
if (test_params == test_event::duplicate_crnti_ce) {
|
|
TESTASSERT(tester.rlc.ue_db[tester.rnti].reest_sdu_counter == 0);
|
|
tester.rrc.upd_user(tester.rnti + 2, tester.rnti);
|
|
TESTASSERT(tester.rlc.ue_db[tester.rnti].reest_sdu_counter == 0);
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu == nullptr);
|
|
TESTASSERT(tester.rlc.ue_db[tester.rnti].last_sdu == nullptr); // No Reject sent
|
|
}
|
|
|
|
/* Test Case: Terminate first Handover. No extra messages should be sent DL. SR/CQI resources match recfg message */
|
|
uint8_t recfg_complete[] = {0x10, 0x00};
|
|
copy_msg_to_buffer(pdu, recfg_complete);
|
|
tester.rrc.write_pdu(tester.rnti, srb_to_lcid(lte_srb::srb1), std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu == nullptr);
|
|
ue_cfg = &tester.mac.ue_db[tester.rnti];
|
|
TESTASSERT(ue_cfg->pucch_cfg.sr_configured);
|
|
TESTASSERT(ue_cfg->pucch_cfg.n_pucch_sr == phy_cfg_ded.sched_request_cfg.setup().sr_pucch_res_idx);
|
|
TESTASSERT(ue_cfg->pucch_cfg.I_sr == phy_cfg_ded.sched_request_cfg.setup().sr_cfg_idx);
|
|
TESTASSERT(ue_cfg->supported_cc_list[0].dl_cfg.cqi_report.pmi_idx ==
|
|
phy_cfg_ded.cqi_report_cfg.cqi_report_periodic.setup().cqi_pmi_cfg_idx);
|
|
TESTASSERT(ue_cfg->pucch_cfg.n_pucch == phy_cfg_ded.cqi_report_cfg.cqi_report_periodic.setup().cqi_pucch_res_idx);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb0)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb1)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(ue_cfg->ue_bearers[srb_to_lcid(lte_srb::srb2)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
TESTASSERT(ue_cfg->ue_bearers[drb_to_lcid(lte_drb::drb1)].direction == srsenb::mac_lc_ch_cfg_t::BOTH);
|
|
|
|
/* Test Case: The RRC should be able to start a new handover */
|
|
uint8_t meas_report[] = {0x08, 0x10, 0x38, 0x74, 0x00, 0x05, 0xBC, 0x80}; // PCI == 1
|
|
copy_msg_to_buffer(pdu, meas_report);
|
|
tester.rrc.write_pdu(tester.rnti, 1, std::move(pdu));
|
|
tester.tic();
|
|
TESTASSERT(tester.s1ap.last_ho_required.rrc_container == nullptr);
|
|
TESTASSERT(tester.pdcp.last_sdu.sdu != nullptr);
|
|
TESTASSERT(tester.s1ap.last_ho_required.rrc_container == nullptr);
|
|
TESTASSERT(not tester.s1ap.last_enb_status.status_present);
|
|
TESTASSERT(test_helpers::unpack_asn1(ho_cmd, srsran::make_span(tester.pdcp.last_sdu.sdu)));
|
|
recfg_r8 = ho_cmd.msg.c1().rrc_conn_recfg().crit_exts.c1().rrc_conn_recfg_r8();
|
|
TESTASSERT(recfg_r8.mob_ctrl_info_present);
|
|
TESTASSERT(recfg_r8.mob_ctrl_info.new_ue_id.to_number() == tester.rnti);
|
|
TESTASSERT(recfg_r8.mob_ctrl_info.target_pci == 1);
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
// Setup the log spy to intercept error and warning log entries.
|
|
if (!srslog::install_custom_sink(
|
|
srsran::log_sink_spy::name(),
|
|
std::unique_ptr<srsran::log_sink_spy>(new srsran::log_sink_spy(srslog::get_default_log_formatter())))) {
|
|
return SRSRAN_ERROR;
|
|
}
|
|
|
|
auto* spy = static_cast<srsran::log_sink_spy*>(srslog::find_sink(srsran::log_sink_spy::name()));
|
|
if (!spy) {
|
|
return SRSRAN_ERROR;
|
|
}
|
|
srslog::set_default_sink(*spy);
|
|
|
|
auto& logger = srslog::fetch_basic_logger("RRC", false);
|
|
logger.set_level(srslog::basic_levels::info);
|
|
logger.set_hex_dump_max_size(1024);
|
|
|
|
srslog::init();
|
|
|
|
if (argc < 3) {
|
|
argparse::usage(argv[0]);
|
|
return -1;
|
|
}
|
|
argparse::parse_args(argc, argv);
|
|
|
|
// Source ENB - S1 Handover
|
|
TESTASSERT(test_s1ap_mobility(*spy, test_event::wrong_measreport) == 0);
|
|
TESTASSERT(test_s1ap_mobility(*spy, test_event::concurrent_ho) == 0);
|
|
TESTASSERT(test_s1ap_mobility(*spy, test_event::ho_prep_failure) == 0);
|
|
TESTASSERT(test_s1ap_mobility(*spy, test_event::success) == 0);
|
|
|
|
TESTASSERT(test_s1ap_tenb_mobility(test_event::wrong_target_cell) == 0);
|
|
TESTASSERT(test_s1ap_tenb_mobility(test_event::unknown_qci) == 0);
|
|
TESTASSERT(test_s1ap_tenb_mobility(test_event::success) == 0);
|
|
|
|
// intraeNB Handover
|
|
TESTASSERT(test_intraenb_mobility(*spy, test_event::wrong_measreport) == 0);
|
|
TESTASSERT(test_intraenb_mobility(*spy, test_event::concurrent_ho) == 0);
|
|
TESTASSERT(test_intraenb_mobility(*spy, test_event::duplicate_crnti_ce) == 0);
|
|
TESTASSERT(test_intraenb_mobility(*spy, test_event::success) == 0);
|
|
|
|
srslog::flush();
|
|
|
|
printf("\nSuccess\n");
|
|
|
|
return SRSRAN_SUCCESS;
|
|
}
|