Subversion Repositories camp_sysinfo_client_3

Rev

Rev 203 | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
152 rodolico 1
#!/usr/bin/env perl
2
use warnings;
165 rodolico 3
use strict;
4
use Data::Dumper;
152 rodolico 5
 
169 rodolico 6
# Description: Use smartctl, lsblk and geom to get disk information
7
# will decode lsblk first. Then use geom to get information on BSD systems
8
# finally, smartctl will be used to gather additional information.
152 rodolico 9
 
169 rodolico 10
# 20200224 RWR v2.1
11
# large re-organization of code and inclusion to get basic information from lsblk if it is on the system
152 rodolico 12
 
169 rodolico 13
our $VERSION = '2.1';
14
 
152 rodolico 15
# R. W. Rodolico
16
# grabs smart readings from all drives in system
157 rodolico 17
# note that in the case of some hardware RAID controller, will list the components of a "drive" and the drive itself,
18
# so you may have up to twice the number of entries than you have physical drives, for example, if you have a megaraid
19
# controller where each physical drive is also a single logical drive.
152 rodolico 20
 
165 rodolico 21
# find our location and use it for searching for libraries
152 rodolico 22
BEGIN {
165 rodolico 23
   use FindBin;
24
   use File::Spec;
25
   use lib File::Spec->catdir($FindBin::Bin);
251 rodolico 26
   eval( 'use library;' );
27
   die "Could not find library.pm in the code directory\n" if $@;
28
   eval( 'use Data::Dumper;' );
152 rodolico 29
}
30
 
251 rodolico 31
# check for valid OS
32
exit 2 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
33
 
165 rodolico 34
exit 0 unless checkDate( 'm' ); # run this only on first of month
152 rodolico 35
 
169 rodolico 36
my %driveDefinitions; # this will be a global that everything will put info into
37
 
165 rodolico 38
my %ignoreDriveTypes = ( # a list of drive "types" used by virtuals that we just ignore.
39
         'VBOX HARDDISK' => 1,
40
         );
152 rodolico 41
 
42
 
170 rodolico 43
# routine used by geom to process one block at a time.
44
# first parameter is a pointer to a hash to populate, the rest are
45
# considered to be a splice of an array that contains only one
46
# block. Returns the name of the device
47
sub doGeomBlock {
48
   my $hashPointer = shift;
49
#   die join( "\n", @_ ) . "\n";
50
   while ( my $line = shift ) {
51
      if ( $line ) {
52
         my ($key, $value) = split( ':', $line );
53
         if ( $key =~ m/^\d+\.\s+(.*)$/ ) {
54
            $key = $1;
55
         }
56
         $key = &trim( $key );
57
         $value = &trim( $value );
58
         $hashPointer->{$key} = $value;
59
      }
60
   }
61
#   die Dumper( $hashPointer );
62
   return $hashPointer->{'Name'} ? $hashPointer->{'Name'} : 'Unknown';
63
}
64
 
65
# grab data from geom command (BSD) and import parts of it into driveDefinitions
66
sub geom {
67
   my $line = 0;
68
   my $startBlock = 0;
69
   my $endBlock = 0;
70
   my @report = `geom disk list`;
71
   chomp @report;
72
 
73
   while ( $line < scalar( @report ) ) {
74
      #print "Working on $line\n";
75
      while ( $line < scalar( @report ) && $report[$line] !~ m/^Geom name:\s+(.*)$/ ) {
76
         $line++;
77
      }
78
      $endBlock = $line - 1;
79
      if ( $endBlock > $startBlock ) {
80
         my $thisDrive = {};
81
         my $key = &doGeomBlock( $thisDrive, @report[$startBlock..$endBlock] );
82
         # die "$key\n" . Dumper( $thisDrive );
83
         $key = '/dev/' . $key;
84
         $driveDefinitions{$key}{'Capacity'} = $thisDrive->{'Mediasize'} if defined $thisDrive->{'Mediasize'};
85
         if ( defined( $driveDefinitions{$key}{'Capacity'} ) && $driveDefinitions{$key}{'Capacity'} =~ m/^(\d+)/ ) {
86
            $driveDefinitions{$key}{'Capacity'} = $1;
87
         }
88
         $driveDefinitions{$key}{'Model'} = $thisDrive->{'descr'} if defined $thisDrive->{'descr'};
89
         $driveDefinitions{$key}{'Serial'} = $thisDrive->{'ident'} if defined $thisDrive->{'ident'};
90
         $driveDefinitions{$key}{'Sector Size'} = $thisDrive->{'Sectorsize'} if defined $thisDrive->{'Sectorsize'};
91
         $driveDefinitions{$key}{'Rotation'} = $thisDrive->{'rotationrate'} if defined $thisDrive->{'rotationrate'};
92
 
93
         $startBlock = $line;
94
#         die Dumper( $thisDrive );
95
      }
96
      $line++;
97
   }
98
 
99
}
100
 
