/usr/share/perl5/Paranoid/Log/File.pm is in libparanoid-perl 0.34-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 | # Paranoid::Log::File -- File Log support for paranoid programs
#
# (c) 2005, Arthur Corliss <corliss@digitalmages.com>
#
# $Id: File.pm,v 0.83 2010/04/15 23:23:28 acorliss Exp $
#
# This software is licensed under the same terms as Perl, itself.
# Please see http://dev.perl.org/licenses/ for more information.
#
#####################################################################
#####################################################################
#
# Environment definitions
#
#####################################################################
package Paranoid::Log::File;
use 5.006;
use strict;
use warnings;
use vars qw($VERSION);
use Paranoid::Debug qw(:all);
use Paranoid::Filesystem;
use Paranoid::Input;
use Carp;
use Fcntl qw(:flock :seek O_WRONLY O_CREAT O_APPEND);
($VERSION) = ( q$Revision: 0.83 $ =~ /(\d+(?:\.(\d+))+)/sm );
#####################################################################
#
# Module code follows
#
#####################################################################
{
my %fhandles;
my %fpids;
sub _delHandle {
# Purpose: closes any opened filehandles and cleans up the internal
# data structures
# Returns: Result of close(), or True (1) if no such file opened
# Usage: $rv = _delHandle($filename);
my $filename = shift;
my $rv = 1;
if ( exists $fhandles{$filename} && $fpids{$filename} == $$ ) {
$rv = close $fhandles{$filename};
delete $fhandles{$filename};
delete $fpids{$filename};
}
return $rv;
}
sub _getHandle {
# Purpose: Retrieves a filehandle to the requested file. It will
# automatically create the file if necessary. It also
# tracks what process opened the filehandle so a new one is
# opened after a fork call.
# Returns: Filehandle
# Usage: $fh = _getHandle($filename);
my $filename = shift;
my ( $f, $fd, $rv );
# Is there a filehandle cached?
if ( exists $fhandles{$filename} ) {
# Yes, so was it opened by us?
if ( $fpids{$filename} == $$ ) {
# Yup, return the filehandle
$rv = $fhandles{$filename};
} else {
# Nope, let's delete it and reopen it
delete $fhandles{$filename};
$rv = _getHandle($filename);
}
} else {
# Nope, let's open it up if we can detaint the filename
if ( detaint( $filename, 'filename', \$f ) ) {
# Try to open the file
if ( sysopen $fd, $f, O_WRONLY | O_APPEND | O_CREAT ) {
# Done, now cache and return the filehandle
$fhandles{$f} = $fd;
$fpids{$f} = $$;
$rv = $fd;
} else {
# Failed to do so, log the error
Paranoid::ERROR =
pdebug( "failed to open the file ($filename): $!",
PDLEVEL1 );
$rv = undef;
}
} else {
Paranoid::ERROR =
pdebug( "failed to detaint filename: $filename",
PDLEVEL1 );
}
}
return $rv;
}
sub init () {
# Purpose: Closes all opened filehandles by this process
# Returns: True (1)
# Usage: init();
foreach ( keys %fhandles ) { _delHandle($_) }
return 1;
}
}
sub remove ($) {
# Purpose: Closes the requested file
# Returns: Return value of _delHandle();
# Usage: $rv = remove($filename);
my $filename = shift;
return _delHandle($filename);
}
sub log ($$$$$$$$) {
# Purpose: Logs the passed message to the named file
# Returns: Return value of print()
# Usage: log($msgtime, $severity, $message, $name, $facility, $level,
# $scope, $filename);
my $msgtime = shift;
my $severity = shift;
my $message = shift;
my $name = shift;
my $facility = shift;
my $level = shift;
my $scope = shift;
my $filename = shift;
my $rv = 0;
my $fh;
# Validate arguments
croak 'Mandatory third argument must be a valid message'
unless defined $message;
croak 'Mandatory eighth argument must be a valid filename'
unless defined $filename;
pdebug(
"entering w/($msgtime)($severity)($message)($name)"
. "($facility)($level)($scope)($filename)",
PDLEVEL1
);
pIn();
# Message time defaults to current time
$msgtime = time unless defined $msgtime;
# Get the filehandle
if ( defined( $fh = _getHandle($filename) ) ) {
# Lock the filehandle
flock $fh, LOCK_EX;
# Move to the end of the file and print the message
seek $fh, 0, SEEK_CUR;
seek $fh, 0, SEEK_END;
$rv = print $fh "$message\n";
Paranoid::ERROR =
pdebug( "failed to write to $filename: $!", PDLEVEL1 )
unless $rv;
# Unlock & close the file
flock $fh, LOCK_UN;
}
pOut();
pdebug( "leaving w/rv: $rv", PDLEVEL1 );
return $rv;
}
sub dump ($) {
# Purpose: Exists purely for compliance.
# Returns: True (1)
# Usage: init();
return ();
}
1;
__END__
=head1 NAME
Paranoid::Log::File - File Logging Functions
=head1 VERSION
$Id: File.pm,v 0.83 2010/04/15 23:23:28 acorliss Exp $
=head1 SYNOPSIS
use Paranoid::Log;
enableFacility('events', 'file', 'debug', '+', $filename);
=head1 DESCRIPTION
This module logs messages to the log files, and is safe for use with forked
children logging to the same files. Each child will open their own
filehandles and use advisory locking for writes.
This module should not be used directly, B<Paranoid::Log> should be your
exclusive interface for logging.
=head1 SUBROUTINES/METHODS
B<NOTE>: Given that this module is not intended to be used directly nothing
is exported.
=head2 init
=head2 log
=head2 remove
=head2 dump
=head1 DEPENDENCIES
=over
=item o
L<Fcntl>
=item o
L<Paranoid::Debug>
=item o
L<Paranoid::Filesystem>
=item o
L<Paranoid::Input>
=back
=head1 SEE ALSO
=over
=item o
L<Paranoid::Log>
=back
=head1 BUGS AND LIMITATIONS
This isn't a high performance module when dealing with a high logging rate
with high concurrency. This is due to the advisory locking requirement and
the seeks to the end of the file with every message. This facility is
intended as a kind of lowest-common demoninator for programs that need some
kind of logging capability.
=head1 AUTHOR
Arthur Corliss (corliss@digitalmages.com)
=head1 LICENSE AND COPYRIGHT
This software is licensed under the same terms as Perl, itself.
Please see http://dev.perl.org/licenses/ for more information.
(c) 2005, Arthur Corliss (corliss@digitalmages.com)
|