Files

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

311 lines
9.5 KiB
PHP
Raw Permalink Normal View History

<?php
/**
* SnmpResponse.php
*
* Responsible for parsing net-snmp output into usable PHP data structures.
*
* 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/>.
*
* @link https://www.librenms.org
*
* @copyright 2021 Tony Murray
* @author Tony Murray <murraytony@gmail.com>
*/
namespace LibreNMS\Data\Source;
use Illuminate\Support\Arr;
use Illuminate\Support\Collection;
use Illuminate\Support\Str;
use LibreNMS\Config;
use LibreNMS\Util\Oid;
use Log;
class SnmpResponse
{
protected const KEY_VALUE_DELIMITER = ' = ';
public readonly string $raw;
public readonly int $exitCode;
public readonly string $stderr;
private ?string $errorMessage = null;
private ?array $values = null;
/**
* Create a new response object filling with output from the net-snmp command.
*
* @param string $output
* @param string $errorOutput
* @param int $exitCode
*/
public function __construct(string $output, string $errorOutput = '', int $exitCode = 0)
{
$this->raw = (string) preg_replace('/Wrong Type \(should be .*\): /', '', $output);
$this->stderr = $errorOutput;
$this->exitCode = $exitCode;
}
public function isValid(bool $ignore_partial = false): bool
{
$this->errorMessage = '';
$raw = $ignore_partial ? $this->getRawWithoutBadLines() : $this->raw;
// not checking exitCode because I think it may lead to false negatives
$invalid = preg_match('/(Timeout: No Response from .*|Unknown user name|Authentication failure|Error: OID not increasing: .*)/', $this->stderr, $errors)
|| empty($raw)
|| preg_match('/(No Such Instance|No Such Object|No more variables left).*/', $raw, $errors);
if ($invalid) {
$this->errorMessage = $errors[0] ?? 'Empty Output';
Log::debug(sprintf('SNMP query failed. Exit Code: %s Empty: %s Bad String: %s', $this->exitCode, var_export(empty($raw), true), $errors[0] ?? 'not found'));
return false;
}
return true;
}
/**
* Get the error message if any
*/
public function getErrorMessage(): string
{
if (empty($this->errorMessage)) {
$this->isValid(); // if no error message, double check.
}
return $this->errorMessage;
}
/**
* Gets the first value of this response.
* If an oid or list of oids is given, return the first one found.
* If forceNumeric is set, force the search to use numeric oids even if textual oids are given
*
* @throws \LibreNMS\Exceptions\InvalidOidException
*/
public function value(array|string $oids = [], bool $forceNumeric = false): string
{
$values = $this->values();
if (empty($oids)) {
return Arr::first($values, default: '');
}
$oids = Arr::wrap($oids);
foreach ($oids as $oid) {
if ($forceNumeric) {
// translate all to numeric to make it easier to match
$oid = Oid::toNumeric($oid);
}
if (isset($values[$oid]) && $values[$oid] !== '') {
return $values[$oid];
}
}
// try to match table format
if (str_contains($this->raw, '[')) {
foreach ($oids as $oid) {
$dot_index_oid = preg_replace('/\.([^.]+)/', '[$1]', $oid);
// if new oid is different and exists and is not an empty string
if ($dot_index_oid !== $oid && isset($values[$dot_index_oid]) && $values[$dot_index_oid] !== '') {
return $values[$dot_index_oid];
}
}
}
return '';
}
public function values(): array
{
if (isset($this->values)) {
return $this->values;
}
$this->values = [];
$line = strtok($this->raw, PHP_EOL);
while ($line !== false) {
if (Str::contains($line, ['at this OID', 'this MIB View', 'End of MIB'])) {
// these occur when we seek past the end of data, usually the end of the response, but grab the next line and continue
$line = strtok(PHP_EOL);
continue;
}
$parts = explode(self::KEY_VALUE_DELIMITER, $line, 2);
if (count($parts) == 1) {
array_unshift($parts, '');
}
[$oid, $value] = $parts;
$line = strtok(PHP_EOL); // get the next line and concatenate multi-line values
while ($line !== false && ! Str::contains($line, self::KEY_VALUE_DELIMITER)) {
$value .= PHP_EOL . $line;
$line = strtok(PHP_EOL);
}
// remove extra escapes
if (Config::get('snmp.unescape')) {
$value = stripslashes($value);
}
if (Str::startsWith($value, '"') && Str::endsWith($value, '"')) {
// unformatted string from net-snmp, remove extra escapes
$this->values[$oid] = trim(stripslashes($value), "\" \n\r");
} else {
$this->values[$oid] = trim($value);
}
}
return $this->values;
}
Entity Physical discovery: Rewrite to modern style (#16289) * Initial entity-physical code * Split out Entity-MIB trait * Cisco Cellular inventory * Fix bad test data * alfo80hd - we now include all entPhysical entries * Correct aos7 test data * Add entPhysicalClass as last resort for label in ui * aos add previously filtered data * Fixup arista-eos data * Update ariast_eos data * Arris, clean garbage in Rev fields * Aruba Instant custom inventory ported * ArubaOS CX add vendor type mib * aviat-wtm test data refresh * axos add shelf fix data fields a bit * ciena-rls * ciena-sds * Skip cimc for now... no test data * Cisco updates * Comware data update * Update dnos * Clean Edgeos garbage, make code from Arris shareable * Relaxed ifIndex match, some devices cheat and send back static strings instead of formatted OIDs * Regex refinement and updated edgeos with new clean data * Update edgeswitch data * Update eltex-mes21xx data * eltex-mes23xx * Guess at eltex-mes24xx since there is no test data * Update eurostor, fix firmware version * Apply fixes from StyleCI * fixes * Update fortigate data * Update fortiweb, ftd, and fusion * Update linux LSI * Fix hexToAscii null removal with different seperator handling * icotera add final snmprec data to avoid snmpsim bug * Update IOS data * Update mrv-od * Add junos translation * Generic data updates n-r * ruijie workaround snmpsim bug * Port saf-cfm * Recode Schleifenbauer, and fix entPhysicalIndex values * SmartAX fixes * sm-os and tait-infra93 * timos inventory was not right, fix it up * ubiquoss-pon * VRP, has custom data collection on top of normal adapt port ifIndex lookup to handle it * VRP exceeded the string length specified in ENTITY-MIB... * data updates * Final data update and code cleanup * Apply fixes from StyleCI * Lint fixes * Add missing SnmpResponse->pluck() code * Update db_schema.yaml * Fix bad test data * Another instant-on update * oops * Remove some unused code # Conflicts: # includes/html/pages/device/overview.inc.php --------- Co-authored-by: Tony Murray <murrant@users.noreply.github.com>
2024-08-21 01:12:09 -05:00
/**
* Create a key to value pair for an OID
* Only works for single indexed tables
* You may omit $oid if there is only one $oid in the walk
*/
public function pluck(?string $oid = null): array
{
$output = [];
$oid = $oid ?? '[a-zA-Z0-9:.-]+';
$regex = "/^{$oid}[[.](\d+)]?$/";
foreach ($this->values() as $key => $value) {
if (preg_match($regex, $key, $matches)) {
$output[$matches[1]] = $value;
}
}
return $output;
}
public function valuesByIndex(array &$array = []): array
{
foreach ($this->values() as $oid => $value) {
$parts = $this->getOidParts($oid);
$name = array_shift($parts);
$index = implode('.', $parts);
$array[$index][$name] = $value;
}
return $array;
}
public function table(int $group = 0, array &$array = []): array
{
foreach ($this->values() as $key => $value) {
$parts = $this->getOidParts($key);
// move the oid name to the correct depth
array_splice($parts, $group, 0, array_shift($parts));
// merge the parts into an array, creating keys if they don't exist
$tmp = &$array;
foreach ($parts as $part) {
$key = trim($part, '"');
$tmp = &$tmp[$key];
}
$tmp = $value; // assign the value as the leaf
}
return Arr::wrap($array); // if no parts, wrap the value
}
/**
* Map an snmp table with callback. If invalid data is encountered, an empty collection is returned.
* Variables passed to the callback will be an array of row values followed by each individual index.
*/
public function mapTable(callable $callback): Collection
{
if (! $this->isValid(true)) {
return new Collection;
}
$data = [];
foreach ($this->values() as $key => $value) {
$parts = $this->getOidParts($key);
$oid = array_shift($parts);
$data[implode('][', $parts)][$oid] = $value;
}
$return = new Collection;
foreach ($data as $index => $values) {
$return->push(call_user_func($callback, $values, ...explode('][', (string) $index)));
}
return $return;
}
/**
* @return int
*/
public function getExitCode(): int
{
return $this->exitCode;
}
/**
* Filter bad lines from the raw output, examples:
* "No Such Instance currently exists at this OID"
* "No more variables left in this MIB View (It is past the end of the MIB tree)"
*/
public function getRawWithoutBadLines(): string
{
return (string) preg_replace([
'/^.*No Such Instance currently exists.*$/m',
'/(\n[^\r\n]+No more variables left[^\r\n]+)+$/',
], '', $this->raw);
}
public function append(SnmpResponse $response): SnmpResponse
{
$newResponse = new static(
$this->raw . $response->raw,
$this->stderr . $response->stderr,
$this->exitCode ?: $response->exitCode,
);
$newResponse->errorMessage = $this->errorMessage ?: $response->errorMessage;
return $newResponse;
}
public function __toString(): string
{
return $this->raw;
}
private function getOidParts(string $key): array
{
// table
if (Str::contains($key, '[')) {
preg_match_all('/([^[\]]+)/', $key, $parts);
return $parts[1]; // get all group 1 matches
}
// regular oid
return explode('.', $key);
}
public function __sleep()
{
return ['raw', 'exitCode', 'stderr'];
}
}