101
 
102
 
169 rodolico 103
# acquires information using lsblk, if it is available
104
# uses global %driveDefinitions to store the results
105
 
106
sub lsblk {
107
   eval ( 'use JSON qw( decode_json );' );
108
   if ( $@ ) {
109
      warn "Could not load JSON library\n";    
110
      return;
111
   }
112
 
113
   my $output = qx'lsblk -bdJO 2>/dev/null';
114
   # older versions do not have the O option, so we'll run it without
115
   $output = qx'lsblk -bdJ 2>/dev/null' if $?;
116
   my $drives = decode_json( join( '', $output ) );
117
   $drives = $drives->{'blockdevices'};
118
   while ( my $thisDrive = shift @{$drives} ) {
119
      if ( $thisDrive->{'type'} eq 'disk' ) {
120
         my $key = '/dev/' . $thisDrive->{'name'};
121
         $driveDefinitions{$key}{'Capacity'} = $thisDrive->{'size'};
122
         $driveDefinitions{$key}{'Model'} = $thisDrive->{'model'} if defined $thisDrive->{'model'};
123
         $driveDefinitions{$key}{'Serial'} = $thisDrive->{'serial'} if defined $thisDrive->{'serial'};
124
      }
125
   }
126
}
127
 
128
 
165 rodolico 129
sub getSmartInformationReport {
157 rodolico 130
   my ($drive, $type) = @_;
165 rodolico 131
   $type = '' if ( $type =~ m/scsi/ );
132
   my @report = `smartctl -i $drive $type`;
157 rodolico 133
   chomp @report;
165 rodolico 134
   my %reportHash;
135
   for ( my $i = 0; $i < @report; $i++ ) {
136
      if ( $report[$i] =~ m/^(.*):(.*)$/ ) {
137
         $reportHash{$1} = trim($2);
138
      }
139
   }
140
   return \%reportHash;
141
} # getSmartInformationReport
142
 
