Subversion Repositories camp_sysinfo_client_3

Rev

Rev 251 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
48 rodolico 1
#!/usr/bin/env perl
2
use warnings;
3
use strict;  
4
 
256 rodolico 5
use version ; our $VERSION = 'v1.2.0';
48 rodolico 6
 
256 rodolico 7
# BSD network module for sysinfo client
48 rodolico 8
# Author: R. W. Rodolico
9
# Date:   2016-04-08
256 rodolico 10
#
11
# module to get network interface information for BSD systems
48 rodolico 12
# assumes ifconfig is on the system and executable by the user
13
# NOTE: this takes the ifconfig output and parses it, so changes to 
14
#       this output invalidates this module
256 rodolico 15
#
16
# Revision History
17
#
18
#
48 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
48 rodolico 22
BEGIN {
251 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/..");
27
   eval( 'use library;' );
28
   die sprintf( "Could not find library.pm in %s, INC is %s\n", __FILE__, join( "\n", @INC ) ) if $@;
48 rodolico 29
}
30
 
256 rodolico 31
#####
32
##### Change these to match your needs
33
#####
48 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
   };
48 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)
42
my $commandsList = {
43
        'ifconfig' => undef,
44
   };
48 rodolico 45
 
256 rodolico 46
# list of operating systems this module can be used on.
47
my $osList = {
48
#         'mswin32' => undef,
49
         'freebsd' => undef,
50
#         'linux'   => undef,
51
   };
52
 
53
# the category the return data should go into. See sysinfo for a list
48 rodolico 54
my $CATEGORY = 'network';
256 rodolico 55
 
56
#####
57
##### End of required
58
#####
59
 
60
# some variables needed for our system
61
my $errorPrepend = 'error: in ' . __FILE__; # this is prepended to any error messages
62
my @out; # temporary location for each line of output
63
 
64
# Try to load the modules we need. If we can not, then make a list of missing modules for error message.
65
for my $module ( keys %$modulesList ) {
66
   eval ( "use $module;" );
67
   push @out, "$errorPrepend Could not load $module" if $@;
68
}
69
 
70
if ( ! @out && ! checkOS ( $osList ) ) { # check if we are on an acceptible operating system
71
    push @out, "$errorPrepend Invalid Operating System";
72
}
73
if ( !@out && ! validCommandOnSystem ( $commandsList ) ) {
74
   push @out, "$errorPrepend Can not find some commands needed";
75
}
76
if ( !@out ) { # we made it, we have everything, so do the processing
77
   #####
78
   ##### Your code starts here. Remember to push all output onto @out
79
   #####
80
 
81
   # xn0: flags=8943<UP,BROADCAST,RUNNING,PROMISC,SIMPLEX,MULTICAST> metric 0 mtu 1500
82
   # ether 00:16:3e:ff:ff:04
83
   my $regexHWADDR = 'ether\s+([0-9a-f:]+)';
84
   # inet 74.113.60.189 netmask 0xffffffc0 broadcast 74.113.60.191
85
   my $regexINET = 'inet\s*([0-9.]+)[^0-9].*netmask 0x([0-9a-z]+)';
86
   # inet6 addr: fe80::216:3eff:fe1f:ef4f/64 Scope:Link
87
   my $regexINET6 = 'inet6\s*([0-9a-f:]+).*prefixlen\s*(\d+)';
88
   # UP LOOPBACK RUNNING  MTU:16436  Metric:1
89
   my $regexMTU = 'mtu\s([0-9]+)';
90
   my $temp = qx( ifconfig );
91
   my @temp = split( "", $temp );
92
   my $currentIF;
93
   while ( @temp ) {
94
      my $line = shift @temp;
95
      next unless $line;
96
      if ( $line =~ m/^([^ ]+):/) { # if the first character is not a space, starting new entry
97
         $currentIF = $1;
98
         if ( $line =~ m/$regexMTU/i ) {
99
            push @out,  "$CATEGORY\t$currentIF\tmtu\t$1";
100
         }
101
      } elsif ( $line =~ m/$regexHWADDR/i ) {
102
         push @out,  "$CATEGORY\t$currentIF\tmac\t$1";
103
      } elsif ( $line =~ m/$regexINET/i ) {
104
         push @out,  "$CATEGORY\t$currentIF\taddress\t$1";
105
         push @out,  "$CATEGORY\t$currentIF\tnetmask\t$2";
106
      } elsif ( $line =~ m/$regexINET6/i )  {
107
         push @out,  "$CATEGORY\t$currentIF\tip6address\t$1";
108
         push @out,  "$CATEGORY\t$currentIF\tip6networkbits\t$2";
109
      } elsif ( $line =~ m/$regexMTU/i )  {
110
         push @out,  "$CATEGORY\t$currentIF\tmtu\t$1";
48 rodolico 111
      }
112
   }
256 rodolico 113
 
114
   #####
115
   ##### Your code ends here.
116
   #####
48 rodolico 117
}
256 rodolico 118
 
119
# If we are testing from the command line (caller is undef), print the results for debugging
120
print join( "\n", @out ) . "\n" unless caller;
121
# called by do, which has a value of the last assignment made, so make the assignment. The equivilent of a return
122
my $return = join( "\n", @out );
123