open5gs/src/pcf/context.c

323 lines
7.8 KiB
C
Raw Normal View History

2020-12-11 19:03:20 +00:00
/*
* Copyright (C) 2019,2020 by Sukchan Lee <acetcom@gmail.com>
*
* This file is part of Open5GS.
*
* This program 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.
*
* This program 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 General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
#include "sbi-path.h"
static pcf_context_t self;
int __pcf_log_domain;
static OGS_POOL(pcf_ue_pool, pcf_ue_t);
static OGS_POOL(pcf_sess_pool, pcf_sess_t);
static int context_initialized = 0;
void pcf_context_init(void)
{
ogs_assert(context_initialized == 0);
/* Initialize PCF context */
memset(&self, 0, sizeof(pcf_context_t));
2021-01-01 02:07:08 +00:00
ogs_log_install_domain(&__ogs_dbi_domain, "dbi", ogs_core()->log.level);
2020-12-11 19:03:20 +00:00
ogs_log_install_domain(&__pcf_log_domain, "pcf", ogs_core()->log.level);
ogs_pool_init(&pcf_ue_pool, ogs_app()->max.ue);
ogs_pool_init(&pcf_sess_pool, ogs_app()->pool.sess);
ogs_list_init(&self.pcf_ue_list);
self.supi_hash = ogs_hash_make();
context_initialized = 1;
}
void pcf_context_final(void)
{
ogs_assert(context_initialized == 1);
pcf_ue_remove_all();
ogs_assert(self.supi_hash);
ogs_hash_destroy(self.supi_hash);
ogs_pool_final(&pcf_sess_pool);
ogs_pool_final(&pcf_ue_pool);
context_initialized = 0;
}
pcf_context_t *pcf_self(void)
{
return &self;
}
static int pcf_context_prepare(void)
{
self.nf_type = OpenAPI_nf_type_PCF;
return OGS_OK;
}
static int pcf_context_validation(void)
{
return OGS_OK;
}
int pcf_context_parse_config(void)
{
int rv;
yaml_document_t *document = NULL;
ogs_yaml_iter_t root_iter;
document = ogs_app()->document;
ogs_assert(document);
rv = pcf_context_prepare();
if (rv != OGS_OK) return rv;
ogs_yaml_iter_init(&root_iter, document);
while (ogs_yaml_iter_next(&root_iter)) {
const char *root_key = ogs_yaml_iter_key(&root_iter);
ogs_assert(root_key);
if (!strcmp(root_key, "pcf")) {
ogs_yaml_iter_t pcf_iter;
ogs_yaml_iter_recurse(&root_iter, &pcf_iter);
while (ogs_yaml_iter_next(&pcf_iter)) {
const char *pcf_key = ogs_yaml_iter_key(&pcf_iter);
ogs_assert(pcf_key);
if (!strcmp(pcf_key, "sbi")) {
/* handle config in sbi library */
} else
ogs_warn("unknown key `%s`", pcf_key);
}
}
}
rv = pcf_context_validation();
if (rv != OGS_OK) return rv;
return OGS_OK;
}
pcf_ue_t *pcf_ue_add(char *supi)
{
pcf_event_t e;
pcf_ue_t *pcf_ue = NULL;
ogs_assert(supi);
ogs_pool_alloc(&pcf_ue_pool, &pcf_ue);
ogs_assert(pcf_ue);
memset(pcf_ue, 0, sizeof *pcf_ue);
2021-01-01 02:07:08 +00:00
/* SBI Type */
2020-12-11 19:03:20 +00:00
pcf_ue->sbi.type = OGS_SBI_OBJ_UE_TYPE;
2021-01-01 02:07:08 +00:00
/* SBI Features */
OGS_SBI_FEATURES_SET(pcf_ue->am_policy_control_features,
OGS_SBI_NPCF_AM_POLICY_CONTROL_UE_AMBR_AUTHORIZATION);
2020-12-11 19:03:20 +00:00
pcf_ue->association_id = ogs_msprintf("%d",
(int)ogs_pool_index(&pcf_ue_pool, pcf_ue));
ogs_assert(pcf_ue->association_id);
pcf_ue->supi = ogs_strdup(supi);
ogs_assert(pcf_ue->supi);
ogs_hash_set(self.supi_hash, pcf_ue->supi, strlen(pcf_ue->supi), pcf_ue);
memset(&e, 0, sizeof(e));
e.pcf_ue = pcf_ue;
ogs_fsm_create(&pcf_ue->sm, pcf_am_state_initial, pcf_am_state_final);
ogs_fsm_init(&pcf_ue->sm, &e);
ogs_list_add(&self.pcf_ue_list, pcf_ue);
return pcf_ue;
}
void pcf_ue_remove(pcf_ue_t *pcf_ue)
{
pcf_event_t e;
ogs_assert(pcf_ue);
ogs_list_remove(&self.pcf_ue_list, pcf_ue);
memset(&e, 0, sizeof(e));
e.pcf_ue = pcf_ue;
ogs_fsm_fini(&pcf_ue->sm, &e);
ogs_fsm_delete(&pcf_ue->sm);
/* Free SBI object memory */
ogs_sbi_object_free(&pcf_ue->sbi);
pcf_sess_remove_all(pcf_ue);
OpenAPI_policy_association_request_free(pcf_ue->policy_association_request);
2021-01-01 02:07:08 +00:00
if (pcf_ue->subscribed_ue_ambr)
OpenAPI_ambr_free(pcf_ue->subscribed_ue_ambr);
2020-12-11 19:03:20 +00:00
ogs_assert(pcf_ue->association_id);
ogs_free(pcf_ue->association_id);
ogs_assert(pcf_ue->supi);
ogs_hash_set(self.supi_hash, pcf_ue->supi, strlen(pcf_ue->supi), NULL);
ogs_free(pcf_ue->supi);
if (pcf_ue->notification_uri)
ogs_free(pcf_ue->notification_uri);
ogs_pool_free(&pcf_ue_pool, pcf_ue);
}
void pcf_ue_remove_all()
{
pcf_ue_t *pcf_ue = NULL, *next = NULL;;
ogs_list_for_each_safe(&self.pcf_ue_list, next, pcf_ue)
pcf_ue_remove(pcf_ue);
}
pcf_ue_t *pcf_ue_find_by_supi(char *supi)
{
ogs_assert(supi);
return (pcf_ue_t *)ogs_hash_get(self.supi_hash, supi, strlen(supi));
}
pcf_ue_t *pcf_ue_find_by_association_id(char *association_id)
{
ogs_assert(association_id);
return ogs_pool_find(&pcf_ue_pool, atoll(association_id));
}
pcf_sess_t *pcf_sess_add(pcf_ue_t *pcf_ue, uint8_t psi)
{
pcf_event_t e;
pcf_sess_t *sess = NULL;
ogs_assert(pcf_ue);
ogs_assert(psi != OGS_NAS_PDU_SESSION_IDENTITY_UNASSIGNED);
ogs_pool_alloc(&pcf_sess_pool, &sess);
ogs_assert(sess);
memset(sess, 0, sizeof *sess);
2021-01-01 02:07:08 +00:00
/* SBI Type */
2020-12-11 19:03:20 +00:00
sess->sbi.type = OGS_SBI_OBJ_SESS_TYPE;
2021-01-01 02:07:08 +00:00
/* SBI Features */
OGS_SBI_FEATURES_SET(sess->smpolicycontrol_features,
OGS_SBI_NPCF_SMPOLICYCONTROL_DN_AUTHORIZATION);
2020-12-11 19:03:20 +00:00
sess->sm_policy_id = ogs_msprintf("%d",
(int)ogs_pool_index(&pcf_sess_pool, sess));
ogs_assert(sess->sm_policy_id);
sess->pcf_ue = pcf_ue;
sess->psi = psi;
sess->s_nssai.sst = 0;
sess->s_nssai.sd.v = OGS_S_NSSAI_NO_SD_VALUE;
memset(&e, 0, sizeof(e));
e.sess = sess;
ogs_fsm_create(&sess->sm, pcf_sm_state_initial, pcf_sm_state_final);
ogs_fsm_init(&sess->sm, &e);
ogs_list_add(&pcf_ue->sess_list, sess);
return sess;
}
void pcf_sess_remove(pcf_sess_t *sess)
{
pcf_event_t e;
ogs_assert(sess);
ogs_assert(sess->pcf_ue);
ogs_list_remove(&sess->pcf_ue->sess_list, sess);
memset(&e, 0, sizeof(e));
e.sess = sess;
ogs_fsm_fini(&sess->sm, &e);
ogs_fsm_delete(&sess->sm);
/* Free SBI object memory */
ogs_sbi_object_free(&sess->sbi);
ogs_assert(sess->sm_policy_id);
ogs_free(sess->sm_policy_id);
if (sess->dnn)
ogs_free(sess->dnn);
if (sess->notification_uri)
ogs_free(sess->notification_uri);
2021-01-01 02:07:08 +00:00
if (sess->subscribed_sess_ambr)
OpenAPI_ambr_free(sess->subscribed_sess_ambr);
if (sess->subscribed_default_qos)
OpenAPI_subscribed_default_qos_free(sess->subscribed_default_qos);
2020-12-11 19:03:20 +00:00
ogs_pool_free(&pcf_sess_pool, sess);
}
void pcf_sess_remove_all(pcf_ue_t *pcf_ue)
{
pcf_sess_t *sess = NULL, *next_sess = NULL;
ogs_assert(pcf_ue);
ogs_list_for_each_safe(&pcf_ue->sess_list, next_sess, sess)
pcf_sess_remove(sess);
}
pcf_sess_t *pcf_sess_find_by_sm_policy_id(pcf_ue_t *pcf_ue, char *sm_policy_id)
{
pcf_sess_t *sess = NULL;
ogs_assert(sm_policy_id);
ogs_list_for_each(&pcf_ue->sess_list, sess)
if (!strcmp(sess->sm_policy_id, sm_policy_id)) return sess;
return NULL;
}
pcf_sess_t *pcf_sess_find_by_psi(pcf_ue_t *pcf_ue, uint8_t psi)
{
pcf_sess_t *sess = NULL;
ogs_list_for_each(&pcf_ue->sess_list, sess)
if (psi == sess->psi) return sess;
return NULL;
}
pcf_ue_t *pcf_ue_cycle(pcf_ue_t *pcf_ue)
{
return ogs_pool_cycle(&pcf_ue_pool, pcf_ue);
}
pcf_sess_t *pcf_sess_cycle(pcf_sess_t *sess)
{
return ogs_pool_cycle(&pcf_sess_pool, sess);
}