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

107 lines
2.4 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "report_item.h"
OpenAPI_report_item_t *OpenAPI_report_item_create(
char *path
)
{
OpenAPI_report_item_t *report_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_report_item_t));
if (!report_item_local_var) {
return NULL;
}
report_item_local_var->path = path;
return report_item_local_var;
}
void OpenAPI_report_item_free(OpenAPI_report_item_t *report_item)
{
if (NULL == report_item) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(report_item->path);
ogs_free(report_item);
}
cJSON *OpenAPI_report_item_convertToJSON(OpenAPI_report_item_t *report_item)
{
cJSON *item = NULL;
if (report_item == NULL) {
ogs_error("OpenAPI_report_item_convertToJSON() failed [ReportItem]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "path", report_item->path) == NULL) {
ogs_error("OpenAPI_report_item_convertToJSON() failed [path]");
goto end;
}
end:
return item;
}
OpenAPI_report_item_t *OpenAPI_report_item_parseFromJSON(cJSON *report_itemJSON)
{
OpenAPI_report_item_t *report_item_local_var = NULL;
cJSON *path = cJSON_GetObjectItemCaseSensitive(report_itemJSON, "path");
if (!path) {
ogs_error("OpenAPI_report_item_parseFromJSON() failed [path]");
goto end;
}
if (!cJSON_IsString(path)) {
ogs_error("OpenAPI_report_item_parseFromJSON() failed [path]");
goto end;
}
report_item_local_var = OpenAPI_report_item_create (
ogs_strdup(path->valuestring)
);
return report_item_local_var;
end:
return NULL;
}
OpenAPI_report_item_t *OpenAPI_report_item_copy(OpenAPI_report_item_t *dst, OpenAPI_report_item_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_report_item_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_report_item_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_report_item_free(dst);
dst = OpenAPI_report_item_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}