librenms/librenms

View on GitHub
LibreNMS/OS/Traits/ServerHardware.php

Summary

Maintainability
A
4 hrs
Test Coverage
<?php
/*
 * PCHardware.php
 *
 * Helpers to discover OS info from various server vendor MIB addons
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program 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 General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <https://www.gnu.org/licenses/>.
 *
 * @package    LibreNMS
 * @link       https://www.librenms.org
 * @copyright  2020 Tony Murray
 * @author     Tony Murray <murraytony@gmail.com>
 */

namespace LibreNMS\OS\Traits;

trait ServerHardware
{
    protected function discoverServerHardware()
    {
        $this->discoverDellHardware() || $this->discoverHpHardware() || $this->discoverSupermicroHardware();
    }

    protected function discoverDellHardware()
    {
        // Detect Dell hardware via OpenManage SNMP
        $hw = snmp_get_multi_oid($this->getDeviceArray(), [
            'MIB-Dell-10892::chassisModelName.1',
            'MIB-Dell-10892::chassisServiceTagName.1',
        ], '-OUQ', null, 'dell');

        if (empty($hw)) {
            return false;
        }

        $device = $this->getDevice();
        if (! empty($hw['MIB-Dell-10892::chassisModelName.1'])) {
            $device->hardware = 'Dell ' . $hw['MIB-Dell-10892::chassisModelName.1'];
        }

        $device->serial = $hw['MIB-Dell-10892::chassisServiceTagName.1'] ?? $device->serial;

        return true;
    }

    protected function discoverHpHardware()
    {
        $hw = snmp_get_multi_oid($this->getDeviceArray(), [
            'CPQSINFO-MIB::cpqSiProductName.0',
            'CPQSINFO-MIB::cpqSiSysSerialNum.0',
        ], '-OUQ', null, 'hp');

        if (empty($hw)) {
            return false;
        }

        $device = $this->getDevice();
        $device->hardware = $hw['CPQSINFO-MIB::cpqSiProductName.0'] ?? $device->hardware;
        $device->serial = $hw['CPQSINFO-MIB::cpqSiSysSerialNum.0'] ?? $device->serial;

        return true;
    }

    protected function discoverSupermicroHardware()
    {
        // Detect Supermicro hardware via Supermicro SuperDoctor 5
        $hw = snmp_get_multi_oid($this->getDeviceArray(), [
            'SUPERMICRO-SD5-MIB::mbProductName.1',
            'SUPERMICRO-SD5-MIB::mbSerialNumber.1',
        ], '-OUQ', null, 'supermicro');

        if (empty($hw)) {
            return false;
        }

        $device = $this->getDevice();
        if (! empty($hw['SUPERMICRO-SD5-MIB::mbProductName.1'])) {
            $device->hardware = 'Supermicro ' . $hw['SUPERMICRO-SD5-MIB::mbProductName.1'];
        }

        $device->serial = $hw['SUPERMICRO-SD5-MIB::mbSerialNumber.1'] ?? $device->serial;

        return true;
    }
}