Subversion Repositories camp_sysinfo_client_3

Rev

Rev 185 | Rev 194 | Go to most recent revision | Details | Compare with Previous | 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
191 rodolico 188
# 
189
# Version 3.6.0 20220607 RWR
190
# Changed the way upload works. It automatically now passes an additional parameter, upload_type, which with the new upload
191
# script will choose a directory, allowing one script to handle various uploads
192
# additionally, if the key 'postRunScript' is in the config, it is assumed to be the name of a script to be run after sysinfo
193
# completes it's task. This can be used to download/update the program, add new modules, etc..
194
 
195
 
112 rodolico 196
# find our location and use it for searching for libraries
197
BEGIN {
198
   use FindBin;
199
   use File::Spec;
200
   use lib File::Spec->catdir($FindBin::Bin);
154 rodolico 201
   eval( 'use YAML::Tiny;' );
202
   eval( 'use Data::Dumper;' );
112 rodolico 203
}
62 rodolico 204
 
154 rodolico 205
# contains the directory our script is in
206
my $sourceDir = File::Spec->catdir($FindBin::Bin);
112 rodolico 207
 
154 rodolico 208
# define the version number
209
# see https://metacpan.org/pod/release/JPEACOCK/version-0.97/lib/version.pod
210
use version;
191 rodolico 211
our $VERSION = version->declare("v3.6.0");
154 rodolico 212
our $DATA_VERSION = version->declare( 'v3.0.0' ); # used in sending the data file. sets version of XML/YAML data file
213
 
214
# see https://perldoc.perl.org/Getopt/Long.html
215
use Getopt::Long;
216
# allow -vvn (ie, --verbose --verbose --dryrun)
217
Getopt::Long::Configure ("bundling");
218
 
2 rodolico 219
# Following are global variables overridden if configuration file exists
220
 
135 rodolico 221
my $TESTING = 0; # if set to 1, will do everything, but will dump output to /tmp/sysinfo.testing.yaml
9 rodolico 222
 
2 rodolico 223
my $indentLevel = 2; # number of spaces to indent per level in XML or YAML
224
 
13 rodolico 225
# paths to search for configuration file
51 rodolico 226
my @confFileSearchPath = ( '.', '/etc/camp/sysinfo-client', '/etc/camp', '/usr/local/etc/camp/sysinfo-client' );
2 rodolico 227
 
112 rodolico 228
my $configurationFile = 'sysinfo-client.yaml'; # name of the configuration file
2 rodolico 229
 
135 rodolico 230
my $reportDate = &timeStamp(); # set report date
2 rodolico 231
 
154 rodolico 232
my $interactive = 0; # if set to 1, will go into interactive mode and output to local file
233
my $periodicOverrideFile = '/tmp/sysinfo.firstrun'; # if this file exists, library.pm will tell all periodic modules to run anyway
234
my $periodic = 0; # if set to 1, will do modules which are only supposed to run weekly, monthly, etc...
235
 
236
my $version;
237
my $help;
238
 
59 rodolico 239
my %configuration = (
142 rodolico 240
   'logging' => { 'log type' => 'cache', 'log level' => 0 },    # if set, will point to logging
154 rodolico 241
   'moduleDirs' => ["$sourceDir/modules"], # search paths for modules
242
   'scriptDirs' => ["$sourceDir/scripts"], # search paths for scripts
59 rodolico 243
   'clientName' => '',  # Required!! Must be set in conf file (no defaults)
244
   'serialNumber' => '', # serial number of machine
245
   'UUID'         => '', # UUID of machine
154 rodolico 246
   'transports'   => {'3' => { '-name-' => 'saveLocal', 'sendScript' => 'save_local', 'output directory' => "$sourceDir/reports" }  }, # hash with various transports
61 rodolico 247
   'hostname' => &getHostName() # fully qualified host name of machine
154 rodolico 248
);
2 rodolico 249
 
250
 
13 rodolico 251
 
136 rodolico 252
#######################################################
253
#
254
# timeStamp
255
#
256
# return current system date as YYYY-MM-DD HH:MM:SS
257
#
258
#######################################################
259
sub timeStamp {
260
   my ($sec,$min,$hour,$mday,$mon,$year,$wday,$yday,$isdst)=localtime(time);
142 rodolico 261
   return sprintf "%4d-%02d-%02d %02d:%02d:%02d",$year+1900,$mon+1,$mday,$hour,$min,$sec;
136 rodolico 262
}
263
 
