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

130 lines
3.9 KiB
C

#include <stdlib.h>
#include <string.h>
#include <stdio.h>
#include "subscribed_snssai.h"
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_create(
OpenAPI_snssai_t *subscribed_snssai,
int default_indication
)
{
OpenAPI_subscribed_snssai_t *subscribed_snssai_local_var = OpenAPI_malloc(sizeof(OpenAPI_subscribed_snssai_t));
if (!subscribed_snssai_local_var) {
return NULL;
}
subscribed_snssai_local_var->subscribed_snssai = subscribed_snssai;
subscribed_snssai_local_var->default_indication = default_indication;
return subscribed_snssai_local_var;
}
void OpenAPI_subscribed_snssai_free(OpenAPI_subscribed_snssai_t *subscribed_snssai)
{
if (NULL == subscribed_snssai) {
return;
}
OpenAPI_lnode_t *node;
OpenAPI_snssai_free(subscribed_snssai->subscribed_snssai);
ogs_free(subscribed_snssai);
}
cJSON *OpenAPI_subscribed_snssai_convertToJSON(OpenAPI_subscribed_snssai_t *subscribed_snssai)
{
cJSON *item = NULL;
if (subscribed_snssai == NULL) {
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [SubscribedSnssai]");
return NULL;
}
item = cJSON_CreateObject();
cJSON *subscribed_snssai_local_JSON = OpenAPI_snssai_convertToJSON(subscribed_snssai->subscribed_snssai);
if (subscribed_snssai_local_JSON == NULL) {
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [subscribed_snssai]");
goto end;
}
cJSON_AddItemToObject(item, "subscribedSnssai", subscribed_snssai_local_JSON);
if (item->child == NULL) {
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [subscribed_snssai]");
goto end;
}
if (subscribed_snssai->default_indication) {
if (cJSON_AddBoolToObject(item, "defaultIndication", subscribed_snssai->default_indication) == NULL) {
ogs_error("OpenAPI_subscribed_snssai_convertToJSON() failed [default_indication]");
goto end;
}
}
end:
return item;
}
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_parseFromJSON(cJSON *subscribed_snssaiJSON)
{
OpenAPI_subscribed_snssai_t *subscribed_snssai_local_var = NULL;
cJSON *subscribed_snssai = cJSON_GetObjectItemCaseSensitive(subscribed_snssaiJSON, "subscribedSnssai");
if (!subscribed_snssai) {
ogs_error("OpenAPI_subscribed_snssai_parseFromJSON() failed [subscribed_snssai]");
goto end;
}
OpenAPI_snssai_t *subscribed_snssai_local_nonprim = NULL;
subscribed_snssai_local_nonprim = OpenAPI_snssai_parseFromJSON(subscribed_snssai);
cJSON *default_indication = cJSON_GetObjectItemCaseSensitive(subscribed_snssaiJSON, "defaultIndication");
if (default_indication) {
if (!cJSON_IsBool(default_indication)) {
ogs_error("OpenAPI_subscribed_snssai_parseFromJSON() failed [default_indication]");
goto end;
}
}
subscribed_snssai_local_var = OpenAPI_subscribed_snssai_create (
subscribed_snssai_local_nonprim,
default_indication ? default_indication->valueint : 0
);
return subscribed_snssai_local_var;
end:
return NULL;
}
OpenAPI_subscribed_snssai_t *OpenAPI_subscribed_snssai_copy(OpenAPI_subscribed_snssai_t *dst, OpenAPI_subscribed_snssai_t *src)
{
cJSON *item = NULL;
char *content = NULL;
ogs_assert(src);
item = OpenAPI_subscribed_snssai_convertToJSON(src);
if (!item) {
ogs_error("OpenAPI_subscribed_snssai_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_subscribed_snssai_free(dst);
dst = OpenAPI_subscribed_snssai_parseFromJSON(item);
cJSON_Delete(item);
return dst;
}