Subversion Repositories camp_sysinfo_client_3

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
174 rodolico 1
#! /usr/bin/env perl
2
 
20 rodolico 3
use warnings;
26 rodolico 4
use strict;  
2 rodolico 5
 
6
# sysinfo
7
# Author: R. W. Rodolico
8
# Primary client portion of sysinfo system. Will collect information about its current
9
# host and create a report containing the information. This report can then be processed
10
# by process_sysinfo.pl on the collection computer.
112 rodolico 11
# output file consists of a YAML file of the form:
2 rodolico 12
#  <sysinfo3.0.0>
13
#    <diskinfo name='/dev/xvda3'>
14
#      <fstype>ext3</fstype>
15
#      <mount>/home</mount>
16
#      <size>51606140</size>
17
#      <used>331472</used>
18
#    </diskinfo>
19
#    <network name='eth0'>
20
#      <address>192.168.1.3</address>
21
#      <ip6address>fe80::216:3eff:fefb:4e10</ip6address>
22
#      <ip6networkbits>64</ip6networkbits>
23
#      <mac>00:16:3e:fb:4e:10</mac>
24
#      <mtu>1500</mtu>
25
#      <netmask>255.255.255.0</netmask>
26
#    </network>
27
#    <operatingsystem>
28
#      <codename>squeeze</codename>
29
#      <description>Debian GNU/Linux 6.0.4 (squeeze)</description>
30
#      <distribution>Debian</distribution>
31
#      <kernel>2.6.32-5-xen-686</kernel>
32
#      <os_name>Linux</os_name>
33
#      <os_version>Linux version 2.6.32-5-xen-686 (Debian 2.6.32-41) (ben@decadent.org.uk) (gcc version 4.3.5 (Debian 4.3.5-4) ) #1 SMP Mon Jan 16 19:46:09 UTC 2012</os_version>
34
#      <release>6.0.4</release>
35
#    </operatingsystem>
36
#    <pci name='0000:00:00.0'>
37
#      <class>RAM memory</class>
38
#      <device>MCP55 Memory Controller</device>
39
#      <rev>a2</rev>
40
#      <sdevice>Device cb84</sdevice>
41
#      <slot>0000:00:00.0</slot>
42
#      <svendor>nVidia Corporation</svendor>
43
#      <vendor>nVidia Corporation</vendor>
44
#    </pci>
45
#    <report>
46
#      <client>Staffmasters</client>
47
#      <date>2012-05-01 03:00</date>
48
#      <version>2.0.0</version>
49
#    </report>
50
#    <software name='aptitude'>
51
#      <description>terminal-based package manager (terminal interface only)</description>
52
#      <version>0.6.3-3.2+squeeze1</version>
53
#    </software>
54
#    <system>
55
#      <cpu_speed>1800.103</cpu_speed>
56
#      <cpu_sub>i686</cpu_sub>
57
#      <cpu_type>GenuineIntel</cpu_type>
58
#      <hostname>backup.staffmasters.local</hostname>
59
#      <last_boot>1333259809</last_boot>
60
#      <memory>520852</memory>
61
#      <num_cpu>1</num_cpu>
62
#    </system>
63
#  </sysinfo3.0.0>
64
 
65
 
66
#
67
# Version 1.3 20071104
68
# added capability of e-mailing the results by itself and external configuration file
69
 
70
# Version 1.3.1 20071110
71
# added du -sk to explicitly do directory sizes in 'k'. Also, fixed some documentation
72
 
73
# Version 1.3.3 20081104
74
# modified hostname to hostname -f, and allowed user to place custom value in configuration file
75
# also, modified to go with Debian standards in preparation to creating a debian package.
76
 
77
# Version 2.0 20081208
78
# Modified to use different libraries for different OS's in preparation to porting to Windows
79
# Uses different packages based on which OS it is on.
80
 
81
# Version 3.0 20120923
82
# Major revision. Most internal intelligence pulled out and put into modules and data transfer format has been changed to YAML
83
#
84
# Base system only pulls client name, machine name and machine number, all of which can be set in the configuration file
85
# if the value is not set, it attempts various means to determine the values and, if it fails, aborts with an error message
86
#    client name -- REQUIRED, must come from configuration file
87
#    machine name --  REQUIRED, if not set via conf file, attempts hostname command (hostname -f) or module getHostName
88
#    machine number -- REQUIRED, if not set via conf file, attempts "echo `hostname -f`-clientname | md5sum" or module getSerial
89
# modules are stored in "configuration directory/modules" (/etc/sysinfo/modules on most Linux systems) and are processed in 
90
# standard sort order (case sensitive). 
91
# Module filenames may contain alpha-numeric, underscore and the period only (files containing other characters are ignored).
92
# Modules should set their exit code to 0 for success, and non-zero for failure
93
# Modules should return 0 or more tab delimited, newline terminated strings, processed as one record per line
94
# A module return string line is processed as follows:
95
#     category \t [category \t ...] \t key \t value
96
# example:
97
#    System \t num_cpu \t 1
98
#    System \t Users \t root \t /root/
99
# (note, if non-zero exit code returned, return value is assumed to be error message and is printed to STDERR) 
100
# sysinfo stores the result in a hash, using categories as the keys (case sensitive), thus, the above results in
101
# $store{'System'}{'num_cpu'} = '1';
102
# $store{'System'}{'Users'}{'root'} = '/root';
103
# upon completion, sysinfo converts the $store hash into an XML or YAML string for transfer
104
# It then sends it to the main server as defined in the conf file.
105
# NOTE: YAML is hand crafted to kill any requirements for external libraries
106
# see sub hashToYAML for details
107
 
