/** * * \section COPYRIGHT * * Copyright 2013-2015 Software Radio Systems Limited * * \section LICENSE * * This file is part of the srsUE library. * * srsUE 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. * * srsUE 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 #include "srslte/common/log_filter.h" #include "srslte/upper/rlc_um.h" #include #define MAX_NBUFS 100 #define NBUFS 5 using namespace srslte; using namespace srsue; using namespace asn1::rrc; class mac_dummy_timers :public srslte::mac_interface_timers { public: srslte::timers::timer* timer_get(uint32_t timer_id) { return &t; } uint32_t timer_get_unique_id(){return 0;} void step() { t.step(); } void timer_release_id(uint32_t timer_id) {} private: srslte::timers::timer t; }; class rlc_um_tester :public pdcp_interface_rlc ,public rrc_interface_rlc { public: rlc_um_tester(){ bzero(sdus, sizeof(sdus)); n_sdus = 0; expected_sdu_len = 0; } ~rlc_um_tester(){ for (uint32_t i = 0; i < NBUFS; i++) { if (sdus[i] != NULL) { byte_buffer_pool::get_instance()->deallocate(sdus[i]); } } } // PDCP interface void write_pdu(uint32_t lcid, byte_buffer_t *sdu) { assert(lcid == 3); if (sdu->N_bytes != expected_sdu_len) { printf("Received PDU with size %d, expected %d. Exiting.\n", sdu->N_bytes, expected_sdu_len); exit(-1); } sdus[n_sdus++] = sdu; } void write_pdu_bcch_bch(byte_buffer_t *sdu) {} void write_pdu_bcch_dlsch(byte_buffer_t *sdu) {} void write_pdu_pcch(byte_buffer_t *sdu) {} void write_pdu_mch(uint32_t lcid, srslte::byte_buffer_t *sdu) { assert(lcid == 3); sdus[n_sdus++] = sdu; } // RRC interface void max_retx_attempted(){} std::string get_rb_name(uint32_t lcid) { return std::string(""); } void set_expected_sdu_len(uint32_t len) { expected_sdu_len = len; } byte_buffer_t *sdus[MAX_NBUFS]; int n_sdus; uint32_t expected_sdu_len; }; void basic_test() { srslte::log_filter log1("RLC_UM_1"); srslte::log_filter log2("RLC_UM_2"); log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); log1.set_hex_limit(-1); log2.set_hex_limit(-1); rlc_um_tester tester; mac_dummy_timers timers; rlc_um rlc1; rlc_um rlc2; int len; log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); rlc1.init(&log1, 3, &tester, &tester, &timers); rlc2.init(&log2, 3, &tester, &tester, &timers); rlc_cfg_c cnfg; cnfg.set(rlc_cfg_c::types::um_bi_dir); cnfg.um_bi_dir().dl_um_rlc.t_reordering = t_reordering_e::ms5; cnfg.um_bi_dir().dl_um_rlc.sn_field_len = sn_field_len_e::size10; cnfg.um_bi_dir().ul_um_rlc.sn_field_len = sn_field_len_e::size10; assert(rlc1.configure(&cnfg) == true); assert(rlc2.configure(&cnfg) == true); tester.set_expected_sdu_len(1); // Push 5 SDUs into RLC1 byte_buffer_t sdu_bufs[NBUFS]; for(int i=0;iN_bytes == 1); assert(*(tester.sdus[i]->msg) == i); } } void loss_test() { srslte::log_filter log1("RLC_UM_1"); srslte::log_filter log2("RLC_UM_2"); log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); log1.set_hex_limit(-1); log2.set_hex_limit(-1); rlc_um_tester tester; mac_dummy_timers timers; rlc_um rlc1; rlc_um rlc2; int len; log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); rlc1.init(&log1, 3, &tester, &tester, &timers); rlc2.init(&log2, 3, &tester, &tester, &timers); rlc_cfg_c cnfg; cnfg.set(rlc_cfg_c::types::um_bi_dir); cnfg.um_bi_dir().dl_um_rlc.t_reordering = t_reordering_e::ms5; cnfg.um_bi_dir().dl_um_rlc.sn_field_len = sn_field_len_e::size10; cnfg.um_bi_dir().ul_um_rlc.sn_field_len = sn_field_len_e::size10; rlc1.configure(&cnfg); rlc2.configure(&cnfg); tester.set_expected_sdu_len(1); // Push 5 SDUs into RLC1 byte_buffer_t sdu_bufs[NBUFS]; for(int i=0;iis_expired()) timers.timer_get(1)->step(); assert(NBUFS-1 == tester.n_sdus); } void basic_mbsfn_test() { srslte::log_filter log1("RLC_UM_1"); srslte::log_filter log2("RLC_UM_2"); log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); log1.set_hex_limit(-1); log2.set_hex_limit(-1); rlc_um_tester tester; mac_dummy_timers timers; rlc_um rlc1; rlc_um rlc2; int len; log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); rlc1.init(&log1, 3, &tester, &tester, &timers); rlc2.init(&log2, 3, &tester, &tester, &timers); rlc1.configure(srslte_rlc_config_t::mch_config()); rlc2.configure(srslte_rlc_config_t::mch_config()); tester.set_expected_sdu_len(1); // Push 5 SDUs into RLC1 byte_buffer_t sdu_bufs[NBUFS*2]; for(int i=0;iN_bytes == 1); assert(*(tester.sdus[i]->msg) == i); } } // This test checks the reassembly routines when a PDU // is lost that contains the beginning of SDU segment. // The PDU that contains the end of this SDU _also_ contains // a segment of another SDU. // On reassembly of the SDUs, the missing start segment // should be detected and the complete SDU be discarded // Therefore, one SDU less should be received than was tx'ed. // This test sends PDU in two batches so it's not the reordering // timeout that detects the missing PDU but the fact more // PDUs than rx_mod are received. void reassmble_test() { srslte::log_filter log1("RLC_UM_1"); srslte::log_filter log2("RLC_UM_2"); log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); log1.set_hex_limit(-1); log2.set_hex_limit(-1); rlc_um_tester tester; mac_dummy_timers timers; rlc_um rlc1; rlc_um rlc2; int len; log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); rlc1.init(&log1, 3, &tester, &tester, &timers); rlc2.init(&log2, 3, &tester, &tester, &timers); rlc_cfg_c cnfg; cnfg.set(rlc_cfg_c::types::um_bi_dir); cnfg.um_bi_dir().dl_um_rlc.t_reordering = t_reordering_e::ms5; cnfg.um_bi_dir().dl_um_rlc.sn_field_len = sn_field_len_e::size5; cnfg.um_bi_dir().ul_um_rlc.sn_field_len = sn_field_len_e::size5; rlc1.configure(&cnfg); rlc2.configure(&cnfg); // Push SDUs into RLC1 const int n_sdus = 25; const int sdu_len = 100; tester.set_expected_sdu_len(sdu_len); byte_buffer_t sdu_bufs[n_sdus]; const int n_sdu_first_batch = 17; for(int i=0;iN_bytes == sdu_len); } } // This reassmble test checks the reassembly routines when a PDU // is lost that _only_ contains the beginning of SDU segment, // while the next PDU contains the middle part of this SDU (and // yet another PDU the end part). // On reassembly of the SDUs, the missing start segment // should be detected and the complete SDU be discarded // Therefore, one SDU less should be received than was tx'ed. void reassmble_test2() { srslte::log_filter log1("RLC_UM_1"); srslte::log_filter log2("RLC_UM_2"); log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); log1.set_hex_limit(-1); log2.set_hex_limit(-1); rlc_um_tester tester; mac_dummy_timers timers; rlc_um rlc1; rlc_um rlc2; int len; log1.set_level(srslte::LOG_LEVEL_DEBUG); log2.set_level(srslte::LOG_LEVEL_DEBUG); rlc1.init(&log1, 3, &tester, &tester, &timers); rlc2.init(&log2, 3, &tester, &tester, &timers); rlc_cfg_c cnfg; cnfg.set(rlc_cfg_c::types::um_bi_dir); cnfg.um_bi_dir().dl_um_rlc.t_reordering = t_reordering_e::ms5; cnfg.um_bi_dir().dl_um_rlc.sn_field_len = sn_field_len_e::size5; cnfg.um_bi_dir().ul_um_rlc.sn_field_len = sn_field_len_e::size5; rlc1.configure(&cnfg); rlc2.configure(&cnfg); // Push SDUs into RLC1 const int n_sdus = 25; const int sdu_len = 100; tester.set_expected_sdu_len(sdu_len); byte_buffer_t sdu_bufs[n_sdus]; const int n_sdu_first_batch = 17; for(int i=0;iN_bytes == sdu_len); } } int main(int argc, char **argv) { basic_test(); byte_buffer_pool::get_instance()->cleanup(); loss_test(); byte_buffer_pool::get_instance()->cleanup(); basic_mbsfn_test(); byte_buffer_pool::get_instance()->cleanup(); reassmble_test(); byte_buffer_pool::get_instance()->cleanup(); reassmble_test2(); byte_buffer_pool::get_instance()->cleanup(); }