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

137 lines
3.4 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "cnf_unit.h"
OpenAPI_cnf_unit_t *OpenAPI_cnf_unit_create(
OpenAPI_list_t *cnf_unit
)
{
OpenAPI_cnf_unit_t *cnf_unit_local_var = OpenAPI_malloc(sizeof(OpenAPI_cnf_unit_t));
if (!cnf_unit_local_var) {
return NULL;
}
cnf_unit_local_var->cnf_unit = cnf_unit;
return cnf_unit_local_var;
}
void OpenAPI_cnf_unit_free(OpenAPI_cnf_unit_t *cnf_unit)
{
if (NULL == cnf_unit) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_list_for_each(cnf_unit->cnf_unit, node) {
OpenAPI_atom_free(node->data);
}
OpenAPI_list_free(cnf_unit->cnf_unit);
ogs_free(cnf_unit);
}
cJSON *OpenAPI_cnf_unit_convertToJSON(OpenAPI_cnf_unit_t *cnf_unit)
{
cJSON *item = NULL;
if (cnf_unit == NULL) {
ogs_error("OpenAPI_cnf_unit_convertToJSON() failed [CnfUnit]");
return NULL;
}
item = cJSON_CreateObject();
cJSON *cnf_unitList = cJSON_AddArrayToObject(item, "cnfUnit");
if (cnf_unitList == NULL) {
ogs_error("OpenAPI_cnf_unit_convertToJSON() failed [cnf_unit]");
goto end;
}
OpenAPI_lnode_t *cnf_unit_node;
if (cnf_unit->cnf_unit) {
OpenAPI_list_for_each(cnf_unit->cnf_unit, cnf_unit_node) {
cJSON *itemLocal = OpenAPI_atom_convertToJSON(cnf_unit_node->data);
if (itemLocal == NULL) {
ogs_error("OpenAPI_cnf_unit_convertToJSON() failed [cnf_unit]");
goto end;
}
cJSON_AddItemToArray(cnf_unitList, itemLocal);
}
}
end:
return item;
}
OpenAPI_cnf_unit_t *OpenAPI_cnf_unit_parseFromJSON(cJSON *cnf_unitJSON)
{
OpenAPI_cnf_unit_t *cnf_unit_local_var = NULL;
cJSON *cnf_unit = cJSON_GetObjectItemCaseSensitive(cnf_unitJSON, "cnfUnit");
if (!cnf_unit) {
ogs_error("OpenAPI_cnf_unit_parseFromJSON() failed [cnf_unit]");
goto end;
}
OpenAPI_list_t *cnf_unitList;
cJSON *cnf_unit_local_nonprimitive;
if (!cJSON_IsArray(cnf_unit)) {
ogs_error("OpenAPI_cnf_unit_parseFromJSON() failed [cnf_unit]");
goto end;
}
cnf_unitList = OpenAPI_list_create();
cJSON_ArrayForEach(cnf_unit_local_nonprimitive, cnf_unit ) {
if (!cJSON_IsObject(cnf_unit_local_nonprimitive)) {
ogs_error("OpenAPI_cnf_unit_parseFromJSON() failed [cnf_unit]");
goto end;
}
OpenAPI_atom_t *cnf_unitItem = OpenAPI_atom_parseFromJSON(cnf_unit_local_nonprimitive);
OpenAPI_list_add(cnf_unitList, cnf_unitItem);
}
cnf_unit_local_var = OpenAPI_cnf_unit_create (
cnf_unitList
);
return cnf_unit_local_var;
end:
return NULL;
}
OpenAPI_cnf_unit_t *OpenAPI_cnf_unit_copy(OpenAPI_cnf_unit_t *dst, OpenAPI_cnf_unit_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_cnf_unit_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_cnf_unit_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_cnf_unit_free(dst);
dst = OpenAPI_cnf_unit_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}