9 rodolico 108
# Version 3.0.1 20160321
109
# Renamed to sysinfo-client to not conflict with Linux package sysinfo
110
# created installer in Perl to not rely on package managers
111
# default path for configuration file changed to /etc/camp/sysinfo-client.conf
112
# $VERSION changed to $DATA_VERSION to not conflict with $main::VERSION (script version vs data format version)
13 rodolico 113
#
114
# Version 3.1.0 20160401
115
# module and script dirs now arrays to be searched. Idea is that default
116
#    modules/scripts are in installdir/modules or installdir/scripts, and
117
#    user supplied are in /etc/scripts and /etc/modules
14 rodolico 118
# Tightened up the file systems checks, requiring all scripts and modules
119
#    be set 0700 at least, and owned by root
18 rodolico 120
# Transport layers now an array, and if one fails to send the report, the others
121
#    are tried in turn
14 rodolico 122
# Worked on logic for sendReport to give better error checking.
123
# Doing a search for the configuration file matching cwd, then /etc/camp, then /usr/local/etc/camp
21 rodolico 124
# Self documenting, ie a key for software\tsysinfo-client\version\current version is inserted
28 rodolico 125
#
126
# Version 3.1.1 20160915 RWR
127
# set use strict and use warnings, then fixed errors
37 rodolico 128
#
129
# Version 3.1.2 20160922 RWR
130
# $exitCode 1 (not applicable to this machine) does not throw warning
131
#
42 rodolico 132
# Version 3.1.3 20161010 RWR
133
# Removed extra use warnings
47 rodolico 134
#
135
# Version 3.1.4 20161023 RWR
136
# Would error out if moduledir does not exist, added a return
51 rodolico 137
#
138
# Version 3.1.5 20170327 RWR
139
# On freeBSD systems, was looking in wrong place for configuration file
59 rodolico 140
#
141
# Version 3.2.0 20180320 RWR
62 rodolico 142
# Major change in the configuration file format; All entries are loaded into 
143
# hash %configuration, so clientname is no longer $clientname, but is now
144
# $configuration{'clientname'}
145
# NOT backwards compatible
59 rodolico 146
# changed configuration to be loaded into hash (vs directly loaded into variables)
147
# added UUID to configuration file
62 rodolico 148
#
149
# Version 3.2.1 20180424 RWR
150
# Finally got a semi-stable version of this running. Fixed a bunch of bugs
151
# and appears to be working correctly.
112 rodolico 152
#
153
# Version 3.3.0 20190419 RWR
154
# Converted to use YAML config file
135 rodolico 155
#
156
# Version 3.4.0 20191111 RWR
157
# adding logging with priority. logging is a hash inside of %cvonfiguration which contains the following
158
# $configuration{ 'logging' } = {
159
#    'log type'  => 'string',
160
#    'log level' => #,
161
#    'other params' => something,
162
# };
138 rodolico 163
#
164
# The default log type is cache, which builds an array of all messages passed. When the log type is changed, the cache is
165
# checked for values and, if they exist, they are dumped to the log, then removed.
166
#
135 rodolico 167
# Currently, the only log type is 'file', which has one other additional parameter, 'log path' which
168
# points to the actual log to be created. The log is NOT limited in size, so use something else to
169
# do that.
170
# log level is an integer which is compared the a priority passed to the logging function. The
171
# higher log level is set, the more verbose the log.
172
# 0 - Normal, basically logs when the program starts and ends, and any warnings.
173
# 1 - a little more information about flow
174
# 2 - Gives ending information on structures
175
# 3 - Gives a lot of info about structures when they are initialized and at the end
176
# 4 - Crazy. Dumps just about every structure every time they are changed
177
#
178
# $TESTING has been set to a binary. If true, the report is not sent via the transports, but is dumped to /tmp/sysinfo.testing.yaml
144 rodolico 179
#
180
# Version 3.4.1 20191117 RWR
181
# Added syslog as a possible option for logging.
182
#
175 rodolico 183
# Version 3.5.4 20200317 RWR
174 rodolico 184
# changed so report->version will show the version of sysinfo, not the data version
185 rodolico 185
#
186
# Version 3.5.5 20200317 RWR
187
# bug fix for bsd/opnsense
135 rodolico 188
 
