mirror of
https://github.com/open5gs/open5gs.git
synced 2026-05-05 07:08:11 +00:00
[SBI] Crash occurs when ENUM in the MAP (#2103)
This commit is contained in:
parent
ce668c556c
commit
969c116e77
1097 changed files with 266728 additions and 42047 deletions
|
|
@ -44,30 +44,65 @@ OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_create(
|
|||
|
||||
void OpenAPI_amf_event_subscription_free(OpenAPI_amf_event_subscription_t *amf_event_subscription)
|
||||
{
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (NULL == amf_event_subscription) {
|
||||
return;
|
||||
}
|
||||
OpenAPI_lnode_t *node;
|
||||
OpenAPI_list_for_each(amf_event_subscription->event_list, node) {
|
||||
OpenAPI_amf_event_free(node->data);
|
||||
if (amf_event_subscription->event_list) {
|
||||
OpenAPI_list_for_each(amf_event_subscription->event_list, node) {
|
||||
OpenAPI_amf_event_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(amf_event_subscription->event_list);
|
||||
amf_event_subscription->event_list = NULL;
|
||||
}
|
||||
if (amf_event_subscription->event_notify_uri) {
|
||||
ogs_free(amf_event_subscription->event_notify_uri);
|
||||
amf_event_subscription->event_notify_uri = NULL;
|
||||
}
|
||||
if (amf_event_subscription->notify_correlation_id) {
|
||||
ogs_free(amf_event_subscription->notify_correlation_id);
|
||||
amf_event_subscription->notify_correlation_id = NULL;
|
||||
}
|
||||
if (amf_event_subscription->nf_id) {
|
||||
ogs_free(amf_event_subscription->nf_id);
|
||||
amf_event_subscription->nf_id = NULL;
|
||||
}
|
||||
if (amf_event_subscription->subs_change_notify_uri) {
|
||||
ogs_free(amf_event_subscription->subs_change_notify_uri);
|
||||
amf_event_subscription->subs_change_notify_uri = NULL;
|
||||
}
|
||||
if (amf_event_subscription->subs_change_notify_correlation_id) {
|
||||
ogs_free(amf_event_subscription->subs_change_notify_correlation_id);
|
||||
amf_event_subscription->subs_change_notify_correlation_id = NULL;
|
||||
}
|
||||
if (amf_event_subscription->supi) {
|
||||
ogs_free(amf_event_subscription->supi);
|
||||
amf_event_subscription->supi = NULL;
|
||||
}
|
||||
if (amf_event_subscription->group_id) {
|
||||
ogs_free(amf_event_subscription->group_id);
|
||||
amf_event_subscription->group_id = NULL;
|
||||
}
|
||||
if (amf_event_subscription->gpsi) {
|
||||
ogs_free(amf_event_subscription->gpsi);
|
||||
amf_event_subscription->gpsi = NULL;
|
||||
}
|
||||
if (amf_event_subscription->pei) {
|
||||
ogs_free(amf_event_subscription->pei);
|
||||
amf_event_subscription->pei = NULL;
|
||||
}
|
||||
if (amf_event_subscription->options) {
|
||||
OpenAPI_amf_event_mode_free(amf_event_subscription->options);
|
||||
amf_event_subscription->options = NULL;
|
||||
}
|
||||
OpenAPI_list_free(amf_event_subscription->event_list);
|
||||
ogs_free(amf_event_subscription->event_notify_uri);
|
||||
ogs_free(amf_event_subscription->notify_correlation_id);
|
||||
ogs_free(amf_event_subscription->nf_id);
|
||||
ogs_free(amf_event_subscription->subs_change_notify_uri);
|
||||
ogs_free(amf_event_subscription->subs_change_notify_correlation_id);
|
||||
ogs_free(amf_event_subscription->supi);
|
||||
ogs_free(amf_event_subscription->group_id);
|
||||
ogs_free(amf_event_subscription->gpsi);
|
||||
ogs_free(amf_event_subscription->pei);
|
||||
OpenAPI_amf_event_mode_free(amf_event_subscription->options);
|
||||
ogs_free(amf_event_subscription);
|
||||
}
|
||||
|
||||
cJSON *OpenAPI_amf_event_subscription_convertToJSON(OpenAPI_amf_event_subscription_t *amf_event_subscription)
|
||||
{
|
||||
cJSON *item = NULL;
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
|
||||
if (amf_event_subscription == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [AmfEventSubscription]");
|
||||
|
|
@ -75,34 +110,46 @@ cJSON *OpenAPI_amf_event_subscription_convertToJSON(OpenAPI_amf_event_subscripti
|
|||
}
|
||||
|
||||
item = cJSON_CreateObject();
|
||||
if (!amf_event_subscription->event_list) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_list]");
|
||||
return NULL;
|
||||
}
|
||||
cJSON *event_listList = cJSON_AddArrayToObject(item, "eventList");
|
||||
if (event_listList == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_lnode_t *event_list_node;
|
||||
if (amf_event_subscription->event_list) {
|
||||
OpenAPI_list_for_each(amf_event_subscription->event_list, event_list_node) {
|
||||
cJSON *itemLocal = OpenAPI_amf_event_convertToJSON(event_list_node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(event_listList, itemLocal);
|
||||
OpenAPI_list_for_each(amf_event_subscription->event_list, node) {
|
||||
cJSON *itemLocal = OpenAPI_amf_event_convertToJSON(node->data);
|
||||
if (itemLocal == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
cJSON_AddItemToArray(event_listList, itemLocal);
|
||||
}
|
||||
|
||||
if (!amf_event_subscription->event_notify_uri) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_notify_uri]");
|
||||
return NULL;
|
||||
}
|
||||
if (cJSON_AddStringToObject(item, "eventNotifyUri", amf_event_subscription->event_notify_uri) == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [event_notify_uri]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!amf_event_subscription->notify_correlation_id) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [notify_correlation_id]");
|
||||
return NULL;
|
||||
}
|
||||
if (cJSON_AddStringToObject(item, "notifyCorrelationId", amf_event_subscription->notify_correlation_id) == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [notify_correlation_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!amf_event_subscription->nf_id) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [nf_id]");
|
||||
return NULL;
|
||||
}
|
||||
if (cJSON_AddStringToObject(item, "nfId", amf_event_subscription->nf_id) == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [nf_id]");
|
||||
goto end;
|
||||
|
|
@ -170,7 +217,7 @@ cJSON *OpenAPI_amf_event_subscription_convertToJSON(OpenAPI_amf_event_subscripti
|
|||
}
|
||||
}
|
||||
|
||||
if (amf_event_subscription->source_nf_type) {
|
||||
if (amf_event_subscription->source_nf_type != OpenAPI_nf_type_NULL) {
|
||||
if (cJSON_AddStringToObject(item, "sourceNfType", OpenAPI_nf_type_ToString(amf_event_subscription->source_nf_type)) == NULL) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_convertToJSON() failed [source_nf_type]");
|
||||
goto end;
|
||||
|
|
@ -184,126 +231,129 @@ end:
|
|||
OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_parseFromJSON(cJSON *amf_event_subscriptionJSON)
|
||||
{
|
||||
OpenAPI_amf_event_subscription_t *amf_event_subscription_local_var = NULL;
|
||||
cJSON *event_list = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "eventList");
|
||||
OpenAPI_lnode_t *node = NULL;
|
||||
cJSON *event_list = NULL;
|
||||
OpenAPI_list_t *event_listList = NULL;
|
||||
cJSON *event_notify_uri = NULL;
|
||||
cJSON *notify_correlation_id = NULL;
|
||||
cJSON *nf_id = NULL;
|
||||
cJSON *subs_change_notify_uri = NULL;
|
||||
cJSON *subs_change_notify_correlation_id = NULL;
|
||||
cJSON *supi = NULL;
|
||||
cJSON *group_id = NULL;
|
||||
cJSON *gpsi = NULL;
|
||||
cJSON *pei = NULL;
|
||||
cJSON *any_ue = NULL;
|
||||
cJSON *options = NULL;
|
||||
OpenAPI_amf_event_mode_t *options_local_nonprim = NULL;
|
||||
cJSON *source_nf_type = NULL;
|
||||
OpenAPI_nf_type_e source_nf_typeVariable = 0;
|
||||
event_list = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "eventList");
|
||||
if (!event_list) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
OpenAPI_list_t *event_listList;
|
||||
cJSON *event_list_local_nonprimitive;
|
||||
if (!cJSON_IsArray(event_list)){
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
event_listList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(event_list_local_nonprimitive, event_list ) {
|
||||
if (!cJSON_IsObject(event_list_local_nonprimitive)) {
|
||||
cJSON *event_list_local = NULL;
|
||||
if (!cJSON_IsArray(event_list)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_amf_event_t *event_listItem = OpenAPI_amf_event_parseFromJSON(event_list_local_nonprimitive);
|
||||
|
||||
if (!event_listItem) {
|
||||
ogs_error("No event_listItem");
|
||||
OpenAPI_list_free(event_listList);
|
||||
goto end;
|
||||
event_listList = OpenAPI_list_create();
|
||||
|
||||
cJSON_ArrayForEach(event_list_local, event_list) {
|
||||
if (!cJSON_IsObject(event_list_local)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_list]");
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_amf_event_t *event_listItem = OpenAPI_amf_event_parseFromJSON(event_list_local);
|
||||
if (!event_listItem) {
|
||||
ogs_error("No event_listItem");
|
||||
OpenAPI_list_free(event_listList);
|
||||
goto end;
|
||||
}
|
||||
OpenAPI_list_add(event_listList, event_listItem);
|
||||
}
|
||||
|
||||
OpenAPI_list_add(event_listList, event_listItem);
|
||||
}
|
||||
|
||||
cJSON *event_notify_uri = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "eventNotifyUri");
|
||||
event_notify_uri = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "eventNotifyUri");
|
||||
if (!event_notify_uri) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_notify_uri]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsString(event_notify_uri)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [event_notify_uri]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *notify_correlation_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "notifyCorrelationId");
|
||||
notify_correlation_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "notifyCorrelationId");
|
||||
if (!notify_correlation_id) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [notify_correlation_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsString(notify_correlation_id)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [notify_correlation_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *nf_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "nfId");
|
||||
nf_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "nfId");
|
||||
if (!nf_id) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [nf_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (!cJSON_IsString(nf_id)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [nf_id]");
|
||||
goto end;
|
||||
}
|
||||
|
||||
cJSON *subs_change_notify_uri = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "subsChangeNotifyUri");
|
||||
|
||||
subs_change_notify_uri = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "subsChangeNotifyUri");
|
||||
if (subs_change_notify_uri) {
|
||||
if (!cJSON_IsString(subs_change_notify_uri)) {
|
||||
if (!cJSON_IsString(subs_change_notify_uri) && !cJSON_IsNull(subs_change_notify_uri)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [subs_change_notify_uri]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *subs_change_notify_correlation_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "subsChangeNotifyCorrelationId");
|
||||
|
||||
subs_change_notify_correlation_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "subsChangeNotifyCorrelationId");
|
||||
if (subs_change_notify_correlation_id) {
|
||||
if (!cJSON_IsString(subs_change_notify_correlation_id)) {
|
||||
if (!cJSON_IsString(subs_change_notify_correlation_id) && !cJSON_IsNull(subs_change_notify_correlation_id)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [subs_change_notify_correlation_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *supi = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "supi");
|
||||
|
||||
supi = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "supi");
|
||||
if (supi) {
|
||||
if (!cJSON_IsString(supi)) {
|
||||
if (!cJSON_IsString(supi) && !cJSON_IsNull(supi)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [supi]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *group_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "groupId");
|
||||
|
||||
group_id = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "groupId");
|
||||
if (group_id) {
|
||||
if (!cJSON_IsString(group_id)) {
|
||||
if (!cJSON_IsString(group_id) && !cJSON_IsNull(group_id)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [group_id]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *gpsi = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "gpsi");
|
||||
|
||||
gpsi = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "gpsi");
|
||||
if (gpsi) {
|
||||
if (!cJSON_IsString(gpsi)) {
|
||||
if (!cJSON_IsString(gpsi) && !cJSON_IsNull(gpsi)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [gpsi]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *pei = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "pei");
|
||||
|
||||
pei = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "pei");
|
||||
if (pei) {
|
||||
if (!cJSON_IsString(pei)) {
|
||||
if (!cJSON_IsString(pei) && !cJSON_IsNull(pei)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [pei]");
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
cJSON *any_ue = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "anyUE");
|
||||
|
||||
any_ue = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "anyUE");
|
||||
if (any_ue) {
|
||||
if (!cJSON_IsBool(any_ue)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [any_ue]");
|
||||
|
|
@ -311,16 +361,12 @@ OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_parseFromJSON(c
|
|||
}
|
||||
}
|
||||
|
||||
cJSON *options = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "options");
|
||||
|
||||
OpenAPI_amf_event_mode_t *options_local_nonprim = NULL;
|
||||
options = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "options");
|
||||
if (options) {
|
||||
options_local_nonprim = OpenAPI_amf_event_mode_parseFromJSON(options);
|
||||
}
|
||||
|
||||
cJSON *source_nf_type = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "sourceNfType");
|
||||
|
||||
OpenAPI_nf_type_e source_nf_typeVariable;
|
||||
source_nf_type = cJSON_GetObjectItemCaseSensitive(amf_event_subscriptionJSON, "sourceNfType");
|
||||
if (source_nf_type) {
|
||||
if (!cJSON_IsString(source_nf_type)) {
|
||||
ogs_error("OpenAPI_amf_event_subscription_parseFromJSON() failed [source_nf_type]");
|
||||
|
|
@ -334,12 +380,12 @@ OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_parseFromJSON(c
|
|||
ogs_strdup(event_notify_uri->valuestring),
|
||||
ogs_strdup(notify_correlation_id->valuestring),
|
||||
ogs_strdup(nf_id->valuestring),
|
||||
subs_change_notify_uri ? ogs_strdup(subs_change_notify_uri->valuestring) : NULL,
|
||||
subs_change_notify_correlation_id ? ogs_strdup(subs_change_notify_correlation_id->valuestring) : NULL,
|
||||
supi ? ogs_strdup(supi->valuestring) : NULL,
|
||||
group_id ? ogs_strdup(group_id->valuestring) : NULL,
|
||||
gpsi ? ogs_strdup(gpsi->valuestring) : NULL,
|
||||
pei ? ogs_strdup(pei->valuestring) : NULL,
|
||||
subs_change_notify_uri && !cJSON_IsNull(subs_change_notify_uri) ? ogs_strdup(subs_change_notify_uri->valuestring) : NULL,
|
||||
subs_change_notify_correlation_id && !cJSON_IsNull(subs_change_notify_correlation_id) ? ogs_strdup(subs_change_notify_correlation_id->valuestring) : NULL,
|
||||
supi && !cJSON_IsNull(supi) ? ogs_strdup(supi->valuestring) : NULL,
|
||||
group_id && !cJSON_IsNull(group_id) ? ogs_strdup(group_id->valuestring) : NULL,
|
||||
gpsi && !cJSON_IsNull(gpsi) ? ogs_strdup(gpsi->valuestring) : NULL,
|
||||
pei && !cJSON_IsNull(pei) ? ogs_strdup(pei->valuestring) : NULL,
|
||||
any_ue ? true : false,
|
||||
any_ue ? any_ue->valueint : 0,
|
||||
options ? options_local_nonprim : NULL,
|
||||
|
|
@ -348,6 +394,17 @@ OpenAPI_amf_event_subscription_t *OpenAPI_amf_event_subscription_parseFromJSON(c
|
|||
|
||||
return amf_event_subscription_local_var;
|
||||
end:
|
||||
if (event_listList) {
|
||||
OpenAPI_list_for_each(event_listList, node) {
|
||||
OpenAPI_amf_event_free(node->data);
|
||||
}
|
||||
OpenAPI_list_free(event_listList);
|
||||
event_listList = NULL;
|
||||
}
|
||||
if (options_local_nonprim) {
|
||||
OpenAPI_amf_event_mode_free(options_local_nonprim);
|
||||
options_local_nonprim = NULL;
|
||||
}
|
||||
return NULL;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue