open5gs/src/mme/esm_handler.c

114 lines
3.8 KiB
C
Raw Normal View History

2017-03-27 10:32:24 +00:00
#define TRACE_MODULE _esm_handler
#include "core_debug.h"
#include "nas_message.h"
2017-04-11 06:13:30 +00:00
#include "mme_context.h"
2017-04-04 01:49:19 +00:00
#include "mme_event.h"
2017-04-13 10:58:58 +00:00
#include "esm_build.h"
#include "s1ap_build.h"
#include "s1ap_path.h"
2017-04-11 06:13:30 +00:00
#include "mme_s11_build.h"
#include "mme_s11_path.h"
2017-04-08 02:38:09 +00:00
2017-04-13 10:15:53 +00:00
void esm_handle_pdn_connectivity_request(mme_bearer_t *bearer,
2017-04-08 02:38:09 +00:00
nas_pdn_connectivity_request_t *pdn_connectivity_request)
{
2017-04-14 02:51:27 +00:00
if (pdn_connectivity_request->presencemask &
NAS_PDN_CONNECTIVITY_REQUEST_PROTOCOL_CONFIGURATION_OPTIONS_PRESENT)
2017-04-14 02:51:27 +00:00
{
nas_protocol_configuration_options_t *protocol_configuration_options =
&pdn_connectivity_request->protocol_configuration_options;
bearer->ue_pco_len = protocol_configuration_options->length;
d_assert(bearer->ue_pco_len <= MAX_PCO_LEN, return,
"length(%d) exceeds MAX:%d", bearer->ue_pco_len, MAX_PCO_LEN);
memcpy(bearer->ue_pco, protocol_configuration_options->buffer,
bearer->ue_pco_len);
}
2017-04-08 02:38:09 +00:00
}
2017-04-11 06:07:46 +00:00
2017-04-14 01:27:31 +00:00
void esm_handle_s6a_update_location(mme_bearer_t *bearer)
2017-04-13 10:58:58 +00:00
{
status_t rv;
mme_ue_t *ue = NULL;
enb_ue_t *enb_ue = NULL;
2017-04-13 10:58:58 +00:00
mme_enb_t *enb = NULL;
pkbuf_t *esmbuf = NULL, *s1apbuf = NULL;
d_assert(bearer, return, "Null param");
ue = bearer->ue;
d_assert(ue, return, "Null param");
enb_ue = ue->enb_ue;
d_assert(enb_ue, return, "Null param");
enb = enb_ue->enb;
d_assert(enb, return, "Null param");
2017-04-13 10:58:58 +00:00
rv = esm_build_information_request(&esmbuf, bearer);
d_assert(rv == CORE_OK && esmbuf, return, "esm_build failed");
rv = s1ap_build_downlink_nas_transport(&s1apbuf, enb_ue, esmbuf);
2017-04-13 10:58:58 +00:00
d_assert(rv == CORE_OK && s1apbuf,
pkbuf_free(esmbuf); return, "s1ap build error");
d_assert(s1ap_send_to_enb(enb, s1apbuf) == CORE_OK,, "s1ap send error");
}
2017-04-14 01:27:31 +00:00
void esm_handle_modify_bearer_request(mme_bearer_t *bearer)
2017-04-13 16:26:50 +00:00
{
status_t rv;
2017-04-27 14:06:10 +00:00
mme_sess_t *sess = NULL;
2017-04-13 16:26:50 +00:00
pkbuf_t *pkbuf = NULL;
d_assert(bearer, return, "Null param");
2017-04-27 14:06:10 +00:00
sess = bearer->sess;
d_assert(sess, return, "Null param");
2017-04-13 16:26:50 +00:00
rv = mme_s11_build_modify_bearer_request(&pkbuf, bearer);
d_assert(rv == CORE_OK, return, "S11 build error");
rv = mme_s11_send_to_sgw(bearer->sgw,
2017-04-27 14:06:10 +00:00
GTP_MODIFY_BEARER_REQUEST_TYPE, sess->sgw_s11_teid, pkbuf);
2017-04-13 16:26:50 +00:00
d_assert(rv == CORE_OK, return, "S11 send error");
}
2017-04-13 10:15:53 +00:00
void esm_handle_information_response(mme_bearer_t *bearer,
2017-04-11 06:07:46 +00:00
nas_esm_information_response_t *esm_information_response)
{
2017-04-12 04:45:57 +00:00
mme_ue_t *ue = NULL;
2017-04-11 11:44:38 +00:00
pkbuf_t *pkbuf = NULL;
status_t rv;
2017-04-11 06:13:30 +00:00
2017-04-13 10:15:53 +00:00
d_assert(bearer, return, "Null param");
ue = bearer->ue;
2017-04-12 04:45:57 +00:00
d_assert(ue, return, "Null param");
2017-04-11 12:38:24 +00:00
if (esm_information_response->presencemask &
NAS_ESM_INFORMATION_RESPONSE_ACCESS_POINT_NAME_PRESENT)
{
2017-04-13 10:15:53 +00:00
bearer->pdn = mme_pdn_find_by_apn(ue,
2017-04-11 12:38:24 +00:00
esm_information_response->access_point_name.apn);
2017-04-13 10:15:53 +00:00
d_assert(bearer->pdn, return, "No PDN Context[APN:%s])",
2017-04-11 12:38:24 +00:00
esm_information_response->access_point_name.apn);
}
2017-04-11 14:25:33 +00:00
if (esm_information_response->presencemask &
NAS_ESM_INFORMATION_RESPONSE_PROTOCOL_CONFIGURATION_OPTIONS_PRESENT)
{
nas_protocol_configuration_options_t *protocol_configuration_options =
&esm_information_response->protocol_configuration_options;
2017-04-13 10:15:53 +00:00
bearer->ue_pco_len = protocol_configuration_options->length;
d_assert(bearer->ue_pco_len <= MAX_PCO_LEN, return,
"length(%d) exceeds MAX:%d", bearer->ue_pco_len, MAX_PCO_LEN);
memcpy(bearer->ue_pco, protocol_configuration_options->buffer,
bearer->ue_pco_len);
2017-04-11 14:25:33 +00:00
}
2017-04-13 10:15:53 +00:00
rv = mme_s11_build_create_session_request(&pkbuf, bearer);
2017-04-11 11:44:38 +00:00
d_assert(rv == CORE_OK, return, "S11 build error");
2017-04-13 10:15:53 +00:00
rv = mme_s11_send_to_sgw(bearer->sgw,
2017-04-11 11:44:38 +00:00
GTP_CREATE_SESSION_REQUEST_TYPE, 0, pkbuf);
d_assert(rv == CORE_OK, return, "S11 send error");
2017-04-11 06:07:46 +00:00
}