112 rodolico 189
# find our location and use it for searching for libraries
190
BEGIN {
191
   use FindBin;
192
   use File::Spec;
193
   use lib File::Spec->catdir($FindBin::Bin);
154 rodolico 194
   eval( 'use YAML::Tiny;' );
195
   eval( 'use Data::Dumper;' );
112 rodolico 196
}
62 rodolico 197
 
154 rodolico 198
# contains the directory our script is in
199
my $sourceDir = File::Spec->catdir($FindBin::Bin);
112 rodolico 200
 
154 rodolico 201
# define the version number
202
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
203
use version;
185 rodolico 204
our $VERSION = version->declare("v3.5.5");
154 rodolico 205
our $DATA_VERSION = version->declare( 'v3.0.0' ); # used in sending the data file. sets version of XML/YAML data file
206
 
207
# see https://perldoc.perl.org/Getopt/Long.html
208
use Getopt::Long;
209
# allow -vvn (ie, --verbose --verbose --dryrun)
210
Getopt::Long::Configure ("bundling");
211
 
2 rodolico 212
# Following are global variables overridden if configuration file exists
213
 
135 rodolico 214
my $TESTING = 0; # if set to 1, will do everything, but will dump output to /tmp/sysinfo.testing.yaml
9 rodolico 215
 
2 rodolico 216
my $indentLevel = 2; # number of spaces to indent per level in XML or YAML
217
 
13 rodolico 218
# paths to search for configuration file
51 rodolico 219
my @confFileSearchPath = ( '.', '/etc/camp/sysinfo-client', '/etc/camp', '/usr/local/etc/camp/sysinfo-client' );
2 rodolico 220
 
112 rodolico 221
my $configurationFile = 'sysinfo-client.yaml'; # name of the configuration file
2 rodolico 222
 
135 rodolico 223
my $reportDate = &timeStamp(); # set report date
2 rodolico 224
 
154 rodolico 225
my $interactive = 0; # if set to 1, will go into interactive mode and output to local file
226
my $periodicOverrideFile = '/tmp/sysinfo.firstrun'; # if this file exists, library.pm will tell all periodic modules to run anyway
227
my $periodic = 0; # if set to 1, will do modules which are only supposed to run weekly, monthly, etc...
228
 
229
my $version;
230
my $help;
231
 
59 rodolico 232
my %configuration = (
142 rodolico 233
   'logging' => { 'log type' => 'cache', 'log level' => 0 },    # if set, will point to logging
154 rodolico 234
   'moduleDirs' => ["$sourceDir/modules"], # search paths for modules
235
   'scriptDirs' => ["$sourceDir/scripts"], # search paths for scripts
59 rodolico 236
   'clientName' => '',  # Required!! Must be set in conf file (no defaults)
237
   'serialNumber' => '', # serial number of machine
238
   'UUID'         => '', # UUID of machine
154 rodolico 239
   'transports'   => {'3' => { '-name-' => 'saveLocal', 'sendScript' => 'save_local', 'output directory' => "$sourceDir/reports" }  }, # hash with various transports
61 rodolico 240
   'hostname' => &getHostName() # fully qualified host name of machine
154 rodolico 241
);
2 rodolico 242
 
243
 
13 rodolico 244
 
136 rodolico 245
#######################################################
246
#
247
# timeStamp
248
#
249
# return current system date as YYYY-MM-DD HH:MM:SS
250
#
251
#######################################################
252
sub timeStamp {
253
   my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);
142 rodolico 254
   return sprintf "%4d-%02d-%02d %02d:%02d:%02d",$year+1900,$mon+1,$mday,$hour,$min,$sec;
136 rodolico 255
}
256
 
138 rodolico 257
#######################################################
258
# function to simply log things
135 rodolico 259
# first parameter is the priority, if <= $logDef->{'log level'} will print
260
# all subsequent parameters assumed to be strings to sent to the log
261
# returns 0 on failure
262
#         1 on success
263
#         2 if priority > log level
264
#        -1 if $logDef is unset
265
# currently, only logs to a file
138 rodolico 266
#######################################################
135 rodolico 267
sub logIt {
268
   my $priority = shift;
13 rodolico 269
 
135 rodolico 270
   return -1 unless exists $configuration{'logging'};
271
   return 2 unless $priority <= $configuration{'logging'}{'log level'};
138 rodolico 272
   if ( $configuration{'logging'}{'log type'} eq 'cache' ) {
273
      push @{ $configuration{'logging'}{'cache'} }, @_;
274
      return;
275
   } elsif ( defined( $configuration{'logging'}{'cache'} ) ) {
276
      unshift @_, @{ $configuration{'logging'}{'cache'} };
277
      delete $configuration{'logging'}{'cache'};
278
   }
135 rodolico 279
   if ( $configuration{'logging'}{'log type'} eq 'file' ) {
280
      if ( open LOG, '>>' . $configuration{'logging'}{'log path'} ) {
281
         while ( my $t = shift ) {
282
            print LOG &timeStamp() . "\t$t\n";
283
         }
284
         close LOG;
285
      }
144 rodolico 286
   } elsif ( $configuration{'logging'}{'log type'} eq 'syslog' ) {
287
      use Sys::Syslog;                        # all except setlogsock()
288
      use Sys::Syslog qw(:standard :macros);  # standard functions & macros
289
 
290
      my $syslogName = 'sysinfo-client';
291
      my $logopt = 'nofatal';
292
      my $facility = 'LOG_LOCAL0';
293
      my $priority = 'LOG_NOTICE';
294
 
295
      openlog( $syslogName, $logopt, $facility);
296
      syslog($priority, '%s', @_ );
297
      closelog();
135 rodolico 298
   } else {
299
      warn "Log type $configuration{'logging'} incorrectly configured\n";
300
      return 0;
301
   }
302
   return 1;
303
}
304
 
