1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387
|
########################################################
# Please file all bug reports, patches, and feature
# requests under:
# https://sourceforge.net/p/logwatch/_list/tickets
# Help requests and discusion can be filed under:
# https://sourceforge.net/p/logwatch/discussion/
########################################################
########################################################
## Copyright (c) 2008-2016 Kirk Bauer
## Covered under the included MIT/X-Consortium License:
## http://www.opensource.org/licenses/mit-license.php
## All modifications and contributions by other persons to
## this script are assumed to have been donated to the
## Logwatch project and thus assume the above copyright
## and licensing terms. If you want to make contributions
## under your own copyright or a different license this
## must be explicitly stated in the contribution an the
## Logwatch project reserves the right to not accept such
## contributions. If you have made significant
## contributions to this script and want to claim
## copyright please contact logwatch-devel@lists.sourceforge.net.
#########################################################
use strict;
my $Detail = $ENV{'LOGWATCH_DETAIL_LEVEL'} || 0;
#Init Counters
my $BFMFile= my $INCRONDSS= my $INCRONDStS=
my $MailErrors= my $Ntpdate= my $Orphans=
my $ntpdatemaxoffset= my $ntpdateminoffset= my $ntpdatenosync=
my $Reloads= my $Shutdowns= my $Startups=
my $CHUSERHErr= my $PAMAUTHErr=
0;
#Init Reusable strings
my $Error = "";
my $User = "";
my $FileName = "";
my $Cause = "";
my $Table = "";
#Init Array
my @OtherList = ();
my $Runs = ();
#Init Hashes
my (
%ExecutedCommand, %CrontabDeny, %InodeError,
%Errors, %BFMFile, %WFO,
%SELCONTErr, %UserReloads, %INCRONDSTCr,
%INCRONDSTCh, %INCRONDSTDe, %INCRONDUTCr,
%INCRONDUTCh, %INCRONDUTDe, %INCRONDErr,
%CRONDErr, %CHDIRErr,
);
while (defined(my $ThisLine = <STDIN>)) {
chomp($ThisLine);
if (
($ThisLine =~ /Updated timestamp for job/) or
($ThisLine =~ /INFO \(pidfile fd = \d+\)/) or
($ThisLine =~ /rsyncd/) or
($ThisLine =~ /INFO \(Running \@(re)?boot jobs\)/) or
($ThisLine =~ /INFO \(Skipping \@(re)?boot jobs -- not system startup\)/) or
($ThisLine =~ /INFO \(not boot nor reboot\)/) or
($ThisLine =~ /INFO \(running with inotify support\)/) or
($ThisLine =~ /INFO \(\@reboot jobs will be run at computer's startup.\)/) or
($ThisLine =~ /INFO \(RANDOM_DELAY will be scaled with factor/) or
($ThisLine =~ /logfile turned over/) or
($ThisLine =~ /ready to process filesystem events/) or # newsyslog on OpenBSD
($ThisLine =~ /loading (system|user) tables/) or
($ThisLine =~ /loading table .*/) or
($ThisLine =~ /void Inotify::Remove\(InotifyWatch\*\): removing watch failed/) or
($ThisLine =~ /error: \(22\) Invalid argument/) or
($ThisLine =~ /pam_unix\(crond:session\): session (?:opened|closed) for user/) or
# This is paired with PAM ERROR handled below
($ThisLine =~ /FAILED to authorize user with PAM/) or
($ThisLine =~ /PAM pam_end: NULL pam handle passed/) or
($ThisLine =~ /Signature not found in user keyring|Perhaps try the interactive/)
) {
# Ignore
} elsif (
($ThisLine =~ s/^([^ ]+) \([^ ]+\)\s+//) or
($ThisLine =~ s/^\S+\s+\S+\s+..:..:..\s+\S+\s+\S+\[(\d+)\]:\s+\((\S+)\)\s+//)
) {
my $PID = $1;
$User = $2; #Not happy with User being everywhere
if ($ThisLine =~ s/^CMD \((.+)\)\s*$/$1/) {
$Runs->{$User}->{$ThisLine}++;
$ExecutedCommand{$PID} = {command=>$ThisLine, user=>$User};
} elsif ($ThisLine =~ /^CMDEND/) {
# Ignore - already counted above
next;
} elsif ($ThisLine =~ s/^CMD FINISH \((.+)\)\s*$/$1/) {
$Runs->{$User}->{$ThisLine}++;
} elsif ($ThisLine =~ s/^(END|CMD START) \((.+)\)\s*$/$1/) {
#Ignore for now, NetBSD users could get tricky with
#How many commands started vs finished -mgt
} elsif ($ThisLine =~ /ORPHAN \(no passwd entry\)/) {
$Orphans++;
} elsif ($ThisLine =~ s/^(BEGIN|END) EDIT \((.+)\)\s*$/$2/) {
$Runs->{$ThisLine}->{'personal crontab edited'} += 0.5;
} elsif ($ThisLine =~ s/^REPLACE \((.+)\)\s*$/$1/) {
$Runs->{$ThisLine}->{'personal crontab replaced'}++;
} elsif ($ThisLine =~ s/^LIST \((.+)\)\s*$/$1/) {
$Runs->{$ThisLine}->{'personal crontab listed'}++;
} elsif ($ThisLine =~ s/^DELETE \((.+)\)\s*$/$1/) {
$Runs->{$User}->{'personal crontab deleted'}++;
} elsif ($ThisLine =~ /^STARTUP \(.*\)\s*$/ ) {
$Startups++;
} elsif ($ThisLine =~ /^INFO \(Shutting down\)/ ) {
$Shutdowns++;
} elsif ( $ThisLine =~ /^RELOAD \(.+\)\s*$/ ) {
$Runs->{$User}->{'personal crontab reloaded'}++;
} elsif ( $ThisLine =~ /^MAIL \(mailed \d+ bytes of output but got status [^ ]+/) {
$MailErrors++;
} elsif ( $ThisLine =~ /^AUTH \(crontab command not allowed\)/) {
$CrontabDeny{$User}++;
} elsif ( ($Error) = $ThisLine =~ /^PAM ERROR \((.*)\)/) {
$Errors{$User}{$Error}++;
} elsif ( $ThisLine =~ /^WRONG INODE INFO \([^ ]+\)/) {
$InodeError{$User}++;
} elsif ( $ThisLine =~ /session opened/ ||
$ThisLine =~ /session closed/ ) {
# ignore
} elsif ( my ($Reason) = ($ThisLine =~ /^error \((.+)\)$/) ) {
if ($Reason =~ /^grandchild #(\d+) failed with exit status (\d+)/ && \
$ExecutedCommand{$1}) {
# $Reason = $ExecutedCommand{$1}{user}.": command failed with error (".$2."): ".$ExecutedCommand{$1}{command};
$Reason = "failed with error (".$2."): ".$ExecutedCommand{$1}{command};
}
$Errors{$ExecutedCommand{$1}{user}}{$Reason}++;
} elsif ( ($FileName) = ($ThisLine =~ /BAD FILE MODE \((.+)\)/) ) {
$BFMFile{$FileName}++;
} elsif ( ($FileName) = ($ThisLine =~ /WRONG FILE OWNER \((.+)\)/) ) {
$WFO{$FileName}++;
} elsif ($ThisLine =~ /NULL security context for user, but SELinux in permissive mode/ ) {
$SELCONTErr{$ThisLine}++;
} else {
# Report any unmatched entries...
push @OtherList, "$ThisLine\n";
}
} elsif ( $ThisLine =~ /^RELOAD \(.+\)\s*$/ ) {
$Reloads++;
} elsif ( ($User) = ($ThisLine =~ /^(.*) \([^ ]+\) RELOAD \(.*\)$/ ) ) {
$UserReloads{$User}++;
} elsif ( $ThisLine =~ /.*?: Job (.*) started for user ([^ ]*)/) {
$Runs->{$2}->{$1}++;
} elsif (
($ThisLine =~ /.*?: Job (.*) (completed|terminated)/) or
($ThisLine =~ /.*?: updating configuration from/) or
($ThisLine =~ /.*?: Exiting with code 0/) or
($ThisLine =~ /.*?: SIGTERM signal received/)
) {
# Ignore
} elsif ( ($User) = ($ThisLine =~ /.*?: editing ([^ ]*)'s fcrontab.*/)) {
$Runs->{$User}->{'-- personal crontab edited'}++;
} elsif ( ($User) = ($ThisLine =~ /.*?: listing ([^ ]*)'s fcrontab.*/)) {
$Runs->{$User}->{'-- personal crontab listed'}++;
} elsif ( ($User) = ($ThisLine =~ /.*?: adding (?:new )?file ([^ ]+)/)) {
$Runs->{$User}->{'-- personal crontab updated'}++;
$UserReloads{$User}++;
} elsif ( $ThisLine =~ /.*?: fcron.* started/) {
$Startups++;
} elsif ( my ($offset) = ($ThisLine =~ /ntpdate\[\d+\]: adjust time server .* offset (.*) sec/)) {
$Ntpdate++;
if ( $ntpdateminoffset > $offset ) { $ntpdateminoffset = $offset; }
if ( $ntpdatemaxoffset < $offset ) { $ntpdatemaxoffset = $offset; }
} elsif ($ThisLine =~ /ntpdate\[\d+\]: no server suitable for synchronization found/) {
$ntpdatenosync++;
} elsif (($ThisLine =~ /incrond/) && ($ThisLine =~ /starting service/)) {
$INCRONDSS++;
} elsif (($ThisLine =~ /incrond/) && ($ThisLine =~ /stopping service/)) {
$INCRONDStS++;
} elsif (($ThisLine =~ /incrond/) && (($Table) = ($ThisLine =~ /system table (.*) created, loading/))) {
$INCRONDSTCr{$Table}++;
} elsif (($ThisLine =~ /incrond/) && (($User) = ($ThisLine =~ /table for user (.*) created, loading/))) {
$INCRONDUTCr{$User}++;
} elsif (($ThisLine =~ /incrond/) && (($Table) = ($ThisLine =~ /system table (.*) changed, reloading/))) {
$INCRONDSTCh{$Table}++;
} elsif (($ThisLine =~ /incrond/) && (($User) = ($ThisLine =~ /table for user (.*) changed, reloading/))) {
$INCRONDUTCh{$User}++;
} elsif (($ThisLine =~ /incrond/) && (($Table) = ($ThisLine =~ /system table (.*) destroyed, removing/))) {
$INCRONDSTDe{$Table}++;
} elsif (($ThisLine =~ /incrond/) && (($User) = ($ThisLine =~ /table for user (.*) destroyed, removing/))) {
$INCRONDUTDe{$User}++;
} elsif ( ($ThisLine =~ /incrond/) &&
( (($Error) = ($ThisLine =~ /(cannot create watch for (system table|user) .*: \(2\) No such file or directory)/)) ||
(($Error) = ($ThisLine =~ /(access denied on (.*) - events will be discarded silently)/)) ||
(($Error) = ($ThisLine =~ /(unhandled exception occurred)/)) ||
(($Error) = ($ThisLine =~ /(cannot exec process.*)/))
) ) {
$INCRONDErr{$Error}++;
} elsif ( ($ThisLine =~ /crond/) &&
(($Error) = ($ThisLine =~ /(failed to open PAM security session: (Permission denied|Module is unknown))/))
) {
$CRONDErr{$Error}++;
} elsif (( ($Error) = ($ThisLine =~ /ERROR: (failed to change SELinux context)/)) or
(($Error) = ($ThisLine =~ /ERROR:(Could not set exec context to .* for .*)/))) {
$SELCONTErr{$Error}++;
} elsif ($ThisLine =~ /FAILED to authorize user with PAM \(User not known to the underlying authentication module\)/) {
$PAMAUTHErr++;
} elsif ( ($FileName,$Cause) = ($ThisLine =~ /ERROR chdir failed \((.*)\): (.*)/) ) {
$CHDIRErr{"$FileName,$Cause"}++;
} elsif ($ThisLine =~ /ERROR \(failed to change user\)/) {
$CHUSERHErr++;
} else {
# Report any unmatched entries...
push @OtherList, "$ThisLine\n";
}
}
#######################################
if (%CrontabDeny) {
print "Attempt to use crontab by unauthorized users:\n";
foreach my $User (sort {$a cmp $b} keys %CrontabDeny) {
print " $User : $CrontabDeny{$User} Time(s)\n";
}
}
if (%InodeError) {
print "\nInode errors in crontab files of users:\n";
foreach my $User (sort {$a cmp $b} keys %InodeError) {
print " $User : $InodeError{$User} Time(s)\n";
}
}
if (keys %Errors) {
print "Errors when running cron:\n";
foreach my $User (sort {$a cmp $b} keys %Errors) {
print " User $User:\n";
foreach my $Reason (sort {$a cmp $b} keys %{$Errors{$User}}) {
print " $Reason: $Errors{$User}{$Reason} Time(s)\n";
}
}
}
if (%CRONDErr) {
printf "\n crond daemon errors \n";
for my $key (keys %CRONDErr) {
print " " . $key . ": " . $CRONDErr{$key} . " time(s)\n";
}
}
if (%INCRONDErr) {
printf "\n incrond daemon errors \n";
for my $key (keys %INCRONDErr) {
print " " . $key . ": " . $INCRONDErr{$key} . " time(s)\n";
}
}
if (%SELCONTErr) {
printf "\n SELinux context error \n";
for my $key (keys %SELCONTErr) {
print " " . $key . ": " . $SELCONTErr{$key} . " time(s)\n";
}
}
if ($PAMAUTHErr) {
printf "\nPAM authentication error: " . $PAMAUTHErr . " time(s)\n";
}
if (%CHDIRErr) {
printf "\nchdir command failed\n";
foreach (keys %CHDIRErr) {
my ($File,$Cause) = split ",";
print " for directory " . $File . " (" . $Cause . ")". ": " . $CHDIRErr{"$File,$Cause"} . " time(s)\n";
}
}
if ($CHUSERHErr) {
printf "\nUser change error: " . $CHUSERHErr . " time(s)\n";
}
if (keys %{$Runs} and ($Detail >= 5)) {
print "\n\nCommands Run:\n";
foreach my $i (sort {$a cmp $b} keys %{$Runs}) {
print " User $i:\n";
foreach my $j (sort {$a cmp $b} keys %{$Runs->{$i}}) {
print " $j: " . $Runs->{$i}->{$j} . " Time(s)\n";
}
}
}
if ($Orphans) {
print " ORPHAN entries: $Orphans\n";
}
if ($MailErrors > 0) {
print "\nMAIL sending errors $MailErrors Time(s)\n";
}
if (keys %BFMFile) {
print "\nFiles with bad mode:\n";
foreach my $i (keys %BFMFile) {
print " $i\n";
}
}
if (keys %WFO) {
foreach my $i (keys %WFO) {
printf "\n Wrong file owner (". $i ."): " . $WFO{$i}. " Time(s)\n";
}
}
if ($Ntpdate) {
print "\nNtpdate: adjusted $Ntpdate times\n";
print "\tMinimum offset $ntpdateminoffset\n";
print "\tMaximum offset $ntpdatemaxoffset\n";
}
if($ntpdatenosync) {
print "\nNtpDate could not sync: $ntpdatenosync times\n";
}
if ($Detail >= 10) {
if (keys %UserReloads) {
print " User crontabs reloaded:\n";
foreach my $i (keys %UserReloads) {
print " $i $UserReloads{$i} Time(s)\n";
}
}
if ($Startups > 0) {
print "\nCRON Started $Startups Time(s)\n";
}
if ($Shutdowns > 0) {
print "\nCRON Shutdown $Shutdowns Time(s)\n";
}
if ($Reloads > 0) {
print "\nCRON Reloaded system crontab $Reloads Time(s)\n";
}
if ($INCRONDSS) {
printf "\n service incrond started " . $INCRONDSS . ": time(s)\n";
}
if ($INCRONDStS) {
printf "\n service incrond stoped " . $INCRONDStS . ": time(s)\n";
}
if ((%INCRONDSTCr) || (%INCRONDUTCr)) {
printf "\n created tables \n";
for my $key (keys %INCRONDSTCr) {
print " system table " . $key . " created " . $INCRONDSTCr{$key} . ": time(s)\n";
}
for my $key (keys %INCRONDUTCr) {
print " table for user " . $key . " created " . $INCRONDUTCr{$key}. ": time(s)\n";
}
}
if ((%INCRONDSTCh) || (%INCRONDUTCh)) {
printf "\n changes of tables \n";
for my $key (keys %INCRONDSTCh) {
print " system table " . $key . " changed " . $INCRONDSTCh{$key} . ": time(s)\n";
}
for my $key (keys %INCRONDUTCh) {
print " table for user " . $key . "changed " . $INCRONDUTCh{$key} . ": time(s)\n";
}
}
if ((%INCRONDSTDe) || (%INCRONDUTDe)) {
printf "\n destroyed tables \n";
for my $key (keys %INCRONDSTDe) {
print " system table " . $key . " destroyed " . $INCRONDSTDe{$key} . ": time(s)\n";
}
for my $key (keys %INCRONDUTDe) {
print " table for user ". $key ." destroyed " .$INCRONDUTDe{$key} . ": time(s)\n";
}
}
}
if ($#OtherList >= 0) {
print "\n**Unmatched Entries**\n";
print @OtherList;
}
exit(0);
# vi: shiftwidth=3 tabstop=3 syntax=perl et
# Local Variables:
# mode: perl
# perl-indent-level: 3
# indent-tabs-mode: nil
# End:
|