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.
150 lines
4.7 KiB
C++
150 lines
4.7 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.
|
|
*
|
|
*/
|
|
|
|
#ifndef SRSENB_RRC_NR_H
|
|
#define SRSENB_RRC_NR_H
|
|
|
|
#include "rrc_config_common.h"
|
|
#include "rrc_config_nr.h"
|
|
#include "rrc_metrics.h"
|
|
#include "srsenb/hdr/stack/enb_stack_base.h"
|
|
#include "srsran/asn1/rrc_nr.h"
|
|
#include "srsran/common/block_queue.h"
|
|
#include "srsran/common/buffer_pool.h"
|
|
#include "srsran/common/common.h"
|
|
#include "srsran/common/task_scheduler.h"
|
|
#include "srsran/common/threads.h"
|
|
#include "srsran/common/timeout.h"
|
|
#include "srsran/interfaces/enb_pdcp_interfaces.h"
|
|
#include "srsran/interfaces/enb_rlc_interfaces.h"
|
|
#include "srsran/interfaces/enb_rrc_interfaces.h"
|
|
#include "srsran/interfaces/gnb_interfaces.h"
|
|
#include "srsran/interfaces/gnb_ngap_interfaces.h"
|
|
#include "srsran/interfaces/gnb_rrc_nr_interfaces.h"
|
|
#include <map>
|
|
#include <queue>
|
|
|
|
namespace srsenb {
|
|
|
|
enum class rrc_nr_state_t { RRC_IDLE, RRC_INACTIVE, RRC_CONNECTED };
|
|
|
|
class rrc_nr final : public rrc_interface_pdcp_nr,
|
|
public rrc_interface_mac_nr,
|
|
public rrc_interface_rlc_nr,
|
|
public rrc_interface_ngap_nr,
|
|
public rrc_nr_interface_rrc
|
|
{
|
|
public:
|
|
explicit rrc_nr(srsran::task_sched_handle task_sched_);
|
|
|
|
int32_t init(const rrc_nr_cfg_t& cfg,
|
|
phy_interface_stack_nr* phy,
|
|
mac_interface_rrc_nr* mac,
|
|
rlc_interface_rrc* rlc,
|
|
pdcp_interface_rrc* pdcp,
|
|
ngap_interface_rrc_nr* ngap_,
|
|
gtpu_interface_rrc_nr* gtpu,
|
|
rrc_eutra_interface_rrc_nr* rrc_eutra_);
|
|
|
|
void stop();
|
|
|
|
void get_metrics(srsenb::rrc_metrics_t& m);
|
|
|
|
rrc_nr_cfg_t update_default_cfg(const rrc_nr_cfg_t& rrc_cfg);
|
|
int add_user(uint16_t rnti);
|
|
int update_user(uint16_t new_rnti, uint16_t old_rnti);
|
|
void config_mac();
|
|
int32_t generate_sibs();
|
|
int read_pdu_bcch_bch(const uint32_t tti, srsran::unique_byte_buffer_t& buffer) final;
|
|
int read_pdu_bcch_dlsch(uint32_t sib_index, srsran::unique_byte_buffer_t& buffer) final;
|
|
|
|
// RLC interface
|
|
// TODO
|
|
void read_pdu_pcch(uint8_t* payload, uint32_t payload_size) {}
|
|
void max_retx_attempted(uint16_t rnti) {}
|
|
void protocol_failure(uint16_t rnti) {}
|
|
const char* get_rb_name(uint32_t lcid) { return "invalid"; }
|
|
|
|
// PDCP interface
|
|
void write_pdu(uint16_t rnti, uint32_t lcid, srsran::unique_byte_buffer_t pdu) final;
|
|
void notify_pdcp_integrity_error(uint16_t rnti, uint32_t lcid) final;
|
|
|
|
// Interface for EUTRA RRC
|
|
int sgnb_addition_request(uint16_t rnti);
|
|
int sgnb_reconfiguration_complete(uint16_t rnti, asn1::dyn_octstring reconfig_response);
|
|
|
|
class ue
|
|
{
|
|
public:
|
|
ue(rrc_nr* parent_, uint16_t rnti_);
|
|
|
|
void send_connection_setup();
|
|
void send_dl_ccch(asn1::rrc_nr::dl_ccch_msg_s* dl_dcch_msg);
|
|
|
|
int handle_sgnb_addition_request(uint16_t eutra_rnti);
|
|
|
|
// getters
|
|
bool is_connected() { return state == rrc_nr_state_t::RRC_CONNECTED; }
|
|
bool is_idle() { return state == rrc_nr_state_t::RRC_IDLE; }
|
|
bool is_inactive() { return state == rrc_nr_state_t::RRC_INACTIVE; }
|
|
|
|
// setters
|
|
|
|
private:
|
|
rrc_nr* parent = nullptr;
|
|
uint16_t rnti = SRSRAN_INVALID_RNTI;
|
|
|
|
// state
|
|
rrc_nr_state_t state = rrc_nr_state_t::RRC_IDLE;
|
|
uint8_t transaction_id = 0;
|
|
};
|
|
|
|
private:
|
|
rrc_nr_cfg_t cfg = {};
|
|
|
|
// interfaces
|
|
phy_interface_stack_nr* phy = nullptr;
|
|
mac_interface_rrc_nr* mac = nullptr;
|
|
rlc_interface_rrc* rlc = nullptr;
|
|
pdcp_interface_rrc* pdcp = nullptr;
|
|
gtpu_interface_rrc_nr* gtpu = nullptr;
|
|
ngap_interface_rrc_nr* ngap = nullptr;
|
|
rrc_eutra_interface_rrc_nr* rrc_eutra = nullptr;
|
|
|
|
// args
|
|
srsran::task_sched_handle task_sched;
|
|
|
|
// derived
|
|
uint32_t slot_dur_ms = 0;
|
|
srslog::basic_logger& logger;
|
|
|
|
// vars
|
|
std::map<uint16_t, std::unique_ptr<ue> > users;
|
|
bool running = false;
|
|
std::vector<srsran::unique_byte_buffer_t> sib_buffer;
|
|
srsran::unique_byte_buffer_t mib_buffer = nullptr;
|
|
|
|
uint32_t nof_si_messages = 0;
|
|
|
|
// Private Methods
|
|
void handle_pdu(uint16_t rnti, uint32_t lcid, srsran::unique_byte_buffer_t pdu);
|
|
|
|
// logging
|
|
typedef enum { Rx = 0, Tx } direction_t;
|
|
template <class T>
|
|
void log_rrc_message(const std::string& source, direction_t dir, const srsran::byte_buffer_t* pdu, const T& msg);
|
|
};
|
|
|
|
} // namespace srsenb
|
|
|
|
#endif // SRSENB_RRC_NR_H
|