305
 
2 rodolico 306
#######################################################
307
#
13 rodolico 308
# findFile( $filename, @directories )
309
#
310
# Locates a file by searching sequentially in one or more
311
# directories, returning the first one found
312
# 
313
# Returns '' if not found
314
#
315
#######################################################
316
 
317
sub findFile {
59 rodolico 318
   my ( $filename, $directories ) = @_;
138 rodolico 319
   &logIt( 3, "Looking for $filename in findFile" );
59 rodolico 320
   for ( my $i = 0; $i < scalar( @{$directories} ); $i++ ) {
321
      my $confFile = $$directories[$i] . '/' . $filename;
138 rodolico 322
      &logIt( 4, "Looking for $filename in $confFile" );
13 rodolico 323
      return $confFile if ( -f $confFile );
324
   }
325
   return '';
326
}
327
 
328
 
329
#######################################################
330
#
2 rodolico 331
# loadConfigurationFile($confFile)
332
#
333
# Loads configuration file defined by $configurationFile, and dies if not available
112 rodolico 334
# This is a YAML file containing serialized contents of 
154 rodolico 335
# Parameters:
336
#    $fileName - name of file to look for
337
#    @searchPath - array of paths to find $filename
2 rodolico 338
#
339
#######################################################
340
 
135 rodolico 341
sub loadConfigurationFile {   
14 rodolico 342
   my ( $fileName, @searchPath ) = @_;
141 rodolico 343
   &logIt( 2, "Looking for config file $fileName in " . join( ', ', @searchPath ) );
13 rodolico 344
   my $confFile;
59 rodolico 345
   if ( $confFile = &findFile( $fileName, \@searchPath ) ) {
138 rodolico 346
      &logIt( 3, "Opening configuration from $confFile" );
112 rodolico 347
      my $yaml = YAML::Tiny->read( $confFile );
138 rodolico 348
      &logIt( 4, "Configuration file contents\n$yaml" );
112 rodolico 349
      return $yaml->[0];
13 rodolico 350
   }
14 rodolico 351
   die "Can not find $fileName in any of " . join( "\n\t", @searchPath ) . "\n";
2 rodolico 352
}
353
 
