]> git.uio.no Git - check_openmanage.git/blame - check_openmanage
* version 3.6.2-beta9
[check_openmanage.git] / check_openmanage
CommitLineData
669797e1 1#!/usr/bin/perl
2#
3# Nagios plugin
4#
5# Monitor Dell server hardware status using Dell OpenManage Server
6# Administrator, either locally via NRPE, or remotely via SNMP.
7#
8# $Id$
9#
fda60fe2 10# Copyright (C) 2008-2010 Trond H. Amundsen
669797e1 11#
12# This program is free software: you can redistribute it and/or modify
13# it under the terms of the GNU General Public License as published by
14# the Free Software Foundation, either version 3 of the License, or
15# (at your option) any later version.
16#
17# This program is distributed in the hope that it will be useful, but
18# WITHOUT ANY WARRANTY; without even the implied warranty of
19# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
20# General Public License for more details.
21#
22# You should have received a copy of the GNU General Public License
23# along with this program. If not, see <http://www.gnu.org/licenses/>.
24#
25
26require 5.006; # Perl v5.6.0 or newer is required
27use strict;
28use warnings;
a38cf844 29use POSIX qw(isatty ceil);
c76b83db 30use Getopt::Long qw(:config no_ignore_case);
669797e1 31
32# Global (package) variables used throughout the code
33use vars qw( $NAME $VERSION $AUTHOR $CONTACT $E_OK $E_WARNING $E_CRITICAL
34 $E_UNKNOWN $FW_LOCK $USAGE $HELP $LICENSE
35 $snmp_session $snmp_error $omreport $globalstatus $global
36 $linebreak $omopt_chassis $omopt_system $blade
7c03958b 37 $exit_code $snmp
48aeec0b 38 %check %opt %reverse_exitcode %status2nagios
669797e1 39 %snmp_status %snmp_probestatus %probestatus2nagios %sysinfo
b1f48712 40 %blacklist %nagios_alert_count %count %snmp_enclosure %snmp_controller
48aeec0b 41 @perl_warnings @controllers @enclosures @perfdata
669797e1 42 @report_storage @report_chassis @report_other
43 );
44
45#---------------------------------------------------------------------
46# Initialization and global variables
47#---------------------------------------------------------------------
48
70ec369c 49# Collect perl warnings in an array
50$SIG{__WARN__} = sub { push @perl_warnings, [@_]; };
cbbc270f 51
669797e1 52# Version and similar info
53$NAME = 'check_openmanage';
fda60fe2 54$VERSION = '3.6.2-beta9';
669797e1 55$AUTHOR = 'Trond H. Amundsen';
56$CONTACT = 't.h.amundsen@usit.uio.no';
57
58# Exit codes
59$E_OK = 0;
60$E_WARNING = 1;
61$E_CRITICAL = 2;
62$E_UNKNOWN = 3;
63
64# Firmware update lock file [FIXME: location on Windows?]
65$FW_LOCK = '/var/lock/.spsetup'; # default on Linux
66
67# Usage text
68$USAGE = <<"END_USAGE";
69Usage: $NAME [OPTION]...
70END_USAGE
71
72# Help text
73$HELP = <<'END_HELP';
74
75GENERAL OPTIONS:
76
7f42660a 77 -p, --perfdata Output performance data [default=no]
78 -t, --timeout Plugin timeout in seconds [default=30]
669797e1 79 -c, --critical Customise temperature critical limits
80 -w, --warning Customise temperature warning limits
81 -d, --debug Debug output, reports everything
82 -h, --help Display this help text
83 -V, --version Display version info
84
85SNMP OPTIONS:
86
a43b0da8 87 -H, --hostname Hostname or IP (required for SNMP)
7f42660a 88 -C, --community SNMP community string [default=public]
89 -P, --protocol SNMP protocol version [default=2]
90 --port SNMP port number [default=161]
91 -6, --ipv6 Use IPv6 instead of IPv4 [default=no]
92 --tcp Use TCP instead of UDP [default=no]
669797e1 93
94OUTPUT OPTIONS:
95
96 -i, --info Prefix any alerts with the service tag
97 -e, --extinfo Append system info to alerts
98 -s, --state Prefix alerts with alert state
057193f5 99 -S, --short-state Prefix alerts with alert state (abbreviated)
669797e1 100 -o, --okinfo Verbosity when check result is OK
bee55928 101 -I, --htmlinfo HTML output with clickable links
669797e1 102
103CHECK CONTROL AND BLACKLISTING:
104
105 -a, --all Check everything, even log content
106 -b, --blacklist Blacklist missing and/or failed components
107 --only Only check a certain component or alert type
108 --check Fine-tune which components are checked
fda60fe2 109 --no-storage Don't check storage
669797e1 110
111For more information and advanced options, see the manual page or URL:
112 http://folk.uio.no/trondham/software/check_openmanage.html
113END_HELP
114
115# Version and license text
116$LICENSE = <<"END_LICENSE";
117$NAME $VERSION
fda60fe2 118Copyright (C) 2008-2010 $AUTHOR
669797e1 119License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
120This is free software: you are free to change and redistribute it.
121There is NO WARRANTY, to the extent permitted by law.
122
123Written by $AUTHOR <$CONTACT>
124END_LICENSE
125
126# Options with default values
397acff6 127%opt = ( 'blacklist' => [], # blacklisting
128 'check' => [], # check control
129 'critical' => [], # temperature critical limits
130 'warning' => [], # temperature warning limits
131 'timeout' => 30, # default timeout is 30 seconds
132 'debug' => 0, # debugging / verbose output
133 'help' => 0, # display help output
134 'perfdata' => undef, # output performance data
135 'info' => 0, # display servicetag
136 'extinfo' => 0, # display extra info
137 'htmlinfo' => undef, # html tags in output
138 'postmsg' => undef, # post message
139 'state' => 0, # display alert type
140 'short-state' => 0, # display alert type (short)
141 'okinfo' => 0, # default "ok" output level
142 'linebreak' => undef, # specify linebreak
143 'version' => 0, # plugin version info
144 'all' => 0, # check everything
145 'only' => undef, # only one component
afd8a1b9 146 'no_storage' => 0, # don't check storage
397acff6 147 'omreport' => undef, # omreport path
148 'port' => 161, # default SNMP port
149 'hostname' => undef, # hostname or IP
150 'community' => 'public', # SMNP v1 or v2c
151 'protocol' => 2, # default SNMP protocol 2c
8e4b7bdf 152 'ipv6' => 0, # default is IPv4
28faa168 153 'tcp' => 0, # default is UDP
397acff6 154 'username' => undef, # SMNP v3
155 'authpassword' => undef, # SMNP v3
156 'authkey' => undef, # SMNP v3
157 'authprotocol' => undef, # SMNP v3
158 'privpassword' => undef, # SMNP v3
159 'privkey' => undef, # SMNP v3
160 'privprotocol' => undef, # SMNP v3
161 'use_get_table' => 0, # hack for SNMPv3 on Windows with net-snmp
669797e1 162 );
163
164# Get options
165GetOptions('b|blacklist=s' => \@{ $opt{blacklist} },
166 'check=s' => \@{ $opt{check} },
167 'c|critical=s' => \@{ $opt{critical} },
168 'w|warning=s' => \@{ $opt{warning} },
169 't|timeout=i' => \$opt{timeout},
170 'd|debug' => \$opt{debug},
171 'h|help' => \$opt{help},
172 'V|version' => \$opt{version},
173 'p|perfdata:s' => \$opt{perfdata},
174 'i|info' => \$opt{info},
175 'e|extinfo' => \$opt{extinfo},
bee55928 176 'I|htmlinfo:s' => \$opt{htmlinfo},
669797e1 177 'postmsg=s' => \$opt{postmsg},
178 's|state' => \$opt{state},
057193f5 179 'S|short-state' => \$opt{shortstate},
669797e1 180 'o|ok-info=i' => \$opt{okinfo},
da64c4d4 181 'linebreak=s' => \$opt{linebreak},
669797e1 182 'a|all' => \$opt{all},
183 'only=s' => \$opt{only},
43116770 184 'no-storage' => \$opt{no_storage},
9ed0700c 185 'omreport=s' => \$opt{omreport},
669797e1 186 'port=i' => \$opt{port},
187 'H|hostname=s' => \$opt{hostname},
188 'C|community=s' => \$opt{community},
189 'P|protocol=i' => \$opt{protocol},
8e4b7bdf 190 '6|ipv6' => \$opt{ipv6},
28faa168 191 'tcp' => \$opt{tcp},
669797e1 192 'U|username=s' => \$opt{username},
193 'authpassword=s' => \$opt{authpassword},
194 'authkey=s' => \$opt{authkey},
195 'authprotocol=s' => \$opt{authprotocol},
196 'privpassword=s' => \$opt{privpassword},
197 'privkey=s' => \$opt{privkey},
198 'privprotocol=s' => \$opt{privprotocol},
4cabd748 199 'use-get_table' => \$opt{use_get_table},
669797e1 200 ) or do { print $USAGE; exit $E_UNKNOWN };
201
202# If user requested help
203if ($opt{help}) {
204 print $USAGE, $HELP;
205 exit $E_OK;
206}
207
208# If user requested version info
209if ($opt{version}) {
210 print $LICENSE;
211 exit $E_OK;
212}
213
214# Setting timeout
215$SIG{ALRM} = sub {
0ae24325 216 print "PLUGIN TIMEOUT: $NAME timed out after $opt{timeout} seconds\n";
669797e1 217 exit $E_UNKNOWN;
218};
219alarm $opt{timeout};
220
221# If we're using SNMP
222$snmp = defined $opt{hostname} ? 1 : 0;
223
224# SNMP session variables
225$snmp_session = undef;
226$snmp_error = undef;
227
228# The omreport command
229$omreport = undef;
230
231# Check flags, override available with the --check option
232%check = ( 'storage' => 1, # check storage subsystem
233 'memory' => 1, # check memory (dimms)
234 'fans' => 1, # check fan status
235 'power' => 1, # check power supplies
236 'temp' => 1, # check temperature
237 'cpu' => 1, # check processors
238 'voltage' => 1, # check voltage
239 'batteries' => 1, # check battery probes
240 'amperage' => 1, # check power consumption
241 'intrusion' => 1, # check intrusion detection
40619bb3 242 'sdcard' => 1, # check removable flash media (SD cards)
669797e1 243 'alertlog' => 0, # check the alert log
244 'esmlog' => 0, # check the ESM log (hardware log)
245 'esmhealth' => 1, # check the ESM log overall health
246 );
247
248# Default line break
51e99613 249$linebreak = isatty(*STDOUT) ? "\n" : '<br/>';
669797e1 250
251# Line break from option
252if (defined $opt{linebreak}) {
253 if ($opt{linebreak} eq 'REG') {
254 $linebreak = "\n";
255 }
256 elsif ($opt{linebreak} eq 'HTML') {
257 $linebreak = '<br/>';
258 }
259 else {
260 $linebreak = $opt{linebreak};
261 }
262}
263
264# Exit with status=UNKNOWN if there is firmware upgrade in progress
265if (!$snmp && -f $FW_LOCK) {
266 print "MONITORING DISABLED - Firmware update in progress ($FW_LOCK exists)\n";
267 exit $E_UNKNOWN;
268}
269
270# List of controllers and enclosures
271@controllers = (); # controllers
272@enclosures = (); # enclosures
b1f48712 273%snmp_enclosure = (); # enclosures
669797e1 274
275# Messages
276@report_storage = (); # messages with associated nagios level (storage)
277@report_chassis = (); # messages with associated nagios level (chassis)
278@report_other = (); # messages with associated nagios level (other)
279
280# Counters for everything
281%count
282 = (
283 'pdisk' => 0, # number of physical disks
284 'vdisk' => 0, # number of logical drives (virtual disks)
285 'temp' => 0, # number of temperature probes
286 'volt' => 0, # number of voltage probes
287 'amp' => 0, # number of amperage probes
288 'intr' => 0, # number of intrusion probes
289 'dimm' => 0, # number of memory modules
14e95f92 290 'mem' => 0, # total memory
669797e1 291 'fan' => 0, # number of fan probes
292 'cpu' => 0, # number of CPUs
293 'bat' => 0, # number of batteries
294 'power' => 0, # number of power supplies
e62ffb8b 295 'sd' => 0, # number of SD cards
669797e1 296 'esm' => {
297 'Critical' => 0, # critical entries in ESM log
298 'Non-Critical' => 0, # warning entries in ESM log
299 'Ok' => 0, # ok entries in ESM log
300 },
301 'alert' => {
302 'Critical' => 0, # critical entries in alert log
303 'Non-Critical' => 0, # warning entries in alert log
304 'Ok' => 0, # ok entries in alert log
305 },
306 );
307
308# Performance data
48aeec0b 309@perfdata = ();
669797e1 310
311# Global health status
312$global = 1; # default is to check global status
313$globalstatus = $E_OK; # default global health status is "OK"
314
315# Nagios error levels reversed
316%reverse_exitcode
317 = (
318 $E_OK => 'OK',
319 $E_WARNING => 'WARNING',
320 $E_CRITICAL => 'CRITICAL',
321 $E_UNKNOWN => 'UNKNOWN',
322 );
323
324# OpenManage (omreport) and SNMP error levels
325%status2nagios
326 = (
327 'Unknown' => $E_CRITICAL,
328 'Critical' => $E_CRITICAL,
329 'Non-Critical' => $E_WARNING,
330 'Ok' => $E_OK,
331 'Non-Recoverable' => $E_CRITICAL,
332 'Other' => $E_CRITICAL,
333 );
334
335# Status via SNMP
336%snmp_status
337 = (
338 1 => 'Other',
339 2 => 'Unknown',
340 3 => 'Ok',
341 4 => 'Non-Critical',
342 5 => 'Critical',
343 6 => 'Non-Recoverable',
344 );
345
346# Probe Status via SNMP
347%snmp_probestatus
348 = (
349 1 => 'Other', # probe status is not one of the following:
350 2 => 'Unknown', # probe status is unknown (not known or monitored)
351 3 => 'Ok', # probe is reporting a value within the thresholds
352 4 => 'nonCriticalUpper', # probe has crossed upper noncritical threshold
353 5 => 'criticalUpper', # probe has crossed upper critical threshold
354 6 => 'nonRecoverableUpper', # probe has crossed upper non-recoverable threshold
355 7 => 'nonCriticalLower', # probe has crossed lower noncritical threshold
356 8 => 'criticalLower', # probe has crossed lower critical threshold
357 9 => 'nonRecoverableLower', # probe has crossed lower non-recoverable threshold
358 10 => 'failed', # probe is not functional
359 );
360
361# Probe status translated to Nagios alarm levels
362%probestatus2nagios
363 = (
364 'Other' => $E_CRITICAL,
365 'Unknown' => $E_CRITICAL,
366 'Ok' => $E_OK,
367 'nonCriticalUpper' => $E_WARNING,
368 'criticalUpper' => $E_CRITICAL,
369 'nonRecoverableUpper' => $E_CRITICAL,
370 'nonCriticalLower' => $E_WARNING,
371 'criticalLower' => $E_CRITICAL,
372 'nonRecoverableLower' => $E_CRITICAL,
373 'failed' => $E_CRITICAL,
374 );
375
376# System information gathered
377%sysinfo
378 = (
379 'bios' => 'N/A', # BIOS version
380 'biosdate' => 'N/A', # BIOS release date
381 'serial' => 'N/A', # serial number (service tag)
382 'model' => 'N/A', # system model
51449135 383 'rev' => q{}, # system revision
669797e1 384 'osname' => 'N/A', # OS name
385 'osver' => 'N/A', # OS version
386 'om' => 'N/A', # OMSA version
387 'bmc' => 0, # HAS baseboard management controller (BMC)
388 'rac' => 0, # HAS remote access controller (RAC)
389 'rac_name' => 'N/A', # remote access controller (RAC)
390 'bmc_fw' => 'N/A', # BMC firmware
391 'rac_fw' => 'N/A', # RAC firmware
392 );
393
394# Adjust which checks to perform
395adjust_checks() if defined $opt{check};
396
397# Blacklisted components
398%blacklist = defined $opt{blacklist} ? %{ get_blacklist() } : ();
399
400# If blacklisting is in effect, don't check global health status
401if (scalar keys %blacklist > 0) {
402 $global = 0;
403}
404
405# Take into account new hardware and blades
406$omopt_chassis = 'chassis'; # default "chassis" option to omreport
407$omopt_system = 'system'; # default "system" option to omreport
408$blade = 0; # if this is a blade system
409
410# Some initializations and checking before we begin
411if ($snmp) {
412 snmp_initialize(); # initialize SNMP
413 snmp_check(); # check that SNMP works
414 snmp_detect_blade(); # detect blade via SNMP
415}
416else {
417 # Find the omreport binary
418 find_omreport();
419 # Check help output from omreport, see which options are available.
420 # Also detecting blade via omreport.
421 check_omreport_options();
422}
423
424
425#---------------------------------------------------------------------
426# Helper functions
427#---------------------------------------------------------------------
428
429#
430# Store a message in one of the message arrays
431#
432sub report {
433 my ($type, $msg, $exval, $id) = @_;
434 defined $id or $id = q{};
435
436 my %type2array
437 = (
438 'storage' => \@report_storage,
439 'chassis' => \@report_chassis,
440 'other' => \@report_other,
441 );
442
443 return push @{ $type2array{$type} }, [ $msg, $exval, $id ];
444}
445
446
447#
448# Run command, put resulting output lines in an array and return a
449# pointer to that array
450#
451sub run_command {
452 my $command = shift;
453
454 open my $CMD, '-|', $command
455 or do { report('other', "Couldn't run command '$command': $!", $E_UNKNOWN)
456 and return [] };
457 my @lines = <$CMD>;
458 close $CMD
459 or do { report('other', "Couldn't close filehandle for command '$command': $!", $E_UNKNOWN)
460 and return \@lines };
461 return \@lines;
462}
463
464#
465# Run command, put resulting output in a string variable and return it
466#
467sub slurp_command {
468 my $command = shift;
469
470 open my $CMD, '-|', $command
471 or do { report('other', "Couldn't run command '$command': $!", $E_UNKNOWN) and return };
472 my $rawtext = do { local $/ = undef; <$CMD> }; # slurping
473 close $CMD;
474
475 # NOTE: We don't check the return value of close() since omreport
476 # does something weird sometimes.
477
478 return $rawtext;
479}
480
481#
482# Initialize SNMP
483#
484sub snmp_initialize {
485 # Legal SNMP v3 protocols
486 my $snmp_v3_privprotocol = qr{\A des|aes|aes128|3des|3desde \z}xms;
487 my $snmp_v3_authprotocol = qr{\A md5|sha \z}xms;
488
489 # Parameters to Net::SNMP->session()
490 my %param
491 = (
492 '-port' => $opt{port},
493 '-hostname' => $opt{hostname},
494 '-version' => $opt{protocol},
495 );
496
28faa168 497 # Setting the domain (IP version and transport protocol)
498 my $transport = $opt{tcp} ? 'tcp' : 'udp';
499 my $ipversion = $opt{ipv6} ? 'ipv6' : 'ipv4';
500 $param{'-domain'} = "$transport/$ipversion";
8e4b7bdf 501
669797e1 502 # Parameters for SNMP v3
503 if ($opt{protocol} == 3) {
504
505 # Username is mandatory
506 if (defined $opt{username}) {
507 $param{'-username'} = $opt{username};
508 }
509 else {
510 print "SNMP ERROR: With SNMPv3 the username must be specified\n";
511 exit $E_UNKNOWN;
512 }
513
514 # Authpassword is optional
515 if (defined $opt{authpassword}) {
516 $param{'-authpassword'} = $opt{authpassword};
517 }
518
519 # Authkey is optional
520 if (defined $opt{authkey}) {
521 $param{'-authkey'} = $opt{authkey};
522 }
523
524 # Privpassword is optional
525 if (defined $opt{privpassword}) {
526 $param{'-privpassword'} = $opt{privpassword};
527 }
528
529 # Privkey is optional
530 if (defined $opt{privkey}) {
531 $param{'-privkey'} = $opt{privkey};
532 }
533
534 # Privprotocol is optional
535 if (defined $opt{privprotocol}) {
536 if ($opt{privprotocol} =~ m/$snmp_v3_privprotocol/xms) {
537 $param{'-privprotocol'} = $opt{privprotocol};
538 }
539 else {
540 print "SNMP ERROR: Unknown privprotocol '$opt{privprotocol}', "
541 . "must be one of [des|aes|aes128|3des|3desde]\n";
542 exit $E_UNKNOWN;
543 }
544 }
545
546 # Authprotocol is optional
547 if (defined $opt{authprotocol}) {
548 if ($opt{authprotocol} =~ m/$snmp_v3_authprotocol/xms) {
549 $param{'-authprotocol'} = $opt{authprotocol};
550 }
551 else {
552 print "SNMP ERROR: Unknown authprotocol '$opt{authprotocol}', "
553 . "must be one of [md5|sha]\n";
554 exit $E_UNKNOWN;
555 }
556 }
557 }
558 # Parameters for SNMP v2c or v1
559 elsif ($opt{protocol} == 2 or $opt{protocol} == 1) {
560 $param{'-community'} = $opt{community};
561 }
562 else {
563 print "SNMP ERROR: Unknown SNMP version '$opt{protocol}'\n";
564 exit $E_UNKNOWN;
565 }
566
567 # Try to initialize the SNMP session
568 if ( eval { require Net::SNMP; 1 } ) {
569 ($snmp_session, $snmp_error) = Net::SNMP->session( %param );
570 if (!defined $snmp_session) {
571 printf "SNMP: %s\n", $snmp_error;
572 exit $E_UNKNOWN;
573 }
574 }
575 else {
0ae24325 576 print "ERROR: You need perl module Net::SNMP to run $NAME in SNMP mode\n";
669797e1 577 exit $E_UNKNOWN;
578 }
579 return;
580}
581
582#
583# Checking if SNMP works by probing for "chassisModelName", which all
584# servers should have
585#
586sub snmp_check {
587 my $chassisModelName = '1.3.6.1.4.1.674.10892.1.300.10.1.9.1';
588 my $result = $snmp_session->get_request(-varbindlist => [$chassisModelName]);
589
590 # Typically if remote host isn't responding
591 if (!defined $result) {
0ae24325 592 printf "SNMP CRITICAL: %s\n", $snmp_session->error;
669797e1 593 exit $E_CRITICAL;
594 }
595
596 # If OpenManage isn't installed or is not working
597 if ($result->{$chassisModelName} =~ m{\A noSuch (Instance|Object) \z}xms) {
0ae24325 598 print "ERROR: (SNMP) OpenManage is not installed or is not working correctly\n";
669797e1 599 exit $E_UNKNOWN;
600 }
601 return;
602}
603
604#
605# Detecting blade via SNMP
606#
607sub snmp_detect_blade {
608 my $DellBaseBoardType = '1.3.6.1.4.1.674.10892.1.300.80.1.7.1.1';
609 my $result = $snmp_session->get_request(-varbindlist => [$DellBaseBoardType]);
610
611 # Identify blade. Older models (4th and 5th gen models) and/or old
612 # OMSA (4.x) don't have this OID. If we get "noSuchInstance" or
613 # similar, we assume that this isn't a blade
5c370da3 614 if (exists $result->{$DellBaseBoardType} && $result->{$DellBaseBoardType} eq '3') {
669797e1 615 $blade = 1;
616 }
617 return;
618}
619
620#
621# Locate the omreport binary
622#
623sub find_omreport {
ac760e0d 624 # If user has specified path to omreport
625 if (defined $opt{omreport} and -x $opt{omreport}) {
60994ca4 626 $omreport = qq{"$opt{omreport}"};
ac760e0d 627 return;
628 }
629
669797e1 630 # Possible full paths for omreport
631 my @omreport_paths
632 = (
03d9a9f4 633 '/opt/dell/srvadmin/bin/omreport', # default on Linux with OMSA >= 6.2.0
634 '/usr/bin/omreport', # default on Linux with OMSA < 6.2.0
669797e1 635 '/opt/dell/srvadmin/oma/bin/omreport.sh', # alternate on Linux
636 '/opt/dell/srvadmin/oma/bin/omreport', # alternate on Linux
9025e83f 637 'C:\Program Files (x86)\Dell\SysMgt\oma\bin\omreport.exe', # default on Windows x64
638 'C:\Program Files\Dell\SysMgt\oma\bin\omreport.exe', # default on Windows x32
421b6c77 639 'c:\progra~1\dell\sysmgt\oma\bin\omreport.exe', # 8bit legacy default on Windows x32
640 'c:\progra~2\dell\sysmgt\oma\bin\omreport.exe', # 8bit legacy default on Windows x64
669797e1 641 );
642
643 # Find the one to use
644 OMREPORT_PATH:
645 foreach my $bin (@omreport_paths) {
646 if (-x $bin) {
60347693 647 $omreport = qq{"$bin"};
669797e1 648 last OMREPORT_PATH;
649 }
650 }
651
652 # Exit with status=UNKNOWN if OM is not installed, or we don't
653 # have permission to execute the binary
654 if (!defined $omreport) {
0ae24325 655 print "ERROR: Dell OpenManage Server Administrator (OMSA) is not installed\n";
669797e1 656 exit $E_UNKNOWN;
657 }
658 return;
659}
660
661#
662# Checks output from 'omreport -?' and searches for arguments to
663# omreport, to accommodate deprecated options "chassis" and "system"
664# (on newer hardware), as well as blade servers.
665#
666sub check_omreport_options {
667 foreach (@{ run_command("$omreport -? 2>&1") }) {
668 if (m/\A servermodule /xms) {
669 # If "servermodule" argument to omreport exists, use it
670 # instead of argument "system"
671 $omopt_system = 'servermodule';
672 }
673 elsif (m/\A mainsystem /xms) {
674 # If "mainsystem" argument to omreport exists, use it
675 # instead of argument "chassis"
676 $omopt_chassis = 'mainsystem';
677 }
678 elsif (m/\A modularenclosure /xms) {
679 # If "modularenclusure" argument to omreport exists, assume
680 # that this is a blade
681 $blade = 1;
682 }
683 }
684 return;
685}
686
687#
688# Read the blacklist option and return a hash containing the
689# blacklisted components
690#
691sub get_blacklist {
692 my @bl = ();
693 my %blacklist = ();
694
695 if (scalar @{ $opt{blacklist} } >= 0) {
696 foreach my $black (@{ $opt{blacklist} }) {
697 my $tmp = q{};
698 if (-f $black) {
699 open my $BL, '<', $black
700 or do { report('other', "Couldn't open blacklist file $black: $!", $E_UNKNOWN)
701 and return {} };
730dd6ed 702 chomp($tmp = <$BL>);
669797e1 703 close $BL;
669797e1 704 }
705 else {
706 $tmp = $black;
707 }
708 push @bl, $tmp;
709 }
710 }
711
712 return {} if $#bl < 0;
713
714 # Parse blacklist string, put in hash
715 foreach my $black (@bl) {
716 my @comps = split m{/}xms, $black;
717 foreach my $c (@comps) {
718 next if $c !~ m/=/xms;
719 my ($key, $val) = split /=/xms, $c;
720 my @vals = split /,/xms, $val;
721 $blacklist{$key} = \@vals;
722 }
723 }
724
725 return \%blacklist;
726}
727
728#
729# Read the check option and adjust the hash %check, which is a rough
730# list of components to be checked
731#
732sub adjust_checks {
733 my @cl = ();
734
afd8a1b9 735 # First, take the '--no-storage' option
736 if ($opt{no_storage}) {
737 $check{storage} = 0;
738 }
739
669797e1 740 # Adjust checking based on the '--all' option
741 if ($opt{all}) {
742 # Check option usage
743 if (defined $opt{only} and $opt{only} !~ m{\A critical|warning \z}xms) {
744 print qq{ERROR: Wrong simultaneous usage of the "--all" and "--only" options\n};
745 exit $E_UNKNOWN;
746 }
747 if (scalar @{ $opt{check} } > 0) {
748 print qq{ERROR: Wrong simultaneous usage of the "--all" and "--check" options\n};
749 exit $E_UNKNOWN;
750 }
751
752 # set the check hash to check everything
753 map { $_ = 1 } values %check;
754
755 return;
756 }
757
758 # Adjust checking based on the '--only' option
759 if (defined $opt{only} and $opt{only} !~ m{\A critical|warning \z}xms) {
760 # Check option usage
761 if (scalar @{ $opt{check} } > 0) {
762 print qq{ERROR: Wrong simultaneous usage of the "--only" and "--check" options\n};
763 exit $E_UNKNOWN;
764 }
a2bbb2c1 765 if (! exists $check{$opt{only}} && $opt{only} ne 'chassis') {
669797e1 766 print qq{ERROR: "$opt{only}" is not a known keyword for the "--only" option\n};
767 exit $E_UNKNOWN;
768 }
769
770 # reset the check hash
771 map { $_ = 0 } values %check;
772
773 # adjust the check hash
774 if ($opt{only} eq 'chassis') {
775 map { $check{$_} = 1 } qw(memory fans power temp cpu voltage
776 batteries amperage intrusion esmhealth);
777 }
778 else {
779 $check{$opt{only}} = 1;
780 }
781
782 return;
783 }
784
785 # Adjust checking based on the '--check' option
786 if (scalar @{ $opt{check} } >= 0) {
787 foreach my $check (@{ $opt{check} }) {
788 my $tmp = q{};
789 if (-f $check) {
790 open my $CL, '<', $check
791 or do { report('other', "Couldn't open check file $check: $!", $E_UNKNOWN) and return };
730dd6ed 792 chomp($tmp = <$CL>);
669797e1 793 close $CL;
794 }
795 else {
796 $tmp = $check;
797 }
798 push @cl, $tmp;
799 }
800 }
801
802 return if $#cl < 0;
803
804 # Parse checklist string, put in hash
805 foreach my $check (@cl) {
806 my @checks = split /,/xms, $check;
807 foreach my $c (@checks) {
808 next if $c !~ m/=/xms;
809 my ($key, $val) = split /=/xms, $c;
810 $check{$key} = $val;
811 }
812 }
813
814 # Check if we should check global health status
815 CHECK_KEY:
816 foreach (keys %check) {
817 next CHECK_KEY if $_ eq 'esmlog'; # not part of global status
818 next CHECK_KEY if $_ eq 'alertlog'; # not part of global status
819
820 if ($check{$_} == 0) { # found something with checking turned off
821 $global = 0;
822 last CHECK_KEY;
823 }
824 }
825
826 return;
827}
828
829#
830# Runs omreport and returns an array of anonymous hashes containing
831# the output.
832# Takes one argument: string containing parameters to omreport
833#
834sub run_omreport {
835 my $command = shift;
836 my @output = ();
837 my @keys = ();
838
839 # Errors that are OK. Some low-end poweredge (and blades) models
840 # don't have RAID controllers, intrusion detection sensor, or
841 # redundant/instrumented power supplies etc.
842 my $ok_errors
843 = qr{
844 Intrusion\sinformation\sis\snot\sfound\sfor\sthis\ssystem # No intrusion probe
845 | No\sinstrumented\spower\ssupplies\sfound\son\sthis\ssystem # No instrumented PS (blades/low-end)
669797e1 846 | No\sbattery\sprobes\sfound\son\sthis\ssystem # No battery probes
3023ea00 847 | Invalid\scommand:\spwrmonitoring # Old hardware
40619bb3 848 | Hardware\sor\sfeature\snot\spresent\. # SD cards
b226b4fd 849 | Invalid\scommand:\sremovableflashmedia # SD cards with old OMSA
9df480be 850# | Current\sprobes\snot\sfound # OMSA + RHEL5.4 bug
40619bb3 851# | No\scontrollers\sfound # No RAID controller
669797e1 852 }xms;
853
854 # Errors that are OK on blade servers
855 my $ok_blade_errors
856 = qr{
857 No\sfan\sprobes\sfound\son\sthis\ssystem # No fan probes
858 }xms;
859
860 # Run omreport and fetch output
861 my $rawtext = slurp_command("$omreport $command -fmt ssv 2>&1");
862 return [] if !defined $rawtext;
863
864 # Workaround for Openmanage BUG introduced in OMSA 5.5.0
4a4baf82 865 $rawtext =~ s{\n;}{;}gxms if $command eq 'storage controller';
866
730dd6ed 867 # Report if no controllers found
868 if ($command eq 'storage controller' and $rawtext =~ m{No\scontrollers\sfound}xms) {
853fa265 869 report('storage', 'Storage Error! No controllers found', $E_UNKNOWN);
730dd6ed 870 }
871
4a4baf82 872 # Openmanage sometimes puts a linebreak between "Error" and the
873 # actual error text
49a51b07 874 $rawtext =~ s{^Error\s*\n}{Error: }xms;
669797e1 875
876 # Parse output, store in array
4a4baf82 877 for ((split m{\n}xms, $rawtext)) {
878 if (m{\AError}xms) {
669797e1 879 next if m{$ok_errors}xms;
880 next if ($blade and m{$ok_blade_errors}xms);
881 report('other', "Problem running 'omreport $command': $_", $E_UNKNOWN);
882 }
883
884 next if !m/(.*?;){2}/xms; # ignore lines with less than 3 fields
885 my @vals = split /;/xms;
40619bb3 886 if ($vals[0] =~ m/\A (Index|ID|Severity|Processor|Current\sSpeed|Connector\sName) \z/xms) {
669797e1 887 @keys = @vals;
888 }
889 else {
890 my $i = 0;
891 push @output, { map { $_ => $vals[$i++] } @keys };
892 }
893
894 }
895
896 # Finally, return the collected information
897 return \@output;
898}
899
669797e1 900#
901# Checks if a component is blacklisted. Returns 1 if the component is
902# blacklisted, 0 otherwise. Takes two arguments:
903# arg1: component name
904# arg2: component id or index
905#
906sub blacklisted {
907 my $name = shift; # component name
908 my $id = shift; # component id
909 my $ret = 0; # return value
910
911 if (defined $blacklist{$name}) {
912 foreach my $comp (@{ $blacklist{$name} }) {
d4c27ad8 913 if (defined $id and ($comp eq $id or uc($comp) eq 'ALL')) {
669797e1 914 $ret = 1;
915 }
916 }
917 }
918
919 return $ret;
920}
921
922# Converts the NexusID from SNMP to our version
923sub convert_nexus {
924 my $nexus = shift;
925 $nexus =~ s{\A \\}{}xms;
926 $nexus =~ s{\\}{:}gxms;
927 return $nexus;
928}
929
930# Sets custom temperature thresholds based on user supplied options
931sub custom_temperature_thresholds {
932 my $type = shift; # type of threshold, either w (warning) or c (critical)
933 my %thres = (); # will contain the thresholds
934 my @limits = (); # holds the input
935
936 my @opt = $type eq 'w' ? @{ $opt{warning} } : @{ $opt{critical} };
937
938 if (scalar @opt >= 0) {
939 foreach my $t (@opt) {
940 my $tmp = q{};
941 if (-f $t) {
942 open my $F, '<', $t
943 or do { report('other', "Couldn't open temperature threshold file $t: $!",
944 $E_UNKNOWN) and return {} };
945 $tmp = <$F>;
946 close $F;
947 }
948 else {
949 $tmp = $t;
950 }
951 push @limits, $tmp;
952 }
953 }
954
955 # Parse checklist string, put in hash
956 foreach my $th (@limits) {
957 my @tmp = split m{,}xms, $th;
958 foreach my $t (@tmp) {
959 next if $t !~ m{=}xms;
960 my ($key, $val) = split m{=}xms, $t;
961 if ($val =~ m{/}xms) {
962 my ($max, $min) = split m{/}xms, $val;
963 $thres{$key}{max} = $max;
964 $thres{$key}{min} = $min;
965 }
966 else {
967 $thres{$key}{max} = $val;
968 }
969 }
970 }
971
972 return \%thres;
973}
974
975
976# Gets the output from SNMP result according to the OIDs checked
977sub get_snmp_output {
978 my ($result,$oidref) = @_;
b0e15fc9 979 my @temp = ();
669797e1 980 my @output = ();
981
982 foreach my $oid (keys %{ $result }) {
b0e15fc9 983 my $short = $oid;
f47687c4 984 $short =~ s{\s}{}gxms; # remove whitespace
985 $short =~ s{\A (.+) \. (\d+) \z}{$1}xms; # remove last number
b0e15fc9 986 my $id = $2;
987 if (exists $oidref->{$short}) {
988 $temp[$id]{$oidref->{$short}} = $result->{$oid};
669797e1 989 }
990 }
b0e15fc9 991
992 # Remove any empty indexes
993 foreach my $out (@temp) {
994 if (defined $out) {
995 push @output, $out;
996 }
997 }
998
669797e1 999 return \@output;
1000}
1001
1002
1003# Map the controller or other item in-place
1004sub map_item {
1005 my ($key, $val, $list) = @_;
1006
1007 foreach my $lst (@{ $list }) {
1008 if (!exists $lst->{$key}) {
1009 $lst->{$key} = $val;
1010 }
1011 }
1012 return;
1013}
1014
1015# Return the URL for official Dell documentation for a specific
1016# PowerEdge server
1017sub documentation_url {
1018 my $model = shift;
1019
1020 # create model short form, e.g. "r710"
1021 $model =~ s{\A PowerEdge \s (.+?) \z}{lc($1)}exms;
1022
1023 # special case for blades (e.g. M600, M710), they have common
1024 # documentation
1025 $model =~ s{\A m\d+ \z}{m}xms;
1026
1027 return 'http://support.dell.com/support/edocs/systems/pe' . $model . '/';
1028}
1029
1030# Return the URL for warranty information for a server with a given
1031# serial number (servicetag)
1032sub warranty_url {
1033 my $tag = shift;
1034
1035 # Dell support sites for different parts of the world
1036 my %supportsite
1037 = (
1038 'emea' => 'http://support.euro.dell.com/support/topics/topic.aspx/emea/shared/support/my_systems_info/',
1039 'ap' => 'http://supportapj.dell.com/support/topics/topic.aspx/ap/shared/support/my_systems_info/en/details?',
1040 'glob' => 'http://support.dell.com/support/topics/global.aspx/support/my_systems_info/details?',
1041 );
1042
1043 # warranty URLs for different country codes
1044 my %url
1045 = (
1046 # EMEA
1047 'at' => $supportsite{emea} . 'de/details?c=at&l=de&ServiceTag=', # Austria
1048 'be' => $supportsite{emea} . 'nl/details?c=be&l=nl&ServiceTag=', # Belgium
1049 'cz' => $supportsite{emea} . 'cs/details?c=cz&l=cs&ServiceTag=', # Czech Republic
1050 'de' => $supportsite{emea} . 'de/details?c=de&l=de&ServiceTag=', # Germany
1051 'dk' => $supportsite{emea} . 'da/details?c=dk&l=da&ServiceTag=', # Denmark
1052 'es' => $supportsite{emea} . 'es/details?c=es&l=es&ServiceTag=', # Spain
1053 'fi' => $supportsite{emea} . 'fi/details?c=fi&l=fi&ServiceTag=', # Finland
1054 'fr' => $supportsite{emea} . 'fr/details?c=fr&l=fr&ServiceTag=', # France
1055 'gr' => $supportsite{emea} . 'en/details?c=gr&l=el&ServiceTag=', # Greece
1056 'it' => $supportsite{emea} . 'it/details?c=it&l=it&ServiceTag=', # Italy
1057 'il' => $supportsite{emea} . 'en/details?c=il&l=en&ServiceTag=', # Israel
1058 'me' => $supportsite{emea} . 'en/details?c=me&l=en&ServiceTag=', # Middle East
1059 'no' => $supportsite{emea} . 'no/details?c=no&l=no&ServiceTag=', # Norway
1060 'nl' => $supportsite{emea} . 'nl/details?c=nl&l=nl&ServiceTag=', # The Netherlands
1061 'pl' => $supportsite{emea} . 'pl/details?c=pl&l=pl&ServiceTag=', # Poland
1062 'pt' => $supportsite{emea} . 'en/details?c=pt&l=pt&ServiceTag=', # Portugal
1063 'ru' => $supportsite{emea} . 'ru/details?c=ru&l=ru&ServiceTag=', # Russia
1064 'se' => $supportsite{emea} . 'sv/details?c=se&l=sv&ServiceTag=', # Sweden
1065 'uk' => $supportsite{emea} . 'en/details?c=uk&l=en&ServiceTag=', # United Kingdom
1066 'za' => $supportsite{emea} . 'en/details?c=za&l=en&ServiceTag=', # South Africa
1067 # America
1068 'br' => $supportsite{glob} . 'c=br&l=pt&ServiceTag=', # Brazil
1069 'ca' => $supportsite{glob} . 'c=ca&l=en&ServiceTag=', # Canada
1070 'mx' => $supportsite{glob} . 'c=mx&l=es&ServiceTag=', # Mexico
1071 'us' => $supportsite{glob} . 'c=us&l=en&ServiceTag=', # USA
1072 # Asia/Pacific
1073 'au' => $supportsite{ap} . 'c=au&l=en&ServiceTag=', # Australia
1074 'cn' => $supportsite{ap} . 'c=cn&l=zh&ServiceTag=', # China
1075 'in' => $supportsite{ap} . 'c=in&l=en&ServiceTag=', # India
1076 # default fallback
1077 'XX' => $supportsite{glob} . 'ServiceTag=', # default
1078 );
1079
1080 if (exists $url{$opt{htmlinfo}}) {
1081 return $url{$opt{htmlinfo}} . $tag;
1082 }
1083 else {
1084 return $url{XX} . $tag;
1085 }
1086}
1087
1088
912d8679 1089# This helper function returns the corresponding value of a hash key,
1090# but takes into account that the key may not exist
1091sub get_hashval {
1092 my $key = shift || return undef;
1093 my $hash = shift;
4e0a6aa5 1094 return defined $hash->{$key} ? $hash->{$key} : "Undefined value $key";
912d8679 1095}
1096
b460a3d6 1097# Find component status from hash
1098sub get_snmp_status {
1099 my $key = shift || return 'Unknown';
1100 return exists $snmp_status{$key} ? $snmp_status{$key} : 'Unknown';
1101}
912d8679 1102
e7fd8bc9 1103# Find component status from hash
1104sub get_snmp_probestatus {
1105 my $key = shift || return 'Unknown';
1106 return exists $snmp_probestatus{$key} ? $snmp_probestatus{$key} : 'Unknown';
1107}
1108
4e0a6aa5 1109# Check that a hash entry is defined and not an empty string. Return a
1110# chosen string (parameter) if these conditions are not met
0eed03e9 1111sub get_nonempty_string {
4e0a6aa5 1112 my $key = shift; # key to check
1113 my $hash = shift; # hash where the key belongs
1114 my $alt = shift; # alternate return value
1115 if (defined $hash->{$key} and $hash->{$key} ne q{}) {
1116 return $hash->{$key};
1117 }
1118 return $alt;
1119}
1120
669797e1 1121
1122#---------------------------------------------------------------------
1123# Check functions
1124#---------------------------------------------------------------------
1125
1126#-----------------------------------------
1127# Check global health status
1128#-----------------------------------------
1129sub check_global {
1130 my $health = $E_OK;
1131
1132 if ($snmp) {
1133 #
1134 # Checks global status, i.e. both storage and chassis
1135 #
1136 my $systemStateGlobalSystemStatus = '1.3.6.1.4.1.674.10892.1.200.10.1.2.1';
1137 my $result = $snmp_session->get_request(-varbindlist => [$systemStateGlobalSystemStatus]);
1138 if (!defined $result) {
98b224a3 1139 printf "SNMP ERROR [global]: %s\n", $snmp_error;
669797e1 1140 exit $E_UNKNOWN;
1141 }
b460a3d6 1142 $health = $status2nagios{get_snmp_status($result->{$systemStateGlobalSystemStatus})};
669797e1 1143 }
1144 else {
1145 #
1146 # NB! This does not check storage, only chassis...
1147 #
1148 foreach (@{ run_command("$omreport $omopt_system -fmt ssv") }) {
1149 next if !m/;/xms;
1150 next if m/\A SEVERITY;COMPONENT/xms;
1151 if (m/\A (.+?);Main\sSystem(\sChassis)? /xms) {
1152 $health = $status2nagios{$1};
1153 last;
1154 }
1155 }
1156 }
1157
1158 # Return the status
1159 return $health;
1160}
1161
1162
1163#-----------------------------------------
1164# STORAGE: Check controllers
1165#-----------------------------------------
1166sub check_controllers {
5ecf578c 1167 return if blacklisted('ctrl', 'all');
1168
669797e1 1169 my $nexus = undef;
1170 my $name = undef;
1171 my $state = undef;
1172 my $status = undef;
1173 my $minfw = undef;
1174 my $mindr = undef;
1175 my $firmware = undef;
1176 my $driver = undef;
9df480be 1177 my $minstdr = undef; # Minimum required Storport driver version
1178 my $stdr = undef; # Storport driver version
669797e1 1179 my @output = ();
1180
1181 if ($snmp) {
1182 my %ctrl_oid
1183 = (
1184 '1.3.6.1.4.1.674.10893.1.20.130.1.1.1' => 'controllerNumber',
1185 '1.3.6.1.4.1.674.10893.1.20.130.1.1.2' => 'controllerName',
1186 '1.3.6.1.4.1.674.10893.1.20.130.1.1.5' => 'controllerState',
1187 '1.3.6.1.4.1.674.10893.1.20.130.1.1.8' => 'controllerFWVersion',
1188 '1.3.6.1.4.1.674.10893.1.20.130.1.1.38' => 'controllerComponentStatus',
1189 '1.3.6.1.4.1.674.10893.1.20.130.1.1.39' => 'controllerNexusID',
1190 '1.3.6.1.4.1.674.10893.1.20.130.1.1.41' => 'controllerDriverVersion',
1191 '1.3.6.1.4.1.674.10893.1.20.130.1.1.44' => 'controllerMinFWVersion',
1192 '1.3.6.1.4.1.674.10893.1.20.130.1.1.45' => 'controllerMinDriverVersion',
1b3f1f77 1193 '1.3.6.1.4.1.674.10893.1.20.130.1.1.55' => 'controllerStorportDriverVersion',
1194 '1.3.6.1.4.1.674.10893.1.20.130.1.1.56' => 'controllerMinRequiredStorportVer',
669797e1 1195 );
ba199ee0 1196
1197 # We use get_table() here for the odd case where a server has
1198 # two or more controllers, and where some OIDs are missing on
1199 # one of the controllers.
1200 my $controllerTable = '1.3.6.1.4.1.674.10893.1.20.130.1';
1201 my $result = $snmp_session->get_table(-baseoid => $controllerTable);
669797e1 1202
945b3b20 1203 if (!defined $result) {
853fa265 1204 report('storage', 'Storage Error! No controllers found', $E_UNKNOWN);
9ac20fd2 1205 return;
945b3b20 1206 }
1207
669797e1 1208 @output = @{ get_snmp_output($result, \%ctrl_oid) };
1209 }
1210 else {
1211 @output = @{ run_omreport('storage controller') };
1212 }
1213
1214 my %ctrl_state
1215 = (
1216 0 => 'Unknown',
1217 1 => 'Ready',
1218 2 => 'Failed',
1219 3 => 'Online',
1220 4 => 'Offline',
1221 6 => 'Degraded',
1222 );
1223
1224 CTRL:
1225 foreach my $out (@output) {
1226 if ($snmp) {
fcbd60e6 1227 $name = $out->{controllerName} || 'Unknown controller';
912d8679 1228 $state = get_hashval($out->{controllerState}, \%ctrl_state);
b460a3d6 1229 $status = get_snmp_status($out->{controllerComponentStatus});
fcbd60e6 1230 $minfw = $out->{controllerMinFWVersion} || undef;
1231 $mindr = $out->{controllerMinDriverVersion} || undef;
1232 $firmware = $out->{controllerFWVersion} || 'N/A';
1233 $driver = $out->{controllerDriverVersion} || 'N/A';
1234 $minstdr = $out->{'controllerMinRequiredStorportVer'} || undef;
1235 $stdr = $out->{controllerStorportDriverVersion} || undef;
c105c347 1236 $nexus = convert_nexus(($out->{controllerNexusID} || 9999));
669797e1 1237 }
1238 else {
fcbd60e6 1239 $nexus = get_nonempty_string('ID', $out, '9999');
1240 $name = get_nonempty_string('Name', $out, 'Unknown controller');
1241 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 1242 $status = get_nonempty_string('Status', $out, 'Unknown');
669797e1 1243 $minfw = $out->{'Minimum Required Firmware Version'} ne 'Not Applicable'
1244 ? $out->{'Minimum Required Firmware Version'} : undef;
1245 $mindr = $out->{'Minimum Required Driver Version'} ne 'Not Applicable'
1246 ? $out->{'Minimum Required Driver Version'} : undef;
1247 $firmware = $out->{'Firmware Version'} ne 'Not Applicable'
1248 ? $out->{'Firmware Version'} : 'N/A';
1249 $driver = $out->{'Driver Version'} ne 'Not Applicable'
1250 ? $out->{'Driver Version'} : 'N/A';
f86e57b8 1251 $minstdr = (exists $out->{'Minimum Required Storport Driver Version'}
1252 and $out->{'Minimum Required Storport Driver Version'} ne 'Not Applicable')
08c259f3 1253 ? $out->{'Minimum Required Storport Driver Version'} : undef;
f86e57b8 1254 $stdr = (exists $out->{'Storport Driver Version'}
1255 and $out->{'Storport Driver Version'} ne 'Not Applicable')
956cf4d1 1256 ? $out->{'Storport Driver Version'} : undef;
669797e1 1257 }
1258
1259 $name =~ s{\s+\z}{}xms; # remove trailing whitespace
7b81efb0 1260 push @controllers, $nexus;
669797e1 1261
1262 # Collecting some storage info
7b81efb0 1263 $sysinfo{'controller'}{$nexus}{'id'} = $nexus;
1264 $sysinfo{'controller'}{$nexus}{'name'} = $name;
1265 $sysinfo{'controller'}{$nexus}{'driver'} = $driver;
1266 $sysinfo{'controller'}{$nexus}{'firmware'} = $firmware;
1267 $sysinfo{'controller'}{$nexus}{'storport'} = $stdr;
669797e1 1268
c38e4c93 1269 # Store controller info for future use (SNMP)
b1f48712 1270 if ($snmp) {
1271 $snmp_controller{$out->{controllerNumber}} = $nexus;
1272 }
1273
669797e1 1274 next CTRL if blacklisted('ctrl', $nexus);
1275
1276 # Special case: old firmware
7b81efb0 1277 if (!blacklisted('ctrl_fw', $nexus) && defined $minfw) {
669797e1 1278 chomp $firmware;
98b224a3 1279 my $msg = sprintf q{Controller %d [%s]: Firmware '%s' is out of date},
7b81efb0 1280 $nexus, $name, $firmware;
669797e1 1281 report('storage', $msg, $E_WARNING, $nexus);
1282 }
1283 # Special case: old driver
7b81efb0 1284 if (!blacklisted('ctrl_driver', $nexus) && defined $mindr) {
669797e1 1285 chomp $driver;
98b224a3 1286 my $msg = sprintf q{Controller %d [%s]: Driver '%s' is out of date},
7b81efb0 1287 $nexus, $name, $driver;
669797e1 1288 report('storage', $msg, $E_WARNING, $nexus);
1289 }
08c259f3 1290 # Special case: old storport driver
7b81efb0 1291 if (!blacklisted('ctrl_stdr', $nexus) && defined $minstdr) {
08c259f3 1292 chomp $stdr;
1293 my $msg = sprintf q{Controller %d [%s]: Storport driver '%s' is out of date},
7b81efb0 1294 $nexus, $name, $stdr;
08c259f3 1295 report('storage', $msg, $E_WARNING, $nexus);
1296 }
669797e1 1297 # Ok
1298 if ($status eq 'Ok' or ($status eq 'Non-Critical'
babe647a 1299 and (defined $minfw or defined $mindr or defined $minstdr))) {
98b224a3 1300 my $msg = sprintf 'Controller %d [%s] is %s',
7b81efb0 1301 $nexus, $name, $state;
669797e1 1302 report('storage', $msg, $E_OK, $nexus);
1303 }
1304 # Default
1305 else {
98b224a3 1306 my $msg = sprintf 'Controller %d [%s] needs attention: %s',
7b81efb0 1307 $nexus, $name, $state;
669797e1 1308 report('storage', $msg, $status2nagios{$status}, $nexus);
1309 }
1310 }
1311 return;
1312}
1313
1314
1315#-----------------------------------------
1316# STORAGE: Check physical drives
1317#-----------------------------------------
1318sub check_physical_disks {
1319 return if $#controllers == -1;
c8eb5019 1320 return if blacklisted('pdisk', 'all');
669797e1 1321
669797e1 1322 my $nexus = undef;
1323 my $name = undef;
1324 my $state = undef;
1325 my $status = undef;
1326 my $fpred = undef;
1327 my $progr = undef;
1328 my $ctrl = undef;
1329 my $vendor = undef; # disk vendor
1330 my $product = undef; # product ID
1331 my $capacity = undef; # disk length (size) in bytes
ac93da95 1332 my $media = undef; # media type (e.g. HDD, SSD)
1333 my $bus = undef; # bus protocol (e.g. SAS, SATA)
e26aa120 1334 my $spare = undef; # spare state (e.g. global hotspare)
669797e1 1335 my @output = ();
1336
1337 if ($snmp) {
1338 my %pdisk_oid
1339 = (
669797e1 1340 '1.3.6.1.4.1.674.10893.1.20.130.4.1.2' => 'arrayDiskName',
1341 '1.3.6.1.4.1.674.10893.1.20.130.4.1.3' => 'arrayDiskVendor',
1342 '1.3.6.1.4.1.674.10893.1.20.130.4.1.4' => 'arrayDiskState',
1343 '1.3.6.1.4.1.674.10893.1.20.130.4.1.6' => 'arrayDiskProductID',
1344 '1.3.6.1.4.1.674.10893.1.20.130.4.1.9' => 'arrayDiskEnclosureID',
1345 '1.3.6.1.4.1.674.10893.1.20.130.4.1.10' => 'arrayDiskChannel',
1346 '1.3.6.1.4.1.674.10893.1.20.130.4.1.11' => 'arrayDiskLengthInMB',
1347 '1.3.6.1.4.1.674.10893.1.20.130.4.1.15' => 'arrayDiskTargetID',
ac93da95 1348 '1.3.6.1.4.1.674.10893.1.20.130.4.1.21' => 'arrayDiskBusType',
e26aa120 1349 '1.3.6.1.4.1.674.10893.1.20.130.4.1.22' => 'arrayDiskSpareState',
669797e1 1350 '1.3.6.1.4.1.674.10893.1.20.130.4.1.24' => 'arrayDiskComponentStatus',
1351 '1.3.6.1.4.1.674.10893.1.20.130.4.1.26' => 'arrayDiskNexusID',
1352 '1.3.6.1.4.1.674.10893.1.20.130.4.1.31' => 'arrayDiskSmartAlertIndication',
ac93da95 1353 '1.3.6.1.4.1.674.10893.1.20.130.4.1.35' => 'arrayDiskMediaType',
669797e1 1354 '1.3.6.1.4.1.674.10893.1.20.130.5.1.7' => 'arrayDiskEnclosureConnectionControllerNumber',
c11849d6 1355 '1.3.6.1.4.1.674.10893.1.20.130.6.1.7' => 'arrayDiskChannelConnectionControllerNumber',
669797e1 1356 );
4cabd748 1357 my $result = undef;
1358 if ($opt{use_get_table}) {
1359 my $arrayDiskTable = '1.3.6.1.4.1.674.10893.1.20.130.4';
1360 my $arrayDiskEnclosureConnectionControllerNumber = '1.3.6.1.4.1.674.10893.1.20.130.5.1.7';
1361 my $arrayDiskChannelConnectionControllerNumber = '1.3.6.1.4.1.674.10893.1.20.130.6.1.7';
1362
1363 $result = $snmp_session->get_table(-baseoid => $arrayDiskTable);
1364 my $ext1 = $snmp_session->get_table(-baseoid => $arrayDiskEnclosureConnectionControllerNumber);
1365 my $ext2 = $snmp_session->get_table(-baseoid => $arrayDiskChannelConnectionControllerNumber);
1366
1367 if (defined $result) {
1368 defined $ext1 && map { $$result{$_} = $$ext1{$_} } keys %{ $ext1 };
1369 defined $ext2 && map { $$result{$_} = $$ext2{$_} } keys %{ $ext2 };
1370 }
1371 }
1372 else {
1373 $result = $snmp_session->get_entries(-columns => [keys %pdisk_oid]);
1374 }
669797e1 1375
1376 if (!defined $result) {
98b224a3 1377 printf "SNMP ERROR [storage / pdisk]: %s.\n", $snmp_session->error;
669797e1 1378 $snmp_session->close;
1379 exit $E_UNKNOWN;
1380 }
1381
1382 @output = @{ get_snmp_output($result, \%pdisk_oid) };
1383 }
1384 else {
1385 foreach my $c (@controllers) {
74177368 1386 # This blacklists disks with broken firmware, which includes
1387 # illegal XML characters that makes openmanage choke on itself
1388 next if blacklisted('ctrl_pdisk', $c);
1389
669797e1 1390 push @output, @{ run_omreport("storage pdisk controller=$c") };
1391 map_item('ctrl', $c, \@output);
1392 }
1393 }
1394
e26aa120 1395 my %spare_state
1396 = (
1397 1 => 'VD member', # disk is a member of a virtual disk
1398 2 => 'DG member', # disk is a member of a disk group
1399 3 => 'Global HS', # disk is a global hot spare
1400 4 => 'Dedicated HS', # disk is a dedicated hot spare
1401 5 => 'no', # not a spare
1402 99 => 'n/a', # not applicable
1403 );
1404
ac93da95 1405 my %media_type
1406 = (
1407 1 => 'unknown',
1408 2 => 'HDD',
1409 3 => 'SSD',
1410 );
1411
1412 my %bus_type
1413 = (
1414 1 => 'SCSI',
1415 2 => 'IDE',
1416 3 => 'Fibre Channel',
1417 4 => 'SSA',
1418 6 => 'USB',
1419 7 => 'SATA',
1420 8 => 'SAS',
1421 );
1422
669797e1 1423 my %pdisk_state
1424 = (
1425 0 => 'Unknown',
1426 1 => 'Ready',
1427 2 => 'Failed',
1428 3 => 'Online',
1429 4 => 'Offline',
1430 6 => 'Degraded',
1431 7 => 'Recovering',
1432 11 => 'Removed',
1433 15 => 'Resynching',
e26aa120 1434 22 => 'Replacing', # FIXME: this one is not defined in the OMSA MIBs
669797e1 1435 24 => 'Rebuilding',
1436 25 => 'No Media',
1437 26 => 'Formatting',
1438 28 => 'Diagnostics',
1439 34 => 'Predictive failure',
1440 35 => 'Initializing',
1441 39 => 'Foreign',
1442 40 => 'Clear',
1443 41 => 'Unsupported',
1444 53 => 'Incompatible',
1445 );
1446
1447 # Check physical disks on each of the controllers
1448 PDISK:
1449 foreach my $out (@output) {
1450 if ($snmp) {
fcbd60e6 1451 $name = $out->{arrayDiskName} || 'Unknown disk';
912d8679 1452 $state = get_hashval($out->{arrayDiskState}, \%pdisk_state);
b460a3d6 1453 $status = get_snmp_status($out->{arrayDiskComponentStatus});
fcbd60e6 1454 $fpred = defined $out->{arrayDiskSmartAlertIndication}
355299d9 1455 && $out->{arrayDiskSmartAlertIndication} == 2 ? 1 : 0;
669797e1 1456 $progr = q{};
56af31ba 1457 $nexus = convert_nexus(($out->{arrayDiskNexusID} || 9999));
fcbd60e6 1458 $vendor = $out->{arrayDiskVendor} || 'Unknown vendor';
1459 $product = $out->{arrayDiskProductID} || 'Unknown product ID';
e26aa120 1460 $spare = get_hashval($out->{arrayDiskSpareState}, \%spare_state);
ac93da95 1461 $bus = exists $out->{arrayDiskBusType}
1462 ? get_hashval($out->{arrayDiskBusType}, \%bus_type) : undef;
1463 $media = exists $out->{arrayDiskMediaType}
1464 ? get_hashval($out->{arrayDiskMediaType}, \%media_type) : undef;
32f5abab 1465 $capacity = exists $out->{arrayDiskLengthInMB}
1466 ? $out->{arrayDiskLengthInMB} * 1024**2 : -1;
995447d0 1467
1468 # try to find the controller where the disk belongs
c11849d6 1469 if (exists $out->{arrayDiskEnclosureConnectionControllerNumber}) {
995447d0 1470 # for disks that are attached to an enclosure
b1f48712 1471 $ctrl = $snmp_controller{$out->{arrayDiskEnclosureConnectionControllerNumber}};
c11849d6 1472 }
1473 elsif (exists $out->{arrayDiskChannelConnectionControllerNumber}) {
995447d0 1474 # for disks that are not attached to an enclosure
b1f48712 1475 $ctrl = $snmp_controller{$out->{arrayDiskChannelConnectionControllerNumber}};
c11849d6 1476 }
1477 else {
995447d0 1478 # last resort... use the nexus id (old/broken hardware)
b1f48712 1479 $ctrl = $nexus;
1480 $ctrl =~ s{\A (\d+) : .* \z}{$1}xms;
c11849d6 1481 }
669797e1 1482 }
1483 else {
fcbd60e6 1484 $name = get_nonempty_string('Name', $out, 'Unknown disk');
1485 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 1486 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 1487 $fpred = lc(get_nonempty_string('Failure Predicted', $out, q{})) eq 'yes' ? 1 : 0;
1488 $progr = ' [' . get_nonempty_string('Progress', $out, q{}) . ']';
7b81efb0 1489 $nexus = join q{:}, $out->{ctrl}, $out->{'ID'};
fcbd60e6 1490 $vendor = get_nonempty_string('Vendor ID', $out, 'Unknown Vendor');
1491 $product = get_nonempty_string('Product ID', $out, 'Unknown Product ID');
1492 $media = get_nonempty_string('Media', $out, undef);
1493 $bus = get_nonempty_string('Bus Protocol', $out, undef);
1494 $spare = get_nonempty_string('Hot Spare', $out, q{});
1495 $ctrl = $out->{ctrl};
1496 $capacity = get_nonempty_string('Capacity', $out, q{});
669797e1 1497 $capacity =~ s{\A .*? \((\d+) \s bytes\) \z}{$1}xms;
0bcac3d1 1498 if ($capacity eq 'Unavailable') {
1499 $capacity = -1;
1500 }
669797e1 1501 }
1502
1503 next PDISK if blacklisted('pdisk', $nexus);
1504 $count{pdisk}++;
1505
1506 $vendor =~ s{\s+\z}{}xms; # remove trailing whitespace
1507 $product =~ s{\s+\z}{}xms; # remove trailing whitespace
1508
0c28b60d 1509 # If the disk is bad, the vendor field may be empty
41a59869 1510 if ($vendor eq q{}) { $vendor = 'Unknown Vendor'; }
f87c3c97 1511
e26aa120 1512 # Hot spare stuff
1513 if ($spare eq 'Global') { $spare = 'Global HS'; }
1514 elsif ($spare eq 'Dedicated') { $spare = 'Dedicated HS'; }
1515 elsif ($spare !~ m{\A Global|Dedicated}xms) { $spare = undef; }
1516
669797e1 1517 # Calculate human readable capacity
32f5abab 1518 if ($capacity == -1) {
1519 # capacity is unknown
1520 $capacity = 'Unknown Size';
1521 }
1522 else {
1523 $capacity = ceil($capacity / 1000**3) >= 1000
1524 ? sprintf '%.1fTB', ($capacity / 1000**4)
1525 : sprintf '%.0fGB', ($capacity / 1000**3);
1526 $capacity = '450GB' if $capacity eq '449GB'; # quick fix for 450GB disks
1527 $capacity = '300GB' if $capacity eq '299GB'; # quick fix for 300GB disks
1528 $capacity = '146GB' if $capacity eq '147GB'; # quick fix for 146GB disks
1529 $capacity = '100GB' if $capacity eq '99GB'; # quick fix for 100GB disks
1530 }
669797e1 1531
1532 # Capitalize only the first letter of the vendor name
1533 $vendor = (substr $vendor, 0, 1) . lc (substr $vendor, 1, length $vendor);
1534
1535 # Remove unnecessary trademark rubbish from vendor name
1536 $vendor =~ s{\(tm\)\z}{}xms;
1537
ac93da95 1538 # bus and media aren't always defined
1539 my $busmedia = q{};
1540 if (defined $bus && defined $media) { $busmedia = "$bus-$media "; }
1541 elsif (defined $bus && ! defined $media) { $busmedia = "$bus "; }
1542 elsif (! defined $bus && defined $media) { $busmedia = "$media "; }
1543
a8b24907 1544 # Special case: Failure predicted
1545 if ($fpred) {
ea0b94b8 1546 my $msg = sprintf '%s [%s %s, %s] on ctrl %d needs attention: Failure Predicted',
1547 $name, $vendor, $product, $capacity, $ctrl;
f2f69da2 1548 $msg .= " ($state)" if $state ne 'Predictive failure';
1549 report('storage', $msg,
1550 ($status2nagios{$status} == $E_CRITICAL ? $E_CRITICAL : $E_WARNING), $nexus);
ea0b94b8 1551 }
c5c69973 1552 # Special case: Rebuilding / Replacing
ea0b94b8 1553 elsif ($state =~ m{\A Rebuilding|Replacing \z}xms) {
ddeae63c 1554 my $msg = sprintf '%s [%s %s, %s] on ctrl %d is %s%s',
1555 $name, $vendor, $product, $capacity, $ctrl, $state, $progr;
669797e1 1556 report('storage', $msg, $E_WARNING, $nexus);
1557 }
1558 # Default
1559 elsif ($status ne 'Ok') {
c11849d6 1560 my $msg = sprintf '%s [%s %s, %s] on ctrl %d needs attention: %s',
1561 $name, $vendor, $product, $capacity, $ctrl, $state;
669797e1 1562 report('storage', $msg, $status2nagios{$status}, $nexus);
1563 }
1564 # Ok
1565 else {
ac93da95 1566 my $msg = sprintf '%s [%s%s] on ctrl %d is %s',
1567 $name, $busmedia, $capacity, $ctrl, $state;
e26aa120 1568 if (defined $spare) { $msg .= " ($spare)"; }
669797e1 1569 report('storage', $msg, $E_OK, $nexus);
1570 }
1571 }
1572 return;
1573}
1574
1575
1576#-----------------------------------------
1577# STORAGE: Check logical drives
1578#-----------------------------------------
1579sub check_virtual_disks {
1580 return if $#controllers == -1;
5ecf578c 1581 return if blacklisted('vdisk', 'all');
669797e1 1582
25d04c34 1583 my $name = undef;
669797e1 1584 my $nexus = undef;
1585 my $dev = undef;
1586 my $state = undef;
1587 my $status = undef;
1588 my $layout = undef;
1589 my $size = undef;
1590 my $progr = undef;
25d04c34 1591 my $ctrl = undef;
669797e1 1592 my @output = ();
1593
1594 if ($snmp) {
1595 my %vdisk_oid
1596 = (
669797e1 1597 '1.3.6.1.4.1.674.10893.1.20.140.1.1.3' => 'virtualDiskDeviceName',
1598 '1.3.6.1.4.1.674.10893.1.20.140.1.1.4' => 'virtualDiskState',
1599 '1.3.6.1.4.1.674.10893.1.20.140.1.1.6' => 'virtualDiskLengthInMB',
1600 '1.3.6.1.4.1.674.10893.1.20.140.1.1.13' => 'virtualDiskLayout',
1601 '1.3.6.1.4.1.674.10893.1.20.140.1.1.20' => 'virtualDiskComponentStatus',
1602 '1.3.6.1.4.1.674.10893.1.20.140.1.1.21' => 'virtualDiskNexusID',
1603 );
4cabd748 1604 my $result = undef;
1605 if ($opt{use_get_table}) {
1606 my $virtualDiskTable = '1.3.6.1.4.1.674.10893.1.20.140.1';
1607 $result = $snmp_session->get_table(-baseoid => $virtualDiskTable);
1608 }
1609 else {
1610 $result = $snmp_session->get_entries(-columns => [keys %vdisk_oid]);
1611 }
669797e1 1612
1613 # No logical drives is OK
1614 return if !defined $result;
1615
1616 @output = @{ get_snmp_output($result, \%vdisk_oid) };
1617 }
1618 else {
1619 foreach my $c (@controllers) {
1620 push @output, @{ run_omreport("storage vdisk controller=$c") };
1621 map_item('ctrl', $c, \@output);
1622 }
1623 }
1624
1625 my %vdisk_state
1626 = (
1627 0 => 'Unknown',
1628 1 => 'Ready',
1629 2 => 'Failed',
1630 3 => 'Online',
1631 4 => 'Offline',
1632 6 => 'Degraded',
1633 15 => 'Resynching',
1634 16 => 'Regenerating',
1635 24 => 'Rebuilding',
1636 26 => 'Formatting',
1637 32 => 'Reconstructing',
1638 35 => 'Initializing',
1639 36 => 'Background Initialization',
1640 38 => 'Resynching Paused',
1641 52 => 'Permanently Degraded',
1642 54 => 'Degraded Redundancy',
1643 );
1644
1645 my %vdisk_layout
1646 = (
1647 1 => 'Concatenated',
1648 2 => 'RAID-0',
1649 3 => 'RAID-1',
1650 7 => 'RAID-5',
1651 8 => 'RAID-6',
1652 10 => 'RAID-10',
1653 12 => 'RAID-50',
9113fb39 1654 19 => 'Concatenated RAID-1',
669797e1 1655 24 => 'RAID-60',
1656 );
1657
1658 # Check virtual disks on each of the controllers
1659 VDISK:
1660 foreach my $out (@output) {
1661 if ($snmp) {
fcbd60e6 1662 $dev = $out->{virtualDiskDeviceName} || 'Unknown device';
912d8679 1663 $state = get_hashval($out->{virtualDiskState}, \%vdisk_state);
1664 $layout = get_hashval($out->{virtualDiskLayout}, \%vdisk_layout);
b460a3d6 1665 $status = get_snmp_status($out->{virtualDiskComponentStatus});
fcbd60e6 1666 $size = sprintf '%.2f GB', ($out->{virtualDiskLengthInMB} || 0) / 1024;
1667 $progr = q{}; # not available via SNMP
1668 $nexus = convert_nexus(($out->{virtualDiskNexusID} || 9999));
669797e1 1669 }
1670 else {
fcbd60e6 1671 $dev = get_nonempty_string('Device Name', $out, 'Unknown device');
1672 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 1673 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 1674 $layout = get_nonempty_string('Layout', $out, 'Unknown layout');
1675 $size = get_nonempty_string('Size', $out, 'Unavailable');
669797e1 1676 $size =~ s{\A (.*GB).* \z}{$1}xms;
fcbd60e6 1677 $progr = ' [' . get_nonempty_string('Progress', $out, q{}) . ']';
25d04c34 1678 $ctrl = $out->{ctrl};
fcbd60e6 1679 $nexus = join q{:}, $ctrl, get_nonempty_string('ID', $out, '9999');
669797e1 1680 }
1681
1682 next VDISK if blacklisted('vdisk', $nexus);
1683 $count{vdisk}++;
1684
04b0f13b 1685 # The device name is undefined sometimes
1686 $dev = q{} if !defined $dev;
1687
669797e1 1688 # Special case: Regenerating
1689 if ($state eq 'Regenerating') {
cad6434b 1690 my $msg = sprintf q{Logical Drive '%s' [%s, %s] is %s%s},
44b3048a 1691 $dev, $layout, $size, $state, $progr;
669797e1 1692 report('storage', $msg, $E_WARNING, $nexus);
1693 }
1694 # Default
1695 elsif ($status ne 'Ok') {
cad6434b 1696 my $msg = sprintf q{Logical Drive '%s' [%s, %s] needs attention: %s},
44b3048a 1697 $dev, $layout, $size, $state;
669797e1 1698 report('storage', $msg, $status2nagios{$status}, $nexus);
1699 }
1700 # Ok
1701 else {
cad6434b 1702 my $msg = sprintf q{Logical Drive '%s' [%s, %s] is %s},
44b3048a 1703 $dev, $layout, $size, $state;
669797e1 1704 report('storage', $msg, $E_OK, $nexus);
1705 }
1706 }
1707 return;
1708}
1709
1710
1711#-----------------------------------------
1712# STORAGE: Check cache batteries
1713#-----------------------------------------
1714sub check_cache_battery {
1715 return if $#controllers == -1;
5ecf578c 1716 return if blacklisted('bat', 'all');
669797e1 1717
1718 my $id = undef;
1719 my $nexus = undef;
1720 my $state = undef;
1721 my $status = undef;
1722 my $ctrl = undef;
1723 my $learn = undef; # learn state
1724 my $pred = undef; # battery's ability to be charged
1725 my @output = ();
1726
1727 if ($snmp) {
1728 my %bat_oid
1729 = (
669797e1 1730 '1.3.6.1.4.1.674.10893.1.20.130.15.1.4' => 'batteryState',
1731 '1.3.6.1.4.1.674.10893.1.20.130.15.1.6' => 'batteryComponentStatus',
1732 '1.3.6.1.4.1.674.10893.1.20.130.15.1.9' => 'batteryNexusID',
1733 '1.3.6.1.4.1.674.10893.1.20.130.15.1.10' => 'batteryPredictedCapacity',
1734 '1.3.6.1.4.1.674.10893.1.20.130.15.1.12' => 'batteryLearnState',
1735 '1.3.6.1.4.1.674.10893.1.20.130.16.1.5' => 'batteryConnectionControllerNumber',
1736 );
4cabd748 1737 my $result = undef;
1738 if ($opt{use_get_table}) {
1739 my $batteryTable = '1.3.6.1.4.1.674.10893.1.20.130.15';
c849fd4c 1740 my $batteryConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.16';
1741
4cabd748 1742 $result = $snmp_session->get_table(-baseoid => $batteryTable);
c849fd4c 1743 my $ext = $snmp_session->get_table(-baseoid => $batteryConnectionTable);
1744
1745 if (defined $result) {
1746 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
1747 }
4cabd748 1748 }
1749 else {
1750 $result = $snmp_session->get_entries(-columns => [keys %bat_oid]);
1751 }
669797e1 1752
1753 # No cache battery is OK
1754 return if !defined $result;
1755
1756 @output = @{ get_snmp_output($result, \%bat_oid) };
1757 }
1758 else {
1759 foreach my $c (@controllers) {
1760 push @output, @{ run_omreport("storage battery controller=$c") };
1761 map_item('ctrl', $c, \@output);
1762 }
1763 }
1764
1765 my %bat_state
1766 = (
1767 0 => 'Unknown',
1768 1 => 'Ready',
1769 2 => 'Failed',
1770 6 => 'Degraded',
1771 7 => 'Reconditioning',
1772 9 => 'High',
1773 10 => 'Power Low',
1774 12 => 'Charging',
1775 21 => 'Missing',
1776 36 => 'Learning',
1777 );
1778
a49bcfe8 1779 # Specifies the learn state activity of the battery
669797e1 1780 my %bat_learn_state
1781 = (
1782 1 => 'Failed',
1783 2 => 'Active',
1784 4 => 'Timed out',
1785 8 => 'Requested',
1786 16 => 'Idle',
1787 );
1788
a49bcfe8 1789 # This property displays the battery's ability to be charged
669797e1 1790 my %bat_pred_cap
1791 = (
1792 1 => 'Failed', # The battery cannot be charged and needs to be replaced
1793 2 => 'Ready', # The battery can be charged to full capacity
1794 4 => 'Unknown', # The battery is completing a Learn cycle. The charge capacity of the
1795 # battery cannot be determined until the Learn cycle is complete
1796 );
1797
1798 # Check battery on each of the controllers
1799 BATTERY:
1800 foreach my $out (@output) {
1801 if ($snmp) {
b460a3d6 1802 $status = get_snmp_status($out->{batteryComponentStatus});
912d8679 1803 $state = get_hashval($out->{batteryState}, \%bat_state);
1804 $learn = get_hashval($out->{batteryLearnState}, \%bat_learn_state);
1805 $pred = get_hashval($out->{batteryPredictedCapacity}, \%bat_pred_cap);
fcbd60e6 1806 $ctrl = ($out->{batteryConnectionControllerNumber} || 10000) - 1;
1807 $nexus = convert_nexus(($out->{batteryNexusID} || 9999));
25d04c34 1808 $id = $nexus;
1809 $id =~ s{\A \d+:(\d+) \z}{$1}xms;
669797e1 1810 }
1811 else {
fcbd60e6 1812 $id = get_nonempty_string('ID', $out, 9999);
1813 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 1814 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 1815 $learn = get_nonempty_string('Learn State', $out, 'Unknown learn state');
1816 $pred = get_nonempty_string('Predicted Capacity Status', $out, 'Unknown predicted capacity status');
669797e1 1817 $ctrl = $out->{'ctrl'};
1818 $nexus = join q{:}, $out->{ctrl}, $id;
1819 }
1820
1821 next BATTERY if blacklisted('bat', $nexus);
1822
1823 # Special case: Charging
1824 if ($state eq 'Charging') {
50d6bc4a 1825 if ($pred eq 'Failed') {
cad6434b 1826 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [replace battery]',
50d6bc4a 1827 $id, $ctrl, $state, $pred;
1828 report('storage', $msg, $E_CRITICAL, $nexus);
1829 }
1830 else {
1831 next BATTERY if blacklisted('bat_charge', $nexus);
cad6434b 1832 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
50d6bc4a 1833 $id, $ctrl, $state, $pred;
1834 report('storage', $msg, $E_WARNING, $nexus);
1835 }
669797e1 1836 }
1837 # Special case: Learning (battery learns its capacity)
1838 elsif ($state eq 'Learning') {
50d6bc4a 1839 if ($learn eq 'Failed') {
cad6434b 1840 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s)',
50d6bc4a 1841 $id, $ctrl, $state, $learn;
1842 report('storage', $msg, $E_CRITICAL, $nexus);
1843 }
1844 else {
1845 next BATTERY if blacklisted('bat_charge', $nexus);
cad6434b 1846 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
50d6bc4a 1847 $id, $ctrl, $state, $learn;
1848 report('storage', $msg, $E_WARNING, $nexus);
1849 }
669797e1 1850 }
1851 # Special case: Power Low (first part of recharge cycle)
1852 elsif ($state eq 'Power Low') {
5a28cf7f 1853 next BATTERY if blacklisted('bat_charge', $nexus);
cad6434b 1854 my $msg = sprintf 'Cache Battery %d in controller %d is %s [probably harmless]',
669797e1 1855 $id, $ctrl, $state;
1856 report('storage', $msg, $E_WARNING, $nexus);
1857 }
5a28cf7f 1858 # Special case: Degraded and Non-Critical (usually part of recharge cycle)
1859 elsif ($state eq 'Degraded' && $status eq 'Non-Critical') {
1860 next BATTERY if blacklisted('bat_charge', $nexus);
cad6434b 1861 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
5a28cf7f 1862 $id, $ctrl, $state, $status;
1863 report('storage', $msg, $E_WARNING, $nexus);
1864 }
669797e1 1865 # Default
1866 elsif ($status ne 'Ok') {
cad6434b 1867 my $msg = sprintf 'Cache Battery %d in controller %d needs attention: %s (%s)',
669797e1 1868 $id, $ctrl, $state, $status;
1869 report('storage', $msg, $status2nagios{$status}, $nexus);
1870 }
1871 # Ok
1872 else {
cad6434b 1873 my $msg = sprintf 'Cache Battery %d in controller %d is %s',
669797e1 1874 $id, $ctrl, $state;
1875 report('storage', $msg, $E_OK, $nexus);
1876 }
1877 }
1878 return;
1879}
1880
1881
1882#-----------------------------------------
1883# STORAGE: Check connectors (channels)
1884#-----------------------------------------
1885sub check_connectors {
1886 return if $#controllers == -1;
5ecf578c 1887 return if blacklisted('conn', 'all');
669797e1 1888
669797e1 1889 my $nexus = undef;
1890 my $name = undef;
1891 my $state = undef;
1892 my $status = undef;
1893 my $type = undef;
1894 my $ctrl = undef;
1895 my @output = ();
1896
1897 if ($snmp) {
1898 my %conn_oid
1899 = (
669797e1 1900 '1.3.6.1.4.1.674.10893.1.20.130.2.1.2' => 'channelName',
1901 '1.3.6.1.4.1.674.10893.1.20.130.2.1.3' => 'channelState',
1902 '1.3.6.1.4.1.674.10893.1.20.130.2.1.8' => 'channelComponentStatus',
1903 '1.3.6.1.4.1.674.10893.1.20.130.2.1.9' => 'channelNexusID',
1904 '1.3.6.1.4.1.674.10893.1.20.130.2.1.11' => 'channelBusType',
1905 );
4cabd748 1906 my $result = undef;
1907 if ($opt{use_get_table}) {
1908 my $channelTable = '1.3.6.1.4.1.674.10893.1.20.130.2';
1909 $result = $snmp_session->get_table(-baseoid => $channelTable);
1910 }
1911 else {
1912 $result = $snmp_session->get_entries(-columns => [keys %conn_oid]);
1913 }
669797e1 1914
1915 if (!defined $result) {
98b224a3 1916 printf "SNMP ERROR [storage / channel]: %s.\n", $snmp_session->error;
669797e1 1917 $snmp_session->close;
1918 exit $E_UNKNOWN;
1919 }
1920
1921 @output = @{ get_snmp_output($result, \%conn_oid) };
1922 }
1923 else {
1924 foreach my $c (@controllers) {
1925 push @output, @{ run_omreport("storage connector controller=$c") };
1926 map_item('ctrl', $c, \@output);
1927 }
1928 }
1929
1930 my %conn_state
1931 = (
1932 0 => 'Unknown',
1933 1 => 'Ready',
1934 2 => 'Failed',
1935 3 => 'Online',
1936 4 => 'Offline',
1937 6 => 'Degraded',
1938 );
1939
1940 my %conn_bustype
1941 = (
1942 1 => 'SCSI',
1943 2 => 'IDE',
1944 3 => 'Fibre Channel',
1945 4 => 'SSA',
1946 6 => 'USB',
1947 7 => 'SATA',
1948 8 => 'SAS',
1949 );
1950
1951 # Check connectors on each of the controllers
1952 CHANNEL:
1953 foreach my $out (@output) {
1954 if ($snmp) {
fcbd60e6 1955 $name = $out->{channelName} || 'Unknown channel';
b460a3d6 1956 $status = get_snmp_status($out->{channelComponentStatus});
912d8679 1957 $state = get_hashval($out->{channelState}, \%conn_state);
1958 $type = get_hashval($out->{channelBusType}, \%conn_bustype);
fcbd60e6 1959 $nexus = convert_nexus(($out->{channelNexusID} || 9999));
669797e1 1960 $ctrl = $nexus;
1961 $ctrl =~ s{(\d+):\d+}{$1}xms;
1962 }
1963 else {
fcbd60e6 1964 $name = get_nonempty_string('Name', $out, 'Unknown channel');
1965 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 1966 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 1967 $type = get_nonempty_string('Connector Type', $out, 'Unknown type');
669797e1 1968 $ctrl = $out->{ctrl};
7b81efb0 1969 $nexus = join q{:}, $out->{ctrl}, $out->{'ID'};
669797e1 1970 }
1971
1972 next CHANNEL if blacklisted('conn', $nexus);
1973
98b224a3 1974 my $msg = sprintf '%s [%s] on controller %d is %s',
669797e1 1975 $name, $type, $ctrl, $state;
1976 report('storage', $msg, $status2nagios{$status}, $nexus);
1977 }
1978 return;
1979}
1980
1981
1982#-----------------------------------------
1983# STORAGE: Check enclosures
1984#-----------------------------------------
1985sub check_enclosures {
5ecf578c 1986 return if blacklisted('encl', 'all');
1987
669797e1 1988 my $id = undef;
1989 my $nexus = undef;
1990 my $name = undef;
1991 my $state = undef;
1992 my $status = undef;
1993 my $firmware = undef;
25d04c34 1994 my $ctrl = undef;
3fc06a4b 1995 my $occupied_slots = undef; # number of occupied slots
1996 my $total_slots = undef; # number of total slots
669797e1 1997 my @output = ();
1998
1999 if ($snmp) {
2000 my %encl_oid
2001 = (
2002 '1.3.6.1.4.1.674.10893.1.20.130.3.1.1' => 'enclosureNumber',
2003 '1.3.6.1.4.1.674.10893.1.20.130.3.1.2' => 'enclosureName',
2004 '1.3.6.1.4.1.674.10893.1.20.130.3.1.4' => 'enclosureState',
2005 '1.3.6.1.4.1.674.10893.1.20.130.3.1.19' => 'enclosureChannelNumber',
2006 '1.3.6.1.4.1.674.10893.1.20.130.3.1.24' => 'enclosureComponentStatus',
2007 '1.3.6.1.4.1.674.10893.1.20.130.3.1.25' => 'enclosureNexusID',
2008 '1.3.6.1.4.1.674.10893.1.20.130.3.1.26' => 'enclosureFirmwareVersion',
3fc06a4b 2009 '1.3.6.1.4.1.674.10893.1.20.130.3.1.31' => 'enclosureOccupiedSlotCount', # new in OMSA 6.3.0
2010 '1.3.6.1.4.1.674.10893.1.20.130.3.1.32' => 'enclosureTotalSlots', # new in OMSA 6.3.0
669797e1 2011 );
4cabd748 2012 my $result = undef;
2013 if ($opt{use_get_table}) {
2014 my $enclosureTable = '1.3.6.1.4.1.674.10893.1.20.130.3';
2015 $result = $snmp_session->get_table(-baseoid => $enclosureTable);
2016 }
2017 else {
2018 $result = $snmp_session->get_entries(-columns => [keys %encl_oid]);
2019 }
669797e1 2020
2021 # No enclosures is OK
2022 return if !defined $result;
2023
2024 @output = @{ get_snmp_output($result, \%encl_oid) };
2025 }
2026 else {
2027 foreach my $c (@controllers) {
2028 push @output, @{ run_omreport("storage enclosure controller=$c") };
2029 map_item('ctrl', $c, \@output);
2030 }
2031 }
2032
2033 my %encl_state
2034 = (
2035 0 => 'Unknown',
2036 1 => 'Ready',
2037 2 => 'Failed',
2038 3 => 'Online',
2039 4 => 'Offline',
2040 6 => 'Degraded',
2041 );
2042
2043 ENCLOSURE:
2044 foreach my $out (@output) {
2045 if ($snmp) {
fcbd60e6 2046 $id = ($out->{enclosureNumber} || 10000) - 1;
2047 $name = $out->{enclosureName} || 'Unknown enclosure';
912d8679 2048 $state = get_hashval($out->{enclosureState}, \%encl_state);
b460a3d6 2049 $status = get_snmp_status($out->{enclosureComponentStatus});
fcbd60e6 2050 $firmware = $out->{enclosureFirmwareVersion} || 'N/A';
2051 $nexus = convert_nexus(($out->{enclosureNexusID} || 9999));
25d04c34 2052 $ctrl = $nexus;
2053 $ctrl =~ s{\A (\d+):.* \z}{$1}xms;
3fc06a4b 2054 # for the next two, a value of 9999 means feature not available
fcbd60e6 2055 $occupied_slots = defined $out->{enclosureOccupiedSlotCount}
3fc06a4b 2056 && $out->{enclosureOccupiedSlotCount} != 9999
2057 ? $out->{enclosureOccupiedSlotCount} : undef;
fcbd60e6 2058 $total_slots = defined $out->{enclosureTotalSlots}
3fc06a4b 2059 && $out->{enclosureTotalSlots} != 9999
2060 ? $out->{enclosureTotalSlots} : undef;
669797e1 2061 }
2062 else {
fcbd60e6 2063 $id = get_nonempty_string('ID', $out, 9999);
2064 $name = get_nonempty_string('Name', $out, 'Unknown enclosure');
2065 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 2066 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 2067 $firmware = get_nonempty_string('Firmware Version', $out, 'N/A');
2068 $firmware =~ s{Not\sApplicable}{N/A}xms;
669797e1 2069 $nexus = join q{:}, $out->{ctrl}, $id;
25d04c34 2070 $ctrl = $out->{ctrl};
669797e1 2071 }
2072
2073 $name =~ s{\s+\z}{}xms; # remove trailing whitespace
2074 $firmware =~ s{\s+\z}{}xms; # remove trailing whitespace
2075
2076 # store enclosure data for future use
b1f48712 2077 if ($snmp) {
2078 $snmp_enclosure{$out->{enclosureNumber}}{id} = $id;
2079 $snmp_enclosure{$out->{enclosureNumber}}{name} = $name;
2080 $snmp_enclosure{$out->{enclosureNumber}}{nexus} = $nexus;
2081 }
661c2c5e 2082 else {
2083 push @enclosures, { 'id' => $id,
2084 'ctrl' => $out->{ctrl},
2085 'name' => $name };
2086 }
669797e1 2087
2088 # Collecting some storage info
2089 $sysinfo{'enclosure'}{$nexus}{'id'} = $nexus;
2090 $sysinfo{'enclosure'}{$nexus}{'name'} = $name;
2091 $sysinfo{'enclosure'}{$nexus}{'firmware'} = $firmware;
2092
2093 next ENCLOSURE if blacklisted('encl', $nexus);
2094
3fc06a4b 2095 my $msg = q{};
2096 if (defined $occupied_slots && defined $total_slots) {
cad6434b 2097 $msg = sprintf 'Enclosure %s [%s, %d/%d slots occupied] on ctrl %d is %s',
3fc06a4b 2098 $nexus, $name, $occupied_slots, $total_slots, $ctrl, $state;
2099 }
2100 else {
2101 $msg = sprintf 'Enclosure %s [%s] on controller %d is %s',
2102 $nexus, $name, $ctrl, $state;
2103 }
669797e1 2104 report('storage', $msg, $status2nagios{$status}, $nexus);
2105 }
2106 return;
2107}
2108
2109
2110#-----------------------------------------
2111# STORAGE: Check enclosure fans
2112#-----------------------------------------
2113sub check_enclosure_fans {
2114 return if $#controllers == -1;
5ecf578c 2115 return if blacklisted('encl_fan', 'all');
669797e1 2116
669797e1 2117 my $nexus = undef;
2118 my $name = undef;
2119 my $state = undef;
2120 my $status = undef;
2121 my $speed = undef;
2122 my $encl_id = undef;
2123 my $encl_name = undef;
2124 my @output = ();
2125
2126 if ($snmp) {
2127 my %fan_oid
2128 = (
669797e1 2129 '1.3.6.1.4.1.674.10893.1.20.130.7.1.2' => 'fanName',
2130 '1.3.6.1.4.1.674.10893.1.20.130.7.1.4' => 'fanState',
2131 '1.3.6.1.4.1.674.10893.1.20.130.7.1.11' => 'fanProbeCurrValue',
2132 '1.3.6.1.4.1.674.10893.1.20.130.7.1.15' => 'fanComponentStatus',
2133 '1.3.6.1.4.1.674.10893.1.20.130.7.1.16' => 'fanNexusID',
2134 '1.3.6.1.4.1.674.10893.1.20.130.8.1.4' => 'fanConnectionEnclosureName',
2135 '1.3.6.1.4.1.674.10893.1.20.130.8.1.5' => 'fanConnectionEnclosureNumber',
2136 );
4cabd748 2137 my $result = undef;
2138 if ($opt{use_get_table}) {
2139 my $fanTable = '1.3.6.1.4.1.674.10893.1.20.130.7';
c849fd4c 2140 my $fanConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.8';
2141
4cabd748 2142 $result = $snmp_session->get_table(-baseoid => $fanTable);
c849fd4c 2143 my $ext = $snmp_session->get_table(-baseoid => $fanConnectionTable);
2144
2145 if (defined $result) {
2146 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2147 }
4cabd748 2148 }
2149 else {
2150 $result = $snmp_session->get_entries(-columns => [keys %fan_oid]);
2151 }
669797e1 2152
2153 # No enclosure fans is OK
2154 return if !defined $result;
2155
2156 @output = @{ get_snmp_output($result, \%fan_oid) };
2157 }
2158 else {
2159 foreach my $enc (@enclosures) {
2160 push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=fans") };
2161 map_item('ctrl', $enc->{ctrl}, \@output);
2162 map_item('encl_id', $enc->{id}, \@output);
2163 map_item('encl_name', $enc->{name}, \@output);
2164 }
2165 }
2166
2167 my %fan_state
2168 = (
2169 0 => 'Unknown',
2170 1 => 'Ready',
2171 2 => 'Failed',
2172 3 => 'Online',
2173 4 => 'Offline',
2174 6 => 'Degraded',
2175 21 => 'Missing',
2176 );
2177
2178 # Check fans on each of the enclosures
2179 FAN:
2180 foreach my $out (@output) {
2181 if ($snmp) {
fcbd60e6 2182 $name = $out->{fanName} || 'Unknown fan';
912d8679 2183 $state = get_hashval($out->{fanState}, \%fan_state);
b460a3d6 2184 $status = get_snmp_status($out->{fanComponentStatus});
fcbd60e6 2185 $speed = $out->{fanProbeCurrValue} || 'N/A';
2186 $encl_name = $out->{fanConnectionEnclosureName} || 'Unknown enclosure';
b1f48712 2187 $encl_id = $snmp_enclosure{$out->{fanConnectionEnclosureNumber}}{nexus};
fcbd60e6 2188 $nexus = convert_nexus(($out->{fanNexusID} || 9999));
669797e1 2189 }
2190 else {
fcbd60e6 2191 $name = get_nonempty_string('Name', $out, 'Unknown fan');
2192 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 2193 $status = get_nonempty_string('Status', $out, 'Unknown');
fcbd60e6 2194 $speed = get_nonempty_string('Speed', $out, 'N/A');
669797e1 2195 $encl_id = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2196 $encl_name = $out->{encl_name};
fcbd60e6 2197 $nexus = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
669797e1 2198 }
2199
2200 next FAN if blacklisted('encl_fan', $nexus);
2201
2202 # Default
2203 if ($status ne 'Ok') {
98b224a3 2204 my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
669797e1 2205 $name, $encl_id, $encl_name, $state;
2206 report('storage', $msg, $status2nagios{$status}, $nexus);
2207 }
2208 # Ok
2209 else {
98b224a3 2210 my $msg = sprintf '%s in enclosure %s [%s] is %s (speed=%s)',
669797e1 2211 $name, $encl_id, $encl_name, $state, $speed;
2212 report('storage', $msg, $E_OK, $nexus);
2213 }
2214 }
2215 return;
2216}
2217
2218
2219#-----------------------------------------
2220# STORAGE: Check enclosure power supplies
2221#-----------------------------------------
2222sub check_enclosure_pwr {
2223 return if $#controllers == -1;
5ecf578c 2224 return if blacklisted('encl_ps', 'all');
669797e1 2225
669797e1 2226 my $nexus = undef;
2227 my $name = undef;
2228 my $state = undef;
2229 my $status = undef;
2230 my $encl_id = undef;
2231 my $encl_name = undef;
2232 my @output = ();
2233
2234 if ($snmp) {
2235 my %ps_oid
2236 = (
669797e1 2237 '1.3.6.1.4.1.674.10893.1.20.130.9.1.2' => 'powerSupplyName',
2238 '1.3.6.1.4.1.674.10893.1.20.130.9.1.4' => 'powerSupplyState',
2239 '1.3.6.1.4.1.674.10893.1.20.130.9.1.9' => 'powerSupplyComponentStatus',
2240 '1.3.6.1.4.1.674.10893.1.20.130.9.1.10' => 'powerSupplyNexusID',
2241 '1.3.6.1.4.1.674.10893.1.20.130.10.1.4' => 'powerSupplyConnectionEnclosureName',
2242 '1.3.6.1.4.1.674.10893.1.20.130.10.1.5' => 'powerSupplyConnectionEnclosureNumber',
2243 );
4cabd748 2244 my $result = undef;
2245 if ($opt{use_get_table}) {
2246 my $powerSupplyTable = '1.3.6.1.4.1.674.10893.1.20.130.9';
c849fd4c 2247 my $powerSupplyConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.10';
2248
4cabd748 2249 $result = $snmp_session->get_table(-baseoid => $powerSupplyTable);
c849fd4c 2250 my $ext = $snmp_session->get_table(-baseoid => $powerSupplyConnectionTable);
2251
2252 if (defined $result) {
2253 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2254 }
4cabd748 2255 }
2256 else {
2257 $result = $snmp_session->get_entries(-columns => [keys %ps_oid]);
2258 }
669797e1 2259
2260 # No enclosure power supplies is OK
2261 return if !defined $result;
2262
2263 @output = @{ get_snmp_output($result, \%ps_oid) };
2264 }
2265 else {
2266 foreach my $enc (@enclosures) {
2267 push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=pwrsupplies") };
2268 map_item('ctrl', $enc->{ctrl}, \@output);
2269 map_item('encl_id', $enc->{id}, \@output);
2270 map_item('encl_name', $enc->{name}, \@output);
2271 }
2272 }
2273
2274 my %ps_state
2275 = (
2276 0 => 'Unknown',
2277 1 => 'Ready',
2278 2 => 'Failed',
2279 5 => 'Not Installed',
2280 6 => 'Degraded',
2281 11 => 'Removed',
2282 21 => 'Missing',
2283 );
2284
2285 # Check power supplies on each of the enclosures
2286 PS:
2287 foreach my $out (@output) {
2288 if ($snmp) {
fcbd60e6 2289 $name = $out->{powerSupplyName} || 'Unknown PSU';
912d8679 2290 $state = get_hashval($out->{powerSupplyState}, \%ps_state);
b460a3d6 2291 $status = get_snmp_status($out->{powerSupplyComponentStatus});
b1f48712 2292 $encl_id = $snmp_enclosure{$out->{powerSupplyConnectionEnclosureNumber}}{nexus};
fcbd60e6 2293 $encl_name = $out->{powerSupplyConnectionEnclosureName} || 'Unknown enclosure';
2294 $nexus = convert_nexus(($out->{powerSupplyNexusID} || 9999));
669797e1 2295 }
2296 else {
fcbd60e6 2297 $name = get_nonempty_string('Name', $out, 'Unknown PSU');
2298 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 2299 $status = get_nonempty_string('Status', $out, 'Unknown');
669797e1 2300 $encl_id = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2301 $encl_name = $out->{encl_name};
fcbd60e6 2302 $nexus = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
669797e1 2303 }
2304
2305 next PS if blacklisted('encl_ps', $nexus);
2306
2307 # Default
2308 if ($status ne 'Ok') {
98b224a3 2309 my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
669797e1 2310 $name, $encl_id, $encl_name, $state;
2311 report('storage', $msg, $status2nagios{$status}, $nexus);
2312 }
2313 # Ok
2314 else {
98b224a3 2315 my $msg = sprintf '%s in enclosure %s [%s] is %s',
669797e1 2316 $name, $encl_id, $encl_name, $state;
2317 report('storage', $msg, $E_OK, $nexus);
2318 }
2319 }
2320 return;
2321}
2322
2323
2324#-----------------------------------------
2325# STORAGE: Check enclosure temperatures
2326#-----------------------------------------
2327sub check_enclosure_temp {
2328 return if $#controllers == -1;
5ecf578c 2329 return if blacklisted('encl_temp', 'all');
669797e1 2330
669797e1 2331 my $nexus = undef;
2332 my $name = undef;
2333 my $state = undef;
2334 my $status = undef;
2335 my $reading = undef;
2336 my $unit = undef;
2337 my $max_warn = undef;
2338 my $max_crit = undef;
a0c9fa40 2339 my $min_warn = undef;
2340 my $min_crit = undef;
669797e1 2341 my $encl_id = undef;
2342 my $encl_name = undef;
2343 my @output = ();
2344
2345 if ($snmp) {
2346 my %temp_oid
2347 = (
669797e1 2348 '1.3.6.1.4.1.674.10893.1.20.130.11.1.2' => 'temperatureProbeName',
2349 '1.3.6.1.4.1.674.10893.1.20.130.11.1.4' => 'temperatureProbeState',
2350 '1.3.6.1.4.1.674.10893.1.20.130.11.1.6' => 'temperatureProbeUnit',
a0c9fa40 2351 '1.3.6.1.4.1.674.10893.1.20.130.11.1.7' => 'temperatureProbeMinWarning',
2352 '1.3.6.1.4.1.674.10893.1.20.130.11.1.8' => 'temperatureProbeMinCritical',
669797e1 2353 '1.3.6.1.4.1.674.10893.1.20.130.11.1.9' => 'temperatureProbeMaxWarning',
2354 '1.3.6.1.4.1.674.10893.1.20.130.11.1.10' => 'temperatureProbeMaxCritical',
2355 '1.3.6.1.4.1.674.10893.1.20.130.11.1.11' => 'temperatureProbeCurValue',
2356 '1.3.6.1.4.1.674.10893.1.20.130.11.1.13' => 'temperatureProbeComponentStatus',
2357 '1.3.6.1.4.1.674.10893.1.20.130.11.1.14' => 'temperatureProbeNexusID',
2358 '1.3.6.1.4.1.674.10893.1.20.130.12.1.4' => 'temperatureConnectionEnclosureName',
2359 '1.3.6.1.4.1.674.10893.1.20.130.12.1.5' => 'temperatureConnectionEnclosureNumber',
2360 );
4cabd748 2361 my $result = undef;
2362 if ($opt{use_get_table}) {
2363 my $temperatureProbeTable = '1.3.6.1.4.1.674.10893.1.20.130.11';
c849fd4c 2364 my $temperatureConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.12';
2365
4cabd748 2366 $result = $snmp_session->get_table(-baseoid => $temperatureProbeTable);
c849fd4c 2367 my $ext = $snmp_session->get_table(-baseoid => $temperatureConnectionTable);
2368
2369 if (defined $result) {
2370 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2371 }
4cabd748 2372 }
2373 else {
2374 $result = $snmp_session->get_entries(-columns => [keys %temp_oid]);
2375 }
669797e1 2376
2377 # No enclosure temperature probes is OK
2378 return if !defined $result;
2379
2380 @output = @{ get_snmp_output($result, \%temp_oid) };
2381 }
2382 else {
2383 foreach my $enc (@enclosures) {
2384 push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=temps") };
2385 map_item('ctrl', $enc->{ctrl}, \@output);
2386 map_item('encl_id', $enc->{id}, \@output);
2387 map_item('encl_name', $enc->{name}, \@output);
2388 }
2389 }
2390
2391 my %temp_state
2392 = (
2393 0 => 'Unknown',
2394 1 => 'Ready',
2395 2 => 'Failed',
2396 4 => 'Offline',
2397 6 => 'Degraded',
2398 9 => 'Inactive',
2399 21 => 'Missing',
2400 );
2401
2402 # Check temperature probes on each of the enclosures
2403 TEMP:
2404 foreach my $out (@output) {
2405 if ($snmp) {
fcbd60e6 2406 $name = $out->{temperatureProbeName} || 'Unknown temp probe';
912d8679 2407 $state = get_hashval($out->{temperatureProbeState}, \%temp_state);
e7fd8bc9 2408 $status = get_snmp_probestatus($out->{temperatureProbeComponentStatus});
fcbd60e6 2409 $unit = $out->{temperatureProbeUnit} || 'Unknown unit';
2410 $reading = $out->{temperatureProbeCurValue} || '[N/A]';
2411 $max_warn = $out->{temperatureProbeMaxWarning} || '[N/A]';
2412 $max_crit = $out->{temperatureProbeMaxCritical} || '[N/A]';
2413 $min_warn = $out->{temperatureProbeMinWarning} || '[N/A]';
2414 $min_crit = $out->{temperatureProbeMinCritical} || '[N/A]';
b1f48712 2415 $encl_id = $snmp_enclosure{$out->{temperatureConnectionEnclosureNumber}}{nexus};
fcbd60e6 2416 $encl_name = $out->{temperatureConnectionEnclosureName} || 'Unknown enclosure';
2417 $nexus = convert_nexus(($out->{temperatureProbeNexusID} || 9999));
669797e1 2418 }
2419 else {
fcbd60e6 2420 $name = get_nonempty_string('Name', $out, 'Unknown temp probe');
2421 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 2422 $status = get_nonempty_string('Status', $out, 'Unknown');
669797e1 2423 $unit = 'FIXME';
fcbd60e6 2424 $reading = get_nonempty_string('Reading', $out, '[N/A]');
2425 $max_warn = get_nonempty_string('Maximum Warning Threshold', $out, '[N/A]');
2426 $max_crit = get_nonempty_string('Maximum Failure Threshold', $out, '[N/A]');
2427 $min_warn = get_nonempty_string('Minimum Warning Threshold', $out, '[N/A]');
2428 $min_crit = get_nonempty_string('Minimum Failure Threshold', $out, '[N/A]');
669797e1 2429 $encl_id = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2430 $encl_name = $out->{encl_name};
fcbd60e6 2431 $nexus = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
669797e1 2432 }
2433
2434 next TEMP if blacklisted('encl_temp', $nexus);
2435
a0c9fa40 2436 # Make sure these values are integers
2437 $reading =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $reading = '[N/A]';
2438 $max_warn =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $max_warn = '[N/A]';
2439 $max_crit =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $max_crit = '[N/A]';
2440 $min_warn =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $min_warn = '[N/A]';
2441 $min_crit =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $min_crit = '[N/A]';
2442
2c1daec8 2443 # Inactive temp probes
2444 if ($status eq 'Unknown' and $state eq 'Inactive') {
2445 my $msg = sprintf '%s in enclosure %s [%s] is %s',
2446 $name, $encl_id, $encl_name, $state;
2447 report('storage', $msg, $E_OK, $nexus);
2448 }
a0c9fa40 2449 elsif ($status ne 'Ok' and $max_crit ne '[N/A]' and $reading > $max_crit) {
2450 my $msg = sprintf '%s in enclosure %s [%s] is critically high at %d C',
2451 $name, $encl_id, $encl_name, $reading;
2452 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2453 report('chassis', $msg, $err, $nexus);
2454 }
2455 elsif ($status ne 'Ok' and $max_warn ne '[N/A]' and $reading > $max_warn) {
2456 my $msg = sprintf '%s in enclosure %s [%s] is too high at %d C',
2457 $name, $encl_id, $encl_name, $reading;
2458 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2459 report('chassis', $msg, $err, $nexus);
2460 }
2461 elsif ($status ne 'Ok' and $min_crit ne '[N/A]' and $reading < $min_crit) {
2462 my $msg = sprintf '%s in enclosure %s [%s] is critically low at %d C',
2463 $name, $encl_id, $encl_name, $reading;
2464 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2465 report('chassis', $msg, $err, $nexus);
2466 }
2467 elsif ($status ne 'Ok' and $min_warn ne '[N/A]' and $reading < $min_warn) {
2468 my $msg = sprintf '%s in enclosure %s [%s] is too low at %d C',
2469 $name, $encl_id, $encl_name, $reading;
2470 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2471 report('chassis', $msg, $err, $nexus);
2472 }
669797e1 2473 # Default
2c1daec8 2474 elsif ($status ne 'Ok') {
2475 my $msg = sprintf '%s in enclosure %s [%s] is %s',
2476 $name, $encl_id, $encl_name, $state;
a38cf844 2477 if (defined $reading && $reading =~ m{\A -?\d+ \z}xms) {
2c1daec8 2478 # take into account that with certain states the
2479 # reading doesn't exist or is not an integer
a0c9fa40 2480 $msg .= sprintf ' at %s C', $reading;
2481 if ($min_warn eq '[N/A]' or $min_crit eq '[N/A]') {
2482 $msg .= sprintf ' (max=%s/%s)', $max_warn, $max_crit;
2483 }
2484 else {
2485 $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
2486 $min_warn, $min_crit, $max_warn, $max_crit;
2487 }
2c1daec8 2488 }
a0c9fa40 2489 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2490 report('storage', $msg, $err, $nexus);
669797e1 2491 }
2492 # Ok
2493 else {
a0c9fa40 2494 my $msg = sprintf '%s in enclosure %s [%s]',
2495 $name, $encl_id, $encl_name;
2496 if (defined $reading && $reading ne '[N/A]') {
2497 # take into account that with certain states the
2498 # reading doesn't exist or is not an integer
2499 $msg .= sprintf ' reads %d C', $reading;
2500 if ($min_warn eq '[N/A]' or $min_crit eq '[N/A]') {
2501 $msg .= sprintf ' (max=%s/%s)', $max_warn, $max_crit;
2502 }
2503 else {
2504 $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
2505 $min_warn, $min_crit, $max_warn, $max_crit;
2506 }
2507 }
2508 else {
2509 $msg .= sprintf ' is %s', $state;
2510 }
669797e1 2511 report('storage', $msg, $E_OK, $nexus);
2512 }
2513
2514 # Collect performance data
a0c9fa40 2515 if (defined $opt{perfdata} && $reading ne '[N/A]') {
669797e1 2516 $name =~ s{\A Temperature\sProbe\s(\d+) \z}{temp_$1}gxms;
48aeec0b 2517 my $label = "enclosure_${encl_id}_${name}";
2518 my $mini = $label;
2519 $mini =~ s{enclosure_(.+?)_temp_(.+?)}{e$1t$2}xms;
2520 push @perfdata, {
2521 label => $label,
2522 mini => $mini,
2523 value => $reading,
48aeec0b 2524 warn => $max_warn,
2525 crit => $max_crit,
2526 };
669797e1 2527 }
2528 }
2529 return;
2530}
2531
2532
2533#-----------------------------------------
2534# STORAGE: Check enclosure management modules (EMM)
2535#-----------------------------------------
2536sub check_enclosure_emms {
2537 return if $#controllers == -1;
5ecf578c 2538 return if blacklisted('encl_emm', 'all');
669797e1 2539
669797e1 2540 my $nexus = undef;
2541 my $name = undef;
2542 my $state = undef;
2543 my $status = undef;
2544 my $encl_id = undef;
2545 my $encl_name = undef;
2546 my @output = ();
2547
2548 if ($snmp) {
2549 my %emms_oid
2550 = (
669797e1 2551 '1.3.6.1.4.1.674.10893.1.20.130.13.1.2' => 'enclosureManagementModuleName',
2552 '1.3.6.1.4.1.674.10893.1.20.130.13.1.4' => 'enclosureManagementModuleState',
2553 '1.3.6.1.4.1.674.10893.1.20.130.13.1.11' => 'enclosureManagementModuleComponentStatus',
2554 '1.3.6.1.4.1.674.10893.1.20.130.13.1.12' => 'enclosureManagementModuleNexusID',
2555 '1.3.6.1.4.1.674.10893.1.20.130.14.1.4' => 'enclosureManagementModuleConnectionEnclosureName',
2556 '1.3.6.1.4.1.674.10893.1.20.130.14.1.5' => 'enclosureManagementModuleConnectionEnclosureNumber',
2557 );
4cabd748 2558 my $result = undef;
2559 if ($opt{use_get_table}) {
2560 my $enclosureManagementModuleTable = '1.3.6.1.4.1.674.10893.1.20.130.13';
c849fd4c 2561 my $enclosureManagementModuleConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.14';
2562
4cabd748 2563 $result = $snmp_session->get_table(-baseoid => $enclosureManagementModuleTable);
c849fd4c 2564 my $ext = $snmp_session->get_table(-baseoid => $enclosureManagementModuleConnectionTable);
2565
2566 if (defined $result) {
2567 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2568 }
4cabd748 2569 }
2570 else {
2571 $result = $snmp_session->get_entries(-columns => [keys %emms_oid]);
2572 }
669797e1 2573
2574 # No enclosure EMMs is OK
2575 return if !defined $result;
2576
2577 @output = @{ get_snmp_output($result, \%emms_oid) };
2578 }
2579 else {
2580 foreach my $enc (@enclosures) {
2581 push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=emms") };
2582 map_item('ctrl', $enc->{ctrl}, \@output);
2583 map_item('encl_id', $enc->{id}, \@output);
2584 map_item('encl_name', $enc->{name}, \@output);
2585 }
2586 }
2587
2588 my %emms_state
2589 = (
2590 0 => 'Unknown',
2591 1 => 'Ready',
2592 2 => 'Failed',
2593 3 => 'Online',
2594 4 => 'Offline',
2595 5 => 'Not Installed',
2596 6 => 'Degraded',
2597 21 => 'Missing',
2598 );
2599
a0c9fa40 2600 # Check EMMs on each of the enclosures
669797e1 2601 EMM:
2602 foreach my $out (@output) {
2603 if ($snmp) {
fcbd60e6 2604 $name = $out->{enclosureManagementModuleName} || 'Unknown EMM';
912d8679 2605 $state = get_hashval($out->{enclosureManagementModuleState}, \%emms_state);
b460a3d6 2606 $status = get_snmp_status($out->{enclosureManagementModuleComponentStatus});
b1f48712 2607 $encl_id = $snmp_enclosure{$out->{enclosureManagementModuleConnectionEnclosureNumber}}{nexus};
fcbd60e6 2608 $encl_name = $out->{enclosureManagementModuleConnectionEnclosureName} || 'Unknown enclosure';
2609 $nexus = convert_nexus(($out->{enclosureManagementModuleNexusID} || 9999));
669797e1 2610 }
2611 else {
fcbd60e6 2612 $name = get_nonempty_string('Name', $out, 'Unknown EMM');
2613 $state = get_nonempty_string('State', $out, 'Unknown state');
0eed03e9 2614 $status = get_nonempty_string('Status', $out, 'Unknown');
669797e1 2615 $encl_id = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2616 $encl_name = $out->{encl_name};
fcbd60e6 2617 $nexus = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
669797e1 2618 }
2619
2620 next EMM if blacklisted('encl_emm', $nexus);
2621
2c1daec8 2622 # Not installed
a0c9fa40 2623 if ($status =~ m{\A Other|Unknown \z}xms and $state eq 'Not Installed') {
2c1daec8 2624 my $msg = sprintf '%s in enclosure %s [%s] is %s',
2625 $name, $encl_id, $encl_name, $state;
2626 report('storage', $msg, $E_OK, $nexus);
2627 }
669797e1 2628 # Default
2c1daec8 2629 elsif ($status ne 'Ok') {
98b224a3 2630 my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
669797e1 2631 $name, $encl_id, $encl_name, $state;
2632 report('storage', $msg, $status2nagios{$status}, $nexus);
2633 }
2634 # Ok
2635 else {
98b224a3 2636 my $msg = sprintf '%s in enclosure %s [%s] is %s',
669797e1 2637 $name, $encl_id, $encl_name, $state;
2638 report('storage', $msg, $E_OK, $nexus);
2639 }
2640 }
2641 return;
2642}
2643
2644
2645#-----------------------------------------
2646# CHASSIS: Check memory modules
2647#-----------------------------------------
2648sub check_memory {
5ecf578c 2649 return if blacklisted('dimm', 'all');
2650
669797e1 2651 my $index = undef;
2652 my $status = undef;
2653 my $location = undef;
2654 my $size = undef;
2655 my $modes = undef;
2656 my @failures = ();
2657 my @output = ();
2658
2659 if ($snmp) {
2660 my %dimm_oid
2661 = (
2662 '1.3.6.1.4.1.674.10892.1.1100.50.1.2.1' => 'memoryDeviceIndex',
2663 '1.3.6.1.4.1.674.10892.1.1100.50.1.5.1' => 'memoryDeviceStatus',
2664 '1.3.6.1.4.1.674.10892.1.1100.50.1.8.1' => 'memoryDeviceLocationName',
2665 '1.3.6.1.4.1.674.10892.1.1100.50.1.14.1' => 'memoryDeviceSize',
2666 '1.3.6.1.4.1.674.10892.1.1100.50.1.20.1' => 'memoryDeviceFailureModes',
2667 );
4cabd748 2668 my $result = undef;
2669 if ($opt{use_get_table}) {
2670 my $memoryDeviceTable = '1.3.6.1.4.1.674.10892.1.1100.50.1';
2671 $result = $snmp_session->get_table(-baseoid => $memoryDeviceTable);
2672 }
2673 else {
2674 $result = $snmp_session->get_entries(-columns => [keys %dimm_oid]);
2675 }
669797e1 2676
2677 if (!defined $result) {
98b224a3 2678 printf "SNMP ERROR [memory]: %s.\n", $snmp_session->error;
669797e1 2679 $snmp_session->close;
2680 exit $E_UNKNOWN;
2681 }
2682
2683 @output = @{ get_snmp_output($result, \%dimm_oid) };
2684 }
2685 else {
2686 @output = @{ run_omreport("$omopt_chassis memory") };
2687 }
2688
2689 # Note: These values are bit masks, so combination values are
2690 # possible. If value is 0 (zero), memory device has no faults.
2691 my %failure_mode
2692 = (
2693 1 => 'ECC single bit correction warning rate exceeded',
2694 2 => 'ECC single bit correction failure rate exceeded',
2695 4 => 'ECC multibit fault encountered',
2696 8 => 'ECC single bit correction logging disabled',
2697 16 => 'device disabled because of spare activation',
2698 );
2699
2700 DIMM:
2701 foreach my $out (@output) {
2702 @failures = (); # Initialize
2703 if ($snmp) {
205488c0 2704 $index = ($out->{memoryDeviceIndex} || 10000) - 1;
b460a3d6 2705 $status = get_snmp_status($out->{memoryDeviceStatus});
205488c0 2706 $location = $out->{memoryDeviceLocationName} || 'Unknown location';
2707 $size = sprintf '%d MB', ($out->{memoryDeviceSize} || 0)/1024;
2708 $modes = $out->{memoryDeviceFailureModes} || -9999;
669797e1 2709 if ($modes > 0) {
2710 foreach my $mask (sort keys %failure_mode) {
2711 if (($modes & $mask) != 0) { push @failures, $failure_mode{$mask}; }
2712 }
2713 }
205488c0 2714 elsif ($modes == -9999) {
2715 push @failures, q{ERROR: Failure modes not available via SNMP};
2716 }
669797e1 2717 }
2718 else {
205488c0 2719 my $type = get_nonempty_string('Type', $out, q{});
2720 $index = $type eq '[Not Occupied]' ? undef : get_nonempty_string('Index', $out, 9999);
0eed03e9 2721 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 2722 $location = get_nonempty_string('Connector Name', $out, 'Unknown location');
2723 $size = get_nonempty_string('Size', $out, 0);
669797e1 2724 if (defined $size) {
2725 $size =~ s{\s\s}{ }gxms;
2726 }
2727 # Run 'omreport chassis memory index=X' to get the failures
2728 if ($status ne 'Ok' && defined $index) {
2729 foreach (@{ run_command("$omreport $omopt_chassis memory index=$index -fmt ssv") }) {
2730 if (m/\A Failures; (.+?) \z/xms) {
2731 chop(my $fail = $1);
2732 push @failures, split m{\.}xms, $fail;
2733 }
2734 }
2735 }
2736 }
2737 $location =~ s{\A \s*(.*?)\s* \z}{$1}xms;
2738
14e95f92 2739 # calculate total memory
717be848 2740 my $msize = defined $size ? $size : 0;
14e95f92 2741 $msize =~ s{\A (\d+) \s MB}{$1}xms;
2742 $count{mem} += $msize;
2743
669797e1 2744 next DIMM if blacklisted('dimm', $index);
2745
2746 # Ignore empty memory slots
2747 next DIMM if !defined $index;
2748 $count{dimm}++;
2749
2750 if ($status ne 'Ok') {
2751 my $msg = undef;
2752 if (scalar @failures == 0) {
98b224a3 2753 $msg = sprintf 'Memory module %d [%s, %s] needs attention (%s)',
669797e1 2754 $index, $location, $size, $status;
2755 }
2756 else {
98b224a3 2757 $msg = sprintf 'Memory module %d [%s, %s] needs attention: %s',
669797e1 2758 $index, $location, $size, (join q{, }, @failures);
2759 }
2760
2761 report('chassis', $msg, $status2nagios{$status}, $index);
2762 }
2763 # Ok
2764 else {
98b224a3 2765 my $msg = sprintf 'Memory module %d [%s, %s] is %s',
669797e1 2766 $index, $location, $size, $status;
2767 report('chassis', $msg, $E_OK, $index);
2768 }
2769 }
7b5c99ff 2770 return;
669797e1 2771}
2772
2773
2774#-----------------------------------------
2775# CHASSIS: Check fans
2776#-----------------------------------------
2777sub check_fans {
5ecf578c 2778 return if blacklisted('fan', 'all');
2779
669797e1 2780 my $index = undef;
2781 my $status = undef;
2782 my $reading = undef;
2783 my $location = undef;
2784 my $max_crit = undef;
2785 my $max_warn = undef;
2786 my @output = ();
2787
2788 if ($snmp) {
2789 my %cool_oid
2790 = (
2791 '1.3.6.1.4.1.674.10892.1.700.12.1.2.1' => 'coolingDeviceIndex',
2792 '1.3.6.1.4.1.674.10892.1.700.12.1.5.1' => 'coolingDeviceStatus',
2793 '1.3.6.1.4.1.674.10892.1.700.12.1.6.1' => 'coolingDeviceReading',
2794 '1.3.6.1.4.1.674.10892.1.700.12.1.8.1' => 'coolingDeviceLocationName',
2795 '1.3.6.1.4.1.674.10892.1.700.12.1.10.1' => 'coolingDeviceUpperCriticalThreshold',
2796 '1.3.6.1.4.1.674.10892.1.700.12.1.11.1' => 'coolingDeviceUpperNonCriticalThreshold',
2797 );
4cabd748 2798 my $result = undef;
2799 if ($opt{use_get_table}) {
2800 my $coolingDeviceTable = '1.3.6.1.4.1.674.10892.1.700.12.1';
2801 $result = $snmp_session->get_table(-baseoid => $coolingDeviceTable);
2802 }
2803 else {
2804 $result = $snmp_session->get_entries(-columns => [keys %cool_oid]);
2805 }
669797e1 2806
2807 if ($blade && !defined $result) {
2808 return 0;
2809 }
2810 elsif (!$blade && !defined $result) {
98b224a3 2811 printf "SNMP ERROR [cooling]: %s.\n", $snmp_session->error;
669797e1 2812 $snmp_session->close;
2813 exit $E_UNKNOWN;
2814 }
2815
2816 @output = @{ get_snmp_output($result, \%cool_oid) };
2817 }
2818 else {
2819 @output = @{ run_omreport("$omopt_chassis fans") };
2820 }
2821
2822 FAN:
2823 foreach my $out (@output) {
2824 if ($snmp) {
205488c0 2825 $index = ($out->{coolingDeviceIndex} || 10000) - 1;
e7fd8bc9 2826 $status = get_snmp_probestatus($out->{coolingDeviceStatus});
205488c0 2827 $reading = $out->{coolingDeviceReading} || 0;
2828 $location = $out->{coolingDeviceLocationName} || 'Unknown location';
2829 $max_crit = $out->{coolingDeviceUpperCriticalThreshold} || 0;
2830 $max_warn = $out->{coolingDeviceUpperNonCriticalThreshold} || 0;
669797e1 2831 }
2832 else {
205488c0 2833 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 2834 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 2835 $reading = get_nonempty_string('Reading', $out, 0);
2836 $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
2837 $max_crit = get_nonempty_string('Maximum Failure Threshold', $out, 0);
2838 $max_warn = get_nonempty_string('Maximum Warning Threshold', $out, 0);
2839 if ($max_crit eq '[N/A]') { $max_crit = 0; }
2840 if ($max_warn eq '[N/A]') { $max_warn = 0; }
669797e1 2841 $reading =~ s{\A (\d+).* \z}{$1}xms;
2842 $max_warn =~ s{\A (\d+).* \z}{$1}xms;
2843 $max_crit =~ s{\A (\d+).* \z}{$1}xms;
2844 }
2845
2846 next FAN if blacklisted('fan', $index);
2847 $count{fan}++;
2848
2849 if ($status ne 'Ok') {
98b224a3 2850 my $msg = sprintf 'Chassis fan %d [%s] needs attention: %s',
669797e1 2851 $index, $location, $status;
2852 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2853 report('chassis', $msg, $err, $index);
2854 }
2855 else {
98b224a3 2856 my $msg = sprintf 'Chassis fan %d [%s]: %s',
669797e1 2857 $index, $location, $reading;
2858 report('chassis', $msg, $E_OK, $index);
2859 }
2860
2861 # Collect performance data
2862 if (defined $opt{perfdata}) {
2863 my $pname = lc $location;
2864 $pname =~ s{\s}{_}gxms;
2865 $pname =~ s{proc_}{cpu#}xms;
48aeec0b 2866 push @perfdata, {
60fd6896 2867 label => "fan_${index}_${pname}",
48aeec0b 2868 mini => "f$index",
2869 value => $reading,
48aeec0b 2870 warn => $max_warn,
2871 crit => $max_crit,
2872 };
669797e1 2873 }
2874 }
2875 return;
2876}
2877
2878
2879#-----------------------------------------
2880# CHASSIS: Check power supplies
2881#-----------------------------------------
2882sub check_powersupplies {
5ecf578c 2883 return if blacklisted('ps', 'all');
2884
669797e1 2885 my $index = undef;
2886 my $status = undef;
2887 my $type = undef;
2888 my $err_type = undef;
2889 my $state = undef;
2890 my @states = ();
2891 my @output = ();
2892
2893 if ($snmp) {
2894 my %ps_oid
2895 = (
2896 '1.3.6.1.4.1.674.10892.1.600.12.1.2.1' => 'powerSupplyIndex',
2897 '1.3.6.1.4.1.674.10892.1.600.12.1.5.1' => 'powerSupplyStatus',
2898 '1.3.6.1.4.1.674.10892.1.600.12.1.7.1' => 'powerSupplyType',
2899 '1.3.6.1.4.1.674.10892.1.600.12.1.11.1' => 'powerSupplySensorState',
2900 '1.3.6.1.4.1.674.10892.1.600.12.1.12.1' => 'powerSupplyConfigurationErrorType',
2901 );
4cabd748 2902 my $result = undef;
2903 if ($opt{use_get_table}) {
2904 my $powerDeviceTable = '1.3.6.1.4.1.674.10892.1.600.12.1';
2905 $result = $snmp_session->get_table(-baseoid => $powerDeviceTable);
2906 }
2907 else {
2908 $result = $snmp_session->get_entries(-columns => [keys %ps_oid]);
2909 }
669797e1 2910
2911 # No instrumented PSU is OK (blades, low-end servers)
2912 return 0 if !defined $result;
2913
2914 @output = @{ get_snmp_output($result, \%ps_oid) };
2915 }
2916 else {
2917 @output = @{ run_omreport("$omopt_chassis pwrsupplies") };
2918 }
2919
2920 my %ps_type
2921 = (
2922 1 => 'Other',
2923 2 => 'Unknown',
2924 3 => 'Linear',
2925 4 => 'Switching',
2926 5 => 'Battery',
2927 6 => 'Uninterruptible Power Supply',
2928 7 => 'Converter',
2929 8 => 'Regulator',
2930 9 => 'AC',
2931 10 => 'DC',
2932 11 => 'VRM',
2933 );
2934
2935 my %ps_state
2936 = (
2937 1 => 'Presence detected',
2938 2 => 'Failure detected',
2939 4 => 'Predictive Failure',
2940 8 => 'AC lost',
2941 16 => 'AC lost or out-of-range',
2942 32 => 'AC out-of-range but present',
2943 64 => 'Configuration error',
2944 );
2945
2946 my %ps_config_error_type
2947 = (
2948 1 => 'Vendor mismatch',
2949 2 => 'Revision mismatch',
2950 3 => 'Processor missing',
2951 );
2952
2953 PS:
2954 foreach my $out (@output) {
2955 if ($snmp) {
2956 @states = (); # contains states for the PS
2957
205488c0 2958 $index = ($out->{powerSupplyIndex} || 10000) - 1;
b460a3d6 2959 $status = get_snmp_status($out->{powerSupplyStatus});
912d8679 2960 $type = get_hashval($out->{powerSupplyType}, \%ps_type);
669797e1 2961 $err_type = defined $out->{powerSupplyConfigurationErrorType}
205488c0 2962 ? get_hashval($out->{powerSupplyConfigurationErrorType}, \%ps_config_error_type) : undef;
669797e1 2963
2964 # get the combined state from the StatusReading OID
205488c0 2965 my $raw_state = $out->{powerSupplySensorState} || 0;
669797e1 2966 foreach my $mask (sort keys %ps_state) {
205488c0 2967 if (($raw_state & $mask) != 0) {
669797e1 2968 push @states, $ps_state{$mask};
2969 }
2970 }
2971
2972 # If configuration error, also include the error type
2973 if (defined $err_type) {
2974 push @states, $err_type;
2975 }
2976
2977 # Finally, construct the state string
2978 $state = join q{, }, @states;
2979 }
2980 else {
205488c0 2981 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 2982 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 2983 $type = get_nonempty_string('Type', $out, 'Unknown type');
2984 $state = get_nonempty_string('Online Status', $out, 'Unknown state');
669797e1 2985 }
2986
2987 next PS if blacklisted('ps', $index);
2988 $count{power}++;
2989
2990 if ($status ne 'Ok') {
98b224a3 2991 my $msg = sprintf 'Power Supply %d [%s] needs attention: %s',
669797e1 2992 $index, $type, $state;
2993 report('chassis', $msg, $status2nagios{$status}, $index);
2994 }
2995 else {
98b224a3 2996 my $msg = sprintf 'Power Supply %d [%s]: %s',
669797e1 2997 $index, $type, $state;
2998 report('chassis', $msg, $E_OK, $index);
2999 }
3000 }
3001 return;
3002}
3003
3004
3005#-----------------------------------------
3006# CHASSIS: Check temperatures
3007#-----------------------------------------
3008sub check_temperatures {
5ecf578c 3009 return if blacklisted('temp', 'all');
3010
669797e1 3011 my $index = undef;
3012 my $status = undef;
3013 my $reading = undef;
3014 my $location = undef;
3015 my $max_crit = undef;
3016 my $max_warn = undef;
3017 my $min_warn = undef;
3018 my $min_crit = undef;
3019 my $type = undef;
3020 my $discrete = undef;
3021 my @output = ();
3022
3023 # Getting custom temperature thresholds (user option)
3024 my %warn_threshold = %{ custom_temperature_thresholds('w') };
3025 my %crit_threshold = %{ custom_temperature_thresholds('c') };
3026
3027 if ($snmp) {
3028 my %temp_oid
3029 = (
3030 '1.3.6.1.4.1.674.10892.1.700.20.1.2.1' => 'temperatureProbeIndex',
3031 '1.3.6.1.4.1.674.10892.1.700.20.1.5.1' => 'temperatureProbeStatus',
3032 '1.3.6.1.4.1.674.10892.1.700.20.1.6.1' => 'temperatureProbeReading',
3033 '1.3.6.1.4.1.674.10892.1.700.20.1.7.1' => 'temperatureProbeType',
3034 '1.3.6.1.4.1.674.10892.1.700.20.1.8.1' => 'temperatureProbeLocationName',
3035 '1.3.6.1.4.1.674.10892.1.700.20.1.10.1' => 'temperatureProbeUpperCriticalThreshold',
3036 '1.3.6.1.4.1.674.10892.1.700.20.1.11.1' => 'temperatureProbeUpperNonCriticalThreshold',
3037 '1.3.6.1.4.1.674.10892.1.700.20.1.12.1' => 'temperatureProbeLowerNonCriticalThreshold',
3038 '1.3.6.1.4.1.674.10892.1.700.20.1.13.1' => 'temperatureProbeLowerCriticalThreshold',
3039 '1.3.6.1.4.1.674.10892.1.700.20.1.16.1' => 'temperatureProbeDiscreteReading',
3040 );
ba199ee0 3041 # this didn't work well for some reason
3042 #my $result = $snmp_session->get_entries(-columns => [keys %temp_oid]);
3043
3044 # Getting values using the table
3045 my $temperatureProbeTable = '1.3.6.1.4.1.674.10892.1.700.20';
3046 my $result = $snmp_session->get_table(-baseoid => $temperatureProbeTable);
669797e1 3047
3048 if (!defined $result) {
98b224a3 3049 printf "SNMP ERROR [temperatures]: %s.\n", $snmp_session->error;
669797e1 3050 $snmp_session->close;
3051 exit $E_UNKNOWN;
3052 }
3053
3054 @output = @{ get_snmp_output($result, \%temp_oid) };
3055 }
3056 else {
3057 @output = @{ run_omreport("$omopt_chassis temps") };
3058 }
3059
3060 my %probe_type
3061 = (
3062 1 => 'Other', # type is other than following values
3063 2 => 'Unknown', # type is unknown
3064 3 => 'AmbientESM', # type is Ambient Embedded Systems Management temperature probe
3065 16 => 'Discrete', # type is temperature probe with discrete reading
3066 );
3067
3068 TEMP:
3069 foreach my $out (@output) {
3070 if ($snmp) {
205488c0 3071 $index = ($out->{temperatureProbeIndex} || 10000) - 1;
e7fd8bc9 3072 $status = get_snmp_probestatus($out->{temperatureProbeStatus});
205488c0 3073 $location = $out->{temperatureProbeLocationName} || 'Unknown location';
912d8679 3074 $type = get_hashval($out->{temperatureProbeType}, \%probe_type);
205488c0 3075 $reading = $out->{temperatureProbeReading} || '[N/A]';
3076 $max_crit = $out->{temperatureProbeUpperCriticalThreshold} || '[N/A]';
3077 $max_warn = $out->{temperatureProbeUpperNonCriticalThreshold} || '[N/A]';
3078 $min_crit = $out->{temperatureProbeLowerCriticalThreshold} || '[N/A]';
3079 $min_warn = $out->{temperatureProbeLowerNonCriticalThreshold} || '[N/A]';
3080 $discrete = $out->{temperatureProbeDiscreteReading} || '[N/A]';
3081
3082 # If numeric values, i.e. not discrete
3083 $reading /= 10 if $reading =~ m{\A \d+ \z}xms;
3084 $max_crit /= 10 if $max_crit =~ m{\A \d+ \z}xms;
3085 $max_warn /= 10 if $max_warn =~ m{\A \d+ \z}xms;
3086 $min_crit /= 10 if $min_crit =~ m{\A \d+ \z}xms;
3087 $min_warn /= 10 if $min_warn =~ m{\A \d+ \z}xms;
3088
7328e97b 3089 # workaround for bad temp probes
3090 if ($type eq 'AmbientESM' and $reading !~ m{\A \d+(\.\d+)? \z}xms) {
3091 $type = 'Discrete';
3092 }
669797e1 3093 }
3094 else {
205488c0 3095 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3096 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3097 $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
3098 $reading = get_nonempty_string('Reading', $out, '[N/A]');
3099 $max_crit = get_nonempty_string('Maximum Failure Threshold', $out, '[N/A]');
3100 $max_warn = get_nonempty_string('Maximum Warning Threshold', $out, '[N/A]');
3101 $min_crit = get_nonempty_string('Minimum Failure Threshold', $out, '[N/A]');
3102 $min_warn = get_nonempty_string('Minimum Warning Threshold', $out, '[N/A]');
3103
3104 # Cleaning the temp readings
3105 $reading =~ s{\.0\s+C}{}xms;
3106 $max_crit =~ s{\.0\s+C}{}xms;
3107 $max_warn =~ s{\.0\s+C}{}xms;
3108 $min_crit =~ s{\.0\s+C}{}xms;
3109 $min_warn =~ s{\.0\s+C}{}xms;
3110
669797e1 3111 $type = $reading =~ m{\A\d+\z}xms ? 'AmbientESM' : 'Discrete';
3112 $discrete = $reading;
3113 }
3114
3115 next TEMP if blacklisted('temp', $index);
3116 $count{temp}++;
3117
3118 if ($type eq 'Discrete') {
7328e97b 3119 my $msg = sprintf 'Temperature probe %d [%s] is %s',
669797e1 3120 $index, $location, $discrete;
3121 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3122 report('chassis', $msg, $err, $index);
3123 }
3124 else {
3125 # First check according to custom thresholds
3126 if (exists $crit_threshold{$index}{max} and $reading > $crit_threshold{$index}{max}) {
3127 # Custom critical MAX
98b224a3 3128 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom max=%d)',
669797e1 3129 $index, $location, $reading, $crit_threshold{$index}{max};
3130 report('chassis', $msg, $E_CRITICAL, $index);
3131 }
3132 elsif (exists $warn_threshold{$index}{max} and $reading > $warn_threshold{$index}{max}) {
3133 # Custom warning MAX
98b224a3 3134 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom max=%d)',
669797e1 3135 $index, $location, $reading, $warn_threshold{$index}{max};
3136 report('chassis', $msg, $E_WARNING, $index);
3137 }
3138 elsif (exists $crit_threshold{$index}{min} and $reading < $crit_threshold{$index}{min}) {
3139 # Custom critical MIN
98b224a3 3140 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom min=%d)',
669797e1 3141 $index, $location, $reading, $crit_threshold{$index}{min};
3142 report('chassis', $msg, $E_CRITICAL, $index);
3143 }
3144 elsif (exists $warn_threshold{$index}{min} and $reading < $warn_threshold{$index}{min}) {
3145 # Custom warning MIN
98b224a3 3146 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom min=%d)',
669797e1 3147 $index, $location, $reading, $warn_threshold{$index}{min};
3148 report('chassis', $msg, $E_WARNING, $index);
3149 }
3150 elsif ($status ne 'Ok' and $max_crit ne '[N/A]' and $reading > $max_crit) {
98b224a3 3151 my $msg = sprintf 'Temperature Probe %d [%s] is critically high at %d C',
669797e1 3152 $index, $location, $reading;
3153 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3154 report('chassis', $msg, $err, $index);
3155 }
3156 elsif ($status ne 'Ok' and $max_warn ne '[N/A]' and $reading > $max_warn) {
98b224a3 3157 my $msg = sprintf 'Temperature Probe %d [%s] is too high at %d C',
669797e1 3158 $index, $location, $reading;
3159 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3160 report('chassis', $msg, $err, $index);
3161 }
3162 elsif ($status ne 'Ok' and $min_crit ne '[N/A]' and $reading < $min_crit) {
98b224a3 3163 my $msg = sprintf 'Temperature Probe %d [%s] is critically low at %d C',
669797e1 3164 $index, $location, $reading;
3165 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3166 report('chassis', $msg, $err, $index);
3167 }
3168 elsif ($status ne 'Ok' and $min_warn ne '[N/A]' and $reading < $min_warn) {
98b224a3 3169 my $msg = sprintf 'Temperature Probe %d [%s] is too low at %d C',
669797e1 3170 $index, $location, $reading;
3171 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3172 report('chassis', $msg, $err, $index);
3173 }
3174 # Ok
3175 else {
304c4cba 3176 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C',
3177 $index, $location, $reading;
3178 if ($min_warn eq '[N/A]' and $min_crit eq '[N/A]') {
3179 $msg .= sprintf ' (max=%s/%s)', $max_warn, $max_crit;
3180 }
3181 else {
3182 $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
3183 $min_warn, $min_crit, $max_warn, $max_crit;
8ce893fd 3184 }
669797e1 3185 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3186 report('chassis', $msg, $err, $index);
3187 }
3188
3189 # Collect performance data
3190 if (defined $opt{perfdata}) {
3191 my $pname = lc $location;
3192 $pname =~ s{\s}{_}gxms;
3193 $pname =~ s{_temp\z}{}xms;
3194 $pname =~ s{proc_}{cpu#}xms;
48aeec0b 3195 push @perfdata, {
60fd6896 3196 label => "temp_${index}_${pname}",
48aeec0b 3197 mini => "t$index",
3198 value => $reading,
48aeec0b 3199 warn => $max_warn,
3200 crit => $max_crit,
3201 };
669797e1 3202 }
3203 }
3204 }
3205 return;
3206}
3207
3208
3209#-----------------------------------------
3210# CHASSIS: Check processors
3211#-----------------------------------------
3212sub check_processors {
5ecf578c 3213 return if blacklisted('cpu', 'all');
3214
669797e1 3215 my $index = undef;
3216 my $status = undef;
3217 my $state = undef;
8ce893fd 3218 my $brand = undef;
3219 my $family = undef;
3220 my $man = undef;
3221 my $speed = undef;
8ce893fd 3222 my @output = ();
669797e1 3223
3224 if ($snmp) {
3225
3226 # NOTE: For some reason, older models don't have the
8ce893fd 3227 # "Processor Device Status" OIDs. We check both the newer
3228 # (preferred) OIDs and the old ones.
669797e1 3229
8ce893fd 3230 my %cpu_oid
669797e1 3231 = (
8ce893fd 3232 '1.3.6.1.4.1.674.10892.1.1100.30.1.2.1' => 'processorDeviceIndex',
3233 '1.3.6.1.4.1.674.10892.1.1100.30.1.5.1' => 'processorDeviceStatus',
3234 '1.3.6.1.4.1.674.10892.1.1100.30.1.8.1' => 'processorDeviceManufacturerName',
3235 '1.3.6.1.4.1.674.10892.1.1100.30.1.9.1' => 'processorDeviceStatusState',
3236 '1.3.6.1.4.1.674.10892.1.1100.30.1.10.1' => 'processorDeviceFamily',
3237 '1.3.6.1.4.1.674.10892.1.1100.30.1.12.1' => 'processorDeviceCurrentSpeed',
3238 '1.3.6.1.4.1.674.10892.1.1100.30.1.23.1' => 'processorDeviceBrandName',
3239 '1.3.6.1.4.1.674.10892.1.1100.32.1.2.1' => 'processorDeviceStatusIndex',
3240 '1.3.6.1.4.1.674.10892.1.1100.32.1.5.1' => 'processorDeviceStatusStatus',
3241 '1.3.6.1.4.1.674.10892.1.1100.32.1.6.1' => 'processorDeviceStatusReading',
669797e1 3242 );
4cabd748 3243 my $result = undef;
3244 if ($opt{use_get_table}) {
3245 my $processorDeviceTable = '1.3.6.1.4.1.674.10892.1.1100.30.1';
3246 my $processorDeviceStatusTable = '1.3.6.1.4.1.674.10892.1.1100.32.1';
669797e1 3247
c849fd4c 3248 $result = $snmp_session->get_table(-baseoid => $processorDeviceTable);
3249 my $ext = $snmp_session->get_table(-baseoid => $processorDeviceStatusTable);
4cabd748 3250
c849fd4c 3251 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
4cabd748 3252 }
3253 else {
3254 $result = $snmp_session->get_entries(-columns => [keys %cpu_oid]);
3255 }
669797e1 3256
3257 if (!defined $result) {
98b224a3 3258 printf "SNMP ERROR [processors]: %s.\n", $snmp_session->error;
669797e1 3259 $snmp_session->close;
3260 exit $E_UNKNOWN;
3261 }
3262
8ce893fd 3263 @output = @{ get_snmp_output($result, \%cpu_oid) };
669797e1 3264 }
3265 else {
3266 @output = @{ run_omreport("$omopt_chassis processors") };
3267 }
3268
3269 my %cpu_state
3270 = (
3271 1 => 'Other', # other than following values
3272 2 => 'Unknown', # unknown
3273 3 => 'Enabled', # enabled
3274 4 => 'User Disabled', # disabled by user via BIOS setup
3275 5 => 'BIOS Disabled', # disabled by BIOS (POST error)
3276 6 => 'Idle', # idle
3277 );
3278
3279 my %cpu_reading
3280 = (
3281 1 => 'Internal Error', # Internal Error
3282 2 => 'Thermal Trip', # Thermal Trip
3283 32 => 'Configuration Error', # Configuration Error
3284 128 => 'Present', # Processor Present
3285 256 => 'Disabled', # Processor Disabled
3286 512 => 'Terminator Present', # Terminator Present
3287 1024 => 'Throttled', # Processor Throttled
3288 );
3289
8ce893fd 3290 # Mapping between family numbers from SNMP and actual CPU family
3291 my %cpu_family
3292 = (
b221393e 3293 1 => 'Other', 2 => 'Unknown',
3294 3 => '8086', 4 => '80286',
3295 5 => '386', 6 => '486',
3296 7 => '8087', 8 => '80287',
3297 9 => '80387', 10 => '80487',
3298 11 => 'Pentium', 12 => 'Pentium Pro',
3299 13 => 'Pentium II', 14 => 'Pentium with MMX',
3300 15 => 'Celeron', 16 => 'Pentium II Xeon',
3301 17 => 'Pentium III', 18 => 'Pentium III Xeon',
3302 19 => 'Pentium III', 20 => 'Itanium',
3303 21 => 'Xeon', 22 => 'Pentium 4',
3304 23 => 'Xeon MP', 24 => 'Itanium 2',
3305 25 => 'K5', 26 => 'K6',
3306 27 => 'K6-2', 28 => 'K6-3',
3307 29 => 'Athlon', 30 => 'AMD2900',
3308 31 => 'K6-2+', 32 => 'Power PC',
3309 33 => 'Power PC 601', 34 => 'Power PC 603',
3310 35 => 'Power PC 603+', 36 => 'Power PC 604',
3311 37 => 'Power PC 620', 38 => 'Power PC x704',
3312 39 => 'Power PC 750', 40 => 'Core Duo',
3313 41 => 'Core Duo mobile', 42 => 'Core Solo mobile',
3314 43 => 'Intel Atom', 44 => undef,
3315 45 => undef, 46 => undef,
3316 47 => undef, 48 => 'Alpha',
3317 49 => 'Alpha 21064', 50 => 'Alpha 21066',
3318 51 => 'Alpha 21164', 52 => 'Alpha 21164PC',
3319 53 => 'Alpha 21164a', 54 => 'Alpha 21264',
3320 55 => 'Alpha 21364', 56 => 'Turion II Ultra Dual-Core Mobile M',
3321 57 => 'Turion II Dual-Core Mobile M', 58 => 'Athlon II Dual-Core Mobile M ',
9cc9fcac 3322 59 => 'Opteron 6100', 60 => 'Opteron 4100',
b221393e 3323 61 => undef, 62 => undef,
3324 63 => undef, 64 => 'MIPS',
3325 65 => 'MIPS R4000', 66 => 'MIPS R4200',
3326 67 => 'MIPS R4400', 68 => 'MIPS R4600',
3327 69 => 'MIPS R10000', 70 => undef,
3328 71 => undef, 72 => undef,
3329 73 => undef, 74 => undef,
3330 75 => undef, 76 => undef,
3331 77 => undef, 78 => undef,
3332 79 => undef, 80 => 'SPARC',
3333 81 => 'SuperSPARC', 82 => 'microSPARC II',
3334 83 => 'microSPARC IIep', 84 => 'UltraSPARC',
3335 85 => 'UltraSPARC II', 86 => 'UltraSPARC IIi',
3336 87 => 'UltraSPARC III', 88 => 'UltraSPARC IIIi',
3337 89 => undef, 90 => undef,
3338 91 => undef, 92 => undef,
3339 93 => undef, 94 => undef,
3340 95 => undef, 96 => '68040',
3341 97 => '68xxx', 98 => '68000',
3342 99 => '68010', 100 => '68020',
3343 101 => '68030', 102 => undef,
3344 103 => undef, 104 => undef,
3345 105 => undef, 106 => undef,
3346 107 => undef, 108 => undef,
3347 109 => undef, 110 => undef,
3348 111 => undef, 112 => 'Hobbit',
3349 113 => undef, 114 => undef,
3350 115 => undef, 116 => undef,
3351 117 => undef, 118 => undef,
3352 119 => undef, 120 => 'Crusoe TM5000',
3353 121 => 'Crusoe TM3000', 122 => 'Efficeon TM8000',
3354 123 => undef, 124 => undef,
3355 125 => undef, 126 => undef,
3356 127 => undef, 128 => 'Weitek',
3357 129 => undef, 130 => 'Celeron M',
3358 131 => 'Athlon 64', 132 => 'Opteron',
3359 133 => 'Sempron', 134 => 'Turion 64 Mobile',
3360 135 => 'Dual-Core Opteron', 136 => 'Athlon 64 X2 DC',
3361 137 => 'Turion 64 X2 M', 138 => 'Quad-Core Opteron',
3362 139 => '3rd gen Opteron', 140 => 'AMD Phenom FX Quad-Core',
3363 141 => 'AMD Phenom X4 Quad-Core', 142 => 'AMD Phenom X2 Dual-Core',
3364 143 => 'AMD Athlon X2 Dual-Core', 144 => 'PA-RISC',
3365 145 => 'PA-RISC 8500', 146 => 'PA-RISC 8000',
3366 147 => 'PA-RISC 7300LC', 148 => 'PA-RISC 7200',
3367 149 => 'PA-RISC 7100LC', 150 => 'PA-RISC 7100',
3368 151 => undef, 152 => undef,
3369 153 => undef, 154 => undef,
3370 155 => undef, 156 => undef,
3371 157 => undef, 158 => undef,
3372 159 => undef, 160 => 'V30',
3373 161 => 'Quad-Core Xeon 3200', 162 => 'Dual-Core Xeon 3000',
3374 163 => 'Quad-Core Xeon 5300', 164 => 'Dual-Core Xeon 5100',
3375 165 => 'Dual-Core Xeon 5000', 166 => 'Dual-Core Xeon LV',
3376 167 => 'Dual-Core Xeon ULV', 168 => 'Dual-Core Xeon 7100',
3377 169 => 'Quad-Core Xeon 5400', 170 => 'Quad-Core Xeon',
3378 171 => 'Dual-Core Xeon 5200', 172 => 'Dual-Core Xeon 7200',
3379 173 => 'Quad-Core Xeon 7300', 174 => 'Quad-Core Xeon 7400',
3380 175 => 'Multi-Core Xeon 7400', 176 => 'M1',
3381 177 => 'M2', 178 => undef,
3382 179 => 'Pentium 4 HT', 180 => 'AS400',
3383 181 => undef, 182 => 'Athlon XP',
3384 183 => 'Athlon MP', 184 => 'Duron',
3385 185 => 'Pentium M', 186 => 'Celeron D',
3386 187 => 'Pentium D', 188 => 'Pentium Extreme',
3387 189 => 'Core Solo', 190 => 'Core2',
3388 191 => 'Core2 Duo', 192 => 'Core2 Solo',
3389 193 => 'Core2 Extreme', 194 => 'Core2 Quad',
3390 195 => 'Core2 Extreme mobile', 196 => 'Core2 Duo mobile',
3391 197 => 'Core2 Solo mobile', 198 => 'Core i7',
3392 199 => 'Dual-Core Celeron', 200 => 'IBM390',
3393 201 => 'G4', 202 => 'G5',
3394 203 => 'ESA/390 G6', 204 => 'z/Architectur',
9cc9fcac 3395 205 => 'Core i5', 206 => 'Core i3',
b221393e 3396 207 => undef, 208 => undef,
3397 209 => undef, 210 => 'C7-M',
3398 211 => 'C7-D', 212 => 'C7',
3399 213 => 'Eden', 214 => 'Multi-Core Xeon',
3400 215 => 'Dual-Core Xeon 3xxx', 216 => 'Quad-Core Xeon 3xxx',
9cc9fcac 3401 217 => 'VIA Nano', 218 => 'Dual-Core Xeon 5xxx',
b221393e 3402 219 => 'Quad-Core Xeon 5xxx', 220 => undef,
3403 221 => 'Dual-Core Xeon 7xxx', 222 => 'Quad-Core Xeon 7xxx',
9cc9fcac 3404 223 => 'Multi-Core Xeon 7xxx', 224 => 'Multi-Core Xeon 3400',
b221393e 3405 225 => undef, 226 => undef,
3406 227 => undef, 228 => undef,
3407 229 => undef, 230 => 'Embedded AMD Opteron Quad-Core',
3408 231 => 'AMD Phenom Triple-Core', 232 => 'AMD Turion Ultra Dual-Core Mobile',
3409 233 => 'AMD Turion Dual-Core Mobile', 234 => 'AMD Athlon Dual-Core',
3410 235 => 'AMD Sempron SI', 236 => 'AMD Phenom II',
3411 237 => 'AMD Athlon II', 238 => 'Six-Core AMD Opteron',
3412 239 => 'AMD Sempron M', 240 => undef,
3413 241 => undef, 242 => undef,
3414 243 => undef, 244 => undef,
3415 245 => undef, 246 => undef,
3416 247 => undef, 248 => undef,
3417 249 => undef, 250 => 'i860',
3418 251 => 'i960',
8ce893fd 3419 );
669797e1 3420
3421 CPU:
3422 foreach my $out (@output) {
3423 if ($snmp) {
8ce893fd 3424 $index = exists $out->{processorDeviceStatusIndex}
205488c0 3425 ? ($out->{processorDeviceStatusIndex} || 10000) - 1
3426 : ($out->{processorDeviceIndex} || 10000) - 1;
8ce893fd 3427 $status = exists $out->{processorDeviceStatusStatus}
b460a3d6 3428 ? get_snmp_status($out->{processorDeviceStatusStatus})
3429 : get_snmp_status($out->{processorDeviceStatus});
205488c0 3430 if (defined $out->{processorDeviceStatusReading}) {
669797e1 3431 my @states = (); # contains states for the CPU
669797e1 3432
3433 # get the combined state from the StatusReading OID
3434 foreach my $mask (sort keys %cpu_reading) {
3435 if (($out->{processorDeviceStatusReading} & $mask) != 0) {
3436 push @states, $cpu_reading{$mask};
3437 }
3438 }
3439
3440 # Finally, create the state string
3441 $state = join q{, }, @states;
3442 }
3443 else {
912d8679 3444 $state = get_hashval($out->{processorDeviceStatusState}, \%cpu_state);
669797e1 3445 }
205488c0 3446 $man = $out->{processorDeviceManufacturerName} || undef;
3447 $family = (defined $out->{processorDeviceFamily}
3448 and defined $cpu_family{$out->{processorDeviceFamily}})
04a878db 3449 ? $cpu_family{$out->{processorDeviceFamily}} : undef;
205488c0 3450 $speed = $out->{processorDeviceCurrentSpeed} || undef;
3451 $brand = $out->{processorDeviceBrandName} || undef;
669797e1 3452 }
3453 else {
205488c0 3454 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3455 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3456 $state = get_nonempty_string('State', $out, 'Unknown state');
3457 $brand = get_nonempty_string('Processor Brand', $out, undef);
3458 $family = get_nonempty_string('Processor Family', $out, undef);
3459 $man = get_nonempty_string('Processor Manufacturer', $out, undef);
3460 $speed = get_nonempty_string('Current Speed', $out, undef);
669797e1 3461 }
3462
3463 next CPU if blacklisted('cpu', $index);
3464
3465 # Ignore unoccupied CPU slots (omreport)
3466 next CPU if (defined $out->{'Processor Manufacturer'}
3467 and $out->{'Processor Manufacturer'} eq '[Not Occupied]')
3468 or (defined $out->{'Processor Brand'} and $out->{'Processor Brand'} eq '[Not Occupied]');
3469
3470 # Ignore unoccupied CPU slots (snmp)
205488c0 3471 if ($snmp and defined $out->{processorDeviceStatusReading}
669797e1 3472 and $out->{processorDeviceStatusReading} == 0) {
3473 next CPU;
3474 }
3475
3476 $count{cpu}++;
3477
8ce893fd 3478 if (defined $brand) {
3479 $brand =~ s{\s\s+}{ }gxms;
e7dc67d0 3480 $brand =~ s{\((R|tm)\)}{}gxms;
3481 $brand =~ s{\s(CPU|Processor)}{}xms;
8ce893fd 3482 $brand =~ s{\s\@}{}xms;
3483 }
3484 elsif (defined $family and defined $man and defined $speed) {
3485 $speed =~ s{\A (\d+) .*}{$1}xms;
49bf41a5 3486 $brand = sprintf '%s %s %.2fGHz', $man, $family, $speed / 1000;
8ce893fd 3487 }
3488 else {
3489 $brand = "unknown";
3490 }
3491
669797e1 3492 # Default
3493 if ($status ne 'Ok') {
0a0813de 3494 my $msg = sprintf 'Processor %d [%s] needs attention: %s',
8ce893fd 3495 $index, $brand, $state;
669797e1 3496 report('chassis', $msg, $status2nagios{$status}, $index);
3497 }
3498 # Ok
3499 else {
0a0813de 3500 my $msg = sprintf 'Processor %d [%s] is %s',
8ce893fd 3501 $index, $brand, $state;
669797e1 3502 report('chassis', $msg, $E_OK, $index);
3503 }
3504 }
3505 return;
3506}
3507
3508
3509#-----------------------------------------
3510# CHASSIS: Check voltage probes
3511#-----------------------------------------
3512sub check_volts {
5ecf578c 3513 return if blacklisted('volt', 'all');
3514
669797e1 3515 my $index = undef;
3516 my $status = undef;
3517 my $reading = undef;
3518 my $location = undef;
3519 my @output = ();
3520
3521 if ($snmp) {
3522 my %volt_oid
3523 = (
3524 '1.3.6.1.4.1.674.10892.1.600.20.1.2.1' => 'voltageProbeIndex',
3525 '1.3.6.1.4.1.674.10892.1.600.20.1.5.1' => 'voltageProbeStatus',
3526 '1.3.6.1.4.1.674.10892.1.600.20.1.6.1' => 'voltageProbeReading',
3527 '1.3.6.1.4.1.674.10892.1.600.20.1.8.1' => 'voltageProbeLocationName',
3528 '1.3.6.1.4.1.674.10892.1.600.20.1.16.1' => 'voltageProbeDiscreteReading',
3529 );
ba199ee0 3530
3531 my $voltageProbeTable = '1.3.6.1.4.1.674.10892.1.600.20.1';
3532 my $result = $snmp_session->get_table(-baseoid => $voltageProbeTable);
669797e1 3533
3534 if (!defined $result) {
98b224a3 3535 printf "SNMP ERROR [voltage]: %s.\n", $snmp_session->error;
669797e1 3536 $snmp_session->close;
3537 exit $E_UNKNOWN;
3538 }
3539
3540 @output = @{ get_snmp_output($result, \%volt_oid) };
3541 }
3542 else {
3543 @output = @{ run_omreport("$omopt_chassis volts") };
3544 }
3545
3546 my %volt_discrete_reading
3547 = (
3548 1 => 'Good',
3549 2 => 'Bad',
3550 );
3551
3552 VOLT:
3553 foreach my $out (@output) {
3554 if ($snmp) {
205488c0 3555 $index = ($out->{voltageProbeIndex} || 10000) - 1;
e7fd8bc9 3556 $status = get_snmp_probestatus($out->{voltageProbeStatus});
205488c0 3557 $reading = defined $out->{voltageProbeReading}
669797e1 3558 ? sprintf('%.3f V', $out->{voltageProbeReading}/1000)
912d8679 3559 : get_hashval($out->{voltageProbeDiscreteReading}, \%volt_discrete_reading);
205488c0 3560 $location = $out->{voltageProbeLocationName} || 'Unknown location';
669797e1 3561 }
3562 else {
205488c0 3563 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3564 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3565 $reading = get_nonempty_string('Reading', $out, 'Unknown reading');
3566 $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
669797e1 3567 }
3568
3569 next VOLT if blacklisted('volt', $index);
3570 $count{volt}++;
3571
98b224a3 3572 my $msg = sprintf 'Voltage sensor %d [%s] is %s',
669797e1 3573 $index, $location, $reading;
3574 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3575 report('chassis', $msg, $err, $index);
3576 }
3577 return;
3578}
3579
3580
3581#-----------------------------------------
3582# CHASSIS: Check batteries
3583#-----------------------------------------
3584sub check_batteries {
5ecf578c 3585 return if blacklisted('bp', 'all');
3586
669797e1 3587 my $index = undef;
3588 my $status = undef;
3589 my $reading = undef;
3590 my $location = undef;
3591 my @output = ();
3592
3593 if ($snmp) {
3594 my %bat_oid
3595 = (
3596 '1.3.6.1.4.1.674.10892.1.600.50.1.2.1' => 'batteryIndex',
3597 '1.3.6.1.4.1.674.10892.1.600.50.1.5.1' => 'batteryStatus',
3598 '1.3.6.1.4.1.674.10892.1.600.50.1.6.1' => 'batteryReading',
3599 '1.3.6.1.4.1.674.10892.1.600.50.1.7.1' => 'batteryLocationName',
3600 );
4cabd748 3601 my $result = undef;
3602 if ($opt{use_get_table}) {
3603 my $batteryTable = '1.3.6.1.4.1.674.10892.1.600.50.1';
3604 $result = $snmp_session->get_table(-baseoid => $batteryTable);
3605 }
3606 else {
3607 $result = $snmp_session->get_entries(-columns => [keys %bat_oid]);
3608 }
669797e1 3609
3610 # No batteries is OK
3611 return 0 if !defined $result;
3612
3613 @output = @{ get_snmp_output($result, \%bat_oid) };
3614 }
3615 else {
3616 @output = @{ run_omreport("$omopt_chassis batteries") };
3617 }
3618
3619 my %bat_reading
3620 = (
3621 1 => 'Predictive Failure',
3622 2 => 'Failed',
3623 4 => 'Presence Detected',
3624 );
3625
3626 BATTERY:
3627 foreach my $out (@output) {
3628 if ($snmp) {
205488c0 3629 $index = ($out->{batteryIndex} || 10000) - 1;
b460a3d6 3630 $status = get_snmp_status($out->{batteryStatus});
912d8679 3631 $reading = get_hashval($out->{batteryReading}, \%bat_reading);
205488c0 3632 $location = $out->{batteryLocationName} || 'Unknown location';
669797e1 3633 }
3634 else {
205488c0 3635 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3636 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3637 $reading = get_nonempty_string('Reading', $out, 'Unknown reading');
3638 $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
669797e1 3639 }
3640
3641 next BATTERY if blacklisted('bp', $index);
3642 $count{bat}++;
3643
98b224a3 3644 my $msg = sprintf 'Battery probe %d [%s] is %s',
669797e1 3645 $index, $location, $reading;
3646 report('chassis', $msg, $status2nagios{$status}, $index);
3647 }
3648 return;
3649}
3650
3651
3652#-----------------------------------------
3653# CHASSIS: Check amperage probes (power monitoring)
3654#-----------------------------------------
3655sub check_pwrmonitoring {
5ecf578c 3656 return if blacklisted('amp', 'all');
3657
669797e1 3658 my $index = undef;
3659 my $status = undef;
3660 my $reading = undef;
3661 my $location = undef;
3662 my $max_crit = undef;
3663 my $max_warn = undef;
3664 my $unit = undef;
3af78850 3665 my $type = undef;
669797e1 3666 my @output = ();
3667
3668 if ($snmp) {
3669 my %amp_oid
3670 = (
3671 '1.3.6.1.4.1.674.10892.1.600.30.1.2.1' => 'amperageProbeIndex',
3672 '1.3.6.1.4.1.674.10892.1.600.30.1.5.1' => 'amperageProbeStatus',
3673 '1.3.6.1.4.1.674.10892.1.600.30.1.6.1' => 'amperageProbeReading',
3674 '1.3.6.1.4.1.674.10892.1.600.30.1.7.1' => 'amperageProbeType',
3675 '1.3.6.1.4.1.674.10892.1.600.30.1.8.1' => 'amperageProbeLocationName',
3676 '1.3.6.1.4.1.674.10892.1.600.30.1.10.1' => 'amperageProbeUpperCriticalThreshold',
3677 '1.3.6.1.4.1.674.10892.1.600.30.1.11.1' => 'amperageProbeUpperNonCriticalThreshold',
3678 '1.3.6.1.4.1.674.10892.1.600.30.1.16.1' => 'amperageProbeDiscreteReading',
3679 );
4cabd748 3680 my $result = undef;
3681 if ($opt{use_get_table}) {
3682 my $amperageProbeTable = '1.3.6.1.4.1.674.10892.1.600.30.1';
3683 $result = $snmp_session->get_table(-baseoid => $amperageProbeTable);
3684 }
3685 else {
3686 $result = $snmp_session->get_entries(-columns => [keys %amp_oid]);
3687 }
669797e1 3688
3689 # No pwrmonitoring is OK
3690 return 0 if !defined $result;
3691
3692 @output = @{ get_snmp_output($result, \%amp_oid) };
3693 }
3694 else {
3695 @output = @{ run_omreport("$omopt_chassis pwrmonitoring") };
3696 }
3697
3698 my %amp_type # Amperage probe types
3699 = (
3700 1 => 'amperageProbeTypeIsOther', # other than following values
3701 2 => 'amperageProbeTypeIsUnknown', # unknown
3702 3 => 'amperageProbeTypeIs1Point5Volt', # 1.5 amperage probe
3703 4 => 'amperageProbeTypeIs3Point3volt', # 3.3 amperage probe
3704 5 => 'amperageProbeTypeIs5Volt', # 5 amperage probe
3705 6 => 'amperageProbeTypeIsMinus5Volt', # -5 amperage probe
3706 7 => 'amperageProbeTypeIs12Volt', # 12 amperage probe
3707 8 => 'amperageProbeTypeIsMinus12Volt', # -12 amperage probe
3708 9 => 'amperageProbeTypeIsIO', # I/O probe
3709 10 => 'amperageProbeTypeIsCore', # Core probe
3710 11 => 'amperageProbeTypeIsFLEA', # FLEA (standby) probe
3711 12 => 'amperageProbeTypeIsBattery', # Battery probe
3712 13 => 'amperageProbeTypeIsTerminator', # SCSI Termination probe
3713 14 => 'amperageProbeTypeIs2Point5Volt', # 2.5 amperage probe
3714 15 => 'amperageProbeTypeIsGTL', # GTL (ground termination logic) probe
3715 16 => 'amperageProbeTypeIsDiscrete', # amperage probe with discrete reading
3716 23 => 'amperageProbeTypeIsPowerSupplyAmps', # Power Supply probe with reading in Amps
3717 24 => 'amperageProbeTypeIsPowerSupplyWatts', # Power Supply probe with reading in Watts
3718 25 => 'amperageProbeTypeIsSystemAmps', # System probe with reading in Amps
3719 26 => 'amperageProbeTypeIsSystemWatts', # System probe with reading in Watts
3720 );
3721
3722 my %amp_discrete
3723 = (
3724 1 => 'Good',
3725 2 => 'Bad',
3726 );
3727
3728 my %amp_unit
3729 = (
3730 'amperageProbeTypeIsPowerSupplyAmps' => 'hA', # tenths of Amps
3731 'amperageProbeTypeIsSystemAmps' => 'hA', # tenths of Amps
3732 'amperageProbeTypeIsPowerSupplyWatts' => 'W', # Watts
3733 'amperageProbeTypeIsSystemWatts' => 'W', # Watts
3734 'amperageProbeTypeIsDiscrete' => q{}, # discrete reading, no unit
3735 );
3736
3737 AMP:
3738 foreach my $out (@output) {
3739 if ($snmp) {
205488c0 3740 $index = ($out->{amperageProbeIndex} || 10000) - 1;
e7fd8bc9 3741 $status = get_snmp_probestatus($out->{amperageProbeStatus});
3af78850 3742 $type = get_hashval($out->{amperageProbeType}, \%amp_type);
3743 $reading = $type eq 'amperageProbeTypeIsDiscrete'
912d8679 3744 ? get_hashval($out->{amperageProbeDiscreteReading}, \%amp_discrete)
205488c0 3745 : ($out->{amperageProbeReading} || 0);
3746 $location = $out->{amperageProbeLocationName} || 'Unknown location';
3747 $max_crit = $out->{amperageProbeUpperCriticalThreshold} || 0;
3748 $max_warn = $out->{amperageProbeUpperNonCriticalThreshold} || 0;
669797e1 3749 $unit = exists $amp_unit{$amp_type{$out->{amperageProbeType}}}
3750 ? $amp_unit{$amp_type{$out->{amperageProbeType}}} : 'mA';
3af78850 3751
3af78850 3752 # calculate proper values and set unit for ampere probes
3753 if ($unit eq 'hA' and $type ne 'amperageProbeTypeIsDiscrete') {
669797e1 3754 $reading /= 10;
3755 $max_crit /= 10;
3756 $max_warn /= 10;
3757 $unit = 'A';
3758 }
3759 }
3760 else {
205488c0 3761 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3762 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3763 $reading = get_nonempty_string('Reading', $out, 'Unknown reading');
3764 $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
3765 $max_crit = get_nonempty_string('Failure Threshold', $out, 0);
3766 $max_warn = get_nonempty_string('Warning Threshold', $out, 0);
3767
3768 $max_crit = 0 if $max_crit eq '[N/A]';
3769 $max_warn = 0 if $max_warn eq '[N/A]';
3770
669797e1 3771 $reading =~ s{\A (\d+.*?)\s+([a-zA-Z]+) \s*\z}{$1}xms;
205488c0 3772 $unit = $2 || 'unknown';
669797e1 3773 $max_warn =~ s{\A (\d+.*?)\s+[a-zA-Z]+ \s*\z}{$1}xms;
3774 $max_crit =~ s{\A (\d+.*?)\s+[a-zA-Z]+ \s*\z}{$1}xms;
3775 }
3776
78dbab97 3777 next AMP if blacklisted('amp', $index);
669797e1 3778 next AMP if $index !~ m{\A \d+ \z}xms;
027ee49c 3779
3780 # Special case: Probe is present but unknown. This happens via
3781 # SNMP on some systems where power monitoring capability is
3782 # disabled due to non-redundant and/or non-instrumented power
3783 # supplies.
3784 # E.g. R410 with newer BMC firmware and 1 power supply
3620d74a 3785 if ($snmp && $status eq 'Unknown' && $reading eq '[N/A]') {
027ee49c 3786 next AMP;
3787 }
3788
669797e1 3789 $count{amp}++;
3790
027ee49c 3791 # Special case: Discrete reading
6a9a6fd1 3792 if (defined $type and $type eq 'amperageProbeTypeIsDiscrete') {
e8413daf 3793 my $msg = sprintf 'Amperage probe %d [%s] is %s',
3794 $index, $location, $reading;
3795 report('chassis', $msg, $status2nagios{$status}, $index);
3796 }
027ee49c 3797 # Default
e8413daf 3798 else {
3799 my $msg = sprintf 'Amperage probe %d [%s] reads %s %s',
3800 $index, $location, $reading, $unit;
3801 report('chassis', $msg, $status2nagios{$status}, $index);
3802 }
669797e1 3803
3804 # Collect performance data
3805 if (defined $opt{perfdata}) {
3806 next AMP if $reading !~ m{\A \d+(\.\d+)? \z}xms; # discrete reading (not number)
48aeec0b 3807 my $label = join q{_}, 'pwr_mon', $index, lc $location;
3808 $label =~ s{\s}{_}gxms;
3809 push @perfdata, {
3810 label => $label,
aa629782 3811 mini => "p${index}" . lc $unit,
48aeec0b 3812 value => $reading,
48aeec0b 3813 warn => $max_warn,
3814 crit => $max_crit,
3815 };
669797e1 3816 }
3817 }
3818
3819 # Collect EXTRA performance data not found at first run. This is a
3820 # rather ugly hack
3821 if (defined $opt{perfdata} && !$snmp) {
3822 my $found = 0;
3823 my $index = 0;
3824 my %used = ();
3825
3826 # find used indexes
48aeec0b 3827 foreach (@perfdata) {
3828 if ($_->{label} =~ m/\A pwr_mon_(\d+)/xms) {
669797e1 3829 $used{$1} = 1;
3830 }
3831 }
3832
3833 AMP2:
3834 foreach my $line (@{ run_command("$omreport $omopt_chassis pwrmonitoring -fmt ssv") }) {
3835 chop $line;
3836 if ($line eq 'Location;Reading') {
3837 $found = 1;
3838 next AMP2;
3839 }
3840 if ($line eq q{}) {
3841 $found = 0;
3842 next AMP2;
3843 }
c000d734 3844 if ($found and $line =~ m/\A ([^;]+?) ; (\d*\.\d+) \s [AW] \z/xms) {
669797e1 3845 my $aname = lc $1;
3846 my $aval = $2;
669797e1 3847 $aname =~ s{\s}{_}gxms;
3848
3849 # don't use an existing index
3850 while (exists $used{$index}) { ++$index; }
3851
48aeec0b 3852 push @perfdata, {
3853 label => "pwr_mon_${index}_${aname}",
5e76352f 3854 mini => "p${index}a",
48aeec0b 3855 value => $aval,
48aeec0b 3856 warn => 0,
3857 crit => 0,
3858 };
669797e1 3859 ++$index;
3860 }
3861 }
3862 }
3863
3864 return;
3865}
3866
3867
3868#-----------------------------------------
3869# CHASSIS: Check intrusion
3870#-----------------------------------------
3871sub check_intrusion {
5ecf578c 3872 return if blacklisted('intr', 'all');
3873
669797e1 3874 my $index = undef;
3875 my $status = undef;
3876 my $reading = undef;
3877 my @output = ();
3878
3879 if ($snmp) {
3880 my %int_oid
3881 = (
3882 '1.3.6.1.4.1.674.10892.1.300.70.1.2.1' => 'intrusionIndex',
3883 '1.3.6.1.4.1.674.10892.1.300.70.1.5.1' => 'intrusionStatus',
3884 '1.3.6.1.4.1.674.10892.1.300.70.1.6.1' => 'intrusionReading',
3885 );
4cabd748 3886 my $result = undef;
3887 if ($opt{use_get_table}) {
3888 my $intrusionTable = '1.3.6.1.4.1.674.10892.1.300.70.1';
3889 $result = $snmp_session->get_table(-baseoid => $intrusionTable);
3890 }
3891 else {
3892 $result = $snmp_session->get_entries(-columns => [keys %int_oid]);
3893 }
669797e1 3894
3895 # No intrusion is OK
3896 return 0 if !defined $result;
3897
3898 @output = @{ get_snmp_output($result, \%int_oid) };
3899 }
3900 else {
3901 @output = @{ run_omreport("$omopt_chassis intrusion") };
3902 }
3903
3904 my %int_reading
3905 = (
3906 1 => 'Not Breached', # chassis not breached and no uncleared breaches
3907 2 => 'Breached', # chassis currently breached
3908 3 => 'Breached Prior', # chassis breached prior to boot and has not been cleared
3909 4 => 'Breach Sensor Failure', # intrusion sensor has failed
3910 );
3911
3912 INTRUSION:
3913 foreach my $out (@output) {
3914 if ($snmp) {
205488c0 3915 $index = ($out->{intrusionIndex} || 10000) - 1;
b460a3d6 3916 $status = get_snmp_status($out->{intrusionStatus});
912d8679 3917 $reading = get_hashval($out->{intrusionReading}, \%int_reading);
669797e1 3918 }
3919 else {
205488c0 3920 $index = get_nonempty_string('Index', $out, 9999);
0eed03e9 3921 $status = get_nonempty_string('Status', $out, 'Unknown');
205488c0 3922 $reading = get_nonempty_string('State', $out, 'Unknown state');
669797e1 3923 }
3924
3925 next INTRUSION if blacklisted('intr', $index);
3926 $count{intr}++;
3927
3928 if ($status ne 'Ok') {
3929 my $msg = sprintf 'Chassis intrusion %d detected: %s',
3930 $index, $reading;
3931 report('chassis', $msg, $E_WARNING, $index);
3932 }
3933 # Ok
3934 else {
3935 my $msg = sprintf 'Chassis intrusion %d detection: %s (%s)',
3936 $index, $status, $reading;
3937 report('chassis', $msg, $E_OK, $index);
3938 }
3939 }
3940 return;
3941}
3942
3943
40619bb3 3944#-----------------------------------------
3945# CHASSIS: Check SD Card Device
3946#-----------------------------------------
3947sub check_sdcard {
3948 return if blacklisted('sdcard', 'all');
3949
3950 my $index = undef;
3951 my $status = undef;
3952 my $state = undef;
3953 my $location = undef;
3954 my $capacity = undef;
3955 my $setting = undef;
3956 my @output = ();
3957
3958 if ($snmp) {
3959 my %sd_oid
3960 = (
3961 '1.3.6.1.4.1.674.10892.1.1100.112.1.2.1' => 'sdCardDeviceIndex',
3962 '1.3.6.1.4.1.674.10892.1.1100.112.1.3.1' => 'sdCardDeviceStatus',
3963 '1.3.6.1.4.1.674.10892.1.1100.112.1.4.1' => 'sdCardDeviceType',
3964 '1.3.6.1.4.1.674.10892.1.1100.112.1.7.1' => 'sdCardDeviceLocationName',
3965 '1.3.6.1.4.1.674.10892.1.1100.112.1.8.1' => 'sdCardDeviceCardPresent',
3966 '1.3.6.1.4.1.674.10892.1.1100.112.1.9.1' => 'sdCardDeviceCardState',
3967 '1.3.6.1.4.1.674.10892.1.1100.112.1.10.1' => 'sdCardDeviceCardStorageSize',
3968 );
3969 my $result = undef;
3970 if ($opt{use_get_table}) {
3971 my $sdCardDeviceTable = '1.3.6.1.4.1.674.10892.1.1100.112.1';
3972 $result = $snmp_session->get_table(-baseoid => $sdCardDeviceTable);
3973 }
3974 else {
3975 $result = $snmp_session->get_entries(-columns => [keys %sd_oid]);
3976 }
3977
3978 # No SD cards is OK
3979 return 0 if !defined $result;
3980
3981 @output = @{ get_snmp_output($result, \%sd_oid) };
3982 }
3983 else {
3984 @output = @{ run_omreport("$omopt_chassis removableflashmedia") };
3985 }
3986
3987 # Note: These values are bit fields, so combination values are possible.
3988 my %sd_state
3989 = (
3990 0 => 'None', # state is none of the following:
3991 1 => 'Present', # device is present
3992 2 => 'IPMI-ready', # device is IPMI ready
3993 4 => 'Full-ready', # device is full ready
3994 8 => 'Offline', # device is offline
3995 16 => 'Failed', # device is failed
3996 32 => 'Active', # device is active
3997 64 => 'Bootable', # device is bootable
3998 128 => 'Write-protected', # device is write-protected
3999 256 => 'Standby', # device is in standby mode
4000 );
4001
4002 my $c = 0;
4003 SDCARD:
4004 foreach my $out (@output) {
4005 if ($snmp) {
205488c0 4006 $index = ($out->{sdCardDeviceIndex} || 10000) - 1;
b460a3d6 4007 $status = get_snmp_status($out->{sdCardDeviceStatus});
40619bb3 4008
205488c0 4009 if (defined $out->{sdCardDeviceCardState}) {
40619bb3 4010 my @states = (); # contains states SD card
4011
4012 # get the combined state from the Device Status OID
4013 foreach my $mask (sort keys %sd_state) {
4014 if (($out->{sdCardDeviceCardState} & $mask) != 0) {
4015 push @states, $sd_state{$mask};
4016 }
4017 }
4018
4019 # Finally, create the state string
4020 $state = join q{, }, @states;
4021
4022 # special case: absent
4023 if ($out->{sdCardDeviceCardState} % 2 == 0) {
4024 $state = 'Absent';
4025 }
4026 }
4027
205488c0 4028 $location = $out->{sdCardDeviceLocationName} || 'Unknown location';
4029 $capacity = sprintf '%s MB', ($out->{sdCardDeviceCardStorageSize} || 'Unknown size');
40619bb3 4030 }
4031 else {
4032 $index = $c++;
0eed03e9 4033 $status = get_nonempty_string('Status', $out, 'Ok');
205488c0 4034 $state = get_nonempty_string('State', $out, 'Unknown state');
4035 $location = get_nonempty_string('Connector Name', $out, 'Unknown location');
4036 $capacity = get_nonempty_string('Storage Size', $out, 'Unknown size');
4037
4038 $capacity =~ s{\[Not Available\]}{Unknown Size};
40619bb3 4039 }
4040
4041 next SDCARD if blacklisted('sd', $index);
e62ffb8b 4042 $count{sd}++ if $state ne 'Absent';
40619bb3 4043
4044 if ($status ne 'Ok') {
4045 my $msg = sprintf 'SD Card %d needs attention: %s',
4046 $index, $state;
4047 report('chassis', $msg, $E_WARNING, $index);
4048 }
4049 # Special case: Not Present
4050 elsif ($status eq 'Ok' and $state eq 'Absent') {
4051 my $msg = sprintf 'SD Card %d [%s] is %s',
4052 $index, $location, $state;
4053 report('chassis', $msg, $E_OK, $index);
4054 }
4055 # Ok
4056 else {
4057 my $msg = sprintf 'SD Card %d [%s, %s] is %s',
4058 $index, $location, $capacity, $state;
4059 report('chassis', $msg, $E_OK, $index);
4060 }
4061 }
4062 return;
4063}
4064
4065
669797e1 4066#-----------------------------------------
4067# CHASSIS: Check alert log
4068#-----------------------------------------
4069sub check_alertlog {
4070 return if $snmp; # Not supported with SNMP
4071
4072 my @output = @{ run_omreport("$omopt_system alertlog") };
4073 foreach my $out (@output) {
4074 ++$count{alert}{$out->{Severity}};
4075 }
4076
4077 # Create error messages and set exit value if appropriate
4078 my $err = 0;
4079 if ($count{alert}{'Critical'} > 0) { $err = $E_CRITICAL; }
4080 elsif ($count{alert}{'Non-Critical'} > 0) { $err = $E_WARNING; }
4081
4082 my $msg = sprintf 'Alert log content: %d critical, %d non-critical, %d ok',
4083 $count{alert}{'Critical'}, $count{alert}{'Non-Critical'}, $count{alert}{'Ok'};
4084 report('other', $msg, $err);
4085
4086 return;
4087}
4088
4089#-----------------------------------------
4090# CHASSIS: Check ESM log overall health
4091#-----------------------------------------
4092sub check_esmlog_health {
4093 my $health = 'Ok';
4094
4095 if ($snmp) {
4096 my $systemStateEventLogStatus = '1.3.6.1.4.1.674.10892.1.200.10.1.41.1';
4097 my $result = $snmp_session->get_request(-varbindlist => [$systemStateEventLogStatus]);
4098 if (!defined $result) {
98b224a3 4099 my $msg = sprintf 'SNMP ERROR [esmhealth]: %s',
669797e1 4100 $snmp_session->error;
4101 report('other', $msg, $E_UNKNOWN);
4102 }
b460a3d6 4103 $health = get_snmp_status($result->{$systemStateEventLogStatus});
669797e1 4104 }
4105 else {
4106 foreach (@{ run_command("$omreport $omopt_system esmlog -fmt ssv") }) {
4107 if (m/\A Health;(.+) \z/xms) {
4108 $health = $1;
4109 chop $health;
4110 last;
4111 }
4112 }
4113 }
4114
4115 # If the overall health of the ESM log is other than "Ok", the
4116 # fill grade of the log is more than 80% and the log should be
4117 # cleared
4118 if ($health eq 'Ok') {
af7c7f76 4119 my $msg = sprintf 'ESM log health is Ok (less than 80%% full)';
669797e1 4120 report('other', $msg, $E_OK);
4121 }
4122 elsif ($health eq 'Critical') {
328d0a74 4123 my $msg = sprintf 'ESM log is 100%% full';
669797e1 4124 report('other', $msg, $status2nagios{$health});
4125 }
4126 else {
4127 my $msg = sprintf 'ESM log is more than 80%% full';
4128 report('other', $msg, $status2nagios{$health});
4129 }
4130
4131 return;
4132}
4133
4134#-----------------------------------------
4135# CHASSIS: Check ESM log
4136#-----------------------------------------
4137sub check_esmlog {
4138 my @output = ();
4139
4140 if ($snmp) {
4141 my %esm_oid
4142 = (
4143 '1.3.6.1.4.1.674.10892.1.300.40.1.7.1' => 'eventLogSeverityStatus',
4144 );
4145 my $result = $snmp_session->get_entries(-columns => [keys %esm_oid]);
4146
4147 # No entries is OK
4148 return if !defined $result;
4149
4150 @output = @{ get_snmp_output($result, \%esm_oid) };
4151 foreach my $out (@output) {
4152 ++$count{esm}{$snmp_status{$out->{eventLogSeverityStatus}}};
4153 }
4154 }
4155 else {
4156 @output = @{ run_omreport("$omopt_system esmlog") };
4157 foreach my $out (@output) {
4158 ++$count{esm}{$out->{Severity}};
4159 }
4160 }
4161
4162 # Create error messages and set exit value if appropriate
4163 my $err = 0;
4164 if ($count{esm}{'Critical'} > 0) { $err = $E_CRITICAL; }
4165 elsif ($count{esm}{'Non-Critical'} > 0) { $err = $E_WARNING; }
4166
4167 my $msg = sprintf 'ESM log content: %d critical, %d non-critical, %d ok',
4168 $count{esm}{'Critical'}, $count{esm}{'Non-Critical'}, $count{esm}{'Ok'};
4169 report('other', $msg, $err);
4170
4171 return;
4172}
4173
4174#
4175# Handy function for checking all storage components
4176#
4177sub check_storage {
4178 check_controllers();
4179 check_physical_disks();
4180 check_virtual_disks();
4181 check_cache_battery();
4182 check_connectors();
4183 check_enclosures();
4184 check_enclosure_fans();
4185 check_enclosure_pwr();
4186 check_enclosure_temp();
4187 check_enclosure_emms();
4188 return;
4189}
4190
4191
4192
4193#---------------------------------------------------------------------
4194# Info functions
4195#---------------------------------------------------------------------
4196
4197#
4198# Fetch output from 'omreport chassis info', put in sysinfo hash
4199#
4200sub get_omreport_chassis_info {
4201 if (open my $INFO, '-|', "$omreport $omopt_chassis info -fmt ssv") {
4202 my @lines = <$INFO>;
4203 close $INFO;
4204 foreach (@lines) {
14ec7014 4205 next if !m/\A (Chassis\sModel|Chassis\sService\sTag|Model|Service\sTag|System\sRevision)/xms;
669797e1 4206 my ($key, $val) = split /;/xms;
4207 $key =~ s{\s+\z}{}xms; # remove trailing whitespace
4208 $val =~ s{\s+\z}{}xms; # remove trailing whitespace
4209 if ($key eq 'Chassis Model' or $key eq 'Model') {
4210 $sysinfo{model} = $val;
4211 }
4212 if ($key eq 'Chassis Service Tag' or $key eq 'Service Tag') {
4213 $sysinfo{serial} = $val;
4214 }
62cd5524 4215 if ($key eq 'System Revision') {
51449135 4216 $sysinfo{rev} = q{ } . $val;
62cd5524 4217 }
669797e1 4218 }
4219 }
4220 return;
4221}
4222
4223#
4224# Fetch output from 'omreport chassis bios', put in sysinfo hash
4225#
4226sub get_omreport_chassis_bios {
4227 if (open my $BIOS, '-|', "$omreport $omopt_chassis bios -fmt ssv") {
4228 my @lines = <$BIOS>;
4229 close $BIOS;
4230 foreach (@lines) {
4231 next if !m/;/xms;
4232 my ($key, $val) = split /;/xms;
4233 $key =~ s{\s+\z}{}xms; # remove trailing whitespace
4234 $val =~ s{\s+\z}{}xms; # remove trailing whitespace
4235 $sysinfo{bios} = $val if $key eq 'Version';
4236 $sysinfo{biosdate} = $val if $key eq 'Release Date';
4237 }
4238 }
4239 return;
4240}
4241
4242#
4243# Fetch output from 'omreport system operatingsystem', put in sysinfo hash
4244#
4245sub get_omreport_system_operatingsystem {
4246 if (open my $VER, '-|', "$omreport $omopt_system operatingsystem -fmt ssv") {
4247 my @lines = <$VER>;
4248 close $VER;
4249 foreach (@lines) {
4250 next if !m/;/xms;
4251 my ($key, $val) = split /;/xms;
4252 $key =~ s{\s+\z}{}xms; # remove trailing whitespace
4253 $val =~ s{\s+\z}{}xms; # remove trailing whitespace
4254 if ($key eq 'Operating System') {
4255 $sysinfo{osname} = $val;
4256 }
4257 elsif ($key eq 'Operating System Version') {
4258 $sysinfo{osver} = $val;
4259 }
4260 }
4261 }
4262 return;
4263}
4264
4265#
4266# Fetch output from 'omreport about', put in sysinfo hash
4267#
4268sub get_omreport_about {
4269 if (open my $OM, '-|', "$omreport about -fmt ssv") {
4270 my @lines = <$OM>;
4271 close $OM;
4272 foreach (@lines) {
4273 if (m/\A Version;(.+) \z/xms) {
4274 $sysinfo{om} = $1;
4275 chomp $sysinfo{om};
4276 }
4277 }
4278 }
4279 return;
4280}
4281
4282#
4283# Fetch chassis info via SNMP, put in sysinfo hash
4284#
4285sub get_snmp_chassis_info {
4286 my %chassis_oid
4287 = (
4288 '1.3.6.1.4.1.674.10892.1.300.10.1.9.1' => 'chassisModelName',
4289 '1.3.6.1.4.1.674.10892.1.300.10.1.11.1' => 'chassisServiceTagName',
62cd5524 4290 '1.3.6.1.4.1.674.10892.1.300.10.1.48.1' => 'chassisSystemRevisionName',
669797e1 4291 );
4292
4293 my $chassisInformationTable = '1.3.6.1.4.1.674.10892.1.300.10.1';
4294 my $result = $snmp_session->get_table(-baseoid => $chassisInformationTable);
4295
4296 if (defined $result) {
4297 foreach my $oid (keys %{ $result }) {
4298 if (exists $chassis_oid{$oid} and $chassis_oid{$oid} eq 'chassisModelName') {
4299 $sysinfo{model} = $result->{$oid};
4300 $sysinfo{model} =~ s{\s+\z}{}xms; # remove trailing whitespace
4301 }
4302 elsif (exists $chassis_oid{$oid} and $chassis_oid{$oid} eq 'chassisServiceTagName') {
4303 $sysinfo{serial} = $result->{$oid};
4304 }
62cd5524 4305 elsif (exists $chassis_oid{$oid} and $chassis_oid{$oid} eq 'chassisSystemRevisionName') {
51449135 4306 $sysinfo{rev} = q{ } . $result->{$oid};
62cd5524 4307 }
669797e1 4308 }
4309 }
4310 else {
4311 my $msg = sprintf 'SNMP ERROR getting chassis info: %s',
4312 $snmp_session->error;
4313 report('other', $msg, $E_UNKNOWN);
4314 }
4315 return;
4316}
4317
4318#
4319# Fetch BIOS info via SNMP, put in sysinfo hash
4320#
4321sub get_snmp_chassis_bios {
4322 my %bios_oid
4323 = (
4324 '1.3.6.1.4.1.674.10892.1.300.50.1.7.1.1' => 'systemBIOSReleaseDateName',
4325 '1.3.6.1.4.1.674.10892.1.300.50.1.8.1.1' => 'systemBIOSVersionName',
4326 );
4327
4328 my $systemBIOSTable = '1.3.6.1.4.1.674.10892.1.300.50.1';
4329 my $result = $snmp_session->get_table(-baseoid => $systemBIOSTable);
4330
4331 if (defined $result) {
4332 foreach my $oid (keys %{ $result }) {
4333 if (exists $bios_oid{$oid} and $bios_oid{$oid} eq 'systemBIOSReleaseDateName') {
4334 $sysinfo{biosdate} = $result->{$oid};
4335 $sysinfo{biosdate} =~ s{\A (\d{4})(\d{2})(\d{2}).*}{$2/$3/$1}xms;
4336 }
4337 elsif (exists $bios_oid{$oid} and $bios_oid{$oid} eq 'systemBIOSVersionName') {
4338 $sysinfo{bios} = $result->{$oid};
4339 }
4340 }
4341 }
4342 else {
4343 my $msg = sprintf 'SNMP ERROR getting BIOS info: %s',
4344 $snmp_session->error;
4345 report('other', $msg, $E_UNKNOWN);
4346 }
4347 return;
4348}
4349
4350#
4351# Fetch OS info via SNMP, put in sysinfo hash
4352#
4353sub get_snmp_system_operatingsystem {
4354 my %os_oid
4355 = (
4356 '1.3.6.1.4.1.674.10892.1.400.10.1.6.1' => 'operatingSystemOperatingSystemName',
4357 '1.3.6.1.4.1.674.10892.1.400.10.1.7.1' => 'operatingSystemOperatingSystemVersionName',
4358 );
4359
4360 my $operatingSystemTable = '1.3.6.1.4.1.674.10892.1.400.10.1';
4361 my $result = $snmp_session->get_table(-baseoid => $operatingSystemTable);
4362
4363 if (defined $result) {
4364 foreach my $oid (keys %{ $result }) {
4365 if (exists $os_oid{$oid} and $os_oid{$oid} eq 'operatingSystemOperatingSystemName') {
4366 $sysinfo{osname} = ($result->{$oid});
4367 }
4368 elsif (exists $os_oid{$oid} and $os_oid{$oid} eq 'operatingSystemOperatingSystemVersionName') {
4369 $sysinfo{osver} = $result->{$oid};
4370 }
4371 }
4372 }
4373 else {
4374 my $msg = sprintf 'SNMP ERROR getting OS info: %s',
4375 $snmp_session->error;
4376 report('other', $msg, $E_UNKNOWN);
4377 }
4378 return;
4379}
4380
4381#
4382# Fetch OMSA version via SNMP, put in sysinfo hash
4383#
4384sub get_snmp_about {
00d4098a 4385 # systemManagementSoftwareGlobalVersionName
4386 my $oid = '1.3.6.1.4.1.674.10892.1.100.10.0';
4387 my $result = $snmp_session->get_request(-varbindlist => [$oid]);
4388
df0b121b 4389 if (defined $result) {
4390 $sysinfo{om} = exists $result->{$oid} && $result->{$oid} ne q{}
4391 ? $result->{$oid} : 'unknown';
669797e1 4392 }
4393 else {
df0b121b 4394 my $msg = sprintf 'SNMP ERROR: Getting OMSA version failed: %s', $snmp_session->error;
4395 report('other', $msg, $E_UNKNOWN);
669797e1 4396 }
4397 return;
4398}
4399
4400#
4401# Collects some information about the system
4402#
4403sub get_sysinfo
4404{
4405 # Get system model and serial number
4406 $snmp ? get_snmp_chassis_info() : get_omreport_chassis_info();
4407
4408 # Get BIOS information. Only if needed
4409 if ( $opt{okinfo} >= 1
4410 or $opt{debug}
4411 or (defined $opt{postmsg} and $opt{postmsg} =~ m/[%][bd]/xms) ) {
4412 $snmp ? get_snmp_chassis_bios() : get_omreport_chassis_bios();
4413 }
4414
f711f8c7 4415 # Get OMSA information. Only if needed
4416 if ($opt{okinfo} >= 3 or $opt{debug}) {
4417 $snmp ? get_snmp_about() : get_omreport_about();
4418 }
4419
669797e1 4420 # Return now if debug
4421 return if $opt{debug};
4422
4423 # Get OS information. Only if needed
4424 if (defined $opt{postmsg} and $opt{postmsg} =~ m/[%][or]/xms) {
4425 $snmp ? get_snmp_system_operatingsystem() : get_omreport_system_operatingsystem();
4426 }
4427
669797e1 4428 return;
4429}
4430
4431
4432# Helper function for running omreport when the results are strictly
4433# name=value pairs.
4434sub run_omreport_info {
4435 my $command = shift;
4436 my %output = ();
4437 my @keys = ();
4438
4439 # Run omreport and fetch output
4440 my $rawtext = slurp_command("$omreport $command -fmt ssv 2>&1");
4441
4442 # Parse output, store in array
4443 for ((split /\n/xms, $rawtext)) {
4444 if (m/\A Error/xms) {
4445 my $msg = "Problem running 'omreport $command': $_";
4446 report('other', $msg, $E_UNKNOWN);
4447 }
4448 next if !m/;/xms; # ignore lines with less than two fields
4449 my @vals = split m/;/xms;
4450 $output{$vals[0]} = $vals[1];
4451 }
4452
4453 # Finally, return the collected information
4454 return \%output;
4455}
4456
4457# Get various firmware information (BMC, RAC)
4458sub get_firmware_info {
4459 my @snmp_output = ();
4460 my %nrpe_output = ();
4461
4462 if ($snmp) {
4463 my %fw_oid
4464 = (
4465 '1.3.6.1.4.1.674.10892.1.300.60.1.7.1' => 'firmwareType',
4466 '1.3.6.1.4.1.674.10892.1.300.60.1.8.1' => 'firmwareTypeName',
4467 '1.3.6.1.4.1.674.10892.1.300.60.1.11.1' => 'firmwareVersionName',
4468 );
4469
4470 my $firmwareTable = '1.3.6.1.4.1.674.10892.1.300.60.1';
4471 my $result = $snmp_session->get_table(-baseoid => $firmwareTable);
4472
4473 # Some don't have this OID, this is ok
4474 if (!defined $result) {
4475 return;
4476 }
4477
4478 @snmp_output = @{ get_snmp_output($result, \%fw_oid) };
4479 }
4480 else {
4481 %nrpe_output = %{ run_omreport_info("$omopt_chassis info") };
4482 }
4483
4484 my %fw_type # Firmware types
4485 = (
4486 1 => 'other', # other than following values
4487 2 => 'unknown', # unknown
4488 3 => 'systemBIOS', # System BIOS
4489 4 => 'embeddedSystemManagementController', # Embedded System Management Controller
4490 5 => 'powerSupplyParallelingBoard', # Power Supply Paralleling Board
4491 6 => 'systemBackPlane', # System (Primary) Backplane
4492 7 => 'powerVault2XXSKernel', # PowerVault 2XXS Kernel
4493 8 => 'powerVault2XXSApplication', # PowerVault 2XXS Application
4494 9 => 'frontPanel', # Front Panel Controller
4495 10 => 'baseboardManagementController', # Baseboard Management Controller
4496 11 => 'hotPlugPCI', # Hot Plug PCI Controller
4497 12 => 'sensorData', # Sensor Data Records
4498 13 => 'peripheralBay', # Peripheral Bay Backplane
4499 14 => 'secondaryBackPlane', # Secondary Backplane for ESM 2 systems
4500 15 => 'secondaryBackPlaneESM3And4', # Secondary Backplane for ESM 3 and 4 systems
4501 16 => 'rac', # Remote Access Controller
4502 17 => 'imc' # Integrated Management Controller
4503 );
4504
4505
4506 if ($snmp) {
4507 foreach my $out (@snmp_output) {
4508 if ($fw_type{$out->{firmwareType}} eq 'baseboardManagementController') {
4509 $sysinfo{'bmc'} = 1;
4510 $sysinfo{'bmc_fw'} = $out->{firmwareVersionName};
4511 }
4512 elsif ($fw_type{$out->{firmwareType}} =~ m{\A rac|imc \z}xms) {
4513 my $name = $out->{firmwareTypeName}; $name =~ s/\s//gxms;
4514 $sysinfo{'rac'} = 1;
4515 $sysinfo{'rac_name'} = $name;
4516 $sysinfo{'rac_fw'} = $out->{firmwareVersionName};
4517 }
4518 }
4519 }
4520 else {
4521 foreach my $key (keys %nrpe_output) {
4522 next if !defined $nrpe_output{$key};
4523 if ($key eq 'BMC Version' or $key eq 'Baseboard Management Controller Version') {
4524 $sysinfo{'bmc'} = 1;
4525 $sysinfo{'bmc_fw'} = $nrpe_output{$key};
4526 }
4527 elsif ($key =~ m{\A (i?DRAC)\s*(\d?)\s+Version}xms) {
4528 my $name = "$1$2";
4529 $sysinfo{'rac'} = 1;
4530 $sysinfo{'rac_fw'} = $nrpe_output{$key};
4531 $sysinfo{'rac_name'} = $name;
4532 }
4533 }
4534 }
4535
4536 return;
4537}
4538
4539
4540
4541#=====================================================================
4542# Main program
4543#=====================================================================
4544
4545# Here we do the actual checking of components
4546# Check global status if applicable
4547if ($global) {
4548 $globalstatus = check_global();
4549}
4550
4551# Do multiple selected checks
4552if ($check{storage}) { check_storage(); }
4553if ($check{memory}) { check_memory(); }
4554if ($check{fans}) { check_fans(); }
4555if ($check{power}) { check_powersupplies(); }
4556if ($check{temp}) { check_temperatures(); }
4557if ($check{cpu}) { check_processors(); }
4558if ($check{voltage}) { check_volts(); }
4559if ($check{batteries}) { check_batteries(); }
4560if ($check{amperage}) { check_pwrmonitoring(); }
4561if ($check{intrusion}) { check_intrusion(); }
40619bb3 4562if ($check{sdcard}) { check_sdcard(); }
669797e1 4563if ($check{alertlog}) { check_alertlog(); }
4564if ($check{esmlog}) { check_esmlog(); }
4565if ($check{esmhealth}) { check_esmlog_health(); }
4566
4567
4568#---------------------------------------------------------------------
4569# Finish up
4570#---------------------------------------------------------------------
4571
4572# Counter variable
4573%nagios_alert_count
4574 = (
4575 'OK' => 0,
4576 'WARNING' => 0,
4577 'CRITICAL' => 0,
4578 'UNKNOWN' => 0,
4579 );
4580
4581# Get system information
4582get_sysinfo();
4583
4584# Get firmware info if requested via option
4585if ($opt{okinfo} >= 1) {
4586 get_firmware_info();
4587}
4588
4589# Close SNMP session
4590if ($snmp) {
4591 $snmp_session->close;
4592}
4593
4594# Print messages
4595if ($opt{debug}) {
28faa168 4596 # finding the mode of operation
4597 my $mode = 'local';
4598 if ($snmp) {
4599 # Setting the domain (IP version and transport protocol)
4600 my $transport = $opt{tcp} ? 'TCP' : 'UDP';
4601 my $ipversion = $opt{ipv6} ? 'IPv6' : 'IPv4';
4602 $mode = "SNMPv$opt{protocol} $transport/$ipversion";
4603 }
4604
8e4b7bdf 4605 print " System: $sysinfo{model}$sysinfo{rev}";
4606 print q{ } x (25 - length "$sysinfo{model}$sysinfo{rev}"), "OMSA version: $sysinfo{om}\n";
f711f8c7 4607 print " ServiceTag: $sysinfo{serial}";
8e4b7bdf 4608 print q{ } x (25 - length $sysinfo{serial}), "Plugin version: $VERSION\n";
f711f8c7 4609 print " BIOS/date: $sysinfo{bios} $sysinfo{biosdate}";
6d25e2af 4610 print q{ } x (25 - length "$sysinfo{bios} $sysinfo{biosdate}"), "Operation mode: $mode\n";
669797e1 4611 if ($#report_storage >= 0) {
4612 print "-----------------------------------------------------------------------------\n";
4613 print " Storage Components \n";
4614 print "=============================================================================\n";
4615 print " STATE | ID | MESSAGE TEXT \n";
4616 print "---------+----------+--------------------------------------------------------\n";
4617 foreach (@report_storage) {
4618 my ($msg, $level, $nexus) = @{$_};
4619 print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | "
4620 . q{ } x (8 - length $nexus) . "$nexus | $msg\n";
4621 $nagios_alert_count{$reverse_exitcode{$level}}++;
4622 }
4623 }
4624 if ($#report_chassis >= 0) {
4625 print "-----------------------------------------------------------------------------\n";
4626 print " Chassis Components \n";
4627 print "=============================================================================\n";
1d003803 4628 print " STATE | ID | MESSAGE TEXT \n";
669797e1 4629 print "---------+------+------------------------------------------------------------\n";
4630 foreach (@report_chassis) {
4631 my ($msg, $level, $nexus) = @{$_};
4632 print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | "
4633 . q{ } x (4 - length $nexus) . "$nexus | $msg\n";
4634 $nagios_alert_count{$reverse_exitcode{$level}}++;
4635 }
4636 }
4637 if ($#report_other >= 0) {
4638 print "-----------------------------------------------------------------------------\n";
4639 print " Other messages \n";
4640 print "=============================================================================\n";
4641 print " STATE | MESSAGE TEXT \n";
4642 print "---------+-------------------------------------------------------------------\n";
4643 foreach (@report_other) {
4644 my ($msg, $level, $nexus) = @{$_};
4645 print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | $msg\n";
4646 $nagios_alert_count{$reverse_exitcode{$level}}++;
4647 }
4648 }
4649}
4650else {
4651 my $c = 0; # counter to determine linebreaks
4652
4653 # Run through each message, sorted by severity level
4654 ALERT:
4655 foreach (sort {$a->[1] < $b->[1]} (@report_storage, @report_chassis, @report_other)) {
4656 my ($msg, $level, $nexus) = @{ $_ };
4657 next ALERT if $level == $E_OK;
4658
4659 if (defined $opt{only}) {
4660 # If user wants only critical alerts
4661 next ALERT if ($opt{only} eq 'critical' and $level == $E_WARNING);
4662
4663 # If user wants only warning alerts
4664 next ALERT if ($opt{only} eq 'warning' and $level == $E_CRITICAL);
4665 }
4666
4667 # Prefix with service tag if specified with option '-i|--info'
4668 if ($opt{info}) {
4669 if (defined $opt{htmlinfo}) {
4670 $msg = '[<a href="' . warranty_url($sysinfo{serial})
4671 . "\">$sysinfo{serial}</a>] " . $msg;
4672 }
4673 else {
4674 $msg = "[$sysinfo{serial}] " . $msg;
4675 }
4676 }
4677
4678 # Prefix with nagios level if specified with option '--state'
4679 $msg = $reverse_exitcode{$level} . ": $msg" if $opt{state};
4680
4681 # Prefix with one-letter nagios level if specified with option '--short-state'
4682 $msg = (substr $reverse_exitcode{$level}, 0, 1) . ": $msg" if $opt{shortstate};
4683
4684 ($c++ == 0) ? print $msg : print $linebreak, $msg;
4685
4686 $nagios_alert_count{$reverse_exitcode{$level}}++;
4687 }
4688}
4689
4690# Determine our exit code
4691$exit_code = $E_OK;
4692$exit_code = $E_UNKNOWN if $nagios_alert_count{'UNKNOWN'} > 0;
4693$exit_code = $E_WARNING if $nagios_alert_count{'WARNING'} > 0;
4694$exit_code = $E_CRITICAL if $nagios_alert_count{'CRITICAL'} > 0;
4695
4696# Global status via SNMP.. extra safety check
4697if ($globalstatus != $E_OK && $exit_code == $E_OK && !defined $opt{only}) {
4698 print "OOPS! Something is wrong with this server, but I don't know what. ";
4699 print "The global system health status is $reverse_exitcode{$globalstatus}, ";
4700 print "but every component check is OK. This may be a bug in the Nagios plugin, ";
4701 print "please file a bug report.\n";
4702 exit $E_UNKNOWN;
4703}
4704
4705# Print OK message
4706if ($exit_code == $E_OK && defined $opt{only} && $opt{only} !~ m{\A critical|warning|chassis \z}xms && !$opt{debug}) {
4707 my %okmsg
4708 = ( 'storage' => "STORAGE OK - $count{pdisk} physical drives, $count{vdisk} logical drives",
4709 'fans' => $count{fan} == 0 && $blade ? 'OK - blade system with no fan probes' : "FANS OK - $count{fan} fan probes checked",
4710 'temp' => "TEMPERATURES OK - $count{temp} temperature probes checked",
14e95f92 4711 'memory' => "MEMORY OK - $count{dimm} memory modules, $count{mem} MB total memory",
669797e1 4712 'power' => $count{power} == 0 ? 'OK - no instrumented power supplies found' : "POWER OK - $count{power} power supplies checked",
4713 'cpu' => "PROCESSORS OK - $count{cpu} processors checked",
4714 'voltage' => "VOLTAGE OK - $count{volt} voltage probes checked",
4715 'batteries' => $count{bat} == 0 ? 'OK - no batteries found' : "BATTERIES OK - $count{bat} batteries checked",
4716 'amperage' => $count{amp} == 0 ? 'OK - no power monitoring probes found' : "AMPERAGE OK - $count{amp} amperage (power monitoring) probes checked",
4717 'intrusion' => $count{intr} == 0 ? 'OK - no intrusion detection probes found' : "INTRUSION OK - $count{intr} intrusion detection probes checked",
4718 'alertlog' => $snmp ? 'OK - not supported via snmp' : "OK - Alert Log content: $count{alert}{Ok} ok, $count{alert}{'Non-Critical'} warning and $count{alert}{Critical} critical",
4719 'esmlog' => "OK - ESM Log content: $count{esm}{Ok} ok, $count{esm}{'Non-Critical'} warning and $count{esm}{Critical} critical",
4720 'esmhealth' => "ESM LOG OK - less than 80% used",
e62ffb8b 4721 'sdcard' => "SD CARDS OK - $count{sd} SD cards installed",
669797e1 4722 );
4723
4724 print $okmsg{$opt{only}};
4725}
4726elsif ($exit_code == $E_OK && !$opt{debug}) {
4727 if (defined $opt{htmlinfo}) {
62cd5524 4728 printf q{OK - System: '<a href="%s">%s%s</a>', SN: '<a href="%s">%s</a>'},
51449135 4729 documentation_url($sysinfo{model}), $sysinfo{model}, $sysinfo{rev},
4730 warranty_url($sysinfo{serial}), $sysinfo{serial};
669797e1 4731 }
4732 else {
62cd5524 4733 printf q{OK - System: '%s%s', SN: '%s'},
51449135 4734 $sysinfo{model}, $sysinfo{rev}, $sysinfo{serial};
669797e1 4735 }
4736
14e95f92 4737 if ($check{memory}) {
4738 my $unit = 'MB';
4739 if ($count{mem} >= 1024) {
4740 $count{mem} /= 1024;
4741 $unit = 'GB';
4742 }
4743 printf ', %d %s ram (%d dimms)', $count{mem}, $unit, $count{dimm};
4744 }
4745 else {
4746 print ', not checking memory';
4747 }
4748
669797e1 4749 if ($check{storage}) {
4750 printf ', %d logical drives, %d physical drives',
4751 $count{vdisk}, $count{pdisk};
4752 }
4753 else {
4754 print ', not checking storage';
4755 }
4756
4757 if ($opt{okinfo} >= 1) {
4758 print $linebreak;
4759 printf q{----- BIOS='%s %s'}, $sysinfo{bios}, $sysinfo{biosdate};
4760
4761 if ($sysinfo{rac}) {
4762 printf q{, %s='%s'}, $sysinfo{rac_name}, $sysinfo{rac_fw};
4763 }
4764 if ($sysinfo{bmc}) {
4765 printf q{, BMC='%s'}, $sysinfo{bmc_fw};
4766 }
4767 }
4768
4769 if ($opt{okinfo} >= 2) {
4770 if ($check{storage}) {
4771 my @storageprint = ();
4772 foreach my $id (sort keys %{ $sysinfo{controller} }) {
4773 chomp $sysinfo{controller}{$id}{driver};
956cf4d1 4774 my $msg = sprintf q{----- Ctrl %s [%s]: Fw='%s', Dr='%s'},
669797e1 4775 $sysinfo{controller}{$id}{id}, $sysinfo{controller}{$id}{name},
4776 $sysinfo{controller}{$id}{firmware}, $sysinfo{controller}{$id}{driver};
956cf4d1 4777 if (defined $sysinfo{controller}{$id}{storport}) {
4778 $msg .= sprintf q{, Storport: '%s'}, $sysinfo{controller}{$id}{storport};
4779 }
4780 push @storageprint, $msg;
669797e1 4781 }
4782 foreach my $id (sort keys %{ $sysinfo{enclosure} }) {
956cf4d1 4783 push @storageprint, sprintf q{----- Encl %s [%s]: Fw='%s'},
669797e1 4784 $sysinfo{enclosure}{$id}->{id}, $sysinfo{enclosure}{$id}->{name},
4785 $sysinfo{enclosure}{$id}->{firmware};
4786 }
4787
4788 # print stuff
4789 foreach my $line (@storageprint) {
4790 print $linebreak, $line;
4791 }
4792 }
4793 }
4794
4795 if ($opt{okinfo} >= 3) {
4796 print "$linebreak----- OpenManage Server Administrator (OMSA) version: '$sysinfo{om}'";
4797 }
4798
4799}
4800else {
4801 if ($opt{extinfo}) {
4802 print $linebreak;
4803 if (defined $opt{htmlinfo}) {
62cd5524 4804 printf '------ SYSTEM: <a href="%s">%s%s</a>, SN: <a href="%s">%s</a>',
51449135 4805 documentation_url($sysinfo{model}), $sysinfo{model}, $sysinfo{rev},
4806 warranty_url($sysinfo{serial}), $sysinfo{serial};
669797e1 4807 }
4808 else {
62cd5524 4809 printf '------ SYSTEM: %s%s, SN: %s',
51449135 4810 $sysinfo{model}, $sysinfo{rev}, $sysinfo{serial};
669797e1 4811 }
4812 }
4813 if (defined $opt{postmsg}) {
4814 my $post = undef;
4815 if (-f $opt{postmsg}) {
4816 open my $POST, '<', $opt{postmsg}
4817 or ( print $linebreak
4818 and print "ERROR: Couldn't open post message file $opt{postmsg}: $!\n"
4819 and exit $E_UNKNOWN );
4820 $post = <$POST>;
4821 close $POST;
4822 chomp $post;
4823 }
4824 else {
4825 $post = $opt{postmsg};
4826 }
4827 if (defined $post) {
4828 print $linebreak;
4829 $post =~ s{[%]s}{$sysinfo{serial}}gxms;
51449135 4830 $post =~ s{[%]m}{$sysinfo{model}$sysinfo{rev}}gxms;
669797e1 4831 $post =~ s{[%]b}{$sysinfo{bios}}gxms;
4832 $post =~ s{[%]d}{$sysinfo{biosdate}}gxms;
4833 $post =~ s{[%]o}{$sysinfo{osname}}gxms;
4834 $post =~ s{[%]r}{$sysinfo{osver}}gxms;
4835 $post =~ s{[%]p}{$count{pdisk}}gxms;
4836 $post =~ s{[%]l}{$count{vdisk}}gxms;
4837 $post =~ s{[%]n}{$linebreak}gxms;
4838 $post =~ s{[%]{2}}{%}gxms;
4839 print $post;
4840 }
4841 }
4842}
4843
7c03958b 4844# Reset the WARN signal
4845$SIG{__WARN__} = 'DEFAULT';
4846
cbbc270f 4847# Print any perl warnings that have occured
4848if (@perl_warnings) {
4849 foreach (@perl_warnings) {
4850 chop @$_;
4851 print "${linebreak}INTERNAL ERROR: @$_";
4852 }
4853 $exit_code = $E_UNKNOWN;
4854}
4855
669797e1 4856# Print performance data
48aeec0b 4857if (defined $opt{perfdata} && !$opt{debug} && @perfdata) {
669797e1 4858 my $lb = $opt{perfdata} eq 'multiline' ? "\n" : q{ }; # line break for perfdata
4859 print q{|};
4860
48aeec0b 4861 # Sort routine for performance data
4862 sub perfsort {
4863 my %order = ( fan => 0, pwr => 1, tem => 2, enc => 3, );
4864 return ($order{(substr $a->{label}, 0, 3)} cmp $order{(substr $b->{label}, 0, 3)}) ||
4865 $a->{label} cmp $b->{label};
669797e1 4866 }
4867
48aeec0b 4868 # Print performance data sorted
4869 my $type = $opt{perfdata} eq 'minimal' ? 'mini' : 'label';
60fd6896 4870 print join $lb, map { "$_->{$type}=$_->{value};$_->{warn};$_->{crit}" } sort perfsort @perfdata;
669797e1 4871}
e133d101 4872
4873# Print a linebreak at the end
669797e1 4874print "\n" if !$opt{debug};
4875
4876# Exit with proper exit code
4877exit $exit_code;