/* * 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_PCIDeviceSystemDevice.h" #include "LMI_Hardware.h" #include "PCIDev.h" static const CMPIBroker* _cb; struct pci_access *acc_system_dev = NULL; static void LMI_PCIDeviceSystemDeviceInitialize(const CMPIContext *ctx) { lmi_init(provider_name, _cb, ctx, provider_config_defaults); if (init_pci_access(&acc_system_dev, PCI_FILL_CLASS) != 0) { lmi_error("Failed to access the PCI bus."); abort(); } } static CMPIStatus LMI_PCIDeviceSystemDeviceCleanup( CMPIInstanceMI* mi, const CMPIContext* cc, CMPIBoolean term) { cleanup_pci_access(&acc_system_dev); CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_PCIDeviceSystemDeviceEnumInstanceNames( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop) { return KDefaultEnumerateInstanceNames( _cb, mi, cc, cr, cop); } static CMPIStatus LMI_PCIDeviceSystemDeviceEnumInstances( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const char** properties) { LMI_PCIDeviceSystemDevice lmi_pci_sys_device; LMI_PCIDeviceRef lmi_dev; const char *ns = KNameSpace(cop); struct pci_dev *dev; char device_id_str[PCI_DEVID_STR_SIZE]; for (dev = acc_system_dev->devices; dev; dev = dev->next) { /* Ignore PCI Bridges */ /* Throw away the lower 8 bits denoting the subclass */ if (((dev->device_class) >> 8) == LMI_PCIDevice_ClassCode_Bridge) { continue; } LMI_PCIDeviceSystemDevice_Init(&lmi_pci_sys_device, _cb, ns); snprintf(device_id_str, PCI_DEVID_STR_SIZE, "%02x:%02x.%u", dev->bus, dev->dev, dev->func); LMI_PCIDeviceRef_Init(&lmi_dev, _cb, ns); LMI_PCIDeviceRef_Set_SystemCreationClassName(&lmi_dev, lmi_get_system_creation_class_name()); LMI_PCIDeviceRef_Set_SystemName(&lmi_dev, lmi_get_system_name()); LMI_PCIDeviceRef_Set_CreationClassName(&lmi_dev, LMI_ORGID "_" PCI_DEVICE_CLASS_NAME); LMI_PCIDeviceRef_Set_DeviceID(&lmi_dev, device_id_str); LMI_PCIDeviceSystemDevice_SetObjectPath_GroupComponent( &lmi_pci_sys_device, lmi_get_computer_system()); LMI_PCIDeviceSystemDevice_Set_PartComponent(&lmi_pci_sys_device, &lmi_dev); KReturnInstance(cr, lmi_pci_sys_device); } CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_PCIDeviceSystemDeviceGetInstance( 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_PCIDeviceSystemDeviceCreateInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop, const CMPIInstance* ci) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_PCIDeviceSystemDeviceModifyInstance( 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_PCIDeviceSystemDeviceDeleteInstance( CMPIInstanceMI* mi, const CMPIContext* cc, const CMPIResult* cr, const CMPIObjectPath* cop) { CMReturn(CMPI_RC_ERR_NOT_SUPPORTED); } static CMPIStatus LMI_PCIDeviceSystemDeviceExecQuery( 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_PCIDeviceSystemDeviceAssociationCleanup( CMPIAssociationMI* mi, const CMPIContext* cc, CMPIBoolean term) { CMReturn(CMPI_RC_OK); } static CMPIStatus LMI_PCIDeviceSystemDeviceAssociators( 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_PCIDeviceSystemDevice_ClassName, assocClass, resultClass, role, resultRole, properties); } static CMPIStatus LMI_PCIDeviceSystemDeviceAssociatorNames( 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_PCIDeviceSystemDevice_ClassName, assocClass, resultClass, role, resultRole); } static CMPIStatus LMI_PCIDeviceSystemDeviceReferences( 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_PCIDeviceSystemDevice_ClassName, assocClass, role, properties); } static CMPIStatus LMI_PCIDeviceSystemDeviceReferenceNames( 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_PCIDeviceSystemDevice_ClassName, assocClass, role); } CMInstanceMIStub( LMI_PCIDeviceSystemDevice, LMI_PCIDeviceSystemDevice, _cb, LMI_PCIDeviceSystemDeviceInitialize(ctx)) CMAssociationMIStub( LMI_PCIDeviceSystemDevice, LMI_PCIDeviceSystemDevice, _cb, LMI_PCIDeviceSystemDeviceInitialize(ctx)) KONKRET_REGISTRATION( "root/cimv2", "LMI_PCIDeviceSystemDevice", "LMI_PCIDeviceSystemDevice", "instance association")