354
#######################################################
355
#
356
# sendResults( $parameters, $message, $scriptDirectory )
357
#
358
# Sends results of run to server using external script. If external
359
# script not defined, just print to STDOUT
360
#
361
# Parameters
362
#  $parameters - a hash containing the information necessary to make the transfer
363
#  $message - the message to be sent
364
#  $scriptDirectory - path (not filename) of script to be executed
365
# 
366
# $parameters contains different key/value pairs depending on the script used
367
#             for example, a stand-alone SMTP script may need a username/password,
368
#             smtp server name, port number, from and to address
369
#             while an http transfer may only need a script name
370
#             See the individual scripts to determine what parameters need to be
371
#             filled in.
372
#             The only required parameter is 'sendScript' which must contain the
373
#             name of the script to execute (and it must be located in $scriptDirectory)
374
# SCRIPT must contain one sub named doit, that accepts three parameters, the hash, 
375
#       the message, and, optionally, the script directory
376
#
377
# If script not defined, just dump to STDOUT. With a properly set up cron job, the output
378
# would then be sent via e-mail to an administrative account, possibly root
379
#
380
#######################################################
381
sub sendResults {
62 rodolico 382
   my ( $globals, $transports, $message, $scriptDirectory ) = @_;
135 rodolico 383
   &logIt( 3, "Entering sendResults" );
113 rodolico 384
   foreach my $key ( sort { $a <=> $b } %$transports ) {
385
      if ( $transports->{$key}->{'sendScript'} ) {
135 rodolico 386
         &logIt( 3, "Trying to find file " . $transports->{$key}->{'sendScript'} . " in " . join( "\n\t", @{$scriptDirectory} ) );
113 rodolico 387
         my $sendScript = &findFile( $transports->{$key}->{'sendScript'}, $scriptDirectory );
19 rodolico 388
         if ( $sendScript ) {
18 rodolico 389
            # load the chosen script into memory
390
            require $sendScript;
19 rodolico 391
            # merge the globals in
392
            while ( my ( $gkey, $value ) = each %$globals ) { 
113 rodolico 393
               $transports->{$key}->{$gkey} = $value; 
19 rodolico 394
            }
20 rodolico 395
            # do variable substitution for any values which need it
113 rodolico 396
            foreach my $thisOne ( keys %{$transports->{$key}} ) {
135 rodolico 397
               &logIt( 4, "$thisOne" );
113 rodolico 398
               if ( $transports->{$key}->{$thisOne} =~ m/(\$configuration\{'hostname'\})|(\$reportDate)|(\$configuration\{'clientName'\})|(\$configuration\{'serialNumber'\})/ ) {
399
                  $transports->{$key}->{$thisOne} = eval "\"$transports->{$key}->{$thisOne}\"";
20 rodolico 400
               }
401
            }
402
 
62 rodolico 403
            #%$transports{$key}{keys %$globals} = values %$globals;
404
            #print Dumper( $$transports[$key] );
20 rodolico 405
            #next;
18 rodolico 406
            # execute the "doit" sub from that script
135 rodolico 407
            &logIt( 3, $message );
408
            my $return = &doit( $transports->{$key}, $message );
409
            return $return if ( $return == 1 );
18 rodolico 410
         } else {
135 rodolico 411
            &logIt( 0,"Could not find " . $$transports[$key]{'sendScript'} . ", trying next transport" );
18 rodolico 412
         } # if..else
413
      } # if
414
   } # foreach
415
   # if we made it here, we have not sent the report, so just return it to the user
85 rodolico 416
   # if called from a cron job, it will (hopefully) be sent to root
135 rodolico 417
   &logIt( 0, 'Error, reached ' . __LINE__ . " which should not happen, message was\n$message" );
85 rodolico 418
   print $message;
16 rodolico 419
   return 1;
2 rodolico 420
}
421
 
422
#######################################################
423
#
424
# getHostName
425
#
426
# return hostname from hostname -f
427
#
428
#######################################################
429
sub getHostName {
135 rodolico 430
   &logIt( 3, "Entering getHostName" );
28 rodolico 431
   my $hostname = `hostname -f`;
2 rodolico 432
   chomp $hostname;
433
   return $hostname;
434
}
435
 
436
#######################################################
437
#
18 rodolico 438
# escapeForYAML
2 rodolico 439
#
18 rodolico 440
# Escapes values put into YAML report
2 rodolico 441
#
112 rodolico 442
# DEPRECATED AS OF VERSION 3.3.0
443
# uses YAML::Tiny
444
#
2 rodolico 445
#######################################################
112 rodolico 446
#sub escapeForYAML {
447
#   my $value = shift;
448
#   $value =~ s/'/\\'/gi; # escape single quotes
449
#   $value =~ s/"/\\"/gi; # escape double quotes
450
#   # pound sign indicates start of a comment and thus loses part
451
#   # of strings. Surrounding it by double quotes in next statement
452
#   # allows 
453
#   $value = '"' . $value . '"' if ( $value =~ m/[#:]/ );
454
#   return $value;
455
#}
2 rodolico 456
 
457
#######################################################
458
#
459
# hashToYAML( $hashRef, $indent )
460
#
461
# Converts a hash to a YAML string
462
#
463
# NOTE: This routine recursively calls itself for every level
464
#       in the hash
465
#
466
# Parameters
467
#     $hashref - reference (address) of a hash
468
#     $indent  - current indent level, defaults to 0
469
#
470
# Even though there are some very good libraries that do this
471
# I chose to hand-code it so sysinfo can be run with no libraries
472
# loaded. I chose to NOT do a full implementation, so special chars
473
# that would normally be escaped are not in here. 
474
# However, I followed all the RFC for the values that were given, so
475
# assume any YAML reader can parse this
476
# NOTE: YAML appears to give a resulting file 1/3 smaller than the above
477
#       XML, and compresses down in like manner
478
#
112 rodolico 479
# DEPRECATED AS OF VERSION 3.3.0
480
# uses YAML::Tiny
481
#
2 rodolico 482
#######################################################
112 rodolico 483
#sub hashToYAML {
484
#   my ($hashRef, $indent) = @_;
485
#   $indent = 0 unless $indent; # default to 0 if not defined
486
#   
487
#   my $output; # where the output is stored
488
#   foreach my $key ( keys %$hashRef ) { # for each key in the current reference
489
#      print "Looking at $key\n" if $TESTING > 3;
490
#      # see http://www.perlmonks.org/?node_id=175651 for isa function
491
#      if ( UNIVERSAL::isa( $$hashRef{$key}, 'HASH' ) ) { # is the value another hash?
492
#            # NOTE: unlike xml, indentation is NOT optional in YAML, so the following line verifies $indentlevel is non-zero
493
#            #       and, if it is, uses a default 3 character indentation
494
#            $output .= (' ' x $indent ) . &escapeForYAML($key) . ":\n" . # key, plus colon, plus newline
495
#                    &hashToYAML( $$hashRef{$key}, $indent+($indentLevel ? $indentLevel : 3) ) . # add results of recursive call
496
#                    "\n";
497
#      } elsif ( UNIVERSAL::isa( $$hashRef{$key}, 'ARRAY' ) ) { # is it an array? ignore it
498
#      } else { # it is a scalar, so just do <key>value</key>
499
#         $output .= (' ' x $indent ) . &escapeForYAML($key) . ': ' . &escapeForYAML($$hashRef{$key}) . "\n";
500
#      }
501
#   }
502
#   return $output;
503
#}
2 rodolico 504
 
