open5gs/lib/sbi/openapi/model/steering_info.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

161 lines
4.9 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "steering_info.h"
OpenAPI_steering_info_t *OpenAPI_steering_info_create(
OpenAPI_plmn_id_t *plmn_id,
OpenAPI_list_t *access_tech_list
)
{
OpenAPI_steering_info_t *steering_info_local_var = OpenAPI_malloc(sizeof(OpenAPI_steering_info_t));
if (!steering_info_local_var) {
return NULL;
}
steering_info_local_var->plmn_id = plmn_id;
steering_info_local_var->access_tech_list = access_tech_list;
return steering_info_local_var;
}
void OpenAPI_steering_info_free(OpenAPI_steering_info_t *steering_info)
{
if (NULL == steering_info) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_plmn_id_free(steering_info->plmn_id);
OpenAPI_list_for_each(steering_info->access_tech_list, node) {
OpenAPI_access_tech_free(node->data);
}
OpenAPI_list_free(steering_info->access_tech_list);
ogs_free(steering_info);
}
cJSON *OpenAPI_steering_info_convertToJSON(OpenAPI_steering_info_t *steering_info)
{
cJSON *item = NULL;
if (steering_info == NULL) {
ogs_error("OpenAPI_steering_info_convertToJSON() failed [SteeringInfo]");
return NULL;
}
item = cJSON_CreateObject();
cJSON *plmn_id_local_JSON = OpenAPI_plmn_id_convertToJSON(steering_info->plmn_id);
if (plmn_id_local_JSON == NULL) {
ogs_error("OpenAPI_steering_info_convertToJSON() failed [plmn_id]");
goto end;
}
cJSON_AddItemToObject(item, "plmnId", plmn_id_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_steering_info_convertToJSON() failed [plmn_id]");
goto end;
}
if (steering_info->access_tech_list) {
cJSON *access_tech_listList = cJSON_AddArrayToObject(item, "accessTechList");
if (access_tech_listList == NULL) {
ogs_error("OpenAPI_steering_info_convertToJSON() failed [access_tech_list]");
goto end;
}
OpenAPI_lnode_t *access_tech_list_node;
if (steering_info->access_tech_list) {
OpenAPI_list_for_each(steering_info->access_tech_list, access_tech_list_node) {
cJSON *itemLocal = OpenAPI_access_tech_convertToJSON(access_tech_list_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_steering_info_convertToJSON() failed [access_tech_list]");
goto end;
}
cJSON_AddItemToArray(access_tech_listList, itemLocal);
}
}
}
end:
return item;
}
OpenAPI_steering_info_t *OpenAPI_steering_info_parseFromJSON(cJSON *steering_infoJSON)
{
OpenAPI_steering_info_t *steering_info_local_var = NULL;
cJSON *plmn_id = cJSON_GetObjectItemCaseSensitive(steering_infoJSON, "plmnId");
if (!plmn_id) {
ogs_error("OpenAPI_steering_info_parseFromJSON() failed [plmn_id]");
goto end;
}
OpenAPI_plmn_id_t *plmn_id_local_nonprim = NULL;
plmn_id_local_nonprim = OpenAPI_plmn_id_parseFromJSON(plmn_id);
cJSON *access_tech_list = cJSON_GetObjectItemCaseSensitive(steering_infoJSON, "accessTechList");
OpenAPI_list_t *access_tech_listList;
if (access_tech_list) {
cJSON *access_tech_list_local_nonprimitive;
if (!cJSON_IsArray(access_tech_list)) {
ogs_error("OpenAPI_steering_info_parseFromJSON() failed [access_tech_list]");
goto end;
}
access_tech_listList = OpenAPI_list_create();
cJSON_ArrayForEach(access_tech_list_local_nonprimitive, access_tech_list ) {
if (!cJSON_IsObject(access_tech_list_local_nonprimitive)) {
ogs_error("OpenAPI_steering_info_parseFromJSON() failed [access_tech_list]");
goto end;
}
OpenAPI_access_tech_t *access_tech_listItem = OpenAPI_access_tech_parseFromJSON(access_tech_list_local_nonprimitive);
OpenAPI_list_add(access_tech_listList, access_tech_listItem);
}
}
steering_info_local_var = OpenAPI_steering_info_create (
plmn_id_local_nonprim,
access_tech_list ? access_tech_listList : NULL
);
return steering_info_local_var;
end:
return NULL;
}
OpenAPI_steering_info_t *OpenAPI_steering_info_copy(OpenAPI_steering_info_t *dst, OpenAPI_steering_info_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_steering_info_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_steering_info_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_steering_info_free(dst);
dst = OpenAPI_steering_info_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}