/* * Copyright (C) 2019,2020 by Sukchan Lee * * 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 . */ #ifndef UDM_CONTEXT_H #define UDM_CONTEXT_H #include "ogs-app.h" #include "ogs-crypt.h" #include "ogs-sbi.h" #include "udm-sm.h" #include "timer.h" #ifdef __cplusplus extern "C" { #endif #define MAX_NUM_OF_SERVED_GUAMI 8 extern int __udm_log_domain; #undef OGS_LOG_DOMAIN #define OGS_LOG_DOMAIN __udm_log_domain typedef struct udm_context_s { ogs_list_t udm_ue_list; ogs_hash_t *suci_hash; ogs_hash_t *supi_hash; } udm_context_t; struct udm_ue_s { ogs_sbi_object_t sbi; ogs_fsm_t sm; OpenAPI_auth_event_t *auth_event; OpenAPI_amf3_gpp_access_registration_t *amf_3gpp_access_registration; char *ctx_id; char *suci; char *supi; char *serving_network_name; char *ausf_instance_id; char *amf_instance_id; char *dereg_callback_uri; uint8_t k[OGS_KEY_LEN]; uint8_t opc[OGS_KEY_LEN]; uint8_t amf[OGS_AMF_LEN]; uint8_t rand[OGS_RAND_LEN]; uint8_t sqn[OGS_SQN_LEN]; ogs_guami_t guami; OpenAPI_auth_type_e auth_type; OpenAPI_rat_type_e rat_type; #define UDM_NF_INSTANCE_CLEAR(_cAUSE, _nFInstance) \ do { \ ogs_assert(_nFInstance); \ if ((_nFInstance)->reference_count == 1) { \ ogs_info("[%s] (%s) NF removed", (_nFInstance)->id, (_cAUSE)); \ udm_nf_fsm_fini((_nFInstance)); \ ogs_sbi_nf_instance_remove(_nFInstance); \ } else { \ /* There is an assocation with other context */ \ ogs_info("[%s:%d] (%s) NF suspended", \ _nFInstance->id, _nFInstance->reference_count, (_cAUSE)); \ OGS_FSM_TRAN(&_nFInstance->sm, udm_nf_state_de_registered); \ ogs_fsm_dispatch(&_nFInstance->sm, NULL); \ } \ } while(0) }; void udm_context_init(void); void udm_context_final(void); udm_context_t *udm_self(void); int udm_context_parse_config(void); udm_ue_t *udm_ue_add(char *suci); void udm_ue_remove(udm_ue_t *udm_ue); void udm_ue_remove_all(void); udm_ue_t *udm_ue_find_by_suci(char *suci); udm_ue_t *udm_ue_find_by_supi(char *supi); udm_ue_t *udm_ue_find_by_suci_or_supi(char *suci_or_supi); udm_ue_t *udm_ue_find_by_ctx_id(char *ctx_id); udm_ue_t *udm_ue_cycle(udm_ue_t *udm_ue); #ifdef __cplusplus } #endif #endif /* UDM_CONTEXT_H */