138 rodolico 264
#######################################################
265
# function to simply log things
135 rodolico 266
# first parameter is the priority, if <= $logDef->{'log level'} will print
267
# all subsequent parameters assumed to be strings to sent to the log
268
# returns 0 on failure
269
#         1 on success
270
#         2 if priority > log level
271
#        -1 if $logDef is unset
272
# currently, only logs to a file
138 rodolico 273
#######################################################
135 rodolico 274
sub logIt {
275
   my $priority = shift;
13 rodolico 276
 
135 rodolico 277
   return -1 unless exists $configuration{'logging'};
278
   return 2 unless $priority <= $configuration{'logging'}{'log level'};
138 rodolico 279
   if ( $configuration{'logging'}{'log type'} eq 'cache' ) {
280
      push @{ $configuration{'logging'}{'cache'} }, @_;
281
      return;
282
   } elsif ( defined( $configuration{'logging'}{'cache'} ) ) {
283
      unshift @_, @{ $configuration{'logging'}{'cache'} };
284
      delete $configuration{'logging'}{'cache'};
285
   }
135 rodolico 286
   if ( $configuration{'logging'}{'log type'} eq 'file' ) {
287
      if ( open LOG, '>>' . $configuration{'logging'}{'log path'} ) {
288
         while ( my $t = shift ) {
289
            print LOG &timeStamp() . "\t$t\n";
290
         }
291
         close LOG;
292
      }
144 rodolico 293
   } elsif ( $configuration{'logging'}{'log type'} eq 'syslog' ) {
294
      use Sys::Syslog;                        # all except setlogsock()
295
      use Sys::Syslog qw(:standard :macros);  # standard functions & macros
296
 
297
      my $syslogName = 'sysinfo-client';
298
      my $logopt = 'nofatal';
299
      my $facility = 'LOG_LOCAL0';
300
      my $priority = 'LOG_NOTICE';
301
 
302
      openlog( $syslogName, $logopt, $facility);
303
      syslog($priority, '%s', @_ );
304
      closelog();
135 rodolico 305
   } else {
306
      warn "Log type $configuration{'logging'} incorrectly configured\n";
307
      return 0;
308
   }
309
   return 1;
310
}
311
 
312
 
2 rodolico 313
#######################################################
314
#
13 rodolico 315
# findFile( $filename, @directories )
316
#
317
# Locates a file by searching sequentially in one or more
318
# directories, returning the first one found
319
# 
320
# Returns '' if not found
321
#
322
#######################################################
323
 
324
sub findFile {
59 rodolico 325
   my ( $filename, $directories ) = @_;
138 rodolico 326
   &logIt( 3, "Looking for $filename in findFile" );
59 rodolico 327
   for ( my $i = 0; $i < scalar( @{$directories} ); $i++ ) {
328
      my $confFile = $$directories[$i] . '/' . $filename;
138 rodolico 329
      &logIt( 4, "Looking for $filename in $confFile" );
13 rodolico 330
      return $confFile if ( -f $confFile );
331
   }
332
   return '';
333
}
334
 
335
 
336
#######################################################
337
#
2 rodolico 338
# loadConfigurationFile($confFile)
339
#
340
# Loads configuration file defined by $configurationFile, and dies if not available
112 rodolico 341
# This is a YAML file containing serialized contents of 
154 rodolico 342
# Parameters:
343
#    $fileName - name of file to look for
344
#    @searchPath - array of paths to find $filename
2 rodolico 345
#
346
#######################################################
347
 
135 rodolico 348
sub loadConfigurationFile {   
14 rodolico 349
   my ( $fileName, @searchPath ) = @_;
141 rodolico 350
   &logIt( 2, "Looking for config file $fileName in " . join( ', ', @searchPath ) );
13 rodolico 351
   my $confFile;
59 rodolico 352
   if ( $confFile = &findFile( $fileName, \@searchPath ) ) {
138 rodolico 353
      &logIt( 3, "Opening configuration from $confFile" );
112 rodolico 354
      my $yaml = YAML::Tiny->read( $confFile );
138 rodolico 355
      &logIt( 4, "Configuration file contents\n$yaml" );
112 rodolico 356
      return $yaml->[0];
13 rodolico 357
   }
14 rodolico 358
   die "Can not find $fileName in any of " . join( "\n\t", @searchPath ) . "\n";
2 rodolico 359
}
360
 
