open5gs/src/mme/mme_context.h

457 lines
16 KiB
C
Raw Normal View History

2017-04-06 11:10:00 +00:00
#ifndef __MME_CONTEXT__
#define __MME_CONTEXT__
2017-02-06 06:30:12 +00:00
#include "core_list.h"
2017-04-10 14:59:59 +00:00
#include "core_index.h"
2017-02-06 10:12:10 +00:00
#include "core_errno.h"
2017-02-13 04:19:53 +00:00
#include "core_net.h"
2017-03-06 12:45:41 +00:00
#include "core_sha2.h"
2017-04-06 12:44:30 +00:00
#include "core_hash.h"
2017-02-13 04:19:53 +00:00
2017-07-13 01:31:07 +00:00
#include "types.h"
#include "nas_message.h"
2017-03-28 07:35:57 +00:00
#include "gtp_xact.h"
#include "s6a_message.h"
2017-03-26 15:48:33 +00:00
2017-04-04 01:49:19 +00:00
#include "mme_sm.h"
2017-02-06 06:30:12 +00:00
/* S1AP */
#include "S1ap-Cause.h"
2017-02-06 06:30:12 +00:00
#ifdef __cplusplus
extern "C" {
#endif /* __cplusplus */
#define MAX_PLMN_ID 6
#define GRP_PER_MME 256 /* According to spec it is 65535 */
2017-03-05 04:03:11 +00:00
#define CODE_PER_MME 256 /* According to spec it is 256 */
2017-02-13 04:19:53 +00:00
2017-07-14 15:27:22 +00:00
#define MAX_NUM_OF_SERVED_TAI 16
#define MAX_NUM_OF_SERVED_GUMMEI 8
2017-07-14 11:46:15 +00:00
#define MAX_NUM_OF_ALGORITHM 8
#define MAX_NUM_OF_TAC 256
#define MAX_NUM_OF_BPLMN 6
typedef struct _enb_ue_t enb_ue_t;
typedef struct _mme_ue_t mme_ue_t;
typedef gtp_node_t mme_sgw_t;
2017-02-06 06:30:12 +00:00
typedef struct _served_gummei {
2017-02-06 10:12:10 +00:00
c_uint32_t num_of_plmn_id;
2017-03-24 14:01:44 +00:00
plmn_id_t plmn_id[MAX_PLMN_ID];
2017-02-06 06:30:12 +00:00
2017-02-13 05:41:20 +00:00
c_uint32_t num_of_mme_gid;
c_uint16_t mme_gid[GRP_PER_MME];
c_uint32_t num_of_mme_code;
c_uint8_t mme_code[CODE_PER_MME];
2017-07-14 13:03:10 +00:00
} served_gummei_t;
2017-02-06 06:30:12 +00:00
2017-04-06 11:10:00 +00:00
typedef struct _mme_context_t {
2017-08-17 05:15:08 +00:00
char *fd_conf_path; /* MME freeDiameter conf path */
c_uint32_t s1ap_addr; /* MME S1AP local address */
c_uint16_t s1ap_port; /* MME S1AP local port */
net_sock_t *s1ap_sock; /* MME S1AP local listen socket */
c_uint32_t s11_addr; /* MME S11 local address */
c_uint16_t s11_port; /* MME S11 local port */
net_sock_t *s11_sock; /* MME S11 local listen socket */
2017-02-13 04:19:53 +00:00
2017-08-28 12:47:32 +00:00
c_uint32_t s5c_addr; /* PGW S5C remote address */
c_uint16_t s5c_port; /* PGW S5C remote port */
2017-08-28 12:47:32 +00:00
2017-03-28 07:35:57 +00:00
msgq_id queue_id; /* Queue for processing MME control plane */
tm_service_t tm_service; /* Timer Service */
2017-03-06 08:55:50 +00:00
2017-07-23 03:25:01 +00:00
/* Generator for unique identification */
2017-08-17 05:15:08 +00:00
c_uint32_t mme_ue_s1ap_id; /* mme_ue_s1ap_id generator */
c_uint32_t m_tmsi; /* m_tmsi generator */
2017-02-13 04:19:53 +00:00
2017-03-07 00:30:12 +00:00
/* defined in 'nas_ies.h'
* #define NAS_SECURITY_ALGORITHMS_EIA0 0
* #define NAS_SECURITY_ALGORITHMS_128_EEA1 1
* #define NAS_SECURITY_ALGORITHMS_128_EEA2 2
* #define NAS_SECURITY_ALGORITHMS_128_EEA3 3 */
2017-07-14 11:46:15 +00:00
c_uint8_t num_of_ciphering_order;
c_uint8_t ciphering_order[MAX_NUM_OF_ALGORITHM];
2017-03-07 05:47:17 +00:00
/* defined in 'nas_ies.h'
* #define NAS_SECURITY_ALGORITHMS_EIA0 0
* #define NAS_SECURITY_ALGORITHMS_128_EIA1 1
* #define NAS_SECURITY_ALGORITHMS_128_EIA1 2
* #define NAS_SECURITY_ALGORITHMS_128_EIA3 3 */
2017-07-14 11:46:15 +00:00
c_uint8_t num_of_integrity_order;
c_uint8_t integrity_order[MAX_NUM_OF_ALGORITHM];
2017-03-07 00:30:12 +00:00
2017-02-14 00:09:01 +00:00
/* S1SetupRequest */
2017-07-14 15:27:22 +00:00
c_uint8_t max_num_of_served_tai;
tai_t served_tai[MAX_NUM_OF_SERVED_TAI];
2017-02-14 00:09:01 +00:00
/* S1SetupResponse */
2017-07-14 13:03:10 +00:00
c_uint8_t max_num_of_served_gummei;
served_gummei_t served_gummei[MAX_NUM_OF_SERVED_GUMMEI];
2017-02-13 04:19:53 +00:00
c_uint8_t relative_capacity;
2017-04-06 11:58:13 +00:00
2017-08-17 05:15:08 +00:00
/* Timer value */
2017-08-07 22:58:13 +00:00
c_uint32_t t3413_value; /* Paging retry timer */
list_t sgw_list; /* SGW GTP Node List */
list_t enb_list; /* eNB S1AP Node List */
2017-04-06 12:44:30 +00:00
2017-08-17 05:15:08 +00:00
hash_t *mme_ue_s1ap_id_hash; /* hash table for MME-UE-S1AP-ID */
hash_t *imsi_ue_hash; /* hash table (IMSI : MME_UE) */
hash_t *guti_ue_hash; /* hash table (GUTI : MME_UE) */
2017-04-06 11:10:00 +00:00
} mme_context_t;
2017-02-06 06:30:12 +00:00
2017-04-06 11:10:00 +00:00
typedef struct _mme_enb_t {
2017-08-17 05:15:08 +00:00
lnode_t node; /* A node of list_t */
index_t index; /* An index of this node */
fsm_t sm; /* A state machine */
2017-02-13 04:19:53 +00:00
2017-08-17 05:15:08 +00:00
c_uint32_t enb_id; /* eNB_ID received from eNB */
2017-03-05 04:03:11 +00:00
net_sock_t *s1ap_sock;
c_uint8_t num_of_tai;
tai_t tai[MAX_NUM_OF_TAC * MAX_NUM_OF_BPLMN];
list_t enb_ue_list;
2017-02-13 04:19:53 +00:00
2017-04-06 11:10:00 +00:00
} mme_enb_t;
2017-02-13 04:19:53 +00:00
struct _enb_ue_t {
2017-08-17 05:15:08 +00:00
lnode_t node; /* A node of list_t */
index_t index; /* An index of this node */
fsm_t sm; /* A state machine */
/* UE identity */
2017-08-17 05:15:08 +00:00
c_uint32_t enb_ue_s1ap_id; /* eNB-UE-S1AP-ID received from eNB */
c_uint32_t mme_ue_s1ap_id; /* MME-UE-S1AP-ID received from MME */
/* UE Info */
tai_t tai;
e_cgi_t e_cgi;
/* mme_ue_context */
mme_ue_t *mme_ue;
/* Connected enodeB */
mme_enb_t *enb;
};
struct _mme_ue_t {
2017-08-17 05:15:08 +00:00
lnode_t node; /* A node of list_t */
index_t index; /* An index of this node */
fsm_t sm; /* A state machine */
2017-03-06 08:55:50 +00:00
2017-09-08 07:46:37 +00:00
struct {
#define MME_UE_EPS_ATTACH_TYPE 1
#define MME_UE_EPS_UPDATE_TYPE 2
c_uint8_t type;
union {
nas_eps_attach_type_t attach;
nas_eps_update_type_t update;
};
} nas_eps;
2017-03-07 00:30:12 +00:00
/* UE identity */
2017-09-03 15:06:39 +00:00
#define MME_UE_HAVE_IMSI(__mME) \
((__mME) && ((__mME)->imsi_len))
2017-04-09 15:27:19 +00:00
c_uint8_t imsi[MAX_IMSI_LEN];
2017-04-10 02:29:46 +00:00
int imsi_len;
c_int8_t imsi_bcd[MAX_IMSI_BCD_LEN+1];
guti_t guti;
2017-02-13 04:19:53 +00:00
2017-09-01 12:35:45 +00:00
/* IMPORTANT!
* MME-S11-TEID is same with an index */
c_uint32_t mme_s11_teid;
c_uint32_t mme_s11_addr;
c_uint32_t sgw_s11_teid;
c_uint32_t sgw_s11_addr;
2017-04-09 11:51:26 +00:00
/* UE Info */
2017-04-11 11:44:38 +00:00
tai_t tai;
e_cgi_t e_cgi;
2017-04-09 11:51:26 +00:00
plmn_id_t visited_plmn_id;
2017-09-03 15:06:39 +00:00
#define SECURITY_CONTEXT_IS_VALID(__mME) \
((__mME) && \
((__mME)->security_context_available == 1) && ((__mME)->mac_failed == 0))
#define CLEAR_SECURITY_CONTEXT(__mME) \
do { \
2017-09-03 15:06:39 +00:00
d_assert((__mME), break, "Null param"); \
(__mME)->security_context_available = 0; \
(__mME)->mac_failed = 0; \
} while(0)
2017-03-08 14:42:27 +00:00
int security_context_available;
int mac_failed;
/* Security Context */
2017-03-07 05:47:17 +00:00
nas_ue_network_capability_t ue_network_capability;
nas_ms_network_capability_t ms_network_capability;
2017-03-06 08:55:50 +00:00
c_uint8_t xres[MAX_RES_LEN];
c_uint8_t xres_len;
2017-03-06 12:45:41 +00:00
c_uint8_t kasme[SHA256_DIGEST_SIZE];
2017-03-07 00:30:12 +00:00
c_uint8_t knas_int[SHA256_DIGEST_SIZE/2];
c_uint8_t knas_enc[SHA256_DIGEST_SIZE/2];
2017-04-13 12:05:30 +00:00
c_uint8_t kenb[SHA256_DIGEST_SIZE];
2017-03-08 10:10:01 +00:00
c_uint32_t dl_count;
2017-03-08 15:09:30 +00:00
union {
struct {
ED3(c_uint8_t spare;,
c_uint16_t overflow;,
c_uint8_t sqn;)
} __attribute__ ((packed));
c_uint32_t i32;
} ul_count;
2017-03-05 08:36:16 +00:00
2017-07-14 12:39:21 +00:00
/* defined in 'nas_ies.h'
* #define NAS_SECURITY_ALGORITHMS_EIA0 0
* #define NAS_SECURITY_ALGORITHMS_128_EEA1 1
* #define NAS_SECURITY_ALGORITHMS_128_EEA2 2
* #define NAS_SECURITY_ALGORITHMS_128_EEA3 3 */
c_uint8_t selected_enc_algorithm;
/* defined in 'nas_ies.h'
* #define NAS_SECURITY_ALGORITHMS_EIA0 0
* #define NAS_SECURITY_ALGORITHMS_128_EIA1 1
* #define NAS_SECURITY_ALGORITHMS_128_EIA1 2
* #define NAS_SECURITY_ALGORITHMS_128_EIA3 3 */
c_uint8_t selected_int_algorithm;
2017-04-10 12:05:28 +00:00
/* HSS Info */
s6a_subscription_data_t subscription_data;
2017-04-10 12:05:28 +00:00
2017-04-27 14:06:10 +00:00
/* ESM Info */
#define MIN_EPS_BEARER_ID 5
#define MAX_EPS_BEARER_ID 15
2017-09-03 15:06:39 +00:00
#define CLEAR_EPS_BEARER_ID(__mME) \
do { \
2017-09-03 15:06:39 +00:00
d_assert((__mME), break, "Null param"); \
(__mME)->ebi = MIN_EPS_BEARER_ID - 1; \
} while(0)
2017-08-23 05:25:43 +00:00
c_uint8_t ebi; /* EPS Bearer ID generator */
2017-04-27 14:06:10 +00:00
list_t sess_list;
2017-07-26 08:55:53 +00:00
/* eNB UE context */
enb_ue_t *enb_ue;
2017-07-26 08:55:53 +00:00
/* Save PDN Connectivity Request */
nas_esm_message_container_t pdn_connectivity_request;
2017-08-07 22:58:13 +00:00
/* Paging */
2017-09-08 07:46:37 +00:00
#define CLEAR_PAGING_INFO(__mME) \
do { \
d_assert((__mME), break, "Null param"); \
\
tm_stop((__mME)->t3413); \
if ((__mME)->last_paging_msg) \
{ \
pkbuf_free((__mME)->last_paging_msg); \
(__mME)->last_paging_msg = NULL; \
} \
(__mME)->max_paging_retry = 0; \
} while(0);
2017-08-07 22:58:13 +00:00
pkbuf_t *last_paging_msg;
tm_block_id t3413;
#define MAX_NUM_OF_PAGING 2
c_uint32_t max_paging_retry;
/* UE Radio Capability */
void *radio_capa;
2017-09-03 15:06:39 +00:00
/* Detach Request */
nas_detach_type_t detach_type;
/* Modify Bearer Request/Response */
struct {
#define MODIFY_BEARER_BY_EPS_ATTACH 1
#define MODIFY_BEARER_BY_EPS_UPDATE 2
#define MODIFY_BEARER_BY_E_RAB_SETUP 3
#define MODIFY_BEARER_BY_PATH_SWITCH_REQUEST 4
c_uint8_t type;
#define MODIFY_BEARER_TRANSACTION_BEGIN(__mME, __tYPE) \
do { \
d_assert((__mME), break,); \
d_assert(\
((__mME)->modify_bearer.counter.request) == \
((__mME)->modify_bearer.counter.response), break,); \
(__mME)->modify_bearer.type = (__tYPE); \
} while(0);
#define MODIFY_BEARER_TRANSACTION_END(__mME) \
(__mME) && \
((__mME)->modify_bearer.counter.request) == \
((__mME)->modify_bearer.counter.response)
struct {
c_uint64_t request;
c_uint64_t response;
} counter;
} modify_bearer;
};
2017-04-27 14:06:10 +00:00
2017-09-05 03:37:27 +00:00
#define MME_HAVE_SGW_S1U_PATH(__sESS) \
((__sESS) && (mme_bearer_first(__sESS)) && \
((mme_default_bearer_in_sess(__sESS)->sgw_s1u_teid) && \
(mme_default_bearer_in_sess(__sESS)->sgw_s1u_addr)))
2017-09-05 03:37:27 +00:00
#define MME_HAVE_SGW_S11_PATH(__mME) \
((__mME) && ((__mME)->sgw_s11_teid) && ((__mME)->sgw_s11_addr))
#define CLEAR_SGW_S11_PATH(__mME) \
do { \
d_assert((__mME), break, "Null param"); \
(__mME)->sgw_s11_teid = 0; \
(__mME)->sgw_s11_addr = 0; \
} while(0)
2017-04-27 14:06:10 +00:00
typedef struct _mme_sess_t {
2017-08-17 05:15:08 +00:00
lnode_t node; /* A node of list_t */
index_t index; /* An index of this node */
2017-04-27 14:06:10 +00:00
2017-09-07 12:28:12 +00:00
c_uint8_t pti; /* Procedure Trasaction Identity */
2017-04-27 14:06:10 +00:00
/* mme_bearer_first(sess) : Default Bearer Context */
2017-04-13 10:15:53 +00:00
list_t bearer_list;
2017-04-10 12:05:28 +00:00
2017-04-28 03:39:14 +00:00
/* Related Context */
2017-09-05 03:37:27 +00:00
#define CONNECT_SGW_GTP_NODE(__sESS) \
do { \
2017-09-08 07:46:37 +00:00
d_assert((__sESS), break, "Null param"); \
2017-09-03 15:06:39 +00:00
(__sESS)->sgw = mme_sgw_next((__sESS)->sgw); \
if (!(__sESS)->sgw) (__sESS)->sgw = mme_sgw_first(); \
2017-09-08 07:46:37 +00:00
d_assert((__sESS)->sgw, break, "Null param"); \
} while(0)
2017-08-11 06:21:03 +00:00
mme_sgw_t *sgw;
mme_ue_t *mme_ue;
2017-08-11 11:25:52 +00:00
2017-09-03 15:06:39 +00:00
#define MME_UE_HAVE_APN(__mME) \
((__mME) && (mme_sess_first(__mME)) && \
((mme_sess_first(__mME))->pdn))
2017-09-05 03:37:27 +00:00
#define MME_GET_PGW_IPV4_ADDR(__sESS) \
2017-09-03 15:06:39 +00:00
(((__sESS) && ((__sESS)->pdn) && (((__sESS)->pdn)->pgw.ipv4_addr)) ? \
(((__sESS)->pdn)->pgw.ipv4_addr) : (mme_self()->s5c_addr))
2017-08-11 11:25:52 +00:00
pdn_t *pdn;
/* Save Protocol Configuration Options from UE */
struct {
c_uint8_t length;
c_uint8_t *buffer;
} ue_pco;
/* Save Protocol Configuration Options from PGW */
tlv_octet_t pgw_pco;
2017-04-27 14:06:10 +00:00
} mme_sess_t;
2017-04-06 11:10:00 +00:00
2017-09-05 03:37:27 +00:00
#define MME_HAVE_ENB_S1U_PATH(__bEARER) \
((__bEARER) && ((__bEARER)->enb_s1u_teid) && ((__bEARER)->enb_s1u_addr))
2017-04-13 10:15:53 +00:00
typedef struct _mme_bearer_t {
2017-08-17 05:15:08 +00:00
lnode_t node; /* A node of list_t */
index_t index; /* An index of this node */
fsm_t sm; /* State Machine */
2017-04-11 14:55:21 +00:00
c_uint8_t ebi; /* EPS Bearer ID */
2017-04-12 12:20:00 +00:00
c_uint32_t enb_s1u_teid;
c_uint32_t enb_s1u_addr;
c_uint32_t sgw_s1u_teid;
c_uint32_t sgw_s1u_addr;
2017-04-11 10:14:18 +00:00
qos_t qos;
tlv_octet_t tft; /* Saved TFT */
2017-04-28 03:39:14 +00:00
/* Related Context */
mme_ue_t *mme_ue;
2017-04-27 14:06:10 +00:00
mme_sess_t *sess;
gtp_xact_t *xact;
2017-04-13 10:15:53 +00:00
} mme_bearer_t;
2017-04-08 01:18:48 +00:00
2017-04-06 11:10:00 +00:00
CORE_DECLARE(status_t) mme_context_init(void);
CORE_DECLARE(status_t) mme_context_final(void);
CORE_DECLARE(mme_context_t*) mme_self(void);
2017-07-30 13:29:27 +00:00
CORE_DECLARE(status_t) mme_context_parse_config(void);
2017-07-31 13:35:25 +00:00
CORE_DECLARE(status_t) mme_context_setup_trace_module(void);
2017-07-30 13:29:27 +00:00
2017-04-06 11:10:00 +00:00
CORE_DECLARE(mme_sgw_t*) mme_sgw_add(void);
CORE_DECLARE(status_t) mme_sgw_remove(mme_sgw_t *sgw);
CORE_DECLARE(status_t) mme_sgw_remove_all(void);
2017-09-01 16:48:09 +00:00
CORE_DECLARE(mme_sgw_t*) mme_sgw_find(c_uint32_t addr, c_uint16_t port);
2017-04-06 11:10:00 +00:00
CORE_DECLARE(mme_sgw_t*) mme_sgw_first(void);
CORE_DECLARE(mme_sgw_t*) mme_sgw_next(mme_sgw_t *sgw);
2017-04-08 01:45:48 +00:00
CORE_DECLARE(mme_enb_t*) mme_enb_add(net_sock_t *s1ap_sock);
2017-04-06 11:10:00 +00:00
CORE_DECLARE(status_t) mme_enb_remove(mme_enb_t *enb);
CORE_DECLARE(status_t) mme_enb_remove_all(void);
2017-04-11 00:19:33 +00:00
CORE_DECLARE(mme_enb_t*) mme_enb_find(index_t index);
2017-04-06 11:10:00 +00:00
CORE_DECLARE(mme_enb_t*) mme_enb_find_by_sock(net_sock_t *sock);
CORE_DECLARE(mme_enb_t*) mme_enb_find_by_enb_id(c_uint32_t enb_id);
CORE_DECLARE(mme_enb_t*) mme_enb_first(void);
CORE_DECLARE(mme_enb_t*) mme_enb_next(mme_enb_t *enb);
CORE_DECLARE(mme_ue_t*) mme_ue_add(enb_ue_t *enb_ue);
CORE_DECLARE(status_t) mme_ue_remove(mme_ue_t *mme_ue);
2017-04-06 12:44:30 +00:00
CORE_DECLARE(status_t) mme_ue_remove_all();
2017-07-23 03:25:01 +00:00
2017-04-10 14:59:59 +00:00
CORE_DECLARE(mme_ue_t*) mme_ue_find(index_t index);
2017-07-23 03:25:01 +00:00
CORE_DECLARE(mme_ue_t*) mme_ue_find_by_imsi(c_uint8_t *imsi, int imsi_len);
CORE_DECLARE(mme_ue_t*) mme_ue_find_by_imsi_bcd(c_int8_t *imsi_bcd);
2017-07-23 03:25:01 +00:00
CORE_DECLARE(mme_ue_t*) mme_ue_find_by_guti(guti_t *guti);
2017-09-01 12:35:45 +00:00
CORE_DECLARE(mme_ue_t*) mme_ue_find_by_teid(c_uint32_t teid);
2017-07-23 03:25:01 +00:00
2017-07-28 05:06:40 +00:00
CORE_DECLARE(mme_ue_t*) mme_ue_find_by_message(nas_message_t *message);
CORE_DECLARE(status_t) mme_ue_set_imsi(
mme_ue_t *mme_ue, c_int8_t *imsi_bcd);
CORE_DECLARE(status_t) mme_associate_ue_context(
mme_ue_t *mme_ue, enb_ue_t *enb_ue);
2017-04-06 12:44:30 +00:00
CORE_DECLARE(hash_index_t *) mme_ue_first();
CORE_DECLARE(hash_index_t *) mme_ue_next(hash_index_t *hi);
CORE_DECLARE(mme_ue_t *) mme_ue_this(hash_index_t *hi);
2017-07-23 03:25:01 +00:00
CORE_DECLARE(mme_sess_t*) mme_sess_add(mme_ue_t *mme_ue, c_uint8_t pti);
2017-04-27 14:06:10 +00:00
CORE_DECLARE(status_t ) mme_sess_remove(mme_sess_t *sess);
CORE_DECLARE(status_t ) mme_sess_remove_all(mme_ue_t *mme_ue);
2017-04-27 14:06:10 +00:00
CORE_DECLARE(mme_sess_t*) mme_sess_find(index_t index);
CORE_DECLARE(mme_sess_t*) mme_sess_find_by_pti(
mme_ue_t *mme_ue, c_uint8_t pti);
CORE_DECLARE(mme_sess_t*) mme_sess_find_by_ebi(
mme_ue_t *mme_ue, c_uint8_t ebi);
CORE_DECLARE(mme_sess_t*) mme_sess_first(mme_ue_t *mme_ue);
2017-04-27 14:06:10 +00:00
CORE_DECLARE(mme_sess_t*) mme_sess_next(mme_sess_t *sess);
CORE_DECLARE(mme_bearer_t*) mme_bearer_add(mme_sess_t *sess);
2017-04-13 10:15:53 +00:00
CORE_DECLARE(status_t) mme_bearer_remove(mme_bearer_t *bearer);
2017-04-27 14:06:10 +00:00
CORE_DECLARE(status_t) mme_bearer_remove_all(mme_sess_t *sess);
2017-04-13 10:15:53 +00:00
CORE_DECLARE(mme_bearer_t*) mme_bearer_find(index_t index);
CORE_DECLARE(mme_bearer_t*) mme_bearer_find_by_sess_ebi(
mme_sess_t *sess, c_uint8_t ebi);
CORE_DECLARE(mme_bearer_t*) mme_bearer_find_by_ue_ebi(
mme_ue_t *mme_ue, c_uint8_t ebi);
2017-04-27 23:28:04 +00:00
CORE_DECLARE(mme_bearer_t*) mme_default_bearer_in_sess(mme_sess_t *sess);
2017-09-04 15:04:05 +00:00
CORE_DECLARE(mme_bearer_t*) mme_linked_bearer(mme_bearer_t *bearer);
2017-04-27 14:06:10 +00:00
CORE_DECLARE(mme_bearer_t*) mme_bearer_first(mme_sess_t *sess);
2017-04-13 10:15:53 +00:00
CORE_DECLARE(mme_bearer_t*) mme_bearer_next(mme_bearer_t *bearer);
2017-04-08 01:18:48 +00:00
CORE_DECLARE(pdn_t*) mme_pdn_add(mme_ue_t *mme_ue, c_int8_t *apn);
CORE_DECLARE(status_t) mme_pdn_remove_all(mme_ue_t *mme_ue);
CORE_DECLARE(pdn_t*) mme_pdn_find_by_apn(
mme_ue_t *mme_ue, c_int8_t *apn);
2017-04-12 04:45:57 +00:00
CORE_DECLARE(enb_ue_t*) enb_ue_add(mme_enb_t *enb);
CORE_DECLARE(unsigned int) enb_ue_count();
CORE_DECLARE(status_t) enb_ue_remove(enb_ue_t *enb_ue);
CORE_DECLARE(status_t) enb_ue_remove_in_enb(mme_enb_t *enb);
CORE_DECLARE(enb_ue_t*) enb_ue_find(index_t index);
CORE_DECLARE(enb_ue_t*) enb_ue_find_by_enb_ue_s1ap_id(mme_enb_t *enb,
c_uint32_t enb_ue_s1ap_id);
CORE_DECLARE(enb_ue_t*) enb_ue_find_by_mme_ue_s1ap_id(c_uint32_t mme_ue_s1ap_id);
CORE_DECLARE(enb_ue_t*) enb_ue_first_in_enb(mme_enb_t *enb);
CORE_DECLARE(enb_ue_t*) enb_ue_next_in_enb(enb_ue_t *enb_ue);
2017-02-06 06:30:12 +00:00
#ifdef __cplusplus
}
#endif /* __cplusplus */
2017-04-06 11:10:00 +00:00
#endif /* __MME_CONTEXT__ */