/usr/share/perl5/epylog.pm is in epylog 1.0.8-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 | #!/usr/bin/perl -w
# epylog.pm
# ----------------
#
# Copyright (C) 2002 by Duke University
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
# 02111-1307, USA.
#
# $Id$
#
# @Author Konstantin Ryabitsev <icon@linux.duke.edu>
# Michael Stenner <mstenner@phy.duke.edu>
# @version $Date$
#
package epylog;
##
# Strict enforces good coding practices by making you observe the
# variable scope.
#
use strict;
use Socket;
##
# Create the object and bless it.
#
# @return the reference to the epylog object.
#
sub new {
my $this = {};
$this->{known_uids} = undef;
$this->{known_hosts} = undef;
$this->{logfilter} = undef;
$this->{filtsize} = undef;
$this->{report} = undef;
$this->{logcat} = undef;
$this->{modname} = undef;
$this->{headerline} = undef;
$this->{loglevel} = undef;
$this->{logeof} = undef;
bless $this;
return $this;
}
##
# Initialize our brand-new epylog object.
#
# @param $1 The name of the module using this object. Used to generate
# log entries.
# @return void
#
sub init {
my $this = shift;
my $modname = shift;
my $headerline = "#\n# %s\n#";
$this->{known_uids} = {};
$this->{known_hosts} = {};
$this->{report} = [];
$this->{filtsize} = 0;
##
# Open the logfile, or STDIN if LOGCAT is undefined.
#
my $logcat = $this->option('LOGCAT', undef);
if (defined($logcat)) {
open(LOGCAT, $logcat) or die "cannot open input file $logcat";
} else {
*LOGCAT = *STDIN;
}
$this->{logcat} = *LOGCAT;
if (!eof(LOGCAT)){
$this->{logeof} = 0;
} else {
$this->{logeof} = 1;
}
##
# Open the file for processed strings, or write to STDERR if
# LOGFILTER is not defined.
#
my $logfilter = $this->option('LOGFILTER', undef);
if (defined($logfilter)){
open(LOGFILTER, ">$logfilter") or
$this->mlog(0, "cannot open filtered strings file $logfilter");
} else {
*LOGFILTER = *STDERR;
}
$this->{logfilter} = *LOGFILTER;
$this->{modname} = $modname;
$this->{headerline} = $headerline;
$this->{loglevel} = 0;
##
# By default, the loglevel is set to 1. QUIET sets it to 0.
# DEBUG overrides QUIET and sets it to the value of DEBUG.
# module_DEBUG (where module is replaced by the upper-case module
# name) overrides DEBUG and sets loglevel to the value of
# module_DEBUG.
my $debug = $this->option('DEBUG', undef);
my $md = uc($this->{modname}) . '_DEBUG';
my $module_debug = $this->option($md, undef);
if (defined($debug) or defined($module_debug)) {
if (defined($debug)) {
$this->{loglevel} = $debug;
}
if (defined($module_debug)) {
$this->{loglevel} = $module_debug;
}
} else {
my $quiet = $this->option('QUIET', undef);
if (!defined($quiet)){
$this->{loglevel} = 1;
}
}
}
##
# This sub takes a uid and looks up the user name.
#
# @param $1 the uid to look up.
# @return the username.
#
sub getuname {
my $this = shift;
my $uid = shift;
if (!defined($uid)){
return(undef);
}
if (exists($this->{known_uids}{$uid})){
return($this->{known_uids}{$uid});
} else {
(my $uname) = getpwuid($uid);
if (!defined($uname)){
$uname = "uid=$uid";
}
$this->{known_uids}{$uid} = $uname;
return $uname;
}
}
##
# This sub tries to resolve hostnames if possible. If not, it returns
# the ip address back. The %known_hosts hash is used to cache the values
# for optimization.
#
# @param $1 The IP of a host to lookup.
# @return The FQDN, or the IP address if lookup failed.
#
sub gethost {
my $this = shift;
my $host = shift;
if (exists($this->{known_hosts}{$host})) {
return($this->{known_hosts}{$host});
} else {
##
# hash resolved names. This speeds things up because we often get
# many hits from the same host.
#
my @host_a = gethostbyaddr(pack('CCCC', split(/\./, $host)), AF_INET);
my $hostname = defined($host_a[0]) ? $host_a[0] : $host;
$this->{known_hosts}{$host} = $hostname;
return $hostname;
}
}
##
# Since all syslog lines start uniformly, use this sub to
# grab the name of the system from the log line.
#
# @param $1 The log line.
# @return The name of the system this log line refers to.
#
sub getsystem {
my $this = shift;
my $line = shift;
(my $system) = $line =~ m/.{15}\s(\S*)\s.*/;
##
# syslog-ng can report hosts in a more complicated way :)
#
if ($system =~ m{[@/](\S+)}) { $system = $1; }
return($system);
}
##
# A wrapper to process the options passed in by environment variables.
# If the referred ENV variable is unset, then return the default value.
# This behavior is useful for debugging the module.
#
# @param $1 The name of the ENV variable to grab.
# @param $2 The default value to return if the ENV variable is unset.
# @return The value of the environment variable, or the default value
# if the variable is unset.
#
sub option {
my $this = shift;
my $op = shift;
my $default = shift;
return(exists($ENV{$op}) ? $ENV{$op} : $default);
}
##
# Fetch the next available line from the logfile (LOGCAT). If the end of
# file is reached, it will set $this->{logeof} to 1.
#
# @return the next line available.
#
sub nextline {
my $this = shift;
my $logcat = $this->{logcat};
my $nextline = <$logcat>;
chomp($nextline);
if (eof($logcat)){
$this->{logeof} = 1;
close($logcat);
}
return $nextline;
}
##
# This is used to test if we are at the end of the logfile.
#
# @return 1 if the end of file has been reached.
#
sub islogeof {
my $this = shift;
return $this->{logeof};
}
##
# Add a string or an array of strings to the final module report.
#
# @param $1 an string or array of strings.
#
sub pushrep {
my $this = shift;
push(@{$this->{report}}, @_);
}
##
# Adds a syslog line or an array of syslog lines to the filtered strings
# file.
#
# @param $1 a syslog line or an array of syslog lines.
#
sub pushfilt {
my $this = shift;
my $logfilter = $this->{logfilter};
my $filtline = join("\n", @_);
print $logfilter "$filtline\n";
$this->{filtsize}++;
}
##
# Produce a debugging output.
#
# @param $1 the level
# @param $2 a string or array of strings to output.
#
sub mlog {
my $this = shift;
my $level = shift;
my $modname = $this->{modname};
if ($this->{loglevel} >= $level){
print STDOUT "$modname: ", @_, "\n";
}
}
##
# How many lines are currently in the filtered strings file?
#
# @return the number of syslog lines in LOGFILTER.
#
sub filtsize {
my $this = shift;
return $this->{filtsize};
}
##
# How many lines are currently in the report?
#
# @return the number of lines in LOGREPORT.
#
sub repsize {
my $this = shift;
return $#{$this->{report}};
}
##
# Make a pretty-looking and uniform report header.
#
# @param $1 a string with some descriptive title
# @return a string with a formatted report title
#
sub mkrephdr {
my $this = shift;
my $msg = shift;
my $hdr = sprintf($this->{headerline}, $msg);
return $hdr;
}
##
# Closes any open filehandles and writes the report into LOGREPORT.
# This must be called at the end of your module.
#
sub finalize {
my $this = shift;
my $title = shift;
##
# Open output file, $LOGREPORT or write to STDOUT if LOGREPORT
# isn't defined.
#
my $logreport = $this->option('LOGREPORT', undef);
if (defined($logreport)) {
open(LOGREPORT, ">$logreport") or
$this->mlog(0, "cannot open output file $logreport");
} else {
*LOGREPORT = *STDOUT;
}
if ($#{$this->{report}} >= 0){
print LOGREPORT join("\n", @{$this->{report}}) . "\n";
}
if ($this->{logfilter} ne *STDERR){
close($this->{logfilter});
}
if (*LOGREPORT ne *STDOUT){
close(LOGREPORT);
}
}
1;
__END__
=head1 NAME
epylog - Perl5 module for writing perl modules for epylog.
=head1 SYNOPSIS
use epylog;
# create a new epylog object
my $du = new epylog;
# initialize the object
$du->init('modulename');
# get a username from a userid
$du->getuname(500);
# get a hostname from an IP address
$du->gethost('127.0.0.1');
# find the system name in a standard syslog line
$du->getsystem($syslogline);
# get the value of an environment variable
# first parameter is the name of the variable, second one is
# the default value to return if the variable is undefined.
$du->option('TMPDIR', '/tmp');
# return the next available syslog line from the logs (LOGCAT)
$du->nextline();
# check if the logfile is EOF'd. Returns 0 if not yet.
$du->islogeof();
# add a string or an array of strings to the report (LOGREPORT)
$du->pushrep('Report line');
# add a syslog line entry to the list of analyzed and filtered
# lines (LOGFILTER)
$du->pushfilt($syslog_line);
# intelligently output some debug information.
# first parameter is level, second parameter is the string to output.
# level 0 -- critical errors, always output
# level 1 -- standard epylog execution, without "--quiet"
# level 2> -- additional levels of verbosity.
$du->mlog(1, 'Processing data');
# return how many lines were added to the filter file (LOGFILTER)
$du->filtsize();
# return how many lines were added to the report file (LOGREPORT)
$du->repsize();
# make a pretty report header.
$du->mkrephdr('NOTICED REBOOTS');
# call this at the end of your module! It closes the filehandles and
# writes out the report.
$du->finalize();
=head1 AUTHORS
Konstantin Ryabitsev <icon@linux.duke.edu>
Michael Stenner <mstenner@phy.duke.edu>
Duke University Physics
=head1 REVISION
$Revision$
=head1 SEE ALSO
epylog(8), epylog_modules(5)
=cut
|