open5gs/lib/sbi/openapi/model/route_to_location.c
Sukchan Lee 5ea9b22209 [AMF] security protection (UERANSIM-issues316)
1. Allocate ngKSI other than the value already used.
2. Add the protection of Service request
3. fix SBI convert error ng_ap_cause
2021-05-08 13:24:17 +09:00

151 lines
4.5 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "route_to_location.h"
OpenAPI_route_to_location_t *OpenAPI_route_to_location_create(
char *dnai,
OpenAPI_route_information_t *route_info,
char *route_prof_id
)
{
OpenAPI_route_to_location_t *route_to_location_local_var = OpenAPI_malloc(sizeof(OpenAPI_route_to_location_t));
if (!route_to_location_local_var) {
return NULL;
}
route_to_location_local_var->dnai = dnai;
route_to_location_local_var->route_info = route_info;
route_to_location_local_var->route_prof_id = route_prof_id;
return route_to_location_local_var;
}
void OpenAPI_route_to_location_free(OpenAPI_route_to_location_t *route_to_location)
{
if (NULL == route_to_location) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(route_to_location->dnai);
OpenAPI_route_information_free(route_to_location->route_info);
ogs_free(route_to_location->route_prof_id);
ogs_free(route_to_location);
}
cJSON *OpenAPI_route_to_location_convertToJSON(OpenAPI_route_to_location_t *route_to_location)
{
cJSON *item = NULL;
if (route_to_location == NULL) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed [RouteToLocation]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "dnai", route_to_location->dnai) == NULL) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed [dnai]");
goto end;
}
if (route_to_location->route_info) {
cJSON *route_info_local_JSON = OpenAPI_route_information_convertToJSON(route_to_location->route_info);
if (route_info_local_JSON == NULL) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed [route_info]");
goto end;
}
cJSON_AddItemToObject(item, "routeInfo", route_info_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed [route_info]");
goto end;
}
}
if (route_to_location->route_prof_id) {
if (cJSON_AddStringToObject(item, "routeProfId", route_to_location->route_prof_id) == NULL) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed [route_prof_id]");
goto end;
}
}
end:
return item;
}
OpenAPI_route_to_location_t *OpenAPI_route_to_location_parseFromJSON(cJSON *route_to_locationJSON)
{
OpenAPI_route_to_location_t *route_to_location_local_var = NULL;
cJSON *dnai = cJSON_GetObjectItemCaseSensitive(route_to_locationJSON, "dnai");
if (!dnai) {
ogs_error("OpenAPI_route_to_location_parseFromJSON() failed [dnai]");
goto end;
}
if (!cJSON_IsString(dnai)) {
ogs_error("OpenAPI_route_to_location_parseFromJSON() failed [dnai]");
goto end;
}
cJSON *route_info = cJSON_GetObjectItemCaseSensitive(route_to_locationJSON, "routeInfo");
OpenAPI_route_information_t *route_info_local_nonprim = NULL;
if (route_info) {
route_info_local_nonprim = OpenAPI_route_information_parseFromJSON(route_info);
}
cJSON *route_prof_id = cJSON_GetObjectItemCaseSensitive(route_to_locationJSON, "routeProfId");
if (route_prof_id) {
if (!cJSON_IsString(route_prof_id)) {
ogs_error("OpenAPI_route_to_location_parseFromJSON() failed [route_prof_id]");
goto end;
}
}
route_to_location_local_var = OpenAPI_route_to_location_create (
ogs_strdup(dnai->valuestring),
route_info ? route_info_local_nonprim : NULL,
route_prof_id ? ogs_strdup(route_prof_id->valuestring) : NULL
);
return route_to_location_local_var;
end:
return NULL;
}
OpenAPI_route_to_location_t *OpenAPI_route_to_location_copy(OpenAPI_route_to_location_t *dst, OpenAPI_route_to_location_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_route_to_location_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_route_to_location_convertToJSON() failed");
return NULL;
}
content = cJSON_Print(item);
cJSON_Delete(item);
if (!content) {
ogs_error("cJSON_Print() failed");
return NULL;
}
item = cJSON_Parse(content);
ogs_free(content);
if (!item) {
ogs_error("cJSON_Parse() failed");
return NULL;
}
OpenAPI_route_to_location_free(dst);
dst = OpenAPI_route_to_location_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}