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
use Data::Dumper;
-
 
5
 
4
 
6
# Description: Get IPMI network information
-
 
7
 
-
 
8
our $VERSION = '1.3.0';
5
use version ; our $VERSION = 'v1.3.0';
9
 
6
 
10
# IPMI network module for sysinfo client
7
# IPMI network module for sysinfo client
11
# Author: R. W. Rodolico
8
# Author: R. W. Rodolico
12
# Date:   2016-09-17 
9
# Date:   2016-09-17
-
 
10
#
-
 
11
# Enter some information about system here
-
 
12
#
-
 
13
# Revision History
13
 
14
#
14
# 20171124 RWR
15
# 20171124 RWR
15
# Fixed where STDERR now goes to /dev/null
16
# Fixed where STDERR now goes to /dev/null
16
#
17
#
17
# 20191118 RWR v1.2.1
18
# 20191118 RWR v1.2.1
18
# in some cases, ipmitool is used only to access other devices over the network
19
# in some cases, ipmitool is used only to access other devices over the network
Line 23... Line 24...
23
# better than just checking @temp afterwards
24
# better than just checking @temp afterwards
24
#
25
#
25
# module to get network interface information for ipmi
26
# module to get network interface information for ipmi
26
# requires ipmitool (runs ipmitool lan print)
27
# requires ipmitool (runs ipmitool lan print)
27
# NOTE: this takes the ipmitool output and parses it, so changes to 
28
# NOTE: this takes the ipmitool output and parses it, so changes to 
28
#       this output invalidates this module
29
#       this output invalidates this module#
29
 
30
 
30
# find our location and use it for searching for libraries
31
# find our location and use it for searching for libraries. library.pm must be in the same directory as the calling script
-
 
32
# or, if run interactively, in the parent of the modules
31
BEGIN {
33
BEGIN {
32
   use FindBin;
34
   use FindBin;
33
   use File::Spec;
35
   use File::Spec;
-
 
36
   # prepend the bin directory and its parent
34
   use lib File::Spec->catdir($FindBin::Bin);
37
   use lib File::Spec->catdir($FindBin::Bin), File::Spec->catdir("$FindBin::Bin/..");
35
   eval( 'use library;' );
38
   eval( 'use library;' );
36
   die "Could not find library.pm in the code directory\n" if $@;
39
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
37
   eval( 'use Data::Dumper;' );
-
 
38
}
40
}
39
 
41
 
40
# check for valid OS. 
42
#####
41
exit 1 unless &checkOS( { 'linux' => undef, 'freebsd' => undef } );
43
##### Change these to match your needs
-
 
44
#####
42
 
45
 
43
# check for required commands, return 2 if they don't exist. Enter an full list of all commands required. If one doesn't exist
46
# 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
44
# script returns a 2
47
my $modulesList = {
45
foreach my $command ( 'ipmitool' ) {
-
 
46
   exit 2 unless &validCommandOnSystem( $command );
48
        'Data::Dumper'     => undef,
47
}
49
   };
48
 
-
 
49
 
50
 
50
# some systems have ipmitool installed simply for managing other machines
51
# hash of commands that are needed for the system. key is the name of the command and, in some cases, the value will become
51
# but do not have ipmi themselves
52
# the full path (from which or where)
-
 
53
my $commandsList = {
52
exit 1 unless -e '/dev/ipmi0' || -e '/dev/ipmi/0' || -e '/dev/ipmidev/0';
54
        'ipmitool' => undef,
-
 
55
   };
53
 
56
 
-
 
57
# list of operating systems this module can be used on.
54
my %storage = ( 
58
my $osList = {
55
                'address' => { 'key' => 'IP Address' }, 
59
#         'mswin32' => undef,
56
                'netmask' => { 'key' => 'Subnet Mask' },
60
         'freebsd' => undef,
57
                'mac' => { 'key' => 'MAC Address' }
61
         'linux'   => undef,
58
              );
62
   };
59
 
63
 
-
 
64
# the category the return data should go into. See sysinfo for a list
60
my $CATEGORY = 'network';
65
my $CATEGORY = 'network';
-
 
66
 
-
 
67
#####
61
my @temp = qx( ipmitool lan print 2> /dev/null );
68
##### End of required
62
exit 2 unless @temp; # ipmitool installed, but driver not. Probably using to connect someplace else.
-
 
63
chomp @temp;
69
#####
64
 
70
 
65
foreach my $line ( @temp ) {
71
# some variables needed for our system
66
   my ( $key, $value ) = split( /\s+:\s+/, $line );
72
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
67
   foreach my $test ( keys %storage ) {
73
my @out; # temporary location for each line of output
-
 
74
 
68
      next if defined( $storage{$test}{'value'} );
75
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
69
      if ( $key eq $storage{$test}{'key'} ) {
76
for my $module ( keys %$modulesList ) {
70
         $storage{$test}{'value'} = $value;
-
 
71
         last;
77
   eval ( "use $module;" );
72
      } # if
-
 
73
   } # foreach 
78
   push @out, "$errorPrepend Could not load $module" if $@;
74
}
79
}
75
 
80
 
76
foreach my $key ( keys %storage ) {
81
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
77
   print "$CATEGORY\tipmi\t$key\t$storage{$key}{'value'}\n";
82
    push @out, "$errorPrepend Invalid Operating System";
78
}
83
}
-
 
84
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
-
 
85
   push @out, "$errorPrepend Can not find some commands needed";
-
 
86
}
-
 
87
if ( !@out ) { # we made it, we have everything, so do the processing
-
 
88
   #####
-
 
89
   ##### Your code starts here. Remember to push all output onto @out
-
 
90
   #####
-
 
91
   
-
 
92
   # some systems have ipmitool installed simply for managing other machines
-
 
93
   # but do not have ipmi themselves
-
 
94
   exit 1 unless -e '/dev/ipmi0' || -e '/dev/ipmi/0' || -e '/dev/ipmidev/0';
-
 
95
 
-
 
96
   my %storage = ( 
-
 
97
                   'address' => { 'key' => 'IP Address' }, 
-
 
98
                   'netmask' => { 'key' => 'Subnet Mask' },
-
 
99
                   'mac' => { 'key' => 'MAC Address' }
-
 
100
                 );
-
 
101
 
-
 
102
   my @temp = qx( ipmitool lan print 2> /dev/null );
-
 
103
   exit 2 unless @temp; # ipmitool installed, but driver not. Probably using to connect someplace else.
-
 
104
   chomp @temp;
-
 
105
 
-
 
106
   foreach my $line ( @temp ) {
-
 
107
      my ( $key, $value ) = split( /\s+:\s+/, $line );
-
 
108
      foreach my $test ( keys %storage ) {
-
 
109
         next if defined( $storage{$test}{'value'} );
-
 
110
         if ( $key eq $storage{$test}{'key'} ) {
-
 
111
            $storage{$test}{'value'} = $value;
-
 
112
            last;
-
 
113
         } # if
-
 
114
      } # foreach 
-
 
115
   }
-
 
116
 
-
 
117
   foreach my $key ( keys %storage ) {
-
 
118
      push @out, "$CATEGORY\tipmi\t$key\t$storage{$key}{'value'}";
-
 
119
   }
-
 
120
   
-
 
121
   #####
-
 
122
   ##### Your code ends here.
-
 
123
   #####
-
 
124
}
-
 
125
 
-
 
126
# If we are testing from the command line (caller is undef), print the results for debugging
-
 
127
print join( "\n", @out ) . "\n" unless caller;
-
 
128
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
-
 
129
my $return = join( "\n", @out );
79
 
130
 
80
1;
-