[project @ peter@palfrader.org-20080809094038-47w9c4sxk38twte0]
[mirror/dsa-nagios.git] / dsa-nagios-nrpe-config / dsa-check-hpacucli
1 #!/usr/bin/perl -w
2
3 # check _physical_ disk status of disks on HP smart array controllers
4 # requires hpacucli
5 #
6 # does _not_ check raid status.  use arrayprobe for that.
7
8 # Copyright (c) 2008 Peter Palfrader <peter@palfrader.org>
9 #
10 # Permission is hereby granted, free of charge, to any person obtaining
11 # a copy of this software and associated documentation files (the
12 # "Software"), to deal in the Software without restriction, including
13 # without limitation the rights to use, copy, modify, merge, publish,
14 # distribute, sublicense, and/or sell copies of the Software, and to
15 # permit persons to whom the Software is furnished to do so, subject to
16 # the following conditions:
17 #
18 # The above copyright notice and this permission notice shall be
19 # included in all copies or substantial portions of the Software.
20 #
21 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
22 # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
23 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
24 # NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE
25 # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION
26 # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
27 # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
28
29 use strict;
30
31 # nagios exit codes
32 my %CODE = (
33         'OK'            => 0,
34         'WARNING'       => 1,
35         'CRITICAL'      => 2,
36         'UNKNOWN'       => 3
37 );
38
39 my $EXITCODE = 'OK';
40
41 $SIG{'__DIE__'} = sub {
42         print STDERR @_;
43         exit $CODE{'UNKNOWN'};
44 };
45
46 sub runcmd($) {
47         my ($cmd) = @_;
48         $cmd = "sudo hpacucli $cmd";
49         open(FH, $cmd."|") or die ("Cannot run $cmd: $!");
50         my @lines = <FH>;
51         close FH;
52         die ("no results from $cmd\n") if (scalar @lines == 0);
53         return \@lines;
54 }
55
56 sub record($) {
57         my ($newexit) = @_;
58         die "code $newexit not defined\n" unless defined $CODE{$newexit};
59
60         if ($CODE{$newexit} > $CODE{$EXITCODE}) {
61                 $EXITCODE = $newexit;
62         };
63 }
64
65
66 my $ctrlallshow = runcmd("controller all show");
67 my @controllers;
68 for (@$ctrlallshow) {
69         chomp;
70         next if /^$/;
71         if (/in Slot ([0-9]+) /) {
72                 push @controllers, $1;
73                 next;
74         };
75         die ("Cannot read line '$_' gotten from hpacucli controller all show\n");
76 };
77
78 if (scalar @controllers == 0) {
79         print "UNKNONW: No smartarray controllers found with hpacucli\n";
80         exit $CODE{'UNKNOWN'}
81 };
82
83 my @resultstr;
84
85 for my $slot (sort @controllers) {
86         my $pds = runcmd("controller slot=$slot pd all show");
87         my @drives;
88         my $nodrives = 0;
89         my %status;
90         for (@$pds) {
91                 chomp;
92                 next if /^$/;
93                 next if (/^\S.*in Slot $slot/);
94                 next if /^ *array [A-Z]$/;
95                 if (/^ *(array [A-Z]) \(Failed\)$/) {
96                         record('CRITICAL');
97                         push @{$status{'Failed'}}, $1;
98                 } elsif (/^Error: The specified controller does not have any physical drives on it.$/) {
99                         $nodrives = 1;
100                 } elsif (/^ *physicaldrive (\S+) .* (OK|Predictive Failure|Failed|Rebuilding)(?:, spare)?\)$/) {
101                         my $drive = $1;
102                         my $status = $2;
103                         push @{$status{$status}}, $drive;
104                         if ($status eq 'OK') {
105                         } elsif ($status eq 'Predictive Failure' ||
106                                  $status eq 'Rebuilding') {
107                                 record('WARNING');
108                         } elsif ($status eq 'Failed') {
109                                 record('CRITICAL');
110                         } else {
111                                 record('UNKNOWN');
112                         };      
113                         push @drives, $drive;
114                 } else {
115                         die ("Cannot read line '$_' gotten from hpacucli controller slot=$slot pd all show\n");
116                 };
117         };
118
119         # Check that all drives have the proper transfer speed.
120         # sometimes stuff breaks and they fall back to 10mb/sec.
121         for my $drive (@drives) {
122                 my $type;
123                 if ($drive =~ /^[0-9]+:[0-9]+$/) { # scsi drives
124                         $type = 'SCSI';
125                 } elsif ($drive =~ /^[0-9]+I:[0-9]+:[0-9]+$/) { # SAS
126                         $type = 'SAS';
127                 } else {
128                         # I'm not going to run pass arguments of unknown form to the shell..
129                         warn ("Unknown diskdrive ID $drive\n");
130                         next;
131                 }
132
133                 my $pd = runcmd("controller slot=$slot pd $drive show");
134                 while (defined $pd->[0] && !($pd->[0] =~ /physicaldrive/)) {
135                         shift @$pd;
136                 };
137                 shift @$pd;
138                 my %value;
139                 for (@$pd) {
140                         if (m/^\s*(.*?):\s*(.*?)\s*$/) {
141                                 $value{$1} = $2;
142                         }
143                 }
144
145                 my $key;
146                 my $expected;
147                 if ($type eq 'SCSI') {
148                         $key = 'Transfer Speed';
149                         if (!defined $value{'Transfer Mode'}) {
150                                 record('WARNING');
151                                 push @{$status{'unknown transfer mode'}}, $drive;
152                                 next;
153                         } elsif ($value{'Transfer Mode'} eq 'Ultra 3 Wide') {
154                                 $expected = '160 MB/Sec';
155                         } elsif ($value{'Transfer Mode'} eq 'Ultra 320 Wide') {
156                                 $expected = '320 MB/Sec';
157                         } else {
158                                 record('WARNING');
159                                 push @{$status{'unknown transfer mode'}}, $drive."(".$value{'Transfer Mode'}.")";
160                                 next;
161                         };
162                 } elsif ($type eq 'SAS') {
163                         $key = 'PHY Transfer Rate';
164                         $expected = '3.0GBPS';
165                 } else {
166                         warn "Should not be here.  Do not know what to do with type '$type'\n";
167                         next;
168                 }
169
170                 if (!defined $value{$key}) {
171                         record('WARNING');
172                         push @{$status{'unknown transfer speed'}}, $drive;
173                 } elsif ($value{$key} ne $expected) {
174                         record('WARNING');
175                         push @{$status{'bad transfer speed'}}, $drive."(".$value{$key}.")";
176                 };
177         };
178
179         if ($nodrives && scalar keys %status > 0) {
180                 push @resultstr, "Slot $slot: have no drives but status results?";
181                 record('UNKNOWN');
182                 next;
183         } elsif ($nodrives) {
184                 push @resultstr, "Slot $slot: no drives";
185                 next;
186         };
187
188         my $cst = runcmd("controller slot=$slot show status");
189         for (@$cst) {
190                 chomp;
191                 next if /^$/;
192                 next if (/^\S.*in Slot $slot/);
193                 if (/^ *(.*) Status: (.*)$/) {
194                         my $system = $1;
195                         my $status = $2;
196                         push @{$status{$status}}, $system;
197                         if ($status ne 'OK') {
198                                 record('WARNING');
199                         };
200                 } else {
201                         die ("Cannot read line '$_' gotten from hpacucli controller slot=$slot show status\n");
202                 };
203         };
204
205         my $status = join(" - ", (map { $_.": ".join(", ", @{$status{$_}}) } keys %status));
206         push @resultstr, "Slot $slot: $status";
207 };
208
209 print "$EXITCODE: ", join(" --- ", @resultstr), "\n";
210 exit $CODE{$EXITCODE};