361
#######################################################
362
#
363
# sendResults( $parameters, $message, $scriptDirectory )
364
#
365
# Sends results of run to server using external script. If external
366
# script not defined, just print to STDOUT
367
#
368
# Parameters
369
#  $parameters - a hash containing the information necessary to make the transfer
370
#  $message - the message to be sent
371
#  $scriptDirectory - path (not filename) of script to be executed
372
# 
373
# $parameters contains different key/value pairs depending on the script used
374
#             for example, a stand-alone SMTP script may need a username/password,
375
#             smtp server name, port number, from and to address
376
#             while an http transfer may only need a script name
377
#             See the individual scripts to determine what parameters need to be
378
#             filled in.
379
#             The only required parameter is 'sendScript' which must contain the
380
#             name of the script to execute (and it must be located in $scriptDirectory)
381
# SCRIPT must contain one sub named doit, that accepts three parameters, the hash, 
382
#       the message, and, optionally, the script directory
383
#
384
# If script not defined, just dump to STDOUT. With a properly set up cron job, the output
385
# would then be sent via e-mail to an administrative account, possibly root
386
#
387
#######################################################
388
sub sendResults {
62 rodolico 389
   my ( $globals, $transports, $message, $scriptDirectory ) = @_;
135 rodolico 390
   &logIt( 3, "Entering sendResults" );
113 rodolico 391
   foreach my $key ( sort { $a <=> $b } %$transports ) {
392
      if ( $transports->{$key}->{'sendScript'} ) {
135 rodolico 393
         &logIt( 3, "Trying to find file " . $transports->{$key}->{'sendScript'} . " in " . join( "\n\t", @{$scriptDirectory} ) );
113 rodolico 394
         my $sendScript = &findFile( $transports->{$key}->{'sendScript'}, $scriptDirectory );
19 rodolico 395
         if ( $sendScript ) {
18 rodolico 396
            # load the chosen script into memory
397
            require $sendScript;
19 rodolico 398
            # merge the globals in
399
            while ( my ( $gkey, $value ) = each %$globals ) { 
113 rodolico 400
               $transports->{$key}->{$gkey} = $value; 
19 rodolico 401
            }
20 rodolico 402
            # do variable substitution for any values which need it
113 rodolico 403
            foreach my $thisOne ( keys %{$transports->{$key}} ) {
135 rodolico 404
               &logIt( 4, "$thisOne" );
113 rodolico 405
               if ( $transports->{$key}->{$thisOne} =~ m/(\$configuration\{'hostname'\})|(\$reportDate)|(\$configuration\{'clientName'\})|(\$configuration\{'serialNumber'\})/ ) {
406
                  $transports->{$key}->{$thisOne} = eval "\"$transports->{$key}->{$thisOne}\"";
20 rodolico 407
               }
408
            }
409
 
62 rodolico 410
            #%$transports{$key}{keys %$globals} = values %$globals;
411
            #print Dumper( $$transports[$key] );
20 rodolico 412
            #next;
18 rodolico 413
            # execute the "doit" sub from that script
135 rodolico 414
            &logIt( 3, $message );
415
            my $return = &doit( $transports->{$key}, $message );
416
            return $return if ( $return == 1 );
18 rodolico 417
         } else {
135 rodolico 418
            &logIt( 0,"Could not find " . $$transports[$key]{'sendScript'} . ", trying next transport" );
18 rodolico 419
         } # if..else
420
      } # if
421
   } # foreach
422
   # if we made it here, we have not sent the report, so just return it to the user
85 rodolico 423
   # if called from a cron job, it will (hopefully) be sent to root
135 rodolico 424
   &logIt( 0, 'Error, reached ' . __LINE__ . " which should not happen, message was\n$message" );
85 rodolico 425
   print $message;
16 rodolico 426
   return 1;
2 rodolico 427
}
428
 
429
#######################################################
430
#
431
# getHostName
432
#
433
# return hostname from hostname -f
434
#
435
#######################################################
436
sub getHostName {
135 rodolico 437
   &logIt( 3, "Entering getHostName" );
28 rodolico 438
   my $hostname = `hostname -f`;
2 rodolico 439
   chomp $hostname;
440
   return $hostname;
441
}
442
 
