152 |
rodolico |
1 |
#!/usr/bin/env perl
|
|
|
2 |
use warnings;
|
256 |
rodolico |
3 |
use strict;
|
152 |
rodolico |
4 |
|
256 |
rodolico |
5 |
use version ; our $VERSION = 'v2.1.0';
|
|
|
6 |
|
|
|
7 |
# Use smartctl, lsblk and geom to get disk information
|
|
|
8 |
# Author: R. W. Rodolico
|
|
|
9 |
# Date: 2018-04-02
|
|
|
10 |
#
|
169 |
rodolico |
11 |
# will decode lsblk first. Then use geom to get information on BSD systems
|
|
|
12 |
# finally, smartctl will be used to gather additional information.
|
256 |
rodolico |
13 |
#
|
|
|
14 |
# Revision History
|
|
|
15 |
#
|
169 |
rodolico |
16 |
# 20200224 RWR v2.1
|
|
|
17 |
# large re-organization of code and inclusion to get basic information from lsblk if it is on the system
|
256 |
rodolico |
18 |
#
|
152 |
rodolico |
19 |
|
256 |
rodolico |
20 |
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
|
|
|
21 |
# or, if run interactively, in the parent of the modules
|
152 |
rodolico |
22 |
BEGIN {
|
165 |
rodolico |
23 |
use FindBin;
|
|
|
24 |
use File::Spec;
|
256 |
rodolico |
25 |
# prepend the bin directory and its parent
|
|
|
26 |
use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
|
251 |
rodolico |
27 |
eval( 'use library;' );
|
256 |
rodolico |
28 |
die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
|
152 |
rodolico |
29 |
}
|
|
|
30 |
|
256 |
rodolico |
31 |
#####
|
|
|
32 |
##### Change these to match your needs
|
|
|
33 |
#####
|
251 |
rodolico |
34 |
|
256 |
rodolico |
35 |
# Make this a list of all the modules we are going to use. You can replace undef with the version you need, if you like
|
|
|
36 |
my $modulesList = {
|
|
|
37 |
'Data::Dumper' => undef,
|
|
|
38 |
};
|
152 |
rodolico |
39 |
|
256 |
rodolico |
40 |
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
|
|
|
41 |
# the full path (from which or where)
|
169 |
rodolico |
42 |
|
256 |
rodolico |
43 |
# WARNING: This will only work on FreeBSD until the system is updated. We only work with geom
|
|
|
44 |
my $commandsList = {
|
|
|
45 |
'smartctl' => undef,
|
|
|
46 |
# 'geom' => undef,
|
|
|
47 |
# 'lsblk' => undef,
|
|
|
48 |
};
|
152 |
rodolico |
49 |
|
256 |
rodolico |
50 |
# list of operating systems this module can be used on.
|
|
|
51 |
my $osList = {
|
|
|
52 |
# 'mswin32' => undef,
|
|
|
53 |
'freebsd' => undef,
|
|
|
54 |
'linux' => undef,
|
|
|
55 |
};
|
152 |
rodolico |
56 |
|
256 |
rodolico |
57 |
# the category the return data should go into. See sysinfo for a list
|
|
|
58 |
my $CATEGORY = 'attributes';
|
|
|
59 |
|
|
|
60 |
#####
|
|
|
61 |
##### End of required
|
|
|
62 |
#####
|
|
|
63 |
|
|
|
64 |
# some variables needed for our system
|
|
|
65 |
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
|
|
|
66 |
my @out; # temporary location for each line of output
|
|
|
67 |
|
|
|
68 |
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
|
|
|
69 |
for my $module ( keys %$modulesList ) {
|
|
|
70 |
eval ( "use $module;" );
|
|
|
71 |
push @out, "$errorPrepend Could not load $module" if $@;
|
|
|
72 |
}
|
|
|
73 |
|
|
|
74 |
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
|
|
|
75 |
push @out, "$errorPrepend Invalid Operating System";
|
|
|
76 |
}
|
|
|
77 |
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
|
|
|
78 |
push @out, "$errorPrepend Can not find some commands needed";
|
|
|
79 |
}
|
|
|
80 |
if ( !@out ) { # we made it, we have everything, so do the processing
|
|
|
81 |
#####
|
|
|
82 |
##### Your code starts here. Remember to push all output onto @out
|
|
|
83 |
#####
|
|
|
84 |
|
|
|
85 |
my %driveDefinitions; # this will be a global that everything will put info into
|
|
|
86 |
|
|
|
87 |
my %ignoreDriveTypes = ( # a list of drive "types" used by virtuals that we just ignore.
|
|
|
88 |
'VBOX HARDDISK' => 1,
|
|
|
89 |
);
|
|
|
90 |
|
|
|
91 |
|
|
|
92 |
# routine used by geom to process one block at a time.
|
|
|
93 |
# first parameter is a pointer to a hash to populate, the rest are
|
|
|
94 |
# considered to be a splice of an array that contains only one
|
|
|
95 |
# block. Returns the name of the device
|
|
|
96 |
sub doGeomBlock {
|
|
|
97 |
my $hashPointer = shift;
|
|
|
98 |
# die join( "\n", @_ ) . "\n";
|
|
|
99 |
while ( my $line = shift ) {
|
|
|
100 |
if ( $line ) {
|
|
|
101 |
my ($key, $value) = split( ':', $line );
|
|
|
102 |
if ( $key =~ m/^\d+\.\s+(.*)$/ ) {
|
|
|
103 |
$key = $1;
|
|
|
104 |
}
|
|
|
105 |
$key = &trim( $key );
|
|
|
106 |
$value = &trim( $value );
|
|
|
107 |
$hashPointer->{$key} = $value;
|
170 |
rodolico |
108 |
}
|
|
|
109 |
}
|
256 |
rodolico |
110 |
# die Dumper( $hashPointer );
|
|
|
111 |
return $hashPointer->{'Name'} ? $hashPointer->{'Name'} : 'Unknown';
|
170 |
rodolico |
112 |
}
|
|
|
113 |
|
256 |
rodolico |
114 |
# grab data from geom command (BSD) and import parts of it into driveDefinitions
|
|
|
115 |
sub geom {
|
|
|
116 |
my $line = 0;
|
|
|
117 |
my $startBlock = 0;
|
|
|
118 |
my $endBlock = 0;
|
|
|
119 |
my @report = `geom disk list`;
|
|
|
120 |
chomp @report;
|
170 |
rodolico |
121 |
|
256 |
rodolico |
122 |
while ( $line < scalar( @report ) ) {
|
|
|
123 |
#print "Working on $line\n";
|
|
|
124 |
while ( $line < scalar( @report ) && $report[$line] !~ m/^Geom name:\s+(.*)$/ ) {
|
|
|
125 |
$line++;
|
|
|
126 |
}
|
|
|
127 |
$endBlock = $line - 1;
|
|
|
128 |
if ( $endBlock > $startBlock ) {
|
|
|
129 |
my $thisDrive = {};
|
|
|
130 |
my $key = &doGeomBlock( $thisDrive, @report[$startBlock..$endBlock] );
|
|
|
131 |
# die "$key\n" . Dumper( $thisDrive );
|
|
|
132 |
$key = '/dev/' . $key;
|
|
|
133 |
$driveDefinitions{$key}{'Capacity'} = $thisDrive->{'Mediasize'} if defined $thisDrive->{'Mediasize'};
|
|
|
134 |
if ( defined( $driveDefinitions{$key}{'Capacity'} ) && $driveDefinitions{$key}{'Capacity'} =~ m/^(\d+)/ ) {
|
|
|
135 |
$driveDefinitions{$key}{'Capacity'} = $1;
|
|
|
136 |
}
|
|
|
137 |
$driveDefinitions{$key}{'Model'} = $thisDrive->{'descr'} if defined $thisDrive->{'descr'};
|
|
|
138 |
$driveDefinitions{$key}{'Serial'} = $thisDrive->{'ident'} if defined $thisDrive->{'ident'};
|
|
|
139 |
$driveDefinitions{$key}{'Sector Size'} = $thisDrive->{'Sectorsize'} if defined $thisDrive->{'Sectorsize'};
|
|
|
140 |
$driveDefinitions{$key}{'Rotation'} = $thisDrive->{'rotationrate'} if defined $thisDrive->{'rotationrate'};
|
|
|
141 |
|
|
|
142 |
$startBlock = $line;
|
|
|
143 |
# die Dumper( $thisDrive );
|
|
|
144 |
}
|
170 |
rodolico |
145 |
$line++;
|
|
|
146 |
}
|
|
|
147 |
|
|
|
148 |
}
|
|
|
149 |
|
|
|
150 |
|
|
|
151 |
|
256 |
rodolico |
152 |
# acquires information using lsblk, if it is available
|
|
|
153 |
# uses global %driveDefinitions to store the results
|
170 |
rodolico |
154 |
|
256 |
rodolico |
155 |
sub lsblk {
|
|
|
156 |
eval ( 'use JSON qw( decode_json );' );
|
|
|
157 |
if ( $@ ) {
|
|
|
158 |
warn "Could not load JSON library\n";
|
|
|
159 |
return;
|
169 |
rodolico |
160 |
}
|
256 |
rodolico |
161 |
|
|
|
162 |
my $output = qx'lsblk -bdJO 2>/dev/null';
|
|
|
163 |
# older versions do not have the O option, so we'll run it without
|
|
|
164 |
$output = qx'lsblk -bdJ 2>/dev/null' if $?;
|
|
|
165 |
my $drives = decode_json( join( '', $output ) );
|
|
|
166 |
$drives = $drives->{'blockdevices'};
|
|
|
167 |
while ( my $thisDrive = shift @{$drives} ) {
|
|
|
168 |
if ( $thisDrive->{'type'} eq 'disk' ) {
|
|
|
169 |
my $key = '/dev/' . $thisDrive->{'name'};
|
|
|
170 |
$driveDefinitions{$key}{'Capacity'} = $thisDrive->{'size'};
|
|
|
171 |
$driveDefinitions{$key}{'Model'} = $thisDrive->{'model'} if defined $thisDrive->{'model'};
|
|
|
172 |
$driveDefinitions{$key}{'Serial'} = $thisDrive->{'serial'} if defined $thisDrive->{'serial'};
|
|
|
173 |
}
|
|
|
174 |
}
|
169 |
rodolico |
175 |
}
|
|
|
176 |
|
|
|
177 |
|
256 |
rodolico |
178 |
sub getSmartInformationReport {
|
|
|
179 |
my ($drive, $type) = @_;
|
|
|
180 |
$type = '' if ( $type =~ m/scsi/ );
|
|
|
181 |
my @report = `smartctl -i $drive $type`;
|
|
|
182 |
chomp @report;
|
|
|
183 |
my %reportHash;
|
|
|
184 |
for ( my $i = 0; $i < @report; $i++ ) {
|
|
|
185 |
if ( $report[$i] =~ m/^(.*):(.*)$/ ) {
|
|
|
186 |
$reportHash{$1} = trim($2);
|
|
|
187 |
}
|
165 |
rodolico |
188 |
}
|
256 |
rodolico |
189 |
return \%reportHash;
|
|
|
190 |
} # getSmartInformationReport
|
165 |
rodolico |
191 |
|
256 |
rodolico |
192 |
sub getSmartAttributeReport {
|
|
|
193 |
my ($drive, $type) = @_;
|
|
|
194 |
$type = '' if ( ! defined( $type ) || $type =~ m/scsi/ );
|
|
|
195 |
my @report = `smartctl -A $drive $type`;
|
|
|
196 |
chomp @report;
|
|
|
197 |
my %reportHash;
|
|
|
198 |
my %headers;
|
|
|
199 |
# bypass all the header information
|
|
|
200 |
my $i;
|
|
|
201 |
for ( $i = 0; $i < @report && $report[$i] !~ m/^ID#/; $i++ ) {}
|
|
|
202 |
if ( $i < @report ) { # did we get an actual report? some drives will not give us one
|
|
|
203 |
my $char = 0;
|
|
|
204 |
while ( $char < length($report[$i]) ) {
|
|
|
205 |
substr( $report[$i],$char ) =~ m/^([^ ]+\s*)/;
|
|
|
206 |
my $header = $1;
|
|
|
207 |
my $start = $char;
|
|
|
208 |
my $length = length($header);
|
|
|
209 |
if ( $header = &trim( $header ) ) {
|
|
|
210 |
$headers{$header}{'start'} = $start;
|
|
|
211 |
$headers{$header}{'length'} = $length-1;
|
|
|
212 |
}
|
|
|
213 |
$char += $length;
|
165 |
rodolico |
214 |
}
|
256 |
rodolico |
215 |
while ( ++$i < @report ) {
|
|
|
216 |
last unless $report[$i];
|
|
|
217 |
my $id = &trim(substr( $report[$i], $headers{'ID#'}{'start'}, $headers{'ID#'}{'length'} ));
|
|
|
218 |
my $name = &trim(substr( $report[$i], $headers{'ATTRIBUTE_NAME'}{'start'}, $headers{'ATTRIBUTE_NAME'}{'length'} ));
|
|
|
219 |
my $value = &trim(substr( $report[$i], $headers{'RAW_VALUE'}{'start'} ));
|
|
|
220 |
$reportHash{$id}{'value'} = $value;
|
|
|
221 |
$reportHash{$id}{'name'} = $name;
|
|
|
222 |
}
|
165 |
rodolico |
223 |
}
|
256 |
rodolico |
224 |
#print Dumper( \%reportHash ); die;
|
|
|
225 |
return \%reportHash;
|
165 |
rodolico |
226 |
}
|
152 |
rodolico |
227 |
|
|
|
228 |
|
256 |
rodolico |
229 |
sub getAttributes {
|
|
|
230 |
my ($drive,$type,$sectorSize) = @_;
|
169 |
rodolico |
231 |
|
256 |
rodolico |
232 |
my $report = &getSmartAttributeReport( $drive, $type );
|
169 |
rodolico |
233 |
|
256 |
rodolico |
234 |
# first let's get total disk writes
|
|
|
235 |
if ( defined( $report->{'241'} ) && defined( $sectorSize ) ) {
|
|
|
236 |
$sectorSize =~ m/^(\d+)/;
|
|
|
237 |
$driveDefinitions{$drive}{'writes'} = $report->{'241'} * $sectorSize;
|
|
|
238 |
}
|
|
|
239 |
# find total uptime
|
|
|
240 |
if ( defined( $report->{'9'} ) ) {
|
|
|
241 |
$report->{'9'}->{'value'} =~ m/^(\d+)/;
|
|
|
242 |
$driveDefinitions{$drive}{'uptime'} = $1;
|
|
|
243 |
}
|
165 |
rodolico |
244 |
}
|
152 |
rodolico |
245 |
|
256 |
rodolico |
246 |
sub getInformation {
|
|
|
247 |
my ($drive, $type) = @_;
|
169 |
rodolico |
248 |
|
256 |
rodolico |
249 |
my $report = &getSmartInformationReport( $drive, $type );
|
169 |
rodolico |
250 |
|
256 |
rodolico |
251 |
my %info;
|
|
|
252 |
my %keys = (
|
|
|
253 |
'Model Family' => {
|
|
|
254 |
'tag' => 'Make',
|
|
|
255 |
'regex' => '(.*)'
|
|
|
256 |
},
|
|
|
257 |
'Device Model' => {
|
|
|
258 |
'tag' => 'Model',
|
|
|
259 |
'regex' => '(.*)'
|
|
|
260 |
},
|
|
|
261 |
'Serial number' => {
|
|
|
262 |
'tag' => 'Serial',
|
|
|
263 |
'regex' => '(.*)'
|
|
|
264 |
},
|
|
|
265 |
'Serial Number' => {
|
|
|
266 |
'tag' => 'Serial',
|
|
|
267 |
'regex' => '(.*)'
|
|
|
268 |
},
|
|
|
269 |
'User Capacity' => {
|
|
|
270 |
'tag' => 'Capacity',
|
|
|
271 |
'regex' => '([0-9,]+)'
|
|
|
272 |
},
|
|
|
273 |
'Logical block size' =>{
|
|
|
274 |
'tag' => 'Sector Size',
|
|
|
275 |
'regex' => '(\d+)'
|
|
|
276 |
},
|
|
|
277 |
'Sector Size' => {
|
|
|
278 |
'tag' => 'Sector Size',
|
|
|
279 |
'regex' => '(\d+)'
|
|
|
280 |
},
|
|
|
281 |
'Rotation Rate' => {
|
|
|
282 |
'tag' => 'Rotation',
|
|
|
283 |
'regex' => '(.*)'
|
|
|
284 |
},
|
|
|
285 |
);
|
|
|
286 |
foreach my $key ( keys %keys ) {
|
|
|
287 |
if ( defined( $report->{$key} ) && $report->{$key} =~ m/$keys{$key}->{'regex'}/ ) {
|
|
|
288 |
$driveDefinitions{$drive}{$keys{$key}->{'tag'}} = $1;
|
|
|
289 |
}
|
152 |
rodolico |
290 |
}
|
|
|
291 |
}
|
|
|
292 |
|
256 |
rodolico |
293 |
sub smartctl {
|
|
|
294 |
# Get all the drives on the system
|
|
|
295 |
my %allDrives;
|
|
|
296 |
eval{
|
|
|
297 |
%allDrives = map { $_ =~ '(^[a-z0-9/]+)\s+(.*)\#'; ($1,$2) } `smartctl --scan`;
|
|
|
298 |
};
|
|
|
299 |
return if ( $@ ); # we failed to get anything back
|
|
|
300 |
|
|
|
301 |
|
|
|
302 |
# output the drives and information as tab delimited,
|
|
|
303 |
foreach my $thisDrive ( sort keys %allDrives ) {
|
|
|
304 |
$driveDefinitions{$thisDrive}{'type'} = $allDrives{$thisDrive};
|
|
|
305 |
&getInformation( $thisDrive, $allDrives{$thisDrive} );
|
|
|
306 |
#print Dumper( $info ); die;
|
|
|
307 |
my $attributes = &getAttributes( $thisDrive, $allDrives{$thisDrive}, $driveDefinitions{$thisDrive}{'Sector Size'} );
|
|
|
308 |
#print Dumper( $attributes ); die;
|
|
|
309 |
#print Dumper( $info ); die;
|
|
|
310 |
}
|
203 |
rodolico |
311 |
|
169 |
rodolico |
312 |
}
|
152 |
rodolico |
313 |
|
256 |
rodolico |
314 |
# first, get basic information using lsblk for linux systems
|
|
|
315 |
#&lsblk() if $commands{'lsblk'};
|
|
|
316 |
# now, try geom for bsd systems
|
|
|
317 |
#&geom() if $commands{'geom'};
|
169 |
rodolico |
318 |
|
256 |
rodolico |
319 |
#die Dumper( \%driveDefinitions );
|
|
|
320 |
# finally, populate whatever using smartctl if it is on system.
|
|
|
321 |
&smartctl();
|
169 |
rodolico |
322 |
|
256 |
rodolico |
323 |
for my $drive ( sort keys %driveDefinitions ) {
|
|
|
324 |
# don't print iSCSI definitions
|
|
|
325 |
next if defined( $driveDefinitions{$drive}{'Transport protocol'} ) && $driveDefinitions{$drive}{'Transport protocol'} eq 'ISCSI';
|
|
|
326 |
#also, blow off our ignored types
|
|
|
327 |
next if ( defined( $driveDefinitions{$drive}{'Model'} ) && defined( $ignoreDriveTypes{ $driveDefinitions{$drive}{'Model'} } ) );
|
|
|
328 |
|
|
|
329 |
# remove comma's from capacity
|
|
|
330 |
$driveDefinitions{$drive}{'Capacity'} =~ s/,//g if $driveDefinitions{$drive}{'Capacity'};
|
|
|
331 |
foreach my $key ( sort keys %{$driveDefinitions{$drive}} ) {
|
|
|
332 |
push @out, "$CATEGORY\t$drive $key\t$driveDefinitions{$drive}{$key}" if defined $driveDefinitions{$drive}{$key};
|
|
|
333 |
}
|
|
|
334 |
}
|
152 |
rodolico |
335 |
|
169 |
rodolico |
336 |
|
256 |
rodolico |
337 |
#####
|
|
|
338 |
##### Your code ends here.
|
|
|
339 |
#####
|
152 |
rodolico |
340 |
}
|
|
|
341 |
|
256 |
rodolico |
342 |
# If we are testing from the command line (caller is undef), print the results for debugging
|
|
|
343 |
print join( "\n", @out ) . "\n" unless caller;
|
|
|
344 |
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
|
|
|
345 |
my $return = join( "\n", @out );
|
169 |
rodolico |
346 |
|