Files

386 lines
16 KiB
PHP
Raw Permalink Normal View History

2018-02-05 07:39:13 -06:00
<?php
/**
* Vrp.php
*
* Huawei VRP
*
* 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 <http://www.gnu.org/licenses/>.
*
* @link http://librenms.org
* @copyright 2018 Tony Murray
* @author Tony Murray <[email protected]>
*/
namespace LibreNMS\OS;
2020-09-18 08:12:07 -05:00
use App\Models\Device;
use App\Models\PortsNac;
2020-04-17 17:37:56 -05:00
use Illuminate\Support\Str;
2018-02-05 07:39:13 -06:00
use LibreNMS\Device\Processor;
use LibreNMS\Device\WirelessSensor;
2020-09-18 08:12:07 -05:00
use LibreNMS\Interfaces\Discovery\OSDiscovery;
use LibreNMS\Interfaces\Discovery\ProcessorDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessApCountDiscovery;
use LibreNMS\Interfaces\Discovery\Sensors\WirelessClientsDiscovery;
2020-09-18 08:12:07 -05:00
use LibreNMS\Interfaces\Polling\NacPolling;
use LibreNMS\Interfaces\Polling\OSPolling;
use LibreNMS\OS;
use LibreNMS\RRD\RrdDefinition;
2018-02-05 07:39:13 -06:00
class Vrp extends OS implements
2020-09-18 08:12:07 -05:00
OSPolling,
ProcessorDiscovery,
NacPolling,
WirelessApCountDiscovery,
WirelessClientsDiscovery,
OSDiscovery
2018-02-05 07:39:13 -06:00
{
2020-09-18 08:12:07 -05:00
public function discoverOS(Device $device): void
{
2020-09-18 08:12:07 -05:00
parent::discoverOS($device); // yaml
//Huawei VRP devices are not providing the HW description in a unified way
2020-09-18 08:12:07 -05:00
preg_match('/Version (\S+)/', $device->sysDescr, $matches);
$device->version = isset($matches[1]) ? ($matches[1] . ($device->version ? " ($device->version)" : '')) : null; // version from yaml sysDescr
2020-09-18 08:12:07 -05:00
if ($device->version) {
$patch = snmp_getnext($this->getDeviceArray(), 'HUAWEI-SYS-MAN-MIB::hwPatchVersion', '-OQv');
if ($patch) {
$device->version .= " [$patch]";
}
}
2020-09-18 08:12:07 -05:00
if ($device->hardware && preg_match("/$device->hardware\S+/", $device->sysDescr, $matches)) {
$device->hardware = $matches[0];
}
2020-09-18 08:12:07 -05:00
}
2020-09-18 08:12:07 -05:00
public function pollOS()
{
// Polling the Wireless data TODO port to module
$apTable = snmpwalk_group($this->getDeviceArray(), 'hwWlanApName', 'HUAWEI-WLAN-AP-MIB', 2);
2020-09-18 08:12:07 -05:00
//Check for existence of at least 1 AP to continue the polling)
2020-09-21 14:54:51 +02:00
if (! empty($apTable)) {
2020-09-18 08:12:07 -05:00
$apTableOids = [
'hwWlanApSn',
'hwWlanApTypeInfo',
];
foreach ($apTableOids as $apTableOid) {
$apTable = snmpwalk_group($this->getDeviceArray(), $apTableOid, 'HUAWEI-WLAN-AP-MIB', 2, $apTable);
}
2020-09-18 08:12:07 -05:00
$apRadioTableOids = [ // hwWlanRadioInfoTable
'hwWlanRadioMac',
'hwWlanRadioChUtilizationRate',
'hwWlanRadioChInterferenceRate',
'hwWlanRadioActualEIRP',
'hwWlanRadioFreqType',
'hwWlanRadioWorkingChannel',
];
$clientPerRadio = [];
$radioTable = [];
foreach ($apRadioTableOids as $apRadioTableOid) {
$radioTable = snmpwalk_group($this->getDeviceArray(), $apRadioTableOid, 'HUAWEI-WLAN-AP-RADIO-MIB', 2, $radioTable);
}
2020-09-18 08:12:07 -05:00
$numClients = 0;
$vapInfoTable = snmpwalk_group($this->getDeviceArray(), 'hwWlanVapStaOnlineCnt', 'HUAWEI-WLAN-VAP-MIB', 3);
foreach ($vapInfoTable as $ap_id => $ap) {
//Convert mac address (hh:hh:hh:hh:hh:hh) to dec OID (ddd.ddd.ddd.ddd.ddd.ddd)
//$a_index_oid = implode(".", array_map("hexdec", explode(":", $ap_id)));
foreach ($ap as $r_id => $radio) {
foreach ($radio as $s_index => $ssid) {
$clientPerRadio[$ap_id][$r_id] += $ssid['hwWlanVapStaOnlineCnt'];
$numClients += $ssid['hwWlanVapStaOnlineCnt'];
}
}
}
$numRadios = count($radioTable);
$rrd_def = RrdDefinition::make()
->addDataset('NUMAPS', 'GAUGE', 0, 12500000000)
->addDataset('NUMCLIENTS', 'GAUGE', 0, 12500000000);
$fields = [
'NUMAPS' => $numRadios,
'NUMCLIENTS' => $numClients,
];
$tags = compact('rrd_def');
data_update($this->getDeviceArray(), 'vrp', $tags, $fields);
$ap_db = dbFetchRows('SELECT * FROM `access_points` WHERE `device_id` = ?', [$this->getDeviceArray()['device_id']]);
foreach ($radioTable as $ap_id => $ap) {
foreach ($ap as $r_id => $radio) {
$channel = $radio['hwWlanRadioWorkingChannel'];
$mac = $radio['hwWlanRadioMac'];
2020-09-21 15:59:34 +02:00
$name = $apTable[$ap_id]['hwWlanApName'] . ' Radio ' . $r_id;
2020-09-18 08:12:07 -05:00
$radionum = $r_id;
$txpow = $radio['hwWlanRadioActualEIRP'];
$interference = $radio['hwWlanRadioChInterferenceRate'];
$radioutil = $radio['hwWlanRadioChUtilizationRate'];
$numasoclients = $clientPerRadio[$ap_id][$r_id];
switch ($radio['hwWlanRadioFreqType']) {
case 1:
2020-09-21 15:59:34 +02:00
$type = '2.4Ghz';
2020-09-18 08:12:07 -05:00
break;
case 2:
2020-09-21 15:59:34 +02:00
$type = '5Ghz';
2020-09-18 08:12:07 -05:00
break;
default:
2020-09-21 15:59:34 +02:00
$type = 'unknown (huawei ' . $radio['hwWlanRadioFreqType'] . ')';
2020-09-18 08:12:07 -05:00
}
2020-09-18 08:12:07 -05:00
// TODO
$numactbssid = 0;
$nummonbssid = 0;
$nummonclients = 0;
d_echo(" name: $name\n");
d_echo(" radionum: $radionum\n");
d_echo(" type: $type\n");
d_echo(" channel: $channel\n");
d_echo(" txpow: $txpow\n");
d_echo(" radioutil: $radioutil\n");
d_echo(" numasoclients: $numasoclients\n");
d_echo(" interference: $interference\n");
$rrd_name = ['arubaap', $name . $radionum];
$rrd_def = RrdDefinition::make()
->addDataset('channel', 'GAUGE', 0, 200)
->addDataset('txpow', 'GAUGE', 0, 200)
->addDataset('radioutil', 'GAUGE', 0, 100)
->addDataset('nummonclients', 'GAUGE', 0, 500)
->addDataset('nummonbssid', 'GAUGE', 0, 200)
->addDataset('numasoclients', 'GAUGE', 0, 500)
->addDataset('interference', 'GAUGE', 0, 2000);
$fields = [
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'nummonclients' => $nummonclients,
'nummonbssid' => $nummonbssid,
'numasoclients' => $numasoclients,
'interference' => $interference,
];
$tags = compact('name', 'radionum', 'rrd_name', 'rrd_def');
data_update($this->getDeviceArray(), 'arubaap', $tags, $fields);
$foundid = 0;
for ($z = 0; $z < sizeof($ap_db); $z++) {
if ($ap_db[$z]['name'] == $name && $ap_db[$z]['radio_number'] == $radionum) {
$foundid = $ap_db[$z]['accesspoint_id'];
$ap_db[$z]['seen'] = 1;
continue;
}
}
if ($foundid == 0) {
$ap_id = dbInsert(
[
'device_id' => $this->getDeviceArray()['device_id'],
'name' => $name,
'radio_number' => $radionum,
'type' => $type,
'mac_addr' => $mac,
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'numasoclients' => $numasoclients,
'nummonclients' => $nummonclients,
'numactbssid' => $numactbssid,
'nummonbssid' => $nummonbssid,
2020-09-21 14:54:51 +02:00
'interference' => $interference,
2020-09-18 08:12:07 -05:00
],
'access_points'
);
} else {
dbUpdate(
[
'mac_addr' => $mac,
'type' => $type,
'deleted' => 0,
'channel' => $channel,
'txpow' => $txpow,
'radioutil' => $radioutil,
'numasoclients' => $numasoclients,
'nummonclients' => $nummonclients,
'numactbssid' => $numactbssid,
'nummonbssid' => $nummonbssid,
2020-09-21 14:54:51 +02:00
'interference' => $interference,
2020-09-18 08:12:07 -05:00
],
'access_points',
'`accesspoint_id` = ?',
[$foundid]
);
}
}//end foreach 1
}//end foreach 2
for ($z = 0; $z < sizeof($ap_db); $z++) {
2020-09-21 14:54:51 +02:00
if (! isset($ap_db[$z]['seen']) && $ap_db[$z]['deleted'] == 0) {
2020-09-18 08:12:07 -05:00
dbUpdate(['deleted' => 1], 'access_points', '`accesspoint_id` = ?', [$ap_db[$z]['accesspoint_id']]);
}
}
}
}
2018-02-05 07:39:13 -06:00
/**
* Discover processors.
* Returns an array of LibreNMS\Device\Processor objects that have been discovered
*
* @return array Processors
*/
public function discoverProcessors()
{
2020-09-18 08:12:07 -05:00
$device = $this->getDeviceArray();
2018-02-05 07:39:13 -06:00
2020-09-21 14:54:51 +02:00
$processors_data = snmpwalk_cache_multi_oid($device, 'hwEntityCpuUsage', [], 'HUAWEI-ENTITY-EXTENT-MIB', 'huawei');
2018-02-05 07:39:13 -06:00
2020-09-21 14:54:51 +02:00
if (! empty($processors_data)) {
2018-02-05 07:39:13 -06:00
$processors_data = snmpwalk_cache_multi_oid($device, 'hwEntityMemSize', $processors_data, 'HUAWEI-ENTITY-EXTENT-MIB', 'huawei');
$processors_data = snmpwalk_cache_multi_oid($device, 'hwEntityBomEnDesc', $processors_data, 'HUAWEI-ENTITY-EXTENT-MIB', 'huawei');
}
d_echo($processors_data);
2020-09-21 14:54:51 +02:00
$processors = [];
2018-02-05 07:39:13 -06:00
foreach ($processors_data as $index => $entry) {
if ($entry['hwEntityMemSize'] != 0) {
2020-09-21 14:54:51 +02:00
d_echo($index . ' ' . $entry['hwEntityBomEnDesc'] . ' -> ' . $entry['hwEntityCpuUsage'] . ' -> ' . $entry['hwEntityMemSize'] . "\n");
2018-02-05 07:39:13 -06:00
2020-09-21 14:54:51 +02:00
$usage_oid = '.1.3.6.1.4.1.2011.5.25.31.1.1.1.1.5.' . $index;
2018-02-05 07:39:13 -06:00
$descr = $entry['hwEntityBomEnDesc'];
$usage = $entry['hwEntityCpuUsage'];
2020-04-17 17:37:56 -05:00
if (empty($descr) || Str::contains($descr, 'No') || Str::contains($usage, 'No')) {
2018-02-05 07:39:13 -06:00
continue;
}
$processors[] = Processor::discover(
$this->getName(),
$this->getDeviceId(),
$usage_oid,
$index,
$descr,
1,
$usage
);
}
}
return $processors;
}
2019-01-19 18:26:52 +01:00
/**
2020-09-21 14:54:51 +02:00
* Discover the Network Access Control informations (dot1X etc etc)
*/
2019-01-19 18:26:52 +01:00
public function pollNac()
{
$nac = collect();
// We collect the first table
2020-09-18 08:12:07 -05:00
$portAuthSessionEntry = snmpwalk_cache_oid($this->getDeviceArray(), 'hwAccessTable', [], 'HUAWEI-AAA-MIB');
2019-01-19 18:26:52 +01:00
2020-09-21 14:54:51 +02:00
if (! empty($portAuthSessionEntry)) {
2019-01-19 18:26:52 +01:00
// If it is not empty, lets add the Extended table
2020-09-18 08:12:07 -05:00
$portAuthSessionEntry = snmpwalk_cache_oid($this->getDeviceArray(), 'hwAccessExtTable', $portAuthSessionEntry, 'HUAWEI-AAA-MIB');
2019-01-19 18:26:52 +01:00
// We cache a port_ifName -> port_id map
2020-09-18 08:12:07 -05:00
$ifName_map = $this->getDevice()->ports()->pluck('port_id', 'ifName');
2019-01-19 18:26:52 +01:00
// update the DB
foreach ($portAuthSessionEntry as $authId => $portAuthSessionEntryParameters) {
$mac_address = strtolower(implode(array_map('zeropad', explode(':', $portAuthSessionEntryParameters['hwAccessMACAddress']))));
$port_id = $ifName_map->get($portAuthSessionEntryParameters['hwAccessInterface'], 0);
2020-09-21 14:54:51 +02:00
if ($port_id <= 0) {
2019-01-19 18:26:52 +01:00
continue; //this would happen for an SSH session for instance
}
$nac->put($mac_address, new PortsNac([
'port_id' => $ifName_map->get($portAuthSessionEntryParameters['hwAccessInterface'], 0),
'mac_address' => $mac_address,
'auth_id' => $authId,
'domain' => $portAuthSessionEntryParameters['hwAccessDomain'],
2020-09-21 14:54:51 +02:00
'username' => '' . $portAuthSessionEntryParameters['hwAccessUserName'],
2019-01-19 18:26:52 +01:00
'ip_address' => $portAuthSessionEntryParameters['hwAccessIPAddress'],
2020-09-21 14:54:51 +02:00
'authz_by' => '' . $portAuthSessionEntryParameters['hwAccessType'],
'authz_status' => '' . $portAuthSessionEntryParameters['hwAccessAuthorizetype'],
'host_mode' => is_null($portAuthSessionEntryParameters['hwAccessAuthType']) ? 'default' : $portAuthSessionEntryParameters['hwAccessAuthType'],
2019-01-19 18:26:52 +01:00
'timeout' => $portAuthSessionEntryParameters['hwAccessSessionTimeout'],
'time_elapsed' => $portAuthSessionEntryParameters['hwAccessOnlineTime'],
'authc_status' => $portAuthSessionEntryParameters['hwAccessCurAuthenPlace'],
2020-09-21 14:54:51 +02:00
'method' => '' . $portAuthSessionEntryParameters['hwAccessAuthtype'],
2019-01-19 18:26:52 +01:00
'vlan' => $portAuthSessionEntryParameters['hwAccessVLANID'],
]));
}
}
2020-09-21 14:54:51 +02:00
2019-01-19 18:26:52 +01:00
return $nac;
}
public function discoverWirelessApCount()
{
2020-09-21 14:54:51 +02:00
$sensors = [];
$ap_number = snmpwalk_cache_oid($this->getDeviceArray(), 'hwWlanCurJointApNum.0', [], 'HUAWEI-WLAN-GLOBAL-MIB');
$sensors[] = new WirelessSensor(
'ap-count',
$this->getDeviceId(),
'.1.3.6.1.4.1.2011.6.139.12.1.2.1.0',
'vrp-ap-count',
'ap-count',
'AP Count',
$ap_number[0]['hwWlanCurJointApNum']
);
2020-09-21 14:54:51 +02:00
return $sensors;
}
public function discoverWirelessClients()
{
2020-09-21 14:54:51 +02:00
$sensors = [];
$total_oids = [];
$vapInfoTable = $this->getCacheTable('hwWlanVapInfoTable', 'HUAWEI-WLAN-VAP-MIB', 3);
2020-09-18 08:12:07 -05:00
foreach ($vapInfoTable as $a_index => $ap) {
//Convert mac address (hh:hh:hh:hh:hh:hh) to dec OID (ddd.ddd.ddd.ddd.ddd.ddd)
2020-09-21 15:59:34 +02:00
$a_index_oid = implode('.', array_map('hexdec', explode(':', $a_index)));
foreach ($ap as $r_index => $radio) {
foreach ($radio as $s_index => $ssid) {
2020-09-21 14:54:51 +02:00
$oid = '.1.3.6.1.4.1.2011.6.139.17.1.1.1.9.' . $a_index_oid . '.' . $r_index . '.' . $s_index;
$total_oids[] = $oid;
$sensors[] = new WirelessSensor(
'clients',
$this->getDeviceId(),
$oid,
'vrp',
$a_index_oid . '.' . $r_index . '.' . $s_index,
'Radio:' . $r_index . ' SSID:' . $ssid['hwWlanVapProfileName'],
$ssid['hwWlanVapStaOnlineCnt']
);
}
}
}
2020-09-21 14:54:51 +02:00
return $sensors;
}
2018-02-05 07:39:13 -06:00
}