Files
librenms-librenms/LibreNMS/Device/YamlDiscovery.php
Tony Murray 11147d3bbf Major Processors rewrite (#8066)
* Extract DiscoveryItem and move some things to better places.
Extract model class
Fix up model construction.  I have problem with construction...
Makeshift model working.  Switch constructor to factory.  discover() and create()
Support legacy discovery.
Remove uneeded custom pollers
Remove netonix custom detection as we try ucd on all os now.
Add a few yaml procs.  Fix a couple things.
More processor discovery conversions
Move Calix e7 to standard hrProcessorLoad, but it doesn't fully implement the HR-MIB, move things around to make it work.
Add a few yaml procs.  Fix a couple things. Correct some stupid mib stuff.
Move more, drop php 5.3
Add netscaler which uses string indexes.  Port fiberhome to yaml and use skip_values
More conversions.  BroadcomProcessorUsage Trait
Serveriron and Ironware share some mibs.  Create a common abstract os for them.
Add yaml support for mib specification in each data entry
Make legacy discover_processor() set 0 for hrDeviceIndex

Untangle Dell switch OS processors

Use use shared OS for groups if they don't have a specific group.
fix silly mib mistake

Make index optional

Move HR and UCD to Traits and out of Processor.

* forgot to update the fortiswitch index

* Make sgos and avaya-ers match the old index.

* fix comware test data

* fix merge errors

* fix dsm and remove pointless empty modules

* file not found exception is in the wrong place.

* Updated processor development docs
2018-02-05 07:39:13 -06:00

265 lines
9.4 KiB
PHP

<?php
/**
* YamlDiscovery.php
*
* -Description-
*
* 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/>.
*
* @package LibreNMS
* @link http://librenms.org
* @copyright 2017 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Device;
use LibreNMS\Interfaces\Discovery\DiscoveryItem;
use LibreNMS\OS;
class YamlDiscovery
{
/**
* @param OS $os
* @param DiscoveryItem|string $class
* @param $yaml_data
* @return array
*/
public static function discover(OS $os, $class, $yaml_data)
{
$pre_cache = $os->preCache();
$items = array();
// convert to class name for static call below
if (is_object($class)) {
$class = get_class($class);
}
d_echo("YAML Discovery Data: ");
d_echo($yaml_data);
foreach ($yaml_data as $first_key => $first_yaml) {
if ($first_key == 'pre-cache') {
continue;
}
$group_options = isset($first_yaml['options']) ? $first_yaml['options'] : array();
// find the data array, we could already be at for simple modules
if (isset($data['data'])) {
$first_yaml = $first_yaml['data'];
} elseif ($first_key !== 'data') {
continue;
}
foreach ($first_yaml as $data) {
$raw_data = (array)$pre_cache[$data['oid']];
d_echo("Data {$data['oid']}: ");
d_echo($raw_data);
$count = 0;
foreach ($raw_data as $index => $snmp_data) {
$count++;
$current_data = array();
if (!isset($data['value'])) {
$data['value'] = $data['oid'];
}
foreach ($data as $name => $value) {
if ($name == '$oid' || $name == 'skip_values') {
$current_data[$name] = $value;
} elseif (str_contains($value, '{{')) {
// replace embedded values
$current_data[$name] = static::replaceValues($name, $index, $count, $data, $pre_cache);
} else {
// replace references to data
$current_data[$name] = dynamic_discovery_get_value($name, $index, $data, $pre_cache, $value);
}
}
if (static::canSkipItem($current_data['value'], $current_data, $group_options, $snmp_data)) {
continue;
}
$item = $class::fromYaml($os, $index, $current_data);
if ($item->isValid()) {
$items[] = $item;
}
}
}
}
return $items;
}
public static function replaceValues($name, $index, $count, $data, $pre_cache)
{
$value = dynamic_discovery_get_value($name, $index, $data, $pre_cache);
if (is_null($value)) {
// built in replacements
$value = str_replace(array('{{ $index }}', '{{ $count }}'), array($index, $count), $data[$name]);
// search discovery data for values
$value = preg_replace_callback('/{{ \$([a-zA-Z0-9.]+) }}/', function ($matches) use ($index, $data, $pre_cache) {
$replace = dynamic_discovery_get_value($matches[1], $index, $data, $pre_cache, null);
if (is_null($replace)) {
return $matches[0]; // do no replacement
}
return $replace;
}, $value);
}
return $value;
}
/**
* Helper function for dynamic discovery to search for data from pre_cached snmp data
*
* @param string $name The name of the field from the discovery data or just an oid
* @param int $index The index of the current sensor
* @param array $discovery_data The discovery data for the current sensor
* @param array $pre_cache all pre-cached snmp data
* @param mixed $default The default value to return if data is not found
* @return mixed
*/
public static function getValueFromData($name, $index, $discovery_data, $pre_cache, $default = null)
{
if (isset($discovery_data[$name])) {
$name = $discovery_data[$name];
}
if (isset($pre_cache[$discovery_data['oid']][$index][$name])) {
return $pre_cache[$discovery_data['oid']][$index][$name];
}
if (isset($pre_cache[$name])) {
if (is_array($pre_cache[$name])) {
if (isset($pre_cache[$name][$index][$name])) {
return $pre_cache[$name][$index][$name];
} elseif (isset($pre_cache[$index][$name])) {
return $pre_cache[$index][$name];
} elseif (count($pre_cache[$name]) === 1) {
return current($pre_cache[$name]);
}
} else {
return $pre_cache[$name];
}
}
return $default;
}
public static function preCache(OS $os)
{
// Pre-cache data for later use
$pre_cache = array();
$device = $os->getDevice();
$pre_cache_file = 'includes/discovery/sensors/pre-cache/' . $device['os'] . '.inc.php';
if (is_file($pre_cache_file)) {
echo "Pre-cache {$device['os']}: ";
include $pre_cache_file;
echo PHP_EOL;
d_echo($pre_cache);
}
// TODO change to exclude os with pre-cache php file, but just exclude them by hand for now (like avtech)
if ($device['os'] == 'avtech') {
return $pre_cache;
}
if (!empty($device['dynamic_discovery']['modules'])) {
echo "Caching data: ";
foreach ($device['dynamic_discovery']['modules'] as $module => $discovery_data) {
echo "$module ";
foreach ($discovery_data as $key => $data_array) {
// find the data array, we could already be at for simple modules
if (isset($data_array['data'])) {
$data_array = $data_array['data'];
} elseif ($key !== 'data') {
continue;
}
foreach ($data_array as $data) {
foreach ((array)$data['oid'] as $oid) {
if (!isset($pre_cache[$oid])) {
if (isset($data['snmp_flags'])) {
$snmp_flag = $data['snmp_flags'];
} else {
$snmp_flag = '-OeQUs';
}
$snmp_flag .= ' -Ih';
$mib = $device['dynamic_discovery']['mib'];
$pre_cache[$oid] = snmpwalk_cache_oid($device, $oid, $pre_cache[$oid], $mib, null, $snmp_flag);
}
}
}
}
}
echo PHP_EOL;
}
return $pre_cache;
}
/**
* Check to see if we should skip this discovery item
*
* @param mixed $value
* @param array $yaml_item_data The data key from this item
* @param array $group_options The options key from this group of items
* @param array $item_snmp_data The pre-cache data array
* @return bool
*/
private static function canSkipItem($value, $yaml_item_data, $group_options, $item_snmp_data = array())
{
$skip_values = array_replace((array)$group_options['skip_values'], (array)$yaml_item_data['skip_values']);
foreach ($skip_values as $skip_value) {
if (is_array($skip_value) && $item_snmp_data) {
// Dynamic skipping of data
$op = isset($skip_value['op']) ? $skip_value['op'] : '!=';
$tmp_value = $item_snmp_data[$skip_value['oid']];
if (compare_var($tmp_value, $skip_value['value'], $op)) {
return true;
}
}
if ($value == $skip_value) {
return true;
}
}
$skip_value_lt = array_replace((array)$group_options['skip_value_lt'], (array)$yaml_item_data['skip_value_lt']);
foreach ($skip_value_lt as $skip_value) {
if ($value < $skip_value) {
return true;
}
}
$skip_value_gt = array_reduce((array)$group_options['skip_value_gt'], (array)$yaml_item_data['skip_value_gt']);
foreach ($skip_value_gt as $skip_value) {
if ($value > $skip_value) {
return true;
}
}
return false;
}
}