Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 251 Rev 256
Line 1... Line 1...
1
#!/usr/bin/env perl
1
#!/usr/bin/env perl
2
use warnings;
2
use warnings;
3
use strict;
3
use strict;  
4
 
4
 
5
use Data::Dumper;
5
use version ; our $VERSION = 'v1.0.0';
6
 
6
 
7
# Description: get information on md (RAID)
7
# Template for modules to be used in sysinfo
8
 
-
 
9
our $VERSION = '1.0';
-
 
10
 
-
 
11
# Linux MD (RAID)
-
 
12
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
13
# Date:  2017-11-24
9
# Date:   2025-04-02
14
 
10
#
15
# get some information on RAID arrays covered by mdadm
11
# Description: get information on md (RAID)
-
 
12
#
-
 
13
# Revision History
-
 
14
#
-
 
15
#
16
 
16
 
-
 
17
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
18
# or, if run interactively, in the parent of the modules
17
BEGIN {
19
BEGIN {
18
   use FindBin;
20
   use FindBin;
19
   use File::Spec;
21
   use File::Spec;
20
   use lib File::Spec->catdir($FindBin::Bin);
22
   # prepend the bin directory and its parent
21
   eval( 'use library;' ); die "Could not find library.pm in the code directory\n" if $@;
23
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
22
   eval( 'use Data::Dumper;' );
24
   eval( 'use library;' );
-
 
25
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
23
}
26
}
24
 
27
 
-
 
28
#####
25
# check for valid OS. 
29
##### Change these to match your needs
-
 
30
#####
-
 
31
 
-
 
32
# 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
-
 
33
my $modulesList = {
26
exit 1 unless &checkOS( { 'linux' => undef } );
34
        'Data::Dumper'     => undef,
-
 
35
   };
27
 
36
 
28
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
37
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
-
 
38
# the full path (from which or where)
29
# script returns a 2
39
my $commandsList = {
30
foreach my $command ( 'mdadm', 'fdisk' ) {
40
        'mdadm' => undef,
31
   exit 2 unless &validCommandOnSystem( $command );
41
        'fdisk' => undef,
-
 
42
   };
32
}
43
 
-
 
44
# list of operating systems this module can be used on.
-
 
45
my $osList = {
-
 
46
#         'mswin32' => undef,
-
 
47
#         'freebsd' => undef,
-
 
48
         'linux'   => undef,
-
 
49
   };
33
 
50
 
34
# category we will use for all values found
51
# the category the return data should go into. See sysinfo for a list
35
# see sysinfo for a list of valid categories
-
 
36
my $CATEGORY = 'diskinfo';
52
my $CATEGORY = 'diskinfo';
37
 
53
 
38
# run the commands necessary to do whatever you want to do
-
 
-
 
54
#####
39
# The library entered above has some helper routines
55
##### End of required
40
# validCommandOnSystem -- passed a name, returns the fully qualified path or '' if it does not exist
-
 
41
# cleanUp - passed a delimiter and a string, does the following (delimiter can be '')
-
 
42
#           chomps the string (removes trailing newlines)
-
 
43
#           removes all text BEFORE the delimiter, the delimiter, and any whitespace
-
 
44
#           thus, the string 'xxI Am x  a weird string' with a newline will become
-
 
45
#           'a weird string' with no newline
-
 
-
 
56
#####
46
 
57
 
47
# now, return the tab delimited output (to STDOUT). $CATEGORY is the first
58
# some variables needed for our system
48
# item, name as recognized by sysinfo is the second and the value is
59
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
49
# the last one. For multiple entries, place on separate lines (ie, newline separated)
60
my @out; # temporary location for each line of output
50
 
-
 
51
 
61
 
52
exit 1 unless -e '/proc/mdstat';
62
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
53
 
-
 
54
open MD,'</proc/mdstat' or exit 1;
63
for my $module ( keys %$modulesList ) {
55
my @temp = <MD>;
64
   eval ( "use $module;" );
56
close MD;
65
   push @out, "$errorPrepend Could not load $module" if $@;
57
 
66
}
58
my @results;
-
 
59
 
67
 
60
while ( my $line = shift @temp ) {
-
 
61
   chomp $line;
-
 
62
   if ( $line =~ m/^(md\d+)\s+:\s+(.*)$/ ) {
-
 
63
      my $device = $1;
-
 
64
      my @components = split( /\s+/, $2 );
-
 
65
      shift @components;
-
 
66
      push @results, "$CATEGORY\t$device\tlevel\t" . shift(@components);
-
 
67
      push @results, "$CATEGORY\t$device\tcomponents\t" . join( " ", @components );
-
 
68
      my $temp = qx( mdadm --detail /dev/$device | grep 'Array Size' | cut -d':' -f2 | cut -d' ' -f2 );
68
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
69
      chomp $temp;
-
 
70
      push @results, "$CATEGORY\t$device\tsize\t$temp";
69
    push @out, "$errorPrepend Invalid Operating System";
71
   }
-
 
72
}
70
}
-
 
71
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
72
   push @out, "$errorPrepend Can not find some commands needed";
-
 
73
}
-
 
74
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
75
   #####
-
 
76
   ##### Your code starts here. Remember to push all output onto @out
-
 
77
   #####
-
 
78
   
-
 
79
   if ( -e '/proc/mdstat' ) {
-
 
80
      open MD,'</proc/mdstat' or exit 1;
-
 
81
      my @temp = <MD>;
-
 
82
      close MD;
-
 
83
 
-
 
84
      while ( my $line = shift @temp ) {
-
 
85
         chomp $line;
-
 
86
         if ( $line =~ m/^(md\d+)\s+:\s+(.*)$/ ) {
-
 
87
            my $device = $1;
-
 
88
            my @components = split( /\s+/, $2 );
-
 
89
            shift @components;
-
 
90
            push @out, "$CATEGORY\t$device\tlevel\t" . shift(@components);
-
 
91
            push @out, "$CATEGORY\t$device\tcomponents\t" . join( " ", @components );
-
 
92
            my $temp = qx( mdadm --detail /dev/$device | grep 'Array Size' | cut -d':' -f2 | cut -d' ' -f2 );
-
 
93
            chomp $temp;
-
 
94
            push @out, "$CATEGORY\t$device\tsize\t$temp";
-
 
95
         }
-
 
96
      }
-
 
97
   }
73
 
98
 
-
 
99
   #####
74
print join( "\n", @results ) . "\n";
100
   ##### Your code ends here.
-
 
101
   #####
-
 
102
}
75
 
103
 
-
 
104
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
105
print join( "\n", @out ) . "\n" unless caller;
-
 
106
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
76
exit 0;
107
my $return = join( "\n", @out );
77
 
108