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

126 lines
3 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "ng_ap_cause.h"
OpenAPI_ng_ap_cause_t *OpenAPI_ng_ap_cause_create(
int group,
int value
)
{
OpenAPI_ng_ap_cause_t *ng_ap_cause_local_var = OpenAPI_malloc(sizeof(OpenAPI_ng_ap_cause_t));
if (!ng_ap_cause_local_var) {
return NULL;
}
ng_ap_cause_local_var->group = group;
ng_ap_cause_local_var->value = value;
return ng_ap_cause_local_var;
}
void OpenAPI_ng_ap_cause_free(OpenAPI_ng_ap_cause_t *ng_ap_cause)
{
if (NULL == ng_ap_cause) {
return;
}
OpenAPI_lnode_t *node;
ogs_free(ng_ap_cause);
}
cJSON *OpenAPI_ng_ap_cause_convertToJSON(OpenAPI_ng_ap_cause_t *ng_ap_cause)
{
cJSON *item = NULL;
if (ng_ap_cause == NULL) {
ogs_error("OpenAPI_ng_ap_cause_convertToJSON() failed [NgApCause]");
return NULL;
}
item = cJSON_CreateObject();
if (cJSON_AddNumberToObject(item, "group", ng_ap_cause->group) == NULL) {
ogs_error("OpenAPI_ng_ap_cause_convertToJSON() failed [group]");
goto end;
}
if (cJSON_AddNumberToObject(item, "value", ng_ap_cause->value) == NULL) {
ogs_error("OpenAPI_ng_ap_cause_convertToJSON() failed [value]");
goto end;
}
end:
return item;
}
OpenAPI_ng_ap_cause_t *OpenAPI_ng_ap_cause_parseFromJSON(cJSON *ng_ap_causeJSON)
{
OpenAPI_ng_ap_cause_t *ng_ap_cause_local_var = NULL;
cJSON *group = cJSON_GetObjectItemCaseSensitive(ng_ap_causeJSON, "group");
if (!group) {
ogs_error("OpenAPI_ng_ap_cause_parseFromJSON() failed [group]");
goto end;
}
if (!cJSON_IsNumber(group)) {
ogs_error("OpenAPI_ng_ap_cause_parseFromJSON() failed [group]");
goto end;
}
cJSON *value = cJSON_GetObjectItemCaseSensitive(ng_ap_causeJSON, "value");
if (!value) {
ogs_error("OpenAPI_ng_ap_cause_parseFromJSON() failed [value]");
goto end;
}
if (!cJSON_IsNumber(value)) {
ogs_error("OpenAPI_ng_ap_cause_parseFromJSON() failed [value]");
goto end;
}
ng_ap_cause_local_var = OpenAPI_ng_ap_cause_create (
group->valuedouble,
value->valuedouble
);
return ng_ap_cause_local_var;
end:
return NULL;
}
OpenAPI_ng_ap_cause_t *OpenAPI_ng_ap_cause_copy(OpenAPI_ng_ap_cause_t *dst, OpenAPI_ng_ap_cause_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_ng_ap_cause_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_ng_ap_cause_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_ng_ap_cause_free(dst);
dst = OpenAPI_ng_ap_cause_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}