srsLTE/srsepc/hdr/spgw/spgw.h

103 lines
3.0 KiB
C
Raw Normal View History

2019-04-26 12:27:38 -07:00
/*
2020-03-13 04:12:52 -07:00
* Copyright 2013-2020 Software Radio Systems Limited
2017-11-13 08:42:41 -08:00
*
* This file is part of srsLTE.
*
* srsLTE 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.
*
* srsLTE 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/.
*
*/
/******************************************************************************
2017-11-17 04:28:05 -08:00
* File: spgw.h
* Description: Top-level SP-GW class. Creates and links all
2017-11-13 08:42:41 -08:00
* interfaces and helpers.
*****************************************************************************/
2018-03-31 10:04:04 -07:00
#ifndef SRSEPC_SPGW_H
#define SRSEPC_SPGW_H
2017-11-13 08:42:41 -08:00
#include "srslte/asn1/gtpc.h"
#include "srslte/common/buffer_pool.h"
2017-11-13 08:42:41 -08:00
#include "srslte/common/log_filter.h"
#include "srslte/common/logger_file.h"
2020-03-25 07:57:29 -07:00
#include "srslte/common/logmap.h"
2017-11-13 08:42:41 -08:00
#include "srslte/common/threads.h"
#include <cstddef>
#include <queue>
2017-11-13 08:42:41 -08:00
2019-03-19 06:53:58 -07:00
namespace srsepc {
2017-11-13 08:42:41 -08:00
class mme_gtpc;
2017-11-20 04:30:25 -08:00
const uint16_t GTPU_RX_PORT = 2152;
2017-11-13 08:42:41 -08:00
typedef struct {
2017-11-20 04:30:25 -08:00
std::string gtpu_bind_addr;
std::string sgi_if_addr;
std::string sgi_if_name;
uint32_t max_paging_queue;
2017-11-17 04:28:05 -08:00
} spgw_args_t;
2017-11-13 08:42:41 -08:00
typedef struct spgw_tunnel_ctx {
uint64_t imsi;
in_addr_t ue_ipv4;
uint8_t ebi;
srslte::gtp_fteid_t up_ctrl_fteid;
srslte::gtp_fteid_t up_user_fteid;
srslte::gtp_fteid_t dw_ctrl_fteid;
srslte::gtp_fteid_t dw_user_fteid;
bool paging_pending;
std::queue<srslte::byte_buffer_t*> paging_queue;
} spgw_tunnel_ctx_t;
class spgw : public srslte::thread
2017-11-13 08:42:41 -08:00
{
class gtpc;
class gtpu;
2017-11-13 08:42:41 -08:00
public:
2017-11-17 04:28:05 -08:00
static spgw* get_instance(void);
2019-03-19 06:53:58 -07:00
static void cleanup(void);
int init(spgw_args_t* args,
2020-03-25 07:57:29 -07:00
srslte::log_ref gtpu_log,
srslte::log_filter* gtpc_log,
srslte::log_filter* spgw_log,
const std::map<std::string, uint64_t>& ip_to_imsi);
void stop();
void run_thread();
2017-11-13 08:42:41 -08:00
private:
2017-11-17 04:28:05 -08:00
spgw();
virtual ~spgw();
2019-03-19 06:53:58 -07:00
static spgw* m_instance;
2017-11-13 08:42:41 -08:00
2019-03-19 06:53:58 -07:00
spgw_tunnel_ctx_t* create_gtp_ctx(struct srslte::gtpc_create_session_request* cs_req);
bool delete_gtp_ctx(uint32_t ctrl_teid);
2019-03-19 06:53:58 -07:00
bool m_running;
srslte::byte_buffer_pool* m_pool;
mme_gtpc* m_mme_gtpc;
2017-11-13 08:42:41 -08:00
// GTP-C and GTP-U handlers
gtpc* m_gtpc;
gtpu* m_gtpu;
// Logs
2019-03-19 06:53:58 -07:00
srslte::log_filter* m_spgw_log;
2017-11-13 08:42:41 -08:00
};
} // namespace srsepc
2018-03-31 10:04:04 -07:00
#endif // SRSEPC_SPGW_H