443
#######################################################
444
#
18 rodolico 445
# escapeForYAML
2 rodolico 446
#
18 rodolico 447
# Escapes values put into YAML report
2 rodolico 448
#
112 rodolico 449
# DEPRECATED AS OF VERSION 3.3.0
450
# uses YAML::Tiny
451
#
2 rodolico 452
#######################################################
112 rodolico 453
#sub escapeForYAML {
454
#   my $value = shift;
455
#   $value =~ s/'/\\'/gi; # escape single quotes
456
#   $value =~ s/"/\\"/gi; # escape double quotes
457
#   # pound sign indicates start of a comment and thus loses part
458
#   # of strings. Surrounding it by double quotes in next statement
459
#   # allows 
460
#   $value = '"' . $value . '"' if ( $value =~ m/[#:]/ );
461
#   return $value;
462
#}
2 rodolico 463
 
464
#######################################################
465
#
466
# hashToYAML( $hashRef, $indent )
467
#
468
# Converts a hash to a YAML string
469
#
470
# NOTE: This routine recursively calls itself for every level
471
#       in the hash
472
#
473
# Parameters
474
#     $hashref - reference (address) of a hash
475
#     $indent  - current indent level, defaults to 0
476
#
477
# Even though there are some very good libraries that do this
478
# I chose to hand-code it so sysinfo can be run with no libraries
479
# loaded. I chose to NOT do a full implementation, so special chars
480
# that would normally be escaped are not in here. 
481
# However, I followed all the RFC for the values that were given, so
482
# assume any YAML reader can parse this
483
# NOTE: YAML appears to give a resulting file 1/3 smaller than the above
484
#       XML, and compresses down in like manner
485
#
112 rodolico 486
# DEPRECATED AS OF VERSION 3.3.0
487
# uses YAML::Tiny
488
#
2 rodolico 489
#######################################################
112 rodolico 490
#sub hashToYAML {
491
#   my ($hashRef, $indent) = @_;
492
#   $indent = 0 unless $indent; # default to 0 if not defined
493
#   
494
#   my $output; # where the output is stored
495
#   foreach my $key ( keys %$hashRef ) { # for each key in the current reference
496
#      print "Looking at $key\n" if $TESTING > 3;
497
#      # see http://www.perlmonks.org/?node_id=175651 for isa function
498
#      if ( UNIVERSAL::isa( $$hashRef{$key}, 'HASH' ) ) { # is the value another hash?
499
#            # NOTE: unlike xml, indentation is NOT optional in YAML, so the following line verifies $indentlevel is non-zero
500
#            #       and, if it is, uses a default 3 character indentation
501
#            $output .= (' ' x $indent ) . &escapeForYAML($key) . ":\n" . # key, plus colon, plus newline
502
#                    &hashToYAML( $$hashRef{$key}, $indent+($indentLevel ? $indentLevel : 3) ) . # add results of recursive call
503
#                    "\n";
504
#      } elsif ( UNIVERSAL::isa( $$hashRef{$key}, 'ARRAY' ) ) { # is it an array? ignore it
505
#      } else { # it is a scalar, so just do <key>value</key>
506
#         $output .= (' ' x $indent ) . &escapeForYAML($key) . ': ' . &escapeForYAML($$hashRef{$key}) . "\n";
507
#      }
508
#   }
509
#   return $output;
510
#}
2 rodolico 511
 
512
 
513
#######################################################
514
#
515
# tabDelimitedToHash ($hashRef, $tabdelim)
516
#
517
# Takes a tab delimited multi line string and adds it
518
# to a hash. The final field in each line is considered to
519
# be the value, and all prior fields are considered to be
520
# hierachial keys.
521
#
522
# Parameters
523
#     $hashref - reference (address) of a hash
524
#     $tabdelim - A tab delimited, newline terminated set of records
525
#
526
#
527
#######################################################
528
sub tabDelimitedToHash {
529
   my ($hashRef, $tabdelim) = @_;
135 rodolico 530
   &logIt( 3, "Entering tabDelimitedToHash" );
2 rodolico 531
   foreach my $line ( split( "\n", $tabdelim ) ) { # split on newlines, then process each line in turn
532
      $line =~ s/'/\\'/gi; # escape single quotes
28 rodolico 533
      my @fields = split( / *\t */, $line ); # get all the field values into array
2 rodolico 534
      my $theValue = pop @fields; # the last one is the value, so save it
535
      # now, we build a Perl statement that would create the assignment. The goal is
536
      # to have a string that says something like $$hashRef{'key'}{'key'} = $value;
537
      # then, eval that.
538
      my $command = '$$hashRef'; # start with the name of the dereferenced hash (parameter 1)
539
      while (my $key = shift @fields) { # while we have a key, from left to right
540
         $command .= '{' . "'$key'" . '}'; # build it as {'key'} concated to string
541
      }
542
      $command .= "='$theValue';"; # add the assignment
543
      #print STDERR "$command\n"; 
544
      eval $command; # eval the string to make the actual assignment
545
   }
546
}
547
 
