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