Newer
Older
#!/usr/bin/perl -T
#
# vlogger - smarter logging for apache
# steve j. kondik <shade@chemlab.org>
#
# this script will take piped logs in STDIN, break off the first component
# and log the line into the proper directory under $LOGDIR. it will roll the
# logs over at midnight on-the-fly and maintain a symlink to the most recent log.
#
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Library General Public
# License as published by the Free Software Foundation; either
# version 2 of the License, or (at your option) any later version.
#
# This library 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
# Library General Public License for more details.
#
#
# CHANGELOG:
# 0.1 initial release
# 0.2 cleanups, added -e option for errorlogs, added strict stuff
# 0.3 cleanups, bugfixes, docs, added -r size rotation option
# 0.4 added dbi usage tracking option, code cleanups from cz@digitalfreaks.org
# 1.0 small bugfixes, first production release
# 1.1 bugfix release
# 1.2 support for mod_logio
# 1.3 various contributed bugfixes
jwarnier
committed
# 1.3ISPconfig1 This local version has been modified for ISPConfig. Namely: "Added better error handling to vlogger script in case the MySQL database connection is not available."
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
#
#
# TODO:
# configurable file compression using Compress::Zlib, maybe.
#
package vlogger;
$ENV{PATH} = "/bin:/usr/bin";
my $VERSION = "1.3";
=head1 NAME
vlogger - flexible log rotation and usage tracking in perl
=head1 SYNOPSIS
vlogger [OPTIONS]... [LOGDIR]
=head1 DESCRIPTION
Vlogger is designed to make webserver log rotation simple and easy to manage.
It deals with VirtualHost logs automatically, so only one directive is required
to manage all hosts on a webserver. Vlogger takes piped output from Apache or
another webserver, splits off the first field, and writes the logs to logfiles
in subdirectories. It uses a filehandle cache to avoid resource limitations.
It will start a new logfile at the beginning of a new day, and optionally start
new files when a certain filesize is reached. It can maintain a symlink to
the most recent log for easy access. Optionally, host parsing can be disabled
for use in ErrorLog directives.
To use vlogger, you need to add a "%v" to the first part of your LogFormat:
LogFormat "%v %h %l %u %t \"%r\" %>s %b \"%{Referer}i\" \"%{User-Agent}i\"" combined
Then call it from a customlog:
CustomLog "| /usr/local/sbin/vlogger -s access.log -u www-logs -g www-logs /var/log/apache" combined
=head1 OPTIONS
Options are given in short format on the command line.
-a
Do not autoflush files. This may improve performance but may break logfile
analyzers that depend on full entries in the logs.
-e
ErrorLog mode. In this mode, the host parsing is disabled, and the file is
written out using the template under the specified LOGDIR.
-n
Disables rotation. This option disables rotation altogether.
-f MAXFILES
Maximum number of filehandles to keep open. Defaults to 100. Setting this
value too high may result in the system running out of file descriptors.
Setting it too low may affect performance.
-u UID
Change user to UID when running as root.
-g GID
Change group to GID when running as root.
-t TEMPLATE
Filename template using Date::Format codes. Default is "%m%d%Y-access.log",
or "%m%d%Y-error.log". When using the -r option, the default becomes
"%m%d%Y-%T-access.log" or "%m%d%Y-%T-error.log".
-s SYMLINK
Specifies the name of a symlink to the current file.
-r SIZE
Rotate files when they reach SIZE. SIZE is given in bytes.
-d CONFIG
Use the DBI usage tracker.
-h
Displays help.
-v
Prints version information.
=head1 DBI USAGE TRACKER
Vlogger can automatically keep track of per-virtualhost usage statistics in a
database. DBI and the relevant drivers (eg. DBD::mysql) needs to be installed for
this to work. Create a table in your database to hold the data. A "mysql_create.sql"
script is provided for using this feature with MySQL. Configure the dsn, user, pass
and dump values in the vlogger-dbi.conf file. The "dump" parameter controls how often
vlogger will dump its stats into the database (the default is 30 seconds). Copy this
file to somewhere convienient on your filesystem (like /etc/apache/vlogger-dbi.conf) and
start vlogger with "-d /etc/apache/vlogger-dbi.conf". You might want to use this feature
to easily bill customers on a daily/weekly/monthly basis for bandwidth usage.
=head1 SEE ALSO
cronolog(1), httplog(1)
=head1 BUGS
None, yet.
=head1 AUTHORS
Steve J. Kondik <shade@chemlab.org>
WWW: http://n0rp.chemlab.org/vlogger
=cut
# a couple modules we need
use strict;
no strict "refs";
use warnings;
use sigtrap qw(handler exitall HUP USR1 TERM INT PIPE);
use Date::Format;
use Getopt::Std;
use IO::Handle;
# get command line options
our %OPTS;
getopts( 'f:t:s:hu:g:aeivr:d:', \%OPTS );
# print out version
if ( $OPTS{'v'} ) {
print "VLogger $VERSION (apache logfile parser)\n";
print "Written by Steve J. Kondik <shade\@chemlab.org>\n\n";
print "This is free software; see the source for copying conditions. There is NO\n";
print "warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.\n";
exit;
}
# print help
if ( $OPTS{'h'} || !$ARGV[0] ) {
usage();
exit;
}
# log directory
my $LOGDIR;
if ( $ARGV[0] ) {
if ( !-d $ARGV[0] || -l $ARGV[0]) {
"[vlogger] target directory $ARGV[0] does not exist or is a symlink - exiting.\n\n";
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
exit;
}
$LOGDIR = $ARGV[0];
}
$LOGDIR =~ /(.*)/;
$LOGDIR = $1;
# change uid/gid if requested (and running as root)
if ( $> == "0" ) {
if ( $OPTS{'g'} ) {
my $guid = getgrnam( $OPTS{'g'} );
if ( !defined $guid || $guid == 0 ) {
print STDERR
"[vlogger] cannot run as root or nonexistant group.\n\n";
exit;
}
$) = $guid;
$( = $guid;
if ( $) != $guid and $) != ( $guid - 2**32 ) ) {
die "fatal: setgid to gid $guid failed\n";
}
}
if ( $OPTS{'u'} ) {
my $uuid = getpwnam( $OPTS{'u'} );
if ( !defined $uuid || $uuid == 0 ) {
print STDERR
"[vlogger] cannot run as root or nonexistant user.\n\n";
exit;
}
$> = $uuid;
$< = $uuid;
if ( $> != $uuid and $> != ( $uuid - 2**32 ) ) {
die "fatal: setuid to uid $uuid failed\n";
}
}
}
# set up dbi stuffs
my $DBI_DSN;
my $DBI_USER;
my $DBI_PASS;
my $DBI_DUMP;
if ( $OPTS{'d'} ) {
if ( $OPTS{'e'} ) {
print "-d not valid with -e. exiting.\n";
exit;
}
eval "use DBI";
open CONF, $OPTS{'d'};
while (<CONF>) {
chomp;
my @conf = split (/\s/);
if ( $conf[0] eq "dsn" ) {
$DBI_DSN = $conf[1];
}
elsif ( $conf[0] eq "user" ) {
$DBI_USER = $conf[1];
}
elsif ( $conf[0] eq "pass" ) {
$DBI_PASS = $conf[1];
}
elsif ( $conf[0] eq "dump" ) {
$DBI_DUMP = $conf[1];
}
}
close CONF;
unless ( $DBI_DSN && $DBI_USER && $DBI_PASS && $DBI_DUMP ) {
print "All values for DBI configuration are not properly defined.\n\n";
exit;
}
# test the connection
eval {
my $dbh = DBI->connect( $DBI_DSN, $DBI_USER, $DBI_PASS )
or die "DBI Error: $!";
$dbh->disconnect;
};
if ($@) {
print "MySQL Connection problem\n";
}
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
429
430
431
# SIGALRM dumps the tracker hash
$SIG{ALRM} = \&dump_tracker;
alarm $DBI_DUMP;
}
# max files to keep open
my $MAXFILES;
if ( $OPTS{'f'} ) {
$MAXFILES = $OPTS{'f'};
}
else {
$MAXFILES = "100";
}
# filesize rotation
my $MAXSIZE;
if ( $OPTS{'r'} ) {
$MAXSIZE = $OPTS{'r'};
}
# filename template
my $TEMPLATE;
if ( $OPTS{'t'} ) {
$TEMPLATE = $OPTS{'t'};
$TEMPLATE =~ /(.*)/;
$TEMPLATE = $1;
}
elsif ( $OPTS{'e'} ) {
if ( $OPTS{'r'} ) {
$TEMPLATE = "%m%d%Y-%T-error.log";
}
else {
$TEMPLATE = "%m%d%Y-error.log";
}
}
else {
if ( $OPTS{'r'} ) {
$TEMPLATE = "%m%d%Y-%T-access.log";
}
else {
$TEMPLATE = "%m%d%Y-access.log";
}
}
# symlink
if ( $OPTS{'s'} ) {
$OPTS{'s'} =~ /(.*)/;
$OPTS{'s'} = $1;
}
# chroot to the logdir
chdir($LOGDIR);
#chroot("."); we better do not chroot as DBI requires to load a module on the fly -> error!
my %logs = ();
my %tracker = ();
my $LASTDUMP = time();
# pick a mode
if ( $OPTS{'e'} ) {
$0 = "vlogger (error log)";
# errorlog mode
open ELOG, ">>" . time2str( $TEMPLATE, time() )
or die ( "can't open $LOGDIR/" . time2str( $TEMPLATE, time() ) );
unless ( $OPTS{'a'} ) {
ELOG->autoflush(1);
}
if ( $OPTS{'s'} ) {
if ( -l $OPTS{'s'} ) {
unlink( $OPTS{'s'} );
}
symlink( time2str( $TEMPLATE, time() ), $OPTS{'s'} );
}
my $LASTWRITE = time();
while ( my $log_line = <STDIN> ) {
unless ( $OPTS{'n'} ) {
if ( time2str( "%Y%m%d", time() ) >
time2str( "%Y%m%d", $LASTWRITE ) )
{
# open a new file
close ELOG;
open_errorlog();
}
elsif ( $OPTS{'r'} ) {
# check the size
my @filesize = ELOG->stat;
print $filesize[7] . "\n";
if ( $filesize[7] > $MAXSIZE ) {
close ELOG;
open_errorlog();
}
}
$LASTWRITE = time();
}
# we dont need to do any other parsing at all, so write the line.
print ELOG $log_line;
}
}
else {
# accesslog mode
$0 = "vlogger (access log)";
while ( my $log_line = <STDIN> ) {
# parse out the first word (the vhost)
my @this_line = split ( /\s/, $log_line );
my ($vhost) = $this_line[0];
my $reqsize = $this_line[10];
$vhost = lc($vhost) || "default";
if ( $vhost =~ m#[/\\]# ) { $vhost = "default" }
$vhost =~ /(.*)/o;
$vhost = $1;
$vhost = 'default' unless $vhost;
if ( $OPTS{'i'} ) {
$reqsize = $this_line[1] + $this_line[2];
}
# if we're writing to a log, and it rolls to a new day, close all files.
unless ( $OPTS{'n'} ) {
if ( $logs{$vhost}
&& ( time2str( "%Y%m%d", time() ) >
time2str( "%Y%m%d", $logs{$vhost} ) ) )
{
foreach my $key ( keys %logs ) {
close $key;
}
%logs = ();
}
elsif ( $OPTS{'r'} && $logs{$vhost} ) {
# check the size
my @filesize = $vhost->stat;
if ( $filesize[7] > $MAXSIZE ) {
close $vhost;
delete( $logs{$vhost} );
}
}
}
# open a new log
if ( !$logs{$vhost} ) {
# check how many files we have open, close the oldest one
if ( keys(%logs) > $MAXFILES ) {
my ( $key, $value ) =
sort { $logs{$a} <=> $logs{$b} } ( keys(%logs) );
close $key;
delete( $logs{$key} );
}
# check if directory is there
unless ( -d "${vhost}" ) {
mkdir("${vhost}");
}
# Dont log to symlinks
if( -l "${vhost}/".time2str( $TEMPLATE, time() ) ) {
die("Log target is a symlink: $LOGDIR/${vhost}/".time2str( $TEMPLATE, time() ));
}
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
# open the file using the template
open $vhost, ">>${vhost}/" . time2str( $TEMPLATE, time() )
or die ( "can't open $LOGDIR/${vhost}/"
. time2str( $TEMPLATE, time() ) );
# autoflush the handle unless -a
if ( !$OPTS{'a'} ) {
$vhost->autoflush(1);
}
# make a symlink if -s
if ( $OPTS{'s'} ) {
chdir("${vhost}");
if ( -l $OPTS{'s'} ) {
unlink( $OPTS{'s'} );
}
symlink( time2str( $TEMPLATE, time() ), $OPTS{'s'} );
chdir("..");
}
}
# update the timestamp and write the line
$logs{$vhost} = time();
if ($OPTS{'i'}) {
$log_line =~ s/^\S*\s+\S*\s+\S*\s+//o;
}
else {
$log_line =~ s/^\S*\s+//o;
}
if ( $reqsize =~ m/^\d*$/ && $reqsize > 0 ) {
$tracker{$vhost} += $reqsize;
}
print $vhost $log_line;
}
}
# sub to close all files
sub closeall {
if ( $OPTS{'e'} ) {
close ELOG;
}
else {
foreach my $key ( keys %logs ) {
close $key;
}
%logs = ();
if ( $OPTS{'d'} ) {
vlogger::dump_tracker();
}
}
}
sub exitall {
vlogger::closeall;
exit;
}
# sub to open new errorlog
sub open_errorlog {
open ELOG, ">>" . time2str( $TEMPLATE, time() )
or die ( "can't open $LOGDIR/" . time2str( $TEMPLATE, time() ) );
if ( $OPTS{'s'} ) {
if ( -l $OPTS{'s'} ) {
unlink( $OPTS{'s'} );
}
symlink( time2str( $TEMPLATE, time() ), $OPTS{'s'} );
}
# autoflush it unless -a
unless ( $OPTS{'a'} ) {
ELOG->autoflush(1);
}
}
# sub to update the database with the tracker data
sub dump_tracker {
eval {
if ( keys(%tracker) > 0 ) {
my $dbh = DBI->connect( $DBI_DSN, $DBI_USER, $DBI_PASS )
or warn "DBI Error: $!";
foreach my $key ( keys(%tracker) ) {
my $ts = time2str( "%Y-%m-%d", time() );
my $sth =
$dbh->prepare( "select * from web_traffic where hostname='" . $key
. "' and traffic_date='" . $ts . "'" );
$sth->execute;
if ( $sth->rows ) {
my $query =
"update web_traffic set traffic_bytes=traffic_bytes+"
. $tracker{$key}
. " where hostname='" . $key
. "' and traffic_date='" . $ts . "'";
$dbh->do($query);
}
else {
my $query = "insert into web_traffic (hostname, traffic_date, traffic_bytes) values ('$key', '$ts', '$tracker{$key}')";
$dbh->do($query);
}
}
$dbh->disconnect;
%tracker = ();
}
alarm $DBI_DUMP;
};
if ($@) {
print "Unable to store vlogger data in database\n";
}
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
}
# print usage info
sub usage {
print "Usage: vlogger [OPTIONS]... [LOGDIR]\n";
print "Handles a piped logfile from a webserver, splitting it into it's\n";
print "host components, and rotates the files daily.\n\n";
print " -a do not autoflush files\n";
print " -e errorlog mode\n";
print " -n don't rotate files\n";
print " -f MAXFILES max number of files to keep open\n";
print " -u UID uid to switch to when running as root\n";
print " -g GID gid to switch to when running as root\n";
print " -t TEMPLATE filename template (see perldoc Date::Format)\n";
print " -s SYMLINK maintain a symlink to most recent file\n";
print " -r SIZE rotate when file reaches SIZE\n";
print " -d CONFIG use DBI usage tracker (see perldoc vlogger)\n";
print " -i extract mod_logio instead of filesize\n";
print " -h display this help\n";
print " -v output version information\n\n";
print "TEMPLATE may be a filename with Date::Format codes. The default template\n";
print "is %m%d%Y-access.log. SYMLINK is the name of a file that will be linked to\n";
print "the most recent file inside the log directory. The default is access.log.\n";
print "MAXFILES is the maximum number of filehandles to cache. This defaults to 100.\n";
print "When running with -a, performance may improve, but this might confuse some\n";
print "log analysis software that expects complete log entries at all times.\n";
print "Errorlog mode is used when running with an Apache errorlog. In this mode,\n";
print "virtualhost parsing is disabled, and a single file is written in LOGDIR\n";
print "using the TEMPLATE (%m%d%Y-error.log is default for -e). When running with\n";
print "-r, the template becomes %m%d%Y-%T-xxx.log. SIZE is given in bytes.\n\n";
print "Report bugs to <shade\@chemlab.org>.\n";
}