548
#######################################################
549
#
13 rodolico 550
# validatePermission ( $file )
551
#
552
# Checks that file is owned by root, and has permission
553
# 0700 or less
554
# 
555
# Returns empty string on success, error message
556
# on failure
557
#
558
#######################################################
559
 
560
sub validatePermission {
561
   my $file = shift;
135 rodolico 562
   &logIt( 3, "Entering validatePermission with $file" );
14 rodolico 563
   my $return;
13 rodolico 564
   # must be owned by root
28 rodolico 565
   my $owner = (stat($file))[4];
13 rodolico 566
   $return .= " - Bad Owner [$owner]" if $owner;
567
   # must not have any permissions for group or world
568
   # ie, 0700 or less
28 rodolico 569
   my $mode = (stat($file))[2];
13 rodolico 570
   $mode = sprintf( '%04o', $mode & 07777 );
571
   $return .= " - Bad Permission [$mode]" unless $mode =~ m/0.00/;
572
   return $return ? $file . $return : '';
573
}
574
 
575
#######################################################
576
#
2 rodolico 577
# ProcessModules ( $system, $moduleDir )
578
#
579
# Processes all modules in $moduleDir, adding result to $system hash
580
# 
581
# Parameters
582
#     $system - reference (address) of a hash
583
#     $moduleDir - full path to a directory containing executable scripts
584
#  
585
# Each file in the $moduleDir directory that matches the regex in the grep
586
# and is executable is run. It is assumed the script will return 0 on success
587
# or a non-zero on failure
588
# The output of the script is assumed to be a tab delimited, newline separated
589
# list of records that should be added to the hash $system. This is done by calling 
590
# &parseModule above.
591
# on failure, the returned output of the script is assumed to be an error message
592
# and is displayed on STDERR
593
#######################################################
594
sub ProcessModules {
595
   my ( $system, $moduleDir ) = @_;
135 rodolico 596
   &logIt( 3, "Entering processModules" );
2 rodolico 597
   # open the module directory
47 rodolico 598
   return unless -d $moduleDir;
2 rodolico 599
   opendir( my $dh, $moduleDir ) || die "Module Directory $moduleDir can not be opened: $!\n";
600
   # and get all files which are executable and contain nothing but alpha-numerics and underscores (must begin with alpha-numeric)
601
   my @modules = grep { /^[a-zA-Z0-9][a-zA-Z0-9_]+$/ && -x "$moduleDir/$_" } readdir( $dh );
602
   closedir $dh;
28 rodolico 603
   foreach my $modFile ( sort @modules ) { # for each valid script
14 rodolico 604
      if ( my $error = &validatePermission( "$moduleDir$modFile" ) ) {
13 rodolico 605
         print STDERR "Not Processed: $error\n";
606
         next;
607
      }
135 rodolico 608
      &logIt( 3, "Processing module $moduleDir$modFile");
2 rodolico 609
      my $output = qx/$moduleDir$modFile $moduleDir/; # execute it and grab the output
610
      my $exitCode = $? >> 8; # process the exitCode
37 rodolico 611
      # exitCode 0 - processed normally
612
      # exitCode 1 - not applicable to this machine
613
      if ( $exitCode && $exitCode > 1) { # if non-zero, error, so show an error message
2 rodolico 614
         warn "Error in $moduleDir$modFile, [$output]\n";
135 rodolico 615
         &logIt( 0, "Error in $moduleDir$modFile, [$output]" );
2 rodolico 616
      } else { # otherwise, call tabDelimitedToHash to save the data
617
         &tabDelimitedToHash( $system, $output );
21 rodolico 618
      } # if
619
   } # foreach
620
   # add sysinfo-client (me) to the software list, since we're obviously installed
621
   &tabDelimitedToHash( $system, "software\tsysinfo-client\tversion\t$main::VERSION\n" );
2 rodolico 622
}
623
 
