open5gs/src/ausf/nudm-build.c

175 lines
5.3 KiB
C

/*
* Copyright (C) 2019 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 "nudm-build.h"
ogs_sbi_request_t *ausf_nudm_ueau_build_get(ausf_ue_t *ausf_ue, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
OpenAPI_authentication_info_request_t AuthenticationInfoRequest;
OpenAPI_resynchronization_info_t ResynchronizationInfo;
ogs_assert(ausf_ue);
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST;
message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NUDM_UEAU;
message.h.api.version = (char *)OGS_SBI_API_V1;
message.h.resource.component[0] = ausf_ue->suci;
message.h.resource.component[1] =
(char *)OGS_SBI_RESOURCE_NAME_SECURITY_INFORMATION;
message.h.resource.component[2] =
(char *)OGS_SBI_RESOURCE_NAME_GENERATE_AUTH_DATA;
memset(&AuthenticationInfoRequest, 0, sizeof(AuthenticationInfoRequest));
AuthenticationInfoRequest.serving_network_name =
ausf_ue->serving_network_name;
AuthenticationInfoRequest.ausf_instance_id =
NF_INSTANCE_ID(ogs_sbi_self()->nf_instance);
if (data) {
OpenAPI_resynchronization_info_t *recvinfo = data;
memset(&ResynchronizationInfo, 0, sizeof(ResynchronizationInfo));
ResynchronizationInfo.rand = recvinfo->rand;
ResynchronizationInfo.auts = recvinfo->auts;
AuthenticationInfoRequest.resynchronization_info =
&ResynchronizationInfo;
}
message.AuthenticationInfoRequest = &AuthenticationInfoRequest;
request = ogs_sbi_build_request(&message);
ogs_expect(request);
return request;
}
ogs_sbi_request_t *ausf_nudm_ueau_build_result_confirmation_inform(
ausf_ue_t *ausf_ue, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
OpenAPI_auth_event_t *AuthEvent = NULL;
ogs_assert(ausf_ue);
ogs_assert(ausf_ue->supi);
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_POST;
message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NUDM_UEAU;
message.h.api.version = (char *)OGS_SBI_API_V1;
message.h.resource.component[0] = ausf_ue->supi;
message.h.resource.component[1] = (char *)OGS_SBI_RESOURCE_NAME_AUTH_EVENTS;
AuthEvent = ogs_calloc(1, sizeof(*AuthEvent));
if (!AuthEvent) {
ogs_error("No AuthEvent");
goto end;
}
AuthEvent->time_stamp = ogs_sbi_localtime_string(ogs_time_now());
if (!AuthEvent->time_stamp) {
ogs_error("No time_stamp");
goto end;
}
AuthEvent->nf_instance_id = NF_INSTANCE_ID(ogs_sbi_self()->nf_instance);
if (ausf_ue->auth_result == OpenAPI_auth_result_AUTHENTICATION_SUCCESS)
AuthEvent->success = true;
else
AuthEvent->success = false;
AuthEvent->auth_type = ausf_ue->auth_type;
AuthEvent->serving_network_name = ausf_ue->serving_network_name;
message.AuthEvent = AuthEvent;
request = ogs_sbi_build_request(&message);
ogs_expect(request);
end:
if (AuthEvent) {
if (AuthEvent->time_stamp)
ogs_free(AuthEvent->time_stamp);
ogs_free(AuthEvent);
}
return request;
}
ogs_sbi_request_t *ausf_nudm_ueau_build_auth_removal_ind(
ausf_ue_t *ausf_ue, void *data)
{
ogs_sbi_message_t message;
ogs_sbi_request_t *request = NULL;
OpenAPI_auth_event_t *AuthEvent = NULL;
ogs_assert(ausf_ue);
ogs_assert(ausf_ue->supi);
memset(&message, 0, sizeof(message));
message.h.method = (char *)OGS_SBI_HTTP_METHOD_PUT;
message.h.service.name = (char *)OGS_SBI_SERVICE_NAME_NUDM_UEAU;
message.h.api.version = (char *)OGS_SBI_API_V1;
message.h.resource.component[0] = ausf_ue->supi;
message.h.resource.component[1] = (char *)OGS_SBI_RESOURCE_NAME_AUTH_EVENTS;
AuthEvent = ogs_calloc(1, sizeof(*AuthEvent));
if (!AuthEvent) {
ogs_error("No AuthEvent");
goto end;
}
AuthEvent->time_stamp = ogs_sbi_localtime_string(ogs_time_now());
if (!AuthEvent->time_stamp) {
ogs_error("No time_stamp");
goto end;
}
AuthEvent->nf_instance_id = NF_INSTANCE_ID(ogs_sbi_self()->nf_instance);
AuthEvent->success = true;
AuthEvent->auth_type = ausf_ue->auth_type;
AuthEvent->serving_network_name = ausf_ue->serving_network_name;
AuthEvent->is_auth_removal_ind = true;
AuthEvent->auth_removal_ind = true;
message.AuthEvent = AuthEvent;
request = ogs_sbi_build_request(&message);
ogs_expect(request);
end:
if (AuthEvent) {
if (AuthEvent->time_stamp)
ogs_free(AuthEvent->time_stamp);
ogs_free(AuthEvent);
}
return request;
}