505
 
506
#######################################################
507
#
508
# tabDelimitedToHash ($hashRef, $tabdelim)
509
#
510
# Takes a tab delimited multi line string and adds it
511
# to a hash. The final field in each line is considered to
512
# be the value, and all prior fields are considered to be
513
# hierachial keys.
514
#
515
# Parameters
516
#     $hashref - reference (address) of a hash
517
#     $tabdelim - A tab delimited, newline terminated set of records
518
#
519
#
520
#######################################################
521
sub tabDelimitedToHash {
522
   my ($hashRef, $tabdelim) = @_;
135 rodolico 523
   &logIt( 3, "Entering tabDelimitedToHash" );
2 rodolico 524
   foreach my $line ( split( "\n", $tabdelim ) ) { # split on newlines, then process each line in turn
525
      $line =~ s/'/\\'/gi; # escape single quotes
28 rodolico 526
      my @fields = split( / *\t */, $line ); # get all the field values into array
2 rodolico 527
      my $theValue = pop @fields; # the last one is the value, so save it
528
      # now, we build a Perl statement that would create the assignment. The goal is
529
      # to have a string that says something like $$hashRef{'key'}{'key'} = $value;
530
      # then, eval that.
531
      my $command = '$$hashRef'; # start with the name of the dereferenced hash (parameter 1)
532
      while (my $key = shift @fields) { # while we have a key, from left to right
533
         $command .= '{' . "'$key'" . '}'; # build it as {'key'} concated to string
534
      }
535
      $command .= "='$theValue';"; # add the assignment
536
      #print STDERR "$command\n"; 
537
      eval $command; # eval the string to make the actual assignment
538
   }
539
}
540
 
541
#######################################################
542
#
13 rodolico 543
# validatePermission ( $file )
544
#
545
# Checks that file is owned by root, and has permission
546
# 0700 or less
547
# 
548
# Returns empty string on success, error message
549
# on failure
550
#
551
#######################################################
552
 
553
sub validatePermission {
554
   my $file = shift;
135 rodolico 555
   &logIt( 3, "Entering validatePermission with $file" );
14 rodolico 556
   my $return;
13 rodolico 557
   # must be owned by root
28 rodolico 558
   my $owner = (stat($file))[4];
13 rodolico 559
   $return .= " - Bad Owner [$owner]" if $owner;
560
   # must not have any permissions for group or world
561
   # ie, 0700 or less
28 rodolico 562
   my $mode = (stat($file))[2];
13 rodolico 563
   $mode = sprintf( '%04o', $mode & 07777 );
564
   $return .= " - Bad Permission [$mode]" unless $mode =~ m/0.00/;
565
   return $return ? $file . $return : '';
566
}
567
 
568
#######################################################
569
#
2 rodolico 570
# ProcessModules ( $system, $moduleDir )
571
#
572
# Processes all modules in $moduleDir, adding result to $system hash
573
# 
574
# Parameters
575
#     $system - reference (address) of a hash
576
#     $moduleDir - full path to a directory containing executable scripts
577
#  
578
# Each file in the $moduleDir directory that matches the regex in the grep
579
# and is executable is run. It is assumed the script will return 0 on success
580
# or a non-zero on failure
581
# The output of the script is assumed to be a tab delimited, newline separated
582
# list of records that should be added to the hash $system. This is done by calling 
583
# &parseModule above.
584
# on failure, the returned output of the script is assumed to be an error message
585
# and is displayed on STDERR
586
#######################################################
587
sub ProcessModules {
588
   my ( $system, $moduleDir ) = @_;
135 rodolico 589
   &logIt( 3, "Entering processModules" );
2 rodolico 590
   # open the module directory
47 rodolico 591
   return unless -d $moduleDir;
2 rodolico 592
   opendir( my $dh, $moduleDir ) || die "Module Directory $moduleDir can not be opened: $!\n";
593
   # and get all files which are executable and contain nothing but alpha-numerics and underscores (must begin with alpha-numeric)
594
   my @modules = grep { /^[a-zA-Z0-9][a-zA-Z0-9_]+$/ && -x "$moduleDir/$_" } readdir( $dh );
595
   closedir $dh;
28 rodolico 596
   foreach my $modFile ( sort @modules ) { # for each valid script
14 rodolico 597
      if ( my $error = &validatePermission( "$moduleDir$modFile" ) ) {
13 rodolico 598
         print STDERR "Not Processed: $error\n";
599
         next;
600
      }
135 rodolico 601
      &logIt( 3, "Processing module $moduleDir$modFile");
2 rodolico 602
      my $output = qx/$moduleDir$modFile $moduleDir/; # execute it and grab the output
603
      my $exitCode = $? >> 8; # process the exitCode
37 rodolico 604
      # exitCode 0 - processed normally
605
      # exitCode 1 - not applicable to this machine
606
      if ( $exitCode && $exitCode > 1) { # if non-zero, error, so show an error message
2 rodolico 607
         warn "Error in $moduleDir$modFile, [$output]\n";
135 rodolico 608
         &logIt( 0, "Error in $moduleDir$modFile, [$output]" );
2 rodolico 609
      } else { # otherwise, call tabDelimitedToHash to save the data
610
         &tabDelimitedToHash( $system, $output );
21 rodolico 611
      } # if
612
   } # foreach
613
   # add sysinfo-client (me) to the software list, since we're obviously installed
614
   &tabDelimitedToHash( $system, "software\tsysinfo-client\tversion\t$main::VERSION\n" );
2 rodolico 615
}
616
 