154 rodolico 624
sub getDMIDecode {
625
   my ( $key, $type ) = @_;
626
   my $command = 'dmidecode ';
627
   $command .= "-t $type " if $type;
628
   $command .= " | grep -i '$key'";
629
   my $value = `$command`;
630
   chomp $value;
631
   if ( $value =~ m/:\s*(.*)\s*$/ ) {
632
      return $1;
633
   } else {
634
      return '';
635
   }
636
}
637
 
638
sub interactiveConfig {
639
   my $config = shift;
640
   $config->{'moduleDirs'} = $config->{'moduleDirs'}[0];
641
   $config->{'scriptDirs'} = $config->{'scriptDirs'}[0];
642
   $config->{'UUID'} = getDMIDecode( 'uuid', 'system' ) unless $config->{'UUID'};
643
   $config->{'serialNumber'} = getDMIDecode( 'serial number', 'system' ) unless $config->{'serialNumber'};
644
 
645
   my %menu = (
646
      1 => {'prompt' => 'Host Name', 'key' => 'hostname' },
647
      2 => {'prompt' => 'Client Name', 'key' => 'clientName' },
648
      3 => {'prompt' => 'Serial Number', 'key' => 'serialNumber' },
649
      4 => {'prompt' => 'UUID', 'key' => 'UUID' },
650
      5 => {'prompt' => 'Modules Directory', 'key' => 'moduleDirs' },
651
      6 => {'prompt' => 'Scripts Directory', 'key' => 'scriptDirs' }
652
   );
653
   my $choice = 'quit';
654
   while ( $choice ) {
655
      foreach my $menuItem ( sort keys %menu ) {
656
         print "$menuItem\. " . $menu{$menuItem}{'prompt'} . ': ' . $config->{$menu{$menuItem}{'key'}} . "\n";
20 rodolico 657
      }
154 rodolico 658
      print "Enter Menu Item to change, or press Enter to proceed ";
659
      $choice = <>;
660
      chomp $choice;
661
      last unless $choice;
662
      print $menu{$choice}{'prompt'} . ' [' . $config->{$menu{$choice}{'key'}} . '] : ';
663
      my $value = <>;
664
      chomp $value;
665
      $config->{$menu{$choice}{'key'}} = $value if ($value);
666
   }
667
   $config->{'moduleDirs'} = [ $config->{'moduleDirs'} ];
668
   $config->{'scriptDirs'} = [ $config->{'scriptDirs'} ];
669
   return $config;
20 rodolico 670
}
671
 
154 rodolico 672
# simple display if --help is passed
673
sub help {
674
   use File::Basename;
675
   print basename($0) . " $VERSION\n";
676
   print <<END
677
$0 [options]
678
Options:
679
   -i,
680
   --interactive    - do not read configuration file
681
   --version        - display version and exit
682
   -c,
683
   --client='xxx'   - Client name for interactive mode
684
   -s,
685
   --serial='xxx'   - Serial Number for interactive mode
686
   -h,
687
   --hostname='xxx' - override hostname
688
   -m,
689
   --modules=/path/ - override path to modules
690
   --scripts=/path/ - override path to scripts
691
   -p,
692
   --periodic       - runs modules designed to be run only weekly, monthly, etc...
693
END
694
}
20 rodolico 695
 
154 rodolico 696
 
697
# handle any command line parameters that may have been passed in
698
 
699
GetOptions (
700
            'interactive|i' => \$interactive, # ask questions instead of using config file
701
            'periodic|p'    => \$periodic,    # will do modules which are marked as periodic
702
            'help|h'        => \$help,
703
            'version'       => \$version,
704
            'client|c=s'    => \$configuration{clientName},
705
            'serial|s=s'    => \$configuration{serialNumber},
706
            'hostname=s'    => \$configuration{hostname},
707
            'modules|m=s'   => \$configuration{moduleDirs},
708
            'scripts=s'     => \$configuration{scriptDirs},
709
            ) or die "Error parsing command line\n";
710
 
711
 
712
if ( $help ) { &help() ; exit; }
713
if ( $version ) { use File::Basename; print basename($0) . " $VERSION\n"; exit; }
714
 
715
if ( $interactive ) {
716
   %configuration = %{ &interactiveConfig( \%configuration ) };
717
} else {
718
   # load the configuration file
719
   %configuration = %{ &loadConfigurationFile( $configurationFile, @confFileSearchPath) };
720
}
721
 
