| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #ifndef AMF_CONTEXT_H |
| #define AMF_CONTEXT_H |
|
|
| #include "ogs-app.h" |
| #include "ogs-sbi.h" |
| #include "ogs-sctp.h" |
| #include "ogs-ngap.h" |
| #include "ogs-nas-5gs.h" |
|
|
| #include "amf-sm.h" |
| #include "timer.h" |
| #include "metrics.h" |
|
|
| #ifdef __cplusplus |
| extern "C" { |
| #endif |
|
|
| extern int __amf_log_domain; |
| extern int __gmm_log_domain; |
|
|
| #undef OGS_LOG_DOMAIN |
| #define OGS_LOG_DOMAIN __amf_log_domain |
|
|
| typedef struct ran_ue_s ran_ue_t; |
| typedef struct amf_ue_s amf_ue_t; |
|
|
| typedef uint32_t amf_m_tmsi_t; |
|
|
| typedef struct amf_context_s { |
| |
| int num_of_served_guami; |
| ogs_guami_t served_guami[OGS_MAX_NUM_OF_SERVED_GUAMI]; |
|
|
| |
| int num_of_served_tai; |
| struct { |
| ogs_5gs_tai0_list_t list0; |
| ogs_5gs_tai1_list_t list1; |
| ogs_5gs_tai2_list_t list2; |
| } served_tai[OGS_MAX_NUM_OF_SUPPORTED_TA]; |
|
|
| |
| int num_of_plmn_support; |
| struct { |
| ogs_plmn_id_t plmn_id; |
| int num_of_s_nssai; |
| ogs_s_nssai_t s_nssai[OGS_MAX_NUM_OF_SLICE_SUPPORT]; |
| } plmn_support[OGS_MAX_NUM_OF_PLMN]; |
|
|
| |
| int default_reject_cause; |
| int num_of_access_control; |
| struct { |
| int reject_cause; |
| ogs_plmn_id_t plmn_id; |
| } access_control[OGS_MAX_NUM_OF_PLMN]; |
|
|
| |
| |
| |
| |
| |
| int num_of_ciphering_order; |
| uint8_t ciphering_order[OGS_MAX_NUM_OF_ALGORITHM]; |
| |
| |
| |
| |
| |
| int num_of_integrity_order; |
| uint8_t integrity_order[OGS_MAX_NUM_OF_ALGORITHM]; |
|
|
| |
| ogs_nas_network_name_t short_name; |
| ogs_nas_network_name_t full_name; |
|
|
| |
| const char *amf_name; |
|
|
| |
| uint8_t relative_capacity; |
|
|
| |
| uint64_t amf_ue_ngap_id; |
|
|
| ogs_list_t gnb_list; |
| ogs_list_t amf_ue_list; |
|
|
| ogs_hash_t *gnb_addr_hash; |
| ogs_hash_t *gnb_id_hash; |
| ogs_hash_t *guti_ue_hash; |
| ogs_hash_t *suci_hash; |
| ogs_hash_t *supi_hash; |
|
|
| uint16_t ngap_port; |
|
|
| ogs_list_t ngap_list; |
| ogs_list_t ngap_list6; |
|
|
| struct { |
| struct { |
| ogs_time_t value; |
| } t3502, t3512; |
| } time; |
|
|
| } amf_context_t; |
|
|
| typedef struct amf_gnb_s { |
| ogs_lnode_t lnode; |
|
|
| ogs_pool_id_t id; |
|
|
| ogs_fsm_t sm; |
|
|
| uint32_t gnb_id; |
| ogs_plmn_id_t plmn_id; |
| ogs_sctp_sock_t sctp; |
|
|
| struct { |
| bool ng_setup_success; |
| } state; |
|
|
| int max_num_of_ostreams; |
| uint16_t ostream_id; |
|
|
| int num_of_supported_ta_list; |
| struct { |
| ogs_uint24_t tac; |
| int num_of_bplmn_list; |
| struct { |
| ogs_plmn_id_t plmn_id; |
| int num_of_s_nssai; |
| ogs_s_nssai_t s_nssai[OGS_MAX_NUM_OF_SLICE_SUPPORT]; |
| } bplmn_list[OGS_MAX_NUM_OF_BPLMN]; |
| } supported_ta_list[OGS_MAX_NUM_OF_SUPPORTED_TA]; |
|
|
| OpenAPI_rat_type_e rat_type; |
|
|
| ogs_pkbuf_t *ng_reset_ack; |
|
|
| ogs_list_t ran_ue_list; |
|
|
| } amf_gnb_t; |
|
|
| struct ran_ue_s { |
| ogs_lnode_t lnode; |
| uint32_t index; |
| ogs_pool_id_t id; |
|
|
| |
| #define INVALID_UE_NGAP_ID 0xffffffffffffffffULL |
| uint64_t ran_ue_ngap_id; |
| uint64_t amf_ue_ngap_id; |
|
|
| uint16_t gnb_ostream_id; |
|
|
| |
| bool ue_context_requested; |
| bool initial_context_setup_request_sent; |
|
|
| #define CONTEXT_SETUP_ESTABLISHED(__aMF) \ |
| CM_CONNECTED(__aMF) && \ |
| (ran_ue_find_by_id((__aMF)->ran_ue_id)-> \ |
| initial_context_setup_response_received == true) |
| bool initial_context_setup_response_received; |
| bool ue_ambr_sent; |
|
|
| |
| ogs_pool_id_t source_ue_id; |
| ogs_pool_id_t target_ue_id; |
|
|
| |
| |
| |
| |
| struct { |
| ogs_5gs_tai_t nr_tai; |
| ogs_nr_cgi_t nr_cgi; |
| } saved; |
|
|
| |
| ogs_timer_t *t_ng_holding; |
|
|
| |
| |
| #define NGAP_UE_CTX_REL_INVALID_ACTION 0 |
| #define NGAP_UE_CTX_REL_NG_CONTEXT_REMOVE 1 |
| #define NGAP_UE_CTX_REL_NG_REMOVE_AND_UNLINK 2 |
| #define NGAP_UE_CTX_REL_UE_CONTEXT_REMOVE 3 |
| #define NGAP_UE_CTX_REL_NG_HANDOVER_COMPLETE 4 |
| #define NGAP_UE_CTX_REL_NG_HANDOVER_CANCEL 5 |
| #define NGAP_UE_CTX_REL_NG_HANDOVER_FAILURE 6 |
| uint8_t ue_ctx_rel_action; |
|
|
| bool part_of_ng_reset_requested; |
|
|
| struct { |
| uint16_t activated; |
| } psimask; |
|
|
| |
| ogs_pool_id_t gnb_id; |
| ogs_pool_id_t amf_ue_id; |
| }; |
|
|
| struct amf_ue_s { |
| ogs_sbi_object_t sbi; |
| ogs_pool_id_t id; |
|
|
| ogs_fsm_t sm; |
|
|
| struct { |
| uint8_t message_type; |
| int access_type; |
|
|
| struct { |
| ED3(uint8_t tsc:1;, |
| uint8_t ksi:3;, |
| uint8_t spare:4;) |
| } amf, ue; |
|
|
| ogs_nas_5gs_registration_type_t registration; |
| ogs_nas_de_registration_type_t de_registration; |
|
|
| struct { |
| ED4(uint8_t uplink_data_status:1;, |
| uint8_t pdu_session_status:1;, |
| uint8_t allowed_pdu_session_status:1;, |
| uint8_t reserved:5;) |
| } present; |
|
|
| } __attribute__ ((packed)) nas; |
|
|
| |
| #define AMF_UE_HAVE_SUCI(__aMF) \ |
| ((__aMF) && ((__aMF)->suci)) |
| char *suci; |
| char *supi; |
| ogs_nas_5gs_mobile_identity_suci_t nas_mobile_identity_suci; |
|
|
| |
| ogs_plmn_id_t home_plmn_id; |
|
|
| char *pei; |
| uint8_t masked_imeisv[OGS_MAX_IMEISV_LEN]; |
| int masked_imeisv_len; |
| char imeisv_bcd[OGS_MAX_IMEISV_BCD_LEN+1]; |
| ogs_nas_mobile_identity_imeisv_t nas_mobile_identity_imeisv; |
|
|
| int num_of_msisdn; |
| char *msisdn[OGS_MAX_NUM_OF_MSISDN]; |
|
|
| struct { |
| amf_m_tmsi_t *m_tmsi; |
| ogs_nas_5gs_guti_t guti; |
| } current, next; |
|
|
| ogs_nas_5gs_guti_t old_guti; |
|
|
| |
| ogs_guami_t *guami; |
| uint16_t gnb_ostream_id; |
| ogs_5gs_tai_t nr_tai; |
| ogs_nr_cgi_t nr_cgi; |
| ogs_time_t ue_location_timestamp; |
| ogs_plmn_id_t last_visited_plmn_id; |
| ogs_nas_ue_usage_setting_t ue_usage_setting; |
|
|
| struct { |
| int num_of_s_nssai; |
| ogs_nas_s_nssai_ie_t s_nssai[OGS_MAX_NUM_OF_SLICE]; |
| } requested_nssai, allowed_nssai; |
|
|
| struct { |
| int num_of_s_nssai; |
| ogs_nas_rejected_s_nssai_t s_nssai[OGS_MAX_NUM_OF_SLICE]; |
| } rejected_nssai; |
|
|
| |
| |
| #define PCF_AM_POLICY_ASSOCIATED(__aMF) \ |
| ((__aMF) && ((__aMF)->policy_association.id)) |
| #define PCF_AM_POLICY_CLEAR(__aMF) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| if ((__aMF)->policy_association.resource_uri) \ |
| ogs_free((__aMF)->policy_association.resource_uri); \ |
| (__aMF)->policy_association.resource_uri = NULL; \ |
| if ((__aMF)->policy_association.id) \ |
| ogs_free((__aMF)->policy_association.id); \ |
| (__aMF)->policy_association.id = NULL; \ |
| } while(0) |
| #define PCF_AM_POLICY_STORE(__aMF, __rESOURCE_URI, __iD) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| ogs_assert((__rESOURCE_URI)); \ |
| ogs_assert((__iD)); \ |
| PCF_AM_POLICY_CLEAR(__aMF); \ |
| (__aMF)->policy_association.resource_uri = ogs_strdup(__rESOURCE_URI); \ |
| ogs_assert((__aMF)->policy_association.resource_uri); \ |
| (__aMF)->policy_association.id = ogs_strdup(__iD); \ |
| ogs_assert((__aMF)->policy_association.id); \ |
| } while(0) |
| struct { |
| char *resource_uri; |
| char *id; |
| ogs_sbi_client_t *client; |
| } policy_association; |
|
|
| |
| struct { |
| bool lte_positioning_protocol_capability; |
| bool ho_attach; |
| bool s1_mode; |
| } gmm_capability; |
|
|
| #define SECURITY_CONTEXT_IS_VALID(__aMF) \ |
| ((__aMF) && \ |
| ((__aMF)->security_context_available == 1) && \ |
| ((__aMF)->mac_failed == 0) && \ |
| ((__aMF)->nas.ue.ksi != OGS_NAS_KSI_NO_KEY_IS_AVAILABLE)) |
| #define CLEAR_SECURITY_CONTEXT(__aMF) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| (__aMF)->security_context_available = 0; \ |
| (__aMF)->mac_failed = 0; \ |
| } while(0) |
| int security_context_available; |
| int mac_failed; |
|
|
| |
| ogs_nas_ue_security_capability_t ue_security_capability; |
| ogs_nas_ue_network_capability_t ue_network_capability; |
| #define CHECK_5G_AKA_CONFIRMATION(__aMF) \ |
| ((__aMF) && ((__aMF)->confirmation_for_5g_aka.resource_uri)) |
| #define STORE_5G_AKA_CONFIRMATION(__aMF, __rESOURCE_URI) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| CLEAR_5G_AKA_CONFIRMATION(__aMF); \ |
| (__aMF)->confirmation_for_5g_aka.resource_uri = \ |
| ogs_strdup(__rESOURCE_URI); \ |
| ogs_assert((__aMF)->confirmation_for_5g_aka.resource_uri); \ |
| } while(0) |
| #define CLEAR_5G_AKA_CONFIRMATION(__aMF) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| if ((__aMF)->confirmation_for_5g_aka.resource_uri) \ |
| ogs_free((__aMF)->confirmation_for_5g_aka.resource_uri); \ |
| (__aMF)->confirmation_for_5g_aka.resource_uri = NULL; \ |
| } while(0) |
| struct { |
| char *resource_uri; |
| ogs_sbi_client_t *client; |
| } confirmation_for_5g_aka; |
| uint8_t rand[OGS_RAND_LEN]; |
| uint8_t autn[OGS_AUTN_LEN]; |
| uint8_t xres_star[OGS_MAX_RES_LEN]; |
|
|
| uint8_t abba[OGS_NAS_MAX_ABBA_LEN]; |
| uint8_t abba_len; |
|
|
| uint8_t hxres_star[OGS_MAX_RES_LEN]; |
| uint8_t kamf[OGS_SHA256_DIGEST_SIZE]; |
| OpenAPI_auth_result_e auth_result; |
|
|
| uint8_t knas_int[OGS_SHA256_DIGEST_SIZE/2]; |
| uint8_t knas_enc[OGS_SHA256_DIGEST_SIZE/2]; |
| uint32_t dl_count; |
| union { |
| struct { |
| ED3(uint8_t spare;, |
| uint16_t overflow;, |
| uint8_t sqn;) |
| } __attribute__ ((packed)); |
| uint32_t i32; |
| } ul_count; |
| uint8_t kgnb[OGS_SHA256_DIGEST_SIZE]; |
|
|
| struct { |
| ED2(uint8_t nhcc_spare:5;, |
| uint8_t nhcc:3;) |
| }; |
| uint8_t nh[OGS_SHA256_DIGEST_SIZE]; |
|
|
| |
| |
| |
| |
| |
| uint8_t selected_enc_algorithm; |
| |
| |
| |
| |
| |
| uint8_t selected_int_algorithm; |
|
|
| |
| ogs_bitrate_t ue_ambr; |
| int num_of_slice; |
| OpenAPI_list_t *rat_restrictions; |
| ogs_slice_data_t slice[OGS_MAX_NUM_OF_SLICE]; |
|
|
| uint64_t am_policy_control_features; |
|
|
| #define CM_CONNECTED(__aMF) \ |
| ((__aMF) && \ |
| ((__aMF)->ran_ue_id >= OGS_MIN_POOL_ID) && \ |
| ((__aMF)->ran_ue_id <= OGS_MAX_POOL_ID) && \ |
| (ran_ue_find_by_id((__aMF)->ran_ue_id))) |
| #define CM_IDLE(__aMF) \ |
| ((__aMF) && \ |
| (((__aMF)->ran_ue_id < OGS_MIN_POOL_ID) || \ |
| ((__aMF)->ran_ue_id > OGS_MAX_POOL_ID) || \ |
| (ran_ue_find_by_id((__aMF)->ran_ue_id) == NULL))) |
| |
| ogs_pool_id_t ran_ue_id; |
|
|
| #define HOLDING_NG_CONTEXT(__aMF) \ |
| do { \ |
| ran_ue_t *ran_ue_holding = NULL; \ |
| \ |
| (__aMF)->ran_ue_holding_id = OGS_INVALID_POOL_ID; \ |
| \ |
| ran_ue_holding = ran_ue_find_by_id((__aMF)->ran_ue_id); \ |
| if (ran_ue_holding) { \ |
| ran_ue_deassociate(ran_ue_holding); \ |
| \ |
| ogs_warn("[%s] Holding NG Context", (__aMF)->suci); \ |
| ogs_warn("[%s] RAN_UE_NGAP_ID[%lld] AMF_UE_NGAP_ID[%lld]", \ |
| (__aMF)->suci, \ |
| (long long)ran_ue_holding->ran_ue_ngap_id, \ |
| (long long)ran_ue_holding->amf_ue_ngap_id); \ |
| \ |
| ran_ue_holding->ue_ctx_rel_action = \ |
| NGAP_UE_CTX_REL_NG_CONTEXT_REMOVE; \ |
| ogs_timer_start(ran_ue_holding->t_ng_holding, \ |
| amf_timer_cfg(AMF_TIMER_NG_HOLDING)->duration); \ |
| \ |
| (__aMF)->ran_ue_holding_id = (__aMF)->ran_ue_id; \ |
| } else \ |
| ogs_error("[%s] NG Context has already been removed", \ |
| (__aMF)->suci); \ |
| } while(0) |
| #define CLEAR_NG_CONTEXT(__aMF) \ |
| do { \ |
| ran_ue_t *ran_ue_holding = NULL; \ |
| \ |
| ran_ue_holding = ran_ue_find_by_id((__aMF)->ran_ue_holding_id); \ |
| if (ran_ue_holding) { \ |
| int r; \ |
| ogs_warn("[%s] Clear NG Context", (__aMF)->suci); \ |
| ogs_warn("[%s] RAN_UE_NGAP_ID[%lld] AMF_UE_NGAP_ID[%lld]", \ |
| (__aMF)->suci, \ |
| (long long)ran_ue_holding->ran_ue_ngap_id, \ |
| (long long)ran_ue_holding->amf_ue_ngap_id); \ |
| \ |
| r = ngap_send_ran_ue_context_release_command( \ |
| ran_ue_holding, \ |
| NGAP_Cause_PR_nas, NGAP_CauseNas_normal_release, \ |
| NGAP_UE_CTX_REL_NG_CONTEXT_REMOVE, 0); \ |
| ogs_expect(r == OGS_OK); \ |
| ogs_assert(r != OGS_ERROR); \ |
| } \ |
| (__aMF)->ran_ue_holding_id = OGS_INVALID_POOL_ID; \ |
| } while(0) |
| ogs_pool_id_t ran_ue_holding_id; |
|
|
| #define CLEAR_AMF_UE_ALL_TIMERS(__aMF) \ |
| do { \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3513); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3522); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3550); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3555); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3560); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->t3570); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->mobile_reachable); \ |
| CLEAR_AMF_UE_TIMER((__aMF)->implicit_deregistration); \ |
| } while(0); |
| #define CLEAR_AMF_UE_TIMER(__aMF_UE_TIMER) \ |
| do { \ |
| ogs_timer_stop((__aMF_UE_TIMER).timer); \ |
| if ((__aMF_UE_TIMER).pkbuf) { \ |
| ogs_pkbuf_free((__aMF_UE_TIMER).pkbuf); \ |
| (__aMF_UE_TIMER).pkbuf = NULL; \ |
| } \ |
| (__aMF_UE_TIMER).retry_count = 0; \ |
| } while(0); |
| struct { |
| ogs_pkbuf_t *pkbuf; |
| ogs_timer_t *timer; |
| uint32_t retry_count;; |
| } t3513, t3522, t3550, t3555, t3560, t3570, mobile_reachable, implicit_deregistration; |
|
|
| |
| OCTET_STRING_t ueRadioCapability; |
|
|
| |
| struct { |
| NGAP_Cause_PR group; |
| long cause; |
| } deactivation; |
|
|
| |
| struct { |
| NGAP_HandoverType_t type; |
| OCTET_STRING_t container; |
| NGAP_Cause_PR group; |
| long cause; |
| } handover; |
|
|
| |
| #define UDM_SDM_SUBSCRIBED(__aMF) \ |
| ((__aMF) && ((__aMF)->data_change_subscription.id)) |
| #define UDM_SDM_CLEAR(__aMF) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| if ((__aMF)->data_change_subscription.resource_uri) \ |
| ogs_free((__aMF)->data_change_subscription.resource_uri); \ |
| (__aMF)->data_change_subscription.resource_uri = NULL; \ |
| if ((__aMF)->data_change_subscription.id) \ |
| ogs_free((__aMF)->data_change_subscription.id); \ |
| (__aMF)->data_change_subscription.id = NULL; \ |
| } while(0) |
| #define UDM_SDM_STORE(__aMF, __rESOURCE_URI, __iD) \ |
| do { \ |
| ogs_assert((__aMF)); \ |
| ogs_assert((__rESOURCE_URI)); \ |
| ogs_assert((__iD)); \ |
| UDM_SDM_CLEAR(__aMF); \ |
| (__aMF)->data_change_subscription.resource_uri = \ |
| ogs_strdup(__rESOURCE_URI); \ |
| ogs_assert((__aMF)->data_change_subscription.resource_uri); \ |
| (__aMF)->data_change_subscription.id = ogs_strdup(__iD); \ |
| ogs_assert((__aMF)->data_change_subscription.id); \ |
| } while(0) |
| struct { |
| char *resource_uri; |
| char *id; |
| ogs_sbi_client_t *client; |
| } data_change_subscription; |
|
|
| struct { |
| |
| |
| |
| |
| bool n1_done; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| bool sbi_done; |
| } explict_de_registered; |
|
|
| ogs_list_t sess_list; |
| }; |
|
|
| typedef struct amf_sess_s { |
| ogs_sbi_object_t sbi; |
| ogs_pool_id_t id; |
|
|
| uint8_t psi; |
| uint8_t pti; |
|
|
| #define SESSION_CONTEXT_IN_SMF(__sESS) \ |
| ((__sESS) && (__sESS)->sm_context.ref) |
| #define STORE_SESSION_CONTEXT(__sESS, __rESOURCE_URI, __rEF) \ |
| do { \ |
| ogs_assert(__sESS); \ |
| ogs_assert(__rESOURCE_URI); \ |
| ogs_assert(__rEF); \ |
| CLEAR_SESSION_CONTEXT(__sESS); \ |
| (__sESS)->sm_context.resource_uri = ogs_strdup(__rESOURCE_URI); \ |
| ogs_assert((__sESS)->sm_context.resource_uri); \ |
| (__sESS)->sm_context.ref = ogs_strdup(__rEF); \ |
| ogs_assert((__sESS)->sm_context.ref); \ |
| } while(0); |
| #define CLEAR_SESSION_CONTEXT(__sESS) \ |
| do { \ |
| ogs_assert(__sESS); \ |
| if ((__sESS)->sm_context.ref) \ |
| ogs_free((__sESS)->sm_context.ref); \ |
| (__sESS)->sm_context.ref = NULL; \ |
| if ((__sESS)->sm_context.resource_uri) \ |
| ogs_free((__sESS)->sm_context.resource_uri); \ |
| (__sESS)->sm_context.resource_uri = NULL; \ |
| } while(0); |
|
|
| |
| |
| struct { |
| char *resource_uri; |
| char *ref; |
| ogs_sbi_client_t *client; |
| } sm_context; |
|
|
| bool pdu_session_release_complete_received; |
| bool pdu_session_resource_release_response_received; |
|
|
| |
| |
| ogs_pkbuf_t *pdu_session_establishment_accept; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| OpenAPI_resource_status_e resource_status; |
| bool n1_released; |
| bool n2_released; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| uint8_t old_gsm_type, current_gsm_type; |
|
|
| struct { |
| ogs_pkbuf_t *pdu_session_resource_setup_request; |
| ogs_pkbuf_t *pdu_session_resource_modification_command; |
| ogs_pkbuf_t *path_switch_request_ack; |
| ogs_pkbuf_t *handover_request; |
| ogs_pkbuf_t *handover_command; |
| } transfer; |
| #define AMF_SESS_STORE_N2_TRANSFER(__sESS, __n2Type, __n2Buf) \ |
| do { \ |
| ogs_assert(__sESS); \ |
| if ((__sESS)->transfer.__n2Type) { \ |
| amf_ue_t *amf_ue = amf_ue_find_by_id((__sESS)->amf_ue_id); \ |
| if (amf_ue) \ |
| ogs_warn("[%s:%d] " \ |
| "N2 transfer message duplicated. Overwritten", \ |
| amf_ue->supi, (__sESS)->psi); \ |
| ogs_pkbuf_free((__sESS)->transfer.__n2Type); \ |
| } \ |
| (__sESS)->transfer.__n2Type = __n2Buf; \ |
| ogs_assert((__sESS)->transfer.__n2Type); \ |
| } while(0); |
|
|
| #define AMF_SESS_CLEAR_N2_TRANSFER(__sESS, __n2Type) \ |
| do { \ |
| if ((__sESS)->transfer.__n2Type) \ |
| ogs_pkbuf_free((__sESS)->transfer.__n2Type); \ |
| (__sESS)->transfer.__n2Type = NULL; \ |
| } while(0); |
|
|
| #define AMF_UE_CLEAR_N2_TRANSFER(__aMF, __n2Type) \ |
| do { \ |
| amf_sess_t *sess = NULL; \ |
| ogs_list_for_each(&((__aMF)->sess_list), sess) { \ |
| AMF_SESS_CLEAR_N2_TRANSFER(sess, __n2Type) \ |
| } \ |
| } while(0); |
|
|
| struct { |
| |
| bool ongoing; |
| |
| char *location; |
| |
| char *n1n2_failure_txf_notif_uri; |
| |
| ogs_sbi_client_t *client; |
| } paging; |
| #define AMF_SESS_STORE_PAGING_INFO(__sESS, __lOCATION, __uRI) \ |
| do { \ |
| ogs_assert(__sESS); \ |
| ogs_assert(__lOCATION); \ |
| AMF_SESS_CLEAR_PAGING_INFO(__sESS) \ |
| (__sESS)->paging.ongoing = true; \ |
| ((__sESS)->paging.location) = ogs_strdup(__lOCATION); \ |
| ogs_assert((__sESS)->paging.location); \ |
| if (__uRI) { \ |
| ((__sESS)->paging.n1n2_failure_txf_notif_uri) = ogs_strdup(__uRI); \ |
| ogs_assert((__sESS)->paging.n1n2_failure_txf_notif_uri); \ |
| } \ |
| } while(0); |
| #define AMF_SESS_CLEAR_PAGING_INFO(__sESS) \ |
| do { \ |
| if ((__sESS)->paging.ongoing == true) { \ |
| ogs_assert((__sESS)->paging.location); \ |
| ogs_free((__sESS)->paging.location); \ |
| ((__sESS)->paging.location) = NULL; \ |
| if ((__sESS)->paging.n1n2_failure_txf_notif_uri) { \ |
| ogs_free((__sESS)->paging.n1n2_failure_txf_notif_uri); \ |
| ((__sESS)->paging.n1n2_failure_txf_notif_uri) = NULL; \ |
| } \ |
| ((__sESS)->paging.ongoing) = false; \ |
| } \ |
| } while(0); |
| #define AMF_UE_CLEAR_PAGING_INFO(__aMF) \ |
| do { \ |
| amf_sess_t *sess = NULL; \ |
| ogs_list_for_each(&((__aMF)->sess_list), sess) { \ |
| AMF_SESS_CLEAR_PAGING_INFO(sess); \ |
| } \ |
| } while(0); |
|
|
| struct { |
| uint8_t type; |
| ogs_pkbuf_t *n1buf; |
| ogs_pkbuf_t *n2buf; |
| } gsm_message; |
|
|
| #define AMF_SESS_STORE_5GSM_MESSAGE(__sESS, __tYPE, __n1Buf, __n2Buf) \ |
| do { \ |
| amf_ue_t *amf_ue = NULL; \ |
| ogs_assert(__sESS); \ |
| amf_ue = amf_ue_find_by_id((__sESS)->amf_ue_id); \ |
| if ((__sESS)->gsm_message.n1buf) { \ |
| if (amf_ue) \ |
| ogs_warn("[%s:%d] N1 message duplicated. Overwritten", \ |
| amf_ue->supi, (__sESS)->psi); \ |
| ogs_pkbuf_free((__sESS)->gsm_message.n1buf); \ |
| } \ |
| (__sESS)->gsm_message.n1buf = __n1Buf; \ |
| \ |
| if ((__sESS)->gsm_message.n2buf) { \ |
| if (amf_ue) \ |
| ogs_warn("[%s:%d] N2 message duplicated. Overwritten", \ |
| amf_ue->supi, (__sESS)->psi); \ |
| ogs_pkbuf_free((__sESS)->gsm_message.n2buf); \ |
| } \ |
| (__sESS)->gsm_message.n2buf = __n2Buf; \ |
| \ |
| ogs_assert((__sESS)->gsm_message.n2buf); \ |
| \ |
| (__sESS)->gsm_message.type = __tYPE; \ |
| } while(0); |
|
|
| #define AMF_SESS_CLEAR_5GSM_MESSAGE(__sESS) \ |
| do { \ |
| if ((__sESS)->gsm_message.n1buf) \ |
| ogs_pkbuf_free((__sESS)->gsm_message.n1buf); \ |
| (__sESS)->gsm_message.n1buf = NULL; \ |
| if ((__sESS)->gsm_message.n2buf) \ |
| ogs_pkbuf_free((__sESS)->gsm_message.n2buf); \ |
| (__sESS)->gsm_message.n2buf = NULL; \ |
| (__sESS)->gsm_message.type = 0; \ |
| } while(0); |
|
|
| #define AMF_UE_CLEAR_5GSM_MESSAGE(__aMF) \ |
| do { \ |
| amf_sess_t *sess = NULL; \ |
| ogs_list_for_each(&((__aMF)->sess_list), sess) { \ |
| AMF_SESS_CLEAR_5GSM_MESSAGE(sess) \ |
| } \ |
| } while(0); |
|
|
| struct { |
| char *nsi_id; |
| struct { |
| char *id; |
| ogs_sbi_client_t *client; |
| } nrf; |
| } nssf; |
|
|
| |
| uint8_t payload_container_type; |
| ogs_pkbuf_t *payload_container; |
|
|
| |
| ogs_list_t bearer_list; |
|
|
| |
| ogs_pool_id_t amf_ue_id; |
| ogs_pool_id_t ran_ue_id; |
|
|
| ogs_s_nssai_t s_nssai; |
| ogs_s_nssai_t mapped_hplmn; |
| char *dnn; |
|
|
| } amf_sess_t; |
|
|
| void amf_context_init(void); |
| void amf_context_final(void); |
| amf_context_t *amf_self(void); |
|
|
| int amf_context_parse_config(void); |
| int amf_context_nf_info(void); |
|
|
| amf_gnb_t *amf_gnb_add(ogs_sock_t *sock, ogs_sockaddr_t *addr); |
| void amf_gnb_remove(amf_gnb_t *gnb); |
| void amf_gnb_remove_all(void); |
| amf_gnb_t *amf_gnb_find_by_addr(ogs_sockaddr_t *addr); |
| amf_gnb_t *amf_gnb_find_by_gnb_id(uint32_t gnb_id); |
| int amf_gnb_set_gnb_id(amf_gnb_t *gnb, uint32_t gnb_id); |
| int amf_gnb_sock_type(ogs_sock_t *sock); |
| amf_gnb_t *amf_gnb_find_by_id(ogs_pool_id_t id); |
|
|
| ran_ue_t *ran_ue_add(amf_gnb_t *gnb, uint64_t ran_ue_ngap_id); |
| void ran_ue_remove(ran_ue_t *ran_ue); |
| void ran_ue_switch_to_gnb(ran_ue_t *ran_ue, amf_gnb_t *new_gnb); |
| ran_ue_t *ran_ue_find_by_ran_ue_ngap_id( |
| amf_gnb_t *gnb, uint64_t ran_ue_ngap_id); |
| ran_ue_t *ran_ue_find(uint32_t index); |
| ran_ue_t *ran_ue_find_by_amf_ue_ngap_id(uint64_t amf_ue_ngap_id); |
| ran_ue_t *ran_ue_find_by_id(ogs_pool_id_t id); |
|
|
| void amf_ue_new_guti(amf_ue_t *amf_ue); |
| void amf_ue_confirm_guti(amf_ue_t *amf_ue); |
|
|
| amf_ue_t *amf_ue_add(ran_ue_t *ran_ue); |
| void amf_ue_remove(amf_ue_t *amf_ue); |
| void amf_ue_remove_all(void); |
|
|
| void amf_ue_fsm_init(amf_ue_t *amf_ue); |
| void amf_ue_fsm_fini(amf_ue_t *amf_ue); |
|
|
| amf_ue_t *amf_ue_find_by_guti(ogs_nas_5gs_guti_t *nas_guti); |
| amf_ue_t *amf_ue_find_by_suci(char *suci); |
| amf_ue_t *amf_ue_find_by_supi(char *supi); |
| amf_ue_t *amf_ue_find_by_ue_context_id(char *ue_context_id); |
|
|
| amf_ue_t *amf_ue_find_by_message(ogs_nas_5gs_message_t *message); |
| void amf_ue_set_suci(amf_ue_t *amf_ue, |
| ogs_nas_5gs_mobile_identity_t *mobile_identity); |
| void amf_ue_set_supi(amf_ue_t *amf_ue, char *supi); |
|
|
| OpenAPI_rat_type_e amf_ue_rat_type(amf_ue_t *amf_ue); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| void amf_ue_associate_ran_ue(amf_ue_t *amf_ue, ran_ue_t *ran_ue); |
| void ran_ue_deassociate(ran_ue_t *ran_ue); |
| void amf_ue_deassociate(amf_ue_t *amf_ue); |
| void source_ue_associate_target_ue(ran_ue_t *source_ue, ran_ue_t *target_ue); |
| void source_ue_deassociate_target_ue(ran_ue_t *ran_ue); |
|
|
| amf_sess_t *amf_sess_add(amf_ue_t *amf_ue, uint8_t psi); |
|
|
| |
| |
| |
| |
| #define AMF_SESS_CLEAR(__sESS) \ |
| do { \ |
| ogs_sbi_object_t *sbi_object = NULL; \ |
| ogs_assert(__sESS); \ |
| sbi_object = &(__sESS)->sbi; \ |
| ogs_assert(sbi_object); \ |
| \ |
| if (ogs_list_count(&sbi_object->xact_list)) { \ |
| ogs_error("SBI running [%d]", \ |
| ogs_list_count(&sbi_object->xact_list)); \ |
| } else { \ |
| amf_sess_remove(__sESS); \ |
| } \ |
| } while(0) |
| void amf_sess_remove(amf_sess_t *sess); |
| void amf_sess_remove_all(amf_ue_t *amf_ue); |
| amf_sess_t *amf_sess_find_by_psi(amf_ue_t *amf_ue, uint8_t psi); |
| amf_sess_t *amf_sess_find_by_dnn(amf_ue_t *amf_ue, char *dnn); |
|
|
| amf_ue_t *amf_ue_find_by_id(ogs_pool_id_t id); |
| amf_sess_t *amf_sess_find_by_id(ogs_pool_id_t id); |
|
|
| void amf_sbi_select_nf( |
| ogs_sbi_object_t *sbi_object, |
| ogs_sbi_service_type_e service_type, |
| OpenAPI_nf_type_e requester_nf_type, |
| ogs_sbi_discovery_option_t *discovery_option); |
|
|
| #define AMF_SESSION_SYNC_DONE(__aMF, __sTATE) \ |
| (amf_sess_xact_state_count(__aMF, __sTATE) == 0) |
| int amf_sess_xact_count(amf_ue_t *amf_ue); |
| int amf_sess_xact_state_count(amf_ue_t *amf_ue, int state); |
|
|
| #define AMF_SESSION_RELEASE_PENDING(__aMF) \ |
| (amf_ue_have_session_release_pending(__aMF) == true) |
|
|
| #define PDU_RES_SETUP_REQ_TRANSFER_NEEDED(__aMF) \ |
| (amf_pdu_res_setup_req_transfer_needed(__aMF) == true) |
| bool amf_pdu_res_setup_req_transfer_needed(amf_ue_t *amf_ue); |
| #define HANDOVER_REQUEST_TRANSFER_NEEDED(__aMF) \ |
| (amf_handover_request_transfer_needed(__aMF) == true) |
| bool amf_handover_request_transfer_needed(amf_ue_t *amf_ue); |
|
|
| #define PAGING_ONGOING(__aMF) \ |
| (amf_paging_ongoing(__aMF) == true) |
| bool amf_paging_ongoing(amf_ue_t *amf_ue); |
| #define DOWNLINK_SIGNALLING_PENDING(__aMF) \ |
| (amf_downlink_signalling_pending(__aMF) == true) |
| bool amf_downlink_signalling_pending(amf_ue_t *amf_ue); |
|
|
| int amf_find_served_tai(ogs_5gs_tai_t *nr_tai); |
| ogs_s_nssai_t *amf_find_s_nssai( |
| ogs_plmn_id_t *served_plmn_id, ogs_s_nssai_t *s_nssai); |
|
|
| amf_m_tmsi_t *amf_m_tmsi_alloc(void); |
| int amf_m_tmsi_free(amf_m_tmsi_t *tmsi); |
|
|
| uint8_t amf_selected_int_algorithm(amf_ue_t *amf_ue); |
| uint8_t amf_selected_enc_algorithm(amf_ue_t *amf_ue); |
|
|
| void amf_clear_subscribed_info(amf_ue_t *amf_ue); |
|
|
| bool amf_update_allowed_nssai(amf_ue_t *amf_ue); |
| bool amf_ue_is_rat_restricted(amf_ue_t *amf_ue); |
| int amf_instance_get_load(void); |
|
|
| #ifdef __cplusplus |
| } |
| #endif |
|
|
| #endif |
|
|