154 rodolico 617
sub getDMIDecode {
618
   my ( $key, $type ) = @_;
619
   my $command = 'dmidecode ';
620
   $command .= "-t $type " if $type;
621
   $command .= " | grep -i '$key'";
622
   my $value = `$command`;
623
   chomp $value;
624
   if ( $value =~ m/:\s*(.*)\s*$/ ) {
625
      return $1;
626
   } else {
627
      return '';
628
   }
629
}
630
 
631
sub interactiveConfig {
632
   my $config = shift;
633
   $config->{'moduleDirs'} = $config->{'moduleDirs'}[0];
634
   $config->{'scriptDirs'} = $config->{'scriptDirs'}[0];
635
   $config->{'UUID'} = getDMIDecode( 'uuid', 'system' ) unless $config->{'UUID'};
636
   $config->{'serialNumber'} = getDMIDecode( 'serial number', 'system' ) unless $config->{'serialNumber'};
637
 
638
   my %menu = (
639
      1 => {'prompt' => 'Host Name', 'key' => 'hostname' },
640
      2 => {'prompt' => 'Client Name', 'key' => 'clientName' },
641
      3 => {'prompt' => 'Serial Number', 'key' => 'serialNumber' },
642
      4 => {'prompt' => 'UUID', 'key' => 'UUID' },
643
      5 => {'prompt' => 'Modules Directory', 'key' => 'moduleDirs' },
644
      6 => {'prompt' => 'Scripts Directory', 'key' => 'scriptDirs' }
645
   );
646
   my $choice = 'quit';
647
   while ( $choice ) {
648
      foreach my $menuItem ( sort keys %menu ) {
649
         print "$menuItem\. " . $menu{$menuItem}{'prompt'} . ': ' . $config->{$menu{$menuItem}{'key'}} . "\n";
20 rodolico 650
      }
154 rodolico 651
      print "Enter Menu Item to change, or press Enter to proceed ";
652
      $choice = <>;
653
      chomp $choice;
654
      last unless $choice;
655
      print $menu{$choice}{'prompt'} . ' [' . $config->{$menu{$choice}{'key'}} . '] : ';
656
      my $value = <>;
657
      chomp $value;
658
      $config->{$menu{$choice}{'key'}} = $value if ($value);
659
   }
660
   $config->{'moduleDirs'} = [ $config->{'moduleDirs'} ];
661
   $config->{'scriptDirs'} = [ $config->{'scriptDirs'} ];
662
   return $config;
20 rodolico 663
}
664
 
154 rodolico 665
# simple display if --help is passed
666
sub help {
667
   use File::Basename;
668
   print basename($0) . " $VERSION\n";
669
   print <<END
670
$0 [options]
671
Options:
672
   -i,
673
   --interactive    - do not read configuration file
674
   --version        - display version and exit
675
   -c,
676
   --client='xxx'   - Client name for interactive mode
677
   -s,
678
   --serial='xxx'   - Serial Number for interactive mode
679
   -h,
680
   --hostname='xxx' - override hostname
681
   -m,
682
   --modules=/path/ - override path to modules
683
   --scripts=/path/ - override path to scripts
684
   -p,
685
   --periodic       - runs modules designed to be run only weekly, monthly, etc...
686
END
687
}
20 rodolico 688
 
154 rodolico 689
 
690
# handle any command line parameters that may have been passed in
691
 