722
`touch $periodicOverrideFile` if $periodic; # tells periodic modules to run
723
 
724
#die Dumper (\%configuration );
135 rodolico 725
 
2 rodolico 726
# user did not define a serial number, so make something up
59 rodolico 727
$configuration{'serialNumber'} = '' unless $configuration{'serialNumber'};
2 rodolico 728
# oops, no client name (required) so tell them and exit
61 rodolico 729
die "No client name defined in $configurationFile" unless $configuration{'clientName'};
2 rodolico 730
 
135 rodolico 731
&logIt( 0, 'Starting sysinfo Run' );
732
&logIt( 3, "Configuration is\n" . Data::Dumper->Dump( [\%configuration], [ qw($configuration) ] ) );
733
 
61 rodolico 734
$TESTING = $configuration{'TESTING'} if defined $configuration{'TESTING'};
735
 
135 rodolico 736
&logIt( 0, "Testing => $TESTING" ) if $TESTING;
76 rodolico 737
 
738
 
2 rodolico 739
my $System; # hash reference that will store all info we are going to send to the server
740
# some defaults.
174 rodolico 741
$System->{'report'}->{'version'} = $VERSION->normal;
135 rodolico 742
$System->{'report'}->{'date'} = $reportDate;
743
$System->{'report'}->{'client'} = $configuration{'clientName'};
744
$System->{'system'}->{'hostname'} = $configuration{'hostname'};
745
$System->{'system'}->{'serial'} = $configuration{'serialNumber'};
746
$System->{'system'}->{'UUID'} = $configuration{'UUID'};
2 rodolico 747
 
135 rodolico 748
&logIt( 3, "Initial System\n" . Data::Dumper->Dump( [$System], [qw( $System )] ) );
749
 
2 rodolico 750
# process any modules in the system
59 rodolico 751
foreach my $moduleDir ( @{$configuration{'moduleDirs'}} ) {
135 rodolico 752
   &logIt( 3, "Processing modules from $moduleDir" );
13 rodolico 753
   &ProcessModules( $System, "$moduleDir/" );
754
}
2 rodolico 755
 
135 rodolico 756
&logIt( 4, "After processing modules\n" . Data::Dumper->Dump( [$System], [qw( $System )] ) );
757
 
154 rodolico 758
my $out =  sprintf( "#sysinfo: %s YAML\n", $VERSION->normal ) . &Dump( $System );
2 rodolico 759
 
135 rodolico 760
&logIt( 4, 'At line number ' . __LINE__ . "\n" . Data::Dumper->Dump([$System],[qw($System)]) );
2 rodolico 761
 
19 rodolico 762
# load some global values for use in the script, if required
763
my $globals = { 
191 rodolico 764
      'upload_type'  => 'sysinfo',
154 rodolico 765
      'data version' => $DATA_VERSION->normal,
19 rodolico 766
      'report date'  => $reportDate,
59 rodolico 767
      'client name'  => $configuration{'clientName'},
768
      'host name'    => $configuration{'hostname'},
61 rodolico 769
      'serial number'=> $configuration{'serialNumber'},
770
      'UUID'         => $configuration{'UUID'}
19 rodolico 771
      };
62 rodolico 772
 
135 rodolico 773
&logIt( 4, "Globals initialized\n" . Data::Dumper->Dump([$globals],[qw($globals)]) );
774
 
775
if ( $TESTING ) {
776
   open DATA, ">/tmp/sysinfo.testing.yaml" or die "Could not write to /tmp/sysinfo.testing.yaml: $!\n";
777
   print DATA $out;
778
   close DATA;
779
} else {
780
   # and send the results to the server
781
   if ( my $success = &sendResults( $globals, $configuration{'transports'}, $out, $configuration{'scriptDirs'} ) != 1 ) {
782
      &logIt( 0, "Error $success while sending report from $configuration{'hostname'}" );
783
   }
16 rodolico 784
}
2 rodolico 785
 
154 rodolico 786
unlink ( $periodicOverrideFile ) if -e $periodicOverrideFile;
135 rodolico 787
&logIt( 0, 'Ending sysinfo Run' );
788
 
191 rodolico 789
`$configuration{postRunScript}` if $configuration{'postRunScript'};
154 rodolico 790
 
9 rodolico 791
1;