/* * Copyright (C) 2013-2014 Red Hat, Inc. All rights reserved. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public * License as published by the Free Software Foundation; either * version 2.1 of the License, or (at your option) any later version. * * This library is distributed in the hope that it will be useful, * but WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU * Lesser General Public License for more details. * * You should have received a copy of the GNU Lesser General Public * License along with this library; if not, write to the Free Software * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA * * Authors: Peter Schiffer */ #include #include "LMI_DiskDriveRealizes.h" #include "LMI_Hardware.h" #include "lsblk.h" static const CMPIBroker* _cb; static void LMI_DiskDriveRealizesInitialize(const CMPIContext *ctx) { lmi_init(provider_name, _cb, ctx, provider_config_defaults); } static CMPIStatus LMI_DiskDriveRealizesCleanup( CMPIInstanceMI* mi, const CMPIContext* cc, CMPIBoolean term) { CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_DiskDriveRealizesEnumInstanceNames( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop) { return KDefaultEnumerateInstanceNames( _cb, mi, cc, cr, cop); } static CMPIStatus LMI_DiskDriveRealizesEnumInstances( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char** properties) { LMI_DiskDriveRealizes lmi_hdd_realizes; LMI_DiskPhysicalPackageRef lmi_hdd_phys; LMI_DiskDriveRef lmi_hdd; const char *ns = KNameSpace(cop); unsigned i; LsblkHdd *lsblk_hdds = NULL; unsigned lsblk_hdds_nb = 0; if (lsblk_get_hdds(&lsblk_hdds, &lsblk_hdds_nb) != 0 || lsblk_hdds_nb < 1) { goto done; } for (i = 0; i < lsblk_hdds_nb; i++) { /* use only disk devices from lsblk */ if (strcmp(lsblk_hdds[i].type, "disk") != 0) { continue; } LMI_DiskDriveRealizes_Init(&lmi_hdd_realizes, _cb, ns); LMI_DiskDriveRef_Init(&lmi_hdd, _cb, ns); LMI_DiskDriveRef_Set_SystemCreationClassName(&lmi_hdd, lmi_get_system_creation_class_name()); LMI_DiskDriveRef_Set_SystemName(&lmi_hdd, lmi_get_system_name()); LMI_DiskDriveRef_Set_CreationClassName(&lmi_hdd, LMI_ORGID "_" DISK_DRIVE_CLASS_NAME); LMI_DiskDriveRef_Set_DeviceID(&lmi_hdd, lsblk_hdds[i].name); LMI_DiskPhysicalPackageRef_Init(&lmi_hdd_phys, _cb, ns); LMI_DiskPhysicalPackageRef_Set_CreationClassName(&lmi_hdd_phys, LMI_ORGID "_" DISK_PHYS_PKG_CLASS_NAME); LMI_DiskPhysicalPackageRef_Set_Tag(&lmi_hdd_phys, lsblk_hdds[i].name); LMI_DiskDriveRealizes_Set_Dependent(&lmi_hdd_realizes, &lmi_hdd); LMI_DiskDriveRealizes_Set_Antecedent(&lmi_hdd_realizes, &lmi_hdd_phys); KReturnInstance(cr, lmi_hdd_realizes); } done: lsblk_free_hdds(&lsblk_hdds, &lsblk_hdds_nb); CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_DiskDriveRealizesGetInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char** properties) { return KDefaultGetInstance( _cb, mi, cc, cr, cop, properties); } static CMPIStatus LMI_DiskDriveRealizesCreateInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const CMPIInstance* ci) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_DiskDriveRealizesModifyInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const CMPIInstance* ci, const char**properties) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_DiskDriveRealizesDeleteInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_DiskDriveRealizesExecQuery( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char* lang, const char* query) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_DiskDriveRealizesAssociationCleanup( CMPIAssociationMI* mi, const CMPIContext* cc, CMPIBoolean term) { CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_DiskDriveRealizesAssociators( CMPIAssociationMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char* assocClass, const char* resultClass, const char* role, const char* resultRole, const char** properties) { return KDefaultAssociators( _cb, mi, cc, cr, cop, LMI_DiskDriveRealizes_ClassName, assocClass, resultClass, role, resultRole, properties); } static CMPIStatus LMI_DiskDriveRealizesAssociatorNames( CMPIAssociationMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char* assocClass, const char* resultClass, const char* role, const char* resultRole) { return KDefaultAssociatorNames( _cb, mi, cc, cr, cop, LMI_DiskDriveRealizes_ClassName, assocClass, resultClass, role, resultRole); } static CMPIStatus LMI_DiskDriveRealizesReferences( CMPIAssociationMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char* assocClass, const char* role, const char** properties) { return KDefaultReferences( _cb, mi, cc, cr, cop, LMI_DiskDriveRealizes_ClassName, assocClass, role, properties); } static CMPIStatus LMI_DiskDriveRealizesReferenceNames( CMPIAssociationMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char* assocClass, const char* role) { return KDefaultReferenceNames( _cb, mi, cc, cr, cop, LMI_DiskDriveRealizes_ClassName, assocClass, role); } CMInstanceMIStub( LMI_DiskDriveRealizes, LMI_DiskDriveRealizes, _cb, LMI_DiskDriveRealizesInitialize(ctx)) CMAssociationMIStub( LMI_DiskDriveRealizes, LMI_DiskDriveRealizes, _cb, LMI_DiskDriveRealizesInitialize(ctx)) KONKRET_REGISTRATION( "root/cimv2", "LMI_DiskDriveRealizes", "LMI_DiskDriveRealizes", "instance association")