Subversion Repositories camp_sysinfo_client_3

Rev

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