]> git.uio.no Git - check_openmanage.git/blob - check_openmanage
* version 3.6.4-beta3
[check_openmanage.git] / check_openmanage
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 #
10 # Copyright (C) 2008-2010 Trond H. Amundsen
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
26 require 5.006;  # Perl v5.6.0 or newer is required
27 use strict;
28 use warnings;
29 use POSIX qw(isatty ceil);
30 use Getopt::Long qw(:config no_ignore_case);
31
32 # Global (package) variables used throughout the code
33 use 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
37              $exit_code $snmp
38              %check %opt %reverse_exitcode %status2nagios
39              %snmp_status %snmp_probestatus %probestatus2nagios %sysinfo
40              %blacklist %nagios_alert_count %count %snmp_enclosure %snmp_controller
41              @perl_warnings @controllers @enclosures @perfdata
42              @report_storage @report_chassis @report_other
43           );
44
45 #---------------------------------------------------------------------
46 # Initialization and global variables
47 #---------------------------------------------------------------------
48
49 # Collect perl warnings in an array
50 $SIG{__WARN__} = sub { push @perl_warnings, [@_]; };
51
52 # Version and similar info
53 $NAME    = 'check_openmanage';
54 $VERSION = '3.6.4-beta3';
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";
69 Usage: $NAME [OPTION]...
70 END_USAGE
71
72 # Help text
73 $HELP = <<'END_HELP';
74
75 GENERAL OPTIONS:
76
77    -p, --perfdata      Output performance data [default=no]
78    -t, --timeout       Plugin timeout in seconds [default=30]
79    -c, --critical      Custom temperature critical limits
80    -w, --warning       Custom temperature warning limits
81    -d, --debug         Debug output, reports everything
82    -h, --help          Display this help text
83    -V, --version       Display version info
84
85 SNMP OPTIONS:
86
87    -H, --hostname      Hostname or IP (required for SNMP)
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]
93
94 OUTPUT 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
99    -S, --short-state   Prefix alerts with alert state abbreviated
100    -o, --okinfo        Verbosity when check result is OK
101    -I, --htmlinfo      HTML output with clickable links
102
103 CHECK 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
109    --no-storage        Don't check storage
110
111 For more information and advanced options, see the manual page or URL:
112   http://folk.uio.no/trondham/software/check_openmanage.html
113 END_HELP
114
115 # Version and license text
116 $LICENSE = <<"END_LICENSE";
117 $NAME $VERSION
118 Copyright (C) 2008-2010 $AUTHOR
119 License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>
120 This is free software: you are free to change and redistribute it.
121 There is NO WARRANTY, to the extent permitted by law.
122
123 Written by $AUTHOR <$CONTACT>
124 END_LICENSE
125
126 # Options with default values
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
146          'no_storage'        => 0,        # don't check storage
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
152          'ipv6'              => 0,        # default is IPv4
153          'tcp'               => 0,        # default is UDP
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
162        );
163
164 # Get options
165 GetOptions('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},
176            'I|htmlinfo:s'       => \$opt{htmlinfo},
177            'postmsg=s'          => \$opt{postmsg},
178            's|state'            => \$opt{state},
179            'S|short-state'      => \$opt{shortstate},
180            'o|ok-info=i'        => \$opt{okinfo},
181            'linebreak=s'        => \$opt{linebreak},
182            'a|all'              => \$opt{all},
183            'only=s'             => \$opt{only},
184            'no-storage'         => \$opt{no_storage},
185            'omreport=s'         => \$opt{omreport},
186            'port=i'             => \$opt{port},
187            'H|hostname=s'       => \$opt{hostname},
188            'C|community=s'      => \$opt{community},
189            'P|protocol=i'       => \$opt{protocol},
190            '6|ipv6'             => \$opt{ipv6},
191            'tcp'                => \$opt{tcp},
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},
199            'use-get_table'      => \$opt{use_get_table},
200           ) or do { print $USAGE; exit $E_UNKNOWN };
201
202 # If user requested help
203 if ($opt{help}) {
204     print $USAGE, $HELP;
205     exit $E_OK;
206 }
207
208 # If user requested version info
209 if ($opt{version}) {
210     print $LICENSE;
211     exit $E_OK;
212 }
213
214 # Setting timeout
215 $SIG{ALRM} = sub {
216     print "PLUGIN TIMEOUT: $NAME timed out after $opt{timeout} seconds\n";
217     exit $E_UNKNOWN;
218 };
219 alarm $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
242            'sdcard'      => 1,   # check removable flash media (SD cards)
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
249 $linebreak = isatty(*STDOUT) ? "\n" : '<br/>';
250
251 # Line break from option
252 if (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
265 if (!$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
273 %snmp_enclosure   = ();  # enclosures
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
290      'mem'    => 0, # total memory
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
295      'sd'     => 0, # number of SD cards
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
309 @perfdata = ();
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
383      'rev'      => q{},    # system revision
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
395 adjust_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
401 if (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
411 if ($snmp) {
412     snmp_initialize();    # initialize SNMP
413     snmp_check();         # check that SNMP works
414     snmp_detect_blade();  # detect blade via SNMP
415 }
416 else {
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 #
432 sub 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 #
451 sub 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 #
467 sub 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 #
484 sub 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
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";
501
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 {
576         print "ERROR: You need perl module Net::SNMP to run $NAME in SNMP mode\n";
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 #
586 sub 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) {
592         printf "SNMP CRITICAL: %s\n", $snmp_session->error;
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) {
598         print "ERROR: (SNMP) OpenManage is not installed or is not working correctly\n";
599         exit $E_UNKNOWN;
600     }
601     return;
602 }
603
604 #
605 # Detecting blade via SNMP
606 #
607 sub 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
614     if (exists $result->{$DellBaseBoardType} && $result->{$DellBaseBoardType} eq '3') {
615         $blade = 1;
616     }
617     return;
618 }
619
620 #
621 # Locate the omreport binary
622 #
623 sub find_omreport {
624     # If user has specified path to omreport
625     if (defined $opt{omreport} and -x $opt{omreport}) {
626         $omreport = qq{"$opt{omreport}"};
627         return;
628     }
629
630     # Possible full paths for omreport
631     my @omreport_paths
632       = (
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
635          '/opt/dell/srvadmin/oma/bin/omreport.sh',       # alternate on Linux
636          '/opt/dell/srvadmin/oma/bin/omreport',          # alternate on Linux
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
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
641         );
642
643     # Find the one to use
644   OMREPORT_PATH:
645     foreach my $bin (@omreport_paths) {
646         if (-x $bin) {
647             $omreport = qq{"$bin"};
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) {
655         print "ERROR: Dell OpenManage Server Administrator (OMSA) is not installed\n";
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 #
666 sub 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 #
691 sub 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 {} };
702                 chomp($tmp = <$BL>);
703                 close $BL;
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 #
732 sub adjust_checks {
733     my @cl = ();
734
735     # First, take the '--no-storage' option
736     if ($opt{no_storage}) {
737         $check{storage} = 0;
738     }
739
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         }
765         if (! exists $check{$opt{only}} && $opt{only} ne 'chassis') {
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 };
792                 chomp($tmp = <$CL>);
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 #
834 sub 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)
846           | No\sbattery\sprobes\sfound\son\sthis\ssystem               # No battery probes
847           | Invalid\scommand:\spwrmonitoring                           # Old hardware
848           | Hardware\sor\sfeature\snot\spresent\.                      # SD cards
849           | Invalid\scommand:\sremovableflashmedia                     # SD cards with old OMSA
850           | Error\sCorrection;                                         # Memory stuff. Not really an error (new in OMSA 6.4)
851 #          | Current\sprobes\snot\sfound                                # OMSA + RHEL5.4 bug
852 #          | No\scontrollers\sfound                                     # No RAID controller
853         }xms;
854
855     # Errors that are OK on blade servers
856     my $ok_blade_errors
857       = qr{
858               No\sfan\sprobes\sfound\son\sthis\ssystem   # No fan probes
859       }xms;
860
861     # Run omreport and fetch output
862     my $rawtext = slurp_command("$omreport $command -fmt ssv 2>&1");
863     return [] if !defined $rawtext;
864
865     # Workaround for Openmanage BUG introduced in OMSA 5.5.0
866     $rawtext =~ s{\n;}{;}gxms if $command eq 'storage controller';
867
868     # Report if no controllers found
869     if ($command eq 'storage controller' and $rawtext =~ m{No\scontrollers\sfound}xms) {
870         report('storage', 'Storage Error! No controllers found', $E_UNKNOWN);
871     }
872
873     # Openmanage sometimes puts a linebreak between "Error" and the
874     # actual error text
875     $rawtext =~ s{^Error\s*\n}{Error: }xms;
876
877     # Parse output, store in array
878     for ((split m{\n}xms, $rawtext)) {
879         if (m{\AError}xms) {
880             next if m{$ok_errors}xms;
881             next if ($blade and m{$ok_blade_errors}xms);
882             report('other', "Problem running 'omreport $command': $_", $E_UNKNOWN);
883         }
884
885         next if !m/(.*?;){2}/xms;  # ignore lines with less than 3 fields
886         my @vals = split /;/xms;
887         if ($vals[0] =~ m/\A (Index|ID|Severity|Processor|Current\sSpeed|Connector\sName) \z/xms) {
888             @keys = @vals;
889         }
890         else {
891             my $i = 0;
892             push @output, { map { $_ => $vals[$i++] } @keys };
893         }
894
895     }
896
897     # Finally, return the collected information
898     return \@output;
899 }
900
901 #
902 # Checks if a component is blacklisted. Returns 1 if the component is
903 # blacklisted, 0 otherwise. Takes two arguments:
904 #   arg1: component name
905 #   arg2: component id or index
906 #
907 sub blacklisted {
908     my $name = shift;  # component name
909     my $id   = shift;  # component id
910     my $ret  = 0;      # return value
911
912     if (defined $blacklist{$name}) {
913         foreach my $comp (@{ $blacklist{$name} }) {
914             if (defined $id and ($comp eq $id or uc($comp) eq 'ALL')) {
915                 $ret = 1;
916             }
917         }
918     }
919
920     return $ret;
921 }
922
923 # Converts the NexusID from SNMP to our version
924 sub convert_nexus {
925     my $nexus = shift;
926     $nexus =~ s{\A \\}{}xms;
927     $nexus =~ s{\\}{:}gxms;
928     return $nexus;
929 }
930
931 # Sets custom temperature thresholds based on user supplied options
932 sub custom_temperature_thresholds {
933     my $type   = shift; # type of threshold, either w (warning) or c (critical)
934     my %thres  = ();    # will contain the thresholds
935     my @limits = ();    # holds the input
936
937     my @opt =  $type eq 'w' ? @{ $opt{warning} } : @{ $opt{critical} };
938
939     if (scalar @opt >= 0) {
940         foreach my $t (@opt) {
941             my $tmp = q{};
942             if (-f $t) {
943                 open my $F, '<', $t
944                   or do { report('other', "Couldn't open temperature threshold file $t: $!",
945                                  $E_UNKNOWN) and return {} };
946                 $tmp = <$F>;
947                 close $F;
948             }
949             else {
950                 $tmp = $t;
951             }
952             push @limits, $tmp;
953         }
954     }
955
956     # Parse checklist string, put in hash
957     foreach my $th (@limits) {
958         my @tmp = split m{,}xms, $th;
959         foreach my $t (@tmp) {
960             next if $t !~ m{=}xms;
961             my ($key, $val) = split m{=}xms, $t;
962             if ($val =~ m{/}xms) {
963                 my ($max, $min) = split m{/}xms, $val;
964                 $thres{$key}{max} = $max;
965                 $thres{$key}{min} = $min;
966             }
967             else {
968                 $thres{$key}{max} = $val;
969             }
970         }
971     }
972
973     return \%thres;
974 }
975
976
977 # Gets the output from SNMP result according to the OIDs checked
978 sub get_snmp_output {
979     my ($result,$oidref) = @_;
980     my @temp   = ();
981     my @output = ();
982
983     foreach my $oid (keys %{ $result }) {
984         my $short = $oid;
985         $short =~ s{\s}{}gxms;                   # remove whitespace
986         $short =~ s{\A (.+) \. (\d+) \z}{$1}xms; # remove last number
987         my $id = $2;
988         if (exists $oidref->{$short}) {
989             $temp[$id]{$oidref->{$short}} = $result->{$oid};
990         }
991     }
992
993     # Remove any empty indexes
994     foreach my $out (@temp) {
995         if (defined $out) {
996             push @output, $out;
997         }
998     }
999
1000     return \@output;
1001 }
1002
1003
1004 # Map the controller or other item in-place
1005 sub map_item {
1006     my ($key, $val, $list)  = @_;
1007
1008     foreach my $lst (@{ $list }) {
1009         if (!exists $lst->{$key}) {
1010             $lst->{$key} = $val;
1011         }
1012     }
1013     return;
1014 }
1015
1016 # Return the URL for official Dell documentation for a specific
1017 # PowerEdge server
1018 sub documentation_url {
1019     my $model = shift;
1020
1021     # create model short form, e.g. "r710"
1022     $model =~ s{\A PowerEdge \s (.+?) \z}{lc($1)}exms;
1023
1024     # special case for blades (e.g. M600, M710), they have common
1025     # documentation
1026     $model =~ s{\A m\d+ \z}{m}xms;
1027
1028     return 'http://support.dell.com/support/edocs/systems/pe' . $model . '/';
1029 }
1030
1031 # Return the URL for warranty information for a server with a given
1032 # serial number (servicetag)
1033 sub warranty_url {
1034     my $tag = shift;
1035
1036     # Dell support sites for different parts of the world
1037     my %supportsite
1038       = (
1039          'emea' => 'http://support.euro.dell.com/support/topics/topic.aspx/emea/shared/support/my_systems_info/',
1040          'ap'   => 'http://supportapj.dell.com/support/topics/topic.aspx/ap/shared/support/my_systems_info/en/details?',
1041          'glob' => 'http://support.dell.com/support/topics/global.aspx/support/my_systems_info/details?',
1042         );
1043
1044     # warranty URLs for different country codes
1045     my %url
1046       = (
1047          # EMEA
1048          'at' => $supportsite{emea} . 'de/details?c=at&l=de&ServiceTag=',  # Austria
1049          'be' => $supportsite{emea} . 'nl/details?c=be&l=nl&ServiceTag=',  # Belgium
1050          'cz' => $supportsite{emea} . 'cs/details?c=cz&l=cs&ServiceTag=',  # Czech Republic
1051          'de' => $supportsite{emea} . 'de/details?c=de&l=de&ServiceTag=',  # Germany
1052          'dk' => $supportsite{emea} . 'da/details?c=dk&l=da&ServiceTag=',  # Denmark
1053          'es' => $supportsite{emea} . 'es/details?c=es&l=es&ServiceTag=',  # Spain
1054          'fi' => $supportsite{emea} . 'fi/details?c=fi&l=fi&ServiceTag=',  # Finland
1055          'fr' => $supportsite{emea} . 'fr/details?c=fr&l=fr&ServiceTag=',  # France
1056          'gr' => $supportsite{emea} . 'en/details?c=gr&l=el&ServiceTag=',  # Greece
1057          'it' => $supportsite{emea} . 'it/details?c=it&l=it&ServiceTag=',  # Italy
1058          'il' => $supportsite{emea} . 'en/details?c=il&l=en&ServiceTag=',  # Israel
1059          'me' => $supportsite{emea} . 'en/details?c=me&l=en&ServiceTag=',  # Middle East
1060          'no' => $supportsite{emea} . 'no/details?c=no&l=no&ServiceTag=',  # Norway
1061          'nl' => $supportsite{emea} . 'nl/details?c=nl&l=nl&ServiceTag=',  # The Netherlands
1062          'pl' => $supportsite{emea} . 'pl/details?c=pl&l=pl&ServiceTag=',  # Poland
1063          'pt' => $supportsite{emea} . 'en/details?c=pt&l=pt&ServiceTag=',  # Portugal
1064          'ru' => $supportsite{emea} . 'ru/details?c=ru&l=ru&ServiceTag=',  # Russia
1065          'se' => $supportsite{emea} . 'sv/details?c=se&l=sv&ServiceTag=',  # Sweden
1066          'uk' => $supportsite{emea} . 'en/details?c=uk&l=en&ServiceTag=',  # United Kingdom
1067          'za' => $supportsite{emea} . 'en/details?c=za&l=en&ServiceTag=',  # South Africa
1068          # America
1069          'br' => $supportsite{glob} . 'c=br&l=pt&ServiceTag=',  # Brazil
1070          'ca' => $supportsite{glob} . 'c=ca&l=en&ServiceTag=',  # Canada
1071          'mx' => $supportsite{glob} . 'c=mx&l=es&ServiceTag=',  # Mexico
1072          'us' => $supportsite{glob} . 'c=us&l=en&ServiceTag=',  # USA
1073          # Asia/Pacific
1074          'au' => $supportsite{ap} . 'c=au&l=en&ServiceTag=',  # Australia
1075          'cn' => $supportsite{ap} . 'c=cn&l=zh&ServiceTag=',  # China
1076          'in' => $supportsite{ap} . 'c=in&l=en&ServiceTag=',  # India
1077          # default fallback
1078          'XX' => $supportsite{glob} . 'ServiceTag=',  # default
1079         );
1080
1081     if (exists $url{$opt{htmlinfo}}) {
1082         return $url{$opt{htmlinfo}} . $tag;
1083     }
1084     else {
1085         return $url{XX} . $tag;
1086     }
1087 }
1088
1089
1090 # This helper function returns the corresponding value of a hash key,
1091 # but takes into account that the key may not exist
1092 sub get_hashval {
1093     my $key  = shift || return undef;
1094     my $hash = shift;
1095     return defined $hash->{$key} ? $hash->{$key} : "Undefined value $key";
1096 }
1097
1098 # Find component status from hash
1099 sub get_snmp_status {
1100     my $key  = shift || return 'Unknown';
1101     return exists $snmp_status{$key} ? $snmp_status{$key} : 'Unknown';
1102 }
1103
1104 # Find component status from hash
1105 sub get_snmp_probestatus {
1106     my $key  = shift || return 'Unknown';
1107     return exists $snmp_probestatus{$key} ? $snmp_probestatus{$key} : 'Unknown';
1108 }
1109
1110 # Check that a hash entry is defined and not an empty string. Return a
1111 # chosen string (parameter) if these conditions are not met
1112 sub get_nonempty_string {
1113     my $key  = shift;  # key to check
1114     my $hash = shift;  # hash where the key belongs
1115     my $alt  = shift;  # alternate return value
1116     if (defined $hash->{$key} and $hash->{$key} ne q{}) {
1117         return $hash->{$key};
1118     }
1119     return $alt;
1120 }
1121
1122
1123 #---------------------------------------------------------------------
1124 # Check functions
1125 #---------------------------------------------------------------------
1126
1127 #-----------------------------------------
1128 # Check global health status
1129 #-----------------------------------------
1130 sub check_global {
1131     my $health = $E_OK;
1132
1133     if ($snmp) {
1134         #
1135         # Checks global status, i.e. both storage and chassis
1136         #
1137         my $systemStateGlobalSystemStatus = '1.3.6.1.4.1.674.10892.1.200.10.1.2.1';
1138         my $result = $snmp_session->get_request(-varbindlist => [$systemStateGlobalSystemStatus]);
1139         if (!defined $result) {
1140             printf "SNMP ERROR [global]: %s\n", $snmp_error;
1141             exit $E_UNKNOWN;
1142         }
1143         $health = $status2nagios{get_snmp_status($result->{$systemStateGlobalSystemStatus})};
1144     }
1145     else {
1146         #
1147         # NB! This does not check storage, only chassis...
1148         #
1149         foreach (@{ run_command("$omreport $omopt_system -fmt ssv") }) {
1150             next if !m/;/xms;
1151             next if m/\A SEVERITY;COMPONENT/xms;
1152             if (m/\A (.+?);Main\sSystem(\sChassis)? /xms) {
1153                 $health = $status2nagios{$1};
1154                 last;
1155             }
1156         }
1157     }
1158
1159     # Return the status
1160     return $health;
1161 }
1162
1163
1164 #-----------------------------------------
1165 # STORAGE: Check controllers
1166 #-----------------------------------------
1167 sub check_controllers {
1168     return if blacklisted('ctrl', 'all');
1169
1170     my $nexus    = undef;
1171     my $name     = undef;
1172     my $state    = undef;
1173     my $status   = undef;
1174     my $minfw    = undef;
1175     my $mindr    = undef;
1176     my $firmware = undef;
1177     my $driver   = undef;
1178     my $minstdr  = undef;  # Minimum required Storport driver version
1179     my $stdr     = undef;  # Storport driver version
1180     my @output   = ();
1181
1182     if ($snmp) {
1183         my %ctrl_oid
1184           = (
1185              '1.3.6.1.4.1.674.10893.1.20.130.1.1.1'  => 'controllerNumber',
1186              '1.3.6.1.4.1.674.10893.1.20.130.1.1.2'  => 'controllerName',
1187              '1.3.6.1.4.1.674.10893.1.20.130.1.1.5'  => 'controllerState',
1188              '1.3.6.1.4.1.674.10893.1.20.130.1.1.8'  => 'controllerFWVersion',
1189              '1.3.6.1.4.1.674.10893.1.20.130.1.1.38' => 'controllerComponentStatus',
1190              '1.3.6.1.4.1.674.10893.1.20.130.1.1.39' => 'controllerNexusID',
1191              '1.3.6.1.4.1.674.10893.1.20.130.1.1.41' => 'controllerDriverVersion',
1192              '1.3.6.1.4.1.674.10893.1.20.130.1.1.44' => 'controllerMinFWVersion',
1193              '1.3.6.1.4.1.674.10893.1.20.130.1.1.45' => 'controllerMinDriverVersion',
1194              '1.3.6.1.4.1.674.10893.1.20.130.1.1.55' => 'controllerStorportDriverVersion',
1195              '1.3.6.1.4.1.674.10893.1.20.130.1.1.56' => 'controllerMinRequiredStorportVer',
1196             );
1197
1198         # We use get_table() here for the odd case where a server has
1199         # two or more controllers, and where some OIDs are missing on
1200         # one of the controllers.
1201         my $controllerTable = '1.3.6.1.4.1.674.10893.1.20.130.1';
1202         my $result = $snmp_session->get_table(-baseoid => $controllerTable);
1203
1204         if (!defined $result) {
1205             report('storage', 'Storage Error! No controllers found', $E_UNKNOWN);
1206             return;
1207         }
1208
1209         @output = @{ get_snmp_output($result, \%ctrl_oid) };
1210     }
1211     else {
1212         @output = @{ run_omreport('storage controller') };
1213     }
1214
1215     my %ctrl_state
1216       = (
1217          0 => 'Unknown',
1218          1 => 'Ready',
1219          2 => 'Failed',
1220          3 => 'Online',
1221          4 => 'Offline',
1222          6 => 'Degraded',
1223         );
1224
1225   CTRL:
1226     foreach my $out (@output) {
1227         if ($snmp) {
1228             $name     = $out->{controllerName} || 'Unknown controller';
1229             $state    = get_hashval($out->{controllerState}, \%ctrl_state) || 'Unknown state';
1230             $status   = get_snmp_status($out->{controllerComponentStatus});
1231             $minfw    = $out->{controllerMinFWVersion} || undef;
1232             $mindr    = $out->{controllerMinDriverVersion} || undef;
1233             $firmware = $out->{controllerFWVersion} || 'N/A';
1234             $driver   = $out->{controllerDriverVersion} || 'N/A';
1235             $minstdr  = $out->{'controllerMinRequiredStorportVer'} || undef;
1236             $stdr     = $out->{controllerStorportDriverVersion} || undef;
1237             $nexus    = convert_nexus(($out->{controllerNexusID} || 9999));
1238         }
1239         else {
1240             $nexus    = get_nonempty_string('ID', $out, '9999');
1241             $name     = get_nonempty_string('Name', $out, 'Unknown controller');
1242             $state    = get_nonempty_string('State', $out, 'Unknown state');
1243             $status   = get_nonempty_string('Status', $out, 'Unknown');
1244             $minfw    = $out->{'Minimum Required Firmware Version'} ne 'Not Applicable'
1245               ? $out->{'Minimum Required Firmware Version'} : undef;
1246             $mindr    = $out->{'Minimum Required Driver Version'} ne 'Not Applicable'
1247               ? $out->{'Minimum Required Driver Version'} : undef;
1248             $firmware = $out->{'Firmware Version'} ne 'Not Applicable'
1249               ? $out->{'Firmware Version'} : 'N/A';
1250             $driver   = $out->{'Driver Version'} ne 'Not Applicable'
1251               ? $out->{'Driver Version'} : 'N/A';
1252             $minstdr  = (exists $out->{'Minimum Required Storport Driver Version'}
1253                          and $out->{'Minimum Required Storport Driver Version'} ne 'Not Applicable')
1254               ? $out->{'Minimum Required Storport Driver Version'} : undef;
1255             $stdr     = (exists $out->{'Storport Driver Version'}
1256                          and $out->{'Storport Driver Version'} ne 'Not Applicable')
1257               ? $out->{'Storport Driver Version'} : undef;
1258         }
1259
1260         $name =~ s{\s+\z}{}xms; # remove trailing whitespace
1261         push @controllers, $nexus;
1262
1263         # Collecting some storage info
1264         $sysinfo{'controller'}{$nexus}{'id'}       = $nexus;
1265         $sysinfo{'controller'}{$nexus}{'name'}     = $name;
1266         $sysinfo{'controller'}{$nexus}{'driver'}   = $driver;
1267         $sysinfo{'controller'}{$nexus}{'firmware'} = $firmware;
1268         $sysinfo{'controller'}{$nexus}{'storport'} = $stdr;
1269
1270         # Store controller info for future use (SNMP)
1271         if ($snmp) {
1272             $snmp_controller{$out->{controllerNumber}} = $nexus;
1273         }
1274
1275         next CTRL if blacklisted('ctrl', $nexus);
1276
1277         # Special case: old firmware
1278         if (!blacklisted('ctrl_fw', $nexus) && defined $minfw) {
1279             chomp $firmware;
1280             my $msg = sprintf q{Controller %d [%s]: Firmware '%s' is out of date},
1281               $nexus, $name, $firmware;
1282             report('storage', $msg, $E_WARNING, $nexus);
1283         }
1284         # Special case: old driver
1285         if (!blacklisted('ctrl_driver', $nexus) && defined $mindr) {
1286             chomp $driver;
1287             my $msg = sprintf q{Controller %d [%s]: Driver '%s' is out of date},
1288               $nexus, $name, $driver;
1289             report('storage', $msg, $E_WARNING, $nexus);
1290         }
1291         # Special case: old storport driver
1292         if (!blacklisted('ctrl_stdr', $nexus) && defined $minstdr) {
1293             chomp $stdr;
1294             my $msg = sprintf q{Controller %d [%s]: Storport driver '%s' is out of date},
1295               $nexus, $name, $stdr;
1296             report('storage', $msg, $E_WARNING, $nexus);
1297         }
1298         # Ok
1299         if ($status eq 'Ok' or ($status eq 'Non-Critical'
1300                                 and (defined $minfw or defined $mindr or defined $minstdr))) {
1301             my $msg = sprintf 'Controller %d [%s] is %s',
1302               $nexus, $name, $state;
1303             report('storage', $msg, $E_OK, $nexus);
1304         }
1305         # Default
1306         else {
1307             my $msg = sprintf 'Controller %d [%s] needs attention: %s',
1308               $nexus, $name, $state;
1309             report('storage', $msg, $status2nagios{$status}, $nexus);
1310         }
1311     }
1312     return;
1313 }
1314
1315
1316 #-----------------------------------------
1317 # STORAGE: Check physical drives
1318 #-----------------------------------------
1319 sub check_physical_disks {
1320     return if $#controllers == -1;
1321     return if blacklisted('pdisk', 'all');
1322
1323     my $nexus    = undef;
1324     my $name     = undef;
1325     my $state    = undef;
1326     my $status   = undef;
1327     my $fpred    = undef;
1328     my $progr    = undef;
1329     my $ctrl     = undef;
1330     my $vendor   = undef;  # disk vendor
1331     my $product  = undef;  # product ID
1332     my $capacity = undef;  # disk length (size) in bytes
1333     my $media    = undef;  # media type (e.g. HDD, SSD)
1334     my $bus      = undef;  # bus protocol (e.g. SAS, SATA)
1335     my $spare    = undef;  # spare state (e.g. global hotspare)
1336     my @output  = ();
1337
1338     if ($snmp) {
1339         my %pdisk_oid
1340           = (
1341              '1.3.6.1.4.1.674.10893.1.20.130.4.1.2'  => 'arrayDiskName',
1342              '1.3.6.1.4.1.674.10893.1.20.130.4.1.3'  => 'arrayDiskVendor',
1343              '1.3.6.1.4.1.674.10893.1.20.130.4.1.4'  => 'arrayDiskState',
1344              '1.3.6.1.4.1.674.10893.1.20.130.4.1.6'  => 'arrayDiskProductID',
1345              '1.3.6.1.4.1.674.10893.1.20.130.4.1.9'  => 'arrayDiskEnclosureID',
1346              '1.3.6.1.4.1.674.10893.1.20.130.4.1.10' => 'arrayDiskChannel',
1347              '1.3.6.1.4.1.674.10893.1.20.130.4.1.11' => 'arrayDiskLengthInMB',
1348              '1.3.6.1.4.1.674.10893.1.20.130.4.1.15' => 'arrayDiskTargetID',
1349              '1.3.6.1.4.1.674.10893.1.20.130.4.1.21' => 'arrayDiskBusType',
1350              '1.3.6.1.4.1.674.10893.1.20.130.4.1.22' => 'arrayDiskSpareState',
1351              '1.3.6.1.4.1.674.10893.1.20.130.4.1.24' => 'arrayDiskComponentStatus',
1352              '1.3.6.1.4.1.674.10893.1.20.130.4.1.26' => 'arrayDiskNexusID',
1353              '1.3.6.1.4.1.674.10893.1.20.130.4.1.31' => 'arrayDiskSmartAlertIndication',
1354              '1.3.6.1.4.1.674.10893.1.20.130.4.1.35' => 'arrayDiskMediaType',
1355              '1.3.6.1.4.1.674.10893.1.20.130.5.1.7'  => 'arrayDiskEnclosureConnectionControllerNumber',
1356              '1.3.6.1.4.1.674.10893.1.20.130.6.1.7'  => 'arrayDiskChannelConnectionControllerNumber',
1357             );
1358         my $result = undef;
1359         if ($opt{use_get_table}) {
1360             my $arrayDiskTable = '1.3.6.1.4.1.674.10893.1.20.130.4';
1361             my $arrayDiskEnclosureConnectionControllerNumber = '1.3.6.1.4.1.674.10893.1.20.130.5.1.7';
1362             my $arrayDiskChannelConnectionControllerNumber = '1.3.6.1.4.1.674.10893.1.20.130.6.1.7';
1363
1364             $result  = $snmp_session->get_table(-baseoid => $arrayDiskTable);
1365             my $ext1 = $snmp_session->get_table(-baseoid => $arrayDiskEnclosureConnectionControllerNumber);
1366             my $ext2 = $snmp_session->get_table(-baseoid => $arrayDiskChannelConnectionControllerNumber);
1367
1368             if (defined $result) {
1369                 defined $ext1 && map { $$result{$_} = $$ext1{$_} } keys %{ $ext1 };
1370                 defined $ext2 && map { $$result{$_} = $$ext2{$_} } keys %{ $ext2 };
1371             }
1372         }
1373         else {
1374             $result = $snmp_session->get_entries(-columns => [keys %pdisk_oid]);
1375         }
1376
1377         if (!defined $result) {
1378             printf "SNMP ERROR [storage / pdisk]: %s.\n", $snmp_session->error;
1379             $snmp_session->close;
1380             exit $E_UNKNOWN;
1381         }
1382
1383         @output = @{ get_snmp_output($result, \%pdisk_oid) };
1384     }
1385     else {
1386         foreach my $c (@controllers) {
1387             # This blacklists disks with broken firmware, which includes
1388             # illegal XML characters that makes openmanage choke on itself
1389             next if blacklisted('ctrl_pdisk', $c);
1390
1391             push @output, @{ run_omreport("storage pdisk controller=$c") };
1392             map_item('ctrl', $c, \@output);
1393         }
1394     }
1395
1396     my %spare_state
1397       = (
1398          1  => 'VD member',    # disk is a member of a virtual disk
1399          2  => 'DG member',    # disk is a member of a disk group
1400          3  => 'Global HS',    # disk is a global hot spare
1401          4  => 'Dedicated HS', # disk is a dedicated hot spare
1402          5  => 'no',           # not a spare
1403          99 => 'n/a',          # not applicable
1404         );
1405
1406     my %media_type
1407       = (
1408          1 => 'unknown',
1409          2 => 'HDD',
1410          3 => 'SSD',
1411         );
1412
1413     my %bus_type
1414       = (
1415          1 => 'SCSI',
1416          2 => 'IDE',
1417          3 => 'Fibre Channel',
1418          4 => 'SSA',
1419          6 => 'USB',
1420          7 => 'SATA',
1421          8 => 'SAS',
1422         );
1423
1424     my %pdisk_state
1425       = (
1426          0  => 'Unknown',
1427          1  => 'Ready',
1428          2  => 'Failed',
1429          3  => 'Online',
1430          4  => 'Offline',
1431          6  => 'Degraded',
1432          7  => 'Recovering',
1433          11 => 'Removed',
1434          15 => 'Resynching',
1435          22 => 'Replacing', # FIXME: this one is not defined in the OMSA MIBs
1436          24 => 'Rebuilding',
1437          25 => 'No Media',
1438          26 => 'Formatting',
1439          28 => 'Diagnostics',
1440          34 => 'Predictive failure',
1441          35 => 'Initializing',
1442          39 => 'Foreign',
1443          40 => 'Clear',
1444          41 => 'Unsupported',
1445          53 => 'Incompatible',
1446         );
1447
1448     # Check physical disks on each of the controllers
1449   PDISK:
1450     foreach my $out (@output) {
1451         if ($snmp) {
1452             $name     = $out->{arrayDiskName} || 'Unknown disk';
1453             $state    = get_hashval($out->{arrayDiskState}, \%pdisk_state) || 'Unknown state';
1454             $status   = get_snmp_status($out->{arrayDiskComponentStatus});
1455             $fpred    = defined $out->{arrayDiskSmartAlertIndication}
1456               && $out->{arrayDiskSmartAlertIndication} == 2 ? 1 : 0;
1457             $progr    = q{};
1458             $nexus    = convert_nexus(($out->{arrayDiskNexusID} || 9999));
1459             $vendor   = $out->{arrayDiskVendor} || 'Unknown vendor';
1460             $product  = $out->{arrayDiskProductID} || 'Unknown product ID';
1461             $spare    = get_hashval($out->{arrayDiskSpareState}, \%spare_state) || q{};
1462             $bus      = get_hashval($out->{arrayDiskBusType}, \%bus_type);
1463             $media    = get_hashval($out->{arrayDiskMediaType}, \%media_type);
1464             $capacity = exists $out->{arrayDiskLengthInMB}
1465               ? $out->{arrayDiskLengthInMB} * 1024**2 : -1;
1466
1467             # try to find the controller where the disk belongs
1468             if (exists $out->{arrayDiskEnclosureConnectionControllerNumber}) {
1469                 # for disks that are attached to an enclosure
1470                 $ctrl = $snmp_controller{$out->{arrayDiskEnclosureConnectionControllerNumber}};
1471             }
1472             elsif (exists $out->{arrayDiskChannelConnectionControllerNumber}) {
1473                 # for disks that are not attached to an enclosure
1474                 $ctrl = $snmp_controller{$out->{arrayDiskChannelConnectionControllerNumber}};
1475             }
1476             else {
1477                 # last resort... use the nexus id (old/broken hardware)
1478                 $ctrl = $nexus;
1479                 $ctrl =~ s{\A (\d+) : .* \z}{$1}xms;
1480             }
1481         }
1482         else {
1483             $name     = get_nonempty_string('Name', $out, 'Unknown disk');
1484             $state    = get_nonempty_string('State', $out, 'Unknown state');
1485             $status   = get_nonempty_string('Status', $out, 'Unknown');
1486             $fpred    = lc(get_nonempty_string('Failure Predicted', $out, q{})) eq 'yes' ? 1 : 0;
1487             $progr    = ' [' . get_nonempty_string('Progress', $out, q{}) . ']';
1488             $nexus    = join q{:}, $out->{ctrl}, $out->{'ID'};
1489             $vendor   = get_nonempty_string('Vendor ID', $out, 'Unknown Vendor');
1490             $product  = get_nonempty_string('Product ID', $out, 'Unknown Product ID');
1491             $media    = get_nonempty_string('Media', $out, undef);
1492             $bus      = get_nonempty_string('Bus Protocol', $out, undef);
1493             $spare    = get_nonempty_string('Hot Spare', $out, q{});
1494             $ctrl     = $out->{ctrl};
1495             $capacity = get_nonempty_string('Capacity', $out, q{});
1496             $capacity =~ s{\A .*? \((\d+) \s bytes\) \z}{$1}xms;
1497             if ($capacity eq 'Unavailable') {
1498                 $capacity = -1;
1499             }
1500         }
1501
1502         next PDISK if blacklisted('pdisk', $nexus);
1503         $count{pdisk}++;
1504
1505         $vendor  =~ s{\s+\z}{}xms; # remove trailing whitespace
1506         $product =~ s{\s+\z}{}xms; # remove trailing whitespace
1507
1508         # If the disk is bad, the vendor field may be empty
1509         if ($vendor eq q{}) { $vendor = 'Unknown Vendor'; }
1510
1511         # Hot spare stuff
1512         if ($spare eq 'Global') { $spare = 'Global HS'; }
1513         elsif ($spare eq 'Dedicated') { $spare = 'Dedicated HS'; }
1514         elsif ($spare !~ m{\A Global|Dedicated}xms) { $spare = undef; }
1515
1516         # Calculate human readable capacity
1517         if ($capacity == -1) {
1518             # capacity is unknown
1519             $capacity = 'Unknown Size';
1520         }
1521         else {
1522             $capacity = ceil($capacity / 1000**3) >= 1000
1523               ? sprintf '%.1fTB', ($capacity / 1000**4)
1524                 : sprintf '%.0fGB', ($capacity / 1000**3);
1525             $capacity = '450GB' if $capacity eq '449GB';  # quick fix for 450GB disks
1526             $capacity = '300GB' if $capacity eq '299GB';  # quick fix for 300GB disks
1527             $capacity = '146GB' if $capacity eq '147GB';  # quick fix for 146GB disks
1528             $capacity = '100GB' if $capacity eq '99GB';   # quick fix for 100GB disks
1529         }
1530
1531         # Capitalize only the first letter of the vendor name
1532         $vendor = (substr $vendor, 0, 1) . lc (substr $vendor, 1, length $vendor);
1533
1534         # Remove unnecessary trademark rubbish from vendor name
1535         $vendor =~ s{\(tm\)\z}{}xms;
1536
1537         # bus and media aren't always defined
1538         my $busmedia = q{};
1539         if    (defined $bus && defined $media)   { $busmedia = "$bus-$media "; }
1540         elsif (defined $bus && ! defined $media) { $busmedia = "$bus ";        }
1541         elsif (! defined $bus && defined $media) { $busmedia = "$media ";      }
1542
1543         # Special case: Failure predicted
1544         if ($fpred) {
1545             my $msg = sprintf '%s [%s %s, %s] on ctrl %d needs attention: Failure Predicted',
1546               $name, $vendor, $product, $capacity, $ctrl;
1547             $msg .= " ($state)" if $state ne 'Predictive failure';
1548             report('storage', $msg,
1549                    ($status2nagios{$status} == $E_CRITICAL ? $E_CRITICAL : $E_WARNING), $nexus);
1550         }
1551         # Special case: Rebuilding / Replacing
1552         elsif ($state =~ m{\A Rebuilding|Replacing \z}xms) {
1553             my $msg = sprintf '%s [%s %s, %s] on ctrl %d is %s%s',
1554               $name, $vendor, $product, $capacity, $ctrl, $state, $progr;
1555             report('storage', $msg, $E_WARNING, $nexus);
1556         }
1557         # Default
1558         elsif ($status ne 'Ok') {
1559             my $msg =  sprintf '%s [%s %s, %s] on ctrl %d needs attention: %s',
1560               $name, $vendor, $product, $capacity, $ctrl, $state;
1561             report('storage', $msg, $status2nagios{$status}, $nexus);
1562         }
1563         # Ok
1564         else {
1565             my $msg = sprintf '%s [%s%s] on ctrl %d is %s',
1566               $name, $busmedia, $capacity, $ctrl, $state;
1567             if (defined $spare) { $msg .= " ($spare)"; }
1568             report('storage', $msg, $E_OK, $nexus);
1569         }
1570     }
1571     return;
1572 }
1573
1574
1575 #-----------------------------------------
1576 # STORAGE: Check logical drives
1577 #-----------------------------------------
1578 sub check_virtual_disks {
1579     return if $#controllers == -1;
1580     return if blacklisted('vdisk', 'all');
1581
1582     my $name   = undef;
1583     my $nexus  = undef;
1584     my $dev    = undef;
1585     my $state  = undef;
1586     my $status = undef;
1587     my $layout = undef;
1588     my $size   = undef;
1589     my $progr  = undef;
1590     my $ctrl   = undef;
1591     my @output = ();
1592
1593     if ($snmp) {
1594         my %vdisk_oid
1595           = (
1596              '1.3.6.1.4.1.674.10893.1.20.140.1.1.3'  => 'virtualDiskDeviceName',
1597              '1.3.6.1.4.1.674.10893.1.20.140.1.1.4'  => 'virtualDiskState',
1598              '1.3.6.1.4.1.674.10893.1.20.140.1.1.6'  => 'virtualDiskLengthInMB',
1599              '1.3.6.1.4.1.674.10893.1.20.140.1.1.13' => 'virtualDiskLayout',
1600              '1.3.6.1.4.1.674.10893.1.20.140.1.1.20' => 'virtualDiskComponentStatus',
1601              '1.3.6.1.4.1.674.10893.1.20.140.1.1.21' => 'virtualDiskNexusID',
1602             );
1603         my $result = undef;
1604         if ($opt{use_get_table}) {
1605             my $virtualDiskTable = '1.3.6.1.4.1.674.10893.1.20.140.1';
1606             $result = $snmp_session->get_table(-baseoid => $virtualDiskTable);
1607         }
1608         else {
1609             $result = $snmp_session->get_entries(-columns => [keys %vdisk_oid]);
1610         }
1611
1612         # No logical drives is OK
1613         return if !defined $result;
1614
1615         @output = @{ get_snmp_output($result, \%vdisk_oid) };
1616     }
1617     else {
1618         foreach my $c (@controllers) {
1619             push @output, @{ run_omreport("storage vdisk controller=$c") };
1620             map_item('ctrl', $c, \@output);
1621         }
1622     }
1623
1624     my %vdisk_state
1625       = (
1626          0  => 'Unknown',
1627          1  => 'Ready',
1628          2  => 'Failed',
1629          3  => 'Online',
1630          4  => 'Offline',
1631          6  => 'Degraded',
1632          15 => 'Resynching',
1633          16 => 'Regenerating',
1634          24 => 'Rebuilding',
1635          26 => 'Formatting',
1636          32 => 'Reconstructing',
1637          35 => 'Initializing',
1638          36 => 'Background Initialization',
1639          38 => 'Resynching Paused',
1640          52 => 'Permanently Degraded',
1641          54 => 'Degraded Redundancy',
1642         );
1643
1644     my %vdisk_layout
1645       = (
1646          1  => 'Concatenated',
1647          2  => 'RAID-0',
1648          3  => 'RAID-1',
1649          7  => 'RAID-5',
1650          8  => 'RAID-6',
1651          10 => 'RAID-10',
1652          12 => 'RAID-50',
1653          19 => 'Concatenated RAID-1',
1654          24 => 'RAID-60',
1655          25 => 'CacheCade',
1656         );
1657
1658     # Check virtual disks on each of the controllers
1659   VDISK:
1660     foreach my $out (@output) {
1661         if ($snmp) {
1662             $dev    = $out->{virtualDiskDeviceName} || 'Unknown device';
1663             $state  = get_hashval($out->{virtualDiskState}, \%vdisk_state) || 'Unknown state';
1664             $layout = get_hashval($out->{virtualDiskLayout}, \%vdisk_layout) || 'Unknown layout';
1665             $status = get_snmp_status($out->{virtualDiskComponentStatus});
1666             $size   = sprintf '%.2f GB', ($out->{virtualDiskLengthInMB} || 0) / 1024;
1667             $progr  = q{};  # not available via SNMP
1668             $nexus  = convert_nexus(($out->{virtualDiskNexusID} || 9999));
1669         }
1670         else {
1671             $dev    = get_nonempty_string('Device Name', $out, 'Unknown device');
1672             $state  = get_nonempty_string('State', $out, 'Unknown state');
1673             $status = get_nonempty_string('Status', $out, 'Unknown');
1674             $layout = get_nonempty_string('Layout', $out, 'Unknown layout');
1675             $size   = get_nonempty_string('Size', $out, 'Unavailable');
1676             $size   =~ s{\A (.*GB).* \z}{$1}xms;
1677             $progr  = ' [' . get_nonempty_string('Progress', $out, q{}) . ']';
1678             $ctrl   = $out->{ctrl};
1679             $nexus  = join q{:}, $ctrl, get_nonempty_string('ID', $out, '9999');
1680         }
1681
1682         next VDISK if blacklisted('vdisk', $nexus);
1683         $count{vdisk}++;
1684
1685         # The device name is undefined sometimes
1686         $dev = q{} if !defined $dev;
1687
1688         # Special case: Regenerating
1689         if ($state eq 'Regenerating') {
1690             my $msg = sprintf q{Logical Drive '%s' [%s, %s] is %s%s},
1691               $dev, $layout, $size, $state, $progr;
1692             report('storage', $msg, $E_WARNING, $nexus);
1693         }
1694         # Default
1695         elsif ($status ne 'Ok') {
1696             my $msg = sprintf q{Logical Drive '%s' [%s, %s] needs attention: %s},
1697               $dev, $layout, $size, $state;
1698             report('storage', $msg, $status2nagios{$status}, $nexus);
1699         }
1700         # Ok
1701         else {
1702             my $msg = sprintf q{Logical Drive '%s' [%s, %s] is %s},
1703               $dev, $layout, $size, $state;
1704             report('storage', $msg, $E_OK, $nexus);
1705         }
1706     }
1707     return;
1708 }
1709
1710
1711 #-----------------------------------------
1712 # STORAGE: Check cache batteries
1713 #-----------------------------------------
1714 sub check_cache_battery {
1715     return if $#controllers == -1;
1716     return if blacklisted('bat', 'all');
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           = (
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             );
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';
1740             my $batteryConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.16';
1741
1742             $result = $snmp_session->get_table(-baseoid => $batteryTable);
1743             my $ext = $snmp_session->get_table(-baseoid => $batteryConnectionTable);
1744
1745             if (defined $result) {
1746                 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
1747             }
1748         }
1749         else {
1750             $result = $snmp_session->get_entries(-columns => [keys %bat_oid]);
1751         }
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
1779     # Specifies the learn state activity of the battery
1780     my %bat_learn_state
1781       = (
1782          1  => 'Failed',
1783          2  => 'Active',
1784          4  => 'Timed out',
1785          8  => 'Requested',
1786          16 => 'Idle',
1787         );
1788
1789     # This property displays the battery's ability to be charged
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) {
1802             $status = get_snmp_status($out->{batteryComponentStatus});
1803             $state  = get_hashval($out->{batteryState}, \%bat_state) || 'Unknown state';
1804             $learn  = get_hashval($out->{batteryLearnState}, \%bat_learn_state) || 'Unknown learn state';
1805             $pred   = get_hashval($out->{batteryPredictedCapacity}, \%bat_pred_cap) || 'Unknown predicted capacity status';
1806             $ctrl   = ($out->{batteryConnectionControllerNumber} || 10000) - 1;
1807             $nexus  = convert_nexus(($out->{batteryNexusID} || 9999));
1808             $id     = $nexus;
1809             $id     =~ s{\A \d+:(\d+) \z}{$1}xms;
1810         }
1811         else {
1812             $id     = get_nonempty_string('ID', $out, 9999);
1813             $state  = get_nonempty_string('State', $out, 'Unknown state');
1814             $status = get_nonempty_string('Status', $out, 'Unknown');
1815             $learn  = get_nonempty_string('Learn State', $out, 'Unknown learn state');
1816             $pred   = get_nonempty_string('Predicted Capacity Status', $out, 'Unknown predicted capacity status');
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') {
1825             if ($pred eq 'Failed') {
1826                 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [replace battery]',
1827                   $id, $ctrl, $state, $pred;
1828                 report('storage', $msg, $E_CRITICAL, $nexus);
1829             }
1830             else {
1831                 next BATTERY if blacklisted('bat_charge', $nexus);
1832                 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
1833                   $id, $ctrl, $state, $pred;
1834                 report('storage', $msg, $E_WARNING, $nexus);
1835             }
1836         }
1837         # Special case: Learning (battery learns its capacity)
1838         elsif ($state eq 'Learning') {
1839             if ($learn eq 'Failed') {
1840                 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s)',
1841                   $id, $ctrl, $state, $learn;
1842                 report('storage', $msg, $E_CRITICAL, $nexus);
1843             }
1844             else {
1845                 next BATTERY if blacklisted('bat_charge', $nexus);
1846                 my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
1847                   $id, $ctrl, $state, $learn;
1848                 report('storage', $msg, $E_WARNING, $nexus);
1849             }
1850         }
1851         # Special case: Power Low (first part of recharge cycle)
1852         elsif ($state eq 'Power Low') {
1853             next BATTERY if blacklisted('bat_charge', $nexus);
1854             my $msg = sprintf 'Cache Battery %d in controller %d is %s [probably harmless]',
1855               $id, $ctrl, $state;
1856             report('storage', $msg, $E_WARNING, $nexus);
1857         }
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);
1861             my $msg = sprintf 'Cache Battery %d in controller %d is %s (%s) [probably harmless]',
1862               $id, $ctrl, $state, $status;
1863             report('storage', $msg, $E_WARNING, $nexus);
1864         }
1865         # Special case: Failed
1866         elsif ($state eq 'Failed' && $status eq 'Critical') {
1867             next BATTERY if blacklisted('bat_charge', $nexus);
1868             my $msg = sprintf 'Cache Battery %d in controller %d is %s [replace battery]',
1869               $id, $ctrl, $state;
1870             report('storage', $msg, $status2nagios{$status}, $nexus);
1871         }
1872         # Default
1873         else {
1874             my $msg = sprintf 'Cache Battery %d in controller %d is %s',
1875               $id, $ctrl, $state;
1876             report('storage', $msg, $status2nagios{$status}, $nexus);
1877         }
1878     }
1879     return;
1880 }
1881
1882
1883 #-----------------------------------------
1884 # STORAGE: Check connectors (channels)
1885 #-----------------------------------------
1886 sub check_connectors {
1887     return if $#controllers == -1;
1888     return if blacklisted('conn', 'all');
1889
1890     my $nexus  = undef;
1891     my $name   = undef;
1892     my $state  = undef;
1893     my $status = undef;
1894     my $type   = undef;
1895     my $ctrl   = undef;
1896     my @output = ();
1897
1898     if ($snmp) {
1899         my %conn_oid
1900           = (
1901              '1.3.6.1.4.1.674.10893.1.20.130.2.1.2'  => 'channelName',
1902              '1.3.6.1.4.1.674.10893.1.20.130.2.1.3'  => 'channelState',
1903              '1.3.6.1.4.1.674.10893.1.20.130.2.1.8'  => 'channelComponentStatus',
1904              '1.3.6.1.4.1.674.10893.1.20.130.2.1.9'  => 'channelNexusID',
1905              '1.3.6.1.4.1.674.10893.1.20.130.2.1.11' => 'channelBusType',
1906             );
1907         my $result = undef;
1908         if ($opt{use_get_table}) {
1909             my $channelTable = '1.3.6.1.4.1.674.10893.1.20.130.2';
1910             $result = $snmp_session->get_table(-baseoid => $channelTable);
1911         }
1912         else {
1913             $result = $snmp_session->get_entries(-columns => [keys %conn_oid]);
1914         }
1915
1916         if (!defined $result) {
1917             printf "SNMP ERROR [storage / channel]: %s.\n", $snmp_session->error;
1918             $snmp_session->close;
1919             exit $E_UNKNOWN;
1920         }
1921
1922         @output = @{ get_snmp_output($result, \%conn_oid) };
1923     }
1924     else {
1925         foreach my $c (@controllers) {
1926             push @output, @{ run_omreport("storage connector controller=$c") };
1927             map_item('ctrl', $c, \@output);
1928         }
1929     }
1930
1931     my %conn_state
1932       = (
1933          0 => 'Unknown',
1934          1 => 'Ready',
1935          2 => 'Failed',
1936          3 => 'Online',
1937          4 => 'Offline',
1938          6 => 'Degraded',
1939         );
1940
1941     my %conn_bustype
1942       = (
1943          1 => 'SCSI',
1944          2 => 'IDE',
1945          3 => 'Fibre Channel',
1946          4 => 'SSA',
1947          6 => 'USB',
1948          7 => 'SATA',
1949          8 => 'SAS',
1950         );
1951
1952     # Check connectors on each of the controllers
1953   CHANNEL:
1954     foreach my $out (@output) {
1955         if ($snmp) {
1956             $name   = $out->{channelName} || 'Unknown channel';
1957             $status = get_snmp_status($out->{channelComponentStatus});
1958             $state  = get_hashval($out->{channelState}, \%conn_state) || 'Unknown state';
1959             $type   = get_hashval($out->{channelBusType}, \%conn_bustype) || 'Unknown type';
1960             $nexus  = convert_nexus(($out->{channelNexusID} || 9999));
1961             $ctrl   = $nexus;
1962             $ctrl   =~ s{(\d+):\d+}{$1}xms;
1963         }
1964         else {
1965             $name   = get_nonempty_string('Name', $out, 'Unknown channel');
1966             $state  = get_nonempty_string('State', $out, 'Unknown state');
1967             $status = get_nonempty_string('Status', $out, 'Unknown');
1968             $type   = get_nonempty_string('Connector Type', $out, 'Unknown type');
1969             $ctrl   = $out->{ctrl};
1970             $nexus  = join q{:}, $out->{ctrl}, $out->{'ID'};
1971         }
1972
1973         next CHANNEL if blacklisted('conn', $nexus);
1974
1975         my $msg = sprintf '%s [%s] on controller %d is %s',
1976           $name, $type, $ctrl, $state;
1977         report('storage', $msg, $status2nagios{$status}, $nexus);
1978     }
1979     return;
1980 }
1981
1982
1983 #-----------------------------------------
1984 # STORAGE: Check enclosures
1985 #-----------------------------------------
1986 sub check_enclosures {
1987     return if blacklisted('encl', 'all');
1988
1989     my $id       = undef;
1990     my $nexus    = undef;
1991     my $name     = undef;
1992     my $state    = undef;
1993     my $status   = undef;
1994     my $firmware = undef;
1995     my $ctrl     = undef;
1996     my $occupied_slots = undef; # number of occupied slots
1997     my $total_slots    = undef; # number of total slots
1998     my @output   = ();
1999
2000     if ($snmp) {
2001         my %encl_oid
2002           = (
2003              '1.3.6.1.4.1.674.10893.1.20.130.3.1.1'  => 'enclosureNumber',
2004              '1.3.6.1.4.1.674.10893.1.20.130.3.1.2'  => 'enclosureName',
2005              '1.3.6.1.4.1.674.10893.1.20.130.3.1.4'  => 'enclosureState',
2006              '1.3.6.1.4.1.674.10893.1.20.130.3.1.19' => 'enclosureChannelNumber',
2007              '1.3.6.1.4.1.674.10893.1.20.130.3.1.24' => 'enclosureComponentStatus',
2008              '1.3.6.1.4.1.674.10893.1.20.130.3.1.25' => 'enclosureNexusID',
2009              '1.3.6.1.4.1.674.10893.1.20.130.3.1.26' => 'enclosureFirmwareVersion',
2010              '1.3.6.1.4.1.674.10893.1.20.130.3.1.31' => 'enclosureOccupiedSlotCount', # new in OMSA 6.3.0
2011              '1.3.6.1.4.1.674.10893.1.20.130.3.1.32' => 'enclosureTotalSlots', # new in OMSA 6.3.0
2012             );
2013         my $result = undef;
2014         if ($opt{use_get_table}) {
2015             my $enclosureTable = '1.3.6.1.4.1.674.10893.1.20.130.3';
2016             $result = $snmp_session->get_table(-baseoid => $enclosureTable);
2017         }
2018         else {
2019             $result = $snmp_session->get_entries(-columns => [keys %encl_oid]);
2020         }
2021
2022         # No enclosures is OK
2023         return if !defined $result;
2024
2025         @output = @{ get_snmp_output($result, \%encl_oid) };
2026     }
2027     else {
2028         foreach my $c (@controllers) {
2029             push @output, @{ run_omreport("storage enclosure controller=$c") };
2030             map_item('ctrl', $c, \@output);
2031         }
2032     }
2033
2034     my %encl_state
2035       = (
2036          0 => 'Unknown',
2037          1 => 'Ready',
2038          2 => 'Failed',
2039          3 => 'Online',
2040          4 => 'Offline',
2041          6 => 'Degraded',
2042         );
2043
2044   ENCLOSURE:
2045     foreach my $out (@output) {
2046         if ($snmp) {
2047             $id       = ($out->{enclosureNumber} || 10000) - 1;
2048             $name     = $out->{enclosureName} || 'Unknown enclosure';
2049             $state    = get_hashval($out->{enclosureState}, \%encl_state) || 'Unknown state';
2050             $status   = get_snmp_status($out->{enclosureComponentStatus});
2051             $firmware = $out->{enclosureFirmwareVersion} || 'N/A';
2052             $nexus    = convert_nexus(($out->{enclosureNexusID} || 9999));
2053             $ctrl     = $nexus;
2054             $ctrl     =~ s{\A (\d+):.* \z}{$1}xms;
2055             # for the next two, a value of 9999 means feature not available
2056             $occupied_slots = defined $out->{enclosureOccupiedSlotCount}
2057               && $out->{enclosureOccupiedSlotCount} != 9999
2058                 ? $out->{enclosureOccupiedSlotCount} : undef;
2059             $total_slots    = defined $out->{enclosureTotalSlots}
2060               && $out->{enclosureTotalSlots} != 9999
2061                 ? $out->{enclosureTotalSlots} : undef;
2062         }
2063         else {
2064             $id       = get_nonempty_string('ID', $out, 9999);
2065             $name     = get_nonempty_string('Name', $out, 'Unknown enclosure');
2066             $state    = get_nonempty_string('State', $out, 'Unknown state');
2067             $status   = get_nonempty_string('Status', $out, 'Unknown');
2068             $firmware = get_nonempty_string('Firmware Version', $out, 'N/A');
2069             $firmware =~ s{Not\sApplicable}{N/A}xms;
2070             $nexus    = join q{:}, $out->{ctrl}, $id;
2071             $ctrl     = $out->{ctrl};
2072         }
2073
2074         $name     =~ s{\s+\z}{}xms; # remove trailing whitespace
2075         $firmware =~ s{\s+\z}{}xms; # remove trailing whitespace
2076
2077         # store enclosure data for future use
2078         if ($snmp) {
2079             $snmp_enclosure{$out->{enclosureNumber}}{id}    = $id;
2080             $snmp_enclosure{$out->{enclosureNumber}}{name}  = $name;
2081             $snmp_enclosure{$out->{enclosureNumber}}{nexus} = $nexus;
2082         }
2083         else {
2084             push @enclosures, { 'id'    => $id,
2085                                 'ctrl'  => $out->{ctrl},
2086                                 'name'  => $name };
2087         }
2088
2089         # Collecting some storage info
2090         $sysinfo{'enclosure'}{$nexus}{'id'}       = $nexus;
2091         $sysinfo{'enclosure'}{$nexus}{'name'}     = $name;
2092         $sysinfo{'enclosure'}{$nexus}{'firmware'} = $firmware;
2093
2094         next ENCLOSURE if blacklisted('encl', $nexus);
2095
2096         my $msg = q{};
2097         if (defined $occupied_slots && defined $total_slots) {
2098             $msg = sprintf 'Enclosure %s [%s, %d/%d slots occupied] on ctrl %d is %s',
2099               $nexus, $name, $occupied_slots, $total_slots, $ctrl, $state;
2100         }
2101         else {
2102             $msg = sprintf 'Enclosure %s [%s] on controller %d is %s',
2103               $nexus, $name, $ctrl, $state;
2104         }
2105         report('storage', $msg, $status2nagios{$status}, $nexus);
2106     }
2107     return;
2108 }
2109
2110
2111 #-----------------------------------------
2112 # STORAGE: Check enclosure fans
2113 #-----------------------------------------
2114 sub check_enclosure_fans {
2115     return if $#controllers == -1;
2116     return if blacklisted('encl_fan', 'all');
2117
2118     my $nexus     = undef;
2119     my $name      = undef;
2120     my $state     = undef;
2121     my $status    = undef;
2122     my $speed     = undef;
2123     my $encl_id   = undef;
2124     my $encl_name = undef;
2125     my @output    = ();
2126
2127     if ($snmp) {
2128         my %fan_oid
2129           = (
2130              '1.3.6.1.4.1.674.10893.1.20.130.7.1.2'  => 'fanName',
2131              '1.3.6.1.4.1.674.10893.1.20.130.7.1.4'  => 'fanState',
2132              '1.3.6.1.4.1.674.10893.1.20.130.7.1.11' => 'fanProbeCurrValue',
2133              '1.3.6.1.4.1.674.10893.1.20.130.7.1.15' => 'fanComponentStatus',
2134              '1.3.6.1.4.1.674.10893.1.20.130.7.1.16' => 'fanNexusID',
2135              '1.3.6.1.4.1.674.10893.1.20.130.8.1.4'  => 'fanConnectionEnclosureName',
2136              '1.3.6.1.4.1.674.10893.1.20.130.8.1.5'  => 'fanConnectionEnclosureNumber',
2137             );
2138         my $result = undef;
2139         if ($opt{use_get_table}) {
2140             my $fanTable = '1.3.6.1.4.1.674.10893.1.20.130.7';
2141             my $fanConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.8';
2142
2143             $result = $snmp_session->get_table(-baseoid => $fanTable);
2144             my $ext = $snmp_session->get_table(-baseoid => $fanConnectionTable);
2145
2146             if (defined $result) {
2147                 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2148             }
2149         }
2150         else {
2151             $result = $snmp_session->get_entries(-columns => [keys %fan_oid]);
2152         }
2153
2154         # No enclosure fans is OK
2155         return if !defined $result;
2156
2157         @output = @{ get_snmp_output($result, \%fan_oid) };
2158     }
2159     else {
2160         foreach my $enc (@enclosures) {
2161             push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=fans") };
2162             map_item('ctrl', $enc->{ctrl}, \@output);
2163             map_item('encl_id', $enc->{id}, \@output);
2164             map_item('encl_name', $enc->{name}, \@output);
2165         }
2166     }
2167
2168     my %fan_state
2169       = (
2170          0  => 'Unknown',
2171          1  => 'Ready',
2172          2  => 'Failed',
2173          3  => 'Online',
2174          4  => 'Offline',
2175          6  => 'Degraded',
2176          21 => 'Missing',
2177         );
2178
2179     # Check fans on each of the enclosures
2180   FAN:
2181     foreach my $out (@output) {
2182         if ($snmp) {
2183             $name      = $out->{fanName} || 'Unknown fan';
2184             $state     = get_hashval($out->{fanState}, \%fan_state) || 'Unknown state';
2185             $status    = get_snmp_status($out->{fanComponentStatus});
2186             $speed     = $out->{fanProbeCurrValue} || 'N/A';
2187             $encl_name = $out->{fanConnectionEnclosureName} || 'Unknown enclosure';
2188             $encl_id   = $snmp_enclosure{$out->{fanConnectionEnclosureNumber}}{nexus};
2189             $nexus     = convert_nexus(($out->{fanNexusID} || 9999));
2190         }
2191         else {
2192             $name      = get_nonempty_string('Name', $out, 'Unknown fan');
2193             $state     = get_nonempty_string('State', $out, 'Unknown state');
2194             $status    = get_nonempty_string('Status', $out, 'Unknown');
2195             $speed     = get_nonempty_string('Speed', $out, 'N/A');
2196             $encl_id   = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2197             $encl_name = $out->{encl_name};
2198             $nexus     = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
2199         }
2200
2201         next FAN if blacklisted('encl_fan', $nexus);
2202
2203         # Default
2204         if ($status ne 'Ok') {
2205             my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
2206               $name, $encl_id, $encl_name, $state;
2207             report('storage', $msg, $status2nagios{$status}, $nexus);
2208         }
2209         # Ok
2210         else {
2211             my $msg = sprintf '%s in enclosure %s [%s] is %s (speed=%s)',
2212               $name, $encl_id, $encl_name, $state, $speed;
2213             report('storage', $msg, $E_OK, $nexus);
2214         }
2215     }
2216     return;
2217 }
2218
2219
2220 #-----------------------------------------
2221 # STORAGE: Check enclosure power supplies
2222 #-----------------------------------------
2223 sub check_enclosure_pwr {
2224     return if $#controllers == -1;
2225     return if blacklisted('encl_ps', 'all');
2226
2227     my $nexus     = undef;
2228     my $name      = undef;
2229     my $state     = undef;
2230     my $status    = undef;
2231     my $encl_id   = undef;
2232     my $encl_name = undef;
2233     my @output    = ();
2234
2235     if ($snmp) {
2236         my %ps_oid
2237           = (
2238              '1.3.6.1.4.1.674.10893.1.20.130.9.1.2'  => 'powerSupplyName',
2239              '1.3.6.1.4.1.674.10893.1.20.130.9.1.4'  => 'powerSupplyState',
2240              '1.3.6.1.4.1.674.10893.1.20.130.9.1.9'  => 'powerSupplyComponentStatus',
2241              '1.3.6.1.4.1.674.10893.1.20.130.9.1.10' => 'powerSupplyNexusID',
2242              '1.3.6.1.4.1.674.10893.1.20.130.10.1.4' => 'powerSupplyConnectionEnclosureName',
2243              '1.3.6.1.4.1.674.10893.1.20.130.10.1.5' => 'powerSupplyConnectionEnclosureNumber',
2244             );
2245         my $result = undef;
2246         if ($opt{use_get_table}) {
2247             my $powerSupplyTable = '1.3.6.1.4.1.674.10893.1.20.130.9';
2248             my $powerSupplyConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.10';
2249
2250             $result = $snmp_session->get_table(-baseoid => $powerSupplyTable);
2251             my $ext = $snmp_session->get_table(-baseoid => $powerSupplyConnectionTable);
2252
2253             if (defined $result) {
2254                 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2255             }
2256         }
2257         else {
2258             $result = $snmp_session->get_entries(-columns => [keys %ps_oid]);
2259         }
2260
2261         # No enclosure power supplies is OK
2262         return if !defined $result;
2263
2264         @output = @{ get_snmp_output($result, \%ps_oid) };
2265     }
2266     else {
2267         foreach my $enc (@enclosures) {
2268             push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=pwrsupplies") };
2269             map_item('ctrl', $enc->{ctrl}, \@output);
2270             map_item('encl_id', $enc->{id}, \@output);
2271             map_item('encl_name', $enc->{name}, \@output);
2272         }
2273     }
2274
2275     my %ps_state
2276       = (
2277          0  => 'Unknown',
2278          1  => 'Ready',
2279          2  => 'Failed',
2280          5  => 'Not Installed',
2281          6  => 'Degraded',
2282          11 => 'Removed',
2283          21 => 'Missing',
2284         );
2285
2286     # Check power supplies on each of the enclosures
2287   PS:
2288     foreach my $out (@output) {
2289         if ($snmp) {
2290             $name      = $out->{powerSupplyName} || 'Unknown PSU';
2291             $state     = get_hashval($out->{powerSupplyState}, \%ps_state) || 'Unknown state';
2292             $status    = get_snmp_status($out->{powerSupplyComponentStatus});
2293             $encl_id   = $snmp_enclosure{$out->{powerSupplyConnectionEnclosureNumber}}{nexus};
2294             $encl_name = $out->{powerSupplyConnectionEnclosureName} || 'Unknown enclosure';
2295             $nexus     = convert_nexus(($out->{powerSupplyNexusID} || 9999));
2296         }
2297         else {
2298             $name      = get_nonempty_string('Name', $out, 'Unknown PSU');
2299             $state     = get_nonempty_string('State', $out, 'Unknown state');
2300             $status    = get_nonempty_string('Status', $out, 'Unknown');
2301             $encl_id   = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2302             $encl_name = $out->{encl_name};
2303             $nexus     = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
2304         }
2305
2306         next PS if blacklisted('encl_ps', $nexus);
2307
2308         # Default
2309         if ($status ne 'Ok') {
2310             my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
2311               $name, $encl_id, $encl_name, $state;
2312             report('storage', $msg, $status2nagios{$status}, $nexus);
2313         }
2314         # Ok
2315         else {
2316             my $msg = sprintf '%s in enclosure %s [%s] is %s',
2317               $name, $encl_id, $encl_name, $state;
2318             report('storage', $msg, $E_OK, $nexus);
2319         }
2320     }
2321     return;
2322 }
2323
2324
2325 #-----------------------------------------
2326 # STORAGE: Check enclosure temperatures
2327 #-----------------------------------------
2328 sub check_enclosure_temp {
2329     return if $#controllers == -1;
2330     return if blacklisted('encl_temp', 'all');
2331
2332     my $nexus     = undef;
2333     my $name      = undef;
2334     my $state     = undef;
2335     my $status    = undef;
2336     my $reading   = undef;
2337     my $unit      = undef;
2338     my $max_warn  = undef;
2339     my $max_crit  = undef;
2340     my $min_warn  = undef;
2341     my $min_crit  = undef;
2342     my $encl_id   = undef;
2343     my $encl_name = undef;
2344     my @output    = ();
2345
2346     if ($snmp) {
2347         my %temp_oid
2348           = (
2349              '1.3.6.1.4.1.674.10893.1.20.130.11.1.2'  => 'temperatureProbeName',
2350              '1.3.6.1.4.1.674.10893.1.20.130.11.1.4'  => 'temperatureProbeState',
2351              '1.3.6.1.4.1.674.10893.1.20.130.11.1.6'  => 'temperatureProbeUnit',
2352              '1.3.6.1.4.1.674.10893.1.20.130.11.1.7'  => 'temperatureProbeMinWarning',
2353              '1.3.6.1.4.1.674.10893.1.20.130.11.1.8'  => 'temperatureProbeMinCritical',
2354              '1.3.6.1.4.1.674.10893.1.20.130.11.1.9'  => 'temperatureProbeMaxWarning',
2355              '1.3.6.1.4.1.674.10893.1.20.130.11.1.10' => 'temperatureProbeMaxCritical',
2356              '1.3.6.1.4.1.674.10893.1.20.130.11.1.11' => 'temperatureProbeCurValue',
2357              '1.3.6.1.4.1.674.10893.1.20.130.11.1.13' => 'temperatureProbeComponentStatus',
2358              '1.3.6.1.4.1.674.10893.1.20.130.11.1.14' => 'temperatureProbeNexusID',
2359              '1.3.6.1.4.1.674.10893.1.20.130.12.1.4'  => 'temperatureConnectionEnclosureName',
2360              '1.3.6.1.4.1.674.10893.1.20.130.12.1.5'  => 'temperatureConnectionEnclosureNumber',
2361             );
2362         my $result = undef;
2363         if ($opt{use_get_table}) {
2364             my $temperatureProbeTable = '1.3.6.1.4.1.674.10893.1.20.130.11';
2365             my $temperatureConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.12';
2366
2367             $result = $snmp_session->get_table(-baseoid => $temperatureProbeTable);
2368             my $ext = $snmp_session->get_table(-baseoid => $temperatureConnectionTable);
2369
2370             if (defined $result) {
2371                 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2372             }
2373         }
2374         else {
2375             $result = $snmp_session->get_entries(-columns => [keys %temp_oid]);
2376         }
2377
2378         # No enclosure temperature probes is OK
2379         return if !defined $result;
2380
2381         @output = @{ get_snmp_output($result, \%temp_oid) };
2382     }
2383     else {
2384         foreach my $enc (@enclosures) {
2385             push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=temps") };
2386             map_item('ctrl', $enc->{ctrl}, \@output);
2387             map_item('encl_id', $enc->{id}, \@output);
2388             map_item('encl_name', $enc->{name}, \@output);
2389         }
2390     }
2391
2392     my %temp_state
2393       = (
2394          0  => 'Unknown',
2395          1  => 'Ready',
2396          2  => 'Failed',
2397          4  => 'Offline',
2398          6  => 'Degraded',
2399          9  => 'Inactive',
2400          21 => 'Missing',
2401         );
2402
2403     # Check temperature probes on each of the enclosures
2404   TEMP:
2405     foreach my $out (@output) {
2406         if ($snmp) {
2407             $name      = $out->{temperatureProbeName} || 'Unknown temp probe';
2408             $state     = get_hashval($out->{temperatureProbeState}, \%temp_state) || 'Unknown state';
2409             $status    = get_snmp_probestatus($out->{temperatureProbeComponentStatus});
2410             $unit      = $out->{temperatureProbeUnit} || 'Unknown unit';
2411             $reading   = $out->{temperatureProbeCurValue} || '[N/A]';
2412             $max_warn  = $out->{temperatureProbeMaxWarning} || '[N/A]';
2413             $max_crit  = $out->{temperatureProbeMaxCritical} || '[N/A]';
2414             $min_warn  = $out->{temperatureProbeMinWarning} || '[N/A]';
2415             $min_crit  = $out->{temperatureProbeMinCritical} || '[N/A]';
2416             $encl_id   = $snmp_enclosure{$out->{temperatureConnectionEnclosureNumber}}{nexus};
2417             $encl_name = $out->{temperatureConnectionEnclosureName} || 'Unknown enclosure';
2418             $nexus     = convert_nexus(($out->{temperatureProbeNexusID} || 9999));
2419         }
2420         else {
2421             $name      = get_nonempty_string('Name', $out, 'Unknown temp probe');
2422             $state     = get_nonempty_string('State', $out, 'Unknown state');
2423             $status    = get_nonempty_string('Status', $out, 'Unknown');
2424             $unit      = 'FIXME';
2425             $reading   = get_nonempty_string('Reading', $out, '[N/A]');
2426             $max_warn  = get_nonempty_string('Maximum Warning Threshold', $out, '[N/A]');
2427             $max_crit  = get_nonempty_string('Maximum Failure Threshold', $out, '[N/A]');
2428             $min_warn  = get_nonempty_string('Minimum Warning Threshold', $out, '[N/A]');
2429             $min_crit  = get_nonempty_string('Minimum Failure Threshold', $out, '[N/A]');
2430             $encl_id   = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2431             $encl_name = $out->{encl_name};
2432             $nexus     = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
2433         }
2434
2435         next TEMP if blacklisted('encl_temp', $nexus);
2436
2437         # Make sure these values are integers
2438         $reading  =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $reading  = '[N/A]';
2439         $max_warn =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $max_warn = '[N/A]';
2440         $max_crit =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $max_crit = '[N/A]';
2441         $min_warn =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $min_warn = '[N/A]';
2442         $min_crit =~ s{\A \s* (-?\d+) \s* C? \s* \z}{$1}xms or $min_crit = '[N/A]';
2443
2444         # Inactive temp probes
2445         if ($status eq 'Unknown' and $state eq 'Inactive') {
2446             my $msg = sprintf '%s in enclosure %s [%s] is %s',
2447               $name, $encl_id, $encl_name, $state;
2448             report('storage', $msg, $E_OK, $nexus);
2449         }
2450         elsif ($status ne 'Ok' and $max_crit ne '[N/A]' and $reading > $max_crit) {
2451             my $msg = sprintf '%s in enclosure %s [%s] is critically high at %d C',
2452               $name, $encl_id, $encl_name, $reading;
2453             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2454             report('chassis', $msg, $err, $nexus);
2455         }
2456         elsif ($status ne 'Ok' and $max_warn ne '[N/A]' and $reading > $max_warn) {
2457             my $msg = sprintf '%s in enclosure %s [%s] is too high at %d C',
2458               $name, $encl_id, $encl_name, $reading;
2459             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2460             report('chassis', $msg, $err, $nexus);
2461         }
2462         elsif ($status ne 'Ok' and $min_crit ne '[N/A]' and $reading < $min_crit) {
2463             my $msg = sprintf '%s in enclosure %s [%s] is critically low at %d C',
2464               $name, $encl_id, $encl_name, $reading;
2465             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2466             report('chassis', $msg, $err, $nexus);
2467         }
2468         elsif ($status ne 'Ok' and $min_warn ne '[N/A]' and $reading < $min_warn) {
2469             my $msg = sprintf '%s in enclosure %s [%s] is too low at %d C',
2470               $name, $encl_id, $encl_name, $reading;
2471             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2472             report('chassis', $msg, $err, $nexus);
2473         }
2474         # Default
2475         elsif ($status ne 'Ok') {
2476             my $msg = sprintf '%s in enclosure %s [%s] is %s',
2477               $name, $encl_id, $encl_name, $state;
2478             if (defined $reading && $reading =~ m{\A -?\d+ \z}xms) {
2479                 # take into account that with certain states the
2480                 # reading doesn't exist or is not an integer
2481                 $msg .= sprintf ' at %s C', $reading;
2482                 if ($min_warn eq '[N/A]' or $min_crit eq '[N/A]') {
2483                     $msg .= sprintf ' (max=%s/%s)', $max_warn, $max_crit;
2484                 }
2485                 else {
2486                     $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
2487                       $min_warn, $min_crit, $max_warn, $max_crit;
2488                 }
2489             }
2490             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2491             report('storage', $msg, $err, $nexus);
2492         }
2493         # Ok
2494         else {
2495             my $msg = sprintf '%s in enclosure %s [%s]',
2496               $name, $encl_id, $encl_name;
2497             if (defined $reading && $reading ne '[N/A]') {
2498                 # take into account that with certain states the
2499                 # reading doesn't exist or is not an integer
2500                 $msg .= sprintf ' reads %d C', $reading;
2501                 if ($min_warn eq '[N/A]' or $min_crit eq '[N/A]') {
2502                     $msg .= sprintf ' (max=%s/%s)', $max_warn, $max_crit;
2503                 }
2504                 else {
2505                     $msg .= sprintf ' (min=%s/%s, max=%s/%s)',
2506                       $min_warn, $min_crit, $max_warn, $max_crit;
2507                 }
2508             }
2509             else {
2510                 $msg .= sprintf ' is %s', $state;
2511             }
2512             report('storage', $msg, $E_OK, $nexus);
2513         }
2514
2515         # Collect performance data
2516         if (defined $opt{perfdata} && $reading ne '[N/A]') {
2517             $name =~ s{\A Temperature\sProbe\s(\d+) \z}{temp_$1}gxms;
2518             my $label = "enclosure_${encl_id}_${name}";
2519             my $mini = $label;
2520             $mini =~ s{enclosure_(.+?)_temp_(.+?)}{e$1t$2}xms;
2521             push @perfdata, {
2522                              label => $label,
2523                              mini  => $mini,
2524                              value => $reading,
2525                              warn  => $max_warn,
2526                              crit  => $max_crit,
2527                             };
2528         }
2529     }
2530     return;
2531 }
2532
2533
2534 #-----------------------------------------
2535 # STORAGE: Check enclosure management modules (EMM)
2536 #-----------------------------------------
2537 sub check_enclosure_emms {
2538     return if $#controllers == -1;
2539     return if blacklisted('encl_emm', 'all');
2540
2541     my $nexus     = undef;
2542     my $name      = undef;
2543     my $state     = undef;
2544     my $status    = undef;
2545     my $encl_id   = undef;
2546     my $encl_name = undef;
2547     my @output    = ();
2548
2549     if ($snmp) {
2550         my %emms_oid
2551           = (
2552              '1.3.6.1.4.1.674.10893.1.20.130.13.1.2'  => 'enclosureManagementModuleName',
2553              '1.3.6.1.4.1.674.10893.1.20.130.13.1.4'  => 'enclosureManagementModuleState',
2554              '1.3.6.1.4.1.674.10893.1.20.130.13.1.11' => 'enclosureManagementModuleComponentStatus',
2555              '1.3.6.1.4.1.674.10893.1.20.130.13.1.12' => 'enclosureManagementModuleNexusID',
2556              '1.3.6.1.4.1.674.10893.1.20.130.14.1.4'  => 'enclosureManagementModuleConnectionEnclosureName',
2557              '1.3.6.1.4.1.674.10893.1.20.130.14.1.5'  => 'enclosureManagementModuleConnectionEnclosureNumber',
2558             );
2559         my $result = undef;
2560         if ($opt{use_get_table}) {
2561             my $enclosureManagementModuleTable = '1.3.6.1.4.1.674.10893.1.20.130.13';
2562             my $enclosureManagementModuleConnectionTable = '1.3.6.1.4.1.674.10893.1.20.130.14';
2563
2564             $result = $snmp_session->get_table(-baseoid => $enclosureManagementModuleTable);
2565             my $ext = $snmp_session->get_table(-baseoid => $enclosureManagementModuleConnectionTable);
2566
2567             if (defined $result) {
2568                 defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
2569             }
2570         }
2571         else {
2572             $result = $snmp_session->get_entries(-columns => [keys %emms_oid]);
2573         }
2574
2575         # No enclosure EMMs is OK
2576         return if !defined $result;
2577
2578         @output = @{ get_snmp_output($result, \%emms_oid) };
2579     }
2580     else {
2581         foreach my $enc (@enclosures) {
2582             push @output, @{ run_omreport("storage enclosure controller=$enc->{ctrl} enclosure=$enc->{id} info=emms") };
2583             map_item('ctrl', $enc->{ctrl}, \@output);
2584             map_item('encl_id', $enc->{id}, \@output);
2585             map_item('encl_name', $enc->{name}, \@output);
2586         }
2587     }
2588
2589     my %emms_state
2590       = (
2591          0  => 'Unknown',
2592          1  => 'Ready',
2593          2  => 'Failed',
2594          3  => 'Online',
2595          4  => 'Offline',
2596          5  => 'Not Installed',
2597          6  => 'Degraded',
2598          21 => 'Missing',
2599         );
2600
2601     # Check EMMs on each of the enclosures
2602   EMM:
2603     foreach my $out (@output) {
2604         if ($snmp) {
2605             $name      = $out->{enclosureManagementModuleName} || 'Unknown EMM';
2606             $state     = get_hashval($out->{enclosureManagementModuleState}, \%emms_state) || 'Unknown state';
2607             $status    = get_snmp_status($out->{enclosureManagementModuleComponentStatus});
2608             $encl_id   = $snmp_enclosure{$out->{enclosureManagementModuleConnectionEnclosureNumber}}{nexus};
2609             $encl_name = $out->{enclosureManagementModuleConnectionEnclosureName} || 'Unknown enclosure';
2610             $nexus     = convert_nexus(($out->{enclosureManagementModuleNexusID} || 9999));
2611         }
2612         else {
2613             $name      = get_nonempty_string('Name', $out, 'Unknown EMM');
2614             $state     = get_nonempty_string('State', $out, 'Unknown state');
2615             $status    = get_nonempty_string('Status', $out, 'Unknown');
2616             $encl_id   = join q{:}, $out->{ctrl}, $out->{'encl_id'};
2617             $encl_name = $out->{encl_name};
2618             $nexus     = join q{:}, $out->{ctrl}, $out->{'encl_id'}, get_nonempty_string('ID', $out, '9999');
2619         }
2620
2621         next EMM if blacklisted('encl_emm', $nexus);
2622
2623         # Not installed
2624         if ($status =~ m{\A Other|Unknown \z}xms and $state eq 'Not Installed') {
2625             my $msg = sprintf '%s in enclosure %s [%s] is %s',
2626               $name, $encl_id, $encl_name, $state;
2627             report('storage', $msg, $E_OK, $nexus);
2628         }
2629         # Default
2630         elsif ($status ne 'Ok') {
2631             my $msg = sprintf '%s in enclosure %s [%s] needs attention: %s',
2632               $name, $encl_id, $encl_name, $state;
2633             report('storage', $msg, $status2nagios{$status}, $nexus);
2634         }
2635         # Ok
2636         else {
2637             my $msg = sprintf '%s in enclosure %s [%s] is %s',
2638               $name, $encl_id, $encl_name, $state;
2639             report('storage', $msg, $E_OK, $nexus);
2640         }
2641     }
2642     return;
2643 }
2644
2645
2646 #-----------------------------------------
2647 # CHASSIS: Check memory modules
2648 #-----------------------------------------
2649 sub check_memory {
2650     return if blacklisted('dimm', 'all');
2651
2652     my $index    = undef;
2653     my $status   = undef;
2654     my $location = undef;
2655     my $size     = undef;
2656     my $modes    = undef;
2657     my @failures = ();
2658     my @output   = ();
2659
2660     if ($snmp) {
2661         my %dimm_oid
2662           = (
2663              '1.3.6.1.4.1.674.10892.1.1100.50.1.2.1'  => 'memoryDeviceIndex',
2664              '1.3.6.1.4.1.674.10892.1.1100.50.1.5.1'  => 'memoryDeviceStatus',
2665              '1.3.6.1.4.1.674.10892.1.1100.50.1.8.1'  => 'memoryDeviceLocationName',
2666              '1.3.6.1.4.1.674.10892.1.1100.50.1.14.1' => 'memoryDeviceSize',
2667              '1.3.6.1.4.1.674.10892.1.1100.50.1.20.1' => 'memoryDeviceFailureModes',
2668             );
2669         my $result = undef;
2670         if ($opt{use_get_table}) {
2671             my $memoryDeviceTable = '1.3.6.1.4.1.674.10892.1.1100.50.1';
2672             $result = $snmp_session->get_table(-baseoid => $memoryDeviceTable);
2673         }
2674         else {
2675             $result = $snmp_session->get_entries(-columns => [keys %dimm_oid]);
2676         }
2677
2678         if (!defined $result) {
2679             printf "SNMP ERROR [memory]: %s.\n", $snmp_session->error;
2680             $snmp_session->close;
2681             exit $E_UNKNOWN;
2682         }
2683
2684         @output = @{ get_snmp_output($result, \%dimm_oid) };
2685     }
2686     else {
2687         @output = @{ run_omreport("$omopt_chassis memory") };
2688     }
2689
2690     # Note: These values are bit masks, so combination values are
2691     # possible. If value is 0 (zero), memory device has no faults.
2692     my %failure_mode
2693       = (
2694          1  => 'ECC single bit correction warning rate exceeded',
2695          2  => 'ECC single bit correction failure rate exceeded',
2696          4  => 'ECC multibit fault encountered',
2697          8  => 'ECC single bit correction logging disabled',
2698          16 => 'device disabled because of spare activation',
2699         );
2700
2701   DIMM:
2702     foreach my $out (@output) {
2703         @failures = ();  # Initialize
2704         if ($snmp) {
2705             $index    = ($out->{memoryDeviceIndex} || 10000) - 1;
2706             $status   = get_snmp_status($out->{memoryDeviceStatus});
2707             $location = $out->{memoryDeviceLocationName} || 'Unknown location';
2708             $size     = sprintf '%d MB', ($out->{memoryDeviceSize} || 0)/1024;
2709             $modes    = $out->{memoryDeviceFailureModes} || -9999;
2710             if ($modes > 0) {
2711                 foreach my $mask (sort keys %failure_mode) {
2712                     if (($modes & $mask) != 0) { push @failures, $failure_mode{$mask}; }
2713                 }
2714             }
2715             elsif ($modes == -9999) {
2716                 push @failures, q{ERROR: Failure modes not available via SNMP};
2717             }
2718         }
2719         else {
2720             my $type  = get_nonempty_string('Type', $out, q{});
2721             $index    = $type eq '[Not Occupied]' ? undef : get_nonempty_string('Index', $out, 9999);
2722             $status   = get_nonempty_string('Status', $out, 'Unknown');
2723             $location = get_nonempty_string('Connector Name', $out, 'Unknown location');
2724             $size     = get_nonempty_string('Size', $out, 0);
2725             if (defined $size) {
2726                 $size =~ s{\s\s}{ }gxms;
2727             }
2728             # Run 'omreport chassis memory index=X' to get the failures
2729             if ($status ne 'Ok' && defined $index) {
2730                 foreach (@{ run_command("$omreport $omopt_chassis memory index=$index -fmt ssv") }) {
2731                     if (m/\A Failures; (.+?) \z/xms) {
2732                         chop(my $fail = $1);
2733                         push @failures, split m{\.}xms, $fail;
2734                     }
2735                 }
2736             }
2737         }
2738         $location =~ s{\A \s*(.*?)\s* \z}{$1}xms;
2739
2740         # calculate total memory
2741         my $msize = defined $size ? $size : 0;
2742         $msize =~ s{\A (\d+) \s MB}{$1}xms;
2743         $count{mem} += $msize;
2744
2745         next DIMM if blacklisted('dimm', $index);
2746
2747         # Ignore empty memory slots
2748         next DIMM if !defined $index;
2749         $count{dimm}++;
2750
2751         if ($status ne 'Ok') {
2752             my $msg = undef;
2753             if (scalar @failures == 0) {
2754                 $msg = sprintf 'Memory module %d [%s, %s] needs attention (%s)',
2755                   $index, $location, $size, $status;
2756             }
2757             else {
2758                 $msg = sprintf 'Memory module %d [%s, %s] needs attention: %s',
2759                   $index, $location, $size, (join q{, }, @failures);
2760             }
2761
2762             report('chassis', $msg, $status2nagios{$status}, $index);
2763         }
2764         # Ok
2765         else {
2766             my $msg = sprintf 'Memory module %d [%s, %s] is %s',
2767               $index, $location, $size, $status;
2768             report('chassis', $msg, $E_OK, $index);
2769         }
2770     }
2771     return;
2772 }
2773
2774
2775 #-----------------------------------------
2776 # CHASSIS: Check fans
2777 #-----------------------------------------
2778 sub check_fans {
2779     return if blacklisted('fan', 'all');
2780
2781     my $index    = undef;
2782     my $status   = undef;
2783     my $reading  = undef;
2784     my $location = undef;
2785     my $max_crit = undef;
2786     my $max_warn = undef;
2787     my @output   = ();
2788
2789     if ($snmp) {
2790         my %cool_oid
2791           = (
2792              '1.3.6.1.4.1.674.10892.1.700.12.1.2.1'  => 'coolingDeviceIndex',
2793              '1.3.6.1.4.1.674.10892.1.700.12.1.5.1'  => 'coolingDeviceStatus',
2794              '1.3.6.1.4.1.674.10892.1.700.12.1.6.1'  => 'coolingDeviceReading',
2795              '1.3.6.1.4.1.674.10892.1.700.12.1.8.1'  => 'coolingDeviceLocationName',
2796              '1.3.6.1.4.1.674.10892.1.700.12.1.10.1' => 'coolingDeviceUpperCriticalThreshold',
2797              '1.3.6.1.4.1.674.10892.1.700.12.1.11.1' => 'coolingDeviceUpperNonCriticalThreshold',
2798             );
2799         my $result = undef;
2800         if ($opt{use_get_table}) {
2801             my $coolingDeviceTable = '1.3.6.1.4.1.674.10892.1.700.12.1';
2802             $result = $snmp_session->get_table(-baseoid => $coolingDeviceTable);
2803         }
2804         else {
2805             $result = $snmp_session->get_entries(-columns => [keys %cool_oid]);
2806         }
2807
2808         if ($blade && !defined $result) {
2809             return 0;
2810         }
2811         elsif (!$blade && !defined $result) {
2812             printf "SNMP ERROR [cooling]: %s.\n", $snmp_session->error;
2813             $snmp_session->close;
2814             exit $E_UNKNOWN;
2815         }
2816
2817         @output = @{ get_snmp_output($result, \%cool_oid) };
2818     }
2819     else {
2820         @output = @{ run_omreport("$omopt_chassis fans") };
2821     }
2822
2823   FAN:
2824     foreach my $out (@output) {
2825         if ($snmp) {
2826             $index    = ($out->{coolingDeviceIndex} || 10000) - 1;
2827             $status   = get_snmp_probestatus($out->{coolingDeviceStatus});
2828             $reading  = $out->{coolingDeviceReading} || 0;
2829             $location = $out->{coolingDeviceLocationName} || 'Unknown location';
2830             $max_crit = $out->{coolingDeviceUpperCriticalThreshold} || 0;
2831             $max_warn = $out->{coolingDeviceUpperNonCriticalThreshold} || 0;
2832         }
2833         else {
2834             $index    = get_nonempty_string('Index', $out, 9999);
2835             $status   = get_nonempty_string('Status', $out, 'Unknown');
2836             $reading  = get_nonempty_string('Reading', $out, 0);
2837             $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
2838             $max_crit = get_nonempty_string('Maximum Failure Threshold', $out, 0);
2839             $max_warn = get_nonempty_string('Maximum Warning Threshold', $out, 0);
2840             if ($max_crit eq '[N/A]') { $max_crit = 0; }
2841             if ($max_warn eq '[N/A]') { $max_warn = 0; }
2842             $reading  =~ s{\A (\d+).* \z}{$1}xms;
2843             $max_warn =~ s{\A (\d+).* \z}{$1}xms;
2844             $max_crit =~ s{\A (\d+).* \z}{$1}xms;
2845         }
2846
2847         next FAN if blacklisted('fan', $index);
2848         $count{fan}++;
2849
2850         if ($status ne 'Ok') {
2851             my $msg = sprintf 'Chassis fan %d [%s] needs attention: %s',
2852               $index, $location, $status;
2853             my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
2854             report('chassis', $msg, $err, $index);
2855         }
2856         else {
2857             my $msg = sprintf 'Chassis fan %d [%s]: %s',
2858               $index, $location, $reading;
2859             report('chassis', $msg, $E_OK, $index);
2860         }
2861
2862         # Collect performance data
2863         if (defined $opt{perfdata}) {
2864             my $pname = lc $location;
2865             $pname =~ s{\s}{_}gxms;
2866             $pname =~ s{proc_}{cpu#}xms;
2867             push @perfdata, {
2868                              label => "fan_${index}_${pname}",
2869                              mini  => "f$index",
2870                              value => $reading,
2871                              warn  => $max_warn,
2872                              crit  => $max_crit,
2873                             };
2874         }
2875     }
2876     return;
2877 }
2878
2879
2880 #-----------------------------------------
2881 # CHASSIS: Check power supplies
2882 #-----------------------------------------
2883 sub check_powersupplies {
2884     return if blacklisted('ps', 'all');
2885
2886     my $index    = undef;
2887     my $status   = undef;
2888     my $type     = undef;
2889     my $err_type = undef;
2890     my $state    = undef;
2891     my @states   = ();
2892     my @output   = ();
2893
2894     if ($snmp) {
2895         my %ps_oid
2896           = (
2897              '1.3.6.1.4.1.674.10892.1.600.12.1.2.1'  => 'powerSupplyIndex',
2898              '1.3.6.1.4.1.674.10892.1.600.12.1.5.1'  => 'powerSupplyStatus',
2899              '1.3.6.1.4.1.674.10892.1.600.12.1.7.1'  => 'powerSupplyType',
2900              '1.3.6.1.4.1.674.10892.1.600.12.1.11.1' => 'powerSupplySensorState',
2901              '1.3.6.1.4.1.674.10892.1.600.12.1.12.1' => 'powerSupplyConfigurationErrorType',
2902             );
2903         my $result = undef;
2904         if ($opt{use_get_table}) {
2905             my $powerDeviceTable = '1.3.6.1.4.1.674.10892.1.600.12.1';
2906             $result = $snmp_session->get_table(-baseoid => $powerDeviceTable);
2907         }
2908         else {
2909             $result = $snmp_session->get_entries(-columns => [keys %ps_oid]);
2910         }
2911
2912         # No instrumented PSU is OK (blades, low-end servers)
2913         return 0 if !defined $result;
2914
2915         @output = @{ get_snmp_output($result, \%ps_oid) };
2916     }
2917     else {
2918         @output = @{ run_omreport("$omopt_chassis pwrsupplies") };
2919     }
2920
2921     my %ps_type
2922       = (
2923          1  => 'Other',
2924          2  => 'Unknown',
2925          3  => 'Linear',
2926          4  => 'Switching',
2927          5  => 'Battery',
2928          6  => 'Uninterruptible Power Supply',
2929          7  => 'Converter',
2930          8  => 'Regulator',
2931          9  => 'AC',
2932          10 => 'DC',
2933          11 => 'VRM',
2934         );
2935
2936     my %ps_state
2937       = (
2938          1  => 'Presence detected',
2939          2  => 'Failure detected',
2940          4  => 'Predictive Failure',
2941          8  => 'AC lost',
2942          16 => 'AC lost or out-of-range',
2943          32 => 'AC out-of-range but present',
2944          64 => 'Configuration error',
2945         );
2946
2947     my %ps_config_error_type
2948       = (
2949          1 => 'Vendor mismatch',
2950          2 => 'Revision mismatch',
2951          3 => 'Processor missing',
2952         );
2953
2954   PS:
2955     foreach my $out (@output) {
2956         if ($snmp) {
2957             @states = ();  # contains states for the PS
2958
2959             $index    = ($out->{powerSupplyIndex} || 10000) - 1;
2960             $status   = get_snmp_status($out->{powerSupplyStatus});
2961             $type     = get_hashval($out->{powerSupplyType}, \%ps_type) || 'Unknown type';
2962             $err_type = get_hashval($out->{powerSupplyConfigurationErrorType}, \%ps_config_error_type);
2963
2964             # get the combined state from the StatusReading OID
2965             my $raw_state = $out->{powerSupplySensorState} || 0;
2966             foreach my $mask (sort keys %ps_state) {
2967                 if (($raw_state & $mask) != 0) {
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 {
2981             $index  = get_nonempty_string('Index', $out, 9999);
2982             $status = get_nonempty_string('Status', $out, 'Unknown');
2983             $type   = get_nonempty_string('Type', $out, 'Unknown type');
2984             $state  = get_nonempty_string('Online Status', $out, 'Unknown state');
2985         }
2986
2987         next PS if blacklisted('ps', $index);
2988         $count{power}++;
2989
2990         if ($status ne 'Ok') {
2991             my $msg = sprintf 'Power Supply %d [%s] needs attention: %s',
2992               $index, $type, $state;
2993             report('chassis', $msg, $status2nagios{$status}, $index);
2994         }
2995         else {
2996             my $msg = sprintf 'Power Supply %d [%s]: %s',
2997               $index, $type, $state;
2998             report('chassis', $msg, $E_OK, $index);
2999         }
3000     }
3001     return;
3002 }
3003
3004
3005 #-----------------------------------------
3006 # CHASSIS: Check temperatures
3007 #-----------------------------------------
3008 sub check_temperatures {
3009     return if blacklisted('temp', 'all');
3010
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             );
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);
3047
3048         if (!defined $result) {
3049             printf "SNMP ERROR [temperatures]: %s.\n", $snmp_session->error;
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) {
3071             $index    = ($out->{temperatureProbeIndex} || 10000) - 1;
3072             $status   = get_snmp_probestatus($out->{temperatureProbeStatus});
3073             $location = $out->{temperatureProbeLocationName} || 'Unknown location';
3074             $type     = get_hashval($out->{temperatureProbeType}, \%probe_type);
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
3089             # workaround for bad temp probes
3090             if ($type eq 'AmbientESM' and $reading !~ m{\A \d+(\.\d+)? \z}xms) {
3091                 $type = 'Discrete';
3092             }
3093         }
3094         else {
3095             $index    = get_nonempty_string('Index', $out, 9999);
3096             $status   = get_nonempty_string('Status', $out, 'Unknown');
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
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') {
3119             my $msg = sprintf 'Temperature probe %d [%s] is %s',
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
3128                 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom max=%d)',
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
3134                 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom max=%d)',
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
3140                 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom min=%d)',
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
3146                 my $msg = sprintf 'Temperature Probe %d [%s] reads %d C (custom min=%d)',
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) {
3151                 my $msg = sprintf 'Temperature Probe %d [%s] is critically high at %d C',
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) {
3157                 my $msg = sprintf 'Temperature Probe %d [%s] is too high at %d C',
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) {
3163                 my $msg = sprintf 'Temperature Probe %d [%s] is critically low at %d C',
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) {
3169                 my $msg = sprintf 'Temperature Probe %d [%s] is too low at %d C',
3170                   $index, $location, $reading;
3171                 my $err = $snmp ? $probestatus2nagios{$status} : $status2nagios{$status};
3172                 report('chassis', $msg, $err, $index);
3173             }
3174             # Ok
3175             else {
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;
3184                 }
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;
3195                 push @perfdata, {
3196                                  label => "temp_${index}_${pname}",
3197                                  mini  => "t$index",
3198                                  value => $reading,
3199                                  warn  => $max_warn,
3200                                  crit  => $max_crit,
3201                                 };
3202             }
3203         }
3204     }
3205     return;
3206 }
3207
3208
3209 #-----------------------------------------
3210 # CHASSIS: Check processors
3211 #-----------------------------------------
3212 sub check_processors {
3213     return if blacklisted('cpu', 'all');
3214
3215     my $index   = undef;
3216     my $status  = undef;
3217     my $state   = undef;
3218     my $brand   = undef;
3219     my $family  = undef;
3220     my $man     = undef;
3221     my $speed   = undef;
3222     my @output = ();
3223
3224     if ($snmp) {
3225
3226         # NOTE: For some reason, older models don't have the
3227         # "Processor Device Status" OIDs. We check both the newer
3228         # (preferred) OIDs and the old ones.
3229
3230         my %cpu_oid
3231           = (
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',
3242             );
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';
3247
3248             $result = $snmp_session->get_table(-baseoid => $processorDeviceTable);
3249             my $ext = $snmp_session->get_table(-baseoid => $processorDeviceStatusTable);
3250
3251             defined $ext && map { $$result{$_} = $$ext{$_} } keys %{ $ext };
3252         }
3253         else {
3254             $result = $snmp_session->get_entries(-columns => [keys %cpu_oid]);
3255         }
3256
3257         if (!defined $result) {
3258             printf "SNMP ERROR [processors]: %s.\n", $snmp_session->error;
3259             $snmp_session->close;
3260             exit $E_UNKNOWN;
3261         }
3262
3263         @output = @{ get_snmp_output($result, \%cpu_oid) };
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
3290     # Mapping between family numbers from SNMP and actual CPU family
3291     my %cpu_family
3292       = (
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 ',
3322          59  => 'Opteron 6100',                         60  => 'Opteron 4100',
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',
3395          205 => 'Core i5',                              206 => 'Core i3',
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',
3401          217 => 'VIA Nano',                             218 => 'Dual-Core Xeon 5xxx',
3402          219 => 'Quad-Core Xeon 5xxx',                  220 => undef,
3403          221 => 'Dual-Core Xeon 7xxx',                  222 => 'Quad-Core Xeon 7xxx',
3404          223 => 'Multi-Core Xeon 7xxx',                 224 => 'Multi-Core Xeon 3400',
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',
3419         );
3420
3421   CPU:
3422     foreach my $out (@output) {
3423         if ($snmp) {
3424             $index  = exists $out->{processorDeviceStatusIndex}
3425               ? ($out->{processorDeviceStatusIndex} || 10000) - 1
3426                 : ($out->{processorDeviceIndex} || 10000) - 1;
3427             $status = exists $out->{processorDeviceStatusStatus}
3428               ? get_snmp_status($out->{processorDeviceStatusStatus})
3429                 : get_snmp_status($out->{processorDeviceStatus});
3430             if (defined $out->{processorDeviceStatusReading}) {
3431                 my @states  = ();  # contains states for the CPU
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 {
3444                 $state  = get_hashval($out->{processorDeviceStatusState}, \%cpu_state) || 'Unknown state';
3445             }
3446             $man    = $out->{processorDeviceManufacturerName} || undef;
3447             $family = (defined $out->{processorDeviceFamily}
3448                        and defined $cpu_family{$out->{processorDeviceFamily}})
3449               ? $cpu_family{$out->{processorDeviceFamily}} : undef;
3450             $speed  = $out->{processorDeviceCurrentSpeed} || undef;
3451             $brand  = $out->{processorDeviceBrandName} || undef;
3452         }
3453         else {
3454             $index  = get_nonempty_string('Index', $out, 9999);
3455             $status = get_nonempty_string('Status', $out, 'Unknown');
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);
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)
3471         if ($snmp and defined $out->{processorDeviceStatusReading}
3472             and $out->{processorDeviceStatusReading} == 0) {
3473             next CPU;
3474         }
3475
3476         $count{cpu}++;
3477
3478         if (defined $brand) {
3479             $brand =~ s{\s\s+}{ }gxms;
3480             $brand =~ s{\((R|tm)\)}{}gxms;
3481             $brand =~ s{\s(CPU|Processor)}{}xms;
3482             $brand =~ s{\s\@}{}xms;
3483         }
3484         elsif (defined $family and defined $man and defined $speed) {
3485             $speed =~ s{\A (\d+) .*}{$1}xms;
3486             $brand = sprintf '%s %s %.2fGHz', $man, $family, $speed / 1000;
3487         }
3488         else {
3489             $brand = "unknown";
3490         }
3491
3492         # Default
3493         if ($status ne 'Ok') {
3494             my $msg = sprintf 'Processor %d [%s] needs attention: %s',
3495               $index, $brand, $state;
3496             report('chassis', $msg, $status2nagios{$status}, $index);
3497         }
3498         # Ok
3499         else {
3500             my $msg = sprintf 'Processor %d [%s] is %s',
3501               $index, $brand, $state;
3502             report('chassis', $msg, $E_OK, $index);
3503         }
3504     }
3505     return;
3506 }
3507
3508
3509 #-----------------------------------------
3510 # CHASSIS: Check voltage probes
3511 #-----------------------------------------
3512 sub check_volts {
3513     return if blacklisted('volt', 'all');
3514
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             );
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);
3533
3534         if (!defined $result) {
3535             printf "SNMP ERROR [voltage]: %s.\n", $snmp_session->error;
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) {
3555             $index    = ($out->{voltageProbeIndex} || 10000) - 1;
3556             $status   = get_snmp_probestatus($out->{voltageProbeStatus});
3557             $reading  = defined $out->{voltageProbeReading}
3558               ? sprintf('%.3f V', $out->{voltageProbeReading}/1000)
3559                 : get_hashval($out->{voltageProbeDiscreteReading}, \%volt_discrete_reading);
3560             $location = $out->{voltageProbeLocationName} || 'Unknown location';
3561         }
3562         else {
3563             $index    = get_nonempty_string('Index', $out, 9999);
3564             $status   = get_nonempty_string('Status', $out, 'Unknown');
3565             $reading  = get_nonempty_string('Reading', $out, 'Unknown reading');
3566             $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
3567         }
3568
3569         next VOLT if blacklisted('volt', $index);
3570         $count{volt}++;
3571
3572         my $msg = sprintf 'Voltage sensor %d [%s] is %s',
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 #-----------------------------------------
3584 sub check_batteries {
3585     return if blacklisted('bp', 'all');
3586
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             );
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         }
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) {
3629             $index    = ($out->{batteryIndex} || 10000) - 1;
3630             $status   = get_snmp_status($out->{batteryStatus});
3631             $reading  = get_hashval($out->{batteryReading}, \%bat_reading) || 'Unknown reading';
3632             $location = $out->{batteryLocationName} || 'Unknown location';
3633         }
3634         else {
3635             $index    = get_nonempty_string('Index', $out, 9999);
3636             $status   = get_nonempty_string('Status', $out, 'Unknown');
3637             $reading  = get_nonempty_string('Reading', $out, 'Unknown reading');
3638             $location = get_nonempty_string('Probe Name', $out, 'Unknown location');
3639         }
3640
3641         next BATTERY if blacklisted('bp', $index);
3642         $count{bat}++;
3643
3644         my $msg = sprintf 'Battery probe %d [%s] is %s',
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 #-----------------------------------------
3655 sub check_pwrmonitoring {
3656     return if blacklisted('amp', 'all');
3657
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;
3665     my $type     = undef;
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             );
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         }
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) {
3740             $index    = ($out->{amperageProbeIndex} || 10000) - 1;
3741             $status   = get_snmp_probestatus($out->{amperageProbeStatus});
3742             $type     = get_hashval($out->{amperageProbeType}, \%amp_type);
3743             $reading  = $type eq 'amperageProbeTypeIsDiscrete'
3744               ? get_hashval($out->{amperageProbeDiscreteReading}, \%amp_discrete)
3745                 : ($out->{amperageProbeReading} || 0);
3746             $location = $out->{amperageProbeLocationName} || 'Unknown location';
3747             $max_crit = $out->{amperageProbeUpperCriticalThreshold} || 0;
3748             $max_warn = $out->{amperageProbeUpperNonCriticalThreshold} || 0;
3749             $unit     = exists $amp_unit{$amp_type{$out->{amperageProbeType}}}
3750               ? $amp_unit{$amp_type{$out->{amperageProbeType}}} : 'mA';
3751
3752             # calculate proper values and set unit for ampere probes
3753             if ($unit eq 'hA' and $type ne 'amperageProbeTypeIsDiscrete') {
3754                 $reading  /= 10;
3755                 $max_crit /= 10;
3756                 $max_warn /= 10;
3757                 $unit      = 'A';
3758             }
3759         }
3760         else {
3761             $index    = get_nonempty_string('Index', $out, 9999);
3762             $status   = get_nonempty_string('Status', $out, 'Unknown');
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
3771             $reading  =~ s{\A (\d+.*?)\s+([a-zA-Z]+) \s*\z}{$1}xms;
3772             $unit     = $2 || 'unknown';
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
3777         next AMP if blacklisted('amp', $index);
3778         next AMP if $index !~ m{\A \d+ \z}xms;
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
3785         if ($snmp && $status eq 'Unknown' && $reading eq '[N/A]') {
3786             next AMP;
3787         }
3788
3789         $count{amp}++;
3790
3791         # Special case: Discrete reading
3792         if (defined $type and $type eq 'amperageProbeTypeIsDiscrete') {
3793             my $msg = sprintf 'Amperage probe %d [%s] is %s',
3794               $index, $location, $reading;
3795             report('chassis', $msg, $status2nagios{$status}, $index);
3796         }
3797         # Default
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         }
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)
3807             my $label = join q{_}, 'pwr_mon', $index, lc $location;
3808             $label =~ s{\s}{_}gxms;
3809             push @perfdata, {
3810                              label => $label,
3811                              mini  => "p${index}" . lc $unit,
3812                              value => $reading,
3813                              warn  => $max_warn,
3814                              crit  => $max_crit,
3815                             };
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
3827         foreach (@perfdata) {
3828             if ($_->{label} =~ m/\A pwr_mon_(\d+)/xms) {
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             }
3844             if ($found and $line =~ m/\A ([^;]+?) ; (\d*\.\d+) \s [AW] \z/xms) {
3845                 my $aname = lc $1;
3846                 my $aval = $2;
3847                 $aname =~ s{\s}{_}gxms;
3848
3849                 # don't use an existing index
3850                 while (exists $used{$index}) { ++$index; }
3851
3852                 push @perfdata, {
3853                                  label => "pwr_mon_${index}_${aname}",
3854                                  mini  => "p${index}a",
3855                                  value => $aval,
3856                                  warn  => 0,
3857                                  crit  => 0,
3858                                 };
3859                 ++$index;
3860             }
3861         }
3862     }
3863
3864     return;
3865 }
3866
3867
3868 #-----------------------------------------
3869 # CHASSIS: Check intrusion
3870 #-----------------------------------------
3871 sub check_intrusion {
3872     return if blacklisted('intr', 'all');
3873
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             );
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         }
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) {
3915             $index    = ($out->{intrusionIndex} || 10000) - 1;
3916             $status   = get_snmp_status($out->{intrusionStatus});
3917             $reading  = get_hashval($out->{intrusionReading}, \%int_reading) || 'Unknown reading';
3918         }
3919         else {
3920             $index    = get_nonempty_string('Index', $out, 9999);
3921             $status   = get_nonempty_string('Status', $out, 'Unknown');
3922             $reading  = get_nonempty_string('State', $out, 'Unknown reading');
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
3944 #-----------------------------------------
3945 # CHASSIS: Check SD Card Device
3946 #-----------------------------------------
3947 sub 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) {
4006             $index    = ($out->{sdCardDeviceIndex} || 10000) - 1;
4007             $status   = get_snmp_status($out->{sdCardDeviceStatus});
4008
4009             if (defined $out->{sdCardDeviceCardState}) {
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
4028             $location = $out->{sdCardDeviceLocationName} || 'Unknown location';
4029             $capacity = sprintf '%s MB', ($out->{sdCardDeviceCardStorageSize} || 'Unknown size');
4030         }
4031         else {
4032             $index    = $c++;
4033             $status   = get_nonempty_string('Status', $out, 'Ok');
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};
4039         }
4040
4041         next SDCARD if blacklisted('sd', $index);
4042         $count{sd}++ if $state ne 'Absent';
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
4066 #-----------------------------------------
4067 # CHASSIS: Check alert log
4068 #-----------------------------------------
4069 sub 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 #-----------------------------------------
4092 sub 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) {
4099             my $msg = sprintf 'SNMP ERROR [esmhealth]: %s',
4100               $snmp_session->error;
4101             report('other', $msg, $E_UNKNOWN);
4102         }
4103         $health = get_snmp_status($result->{$systemStateEventLogStatus});
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') {
4119         my $msg = sprintf 'ESM log health is Ok (less than 80%% full)';
4120         report('other', $msg, $E_OK);
4121     }
4122     elsif ($health eq 'Critical') {
4123         my $msg = sprintf 'ESM log is 100%% full';
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 #-----------------------------------------
4137 sub 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 #
4177 sub 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 #
4200 sub 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) {
4205             next if !m/\A (Chassis\sModel|Chassis\sService\sTag|Model|Service\sTag|System\sRevision)/xms;
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             }
4215             if ($key eq 'System Revision') {
4216                 $sysinfo{rev} = q{ } . $val;
4217             }
4218         }
4219     }
4220     return;
4221 }
4222
4223 #
4224 # Fetch output from 'omreport chassis bios', put in sysinfo hash
4225 #
4226 sub 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 #
4245 sub 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 #
4268 sub 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 #
4285 sub 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',
4290          '1.3.6.1.4.1.674.10892.1.300.10.1.48.1' => 'chassisSystemRevisionName',
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             }
4305             elsif (exists $chassis_oid{$oid} and $chassis_oid{$oid} eq 'chassisSystemRevisionName') {
4306                 $sysinfo{rev} = q{ } . $result->{$oid};
4307             }
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 #
4321 sub 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 #
4353 sub 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 #
4384 sub get_snmp_about {
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
4389     if (defined $result) {
4390         $sysinfo{om} = exists $result->{$oid} && $result->{$oid} ne q{}
4391           ? $result->{$oid} : 'unknown';
4392     }
4393     else {
4394         my $msg = sprintf 'SNMP ERROR: Getting OMSA version failed: %s', $snmp_session->error;
4395         report('other', $msg, $E_UNKNOWN);
4396     }
4397     return;
4398 }
4399
4400 #
4401 # Collects some information about the system
4402 #
4403 sub 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
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
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
4428     return;
4429 }
4430
4431
4432 # Helper function for running omreport when the results are strictly
4433 # name=value pairs.
4434 sub 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)
4458 sub 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 => 'iDRAC',                              # Integrated Dell Remote Access Controller
4503          19 => 'unifiedServerConfigurator',          # Unified Server Configurator
4504          20 => 'lifecycleController',                # Lifecycle Controller
4505         );
4506
4507
4508     if ($snmp) {
4509         foreach my $out (@snmp_output) {
4510             if ($fw_type{$out->{firmwareType}} eq 'baseboardManagementController') {
4511                 $sysinfo{'bmc'} = 1;
4512                 $sysinfo{'bmc_fw'} = $out->{firmwareVersionName};
4513             }
4514             elsif ($fw_type{$out->{firmwareType}} =~ m{\A rac|iDRAC \z}xms) {
4515                 my $name = $out->{firmwareTypeName}; $name =~ s/\s//gxms;
4516                 $sysinfo{'rac'} = 1;
4517                 $sysinfo{'rac_name'} = $name;
4518                 $sysinfo{'rac_fw'} = $out->{firmwareVersionName};
4519             }
4520         }
4521     }
4522     else {
4523         foreach my $key (keys %nrpe_output) {
4524             next if !defined $nrpe_output{$key};
4525             if ($key eq 'BMC Version' or $key eq 'Baseboard Management Controller Version') {
4526                 $sysinfo{'bmc'} = 1;
4527                 $sysinfo{'bmc_fw'} = $nrpe_output{$key};
4528             }
4529             elsif ($key =~ m{\A (i?DRAC)\s*(\d?)\s+Version}xms) {
4530                 my $name = "$1$2";
4531                 $sysinfo{'rac'} = 1;
4532                 $sysinfo{'rac_fw'} = $nrpe_output{$key};
4533                 $sysinfo{'rac_name'} = $name;
4534             }
4535         }
4536     }
4537
4538     return;
4539 }
4540
4541
4542
4543 #=====================================================================
4544 # Main program
4545 #=====================================================================
4546
4547 # Here we do the actual checking of components
4548 # Check global status if applicable
4549 if ($global) {
4550     $globalstatus = check_global();
4551 }
4552
4553 # Do multiple selected checks
4554 if ($check{storage})     { check_storage();       }
4555 if ($check{memory})      { check_memory();        }
4556 if ($check{fans})        { check_fans();          }
4557 if ($check{power})       { check_powersupplies(); }
4558 if ($check{temp})        { check_temperatures();  }
4559 if ($check{cpu})         { check_processors();    }
4560 if ($check{voltage})     { check_volts();         }
4561 if ($check{batteries})   { check_batteries();     }
4562 if ($check{amperage})    { check_pwrmonitoring(); }
4563 if ($check{intrusion})   { check_intrusion();     }
4564 if ($check{sdcard})      { check_sdcard();        }
4565 if ($check{alertlog})    { check_alertlog();      }
4566 if ($check{esmlog})      { check_esmlog();        }
4567 if ($check{esmhealth})   { check_esmlog_health(); }
4568
4569
4570 #---------------------------------------------------------------------
4571 # Finish up
4572 #---------------------------------------------------------------------
4573
4574 # Counter variable
4575 %nagios_alert_count
4576   = (
4577      'OK'       => 0,
4578      'WARNING'  => 0,
4579      'CRITICAL' => 0,
4580      'UNKNOWN'  => 0,
4581     );
4582
4583 # Get system information
4584 get_sysinfo();
4585
4586 # Get firmware info if requested via option
4587 if ($opt{okinfo} >= 1) {
4588     get_firmware_info();
4589 }
4590
4591 # Close SNMP session
4592 if ($snmp) {
4593     $snmp_session->close;
4594 }
4595
4596 # Print messages
4597 if ($opt{debug}) {
4598     # finding the mode of operation
4599     my $mode = 'local';
4600     if ($snmp) {
4601         # Setting the domain (IP version and transport protocol)
4602         my $transport = $opt{tcp} ? 'TCP' : 'UDP';
4603         my $ipversion = $opt{ipv6} ? 'IPv6' : 'IPv4';
4604         $mode = "SNMPv$opt{protocol} $transport/$ipversion";
4605     }
4606
4607     print "   System:      $sysinfo{model}$sysinfo{rev}";
4608     print q{ } x (25 - length "$sysinfo{model}$sysinfo{rev}"), "OMSA version:    $sysinfo{om}\n";
4609     print "   ServiceTag:  $sysinfo{serial}";
4610     print q{ } x (25 - length $sysinfo{serial}), "Plugin version:  $VERSION\n";
4611     print "   BIOS/date:   $sysinfo{bios} $sysinfo{biosdate}";
4612     print q{ } x (25 - length "$sysinfo{bios} $sysinfo{biosdate}"), "Checking mode:   $mode\n";
4613     if ($#report_storage >= 0) {
4614         print "-----------------------------------------------------------------------------\n";
4615         print "   Storage Components                                                        \n";
4616         print "=============================================================================\n";
4617         print "  STATE  |    ID    |  MESSAGE TEXT                                          \n";
4618         print "---------+----------+--------------------------------------------------------\n";
4619         foreach (@report_storage) {
4620             my ($msg, $level, $nexus) = @{$_};
4621             print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | "
4622               . q{ } x (8 - length $nexus) . "$nexus | $msg\n";
4623             $nagios_alert_count{$reverse_exitcode{$level}}++;
4624         }
4625     }
4626     if ($#report_chassis >= 0) {
4627         print "-----------------------------------------------------------------------------\n";
4628         print "   Chassis Components                                                        \n";
4629         print "=============================================================================\n";
4630         print "  STATE  |  ID  |  MESSAGE TEXT                                              \n";
4631         print "---------+------+------------------------------------------------------------\n";
4632         foreach (@report_chassis) {
4633             my ($msg, $level, $nexus) = @{$_};
4634             print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | "
4635               . q{ } x (4 - length $nexus) . "$nexus | $msg\n";
4636             $nagios_alert_count{$reverse_exitcode{$level}}++;
4637         }
4638     }
4639     if ($#report_other >= 0) {
4640         print "-----------------------------------------------------------------------------\n";
4641         print "   Other messages                                                            \n";
4642         print "=============================================================================\n";
4643         print "  STATE  |  MESSAGE TEXT                                                     \n";
4644         print "---------+-------------------------------------------------------------------\n";
4645         foreach (@report_other) {
4646             my ($msg, $level, $nexus) = @{$_};
4647             print q{ } x (8 - length $reverse_exitcode{$level}) . "$reverse_exitcode{$level} | $msg\n";
4648             $nagios_alert_count{$reverse_exitcode{$level}}++;
4649         }
4650     }
4651 }
4652 else {
4653     my $c = 0;  # counter to determine linebreaks
4654
4655     # Run through each message, sorted by severity level
4656   ALERT:
4657     foreach (sort {$a->[1] < $b->[1]} (@report_storage, @report_chassis, @report_other)) {
4658         my ($msg, $level, $nexus) = @{ $_ };
4659         next ALERT if $level == $E_OK;
4660
4661         if (defined $opt{only}) {
4662             # If user wants only critical alerts
4663             next ALERT if ($opt{only} eq 'critical' and $level == $E_WARNING);
4664
4665             # If user wants only warning alerts
4666             next ALERT if ($opt{only} eq 'warning' and $level == $E_CRITICAL);
4667         }
4668
4669         # Prefix with service tag if specified with option '-i|--info'
4670         if ($opt{info}) {
4671             if (defined $opt{htmlinfo}) {
4672                 $msg = '[<a href="' . warranty_url($sysinfo{serial})
4673                   . "\">$sysinfo{serial}</a>] " . $msg;
4674             }
4675             else {
4676                 $msg = "[$sysinfo{serial}] " . $msg;
4677             }
4678         }
4679
4680         # Prefix with nagios level if specified with option '--state'
4681         $msg = $reverse_exitcode{$level} . ": $msg" if $opt{state};
4682
4683         # Prefix with one-letter nagios level if specified with option '--short-state'
4684         $msg = (substr $reverse_exitcode{$level}, 0, 1) . ": $msg" if $opt{shortstate};
4685
4686         ($c++ == 0) ? print $msg : print $linebreak, $msg;
4687
4688         $nagios_alert_count{$reverse_exitcode{$level}}++;
4689     }
4690 }
4691
4692 # Determine our exit code
4693 $exit_code = $E_OK;
4694 $exit_code = $E_UNKNOWN  if $nagios_alert_count{'UNKNOWN'} > 0;
4695 $exit_code = $E_WARNING  if $nagios_alert_count{'WARNING'} > 0;
4696 $exit_code = $E_CRITICAL if $nagios_alert_count{'CRITICAL'} > 0;
4697
4698 # Global status via SNMP.. extra safety check
4699 if ($globalstatus != $E_OK && $exit_code == $E_OK && !defined $opt{only}) {
4700     print "OOPS! Something is wrong with this server, but I don't know what. ";
4701     print "The global system health status is $reverse_exitcode{$globalstatus}, ";
4702     print "but every component check is OK. This may be a bug in the Nagios plugin, ";
4703     print "please file a bug report.\n";
4704     exit $E_UNKNOWN;
4705 }
4706
4707 # Print OK message
4708 if ($exit_code == $E_OK && defined $opt{only} && $opt{only} !~ m{\A critical|warning|chassis \z}xms && !$opt{debug}) {
4709     my %okmsg
4710       = ( 'storage'     => "STORAGE OK - $count{pdisk} physical drives, $count{vdisk} logical drives",
4711           'fans'        => $count{fan} == 0 && $blade ? 'OK - blade system with no fan probes' : "FANS OK - $count{fan} fan probes checked",
4712           'temp'        => "TEMPERATURES OK - $count{temp} temperature probes checked",
4713           'memory'      => "MEMORY OK - $count{dimm} memory modules, $count{mem} MB total memory",
4714           'power'       => $count{power} == 0 ? 'OK - no instrumented power supplies found' : "POWER OK - $count{power} power supplies checked",
4715           'cpu'         => "PROCESSORS OK - $count{cpu} processors checked",
4716           'voltage'     => "VOLTAGE OK - $count{volt} voltage probes checked",
4717           'batteries'   => $count{bat} == 0 ? 'OK - no batteries found' : "BATTERIES OK - $count{bat} batteries checked",
4718           'amperage'    => $count{amp} == 0 ? 'OK - no power monitoring probes found' : "AMPERAGE OK - $count{amp} amperage (power monitoring) probes checked",
4719           'intrusion'   => $count{intr} == 0 ? 'OK - no intrusion detection probes found' : "INTRUSION OK - $count{intr} intrusion detection probes checked",
4720           '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",
4721           'esmlog'      => "OK - ESM Log content: $count{esm}{Ok} ok, $count{esm}{'Non-Critical'} warning and $count{esm}{Critical} critical",
4722           'esmhealth'   => "ESM LOG OK - less than 80% used",
4723           'sdcard'      => "SD CARDS OK - $count{sd} SD cards installed",
4724         );
4725
4726     print $okmsg{$opt{only}};
4727 }
4728 elsif ($exit_code == $E_OK && !$opt{debug}) {
4729     if (defined $opt{htmlinfo}) {
4730         printf q{OK - System: '<a href="%s">%s%s</a>', SN: '<a href="%s">%s</a>'},
4731           documentation_url($sysinfo{model}), $sysinfo{model}, $sysinfo{rev},
4732             warranty_url($sysinfo{serial}), $sysinfo{serial};
4733     }
4734     else {
4735         printf q{OK - System: '%s%s', SN: '%s'},
4736           $sysinfo{model}, $sysinfo{rev}, $sysinfo{serial};
4737     }
4738
4739     if ($check{memory}) {
4740         my $unit = 'MB';
4741         if ($count{mem} >= 1024) {
4742             $count{mem} /= 1024;
4743             $unit = 'GB';
4744         }
4745         printf ', %d %s ram (%d dimms)', $count{mem}, $unit, $count{dimm};
4746     }
4747     else {
4748         print ', not checking memory';
4749     }
4750
4751     if ($check{storage}) {
4752         printf ', %d logical drives, %d physical drives',
4753           $count{vdisk}, $count{pdisk};
4754     }
4755     else {
4756         print ', not checking storage';
4757     }
4758
4759     if ($opt{okinfo} >= 1) {
4760         print $linebreak;
4761         printf q{----- BIOS='%s %s'}, $sysinfo{bios}, $sysinfo{biosdate};
4762
4763         if ($sysinfo{rac}) {
4764             printf q{, %s='%s'}, $sysinfo{rac_name}, $sysinfo{rac_fw};
4765         }
4766         if ($sysinfo{bmc}) {
4767             printf q{, BMC='%s'}, $sysinfo{bmc_fw};
4768         }
4769     }
4770
4771     if ($opt{okinfo} >= 2) {
4772         if ($check{storage}) {
4773             my @storageprint = ();
4774             foreach my $id (sort keys %{ $sysinfo{controller} }) {
4775                 chomp $sysinfo{controller}{$id}{driver};
4776                 my $msg = sprintf q{----- Ctrl %s [%s]: Fw='%s', Dr='%s'},
4777                   $sysinfo{controller}{$id}{id}, $sysinfo{controller}{$id}{name},
4778                     $sysinfo{controller}{$id}{firmware}, $sysinfo{controller}{$id}{driver};
4779                 if (defined $sysinfo{controller}{$id}{storport}) {
4780                     $msg .= sprintf q{, Storport: '%s'}, $sysinfo{controller}{$id}{storport};
4781                 }
4782                 push @storageprint, $msg;
4783             }
4784             foreach my $id (sort keys %{ $sysinfo{enclosure} }) {
4785                 push @storageprint, sprintf q{----- Encl %s [%s]: Fw='%s'},
4786                   $sysinfo{enclosure}{$id}->{id}, $sysinfo{enclosure}{$id}->{name},
4787                     $sysinfo{enclosure}{$id}->{firmware};
4788             }
4789
4790             # print stuff
4791             foreach my $line (@storageprint) {
4792                 print $linebreak, $line;
4793             }
4794         }
4795     }
4796
4797     if ($opt{okinfo} >= 3) {
4798         print "$linebreak----- OpenManage Server Administrator (OMSA) version: '$sysinfo{om}'";
4799     }
4800
4801 }
4802 else {
4803     if ($opt{extinfo}) {
4804         print $linebreak;
4805         if (defined $opt{htmlinfo}) {
4806             printf '------ SYSTEM: <a href="%s">%s%s</a>, SN: <a href="%s">%s</a>',
4807               documentation_url($sysinfo{model}), $sysinfo{model}, $sysinfo{rev},
4808                 warranty_url($sysinfo{serial}), $sysinfo{serial};
4809         }
4810         else {
4811             printf '------ SYSTEM: %s%s, SN: %s',
4812               $sysinfo{model}, $sysinfo{rev}, $sysinfo{serial};
4813         }
4814     }
4815     if (defined $opt{postmsg}) {
4816         my $post = undef;
4817         if (-f $opt{postmsg}) {
4818             open my $POST, '<', $opt{postmsg}
4819               or ( print $linebreak
4820                    and print "ERROR: Couldn't open post message file $opt{postmsg}: $!\n"
4821                    and exit $E_UNKNOWN );
4822             $post = <$POST>;
4823             close $POST;
4824             chomp $post;
4825         }
4826         else {
4827             $post = $opt{postmsg};
4828         }
4829         if (defined $post) {
4830             print $linebreak;
4831             $post =~ s{[%]s}{$sysinfo{serial}}gxms;
4832             $post =~ s{[%]m}{$sysinfo{model}$sysinfo{rev}}gxms;
4833             $post =~ s{[%]b}{$sysinfo{bios}}gxms;
4834             $post =~ s{[%]d}{$sysinfo{biosdate}}gxms;
4835             $post =~ s{[%]o}{$sysinfo{osname}}gxms;
4836             $post =~ s{[%]r}{$sysinfo{osver}}gxms;
4837             $post =~ s{[%]p}{$count{pdisk}}gxms;
4838             $post =~ s{[%]l}{$count{vdisk}}gxms;
4839             $post =~ s{[%]n}{$linebreak}gxms;
4840             $post =~ s{[%]{2}}{%}gxms;
4841             print $post;
4842         }
4843     }
4844 }
4845
4846 # Reset the WARN signal
4847 $SIG{__WARN__} = 'DEFAULT';
4848
4849 # Print any perl warnings that have occured
4850 if (@perl_warnings) {
4851     foreach (@perl_warnings) {
4852         chop @$_;
4853         print "${linebreak}INTERNAL ERROR: @$_";
4854     }
4855     $exit_code = $E_UNKNOWN;
4856 }
4857
4858 # Print performance data
4859 if (defined $opt{perfdata} && !$opt{debug} && @perfdata) {
4860     my $lb = $opt{perfdata} eq 'multiline' ? "\n" : q{ };  # line break for perfdata
4861     print q{|};
4862
4863     # Sort routine for performance data
4864     sub perfsort {
4865         my %order = ( fan => 0, pwr => 1, tem => 2, enc => 3, );
4866         return ($order{(substr $a->{label}, 0, 3)} cmp $order{(substr $b->{label}, 0, 3)}) ||
4867           $a->{label} cmp $b->{label};
4868     }
4869
4870     # Print performance data sorted
4871     my $type = $opt{perfdata} eq 'minimal' ? 'mini' : 'label';
4872     print join $lb, map { "$_->{$type}=$_->{value};$_->{warn};$_->{crit}" } sort perfsort @perfdata;
4873 }
4874
4875 # Print a linebreak at the end
4876 print "\n" if !$opt{debug};
4877
4878 # Exit with proper exit code
4879 exit $exit_code;