|
|
@ -11,6 +11,10 @@
|
|
|
|
*/
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "srsenb/hdr/stack/ngap/ngap.h"
|
|
|
|
#include "srsenb/hdr/stack/ngap/ngap.h"
|
|
|
|
|
|
|
|
#include "srsran/common/int_helpers.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
using srsran::s1ap_mccmnc_to_plmn;
|
|
|
|
|
|
|
|
using srsran::uint32_to_uint8;
|
|
|
|
|
|
|
|
|
|
|
|
#define procError(fmt, ...) ngap_ptr->logger.error("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)
|
|
|
|
#define procError(fmt, ...) ngap_ptr->logger.error("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)
|
|
|
|
#define procWarning(fmt, ...) ngap_ptr->logger.warning("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)
|
|
|
|
#define procWarning(fmt, ...) ngap_ptr->logger.warning("Proc \"%s\" - " fmt, name(), ##__VA_ARGS__)
|
|
|
@ -145,20 +149,137 @@ bool ngap::is_amf_connected()
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Generate common NGAP protocol IEs from config args
|
|
|
|
// Generate common NGAP protocol IEs from config args
|
|
|
|
void ngap::build_tai_cgi()
|
|
|
|
int ngap::build_tai_cgi()
|
|
|
|
{
|
|
|
|
{
|
|
|
|
uint32_t plmn;
|
|
|
|
uint32_t plmn;
|
|
|
|
|
|
|
|
uint8_t shift;
|
|
|
|
|
|
|
|
|
|
|
|
// TAI
|
|
|
|
// TAI
|
|
|
|
srsran::s1ap_mccmnc_to_plmn(args.mcc, args.mnc, &plmn);
|
|
|
|
srsran::s1ap_mccmnc_to_plmn(args.mcc, args.mnc, &plmn);
|
|
|
|
tai.plmn_id.from_number(plmn);
|
|
|
|
tai.plmn_id.from_number(plmn);
|
|
|
|
|
|
|
|
|
|
|
|
tai.tac.from_number(args.tac);
|
|
|
|
tai.tac.from_number(args.tac);
|
|
|
|
|
|
|
|
|
|
|
|
// nr_cgi
|
|
|
|
// NR CGI
|
|
|
|
nr_cgi.plmn_id.from_number(plmn);
|
|
|
|
nr_cgi.plmn_id.from_number(plmn);
|
|
|
|
// TODO Check how to build nr cell id
|
|
|
|
|
|
|
|
nr_cgi.nrcell_id.from_number((uint32_t)(args.gnb_id << 8) | args.cell_id);
|
|
|
|
// NR CELL ID (36 bits) = gnb_id (22...32 bits) + cell_id (4...14 bits)
|
|
|
|
|
|
|
|
if (((uint8_t)log2(args.gnb_id) + (uint8_t)log2(args.cell_id) + 2) > 36) {
|
|
|
|
|
|
|
|
logger.error("gNB ID and Cell ID combination greater than 36 bits");
|
|
|
|
|
|
|
|
return SRSRAN_ERROR;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
// Consider moving sanity checks into the parsing function of the configs.
|
|
|
|
|
|
|
|
if (((uint8_t)log2(args.gnb_id) + 1) < 22) {
|
|
|
|
|
|
|
|
shift = 14;
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
shift = 36 - ((uint8_t)log2(args.gnb_id) + 1);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
nr_cgi.nrcell_id.from_number((uint64_t)args.gnb_id << shift | args.cell_id);
|
|
|
|
|
|
|
|
return SRSRAN_SUCCESS;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
/* RRC interface
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
void ngap::initial_ue(uint16_t rnti,
|
|
|
|
|
|
|
|
uint32_t gnb_cc_idx,
|
|
|
|
|
|
|
|
asn1::ngap_nr::rrcestablishment_cause_e cause,
|
|
|
|
|
|
|
|
srsran::unique_byte_buffer_t pdu)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::unique_ptr<ue> ue_ptr{new ue{this}};
|
|
|
|
|
|
|
|
ue_ptr->ctxt.rnti = rnti;
|
|
|
|
|
|
|
|
ue_ptr->ctxt.gnb_cc_idx = gnb_cc_idx;
|
|
|
|
|
|
|
|
ue* u = users.add_user(std::move(ue_ptr));
|
|
|
|
|
|
|
|
if (u == nullptr) {
|
|
|
|
|
|
|
|
logger.error("Failed to add rnti=0x%x", rnti);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
u->send_initialuemessage(cause, std::move(pdu), false);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ngap::initial_ue(uint16_t rnti,
|
|
|
|
|
|
|
|
uint32_t gnb_cc_idx,
|
|
|
|
|
|
|
|
asn1::ngap_nr::rrcestablishment_cause_e cause,
|
|
|
|
|
|
|
|
srsran::unique_byte_buffer_t pdu,
|
|
|
|
|
|
|
|
uint32_t s_tmsi)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::unique_ptr<ue> ue_ptr{new ue{this}};
|
|
|
|
|
|
|
|
ue_ptr->ctxt.rnti = rnti;
|
|
|
|
|
|
|
|
ue_ptr->ctxt.gnb_cc_idx = gnb_cc_idx;
|
|
|
|
|
|
|
|
ue* u = users.add_user(std::move(ue_ptr));
|
|
|
|
|
|
|
|
if (u == nullptr) {
|
|
|
|
|
|
|
|
logger.error("Failed to add rnti=0x%x", rnti);
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
u->send_initialuemessage(cause, std::move(pdu), true, s_tmsi);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ngap::ue_ctxt_setup_complete(uint16_t rnti)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ue* u = users.find_ue_rnti(rnti);
|
|
|
|
|
|
|
|
if (u == nullptr) {
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
u->ue_ctxt_setup_complete();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*********************************************************
|
|
|
|
|
|
|
|
* ngap::user_list class
|
|
|
|
|
|
|
|
*********************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap::ue* ngap::user_list::find_ue_rnti(uint16_t rnti)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (rnti == SRSRAN_INVALID_RNTI) {
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
auto it = std::find_if(
|
|
|
|
|
|
|
|
users.begin(), users.end(), [rnti](const user_list::pair_type& v) { return v.second->ctxt.rnti == rnti; });
|
|
|
|
|
|
|
|
return it != users.end() ? it->second.get() : nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap::ue* ngap::user_list::find_ue_gnbid(uint32_t gnbid)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto it = users.find(gnbid);
|
|
|
|
|
|
|
|
return (it != users.end()) ? it->second.get() : nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap::ue* ngap::user_list::find_ue_amfid(uint32_t amfid)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
auto it = std::find_if(users.begin(), users.end(), [amfid](const user_list::pair_type& v) {
|
|
|
|
|
|
|
|
return v.second->ctxt.amf_ue_ngap_id == amfid;
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
return it != users.end() ? it->second.get() : nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap::ue* ngap::user_list::add_user(std::unique_ptr<ngap::ue> user)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
static srslog::basic_logger& logger = srslog::fetch_basic_logger("NGAP");
|
|
|
|
|
|
|
|
// Check for ID repetitions
|
|
|
|
|
|
|
|
if (find_ue_rnti(user->ctxt.rnti) != nullptr) {
|
|
|
|
|
|
|
|
logger.error("The user to be added with rnti=0x%x already exists", user->ctxt.rnti);
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (find_ue_gnbid(user->ctxt.ran_ue_ngap_id) != nullptr) {
|
|
|
|
|
|
|
|
logger.error("The user to be added with ran ue ngap id=%d already exists", user->ctxt.ran_ue_ngap_id);
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user->ctxt.amf_ue_ngap_id.has_value() and find_ue_amfid(user->ctxt.amf_ue_ngap_id.value()) != nullptr) {
|
|
|
|
|
|
|
|
logger.error("The user to be added with amf id=%d already exists", user->ctxt.amf_ue_ngap_id.value());
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
auto p = users.insert(std::make_pair(user->ctxt.ran_ue_ngap_id, std::move(user)));
|
|
|
|
|
|
|
|
return p.second ? p.first->second.get() : nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ngap::user_list::erase(ue* ue_ptr)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
static srslog::basic_logger& logger = srslog::fetch_basic_logger("NGAP");
|
|
|
|
|
|
|
|
auto it = users.find(ue_ptr->ctxt.ran_ue_ngap_id);
|
|
|
|
|
|
|
|
if (it == users.end()) {
|
|
|
|
|
|
|
|
logger.error("User to be erased does not exist");
|
|
|
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
users.erase(it);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
/*******************************************************************************
|
|
|
@ -191,11 +312,11 @@ bool ngap::handle_amf_rx_msg(srsran::unique_byte_buffer_t pdu,
|
|
|
|
amf_socket.close();
|
|
|
|
amf_socket.close();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Restart MME connection procedure if we lost connection
|
|
|
|
// Restart AMF connection procedure if we lost connection
|
|
|
|
if (not amf_socket.is_open()) {
|
|
|
|
if (not amf_socket.is_open()) {
|
|
|
|
amf_connected = false;
|
|
|
|
amf_connected = false;
|
|
|
|
if (ngsetup_proc.is_busy()) {
|
|
|
|
if (ngsetup_proc.is_busy()) {
|
|
|
|
logger.error("Failed to initiate MME connection procedure, as it is already running.");
|
|
|
|
logger.error("Failed to initiate AMF connection procedure, as it is already running.");
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
ngsetup_proc.launch();
|
|
|
|
ngsetup_proc.launch();
|
|
|
@ -208,6 +329,7 @@ bool ngap::handle_amf_rx_msg(srsran::unique_byte_buffer_t pdu,
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_ngap_rx_pdu(srsran::byte_buffer_t* pdu)
|
|
|
|
bool ngap::handle_ngap_rx_pdu(srsran::byte_buffer_t* pdu)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// Save message to PCAP
|
|
|
|
// Save message to PCAP
|
|
|
|
// if (pcap != nullptr) {
|
|
|
|
// if (pcap != nullptr) {
|
|
|
|
// pcap->write_ngap(pdu->msg, pdu->N_bytes);
|
|
|
|
// pcap->write_ngap(pdu->msg, pdu->N_bytes);
|
|
|
@ -220,18 +342,19 @@ bool ngap::handle_ngap_rx_pdu(srsran::byte_buffer_t* pdu)
|
|
|
|
logger.error(pdu->msg, pdu->N_bytes, "Failed to unpack received PDU");
|
|
|
|
logger.error(pdu->msg, pdu->N_bytes, "Failed to unpack received PDU");
|
|
|
|
cause_c cause;
|
|
|
|
cause_c cause;
|
|
|
|
cause.set_protocol().value = cause_protocol_opts::transfer_syntax_error;
|
|
|
|
cause.set_protocol().value = cause_protocol_opts::transfer_syntax_error;
|
|
|
|
// send_error_indication(cause);
|
|
|
|
send_error_indication(cause);
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// TODO:
|
|
|
|
// log_ngap_msg(rx_pdu, srsran::make_span(*pdu), true);
|
|
|
|
// log_ngap_msg(rx_pdu, srsran::make_span(*pdu), true);
|
|
|
|
|
|
|
|
|
|
|
|
switch (rx_pdu.type().value) {
|
|
|
|
switch (rx_pdu.type().value) {
|
|
|
|
// case ngap_pdu_c::types_opts::init_msg:
|
|
|
|
case ngap_pdu_c::types_opts::init_msg:
|
|
|
|
// return handle_initiatingmessage(rx_pdu.init_msg());
|
|
|
|
return handle_initiatingmessage(rx_pdu.init_msg());
|
|
|
|
case ngap_pdu_c::types_opts::successful_outcome:
|
|
|
|
case ngap_pdu_c::types_opts::successful_outcome:
|
|
|
|
return handle_successfuloutcome(rx_pdu.successful_outcome());
|
|
|
|
return handle_successfuloutcome(rx_pdu.successful_outcome());
|
|
|
|
// case ngap_pdu_c::types_opts::unsuccessful_outcome:
|
|
|
|
case ngap_pdu_c::types_opts::unsuccessful_outcome:
|
|
|
|
// return handle_unsuccessfuloutcome(rx_pdu.unsuccessful_outcome());
|
|
|
|
return handle_unsuccessfuloutcome(rx_pdu.unsuccessful_outcome());
|
|
|
|
default:
|
|
|
|
default:
|
|
|
|
logger.error("Unhandled PDU type %d", rx_pdu.type().value);
|
|
|
|
logger.error("Unhandled PDU type %d", rx_pdu.type().value);
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
@ -240,6 +363,19 @@ bool ngap::handle_ngap_rx_pdu(srsran::byte_buffer_t* pdu)
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_initiatingmessage(const asn1::ngap_nr::init_msg_s& msg)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (msg.value.type().value) {
|
|
|
|
|
|
|
|
case ngap_elem_procs_o::init_msg_c::types_opts::dl_nas_transport:
|
|
|
|
|
|
|
|
return handle_dlnastransport(msg.value.dl_nas_transport());
|
|
|
|
|
|
|
|
case ngap_elem_procs_o::init_msg_c::types_opts::init_context_setup_request:
|
|
|
|
|
|
|
|
return handle_initialctxtsetuprequest(msg.value.init_context_setup_request());
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
logger.error("Unhandled initiating message: %s", msg.value.type().to_string());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_successfuloutcome(const successful_outcome_s& msg)
|
|
|
|
bool ngap::handle_successfuloutcome(const successful_outcome_s& msg)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
switch (msg.value.type().value) {
|
|
|
|
switch (msg.value.type().value) {
|
|
|
@ -251,6 +387,17 @@ bool ngap::handle_successfuloutcome(const successful_outcome_s& msg)
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_unsuccessfuloutcome(const asn1::ngap_nr::unsuccessful_outcome_s& msg)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
switch (msg.value.type().value) {
|
|
|
|
|
|
|
|
case ngap_elem_procs_o::unsuccessful_outcome_c::types_opts::ng_setup_fail:
|
|
|
|
|
|
|
|
return handle_ngsetupfailure(msg.value.ng_setup_fail());
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
logger.error("Unhandled unsuccessful outcome message: %s", msg.value.type().to_string());
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_ngsetupresponse(const asn1::ngap_nr::ng_setup_resp_s& msg)
|
|
|
|
bool ngap::handle_ngsetupresponse(const asn1::ngap_nr::ng_setup_resp_s& msg)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
ngsetupresponse = msg;
|
|
|
|
ngsetupresponse = msg;
|
|
|
@ -258,6 +405,93 @@ bool ngap::handle_ngsetupresponse(const asn1::ngap_nr::ng_setup_resp_s& msg)
|
|
|
|
ng_setup_proc_t::ngsetupresult res;
|
|
|
|
ng_setup_proc_t::ngsetupresult res;
|
|
|
|
res.success = true;
|
|
|
|
res.success = true;
|
|
|
|
ngsetup_proc.trigger(res);
|
|
|
|
ngsetup_proc.trigger(res);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_ngsetupfailure(const asn1::ngap_nr::ng_setup_fail_s& msg)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string cause = get_cause(msg.protocol_ies.cause.value);
|
|
|
|
|
|
|
|
logger.error("NG Setup Failure. Cause: %s", cause.c_str());
|
|
|
|
|
|
|
|
srsran::console("NG Setup Failure. Cause: %s\n", cause.c_str());
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_dlnastransport(const asn1::ngap_nr::dl_nas_transport_s& msg)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (msg.ext) {
|
|
|
|
|
|
|
|
logger.warning("Not handling NGAP message extension");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
ue* u =
|
|
|
|
|
|
|
|
handle_ngapmsg_ue_id(msg.protocol_ies.ran_ue_ngap_id.value.value, msg.protocol_ies.amf_ue_ngap_id.value.value);
|
|
|
|
|
|
|
|
if (u == nullptr) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.old_amf_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling OldAMF");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.ran_paging_prio_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling RANPagingPriority");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.mob_restrict_list_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling MobilityRestrictionList");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.idx_to_rfsp_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling IndexToRFSP");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.ue_aggregate_maximum_bit_rate_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling UEAggregateMaximumBitRate");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (msg.protocol_ies.allowed_nssai_present) {
|
|
|
|
|
|
|
|
logger.warning("Not handling AllowedNSSAI");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// TODO: Pass NAS PDU once RRC interface is ready
|
|
|
|
|
|
|
|
/* srsran::unique_byte_buffer_t pdu = srsran::make_byte_buffer();
|
|
|
|
|
|
|
|
if (pdu == nullptr) {
|
|
|
|
|
|
|
|
logger.error("Fatal Error: Couldn't allocate buffer in ngap::run_thread().");
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(pdu->msg, msg.protocol_ies.nas_pdu.value.data(), msg.protocol_ies.nas_pdu.value.size());
|
|
|
|
|
|
|
|
pdu->N_bytes = msg.protocol_ies.nas_pdu.value.size();
|
|
|
|
|
|
|
|
rrc->write_dl_info(u->ctxt.rnti, std::move(pdu)); */
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::handle_initialctxtsetuprequest(const asn1::ngap_nr::init_context_setup_request_s& msg)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ue* u =
|
|
|
|
|
|
|
|
handle_ngapmsg_ue_id(msg.protocol_ies.ran_ue_ngap_id.value.value, msg.protocol_ies.amf_ue_ngap_id.value.value);
|
|
|
|
|
|
|
|
if (u == nullptr) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
u->ctxt.amf_pointer = msg.protocol_ies.guami.value.amf_pointer.to_number();
|
|
|
|
|
|
|
|
u->ctxt.amf_set_id = msg.protocol_ies.guami.value.amf_set_id.to_number();
|
|
|
|
|
|
|
|
u->ctxt.amf_region_id = msg.protocol_ies.guami.value.amf_region_id.to_number();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Setup UE ctxt in RRC once interface is ready
|
|
|
|
|
|
|
|
/* if (not rrc->setup_ue_ctxt(u->ctxt.rnti, msg)) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/* if (msg.protocol_ies.nas_pdu_present) {
|
|
|
|
|
|
|
|
srsran::unique_byte_buffer_t pdu = srsran::make_byte_buffer();
|
|
|
|
|
|
|
|
if (pdu == nullptr) {
|
|
|
|
|
|
|
|
logger.error("Fatal Error: Couldn't allocate buffer in ngap::run_thread().");
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
memcpy(pdu->msg, msg.protocol_ies.nas_pdu.value.data(), msg.protocol_ies.nas_pdu.value.size());
|
|
|
|
|
|
|
|
pdu->N_bytes = msg.protocol_ies.nas_pdu.value.size();
|
|
|
|
|
|
|
|
rrc->write_dl_info(u->ctxt.rnti, std::move(pdu));
|
|
|
|
|
|
|
|
} */
|
|
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
@ -344,6 +578,134 @@ bool ngap::setup_ng()
|
|
|
|
return sctp_send_ngap_pdu(pdu, 0, "ngSetupRequest");
|
|
|
|
return sctp_send_ngap_pdu(pdu, 0, "ngSetupRequest");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
/* NGAP message senders
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::ue::send_initialuemessage(asn1::ngap_nr::rrcestablishment_cause_e cause,
|
|
|
|
|
|
|
|
srsran::unique_byte_buffer_t pdu,
|
|
|
|
|
|
|
|
bool has_tmsi,
|
|
|
|
|
|
|
|
uint32_t s_tmsi)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (not ngap_ptr->amf_connected) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap_pdu_c tx_pdu;
|
|
|
|
|
|
|
|
tx_pdu.set_init_msg().load_info_obj(ASN1_NGAP_NR_ID_INIT_UE_MSG);
|
|
|
|
|
|
|
|
init_ue_msg_ies_container& container = tx_pdu.init_msg().value.init_ue_msg().protocol_ies;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// 5G-S-TMSI
|
|
|
|
|
|
|
|
if (has_tmsi) {
|
|
|
|
|
|
|
|
container.five_g_s_tmsi_present = true;
|
|
|
|
|
|
|
|
srsran::uint32_to_uint8(s_tmsi, container.five_g_s_tmsi.value.five_g_tmsi.data());
|
|
|
|
|
|
|
|
container.five_g_s_tmsi.value.amf_set_id.from_number(ctxt.amf_set_id);
|
|
|
|
|
|
|
|
container.five_g_s_tmsi.value.amf_pointer.from_number(ctxt.amf_pointer);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// RAN_UE_NGAP_ID
|
|
|
|
|
|
|
|
container.ran_ue_ngap_id.value = ctxt.ran_ue_ngap_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// NAS_PDU
|
|
|
|
|
|
|
|
container.nas_pdu.value.resize(pdu->N_bytes);
|
|
|
|
|
|
|
|
memcpy(container.nas_pdu.value.data(), pdu->msg, pdu->N_bytes);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// RRC Establishment Cause
|
|
|
|
|
|
|
|
container.rrcestablishment_cause.value = cause;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// User Location Info
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// userLocationInformationNR
|
|
|
|
|
|
|
|
container.user_location_info.value.set_user_location_info_nr();
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().nr_cgi.nrcell_id = ngap_ptr->nr_cgi.nrcell_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().nr_cgi.plmn_id = ngap_ptr->nr_cgi.plmn_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().tai.plmn_id = ngap_ptr->tai.plmn_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().tai.tac = ngap_ptr->tai.tac;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ngap_ptr->sctp_send_ngap_pdu(tx_pdu, ctxt.rnti, "InitialUEMessage");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::ue::send_ulnastransport(srsran::unique_byte_buffer_t pdu)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (not ngap_ptr->amf_connected) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap_pdu_c tx_pdu;
|
|
|
|
|
|
|
|
tx_pdu.set_init_msg().load_info_obj(ASN1_NGAP_NR_ID_UL_NAS_TRANSPORT);
|
|
|
|
|
|
|
|
asn1::ngap_nr::ul_nas_transport_ies_container& container = tx_pdu.init_msg().value.ul_nas_transport().protocol_ies;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// AMF UE NGAP ID
|
|
|
|
|
|
|
|
container.amf_ue_ngap_id.value = ctxt.amf_ue_ngap_id.value();
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// RAN UE NGAP ID
|
|
|
|
|
|
|
|
container.ran_ue_ngap_id.value = ctxt.ran_ue_ngap_id;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// NAS PDU
|
|
|
|
|
|
|
|
container.nas_pdu.value.resize(pdu->N_bytes);
|
|
|
|
|
|
|
|
memcpy(container.nas_pdu.value.data(), pdu->msg, pdu->N_bytes);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// User Location Info
|
|
|
|
|
|
|
|
// userLocationInformationNR
|
|
|
|
|
|
|
|
container.user_location_info.value.set_user_location_info_nr();
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().nr_cgi.nrcell_id = ngap_ptr->nr_cgi.nrcell_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().nr_cgi.plmn_id = ngap_ptr->nr_cgi.plmn_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().tai.plmn_id = ngap_ptr->tai.plmn_id;
|
|
|
|
|
|
|
|
container.user_location_info.value.user_location_info_nr().tai.tac = ngap_ptr->tai.tac;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return ngap_ptr->sctp_send_ngap_pdu(tx_pdu, ctxt.rnti, "UplinkNASTransport");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void ngap::ue::ue_ctxt_setup_complete()
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ngap_pdu_c tx_pdu;
|
|
|
|
|
|
|
|
// Handle PDU Session List once RRC interface is ready
|
|
|
|
|
|
|
|
tx_pdu.set_successful_outcome().load_info_obj(ASN1_NGAP_NR_ID_INIT_CONTEXT_SETUP);
|
|
|
|
|
|
|
|
auto& container = tx_pdu.successful_outcome().value.init_context_setup_resp().protocol_ies;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
bool ngap::send_error_indication(const asn1::ngap_nr::cause_c& cause,
|
|
|
|
|
|
|
|
srsran::optional<uint32_t> ran_ue_ngap_id,
|
|
|
|
|
|
|
|
srsran::optional<uint32_t> amf_ue_ngap_id)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
if (not amf_connected) {
|
|
|
|
|
|
|
|
return false;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap_pdu_c tx_pdu;
|
|
|
|
|
|
|
|
tx_pdu.set_init_msg().load_info_obj(ASN1_NGAP_NR_ID_ERROR_IND);
|
|
|
|
|
|
|
|
auto& container = tx_pdu.init_msg().value.error_ind().protocol_ies;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint16_t rnti = SRSRAN_INVALID_RNTI;
|
|
|
|
|
|
|
|
container.ran_ue_ngap_id_present = ran_ue_ngap_id.has_value();
|
|
|
|
|
|
|
|
if (ran_ue_ngap_id.has_value()) {
|
|
|
|
|
|
|
|
container.ran_ue_ngap_id.value = ran_ue_ngap_id.value();
|
|
|
|
|
|
|
|
ue* user_ptr = users.find_ue_gnbid(ran_ue_ngap_id.value());
|
|
|
|
|
|
|
|
rnti = user_ptr != nullptr ? user_ptr->ctxt.rnti : SRSRAN_INVALID_RNTI;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
container.amf_ue_ngap_id_present = amf_ue_ngap_id.has_value();
|
|
|
|
|
|
|
|
if (amf_ue_ngap_id.has_value()) {
|
|
|
|
|
|
|
|
container.amf_ue_ngap_id.value = amf_ue_ngap_id.value();
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
container.cause_present = true;
|
|
|
|
|
|
|
|
container.cause.value = cause;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
return sctp_send_ngap_pdu(tx_pdu, rnti, "Error Indication");
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
|
|
|
|
/* ngap::ue Class
|
|
|
|
|
|
|
|
********************************************************************************/
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
ngap::ue::ue(ngap* ngap_ptr_) : ngap_ptr(ngap_ptr_)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ctxt.ran_ue_ngap_id = ngap_ptr->next_gnb_ue_ngap_id++;
|
|
|
|
|
|
|
|
gettimeofday(&ctxt.init_timestamp, nullptr);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
stream_id = ngap_ptr->next_ue_stream_id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
/*******************************************************************************
|
|
|
|
/* General helpers
|
|
|
|
/* General helpers
|
|
|
|
********************************************************************************/
|
|
|
|
********************************************************************************/
|
|
|
@ -374,14 +736,14 @@ bool ngap::sctp_send_ngap_pdu(const asn1::ngap_nr::ngap_pdu_c& tx_pdu, uint32_t
|
|
|
|
// }
|
|
|
|
// }
|
|
|
|
|
|
|
|
|
|
|
|
if (rnti != SRSRAN_INVALID_RNTI) {
|
|
|
|
if (rnti != SRSRAN_INVALID_RNTI) {
|
|
|
|
logger.info(buf->msg, buf->N_bytes, "Tx S1AP SDU, %s, rnti=0x%x", procedure_name, rnti);
|
|
|
|
logger.info(buf->msg, buf->N_bytes, "Tx NGAP SDU, %s, rnti=0x%x", procedure_name, rnti);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
logger.info(buf->msg, buf->N_bytes, "Tx S1AP SDU, %s", procedure_name);
|
|
|
|
logger.info(buf->msg, buf->N_bytes, "Tx NGAP SDU, %s", procedure_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
// TODO: when user list is ready
|
|
|
|
|
|
|
|
// uint16_t streamid = rnti == SRSRAN_INVALID_RNTI ? NONUE_STREAM_ID : users.find_ue_rnti(rnti)->stream_id;
|
|
|
|
uint16_t streamid = rnti == SRSRAN_INVALID_RNTI ? NONUE_STREAM_ID : users.find_ue_rnti(rnti)->stream_id;
|
|
|
|
uint16_t streamid = 0;
|
|
|
|
|
|
|
|
ssize_t n_sent = sctp_sendmsg(amf_socket.fd(),
|
|
|
|
ssize_t n_sent = sctp_sendmsg(amf_socket.fd(),
|
|
|
|
buf->msg,
|
|
|
|
buf->msg,
|
|
|
|
buf->N_bytes,
|
|
|
|
buf->N_bytes,
|
|
|
|
(struct sockaddr*)&amf_addr,
|
|
|
|
(struct sockaddr*)&amf_addr,
|
|
|
@ -393,13 +755,87 @@ bool ngap::sctp_send_ngap_pdu(const asn1::ngap_nr::ngap_pdu_c& tx_pdu, uint32_t
|
|
|
|
0);
|
|
|
|
0);
|
|
|
|
if (n_sent == -1) {
|
|
|
|
if (n_sent == -1) {
|
|
|
|
if (rnti != SRSRAN_INVALID_RNTI) {
|
|
|
|
if (rnti != SRSRAN_INVALID_RNTI) {
|
|
|
|
logger.error("Error: Failure at Tx S1AP SDU, %s, rnti=0x%x", procedure_name, rnti);
|
|
|
|
logger.error("Error: Failure at Tx NGAP SDU, %s, rnti=0x%x", procedure_name, rnti);
|
|
|
|
} else {
|
|
|
|
} else {
|
|
|
|
logger.error("Error: Failure at Tx S1AP SDU, %s", procedure_name);
|
|
|
|
logger.error("Error: Failure at Tx NGAP SDU, %s", procedure_name);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
|
|
|
* Helper method to find user based on the ran_ue_ngap_id stored in an S1AP Msg, and update amf_ue_ngap_id
|
|
|
|
|
|
|
|
* @param gnb_id ran_ue_ngap_id value stored in NGAP message
|
|
|
|
|
|
|
|
* @param amf_id amf_ue_ngap_id value stored in NGAP message
|
|
|
|
|
|
|
|
* @return pointer to user if it has been found
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
ngap::ue* ngap::handle_ngapmsg_ue_id(uint32_t gnb_id, uint32_t amf_id)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
ue* user_ptr = users.find_ue_gnbid(gnb_id);
|
|
|
|
|
|
|
|
ue* user_amf_ptr = nullptr;
|
|
|
|
|
|
|
|
cause_c cause;
|
|
|
|
|
|
|
|
// TODO: Introduce proper error handling for faulty ids
|
|
|
|
|
|
|
|
if (user_ptr != nullptr) {
|
|
|
|
|
|
|
|
if (user_ptr->ctxt.amf_ue_ngap_id == amf_id) {
|
|
|
|
|
|
|
|
return user_ptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
user_amf_ptr = users.find_ue_amfid(amf_id);
|
|
|
|
|
|
|
|
if (not user_ptr->ctxt.amf_ue_ngap_id.has_value() and user_amf_ptr == nullptr) {
|
|
|
|
|
|
|
|
user_ptr->ctxt.amf_ue_ngap_id = amf_id;
|
|
|
|
|
|
|
|
return user_ptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
logger.warning("AMF UE NGAP ID=%d not found - discarding message", amf_id);
|
|
|
|
|
|
|
|
if (user_amf_ptr != nullptr) {
|
|
|
|
|
|
|
|
cause.set_radio_network().value = cause_radio_network_opts::unknown_target_id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
} else {
|
|
|
|
|
|
|
|
user_amf_ptr = users.find_ue_amfid(amf_id);
|
|
|
|
|
|
|
|
logger.warning("RAN UE NGAP ID=%d not found - discarding message", gnb_id);
|
|
|
|
|
|
|
|
if (user_amf_ptr != nullptr) {
|
|
|
|
|
|
|
|
cause.set_radio_network().value = cause_radio_network_opts::unknown_local_ue_ngap_id;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
send_error_indication(cause, gnb_id, amf_id);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if (user_ptr != nullptr) {
|
|
|
|
|
|
|
|
// rrc->release_ue(user_ptr->ctxt.rnti);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if (user_amf_ptr != nullptr and user_amf_ptr != user_ptr) {
|
|
|
|
|
|
|
|
// rrc->release_ue(user_mme_ptr->ctxt.rnti);
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return nullptr;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
std::string ngap::get_cause(const cause_c& c)
|
|
|
|
|
|
|
|
{
|
|
|
|
|
|
|
|
std::string cause = c.type().to_string();
|
|
|
|
|
|
|
|
cause += " - ";
|
|
|
|
|
|
|
|
switch (c.type().value) {
|
|
|
|
|
|
|
|
case cause_c::types_opts::radio_network:
|
|
|
|
|
|
|
|
cause += c.radio_network().to_string();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cause_c::types_opts::transport:
|
|
|
|
|
|
|
|
cause += c.transport().to_string();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cause_c::types_opts::nas:
|
|
|
|
|
|
|
|
cause += c.nas().to_string();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cause_c::types_opts::protocol:
|
|
|
|
|
|
|
|
cause += c.protocol().to_string();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
case cause_c::types_opts::misc:
|
|
|
|
|
|
|
|
cause += c.misc().to_string();
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
default:
|
|
|
|
|
|
|
|
cause += "unknown";
|
|
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
return cause;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
} // namespace srsenb
|
|
|
|
} // namespace srsenb
|
|
|
|