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

128 lines
3.1 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "updated_item.h"
OpenAPI_updated_item_t *OpenAPI_updated_item_create(
char *item,
char *value
)
{
OpenAPI_updated_item_t *updated_item_local_var = OpenAPI_malloc(sizeof(OpenAPI_updated_item_t));
if (!updated_item_local_var) {
return NULL;
}
updated_item_local_var->item = item;
updated_item_local_var->value = value;
return updated_item_local_var;
}
void OpenAPI_updated_item_free(OpenAPI_updated_item_t *updated_item)
{
if (NULL == updated_item) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(updated_item->item);
ogs_free(updated_item->value);
ogs_free(updated_item);
}
cJSON *OpenAPI_updated_item_convertToJSON(OpenAPI_updated_item_t *updated_item)
{
cJSON *item = NULL;
if (updated_item == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [UpdatedItem]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddStringToObject(item, "item", updated_item->item) == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [item]");
goto end;
}
if (cJSON_AddStringToObject(item, "value", updated_item->value) == NULL) {
ogs_error("OpenAPI_updated_item_convertToJSON() failed [value]");
goto end;
}
end:
return item;
}
OpenAPI_updated_item_t *OpenAPI_updated_item_parseFromJSON(cJSON *updated_itemJSON)
{
OpenAPI_updated_item_t *updated_item_local_var = NULL;
cJSON *item = cJSON_GetObjectItemCaseSensitive(updated_itemJSON, "item");
if (!item) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [item]");
goto end;
}
if (!cJSON_IsString(item)) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [item]");
goto end;
}
cJSON *value = cJSON_GetObjectItemCaseSensitive(updated_itemJSON, "value");
if (!value) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [value]");
goto end;
}
if (!cJSON_IsString(value)) {
ogs_error("OpenAPI_updated_item_parseFromJSON() failed [value]");
goto end;
}
updated_item_local_var = OpenAPI_updated_item_create (
ogs_strdup(item->valuestring),
ogs_strdup(value->valuestring)
);
return updated_item_local_var;
end:
return NULL;
}
OpenAPI_updated_item_t *OpenAPI_updated_item_copy(OpenAPI_updated_item_t *dst, OpenAPI_updated_item_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_updated_item_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_updated_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_updated_item_free(dst);
dst = OpenAPI_updated_item_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}