| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| #include "nausf-handler.h" |
| #include "nas-path.h" |
|
|
| int amf_nausf_auth_handle_authenticate( |
| amf_ue_t *amf_ue, ogs_sbi_message_t *message) |
| { |
| int r; |
| OpenAPI_ue_authentication_ctx_t *UeAuthenticationCtx = NULL; |
| OpenAPI_ue_authentication_ctx_5g_auth_data_t *AV5G_AKA = NULL; |
| OpenAPI_links_value_schema_t *LinksValueSchemeValue = NULL; |
| OpenAPI_map_t *LinksValueScheme = NULL; |
| OpenAPI_lnode_t *node = NULL; |
|
|
| bool rc; |
| ogs_sbi_client_t *client = NULL; |
| OpenAPI_uri_scheme_e scheme = OpenAPI_uri_scheme_NULL; |
| char *fqdn = NULL; |
| uint16_t fqdn_port = 0; |
| ogs_sockaddr_t *addr = NULL, *addr6 = NULL; |
|
|
| ogs_assert(amf_ue); |
| ogs_assert(message); |
|
|
| if (!message->http.location) { |
| ogs_error("[%s] No http.location", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| UeAuthenticationCtx = message->UeAuthenticationCtx; |
| if (!UeAuthenticationCtx) { |
| ogs_error("[%s] No UeAuthenticationCtx", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (UeAuthenticationCtx->auth_type != OpenAPI_auth_type_5G_AKA) { |
| ogs_error("[%s] Not supported Auth Method [%d]", |
| amf_ue->suci, UeAuthenticationCtx->auth_type); |
| return OGS_ERROR; |
| } |
|
|
| AV5G_AKA = UeAuthenticationCtx->_5g_auth_data; |
| if (!AV5G_AKA) { |
| ogs_error("[%s] No Av5gAka", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!AV5G_AKA->rand) { |
| ogs_error("[%s] No Av5gAka.rand", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!AV5G_AKA->hxres_star) { |
| ogs_error("[%s] No Av5gAka.hxresStar", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!AV5G_AKA->autn) { |
| ogs_error("[%s] No Av5gAka.autn", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!UeAuthenticationCtx->_links) { |
| ogs_error("[%s] No _links", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| OpenAPI_list_for_each(UeAuthenticationCtx->_links, node) { |
| LinksValueScheme = node->data; |
| if (LinksValueScheme) { |
| if (strcmp(LinksValueScheme->key, |
| OGS_SBI_RESOURCE_NAME_5G_AKA) == 0) { |
| LinksValueSchemeValue = LinksValueScheme->value; |
| break; |
| } |
| } |
| } |
|
|
| if (!LinksValueSchemeValue) { |
| ogs_error("[%s] No _links.5g-aka", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!LinksValueSchemeValue->href) { |
| ogs_error("[%s] No _links.5g-aka.href", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| rc = ogs_sbi_getaddr_from_uri( |
| &scheme, &fqdn, &fqdn_port, &addr, &addr6, message->http.location); |
| if (rc == false || scheme == OpenAPI_uri_scheme_NULL) { |
| ogs_error("[%s] Invalid URI [%s]", |
| amf_ue->suci, message->http.location); |
| return OGS_ERROR; |
| } |
|
|
| client = ogs_sbi_client_find(scheme, fqdn, fqdn_port, addr, addr6); |
| if (!client) { |
| ogs_debug("[%s] ogs_sbi_client_add()", amf_ue->suci); |
| client = ogs_sbi_client_add(scheme, fqdn, fqdn_port, addr, addr6); |
| if (!client) { |
| ogs_error("[%s] ogs_sbi_client_add() failed", amf_ue->suci); |
|
|
| ogs_free(fqdn); |
| ogs_freeaddrinfo(addr); |
| ogs_freeaddrinfo(addr6); |
|
|
| return OGS_ERROR; |
| } |
| } |
|
|
| OGS_SBI_SETUP_CLIENT(&amf_ue->confirmation_for_5g_aka, client); |
|
|
| ogs_free(fqdn); |
| ogs_freeaddrinfo(addr); |
| ogs_freeaddrinfo(addr6); |
|
|
| STORE_5G_AKA_CONFIRMATION(amf_ue, LinksValueSchemeValue->href); |
|
|
| ogs_ascii_to_hex(AV5G_AKA->rand, strlen(AV5G_AKA->rand), |
| amf_ue->rand, sizeof(amf_ue->rand)); |
| ogs_ascii_to_hex(AV5G_AKA->hxres_star, strlen(AV5G_AKA->hxres_star), |
| amf_ue->hxres_star, sizeof(amf_ue->hxres_star)); |
| ogs_ascii_to_hex(AV5G_AKA->autn, strlen(AV5G_AKA->autn), |
| amf_ue->autn, sizeof(amf_ue->autn)); |
|
|
| |
| CLEAR_SECURITY_CONTEXT(amf_ue); |
|
|
| if (amf_ue->nas.amf.ksi < (OGS_NAS_KSI_NO_KEY_IS_AVAILABLE - 1)) |
| amf_ue->nas.amf.ksi++; |
| else |
| amf_ue->nas.amf.ksi = 0; |
|
|
| amf_ue->nas.ue.ksi = amf_ue->nas.amf.ksi; |
|
|
| r = nas_5gs_send_authentication_request(amf_ue); |
| ogs_expect(r == OGS_OK); |
| ogs_assert(r != OGS_ERROR); |
|
|
| return OGS_OK; |
| } |
|
|
| int amf_nausf_auth_handle_authenticate_confirmation( |
| amf_ue_t *amf_ue, ogs_sbi_message_t *message) |
| { |
| uint8_t kseaf[OGS_SHA256_DIGEST_SIZE]; |
|
|
| OpenAPI_confirmation_data_response_t *ConfirmationDataResponse; |
|
|
| ogs_assert(amf_ue); |
| ogs_assert(message); |
|
|
| ConfirmationDataResponse = message->ConfirmationDataResponse; |
| if (!ConfirmationDataResponse) { |
| ogs_error("[%s] No ConfirmationDataResponse", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!ConfirmationDataResponse->supi) { |
| ogs_error("[%s] No supi", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| if (!ConfirmationDataResponse->kseaf) { |
| ogs_error("[%s] No Kseaf", amf_ue->suci); |
| return OGS_ERROR; |
| } |
|
|
| amf_ue->auth_result = ConfirmationDataResponse->auth_result; |
| if (amf_ue->auth_result == OpenAPI_auth_result_AUTHENTICATION_SUCCESS) { |
|
|
| amf_ue_set_supi(amf_ue, ConfirmationDataResponse->supi); |
| ogs_ascii_to_hex(ConfirmationDataResponse->kseaf, |
| strlen(ConfirmationDataResponse->kseaf), kseaf, sizeof(kseaf)); |
|
|
| ogs_kdf_kamf(amf_ue->supi, amf_ue->abba, amf_ue->abba_len, |
| kseaf, amf_ue->kamf); |
|
|
| return OGS_OK; |
|
|
| } else { |
|
|
| ogs_error("[%s] Authentication failed", amf_ue->suci); |
| return OGS_ERROR; |
| } |
| } |
|
|