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.
331 lines
14 KiB
C++
331 lines
14 KiB
C++
/**
|
|
*
|
|
* \section COPYRIGHT
|
|
*
|
|
* Copyright 2013-2021 Software Radio Systems Limited
|
|
*
|
|
* By using this file, you agree to the terms and conditions set
|
|
* forth in the LICENSE file which can be found at the top level of
|
|
* the distribution.
|
|
*
|
|
*/
|
|
|
|
#include "srsenb/hdr/stack/upper/s1ap.h"
|
|
#include "srsenb/test/common/dummy_classes.h"
|
|
#include "srsran/common/network_utils.h"
|
|
#include "srsran/common/test_common.h"
|
|
|
|
using namespace srsenb;
|
|
|
|
struct mme_dummy {
|
|
mme_dummy(const char* addr_str_, int port_) : addr_str(addr_str_), port(port_)
|
|
{
|
|
srsran::net_utils::set_sockaddr(&mme_sockaddr, addr_str, port);
|
|
{
|
|
using namespace srsran::net_utils;
|
|
fd = open_socket(addr_family::ipv4, socket_type::seqpacket, protocol_type::SCTP);
|
|
TESTASSERT(fd > 0);
|
|
TESTASSERT(bind_addr(fd, mme_sockaddr));
|
|
}
|
|
|
|
int success = listen(fd, SOMAXCONN);
|
|
srsran_assert(success == 0, "Failed to listen to incoming SCTP connections");
|
|
}
|
|
|
|
~mme_dummy()
|
|
{
|
|
if (fd > 0) {
|
|
close(fd);
|
|
}
|
|
}
|
|
|
|
srsran::unique_byte_buffer_t read_msg(sockaddr_in* sockfrom = nullptr)
|
|
{
|
|
srsran::unique_byte_buffer_t pdu = srsran::make_byte_buffer();
|
|
sockaddr_in from = {};
|
|
socklen_t fromlen = sizeof(from);
|
|
sctp_sndrcvinfo sri = {};
|
|
int flags = 0;
|
|
ssize_t n_recv = sctp_recvmsg(fd, pdu->msg, pdu->get_tailroom(), (struct sockaddr*)&from, &fromlen, &sri, &flags);
|
|
if (n_recv > 0) {
|
|
if (sockfrom != nullptr) {
|
|
*sockfrom = from;
|
|
}
|
|
pdu->N_bytes = n_recv;
|
|
}
|
|
return pdu;
|
|
}
|
|
|
|
const char* addr_str;
|
|
int port;
|
|
struct sockaddr_in mme_sockaddr = {};
|
|
int fd;
|
|
srsran::unique_byte_buffer_t last_sdu;
|
|
};
|
|
|
|
struct dummy_socket_manager : public srsran::socket_manager_itf {
|
|
dummy_socket_manager() : srsran::socket_manager_itf(srslog::fetch_basic_logger("TEST")) {}
|
|
|
|
/// Register (fd, callback). callback is called within socket thread when fd has data.
|
|
bool add_socket_handler(int fd, recv_callback_t handler) final
|
|
{
|
|
if (s1u_fd > 0) {
|
|
return false;
|
|
}
|
|
s1u_fd = fd;
|
|
callback = std::move(handler);
|
|
return true;
|
|
}
|
|
|
|
/// remove registered socket fd
|
|
bool remove_socket(int fd) final
|
|
{
|
|
if (s1u_fd < 0) {
|
|
return false;
|
|
}
|
|
s1u_fd = -1;
|
|
return true;
|
|
}
|
|
|
|
int s1u_fd;
|
|
recv_callback_t callback;
|
|
};
|
|
|
|
struct rrc_tester : public rrc_dummy {
|
|
int modify_erab(uint16_t rnti,
|
|
uint16_t erab_id,
|
|
const asn1::s1ap::erab_level_qos_params_s& qos_params,
|
|
srsran::const_byte_span nas_pdu,
|
|
asn1::s1ap::cause_c& cause) override
|
|
{
|
|
if (std::count(next_erabs_failed_to_modify.begin(), next_erabs_failed_to_modify.end(), erab_id) > 0) {
|
|
cause.set_radio_network().value = asn1::s1ap::cause_radio_network_opts::unknown_erab_id;
|
|
return SRSRAN_ERROR;
|
|
}
|
|
last_erabs_modified.push_back(erab_id);
|
|
return SRSRAN_SUCCESS;
|
|
}
|
|
bool has_erab(uint16_t rnti, uint32_t erab_id) const override
|
|
{
|
|
return std::count(next_erabs_failed_to_modify.begin(), next_erabs_failed_to_modify.end(), erab_id) == 0;
|
|
}
|
|
void release_ue(uint16_t rnti) override { last_released_rnti = rnti; }
|
|
|
|
uint16_t last_released_rnti = SRSRAN_INVALID_RNTI;
|
|
std::vector<uint16_t> next_erabs_failed_to_modify, last_erabs_modified;
|
|
};
|
|
|
|
void run_s1_setup(s1ap& s1ap_obj, mme_dummy& mme)
|
|
{
|
|
asn1::s1ap::s1ap_pdu_c s1ap_pdu;
|
|
|
|
// eNB -> MME: S1 Setup Request
|
|
srsran::unique_byte_buffer_t sdu = mme.read_msg();
|
|
TESTASSERT(sdu->N_bytes > 0);
|
|
asn1::cbit_ref cbref(sdu->msg, sdu->N_bytes);
|
|
TESTASSERT(s1ap_pdu.unpack(cbref) == asn1::SRSASN_SUCCESS);
|
|
TESTASSERT(s1ap_pdu.type().value == asn1::s1ap::s1ap_pdu_c::types_opts::init_msg);
|
|
TESTASSERT(s1ap_pdu.init_msg().proc_code == ASN1_S1AP_ID_S1_SETUP);
|
|
|
|
// MME -> eNB: S1 Setup Response
|
|
sockaddr_in mme_addr = {};
|
|
sctp_sndrcvinfo rcvinfo = {};
|
|
int flags = 0;
|
|
uint8_t s1_setup_resp[] = {0x20, 0x11, 0x00, 0x25, 0x00, 0x00, 0x03, 0x00, 0x3d, 0x40, 0x0a, 0x03, 0x80, 0x73,
|
|
0x72, 0x73, 0x6d, 0x6d, 0x65, 0x30, 0x31, 0x00, 0x69, 0x00, 0x0b, 0x00, 0x00, 0x00,
|
|
0xf1, 0x10, 0x00, 0x00, 0x01, 0x00, 0x00, 0x1a, 0x00, 0x57, 0x40, 0x01, 0xff};
|
|
memcpy(sdu->msg, s1_setup_resp, sizeof(s1_setup_resp));
|
|
sdu->N_bytes = sizeof(s1_setup_resp);
|
|
TESTASSERT(s1ap_obj.handle_mme_rx_msg(std::move(sdu), mme_addr, rcvinfo, flags));
|
|
}
|
|
|
|
void add_rnti(s1ap& s1ap_obj, mme_dummy& mme)
|
|
{
|
|
asn1::s1ap::s1ap_pdu_c s1ap_pdu;
|
|
|
|
// New UE
|
|
uint8_t nas_msg[] = {0x00, 0x1a, 0x00, 0x21, 0x20, 0x17, 0x82, 0xa8, 0x64, 0x46, 0x04, 0x07, 0x41,
|
|
0x01, 0x0b, 0xf6, 0x00, 0xf1, 0x10, 0x00, 0x01, 0x1a, 0x5e, 0xa4, 0x54, 0x47,
|
|
0x02, 0xf0, 0x70, 0x00, 0x04, 0x02, 0x01, 0xd0, 0x11, 0x91, 0xe0};
|
|
|
|
srsran::unique_byte_buffer_t sdu = srsran::make_byte_buffer();
|
|
memcpy(sdu->msg, nas_msg, sizeof(nas_msg));
|
|
sdu->N_bytes = sizeof(nas_msg);
|
|
s1ap_obj.initial_ue(0x46, 0, asn1::s1ap::rrc_establishment_cause_opts::mo_data, std::move(sdu));
|
|
sdu = mme.read_msg();
|
|
TESTASSERT(sdu->N_bytes > 0);
|
|
asn1::cbit_ref cbref{sdu->msg, sdu->N_bytes};
|
|
TESTASSERT(s1ap_pdu.unpack(cbref) == SRSRAN_SUCCESS);
|
|
TESTASSERT(s1ap_pdu.type().value == asn1::s1ap::s1ap_pdu_c::types_opts::init_msg);
|
|
TESTASSERT(s1ap_pdu.init_msg().proc_code == ASN1_S1AP_ID_INIT_UE_MSG);
|
|
|
|
// InitialContextSetupRequest (skip all NAS exchange)
|
|
sockaddr_in mme_addr = {};
|
|
sctp_sndrcvinfo rcvinfo = {};
|
|
int flags = 0;
|
|
uint8_t icsr_msg[] = {
|
|
0x00, 0x09, 0x00, 0x80, 0xac, 0x00, 0x00, 0x06, 0x00, 0x00, 0x00, 0x02, 0x00, 0x01, 0x00, 0x08, 0x00, 0x02,
|
|
0x00, 0x01, 0x00, 0x42, 0x00, 0x0a, 0x18, 0x3b, 0x9a, 0xca, 0x00, 0x60, 0x3b, 0x9a, 0xca, 0x00, 0x00, 0x18,
|
|
0x00, 0x5e, 0x00, 0x00, 0x34, 0x00, 0x59, 0x45, 0x00, 0x09, 0x3c, 0x0f, 0x80, 0x7f, 0x00, 0x01, 0x64, 0x00,
|
|
0x00, 0x00, 0x01, 0x4a, 0x27, 0x9b, 0x6d, 0xe9, 0x42, 0x01, 0x07, 0x42, 0x01, 0x3e, 0x06, 0x00, 0x00, 0xf1,
|
|
0x10, 0x00, 0x07, 0x00, 0x1d, 0x52, 0x01, 0xc1, 0x01, 0x09, 0x07, 0x06, 0x73, 0x72, 0x73, 0x61, 0x70, 0x6e,
|
|
0x05, 0x01, 0xc0, 0xa8, 0x0a, 0x02, 0x27, 0x08, 0x80, 0x00, 0x0d, 0x04, 0x08, 0x08, 0x08, 0x08, 0x50, 0x0b,
|
|
0xf6, 0x00, 0xf1, 0x10, 0x00, 0x01, 0x1a, 0x32, 0xdd, 0x59, 0x35, 0x13, 0x00, 0xf1, 0x10, 0x00, 0x01, 0x23,
|
|
0x05, 0xf4, 0x32, 0xdd, 0x59, 0x35, 0x00, 0x6b, 0x00, 0x05, 0x18, 0x00, 0x0c, 0x00, 0x00, 0x00, 0x49, 0x00,
|
|
0x20, 0x84, 0xa4, 0xea, 0x15, 0x55, 0xb3, 0xe0, 0xf4, 0x55, 0xbe, 0x1f, 0x41, 0x52, 0x92, 0xfc, 0x04, 0xd8,
|
|
0x02, 0x38, 0x0d, 0xe0, 0x81, 0x29, 0xe1, 0xaa, 0xd7, 0xc4, 0x7b, 0x12, 0x95, 0x72, 0xbe};
|
|
sdu = srsran::make_byte_buffer();
|
|
memcpy(sdu->msg, icsr_msg, sizeof(icsr_msg));
|
|
sdu->N_bytes = sizeof(icsr_msg);
|
|
TESTASSERT(s1ap_obj.handle_mme_rx_msg(std::move(sdu), mme_addr, rcvinfo, flags));
|
|
|
|
// InitialContextSetupResponse
|
|
uint8_t icsresp[] = {0x20, 0x09, 0x00, 0x22, 0x00, 0x00, 0x03, 0x00, 0x00, 0x40, 0x02, 0x00, 0x01,
|
|
0x00, 0x08, 0x40, 0x02, 0x00, 0x01, 0x00, 0x33, 0x40, 0x0f, 0x00, 0x00, 0x32,
|
|
0x40, 0x0a, 0x0a, 0x1f, 0x7f, 0x00, 0x01, 0x01, 0x00, 0x00, 0x00, 0x01};
|
|
cbref = asn1::cbit_ref(icsresp, sizeof(icsresp));
|
|
TESTASSERT(s1ap_pdu.unpack(cbref) == SRSRAN_SUCCESS);
|
|
s1ap_obj.ue_ctxt_setup_complete(0x46);
|
|
sdu = mme.read_msg();
|
|
TESTASSERT(sdu->N_bytes > 0);
|
|
cbref = asn1::cbit_ref{sdu->msg, sdu->N_bytes};
|
|
TESTASSERT(s1ap_pdu.unpack(cbref) == SRSRAN_SUCCESS);
|
|
TESTASSERT(s1ap_pdu.type().value == asn1::s1ap::s1ap_pdu_c::types_opts::successful_outcome);
|
|
TESTASSERT(s1ap_pdu.successful_outcome().proc_code == ASN1_S1AP_ID_INIT_CONTEXT_SETUP);
|
|
const auto& resp = s1ap_pdu.successful_outcome().value.init_context_setup_resp().protocol_ies;
|
|
TESTASSERT(resp.erab_setup_list_ctxt_su_res.value.size() > 0);
|
|
TESTASSERT(not resp.erab_failed_to_setup_list_ctxt_su_res_present);
|
|
}
|
|
|
|
enum class test_event { success, wrong_erabid_mod, wrong_mme_s1ap_id, repeated_erabid_mod };
|
|
|
|
void test_s1ap_erab_setup(test_event event)
|
|
{
|
|
srsran::task_scheduler task_sched;
|
|
srslog::basic_logger& logger = srslog::fetch_basic_logger("S1AP");
|
|
dummy_socket_manager rx_sockets;
|
|
s1ap s1ap_obj(&task_sched, logger, &rx_sockets);
|
|
rrc_tester rrc;
|
|
asn1::s1ap::s1ap_pdu_c s1ap_pdu;
|
|
srsran::unique_byte_buffer_t sdu;
|
|
|
|
const char* mme_addr_str = "127.0.0.1";
|
|
const uint32_t MME_PORT = 36412;
|
|
mme_dummy mme(mme_addr_str, MME_PORT);
|
|
|
|
s1ap_args_t args = {};
|
|
args.cell_id = 0x01;
|
|
args.enb_id = 0x19B;
|
|
args.mcc = 907;
|
|
args.mnc = 70;
|
|
args.s1c_bind_addr = "127.0.0.100";
|
|
args.tac = 7;
|
|
args.gtp_bind_addr = "127.0.0.100";
|
|
args.mme_addr = mme_addr_str;
|
|
args.enb_name = "srsenb01";
|
|
|
|
TESTASSERT(s1ap_obj.init(args, &rrc) == SRSRAN_SUCCESS);
|
|
|
|
run_s1_setup(s1ap_obj, mme);
|
|
add_rnti(s1ap_obj, mme);
|
|
|
|
// E-RAB Modify Request
|
|
sockaddr_in mme_addr = {};
|
|
sctp_sndrcvinfo rcvinfo = {};
|
|
int flags = 0;
|
|
asn1::s1ap::s1ap_pdu_c mod_req_pdu;
|
|
mod_req_pdu.set_init_msg().load_info_obj(ASN1_S1AP_ID_ERAB_MODIFY);
|
|
auto& protocols = mod_req_pdu.init_msg().value.erab_modify_request().protocol_ies;
|
|
protocols.enb_ue_s1ap_id.value = 1;
|
|
protocols.mme_ue_s1ap_id.value = event == test_event::wrong_mme_s1ap_id ? 2 : 1;
|
|
auto& erab_list = protocols.erab_to_be_modified_list_bearer_mod_req.value;
|
|
erab_list.resize(2);
|
|
erab_list[0].load_info_obj(ASN1_S1AP_ID_ERAB_TO_BE_MODIFIED_ITEM_BEARER_MOD_REQ);
|
|
auto* erab_ptr = &erab_list[0].value.erab_to_be_modified_item_bearer_mod_req();
|
|
erab_ptr->erab_id = 5;
|
|
erab_ptr->erab_level_qos_params.qci = 9;
|
|
erab_ptr->erab_level_qos_params.alloc_retention_prio.prio_level = 15;
|
|
erab_ptr->erab_level_qos_params.alloc_retention_prio.pre_emption_cap.value =
|
|
asn1::s1ap::pre_emption_cap_opts::shall_not_trigger_pre_emption;
|
|
erab_ptr->erab_level_qos_params.alloc_retention_prio.pre_emption_vulnerability.value =
|
|
asn1::s1ap::pre_emption_vulnerability_opts::not_pre_emptable;
|
|
erab_ptr->nas_pdu.resize(1);
|
|
erab_list[1] = erab_list[0];
|
|
erab_ptr = &erab_list[1].value.erab_to_be_modified_item_bearer_mod_req();
|
|
erab_ptr->erab_id = event == test_event::repeated_erabid_mod ? 5 : 6;
|
|
if (event == test_event::wrong_erabid_mod) {
|
|
rrc.next_erabs_failed_to_modify.push_back(6);
|
|
}
|
|
sdu = srsran::make_byte_buffer();
|
|
asn1::bit_ref bref(sdu->msg, sdu->get_tailroom());
|
|
TESTASSERT(mod_req_pdu.pack(bref) == SRSRAN_SUCCESS);
|
|
sdu->N_bytes = bref.distance_bytes();
|
|
|
|
TESTASSERT(rrc.last_released_rnti == SRSRAN_INVALID_RNTI);
|
|
TESTASSERT(s1ap_obj.handle_mme_rx_msg(std::move(sdu), mme_addr, rcvinfo, flags));
|
|
sdu = mme.read_msg();
|
|
TESTASSERT(sdu->N_bytes > 0);
|
|
asn1::cbit_ref cbref{sdu->msg, sdu->N_bytes};
|
|
TESTASSERT(s1ap_pdu.unpack(cbref) == SRSRAN_SUCCESS);
|
|
|
|
if (event == test_event::wrong_mme_s1ap_id) {
|
|
// See TS 36.413, Section 10.6 - Handling of AP ID
|
|
TESTASSERT(s1ap_pdu.type().value == asn1::s1ap::s1ap_pdu_c::types_opts::init_msg);
|
|
TESTASSERT(s1ap_pdu.init_msg().proc_code == ASN1_S1AP_ID_ERROR_IND);
|
|
auto& protocol_ies = s1ap_pdu.init_msg().value.error_ind().protocol_ies;
|
|
TESTASSERT(protocol_ies.mme_ue_s1ap_id_present and protocol_ies.mme_ue_s1ap_id.value.value == 2);
|
|
TESTASSERT(protocol_ies.enb_ue_s1ap_id_present and protocol_ies.enb_ue_s1ap_id.value.value == 1);
|
|
TESTASSERT(rrc.last_released_rnti == 0x46);
|
|
return;
|
|
}
|
|
|
|
TESTASSERT(s1ap_pdu.type().value == asn1::s1ap::s1ap_pdu_c::types_opts::successful_outcome);
|
|
TESTASSERT(s1ap_pdu.successful_outcome().proc_code == ASN1_S1AP_ID_ERAB_MODIFY);
|
|
auto& protocol_ies = s1ap_pdu.successful_outcome().value.erab_modify_resp().protocol_ies;
|
|
if (event == test_event::wrong_erabid_mod) {
|
|
TESTASSERT(protocol_ies.erab_modify_list_bearer_mod_res_present);
|
|
TESTASSERT(protocol_ies.erab_modify_list_bearer_mod_res.value.size() == 1);
|
|
TESTASSERT(protocol_ies.erab_modify_list_bearer_mod_res.value[0].value.erab_modify_item_bearer_mod_res().erab_id ==
|
|
5);
|
|
TESTASSERT(protocol_ies.erab_failed_to_modify_list_present);
|
|
TESTASSERT(protocol_ies.erab_failed_to_modify_list.value.size() == 1);
|
|
auto& erab_item = protocol_ies.erab_failed_to_modify_list.value[0].value.erab_item();
|
|
TESTASSERT(erab_item.erab_id == 6);
|
|
TESTASSERT(erab_item.cause.type().value == asn1::s1ap::cause_c::types_opts::radio_network);
|
|
TESTASSERT(erab_item.cause.radio_network().value == asn1::s1ap::cause_radio_network_opts::unknown_erab_id);
|
|
return;
|
|
}
|
|
if (event == test_event::repeated_erabid_mod) {
|
|
TESTASSERT(not protocol_ies.erab_modify_list_bearer_mod_res_present);
|
|
TESTASSERT(protocol_ies.erab_failed_to_modify_list_present);
|
|
TESTASSERT(protocol_ies.erab_failed_to_modify_list.value.size() == 1);
|
|
auto& erab_item = protocol_ies.erab_failed_to_modify_list.value[0].value.erab_item();
|
|
TESTASSERT(erab_item.erab_id == 5);
|
|
TESTASSERT(erab_item.cause.type().value == asn1::s1ap::cause_c::types_opts::radio_network);
|
|
TESTASSERT(erab_item.cause.radio_network().value ==
|
|
asn1::s1ap::cause_radio_network_opts::multiple_erab_id_instances);
|
|
return;
|
|
}
|
|
|
|
TESTASSERT(protocol_ies.erab_modify_list_bearer_mod_res_present);
|
|
TESTASSERT(not protocol_ies.erab_failed_to_modify_list_present);
|
|
TESTASSERT(protocol_ies.erab_modify_list_bearer_mod_res.value.size() == 2);
|
|
auto& erab_item = protocol_ies.erab_modify_list_bearer_mod_res.value[0].value.erab_modify_item_bearer_mod_res();
|
|
TESTASSERT(erab_item.erab_id == 5);
|
|
}
|
|
|
|
int main(int argc, char** argv)
|
|
{
|
|
// Setup logging.
|
|
auto& logger = srslog::fetch_basic_logger("S1AP");
|
|
logger.set_level(srslog::basic_levels::debug);
|
|
logger.set_hex_dump_max_size(-1);
|
|
|
|
// Start the log backend.
|
|
srsran::test_init(argc, argv);
|
|
|
|
test_s1ap_erab_setup(test_event::success);
|
|
test_s1ap_erab_setup(test_event::wrong_erabid_mod);
|
|
test_s1ap_erab_setup(test_event::wrong_mme_s1ap_id);
|
|
test_s1ap_erab_setup(test_event::repeated_erabid_mod);
|
|
} |