|
|
|
/**
|
|
|
|
*
|
|
|
|
* \section COPYRIGHT
|
|
|
|
*
|
|
|
|
* Copyright 2013-2020 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 "srslte/upper/gtpu.h"
|
|
|
|
#include "srsenb/hdr/stack/upper/gtpu.h"
|
|
|
|
#include "srslte/common/network_utils.h"
|
|
|
|
#include <errno.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <linux/ip.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
|
|
|
|
using namespace srslte;
|
|
|
|
namespace srsenb {
|
|
|
|
|
|
|
|
gtpu::gtpu(srslog::basic_logger& logger) : m1u(this), gtpu_log("GTPU"), logger(logger) {}
|
|
|
|
|
|
|
|
int gtpu::init(std::string gtp_bind_addr_,
|
|
|
|
std::string mme_addr_,
|
|
|
|
std::string m1u_multiaddr_,
|
|
|
|
std::string m1u_if_addr_,
|
|
|
|
srsenb::pdcp_interface_gtpu* pdcp_,
|
|
|
|
stack_interface_gtpu_lte* stack_,
|
|
|
|
bool enable_mbsfn_)
|
|
|
|
{
|
|
|
|
pdcp = pdcp_;
|
|
|
|
gtp_bind_addr = gtp_bind_addr_;
|
|
|
|
mme_addr = mme_addr_;
|
|
|
|
pool = byte_buffer_pool::get_instance();
|
|
|
|
stack = stack_;
|
|
|
|
|
|
|
|
char errbuf[128] = {};
|
|
|
|
|
|
|
|
// Set up socket
|
|
|
|
fd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (fd < 0) {
|
|
|
|
logger.error("Failed to create socket");
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
int enable = 1;
|
|
|
|
#if defined(SO_REUSEADDR)
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEADDR, &enable, sizeof(int)) < 0)
|
|
|
|
logger.error("setsockopt(SO_REUSEADDR) failed");
|
|
|
|
#endif
|
|
|
|
#if defined(SO_REUSEPORT)
|
|
|
|
if (setsockopt(fd, SOL_SOCKET, SO_REUSEPORT, &enable, sizeof(int)) < 0)
|
|
|
|
logger.error("setsockopt(SO_REUSEPORT) failed");
|
|
|
|
#endif
|
|
|
|
|
|
|
|
struct sockaddr_in bindaddr;
|
|
|
|
bzero(&bindaddr, sizeof(struct sockaddr_in));
|
|
|
|
bindaddr.sin_family = AF_INET;
|
|
|
|
bindaddr.sin_addr.s_addr = inet_addr(gtp_bind_addr.c_str());
|
|
|
|
bindaddr.sin_port = htons(GTPU_PORT);
|
|
|
|
|
|
|
|
if (bind(fd, (struct sockaddr*)&bindaddr, sizeof(struct sockaddr_in))) {
|
|
|
|
snprintf(errbuf, sizeof(errbuf), "%s", strerror(errno));
|
|
|
|
logger.error("Failed to bind on address %s, port %d: %s", gtp_bind_addr.c_str(), int(GTPU_PORT), errbuf);
|
|
|
|
srslte::console("Failed to bind on address %s, port %d: %s\n", gtp_bind_addr.c_str(), int(GTPU_PORT), errbuf);
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
stack->add_gtpu_s1u_socket_handler(fd);
|
|
|
|
|
|
|
|
// Start MCH socket if enabled
|
|
|
|
enable_mbsfn = enable_mbsfn_;
|
|
|
|
if (enable_mbsfn) {
|
|
|
|
if (not m1u.init(m1u_multiaddr_, m1u_if_addr_)) {
|
|
|
|
return SRSLTE_ERROR;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return SRSLTE_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::stop()
|
|
|
|
{
|
|
|
|
if (fd) {
|
|
|
|
close(fd);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// gtpu_interface_pdcp
|
|
|
|
void gtpu::write_pdu(uint16_t rnti, uint32_t lcid, srslte::unique_byte_buffer_t pdu)
|
|
|
|
{
|
|
|
|
logger.info(pdu->msg, pdu->N_bytes, "TX PDU, RNTI: 0x%x, LCID: %d, n_bytes=%d", rnti, lcid, pdu->N_bytes);
|
|
|
|
|
|
|
|
// Check valid IP version
|
|
|
|
struct iphdr* ip_pkt = (struct iphdr*)pdu->msg;
|
|
|
|
if (ip_pkt->version != 4 && ip_pkt->version != 6) {
|
|
|
|
logger.error("Invalid IP version to SPGW");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (ip_pkt->version == 4) {
|
|
|
|
if (ntohs(ip_pkt->tot_len) != pdu->N_bytes) {
|
|
|
|
logger.error("IP Len and PDU N_bytes mismatch");
|
|
|
|
}
|
|
|
|
logger.debug("Tx S1-U PDU -- IP version %d, Total length %d", int(ip_pkt->version), ntohs(ip_pkt->tot_len));
|
|
|
|
logger.debug("Tx S1-U PDU -- IP src addr %s", srslte::gtpu_ntoa(ip_pkt->saddr).c_str());
|
|
|
|
logger.debug("Tx S1-U PDU -- IP dst addr %s", srslte::gtpu_ntoa(ip_pkt->daddr).c_str());
|
|
|
|
}
|
|
|
|
|
|
|
|
gtpu_header_t header;
|
|
|
|
header.flags = GTPU_FLAGS_VERSION_V1 | GTPU_FLAGS_GTP_PROTOCOL;
|
|
|
|
header.message_type = GTPU_MSG_DATA_PDU;
|
|
|
|
header.length = pdu->N_bytes;
|
|
|
|
header.teid = rnti_bearers[rnti].teids_out[lcid];
|
|
|
|
|
|
|
|
struct sockaddr_in servaddr;
|
|
|
|
servaddr.sin_family = AF_INET;
|
|
|
|
servaddr.sin_addr.s_addr = htonl(rnti_bearers[rnti].spgw_addrs[lcid]);
|
|
|
|
servaddr.sin_port = htons(GTPU_PORT);
|
|
|
|
|
|
|
|
if (!gtpu_write_header(&header, pdu.get(), gtpu_log)) {
|
|
|
|
logger.error("Error writing GTP-U Header. Flags 0x%x, Message Type 0x%x", header.flags, header.message_type);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (sendto(fd, pdu->msg, pdu->N_bytes, MSG_EOR, (struct sockaddr*)&servaddr, sizeof(struct sockaddr_in)) < 0) {
|
|
|
|
perror("sendto");
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Warning: This function is called before calling gtpu::init() during MCCH initialization.
|
|
|
|
*/
|
|
|
|
uint32_t gtpu::add_bearer(uint16_t rnti, uint32_t lcid, uint32_t addr, uint32_t teid_out)
|
|
|
|
{
|
|
|
|
// Allocate a TEID for the incoming tunnel
|
|
|
|
uint32_t teid_in = allocate_teidin(rnti, lcid);
|
|
|
|
logger.info("Adding bearer for rnti: 0x%x, lcid: %d, addr: 0x%x, teid_out: 0x%x, teid_in: 0x%x",
|
|
|
|
rnti,
|
|
|
|
lcid,
|
|
|
|
addr,
|
|
|
|
teid_out,
|
|
|
|
teid_in);
|
|
|
|
|
|
|
|
// Initialize maps if it's a new RNTI
|
|
|
|
if (rnti_bearers.count(rnti) == 0) {
|
|
|
|
for (int i = 0; i < SRSENB_N_RADIO_BEARERS; i++) {
|
|
|
|
rnti_bearers[rnti].teids_in[i] = 0;
|
|
|
|
rnti_bearers[rnti].teids_out[i] = 0;
|
|
|
|
rnti_bearers[rnti].spgw_addrs[i] = 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
rnti_bearers[rnti].teids_in[lcid] = teid_in;
|
|
|
|
rnti_bearers[rnti].teids_out[lcid] = teid_out;
|
|
|
|
rnti_bearers[rnti].spgw_addrs[lcid] = addr;
|
|
|
|
|
|
|
|
return teid_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::rem_bearer(uint16_t rnti, uint32_t lcid)
|
|
|
|
{
|
|
|
|
logger.info("Removing bearer for rnti: 0x%x, lcid: %d", rnti, lcid);
|
|
|
|
|
|
|
|
// Remove from TEID from map
|
|
|
|
free_teidin(rnti, lcid);
|
|
|
|
|
|
|
|
// Remove
|
|
|
|
rnti_bearers[rnti].teids_in[lcid] = 0;
|
|
|
|
rnti_bearers[rnti].teids_out[lcid] = 0;
|
|
|
|
|
|
|
|
// Remove RNTI if all bearers are removed
|
|
|
|
bool rem = true;
|
|
|
|
for (int i = 0; i < SRSENB_N_RADIO_BEARERS; i++) {
|
|
|
|
if (rnti_bearers[rnti].teids_in[i] != 0) {
|
|
|
|
rem = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (rem) {
|
|
|
|
rnti_bearers.erase(rnti);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::mod_bearer_rnti(uint16_t old_rnti, uint16_t new_rnti)
|
|
|
|
{
|
|
|
|
logger.info("Modifying bearer rnti. Old rnti: 0x%x, new rnti: 0x%x", old_rnti, new_rnti);
|
|
|
|
|
|
|
|
if (rnti_bearers.count(new_rnti) != 0) {
|
|
|
|
logger.error("New rnti already exists, aborting.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (rnti_bearers.count(old_rnti) == 0) {
|
|
|
|
logger.error("Old rnti does not exist, aborting.");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change RNTI bearers map
|
|
|
|
auto entry = rnti_bearers.find(old_rnti);
|
|
|
|
if (entry != rnti_bearers.end()) {
|
|
|
|
auto const value = std::move(entry->second);
|
|
|
|
rnti_bearers.erase(entry);
|
|
|
|
rnti_bearers.insert({new_rnti, std::move(value)});
|
|
|
|
}
|
|
|
|
|
|
|
|
// Change TEID
|
|
|
|
for (std::map<uint32_t, rnti_lcid_t>::iterator it = teidin_to_rntilcid_map.begin();
|
|
|
|
it != teidin_to_rntilcid_map.end();
|
|
|
|
it++) {
|
|
|
|
if (it->second.rnti == old_rnti) {
|
|
|
|
it->second.rnti = new_rnti;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::rem_user(uint16_t rnti)
|
|
|
|
{
|
|
|
|
// Free from TEID map
|
|
|
|
free_teidin(rnti);
|
|
|
|
|
|
|
|
// Remove user from RNTI map
|
|
|
|
rnti_bearers.erase(rnti);
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::handle_gtpu_s1u_rx_packet(srslte::unique_byte_buffer_t pdu, const sockaddr_in& addr)
|
|
|
|
{
|
|
|
|
logger.debug("Received %d bytes from S1-U interface", pdu->N_bytes);
|
|
|
|
pdu->set_timestamp();
|
|
|
|
|
|
|
|
gtpu_header_t header;
|
|
|
|
if (not gtpu_read_header(pdu.get(), &header, gtpu_log)) {
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (header.teid != 0 && teidin_to_rntilcid_map.count(header.teid) == 0) {
|
|
|
|
// Received G-PDU for non-existing and non-zero TEID.
|
|
|
|
// Sending GTP-U error indication
|
|
|
|
error_indication(addr.sin_addr.s_addr, addr.sin_port, header.teid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
switch (header.message_type) {
|
|
|
|
case GTPU_MSG_ECHO_REQUEST:
|
|
|
|
// Echo request - send response
|
|
|
|
echo_response(addr.sin_addr.s_addr, addr.sin_port, header.seq_number);
|
|
|
|
break;
|
|
|
|
case GTPU_MSG_DATA_PDU: {
|
|
|
|
rnti_lcid_t rnti_lcid = teidin_to_rntilcid(header.teid);
|
|
|
|
uint16_t rnti = rnti_lcid.rnti;
|
|
|
|
uint16_t lcid = rnti_lcid.lcid;
|
|
|
|
|
|
|
|
bool user_exists = (rnti_bearers.count(rnti) > 0);
|
|
|
|
|
|
|
|
if (not user_exists) {
|
|
|
|
logger.error("Unrecognized TEID In=%d for DL PDU. Dropping packet", header.teid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (lcid < SRSENB_N_SRB || lcid >= SRSENB_N_RADIO_BEARERS) {
|
|
|
|
logger.error("Invalid LCID for DL PDU: %d - dropping packet", lcid);
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
logger.info(pdu->msg, pdu->N_bytes, "RX GTPU PDU rnti=0x%x, lcid=%d, n_bytes=%d", rnti, lcid, pdu->N_bytes);
|
|
|
|
|
|
|
|
struct iphdr* ip_pkt = (struct iphdr*)pdu->msg;
|
|
|
|
if (ip_pkt->version != 4 && ip_pkt->version != 6) {
|
|
|
|
logger.error("Invalid IP version to SPGW");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (ip_pkt->version == 4) {
|
|
|
|
if (ntohs(ip_pkt->tot_len) != pdu->N_bytes) {
|
|
|
|
logger.error("IP Len and PDU N_bytes mismatch");
|
|
|
|
}
|
|
|
|
logger.debug("Rx S1-U PDU -- IP version %d, Total length %d", int(ip_pkt->version), ntohs(ip_pkt->tot_len));
|
|
|
|
logger.debug("Rx S1-U PDU -- IP src addr %s", srslte::gtpu_ntoa(ip_pkt->saddr).c_str());
|
|
|
|
logger.debug("Rx S1-U PDU -- IP dst addr %s", srslte::gtpu_ntoa(ip_pkt->daddr).c_str());
|
|
|
|
}
|
|
|
|
pdcp->write_sdu(rnti, lcid, std::move(pdu));
|
|
|
|
} break;
|
|
|
|
case GTPU_MSG_END_MARKER: {
|
|
|
|
rnti_lcid_t rnti_lcid = teidin_to_rntilcid(header.teid);
|
|
|
|
uint16_t rnti = rnti_lcid.rnti;
|
|
|
|
logger.info("Received GTPU End Marker for rnti=0x%x.", rnti);
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::handle_gtpu_m1u_rx_packet(srslte::unique_byte_buffer_t pdu, const sockaddr_in& addr)
|
|
|
|
{
|
|
|
|
m1u.handle_rx_packet(std::move(pdu), addr);
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* GTP-U Error Indication
|
|
|
|
***************************************************************************/
|
|
|
|
void gtpu::error_indication(in_addr_t addr, in_port_t port, uint32_t err_teid)
|
|
|
|
{
|
|
|
|
logger.info("TX GTPU Error Indication. Seq: %d, Error TEID: %d", tx_seq, err_teid);
|
|
|
|
|
|
|
|
gtpu_header_t header = {};
|
|
|
|
unique_byte_buffer_t pdu = allocate_unique_buffer(*pool);
|
|
|
|
|
|
|
|
// header
|
|
|
|
header.flags = GTPU_FLAGS_VERSION_V1 | GTPU_FLAGS_GTP_PROTOCOL | GTPU_FLAGS_SEQUENCE;
|
|
|
|
header.message_type = GTPU_MSG_ERROR_INDICATION;
|
|
|
|
header.teid = err_teid;
|
|
|
|
header.length = 4;
|
|
|
|
header.seq_number = tx_seq;
|
|
|
|
header.n_pdu = 0;
|
|
|
|
header.next_ext_hdr_type = 0;
|
|
|
|
|
|
|
|
gtpu_write_header(&header, pdu.get(), gtpu_log);
|
|
|
|
|
|
|
|
struct sockaddr_in servaddr;
|
|
|
|
servaddr.sin_family = AF_INET;
|
|
|
|
servaddr.sin_addr.s_addr = addr;
|
|
|
|
servaddr.sin_port = port;
|
|
|
|
|
|
|
|
sendto(fd, pdu->msg, 12, MSG_EOR, (struct sockaddr*)&servaddr, sizeof(struct sockaddr_in));
|
|
|
|
tx_seq++;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* GTP-U Echo Request/Response
|
|
|
|
***************************************************************************/
|
|
|
|
void gtpu::echo_response(in_addr_t addr, in_port_t port, uint16_t seq)
|
|
|
|
{
|
|
|
|
logger.info("TX GTPU Echo Response, Seq: %d", seq);
|
|
|
|
|
|
|
|
gtpu_header_t header = {};
|
|
|
|
unique_byte_buffer_t pdu = allocate_unique_buffer(*pool);
|
|
|
|
|
|
|
|
// header
|
|
|
|
header.flags = GTPU_FLAGS_VERSION_V1 | GTPU_FLAGS_GTP_PROTOCOL | GTPU_FLAGS_SEQUENCE;
|
|
|
|
header.message_type = GTPU_MSG_ECHO_RESPONSE;
|
|
|
|
header.teid = 0;
|
|
|
|
header.length = 4;
|
|
|
|
header.seq_number = seq;
|
|
|
|
header.n_pdu = 0;
|
|
|
|
header.next_ext_hdr_type = 0;
|
|
|
|
|
|
|
|
gtpu_write_header(&header, pdu.get(), gtpu_log);
|
|
|
|
|
|
|
|
struct sockaddr_in servaddr;
|
|
|
|
servaddr.sin_family = AF_INET;
|
|
|
|
servaddr.sin_addr.s_addr = addr;
|
|
|
|
servaddr.sin_port = port;
|
|
|
|
|
|
|
|
sendto(fd, pdu->msg, 12, MSG_EOR, (struct sockaddr*)&servaddr, sizeof(struct sockaddr_in));
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* TEID to RNTI/LCID helper functions
|
|
|
|
***************************************************************************/
|
|
|
|
uint32_t gtpu::allocate_teidin(uint16_t rnti, uint16_t lcid)
|
|
|
|
{
|
|
|
|
uint32_t teid_in = ++next_teid_in;
|
|
|
|
if (teidin_to_rntilcid_map.count(teid_in) != 0) {
|
|
|
|
logger.error("TEID In already exists");
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
rnti_lcid_t rnti_lcid = {rnti, lcid};
|
|
|
|
teidin_to_rntilcid_map[teid_in] = rnti_lcid;
|
|
|
|
logger.debug("TEID In=%d added", teid_in);
|
|
|
|
return teid_in;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::free_teidin(uint16_t rnti, uint16_t lcid)
|
|
|
|
{
|
|
|
|
for (std::map<uint32_t, rnti_lcid_t>::iterator it = teidin_to_rntilcid_map.begin();
|
|
|
|
it != teidin_to_rntilcid_map.end();) {
|
|
|
|
if (it->second.rnti == rnti && it->second.lcid == lcid) {
|
|
|
|
logger.debug("TEID In=%d erased", it->first);
|
|
|
|
it = teidin_to_rntilcid_map.erase(it);
|
|
|
|
} else {
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::free_teidin(uint16_t rnti)
|
|
|
|
{
|
|
|
|
for (std::map<uint32_t, rnti_lcid_t>::iterator it = teidin_to_rntilcid_map.begin();
|
|
|
|
it != teidin_to_rntilcid_map.end();) {
|
|
|
|
if (it->second.rnti == rnti) {
|
|
|
|
logger.debug("TEID In=%d erased", it->first);
|
|
|
|
it = teidin_to_rntilcid_map.erase(it);
|
|
|
|
} else {
|
|
|
|
it++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
gtpu::rnti_lcid_t gtpu::teidin_to_rntilcid(uint32_t teidin)
|
|
|
|
{
|
|
|
|
rnti_lcid_t rnti_lcid = {};
|
|
|
|
if (teidin_to_rntilcid_map.count(teidin) == 0) {
|
|
|
|
logger.error("TEID=%d In does not exist.", teidin);
|
|
|
|
return rnti_lcid;
|
|
|
|
}
|
|
|
|
rnti_lcid.rnti = teidin_to_rntilcid_map[teidin].rnti;
|
|
|
|
rnti_lcid.lcid = teidin_to_rntilcid_map[teidin].lcid;
|
|
|
|
return rnti_lcid;
|
|
|
|
}
|
|
|
|
|
|
|
|
uint32_t gtpu::rntilcid_to_teidin(uint16_t rnti, uint16_t lcid)
|
|
|
|
{
|
|
|
|
uint32_t teidin = 0;
|
|
|
|
for (const std::pair<const uint32_t, rnti_lcid_t>& item : teidin_to_rntilcid_map) {
|
|
|
|
if (item.second.rnti == rnti and item.second.lcid == lcid) {
|
|
|
|
teidin = item.first;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (teidin == 0) {
|
|
|
|
logger.error("Could not find TEID. RNTI=0x%x, LCID=%d.", rnti, lcid);
|
|
|
|
}
|
|
|
|
return teidin;
|
|
|
|
}
|
|
|
|
|
|
|
|
/****************************************************************************
|
|
|
|
* Class to handle MCH packet handling
|
|
|
|
***************************************************************************/
|
|
|
|
|
|
|
|
gtpu::m1u_handler::~m1u_handler()
|
|
|
|
{
|
|
|
|
if (initiated) {
|
|
|
|
close(m1u_sd);
|
|
|
|
initiated = false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
bool gtpu::m1u_handler::init(std::string m1u_multiaddr_, std::string m1u_if_addr_)
|
|
|
|
{
|
|
|
|
m1u_multiaddr = std::move(m1u_multiaddr_);
|
|
|
|
m1u_if_addr = std::move(m1u_if_addr_);
|
|
|
|
pdcp = parent->pdcp;
|
|
|
|
gtpu_log = parent->gtpu_log;
|
|
|
|
|
|
|
|
// Set up sink socket
|
|
|
|
struct sockaddr_in bindaddr = {};
|
|
|
|
m1u_sd = socket(AF_INET, SOCK_DGRAM, 0);
|
|
|
|
if (m1u_sd < 0) {
|
|
|
|
logger.error("Failed to create M1-U sink socket");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Bind socket */
|
|
|
|
bindaddr.sin_family = AF_INET;
|
|
|
|
bindaddr.sin_addr.s_addr = htonl(INADDR_ANY); // Multicast sockets require bind to INADDR_ANY
|
|
|
|
bindaddr.sin_port = htons(GTPU_PORT + 1);
|
|
|
|
if (bind(m1u_sd, (struct sockaddr*)&bindaddr, sizeof(bindaddr)) < 0) {
|
|
|
|
logger.error("Failed to bind multicast socket");
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Send an ADD MEMBERSHIP message via setsockopt */
|
|
|
|
struct ip_mreq mreq {};
|
|
|
|
mreq.imr_multiaddr.s_addr = inet_addr(m1u_multiaddr.c_str()); // Multicast address of the service
|
|
|
|
mreq.imr_interface.s_addr = inet_addr(m1u_if_addr.c_str()); // Address of the IF the socket will listen to.
|
|
|
|
if (setsockopt(m1u_sd, IPPROTO_IP, IP_ADD_MEMBERSHIP, &mreq, sizeof(mreq)) < 0) {
|
|
|
|
logger.error("Register musticast group for M1-U");
|
|
|
|
logger.error("M1-U infterface IP: %s, M1-U Multicast Address %s", m1u_if_addr.c_str(), m1u_multiaddr.c_str());
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
logger.info("M1-U initialized");
|
|
|
|
|
|
|
|
initiated = true;
|
|
|
|
lcid_counter = 1;
|
|
|
|
|
|
|
|
// Register socket in stack rx sockets thread
|
|
|
|
parent->stack->add_gtpu_m1u_socket_handler(m1u_sd);
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void gtpu::m1u_handler::handle_rx_packet(srslte::unique_byte_buffer_t pdu, const sockaddr_in& addr)
|
|
|
|
{
|
|
|
|
logger.debug("Received %d bytes from M1-U interface", pdu->N_bytes);
|
|
|
|
|
|
|
|
gtpu_header_t header;
|
|
|
|
gtpu_read_header(pdu.get(), &header, gtpu_log);
|
|
|
|
pdcp->write_sdu(SRSLTE_MRNTI, lcid_counter, std::move(pdu));
|
|
|
|
}
|
|
|
|
|
|
|
|
} // namespace srsenb
|