Skip to content
Snippets Groups Projects
Commit b79159f8 authored by gauthier's avatar gauthier
Browse files

Added dynamic protocol configuration options IE in NAS ESM message

git-svn-id: http://svn.eurecom.fr/openair4G/trunk@7586 818b1a75-f10b-46b9-bf7c-635c3b92a50f
parent ec69c661
No related branches found
No related tags found
No related merge requests found
Showing
with 231 additions and 128 deletions
...@@ -61,7 +61,7 @@ MME : ...@@ -61,7 +61,7 @@ MME :
# TA (mcc.mnc:tracking area code) DEFAULT = 208.34:0 # TA (mcc.mnc:tracking area code) DEFAULT = 208.34:0
# max values = 999.999:65535 # max values = 999.999:65535
# maximum of 32 values, comma separated # maximum of 32 values, comma separated
PLMN = ( TAI_LIST = (
{MCC="208" ; MNC="95"; TAC = "1"; } # YOUR PLMN CONFIG HERE {MCC="208" ; MNC="95"; TAC = "1"; } # YOUR PLMN CONFIG HERE
); );
}; };
...@@ -124,8 +124,8 @@ P-GW = ...@@ -124,8 +124,8 @@ P-GW =
}; };
#WARNING DNS ARE HARDCODED IN openair-cn/NAS/EURECOM-NAS/src/esm/msg/ActivateDefaultEpsBearerContextRequest.c:305 #WARNING DNS ARE HARDCODED IN openair-cn/NAS/EURECOM-NAS/src/esm/msg/ActivateDefaultEpsBearerContextRequest.c:305
DEFAULT_DNS_1_IPV4_ADDRESS = "192.168.12.100"; # YOUR NETWORK CONFIG HERE DEFAULT_DNS_IPV4_ADDRESS = "192.168.106.12"; # YOUR NETWORK CONFIG HERE
DEFAULT_DNS_2_IPV4_ADDRESS = "192.168.106.12"; # YOUR NETWORK CONFIG HERE DEFAULT_DNS_SEC_IPV4_ADDRESS = "192.168.12.100"; # YOUR NETWORK CONFIG HERE
}; };
...@@ -61,9 +61,8 @@ MME : ...@@ -61,9 +61,8 @@ MME :
# TA (mcc.mnc:tracking area code) DEFAULT = 208.34:0 # TA (mcc.mnc:tracking area code) DEFAULT = 208.34:0
# max values = 999.999:65535 # max values = 999.999:65535
# maximum of 32 values, comma separated # maximum of 32 values, comma separated
PLMN = ( TAI_LIST = (
{MCC="208" ; MNC="95"; TAC = "1"; }, # YOUR PLMN CONFIG HERE {MCC="208" ; MNC="95"; TAC = "1"; } # YOUR PLMN CONFIG HERE
{MCC="208" ; MNC="10"; TAC = "1"; } # YOUR PLMN CONFIG HERE
); );
}; };
...@@ -125,8 +124,8 @@ P-GW = ...@@ -125,8 +124,8 @@ P-GW =
}; };
#WARNING DNS ARE HARDCODED IN openair-cn/NAS/EURECOM-NAS/src/esm/msg/ActivateDefaultEpsBearerContextRequest.c:305 #WARNING DNS ARE HARDCODED IN openair-cn/NAS/EURECOM-NAS/src/esm/msg/ActivateDefaultEpsBearerContextRequest.c:305
DEFAULT_DNS_1_IPV4_ADDRESS = "192.168.12.100"; # YOUR NETWORK CONFIG HERE DEFAULT_DNS_IPV4_ADDRESS = "192.168.106.12"; # YOUR NETWORK CONFIG HERE
DEFAULT_DNS_2_IPV4_ADDRESS = "192.168.106.12"; # YOUR NETWORK CONFIG HERE DEFAULT_DNS_SEC_IPV4_ADDRESS = "192.168.12.100"; # YOUR NETWORK CONFIG HERE
}; };
...@@ -57,6 +57,7 @@ typedef struct { ...@@ -57,6 +57,7 @@ typedef struct {
ebi_t eps_bearer_id; ///< EPS bearer identifier ebi_t eps_bearer_id; ///< EPS bearer identifier
pdn_type_t pdn_type; ///< PDN Type pdn_type_t pdn_type; ///< PDN Type
PAA_t paa; ///< PDN Address Allocation PAA_t paa; ///< PDN Address Allocation
pco_flat_t pco; ///< Protocol configuration options
} SGICreateEndpointResp; } SGICreateEndpointResp;
typedef struct { typedef struct {
......
...@@ -177,6 +177,7 @@ typedef struct nas_pdn_connectivity_req_s { ...@@ -177,6 +177,7 @@ typedef struct nas_pdn_connectivity_req_s {
char imsi[16]; char imsi[16];
uint8_t imsi_length; uint8_t imsi_length;
network_qos_t qos; network_qos_t qos;
pco_flat_t pco;
OctetString apn; OctetString apn;
OctetString pdn_addr; OctetString pdn_addr;
int pdn_type; int pdn_type;
...@@ -189,6 +190,7 @@ typedef struct nas_pdn_connectivity_rsp_s { ...@@ -189,6 +190,7 @@ typedef struct nas_pdn_connectivity_rsp_s {
int pti; // nas ref Identity of the procedure transaction executed to activate the PDN connection entry int pti; // nas ref Identity of the procedure transaction executed to activate the PDN connection entry
unsigned ue_id; // nas ref unsigned ue_id; // nas ref
network_qos_t qos; network_qos_t qos;
pco_flat_t pco;
OctetString apn; OctetString apn;
OctetString pdn_addr; OctetString pdn_addr;
int pdn_type; int pdn_type;
......
...@@ -55,6 +55,10 @@ ...@@ -55,6 +55,10 @@
/** @struct SgwCreateSessionRequest /** @struct SgwCreateSessionRequest
* @brief Create Session Request * @brief Create Session Request
* *
* Spec 3GPP TS 29.274, Universal Mobile Telecommunications System (UMTS);
* LTE; 3GPP Evolved Packet System (EPS);
* Evolved General Packet Radio Service (GPRS);
* Tunnelling Protocol for Control plane (GTPv2-C); Stage 3
* The Create Session Request will be sent on S11 interface as * The Create Session Request will be sent on S11 interface as
* part of these procedures: * part of these procedures:
* - E-UTRAN Initial Attach * - E-UTRAN Initial Attach
...@@ -250,7 +254,8 @@ typedef struct SgwCreateSessionRequest_s { ...@@ -250,7 +254,8 @@ typedef struct SgwCreateSessionRequest_s {
///< RAU/TAU/HO procedures with SGW change to identify the ///< RAU/TAU/HO procedures with SGW change to identify the
///< default bearer of the PDN Connection ///< default bearer of the PDN Connection
// PCO protocol_configuration_options ///< This IE is not applicable to TAU/RAU/Handover. If pco_flat_t pco; /// PCO protocol_configuration_options
///< This IE is not applicable to TAU/RAU/Handover. If
///< MME/SGSN receives PCO from UE (during the attach ///< MME/SGSN receives PCO from UE (during the attach
///< procedures), the MME/SGSN shall forward the PCO IE to ///< procedures), the MME/SGSN shall forward the PCO IE to
///< SGW. The SGW shall also forward it to PGW. ///< SGW. The SGW shall also forward it to PGW.
...@@ -413,7 +418,9 @@ typedef struct SgwCreateSessionResponse_s { ...@@ -413,7 +418,9 @@ typedef struct SgwCreateSessionResponse_s {
///< Gn/Gp SGSN to S4-SGSN/MME RAU/TAU procedure to ///< Gn/Gp SGSN to S4-SGSN/MME RAU/TAU procedure to
///< identify the default bearer the PGW selects for the PDN ///< identify the default bearer the PGW selects for the PDN
///< Connection. ///< Connection.
// PCO protocol_configuration_options ///< This IE is not applicable for TAU/RAU/Handover. If PGW
pco_flat_t pco;// PCO protocol_configuration_options
///< This IE is not applicable for TAU/RAU/Handover. If PGW
///< decides to return PCO to the UE, PGW shall send PCO to ///< decides to return PCO to the UE, PGW shall send PCO to
///< SGW. If SGW receives the PCO IE, SGW shall forward it ///< SGW. If SGW receives the PCO IE, SGW shall forward it
///< MME/SGSN. ///< MME/SGSN.
......
...@@ -43,6 +43,7 @@ ...@@ -43,6 +43,7 @@
#include "mme_app_extern.h" #include "mme_app_extern.h"
#include "mme_app_ue_context.h" #include "mme_app_ue_context.h"
#include "mme_app_defs.h" #include "mme_app_defs.h"
#include "sgw_lite_ie_defs.h"
#include "secu_defs.h" #include "secu_defs.h"
...@@ -246,6 +247,13 @@ mme_app_send_s11_create_session_req( ...@@ -246,6 +247,13 @@ mme_app_send_s11_create_session_req(
} }
} }
if ((ue_context_pP->pending_pdn_connectivity_req_pco.length >= PCO_MIN_LENGTH) && (ue_context_pP->pending_pdn_connectivity_req_pco.length <= PCO_MAX_LENGTH)) {
memcpy(&session_request_p->pco.byte[0],
&ue_context_pP->pending_pdn_connectivity_req_pco.byte[0],
ue_context_pP->pending_pdn_connectivity_req_pco.length);
session_request_p->pco.length = ue_context_pP->pending_pdn_connectivity_req_pco.length;
}
config_read_lock(&mme_config); config_read_lock(&mme_config);
session_request_p->peer_ip = mme_config.ipv4.sgw_ip_address_for_S11; session_request_p->peer_ip = mme_config.ipv4.sgw_ip_address_for_S11;
config_unlock(&mme_config); config_unlock(&mme_config);
...@@ -321,6 +329,11 @@ mme_app_handle_nas_pdn_connectivity_req( ...@@ -321,6 +329,11 @@ mme_app_handle_nas_pdn_connectivity_req(
ue_context_p->pending_pdn_connectivity_req_pti = nas_pdn_connectivity_req_pP->pti; ue_context_p->pending_pdn_connectivity_req_pti = nas_pdn_connectivity_req_pP->pti;
ue_context_p->pending_pdn_connectivity_req_ue_id = nas_pdn_connectivity_req_pP->ue_id; ue_context_p->pending_pdn_connectivity_req_ue_id = nas_pdn_connectivity_req_pP->ue_id;
memcpy(&ue_context_p->pending_pdn_connectivity_req_pco.byte[0],
&nas_pdn_connectivity_req_pP->pco.byte[0],
nas_pdn_connectivity_req_pP->pco.length);
ue_context_p->pending_pdn_connectivity_req_pco.length = nas_pdn_connectivity_req_pP->pco.length;
memcpy(&ue_context_p->pending_pdn_connectivity_req_qos, memcpy(&ue_context_p->pending_pdn_connectivity_req_qos,
&nas_pdn_connectivity_req_pP->qos, &nas_pdn_connectivity_req_pP->qos,
sizeof(network_qos_t)); sizeof(network_qos_t));
...@@ -759,6 +772,11 @@ mme_app_handle_create_sess_resp( ...@@ -759,6 +772,11 @@ mme_app_handle_create_sess_resp(
NAS_PDN_CONNECTIVITY_RSP(message_p).ambr.br_dl = ue_context_p->subscribed_ambr.br_dl; NAS_PDN_CONNECTIVITY_RSP(message_p).ambr.br_dl = ue_context_p->subscribed_ambr.br_dl;
memcpy(&NAS_PDN_CONNECTIVITY_RSP(message_p).pco.byte[0],
&create_sess_resp_pP->pco.byte[0],
create_sess_resp_pP->pco.length);
NAS_PDN_CONNECTIVITY_RSP(message_p).pco.length = create_sess_resp_pP->pco.length;
MSC_LOG_TX_MESSAGE( MSC_LOG_TX_MESSAGE(
MSC_MMEAPP_MME, MSC_MMEAPP_MME,
MSC_NAS_MME, MSC_NAS_MME,
......
...@@ -177,6 +177,7 @@ typedef struct ue_context_s { ...@@ -177,6 +177,7 @@ typedef struct ue_context_s {
int pending_pdn_connectivity_req_pti; int pending_pdn_connectivity_req_pti;
unsigned pending_pdn_connectivity_req_ue_id; unsigned pending_pdn_connectivity_req_ue_id;
network_qos_t pending_pdn_connectivity_req_qos; network_qos_t pending_pdn_connectivity_req_qos;
pco_flat_t pending_pdn_connectivity_req_pco;
void *pending_pdn_connectivity_req_proc_data; void *pending_pdn_connectivity_req_proc_data;
int pending_pdn_connectivity_req_request_type; int pending_pdn_connectivity_req_request_type;
......
...@@ -99,6 +99,8 @@ typedef struct mme_api_emm_config_s { ...@@ -99,6 +99,8 @@ typedef struct mme_api_emm_config_s {
*/ */
typedef struct mme_api_esm_config_s { typedef struct mme_api_esm_config_s {
mme_api_feature_t features; /* Supported features */ mme_api_feature_t features; /* Supported features */
uint8_t dns_prim_ipv4[4]; /* Network byte order */
uint8_t dns_sec_ipv4[4]; /* Network byte order */
} mme_api_esm_config_t; } mme_api_esm_config_t;
/****************************************************************************/ /****************************************************************************/
......
...@@ -160,12 +160,12 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid, ...@@ -160,12 +160,12 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid,
GUTI_t *guti, imsi_t *imsi, imei_t *imei, GUTI_t *guti, imsi_t *imsi, imei_t *imei,
int eea, int eia, int ucs2, int uea, int uia, int gea, int eea, int eia, int ucs2, int uea, int uia, int gea,
int umts_present, int gprs_present, int umts_present, int gprs_present,
const OctetString *esm_msg); const OctetString *esm_msg_pP);
/* /*
* Internal data used for attach procedure * Internal data used for attach procedure
*/ */
typedef struct { typedef struct attach_data_s {
unsigned int ueid; /* UE identifier */ unsigned int ueid; /* UE identifier */
#define ATTACH_COUNTER_MAX 5 #define ATTACH_COUNTER_MAX 5
unsigned int retransmission_count; /* Retransmission counter */ unsigned int retransmission_count; /* Retransmission counter */
...@@ -405,7 +405,7 @@ int emm_proc_attach_request(void *args) ...@@ -405,7 +405,7 @@ int emm_proc_attach_request(void *args)
** the MME (GUTI reallocation) ** ** the MME (GUTI reallocation) **
** n_eplmns: Number of equivalent PLMNs ** ** n_eplmns: Number of equivalent PLMNs **
** eplmns: List of equivalent PLMNs ** ** eplmns: List of equivalent PLMNs **
** esm_msg: Activate default EPS bearer context re- ** ** esm_msg_pP: Activate default EPS bearer context re- **
** quest ESM message ** ** quest ESM message **
** Others: None ** ** Others: None **
** ** ** **
...@@ -417,7 +417,7 @@ int emm_proc_attach_request(void *args) ...@@ -417,7 +417,7 @@ int emm_proc_attach_request(void *args)
int emm_proc_attach_accept(long t3412, long t3402, long t3423, int emm_proc_attach_accept(long t3412, long t3402, long t3423,
int n_tais, tai_t *tai, GUTI_t *guti, int n_tais, tai_t *tai, GUTI_t *guti,
int n_eplmns, plmn_t *eplmn, int n_eplmns, plmn_t *eplmn,
const OctetString *esm_msg) const OctetString *esm_msg_pP)
{ {
LOG_FUNC_IN; LOG_FUNC_IN;
...@@ -495,7 +495,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423, ...@@ -495,7 +495,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423,
*/ */
esm_sap.primitive = ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_REQ; esm_sap.primitive = ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_REQ;
esm_sap.is_standalone = FALSE; esm_sap.is_standalone = FALSE;
esm_sap.recv = esm_msg; esm_sap.recv = esm_msg_pP;
rc = esm_sap_send(&esm_sap); rc = esm_sap_send(&esm_sap);
if ( (rc != RETURNerror) && (esm_sap.err == ESM_SAP_SUCCESS) ) { if ( (rc != RETURNerror) && (esm_sap.err == ESM_SAP_SUCCESS) ) {
...@@ -561,7 +561,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423, ...@@ -561,7 +561,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423,
** ** ** **
** Inputs: emm_cause: EMM cause indicating why the network re- ** ** Inputs: emm_cause: EMM cause indicating why the network re- **
** jected the attach request ** ** jected the attach request **
** esm_msg: PDN connectivity reject ESM message ** ** esm_msg_pP: PDN connectivity reject ESM message **
** Others: None ** ** Others: None **
** ** ** **
** Outputs: None ** ** Outputs: None **
...@@ -569,7 +569,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423, ...@@ -569,7 +569,7 @@ int emm_proc_attach_accept(long t3412, long t3402, long t3423,
** Others: _emm_data, _emm_attach_data, T3410 ** ** Others: _emm_data, _emm_attach_data, T3410 **
** ** ** **
***************************************************************************/ ***************************************************************************/
int emm_proc_attach_reject(int emm_cause, const OctetString *esm_msg) int emm_proc_attach_reject(int emm_cause, const OctetString *esm_msg_pP)
{ {
LOG_FUNC_IN; LOG_FUNC_IN;
...@@ -754,11 +754,11 @@ int emm_proc_attach_reject(int emm_cause, const OctetString *esm_msg) ...@@ -754,11 +754,11 @@ int emm_proc_attach_reject(int emm_cause, const OctetString *esm_msg)
/* /*
* Notify ESM that the network rejected connectivity to the PDN * Notify ESM that the network rejected connectivity to the PDN
*/ */
if (esm_msg != NULL) { if (esm_msg_pP != NULL) {
esm_sap_t esm_sap; esm_sap_t esm_sap;
esm_sap.primitive = ESM_PDN_CONNECTIVITY_REJ; esm_sap.primitive = ESM_PDN_CONNECTIVITY_REJ;
esm_sap.is_standalone = FALSE; esm_sap.is_standalone = FALSE;
esm_sap.recv = esm_msg; esm_sap.recv = esm_msg_pP;
rc = esm_sap_send(&esm_sap); rc = esm_sap_send(&esm_sap);
} }
...@@ -1067,7 +1067,7 @@ int emm_proc_attach_set_detach(void) ...@@ -1067,7 +1067,7 @@ int emm_proc_attach_set_detach(void)
** the UE is registered to ** ** the UE is registered to **
** eea: Supported EPS encryption algorithms ** ** eea: Supported EPS encryption algorithms **
** eia: Supported EPS integrity algorithms ** ** eia: Supported EPS integrity algorithms **
** esm_msg: PDN connectivity request ESM message ** ** esm_msg_pP: PDN connectivity request ESM message **
** Others: _emm_data ** ** Others: _emm_data **
** ** ** **
** Outputs: None ** ** Outputs: None **
...@@ -1086,7 +1086,7 @@ int emm_proc_attach_request( ...@@ -1086,7 +1086,7 @@ int emm_proc_attach_request(
tai_t *tai, tai_t *tai,
int eea, int eia, int ucs2, int uea, int uia, int gea, int eea, int eia, int ucs2, int uea, int uia, int gea,
int umts_present, int gprs_present, int umts_present, int gprs_present,
const OctetString *esm_msg) const OctetString *esm_msg_pP)
{ {
LOG_FUNC_IN; LOG_FUNC_IN;
...@@ -1168,7 +1168,7 @@ int emm_proc_attach_request( ...@@ -1168,7 +1168,7 @@ int emm_proc_attach_request(
rc = emm_proc_attach_request(ueid, type, native_ksi, ksi, rc = emm_proc_attach_request(ueid, type, native_ksi, ksi,
native_guti, guti, imsi, imei, native_guti, guti, imsi, imei,
tai, eea, eia, ucs2, uea, uia, gea, tai, eea, eia, ucs2, uea, uia, gea,
umts_present, gprs_present, esm_msg); umts_present, gprs_present, esm_msg_pP);
} }
LOG_FUNC_RETURN(rc); LOG_FUNC_RETURN(rc);
...@@ -1221,7 +1221,7 @@ int emm_proc_attach_request( ...@@ -1221,7 +1221,7 @@ int emm_proc_attach_request(
/* Update the EMM context with the current attach procedure parameters */ /* Update the EMM context with the current attach procedure parameters */
rc = _emm_attach_update(*emm_ctx, ueid, type, ksi, guti, imsi, imei, rc = _emm_attach_update(*emm_ctx, ueid, type, ksi, guti, imsi, imei,
eea, eia, ucs2, uea, uia, gea, umts_present, gprs_present, esm_msg); eea, eia, ucs2, uea, uia, gea, umts_present, gprs_present, esm_msg_pP);
if (rc != RETURNok) { if (rc != RETURNok) {
LOG_TRACE(WARNING, "EMM-PROC - Failed to update EMM context"); LOG_TRACE(WARNING, "EMM-PROC - Failed to update EMM context");
...@@ -1301,7 +1301,7 @@ int emm_proc_attach_reject(unsigned int ueid, int emm_cause) ...@@ -1301,7 +1301,7 @@ int emm_proc_attach_reject(unsigned int ueid, int emm_cause)
** the GUTI sent in the ATTACH ACCEPT message as valid. ** ** the GUTI sent in the ATTACH ACCEPT message as valid. **
** ** ** **
** Inputs: ueid: UE lower layer identifier ** ** Inputs: ueid: UE lower layer identifier **
** esm_msg: Activate default EPS bearer context accept ** ** esm_msg_pP: Activate default EPS bearer context accept **
** ESM message ** ** ESM message **
** Others: _emm_data ** ** Others: _emm_data **
** ** ** **
...@@ -1310,7 +1310,7 @@ int emm_proc_attach_reject(unsigned int ueid, int emm_cause) ...@@ -1310,7 +1310,7 @@ int emm_proc_attach_reject(unsigned int ueid, int emm_cause)
** Others: _emm_data, T3450 ** ** Others: _emm_data, T3450 **
** ** ** **
***************************************************************************/ ***************************************************************************/
int emm_proc_attach_complete(unsigned int ueid, const OctetString *esm_msg) int emm_proc_attach_complete(unsigned int ueid, const OctetString *esm_msg_pP)
{ {
emm_data_context_t *emm_ctx = NULL; emm_data_context_t *emm_ctx = NULL;
int rc = RETURNerror; int rc = RETURNerror;
...@@ -1364,7 +1364,7 @@ int emm_proc_attach_complete(unsigned int ueid, const OctetString *esm_msg) ...@@ -1364,7 +1364,7 @@ int emm_proc_attach_complete(unsigned int ueid, const OctetString *esm_msg)
esm_sap.primitive = ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_CNF; esm_sap.primitive = ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_CNF;
esm_sap.is_standalone = FALSE; esm_sap.is_standalone = FALSE;
esm_sap.ueid = ueid; esm_sap.ueid = ueid;
esm_sap.recv = esm_msg; esm_sap.recv = esm_msg_pP;
esm_sap.ctx = emm_ctx; esm_sap.ctx = emm_ctx;
rc = esm_sap_send(&esm_sap); rc = esm_sap_send(&esm_sap);
} else { } else {
...@@ -2384,71 +2384,75 @@ static int _emm_attach_accept(emm_data_context_t *emm_ctx, attach_data_t *data) ...@@ -2384,71 +2384,75 @@ static int _emm_attach_accept(emm_data_context_t *emm_ctx, attach_data_t *data)
emm_sap_t emm_sap; emm_sap_t emm_sap;
int rc; int rc;
/* // may be caused by timer not stopped when deleted context
* Notify EMM-AS SAP that Attach Accept message together with an Activate if (emm_ctx) {
* Default EPS Bearer Context Request message has to be sent to the UE /*
*/ * Notify EMM-AS SAP that Attach Accept message together with an Activate
* Default EPS Bearer Context Request message has to be sent to the UE
*/
emm_sap.primitive = EMMAS_ESTABLISH_CNF; emm_sap.primitive = EMMAS_ESTABLISH_CNF;
emm_sap.u.emm_as.u.establish.ueid = emm_ctx->ueid; emm_sap.u.emm_as.u.establish.ueid = emm_ctx->ueid;
if (emm_ctx->guti_is_new && emm_ctx->old_guti) { if (emm_ctx->guti_is_new && emm_ctx->old_guti) {
/* Implicit GUTI reallocation; /* Implicit GUTI reallocation;
* include the new assigned GUTI in the Attach Accept message */ * include the new assigned GUTI in the Attach Accept message */
LOG_TRACE(INFO,"EMM-PROC - Implicit GUTI reallocation, include the new assigned GUTI in the Attach Accept message"); LOG_TRACE(INFO,"EMM-PROC - Implicit GUTI reallocation, include the new assigned GUTI in the Attach Accept message");
emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->old_guti; emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->old_guti;
emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti; emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti;
} else if (emm_ctx->guti_is_new && emm_ctx->guti) { } else if (emm_ctx->guti_is_new && emm_ctx->guti) {
/* include the new assigned GUTI in the Attach Accept message */ /* include the new assigned GUTI in the Attach Accept message */
LOG_TRACE(INFO,"EMM-PROC - Include the new assigned GUTI in the Attach Accept message"); LOG_TRACE(INFO,"EMM-PROC - Include the new assigned GUTI in the Attach Accept message");
emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->guti; emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->guti;
emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti; emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti;
} else { } else {
emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->guti; emm_sap.u.emm_as.u.establish.UEid.guti = emm_ctx->guti;
#warning "TEST LG FORCE GUTI IE IN ATTACH ACCEPT" #warning "TEST LG FORCE GUTI IE IN ATTACH ACCEPT"
emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti; emm_sap.u.emm_as.u.establish.new_guti = emm_ctx->guti;
//emm_sap.u.emm_as.u.establish.new_guti = NULL; //emm_sap.u.emm_as.u.establish.new_guti = NULL;
} }
emm_sap.u.emm_as.u.establish.n_tacs = emm_ctx->n_tacs; emm_sap.u.emm_as.u.establish.n_tacs = emm_ctx->n_tacs;
emm_sap.u.emm_as.u.establish.tac = emm_ctx->tac; emm_sap.u.emm_as.u.establish.tac = emm_ctx->tac;
emm_sap.u.emm_as.u.establish.NASinfo = EMM_AS_NAS_INFO_ATTACH; emm_sap.u.emm_as.u.establish.NASinfo = EMM_AS_NAS_INFO_ATTACH;
/* Setup EPS NAS security data */ /* Setup EPS NAS security data */
emm_as_set_security_data(&emm_sap.u.emm_as.u.establish.sctx, emm_as_set_security_data(&emm_sap.u.emm_as.u.establish.sctx,
emm_ctx->security, FALSE, TRUE); emm_ctx->security, FALSE, TRUE);
LOG_TRACE(INFO,"EMM-PROC - encryption = 0x%X ", emm_sap.u.emm_as.u.establish.encryption); LOG_TRACE(INFO,"EMM-PROC - encryption = 0x%X ", emm_sap.u.emm_as.u.establish.encryption);
LOG_TRACE(INFO,"EMM-PROC - integrity = 0x%X ", emm_sap.u.emm_as.u.establish.integrity); LOG_TRACE(INFO,"EMM-PROC - integrity = 0x%X ", emm_sap.u.emm_as.u.establish.integrity);
emm_sap.u.emm_as.u.establish.encryption = emm_ctx->security->selected_algorithms.encryption; emm_sap.u.emm_as.u.establish.encryption = emm_ctx->security->selected_algorithms.encryption;
emm_sap.u.emm_as.u.establish.integrity = emm_ctx->security->selected_algorithms.integrity; emm_sap.u.emm_as.u.establish.integrity = emm_ctx->security->selected_algorithms.integrity;
LOG_TRACE(INFO,"EMM-PROC - encryption = 0x%X (0x%X)", LOG_TRACE(INFO,"EMM-PROC - encryption = 0x%X (0x%X)",
emm_sap.u.emm_as.u.establish.encryption, emm_sap.u.emm_as.u.establish.encryption,
emm_ctx->security->selected_algorithms.encryption); emm_ctx->security->selected_algorithms.encryption);
LOG_TRACE(INFO,"EMM-PROC - integrity = 0x%X (0x%X)", LOG_TRACE(INFO,"EMM-PROC - integrity = 0x%X (0x%X)",
emm_sap.u.emm_as.u.establish.integrity, emm_sap.u.emm_as.u.establish.integrity,
emm_ctx->security->selected_algorithms.integrity); emm_ctx->security->selected_algorithms.integrity);
/* Get the activate default EPS bearer context request message to /* Get the activate default EPS bearer context request message to
* transfer within the ESM container of the attach accept message */ * transfer within the ESM container of the attach accept message */
emm_sap.u.emm_as.u.establish.NASmsg = data->esm_msg; emm_sap.u.emm_as.u.establish.NASmsg = data->esm_msg;
LOG_TRACE(INFO,"EMM-PROC - NASmsg src size = %d NASmsg dst size = %d ", LOG_TRACE(INFO,"EMM-PROC - NASmsg src size = %d NASmsg dst size = %d ",
data->esm_msg.length, emm_sap.u.emm_as.u.establish.NASmsg.length); data->esm_msg.length, emm_sap.u.emm_as.u.establish.NASmsg.length);
rc = emm_sap_send(&emm_sap); rc = emm_sap_send(&emm_sap);
if (rc != RETURNerror) { if (rc != RETURNerror) {
if (T3450.id != NAS_TIMER_INACTIVE_ID) { if (T3450.id != NAS_TIMER_INACTIVE_ID) {
/* Re-start T3450 timer */ /* Re-start T3450 timer */
T3450.id = nas_timer_restart(T3450.id); T3450.id = nas_timer_restart(T3450.id);
} else { } else {
/* Start T3450 timer */ /* Start T3450 timer */
T3450.id = nas_timer_start(T3450.sec, _emm_attach_t3450_handler, data); T3450.id = nas_timer_start(T3450.sec, _emm_attach_t3450_handler, data);
} }
LOG_TRACE(INFO,"EMM-PROC - Timer T3450 (%d) expires in %ld seconds", LOG_TRACE(INFO,"EMM-PROC - Timer T3450 (%d) expires in %ld seconds",
T3450.id, T3450.sec); T3450.id, T3450.sec);
}
} else {
LOG_TRACE(WARNING,"EMM-PROC - emm_ctx NULL");
} }
LOG_FUNC_RETURN (rc); LOG_FUNC_RETURN (rc);
} }
...@@ -2601,7 +2605,7 @@ static int _emm_attach_have_changed(const emm_data_context_t *ctx, ...@@ -2601,7 +2605,7 @@ static int _emm_attach_have_changed(const emm_data_context_t *ctx,
** imei: The IMEI provided by the UE ** ** imei: The IMEI provided by the UE **
** eea: Supported EPS encryption algorithms ** ** eea: Supported EPS encryption algorithms **
** eia: Supported EPS integrity algorithms ** ** eia: Supported EPS integrity algorithms **
** esm_msg: ESM message contained with the attach re- ** ** esm_msg_pP: ESM message contained with the attach re- **
** quest ** ** quest **
** Others: None ** ** Others: None **
** ** ** **
...@@ -2615,7 +2619,7 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid, ...@@ -2615,7 +2619,7 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid,
GUTI_t *guti, imsi_t *imsi, imei_t *imei, GUTI_t *guti, imsi_t *imsi, imei_t *imei,
int eea, int eia, int ucs2, int uea, int uia, int gea, int eea, int eia, int ucs2, int uea, int uia, int gea,
int umts_present, int gprs_present, int umts_present, int gprs_present,
const OctetString *esm_msg) const OctetString *esm_msg_pP)
{ {
int mnc_length; int mnc_length;
LOG_FUNC_IN; LOG_FUNC_IN;
...@@ -2743,20 +2747,25 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid, ...@@ -2743,20 +2747,25 @@ static int _emm_attach_update(emm_data_context_t *ctx, unsigned int ueid,
} }
/* The ESM message contained within the attach request */ /* The ESM message contained within the attach request */
if (esm_msg->length > 0) { if (esm_msg_pP->length > 0) {
if (ctx->esm_msg.length == 0) { if (ctx->esm_msg.value != NULL) {
ctx->esm_msg.value = (uint8_t *)malloc(esm_msg->length); free(ctx->esm_msg.value);
ctx->esm_msg.value = NULL;
ctx->esm_msg.length = 0;
} }
ctx->esm_msg.value = (uint8_t *)malloc(esm_msg_pP->length);
if (ctx->esm_msg.value != NULL) { if (ctx->esm_msg.value != NULL) {
strncpy((char *)ctx->esm_msg.value, memcpy((char *)ctx->esm_msg.value,
(char *)esm_msg->value, esm_msg->length); (char *)esm_msg_pP->value, esm_msg_pP->length);
} else { } else {
LOG_FUNC_RETURN (RETURNerror); LOG_FUNC_RETURN (RETURNerror);
} }
} }
ctx->esm_msg.length = esm_msg->length; ctx->esm_msg.length = esm_msg_pP->length;
/* Attachment indicator */ /* Attachment indicator */
ctx->is_attached = FALSE; ctx->is_attached = FALSE;
......
...@@ -399,7 +399,7 @@ typedef struct emm_data_context_s { ...@@ -399,7 +399,7 @@ typedef struct emm_data_context_s {
* Structure of the EMM data * Structure of the EMM data
* ------------------------- * -------------------------
*/ */
typedef struct { typedef struct emm_data_s {
/* /*
* MME configuration * MME configuration
* ----------------- * -----------------
......
...@@ -58,7 +58,7 @@ Description Defines the EMM primitives available at the EMMAS Service ...@@ -58,7 +58,7 @@ Description Defines the EMM primitives available at the EMMAS Service
/* /*
* EMMAS-SAP primitives * EMMAS-SAP primitives
*/ */
typedef enum { typedef enum emm_as_primitive_u {
_EMMAS_START = 200, _EMMAS_START = 200,
_EMMAS_SECURITY_REQ, /* EMM->AS: Security request */ _EMMAS_SECURITY_REQ, /* EMM->AS: Security request */
_EMMAS_SECURITY_IND, /* AS->EMM: Security indication */ _EMMAS_SECURITY_IND, /* AS->EMM: Security indication */
...@@ -80,7 +80,7 @@ typedef enum { ...@@ -80,7 +80,7 @@ typedef enum {
} emm_as_primitive_t; } emm_as_primitive_t;
/* Data used to setup EPS NAS security */ /* Data used to setup EPS NAS security */
typedef struct { typedef struct emm_as_security_data_s {
UInt8_t is_new; /* New security data indicator */ UInt8_t is_new; /* New security data indicator */
#define EMM_AS_NO_KEY_AVAILABLE 0xff #define EMM_AS_NO_KEY_AVAILABLE 0xff
UInt8_t ksi; /* NAS key set identifier */ UInt8_t ksi; /* NAS key set identifier */
...@@ -98,7 +98,7 @@ typedef struct { ...@@ -98,7 +98,7 @@ typedef struct {
* EMMAS primitive for security * EMMAS primitive for security
* ---------------------------- * ----------------------------
*/ */
typedef struct { typedef struct emm_as_security_s {
UInt32_t ueid; /* UE lower layer identifier */ UInt32_t ueid; /* UE lower layer identifier */
const GUTI_t *guti; /* GUTI temporary mobile identity */ const GUTI_t *guti; /* GUTI temporary mobile identity */
emm_as_security_data_t sctx;/* EPS NAS security context */ emm_as_security_data_t sctx;/* EPS NAS security context */
...@@ -144,7 +144,7 @@ typedef struct { ...@@ -144,7 +144,7 @@ typedef struct {
* EMMAS primitive for connection establishment * EMMAS primitive for connection establishment
* -------------------------------------------- * --------------------------------------------
*/ */
typedef struct { typedef struct emm_as_EPS_identity_s {
const GUTI_t *guti; /* The GUTI, if valid */ const GUTI_t *guti; /* The GUTI, if valid */
const tai_t *tai; /* The last visited registered Tracking const tai_t *tai; /* The last visited registered Tracking
* Area Identity, if available */ * Area Identity, if available */
...@@ -152,7 +152,7 @@ typedef struct { ...@@ -152,7 +152,7 @@ typedef struct {
const imei_t *imei; /* UE's IMEI for emergency bearer services */ const imei_t *imei; /* UE's IMEI for emergency bearer services */
} emm_as_EPS_identity_t; } emm_as_EPS_identity_t;
typedef struct { typedef struct emm_as_establish_s {
UInt32_t ueid; /* UE lower layer identifier */ UInt32_t ueid; /* UE lower layer identifier */
emm_as_EPS_identity_t UEid; /* UE's EPS mobile identity */ emm_as_EPS_identity_t UEid; /* UE's EPS mobile identity */
emm_as_security_data_t sctx;/* EPS NAS security context */ emm_as_security_data_t sctx;/* EPS NAS security context */
...@@ -184,7 +184,7 @@ typedef struct { ...@@ -184,7 +184,7 @@ typedef struct {
* EMMAS primitive for connection release * EMMAS primitive for connection release
* -------------------------------------- * --------------------------------------
*/ */
typedef struct { typedef struct emm_as_release_s {
UInt32_t ueid; /* UE lower layer identifier */ UInt32_t ueid; /* UE lower layer identifier */
const GUTI_t *guti; /* GUTI temporary mobile identity */ const GUTI_t *guti; /* GUTI temporary mobile identity */
#define EMM_AS_CAUSE_AUTHENTICATION 0x01 /* Authentication failure */ #define EMM_AS_CAUSE_AUTHENTICATION 0x01 /* Authentication failure */
...@@ -196,7 +196,7 @@ typedef struct { ...@@ -196,7 +196,7 @@ typedef struct {
* EMMAS primitive for data transfer * EMMAS primitive for data transfer
* --------------------------------- * ---------------------------------
*/ */
typedef struct { typedef struct emm_as_data_s {
UInt32_t ueid; /* UE lower layer identifier */ UInt32_t ueid; /* UE lower layer identifier */
const GUTI_t *guti; /* GUTI temporary mobile identity */ const GUTI_t *guti; /* GUTI temporary mobile identity */
emm_as_security_data_t sctx;/* EPS NAS security context */ emm_as_security_data_t sctx;/* EPS NAS security context */
...@@ -213,13 +213,13 @@ typedef struct { ...@@ -213,13 +213,13 @@ typedef struct {
* EMMAS primitive for paging * EMMAS primitive for paging
* -------------------------- * --------------------------
*/ */
typedef struct {} emm_as_page_t; typedef struct emm_as_page_s {} emm_as_page_t;
/* /*
* EMMAS primitive for status indication * EMMAS primitive for status indication
* ------------------------------------- * -------------------------------------
*/ */
typedef struct { typedef struct emm_as_status_s {
UInt32_t ueid; /* UE lower layer identifier */ UInt32_t ueid; /* UE lower layer identifier */
const GUTI_t *guti; /* GUTI temporary mobile identity */ const GUTI_t *guti; /* GUTI temporary mobile identity */
emm_as_security_data_t sctx;/* EPS NAS security context */ emm_as_security_data_t sctx;/* EPS NAS security context */
...@@ -230,7 +230,7 @@ typedef struct { ...@@ -230,7 +230,7 @@ typedef struct {
* EMMAS primitive for cell information * EMMAS primitive for cell information
* ------------------------------------ * ------------------------------------
*/ */
typedef struct { typedef struct emm_as_cell_info_s {
UInt8_t found; /* Indicates whether a suitable cell is found */ UInt8_t found; /* Indicates whether a suitable cell is found */
#define EMM_AS_PLMN_LIST_SIZE 6 #define EMM_AS_PLMN_LIST_SIZE 6
PLMN_LIST_T(EMM_AS_PLMN_LIST_SIZE) plmnIDs; PLMN_LIST_T(EMM_AS_PLMN_LIST_SIZE) plmnIDs;
...@@ -245,7 +245,7 @@ typedef struct { ...@@ -245,7 +245,7 @@ typedef struct {
* Structure of EMMAS-SAP primitive * Structure of EMMAS-SAP primitive
* -------------------------------- * --------------------------------
*/ */
typedef struct { typedef struct emm_as_s {
emm_as_primitive_t primitive; emm_as_primitive_t primitive;
union { union {
emm_as_security_t security; emm_as_security_t security;
......
...@@ -181,19 +181,26 @@ static int _emm_cn_deregister_ue(const UInt32_t ue_id) ...@@ -181,19 +181,26 @@ static int _emm_cn_deregister_ue(const UInt32_t ue_id)
static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP) static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP)
{ {
int rc = RETURNok; int rc = RETURNok;
struct emm_data_context_s *emm_ctx_p = NULL; struct emm_data_context_s *emm_ctx_p = NULL;
esm_proc_pdn_type_t esm_pdn_type = ESM_PDN_TYPE_IPV4; esm_proc_pdn_type_t esm_pdn_type = ESM_PDN_TYPE_IPV4;
esm_proc_data_t *esm_proc_data_p = NULL; esm_proc_data_t *esm_proc_data_p = NULL;
ESM_msg esm_msg; ESM_msg esm_msg;
EpsQualityOfService qos; EpsQualityOfService qos;
OctetString rsp = { 0, NULL}; ProtocolConfigurationOptions pco;
int is_standalone = 0; // warning hardcoded unsigned int pco_in_index = 0;
int triggered_by_ue = 1; // warning hardcoded signed int length_in_pco = 0;
attach_data_t *data_p = NULL; uint16_t pi_or_ci = 0; // protocol identifier or container identifier;
int esm_cause = ESM_CAUSE_SUCCESS; uint8_t length_pi_or_ci = 0;
int pid = 0;
unsigned int new_ebi = 0; OctetString rsp = { 0, NULL};
int is_standalone = 0; // warning hardcoded
int triggered_by_ue = 1; // warning hardcoded
attach_data_t *data_p = NULL;
int esm_cause = ESM_CAUSE_SUCCESS;
int pid = 0;
unsigned int new_ebi = 0;
LOG_FUNC_IN; LOG_FUNC_IN;
emm_ctx_p = emm_data_context_get(&_emm_data, msg_pP->ue_id); emm_ctx_p = emm_data_context_get(&_emm_data, msg_pP->ue_id);
...@@ -247,7 +254,44 @@ static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP) ...@@ -247,7 +254,44 @@ static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP)
qos.bitRatesExt.guarBitRateForUL = 0; qos.bitRatesExt.guarBitRateForUL = 0;
qos.bitRatesExt.guarBitRateForDL = 0; qos.bitRatesExt.guarBitRateForDL = 0;
//--------------------------------------------------------------------------
// PCO processing
//--------------------------------------------------------------------------
memset(&pco, 0, sizeof(ProtocolConfigurationOptions));
length_in_pco = msg_pP->pco.byte[1];
if ((length_in_pco+1+1) != msg_pP->pco.length) {
LOG_TRACE(WARNING, "PCO: mismatch in lengths length_pco+1+1 %u != msg_pP->pco.length %u\n",
length_in_pco+1+1, msg_pP->pco.length);
}
pco.configurationprotol = msg_pP->pco.byte[2] & 0x07;
for (int i = 0; i < msg_pP->pco.length; i++) {
LOG_TRACE(WARNING, "EMMCN_PDN_CONNECTIVITY_RES.pco.byte[%u] = 0x%x", i, msg_pP->pco.byte[i]);
}
if ((length_in_pco > 0) && (msg_pP->pco.byte[2] & 0x80)) {
pco_in_index = PCO_MIN_LENGTH;
while (length_in_pco >= 3) {
pi_or_ci = (((uint16_t)msg_pP->pco.byte[pco_in_index]) << 8) | (uint16_t)msg_pP->pco.byte[pco_in_index+1];
pco_in_index += 2;
length_pi_or_ci = msg_pP->pco.byte[pco_in_index++];
pco.protocolid[pco.num_protocol_id_or_container_id] = pi_or_ci;
pco.lengthofprotocolid[pco.num_protocol_id_or_container_id] = length_pi_or_ci;
pco.protocolidcontents[pco.num_protocol_id_or_container_id].value = malloc(length_pi_or_ci);
pco.protocolidcontents[pco.num_protocol_id_or_container_id].length = length_pi_or_ci;
memcpy(pco.protocolidcontents[pco.num_protocol_id_or_container_id].value,
&msg_pP->pco.byte[pco_in_index],
length_pi_or_ci);
LOG_TRACE(WARNING, "PCO: Found pi_or_ci 0x%x length %u content %s\n",
pi_or_ci, length_pi_or_ci, dump_octet_string(&pco.protocolidcontents[pco.num_protocol_id_or_container_id]));
pco.num_protocol_id_or_container_id++;
pco_in_index += length_pi_or_ci;
length_in_pco = length_in_pco - (length_pi_or_ci + 2 + 1);
} // while (length_in_pco >= 3) {
} // if ((length_in_pco > 0) && (msg_pP->pco.byte[2] & 0x80)) {
/*************************************************************************/ /*************************************************************************/
/* CODE THAT WAS IN esm_recv.c/esm_recv_pdn_connectivity_request() */ /* CODE THAT WAS IN esm_recv.c/esm_recv_pdn_connectivity_request() */
/*************************************************************************/ /*************************************************************************/
...@@ -294,6 +338,7 @@ static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP) ...@@ -294,6 +338,7 @@ static int _emm_cn_pdn_connectivity_res(const emm_cn_pdn_res_t *msg_pP)
new_ebi, //msg_pP->ebi, new_ebi, //msg_pP->ebi,
&esm_msg.activate_default_eps_bearer_context_request, &esm_msg.activate_default_eps_bearer_context_request,
&msg_pP->apn, &msg_pP->apn,
&pco,
esm_pdn_type, esm_pdn_type,
&msg_pP->pdn_addr, &msg_pP->pdn_addr,
&qos, &qos,
......
...@@ -165,7 +165,7 @@ typedef enum { ...@@ -165,7 +165,7 @@ typedef enum {
/* /*
* Structure of EPS Mobility Management primitive * Structure of EPS Mobility Management primitive
*/ */
typedef struct { typedef struct emm_sap_s {
emm_primitive_t primitive; emm_primitive_t primitive;
union { union {
emm_reg_t emm_reg; /* EMMREG-SAP primitives */ emm_reg_t emm_reg; /* EMMREG-SAP primitives */
......
...@@ -96,7 +96,7 @@ typedef enum { ...@@ -96,7 +96,7 @@ typedef enum {
#ifdef NAS_MME #ifdef NAS_MME
/* ESM message timer retransmission data */ /* ESM message timer retransmission data */
typedef struct { typedef struct esm_ebr_timer_data_s {
void *ctx; void *ctx;
unsigned int ueid; /* Lower layers UE identifier */ unsigned int ueid; /* Lower layers UE identifier */
unsigned int ebi; /* EPS bearer identity */ unsigned int ebi; /* EPS bearer identity */
...@@ -110,7 +110,7 @@ typedef struct { ...@@ -110,7 +110,7 @@ typedef struct {
* EPS bearer context data * EPS bearer context data
* ----------------------- * -----------------------
*/ */
typedef struct { typedef struct esm_ebr_context_s {
unsigned char ebi; /* EPS bearer identity */ unsigned char ebi; /* EPS bearer identity */
esm_ebr_state status; /* EPS bearer context status */ esm_ebr_state status; /* EPS bearer context status */
#ifdef NAS_UE #ifdef NAS_UE
...@@ -125,7 +125,7 @@ typedef struct { ...@@ -125,7 +125,7 @@ typedef struct {
#endif #endif
} esm_ebr_context_t; } esm_ebr_context_t;
typedef struct { typedef struct esm_ebr_data_s {
unsigned char index; /* Index of the next EPS bearer context unsigned char index; /* Index of the next EPS bearer context
* identity to be used */ * identity to be used */
#define ESM_EBR_DATA_SIZE (ESM_EBI_MAX - ESM_EBI_MIN + 1) #define ESM_EBR_DATA_SIZE (ESM_EBI_MAX - ESM_EBI_MIN + 1)
...@@ -147,7 +147,7 @@ typedef struct { ...@@ -147,7 +147,7 @@ typedef struct {
* butes. An EPS bearer corresponds to one Quality of Service policy * butes. An EPS bearer corresponds to one Quality of Service policy
* applied within the EPC and E-UTRAN. * applied within the EPC and E-UTRAN.
*/ */
typedef struct { typedef struct esm_bearer_s {
int bid; /* Identifier of the EPS bearer */ int bid; /* Identifier of the EPS bearer */
unsigned int ebi; /* EPS bearer identity */ unsigned int ebi; /* EPS bearer identity */
network_qos_t qos; /* EPS bearer level QoS parameters */ network_qos_t qos; /* EPS bearer level QoS parameters */
...@@ -161,7 +161,7 @@ typedef struct { ...@@ -161,7 +161,7 @@ typedef struct {
* one IPv4 address and/or one IPv6 prefix and a PDN represented by * one IPv4 address and/or one IPv6 prefix and a PDN represented by
* an Access Point Name (APN). * an Access Point Name (APN).
*/ */
typedef struct { typedef struct esm_pdn_s {
unsigned int pti; /* Identity of the procedure transaction executed unsigned int pti; /* Identity of the procedure transaction executed
* to activate the PDN connection entry */ * to activate the PDN connection entry */
int is_emergency; /* Emergency bearer services indicator */ int is_emergency; /* Emergency bearer services indicator */
...@@ -234,7 +234,7 @@ typedef esm_data_context_t esm_data_t; ...@@ -234,7 +234,7 @@ typedef esm_data_context_t esm_data_t;
* Structure of the ESM data * Structure of the ESM data
* ------------------------- * -------------------------
*/ */
typedef struct { typedef struct esm_data_s {
/* /*
* MME configuration * MME configuration
* ----------------- * -----------------
......
...@@ -49,6 +49,7 @@ Description Defines the EPS Session Management procedures executed at ...@@ -49,6 +49,7 @@ Description Defines the EPS Session Management procedures executed at
#include "networkDef.h" #include "networkDef.h"
#include "OctetString.h" #include "OctetString.h"
#include "emmData.h" #include "emmData.h"
#include "ProtocolConfigurationOptions.h"
/****************************************************************************/ /****************************************************************************/
/********************* G L O B A L C O N S T A N T S *******************/ /********************* G L O B A L C O N S T A N T S *******************/
...@@ -103,6 +104,8 @@ typedef network_qos_t esm_proc_qos_t; ...@@ -103,6 +104,8 @@ typedef network_qos_t esm_proc_qos_t;
/* Traffic Flow Template for packet filtering */ /* Traffic Flow Template for packet filtering */
typedef network_tft_t esm_proc_tft_t; typedef network_tft_t esm_proc_tft_t;
typedef ProtocolConfigurationOptions esm_proc_pco_t;
/* PDN connection and EPS bearer context data */ /* PDN connection and EPS bearer context data */
typedef struct { typedef struct {
OctetString apn; OctetString apn;
...@@ -110,6 +113,7 @@ typedef struct { ...@@ -110,6 +113,7 @@ typedef struct {
OctetString pdn_addr; OctetString pdn_addr;
esm_proc_qos_t qos; esm_proc_qos_t qos;
esm_proc_tft_t tft; esm_proc_tft_t tft;
esm_proc_pco_t pco;
} esm_proc_data_t; } esm_proc_data_t;
/****************************************************************************/ /****************************************************************************/
......
...@@ -297,7 +297,7 @@ int encode_activate_default_eps_bearer_context_request(activate_default_eps_bear ...@@ -297,7 +297,7 @@ int encode_activate_default_eps_bearer_context_request(activate_default_eps_bear
encoded += encode_result; encoded += encode_result;
} }
#if 1 /* LW: force Protocol Configuration Options to be included in the ESM message */ #if 0 /* LW: force Protocol Configuration Options to be included in the ESM message */
{ {
#define CONFIGURATION_PROTOCOL_PPP 0 #define CONFIGURATION_PROTOCOL_PPP 0
......
...@@ -735,6 +735,7 @@ int esm_recv_pdn_connectivity_request(emm_data_context_t *ctx, int pti, int ebi, ...@@ -735,6 +735,7 @@ int esm_recv_pdn_connectivity_request(emm_data_context_t *ctx, int pti, int ebi,
unsigned int *new_ebi, void *data) unsigned int *new_ebi, void *data)
{ {
int esm_cause = ESM_CAUSE_SUCCESS; int esm_cause = ESM_CAUSE_SUCCESS;
uint8_t i;
LOG_FUNC_IN; LOG_FUNC_IN;
...@@ -823,6 +824,13 @@ int esm_recv_pdn_connectivity_request(emm_data_context_t *ctx, int pti, int ebi, ...@@ -823,6 +824,13 @@ int esm_recv_pdn_connectivity_request(emm_data_context_t *ctx, int pti, int ebi,
*/ */
//TODO: rc = esm_proc_information_request(); //TODO: rc = esm_proc_information_request();
} }
esm_data->pco = msg->protocolconfigurationoptions;
for (i = 0; i < msg->protocolconfigurationoptions.num_protocol_id_or_container_id; i++) {
DUP_OCTET_STRING(msg->protocolconfigurationoptions.protocolidcontents[i], esm_data->pco.protocolidcontents[i]);
esm_data->pco.protocolid[i] = msg->protocolconfigurationoptions.protocolid[i];
esm_data->pco.lengthofprotocolid[i] = msg->protocolconfigurationoptions.lengthofprotocolid[i];
}
#if defined(ORIGINAL_CODE) #if defined(ORIGINAL_CODE)
/* Execute the PDN connectivity procedure requested by the UE */ /* Execute the PDN connectivity procedure requested by the UE */
......
...@@ -59,7 +59,7 @@ Description Defines the ESM Service Access Point that provides EPS ...@@ -59,7 +59,7 @@ Description Defines the ESM Service Access Point that provides EPS
* EPS Session Management primitives * EPS Session Management primitives
* --------------------------------- * ---------------------------------
*/ */
typedef enum { typedef enum esm_primitive_s {
ESM_START = 0, ESM_START = 0,
/* Procedures related to EPS bearer contexts (initiated by the network) */ /* Procedures related to EPS bearer contexts (initiated by the network) */
ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_REQ, ESM_DEFAULT_EPS_BEARER_CONTEXT_ACTIVATE_REQ,
...@@ -107,14 +107,14 @@ typedef enum { ...@@ -107,14 +107,14 @@ typedef enum {
* ESM primitive for activate EPS default bearer context procedure * ESM primitive for activate EPS default bearer context procedure
* --------------------------------------------------------------- * ---------------------------------------------------------------
*/ */
typedef struct { typedef struct esm_activate_eps_default_bearer_context_s {
} esm_activate_eps_default_bearer_context_t; } esm_activate_eps_default_bearer_context_t;
/* /*
* ESM primitive for PDN connectivity procedure * ESM primitive for PDN connectivity procedure
* -------------------------------------------- * --------------------------------------------
*/ */
typedef struct { typedef struct esm_pdn_connectivity_s {
int cid; /* PDN connection local identifier */ int cid; /* PDN connection local identifier */
int is_defined; /* Indicates whether a PDN context has been defined int is_defined; /* Indicates whether a PDN context has been defined
* for the specified APN */ * for the specified APN */
...@@ -129,7 +129,7 @@ typedef struct { ...@@ -129,7 +129,7 @@ typedef struct {
* ESM primitive for PDN disconnect procedure * ESM primitive for PDN disconnect procedure
* ------------------------------------------ * ------------------------------------------
*/ */
typedef struct { typedef struct esm_pdn_disconnect_s {
int cid; /* PDN connection local identifier */ int cid; /* PDN connection local identifier */
} esm_pdn_disconnect_t; } esm_pdn_disconnect_t;
...@@ -137,7 +137,7 @@ typedef struct { ...@@ -137,7 +137,7 @@ typedef struct {
* ESM primitive for deactivate EPS bearer context procedure * ESM primitive for deactivate EPS bearer context procedure
* --------------------------------------------------------- * ---------------------------------------------------------
*/ */
typedef struct { typedef struct esm_eps_bearer_context_deactivate_s {
#define ESM_SAP_ALL_EBI 0xff #define ESM_SAP_ALL_EBI 0xff
unsigned int ebi; /* EPS bearer identity of the EPS bearer context unsigned int ebi; /* EPS bearer identity of the EPS bearer context
* to be deactivated */ * to be deactivated */
...@@ -154,20 +154,20 @@ typedef union { ...@@ -154,20 +154,20 @@ typedef union {
esm_eps_bearer_context_deactivate_t eps_bearer_context_deactivate; esm_eps_bearer_context_deactivate_t eps_bearer_context_deactivate;
} esm_sap_data_t; } esm_sap_data_t;
typedef struct { typedef struct esm_sap_s {
esm_primitive_t primitive; /* ESM-SAP primitive to process */ esm_primitive_t primitive; /* ESM-SAP primitive to process */
int is_standalone; /* Indicates whether the ESM message handled int is_standalone; /* Indicates whether the ESM message handled
* within this primitive has to be sent/received * within this primitive has to be sent/received
* standalone or together within an EMM related * standalone or together within an EMM related
* message */ * message */
#if defined(NAS_MME) #if defined(NAS_MME)
emm_data_context_t *ctx; /* UE context */ emm_data_context_t *ctx; /* UE context */
#endif #endif
unsigned int ueid; /* Local UE identifier */ unsigned int ueid; /* Local UE identifier */
esm_sap_error_t err; /* ESM-SAP error code */ esm_sap_error_t err; /* ESM-SAP error code */
const OctetString *recv; /* Encoded ESM message received */ const OctetString *recv; /* Encoded ESM message received */
OctetString send; /* Encoded ESM message to be sent */ OctetString send; /* Encoded ESM message to be sent */
esm_sap_data_t data; /* ESM message data parameters */ esm_sap_data_t data; /* ESM message data parameters */
} esm_sap_t; } esm_sap_t;
/****************************************************************************/ /****************************************************************************/
......
...@@ -555,6 +555,7 @@ int esm_send_activate_default_eps_bearer_context_request(int pti, ...@@ -555,6 +555,7 @@ int esm_send_activate_default_eps_bearer_context_request(int pti,
int ebi, int ebi,
activate_default_eps_bearer_context_request_msg *msg, activate_default_eps_bearer_context_request_msg *msg,
const OctetString *apn, const OctetString *apn,
const ProtocolConfigurationOptions *pco,
int pdn_type, int pdn_type,
const OctetString *pdn_addr, const OctetString *pdn_addr,
const EpsQualityOfService *qos, const EpsQualityOfService *qos,
...@@ -615,6 +616,12 @@ int esm_send_activate_default_eps_bearer_context_request(int pti, ...@@ -615,6 +616,12 @@ int esm_send_activate_default_eps_bearer_context_request(int pti,
msg->esmcause = esm_cause; msg->esmcause = esm_cause;
} }
if (pco != NULL) {
msg->presencemask |=
ACTIVATE_DEFAULT_EPS_BEARER_CONTEXT_REQUEST_PROTOCOL_CONFIGURATION_OPTIONS_PRESENT;
msg->protocolconfigurationoptions = *pco;
}
#warning "TEST LG FORCE APN-AMBR" #warning "TEST LG FORCE APN-AMBR"
LOG_TRACE(INFO, "ESM-SAP - FORCE APN-AMBR"); LOG_TRACE(INFO, "ESM-SAP - FORCE APN-AMBR");
msg->presencemask |= msg->presencemask |=
......
...@@ -159,8 +159,8 @@ int esm_send_pdn_disconnect_reject(int pti, pdn_disconnect_reject_msg *msg, ...@@ -159,8 +159,8 @@ int esm_send_pdn_disconnect_reject(int pti, pdn_disconnect_reject_msg *msg,
*/ */
int esm_send_activate_default_eps_bearer_context_request(int pti, int ebi, int esm_send_activate_default_eps_bearer_context_request(int pti, int ebi,
activate_default_eps_bearer_context_request_msg *msg, const OctetString *apn, activate_default_eps_bearer_context_request_msg *msg, const OctetString *apn,
int pdn_type, const OctetString *pdn_addr, const EpsQualityOfService *qos, const ProtocolConfigurationOptions *pco, int pdn_type, const OctetString *pdn_addr,
int esm_cause); const EpsQualityOfService *qos, int esm_cause);
int esm_send_activate_dedicated_eps_bearer_context_request(int pti, int ebi, int esm_send_activate_dedicated_eps_bearer_context_request(int pti, int ebi,
activate_dedicated_eps_bearer_context_request_msg *msg, int linked_ebi, activate_dedicated_eps_bearer_context_request_msg *msg, int linked_ebi,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment