2020-03-18 17:24:33 +08:00
|
|
|
#include <stdlib.h>
|
|
|
|
|
#include <string.h>
|
|
|
|
|
#include <stdio.h>
|
|
|
|
|
#include "v1_iscsi_persistent_volume_source.h"
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source_create(
|
|
|
|
|
int chap_auth_discovery,
|
|
|
|
|
int chap_auth_session,
|
|
|
|
|
char *fs_type,
|
|
|
|
|
char *initiator_name,
|
|
|
|
|
char *iqn,
|
|
|
|
|
char *iscsi_interface,
|
|
|
|
|
int lun,
|
|
|
|
|
list_t *portals,
|
|
|
|
|
int read_only,
|
|
|
|
|
v1_secret_reference_t *secret_ref,
|
|
|
|
|
char *target_portal
|
|
|
|
|
) {
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source_local_var = malloc(sizeof(v1_iscsi_persistent_volume_source_t));
|
|
|
|
|
if (!v1_iscsi_persistent_volume_source_local_var) {
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->chap_auth_discovery = chap_auth_discovery;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->chap_auth_session = chap_auth_session;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->fs_type = fs_type;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->initiator_name = initiator_name;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->iqn = iqn;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->iscsi_interface = iscsi_interface;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->lun = lun;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->portals = portals;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->read_only = read_only;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->secret_ref = secret_ref;
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var->target_portal = target_portal;
|
|
|
|
|
|
|
|
|
|
return v1_iscsi_persistent_volume_source_local_var;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
void v1_iscsi_persistent_volume_source_free(v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source) {
|
|
|
|
|
if(NULL == v1_iscsi_persistent_volume_source){
|
|
|
|
|
return ;
|
|
|
|
|
}
|
|
|
|
|
listEntry_t *listEntry;
|
2021-01-05 15:42:34 +08:00
|
|
|
if (v1_iscsi_persistent_volume_source->fs_type) {
|
|
|
|
|
free(v1_iscsi_persistent_volume_source->fs_type);
|
|
|
|
|
v1_iscsi_persistent_volume_source->fs_type = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->initiator_name) {
|
|
|
|
|
free(v1_iscsi_persistent_volume_source->initiator_name);
|
|
|
|
|
v1_iscsi_persistent_volume_source->initiator_name = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->iqn) {
|
|
|
|
|
free(v1_iscsi_persistent_volume_source->iqn);
|
|
|
|
|
v1_iscsi_persistent_volume_source->iqn = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->iscsi_interface) {
|
|
|
|
|
free(v1_iscsi_persistent_volume_source->iscsi_interface);
|
|
|
|
|
v1_iscsi_persistent_volume_source->iscsi_interface = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->portals) {
|
|
|
|
|
list_ForEach(listEntry, v1_iscsi_persistent_volume_source->portals) {
|
|
|
|
|
free(listEntry->data);
|
|
|
|
|
}
|
|
|
|
|
list_free(v1_iscsi_persistent_volume_source->portals);
|
|
|
|
|
v1_iscsi_persistent_volume_source->portals = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->secret_ref) {
|
|
|
|
|
v1_secret_reference_free(v1_iscsi_persistent_volume_source->secret_ref);
|
|
|
|
|
v1_iscsi_persistent_volume_source->secret_ref = NULL;
|
|
|
|
|
}
|
|
|
|
|
if (v1_iscsi_persistent_volume_source->target_portal) {
|
|
|
|
|
free(v1_iscsi_persistent_volume_source->target_portal);
|
|
|
|
|
v1_iscsi_persistent_volume_source->target_portal = NULL;
|
2020-03-18 17:24:33 +08:00
|
|
|
}
|
|
|
|
|
free(v1_iscsi_persistent_volume_source);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
cJSON *v1_iscsi_persistent_volume_source_convertToJSON(v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source) {
|
|
|
|
|
cJSON *item = cJSON_CreateObject();
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->chap_auth_discovery
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->chap_auth_discovery) {
|
|
|
|
|
if(cJSON_AddBoolToObject(item, "chapAuthDiscovery", v1_iscsi_persistent_volume_source->chap_auth_discovery) == NULL) {
|
|
|
|
|
goto fail; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->chap_auth_session
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->chap_auth_session) {
|
|
|
|
|
if(cJSON_AddBoolToObject(item, "chapAuthSession", v1_iscsi_persistent_volume_source->chap_auth_session) == NULL) {
|
|
|
|
|
goto fail; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->fs_type
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->fs_type) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "fsType", v1_iscsi_persistent_volume_source->fs_type) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->initiator_name
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->initiator_name) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "initiatorName", v1_iscsi_persistent_volume_source->initiator_name) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->iqn
|
|
|
|
|
if (!v1_iscsi_persistent_volume_source->iqn) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(cJSON_AddStringToObject(item, "iqn", v1_iscsi_persistent_volume_source->iqn) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->iscsi_interface
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->iscsi_interface) {
|
|
|
|
|
if(cJSON_AddStringToObject(item, "iscsiInterface", v1_iscsi_persistent_volume_source->iscsi_interface) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->lun
|
|
|
|
|
if (!v1_iscsi_persistent_volume_source->lun) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(cJSON_AddNumberToObject(item, "lun", v1_iscsi_persistent_volume_source->lun) == NULL) {
|
|
|
|
|
goto fail; //Numeric
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->portals
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->portals) {
|
|
|
|
|
cJSON *portals = cJSON_AddArrayToObject(item, "portals");
|
|
|
|
|
if(portals == NULL) {
|
|
|
|
|
goto fail; //primitive container
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
listEntry_t *portalsListEntry;
|
|
|
|
|
list_ForEach(portalsListEntry, v1_iscsi_persistent_volume_source->portals) {
|
|
|
|
|
if(cJSON_AddStringToObject(portals, "", (char*)portalsListEntry->data) == NULL)
|
|
|
|
|
{
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->read_only
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->read_only) {
|
|
|
|
|
if(cJSON_AddBoolToObject(item, "readOnly", v1_iscsi_persistent_volume_source->read_only) == NULL) {
|
|
|
|
|
goto fail; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->secret_ref
|
|
|
|
|
if(v1_iscsi_persistent_volume_source->secret_ref) {
|
|
|
|
|
cJSON *secret_ref_local_JSON = v1_secret_reference_convertToJSON(v1_iscsi_persistent_volume_source->secret_ref);
|
|
|
|
|
if(secret_ref_local_JSON == NULL) {
|
|
|
|
|
goto fail; //model
|
|
|
|
|
}
|
|
|
|
|
cJSON_AddItemToObject(item, "secretRef", secret_ref_local_JSON);
|
|
|
|
|
if(item->child == NULL) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->target_portal
|
|
|
|
|
if (!v1_iscsi_persistent_volume_source->target_portal) {
|
|
|
|
|
goto fail;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if(cJSON_AddStringToObject(item, "targetPortal", v1_iscsi_persistent_volume_source->target_portal) == NULL) {
|
|
|
|
|
goto fail; //String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return item;
|
|
|
|
|
fail:
|
|
|
|
|
if (item) {
|
|
|
|
|
cJSON_Delete(item);
|
|
|
|
|
}
|
|
|
|
|
return NULL;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source_parseFromJSON(cJSON *v1_iscsi_persistent_volume_sourceJSON){
|
|
|
|
|
|
|
|
|
|
v1_iscsi_persistent_volume_source_t *v1_iscsi_persistent_volume_source_local_var = NULL;
|
|
|
|
|
|
2021-11-05 14:13:35 +08:00
|
|
|
// define the local variable for v1_iscsi_persistent_volume_source->secret_ref
|
|
|
|
|
v1_secret_reference_t *secret_ref_local_nonprim = NULL;
|
|
|
|
|
|
2020-03-18 17:24:33 +08:00
|
|
|
// v1_iscsi_persistent_volume_source->chap_auth_discovery
|
|
|
|
|
cJSON *chap_auth_discovery = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "chapAuthDiscovery");
|
|
|
|
|
if (chap_auth_discovery) {
|
|
|
|
|
if(!cJSON_IsBool(chap_auth_discovery))
|
|
|
|
|
{
|
|
|
|
|
goto end; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->chap_auth_session
|
|
|
|
|
cJSON *chap_auth_session = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "chapAuthSession");
|
|
|
|
|
if (chap_auth_session) {
|
|
|
|
|
if(!cJSON_IsBool(chap_auth_session))
|
|
|
|
|
{
|
|
|
|
|
goto end; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->fs_type
|
|
|
|
|
cJSON *fs_type = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "fsType");
|
|
|
|
|
if (fs_type) {
|
|
|
|
|
if(!cJSON_IsString(fs_type))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->initiator_name
|
|
|
|
|
cJSON *initiator_name = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "initiatorName");
|
|
|
|
|
if (initiator_name) {
|
|
|
|
|
if(!cJSON_IsString(initiator_name))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->iqn
|
|
|
|
|
cJSON *iqn = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "iqn");
|
|
|
|
|
if (!iqn) {
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!cJSON_IsString(iqn))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->iscsi_interface
|
|
|
|
|
cJSON *iscsi_interface = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "iscsiInterface");
|
|
|
|
|
if (iscsi_interface) {
|
|
|
|
|
if(!cJSON_IsString(iscsi_interface))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->lun
|
|
|
|
|
cJSON *lun = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "lun");
|
|
|
|
|
if (!lun) {
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!cJSON_IsNumber(lun))
|
|
|
|
|
{
|
|
|
|
|
goto end; //Numeric
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->portals
|
|
|
|
|
cJSON *portals = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "portals");
|
|
|
|
|
list_t *portalsList;
|
|
|
|
|
if (portals) {
|
|
|
|
|
cJSON *portals_local;
|
|
|
|
|
if(!cJSON_IsArray(portals)) {
|
|
|
|
|
goto end;//primitive container
|
|
|
|
|
}
|
|
|
|
|
portalsList = list_create();
|
|
|
|
|
|
|
|
|
|
cJSON_ArrayForEach(portals_local, portals)
|
|
|
|
|
{
|
|
|
|
|
if(!cJSON_IsString(portals_local))
|
|
|
|
|
{
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
list_addElement(portalsList , strdup(portals_local->valuestring));
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->read_only
|
|
|
|
|
cJSON *read_only = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "readOnly");
|
|
|
|
|
if (read_only) {
|
|
|
|
|
if(!cJSON_IsBool(read_only))
|
|
|
|
|
{
|
|
|
|
|
goto end; //Bool
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->secret_ref
|
|
|
|
|
cJSON *secret_ref = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "secretRef");
|
|
|
|
|
if (secret_ref) {
|
|
|
|
|
secret_ref_local_nonprim = v1_secret_reference_parseFromJSON(secret_ref); //nonprimitive
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// v1_iscsi_persistent_volume_source->target_portal
|
|
|
|
|
cJSON *target_portal = cJSON_GetObjectItemCaseSensitive(v1_iscsi_persistent_volume_sourceJSON, "targetPortal");
|
|
|
|
|
if (!target_portal) {
|
|
|
|
|
goto end;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
if(!cJSON_IsString(target_portal))
|
|
|
|
|
{
|
|
|
|
|
goto end; //String
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
v1_iscsi_persistent_volume_source_local_var = v1_iscsi_persistent_volume_source_create (
|
|
|
|
|
chap_auth_discovery ? chap_auth_discovery->valueint : 0,
|
|
|
|
|
chap_auth_session ? chap_auth_session->valueint : 0,
|
|
|
|
|
fs_type ? strdup(fs_type->valuestring) : NULL,
|
|
|
|
|
initiator_name ? strdup(initiator_name->valuestring) : NULL,
|
|
|
|
|
strdup(iqn->valuestring),
|
|
|
|
|
iscsi_interface ? strdup(iscsi_interface->valuestring) : NULL,
|
|
|
|
|
lun->valuedouble,
|
|
|
|
|
portals ? portalsList : NULL,
|
|
|
|
|
read_only ? read_only->valueint : 0,
|
|
|
|
|
secret_ref ? secret_ref_local_nonprim : NULL,
|
|
|
|
|
strdup(target_portal->valuestring)
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
return v1_iscsi_persistent_volume_source_local_var;
|
|
|
|
|
end:
|
2021-01-11 12:15:24 +08:00
|
|
|
if (secret_ref_local_nonprim) {
|
|
|
|
|
v1_secret_reference_free(secret_ref_local_nonprim);
|
|
|
|
|
secret_ref_local_nonprim = NULL;
|
|
|
|
|
}
|
2020-03-18 17:24:33 +08:00
|
|
|
return NULL;
|
|
|
|
|
|
|
|
|
|
}
|