143
sub getSmartAttributeReport {
144
   my ($drive, $type) = @_;
203 rodolico 145
   $type = '' if ( ! defined( $type ) || $type =~ m/scsi/ );
165 rodolico 146
   my @report = `smartctl -A $drive $type`;
147
   chomp @report;
148
   my %reportHash;
149
   my %headers;
150
   # bypass all the header information
151
   my $i;
152
   for ( $i = 0; $i < @report && $report[$i] !~ m/^ID#/; $i++ ) {}
153
   if ( $i < @report ) { # did we get an actual report? some drives will not give us one
154
      my $char = 0;
155
      while ( $char < length($report[$i]) ) {
156
         substr( $report[$i],$char ) =~ m/^([^ ]+\s*)/;
157
         my $header = $1;
158
         my $start = $char;
159
         my $length = length($header);
160
         if ( $header = &trim( $header ) ) {
161
            $headers{$header}{'start'} = $start;
162
            $headers{$header}{'length'} = $length-1;
163
         }
164
         $char += $length;
165
      }
166
      while ( ++$i < @report ) {
167
         last unless $report[$i];
168
         my $id = &trim(substr( $report[$i], $headers{'ID#'}{'start'}, $headers{'ID#'}{'length'} ));
169
         my $name = &trim(substr( $report[$i], $headers{'ATTRIBUTE_NAME'}{'start'}, $headers{'ATTRIBUTE_NAME'}{'length'} ));
170
         my $value = &trim(substr( $report[$i], $headers{'RAW_VALUE'}{'start'} ));
171
         $reportHash{$id}{'value'} = $value;
172
         $reportHash{$id}{'name'} = $name;
173
      }
174
   }
175
   #print Dumper( \%reportHash ); die;
176
   return \%reportHash;
152 rodolico 177
}
178
 
179
 
165 rodolico 180
sub getAttributes {
169 rodolico 181
   my ($drive,$type,$sectorSize) = @_;
182
 
183
   my $report = &getSmartAttributeReport( $drive, $type );
184
 
165 rodolico 185
   # first let's get total disk writes
203 rodolico 186
   if ( defined( $report->{'241'} ) && defined( $sectorSize ) ) {
165 rodolico 187
      $sectorSize =~ m/^(\d+)/;
169 rodolico 188
      $driveDefinitions{$drive}{'writes'} = $report->{'241'} * $sectorSize;
165 rodolico 189
   }
190
   # find total uptime
191
   if ( defined( $report->{'9'} ) ) {
192
      $report->{'9'}->{'value'} =~ m/^(\d+)/;
169 rodolico 193
      $driveDefinitions{$drive}{'uptime'} = $1;
165 rodolico 194
   }
152 rodolico 195
}
196
 
197
sub getInformation {
169 rodolico 198
   my ($drive, $type) = @_;
199
 
200
   my $report = &getSmartInformationReport( $drive, $type );
201
 
152 rodolico 202
   my %info;
203
   my %keys = ( 
165 rodolico 204
                  'Model Family'  => { 
152 rodolico 205
                                          'tag' => 'Make',
206
                                          'regex' => '(.*)'
207
                                      },
165 rodolico 208
                  'Device Model'  => { 
152 rodolico 209
                                          'tag' => 'Model',
210
                                          'regex' => '(.*)'
211
                                      },
165 rodolico 212
                  'Serial number' => { 
157 rodolico 213
                                          'tag' => 'Serial',
214
                                          'regex' => '(.*)'
215
                                      },
165 rodolico 216
                  'Serial Number' => { 
152 rodolico 217
                                          'tag' => 'Serial',
218
                                          'regex' => '(.*)'
219
                                      },
165 rodolico 220
                  'User Capacity' => { 
152 rodolico 221
                                          'tag' => 'Capacity',
222
                                          'regex' => '([0-9,]+)'
223
                                      },
165 rodolico 224
                  'Logical block size' =>{ 
157 rodolico 225
                                          'tag' => 'Sector Size',
226
                                          'regex' => '(\d+)'
227
                                      },
165 rodolico 228
                  'Sector Size'   => { 
152 rodolico 229
                                          'tag' => 'Sector Size',
230
                                          'regex' => '(\d+)'
231
                                      },
165 rodolico 232
                  'Rotation Rate' => { 
152 rodolico 233
                                          'tag' => 'Rotation',
234
                                          'regex' => '(.*)'
165 rodolico 235
                                      },
152 rodolico 236
               );
237
   foreach my $key ( keys %keys ) {
165 rodolico 238
      if ( defined( $report->{$key} ) && $report->{$key} =~ m/$keys{$key}->{'regex'}/ ) {
169 rodolico 239
         $driveDefinitions{$drive}{$keys{$key}->{'tag'}} = $1;
152 rodolico 240
      }
241
   }
242
}
243
 
169 rodolico 244
sub smartctl {
245
   # Get all the drives on the system
203 rodolico 246
   my %allDrives;
247
   eval{ 
248
      %allDrives = map { $_ =~ '(^[a-z0-9/]+)\s+(.*)\#'; ($1,$2) } `smartctl --scan`; 
249
   };
250
   return if ( $@ ); # we failed to get anything back
251
 
152 rodolico 252
 
169 rodolico 253
   # output the drives and information as tab delimited,
254
   foreach my $thisDrive ( sort keys %allDrives ) {
255
      $driveDefinitions{$thisDrive}{'type'} = $allDrives{$thisDrive};
256
      &getInformation( $thisDrive, $allDrives{$thisDrive} );
257
      #print Dumper( $info ); die;
258
      my $attributes = &getAttributes( $thisDrive, $allDrives{$thisDrive}, $driveDefinitions{$thisDrive}{'Sector Size'} );
259
      #print Dumper( $attributes ); die;
260
      #print Dumper( $info ); die;
261
   }
262
 
263
}
152 rodolico 264
 
169 rodolico 265
 
266
 
152 rodolico 267
# category we will use for all values found
268
# see sysinfo for a list of valid categories
157 rodolico 269
my $CATEGORY = 'attributes';
152 rodolico 270
 
271
# run the commands necessary to do whatever you want to do
272
# The library entered above has some helper routines
273
# validCommandOnSystem -- passed a name, returns the fully qualified path or '' if it does not exist
274
# cleanUp - passed a delimiter and a string, does the following (delimiter can be '')
275
#           chomps the string (removes trailing newlines)
276
#           removes all text BEFORE the delimiter, the delimiter, and any whitespace
277
#           thus, the string 'xxI Am x  a weird string' with a newline will become
278
#           'a weird string' with no newline
279
 
280
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
281
# item, name as recognized by sysinfo is the second and the value is
282
# the last one. For multiple entries, place on separate lines (ie, newline separated)
283
 
284
# check for commands we want to run
285
my %commands = ( 
286
                  'smartctl' => '',
169 rodolico 287
                  'lsblk' => '',
288
                  'geom' => '',
152 rodolico 289
               );
290
 
291
# check the commands for validity
292
foreach my $command ( keys %commands ) {
293
   $commands{$command} = &validCommandOnSystem( $command );
294
}
295
 
296
# bail if we don't have the commands we need
169 rodolico 297
exit 1 unless $commands{'smartctl'} || $commands{'lsblk'} || $commands{'geom'};
152 rodolico 298
 
169 rodolico 299
# first, get basic information using lsblk for linux systems
300
&lsblk() if $commands{'lsblk'};
301
# now, try geom for bsd systems
170 rodolico 302
&geom() if $commands{'geom'};
303
 
304
#die Dumper( \%driveDefinitions );
169 rodolico 305
# finally, populate whatever using smartctl if it is on system.
306
&smartctl() if $commands{'smartctl'};
152 rodolico 307
 
169 rodolico 308
for my $drive ( sort keys %driveDefinitions ) {
309
   # don't print iSCSI definitions
310
   next if defined( $driveDefinitions{$drive}{'Transport protocol'} ) && $driveDefinitions{$drive}{'Transport protocol'} eq 'ISCSI';
311
   #also, blow off our ignored types
312
   next if ( defined( $driveDefinitions{$drive}{'Model'} ) && defined( $ignoreDriveTypes{ $driveDefinitions{$drive}{'Model'} }  ) );
313
 
314
   # remove comma's from capacity
315
   $driveDefinitions{$drive}{'Capacity'} =~ s/,//g if $driveDefinitions{$drive}{'Capacity'};
316
   foreach my $key ( sort keys %{$driveDefinitions{$drive}} ) {
203 rodolico 317
      print "$CATEGORY\t$drive $key\t$driveDefinitions{$drive}{$key}\n" if defined $driveDefinitions{$drive}{$key};
169 rodolico 318
   }
152 rodolico 319
}
320
 
169 rodolico 321
 
152 rodolico 322
exit 0;