692
GetOptions (
693
            'interactive|i' => \$interactive, # ask questions instead of using config file
694
            'periodic|p'    => \$periodic,    # will do modules which are marked as periodic
695
            'help|h'        => \$help,
696
            'version'       => \$version,
697
            'client|c=s'    => \$configuration{clientName},
698
            'serial|s=s'    => \$configuration{serialNumber},
699
            'hostname=s'    => \$configuration{hostname},
700
            'modules|m=s'   => \$configuration{moduleDirs},
701
            'scripts=s'     => \$configuration{scriptDirs},
702
            ) or die "Error parsing command line\n";
703
 
704
 
705
if ( $help ) { &help() ; exit; }
706
if ( $version ) { use File::Basename; print basename($0) . " $VERSION\n"; exit; }
707
 
708
if ( $interactive ) {
709
   %configuration = %{ &interactiveConfig( \%configuration ) };
710
} else {
711
   # load the configuration file
712
   %configuration = %{ &loadConfigurationFile( $configurationFile, @confFileSearchPath) };
713
}
714
 
715
`touch $periodicOverrideFile` if $periodic; # tells periodic modules to run
716
 
717
#die Dumper (\%configuration );
135 rodolico 718
 
2 rodolico 719
# user did not define a serial number, so make something up
59 rodolico 720
$configuration{'serialNumber'} = '' unless $configuration{'serialNumber'};
2 rodolico 721
# oops, no client name (required) so tell them and exit
61 rodolico 722
die "No client name defined in $configurationFile" unless $configuration{'clientName'};
2 rodolico 723
 
135 rodolico 724
&logIt( 0, 'Starting sysinfo Run' );
725
&logIt( 3, "Configuration is\n" . Data::Dumper->Dump( [\%configuration], [ qw($configuration) ] ) );
726
 
61 rodolico 727
$TESTING = $configuration{'TESTING'} if defined $configuration{'TESTING'};
728
 
135 rodolico 729
&logIt( 0, "Testing => $TESTING" ) if $TESTING;
76 rodolico 730
 
731
 
2 rodolico 732
my $System; # hash reference that will store all info we are going to send to the server
733
# some defaults.
174 rodolico 734
$System->{'report'}->{'version'} = $VERSION->normal;
135 rodolico 735
$System->{'report'}->{'date'} = $reportDate;
736
$System->{'report'}->{'client'} = $configuration{'clientName'};
737
$System->{'system'}->{'hostname'} = $configuration{'hostname'};
738
$System->{'system'}->{'serial'} = $configuration{'serialNumber'};
739
$System->{'system'}->{'UUID'} = $configuration{'UUID'};
2 rodolico 740
 
135 rodolico 741
&logIt( 3, "Initial System\n" . Data::Dumper->Dump( [$System], [qw( $System )] ) );
742
 
2 rodolico 743
# process any modules in the system
59 rodolico 744
foreach my $moduleDir ( @{$configuration{'moduleDirs'}} ) {
135 rodolico 745
   &logIt( 3, "Processing modules from $moduleDir" );
13 rodolico 746
   &ProcessModules( $System, "$moduleDir/" );
747
}
2 rodolico 748
 
135 rodolico 749
&logIt( 4, "After processing modules\n" . Data::Dumper->Dump( [$System], [qw( $System )] ) );
750
 
154 rodolico 751
my $out =  sprintf( "#sysinfo: %s YAML\n", $VERSION->normal ) . &Dump( $System );
2 rodolico 752
 
135 rodolico 753
&logIt( 4, 'At line number ' . __LINE__ . "\n" . Data::Dumper->Dump([$System],[qw($System)]) );
2 rodolico 754
 
19 rodolico 755
# load some global values for use in the script, if required
756
my $globals = { 
154 rodolico 757
      'data version' => $DATA_VERSION->normal,
19 rodolico 758
      'report date'  => $reportDate,
59 rodolico 759
      'client name'  => $configuration{'clientName'},
760
      'host name'    => $configuration{'hostname'},
61 rodolico 761
      'serial number'=> $configuration{'serialNumber'},
762
      'UUID'         => $configuration{'UUID'}
19 rodolico 763
      };
62 rodolico 764
 
135 rodolico 765
&logIt( 4, "Globals initialized\n" . Data::Dumper->Dump([$globals],[qw($globals)]) );
766
 
767
if ( $TESTING ) {
768
   open DATA, ">/tmp/sysinfo.testing.yaml" or die "Could not write to /tmp/sysinfo.testing.yaml: $!\n";
769
   print DATA $out;
770
   close DATA;
771
} else {
772
   # and send the results to the server
773
   if ( my $success = &sendResults( $globals, $configuration{'transports'}, $out, $configuration{'scriptDirs'} ) != 1 ) {
774
      &logIt( 0, "Error $success while sending report from $configuration{'hostname'}" );
775
   }
16 rodolico 776
}
2 rodolico 777
 
154 rodolico 778
unlink ( $periodicOverrideFile ) if -e $periodicOverrideFile;
135 rodolico 779
&logIt( 0, 'Ending sysinfo Run' );
780
 
154 rodolico 781
 
9 rodolico 782
1;