This file is indexed.

/usr/share/perl5/Apache/DBILogger.pm is in libapache-dbilogger-perl 0.93-12.

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
package Apache::DBILogger;

require 5.004;
use strict;
# use Apache::Constants qw( :common );
# In order to make this module compatible with either Apache 1.3.x or 2.2.x,
# for which mod_perl has slightly different APIs, this BEGIN block serves the
# same purpose as the previous 'use Apache::Constants qw(:common)' statement.
my $modperl2;
BEGIN {
    eval "use Apache::Constants qw(:common);";
    if ($@) {
        eval "use Apache2::Const qw(:common);
              use APR::Pool;
              use APR::Table;
              use Apache2::Connection;
              use APR::SockAddr;";
	$modperl2 = 1;
	if ($@) {
            die "Not under Apache, not under Apache2?\n$@";
        }
    }
}
use DBI;
use Date::Format;

$Apache::DBILogger::revision = sprintf("%d.%02d", q$Revision: 1.20 $ =~ /(\d+)\.(\d+)/o);
	$Apache::DBILogger::VERSION = "0.93";

sub reconnect($$) {
	my ($dbhref, $r) = @_;

	$$dbhref->disconnect;

	$r->log_error("Reconnecting to DBI server");

	$$dbhref = DBI->connect($r->dir_config("DBILogger_data_source"), $r->dir_config("DBILogger_username"), $r->dir_config("DBILogger_password"));
  
  	unless ($$dbhref) { 
  		$r->log_error("Apache::DBILogger could not connect to ".$r->dir_config("DBILogger_data_source")." - ".$DBI::errstr);
  		return DECLINED;
  	}
}

sub logger {
        my $r = _get_req(shift);

	my $s = $r->server;
	my $c = $r->connection;

	my %data = _get_data($r);

	my $dbh = DBI->connect($r->dir_config("DBILogger_data_source"), $r->dir_config("DBILogger_username"), $r->dir_config("DBILogger_password"));
  
  	unless ($dbh) { 
  		$r->log_error("Apache::DBILogger could not connect to ".$r->dir_config("DBILogger_data_source")." - ".$DBI::errstr);
  		return DECLINED;
  	}
  	
	my $table = $r->dir_config("DBILogger_table") || 'requests';

        my @columns = map($dbh->quote_identifier($_), keys   %data);
        my @values  = map($dbh->quote($_),            values %data);

	my $statement = "INSERT INTO $table (" . join(', ', @columns) . ") VALUES (" . join(', ', @values ) . ")";

	my $tries = 0;
	
  	TRYAGAIN: my $sth = $dbh->prepare($statement);
  	
  	unless ($sth) {
  		$r->log_error("Apache::DBILogger could not prepare sql query ($statement): $DBI::errstr");	
  		return DECLINED;
  	}

	my $rv = $sth->execute;

	unless ($rv) {
		$r->log_error("Apache::DBILogger had problems executing query ($statement): $DBI::errstr");
	#	unless ($tries++ > 1) {
	#		&reconnect(\$dbh, $r);
	#		goto TRYAGAIN;
	#	}
	}
	
	$sth->finish;


	$dbh->disconnect;

	OK;
}

# #perl pun: <q[merlyn]> windows is for users who can't handle the power of the mac.

sub handler { 
        _register_logger(shift);
}

############################################################
# Multi-API compatibility functions follow
#
# _register_logger, _get_req and _get_data should take care of handling the
# incompatibility between the mod_perl 1.x and 2.x APIs. They should do exactly
# the same, although in a different way; they are based on
# http://perl.apache.org/docs/2.0/user/porting/compat.html
#
# For any bugs regarding this code, please contact Gunnar Wolf
# <gwolf@debian.org>.
sub _register_logger {
        my $r = shift;
	if ($modperl2) {
	        $r->pool->cleanup_register(\&logger, $r);
	} else {
		$r->post_connection(\&logger);
	}
	return OK;
}

sub _get_req {
        return $modperl2 ? shift : shift->last;
}

sub _get_data {
        my ($r, $s, $c, %data);
	$r = shift;
	$s = $r->server;
	$c = $r->connection;

	if ($modperl2) {
	        %data = (
			 'server'	=> $s->server_hostname,
			 'bytes'        => $r->bytes_sent,
			 'filename'	=> $r->filename || '',
			 'remotehost'   => $c->get_remote_host || '',
			 'remoteip'     => $c->remote_addr->ip_get || '',
			 'status'       => $r->status || '',
			 'urlpath'	=> $r->uri || '',
			 'referer'	=> $r->headers_in->{'Referer'} || '',
			 'useragent'	=> $r->headers_in->{'User-Agent'} || '',
			 'timeserved'   => time2str("%Y-%m-%d %X", time),
			 'contenttype'  => $r->content_type || '',
			 'user'         => $r->user() || '',
			 'usertrack'    => $r->notes->get('cookie') || ''
			 );
	} else {
	        %data = (
			 'server'	=> $s->server_hostname,
			 'bytes'        => $r->bytes_sent,
			 'filename'	=> $r->filename || '',
			 'remotehost'   => $c->remote_host || '',
			 'remoteip'     => $c->remote_ip || '',
			 'status'       => $r->status || '',
			 'urlpath'	=> $r->uri || '',
			 'referer'	=> $r->header_in("Referer") || '',
			 'useragent'	=> $r->header_in('User-Agent') || '',
			 'timeserved'   => time2str("%Y-%m-%d %X", time),
			 'contenttype'  => $r->content_type || '',
			 'user'         => $c->user || '',
			 'usertrack'    => $r->notes('cookie') || ''
			 );
	}
	return %data;
}

1;
__END__

=head1 NAME

Apache::DBILogger - Tracks what's being transferred in a DBI database

=head1 SYNOPSIS

  # Place this in your Apache's httpd.conf file
  PerlLogHandler Apache::DBILogger

  PerlSetVar DBILogger_data_source    DBI:mysql:httpdlog
  PerlSetVar DBILogger_username       httpduser
  PerlSetVar DBILogger_password       secret
  PerlSetvar DBILogger_table          requests
  
Create a database with a table named B<requests> like this:

CREATE TABLE requests (
  server varchar(127) DEFAULT '' NOT NULL,
  bytes mediumint(9) DEFAULT '0' NOT NULL,
  user varchar(15) DEFAULT '' NOT NULL,
  filename varchar(200) DEFAULT '' NOT NULL,
  remotehost varchar(150) DEFAULT '' NOT NULL,
  remoteip varchar(15) DEFAULT '' NOT NULL,
  status smallint(6) DEFAULT '0' NOT NULL,
  timeserved datetime DEFAULT '0000-00-00 00:00:00' NOT NULL,
  contenttype varchar(50) DEFAULT '' NOT NULL,
  urlpath varchar(200) DEFAULT '' NOT NULL,
  referer varchar(250) DEFAULT '' NOT NULL,
  useragent varchar(250) DEFAULT '' NOT NULL,
  usertrack varchar(100) DEFAULT '' NOT NULL,
  KEY server_idx (server),
  KEY timeserved_idx (timeserved)
);

Please note that for some databases (notably, PostgreSQL) you will need to
double-quote the user column name (that is, to specify it as C<"user"
varchar(15)>) in order for the database not to mistake it with a keyword.

Its recommended that you include

use Apache::DBI;
use DBI;
use Apache::DBILogger;

in your startup.pl script. Please read the Apache::DBI documentation for
further information.

=head1 DESCRIPTION

This module tracks what's being transfered by the Apache web server in a 
SQL database (everything with a DBI/DBD driver). This allows one to get 
statistics (of almost everything) without having to parse the log
files (like the Apache::Traffic module, just in a "real" database, and with
a lot more logged information).

Apache::DBILogger will track the cookie from 'mod_usertrack' if it's there.

After installation, follow the instructions in the synopsis and restart 
the server.
	
The statistics are then available in the database. See the section VIEWING
STATISTICS for more details.

=head1 PREREQUISITES

You need to have compiled mod_perl with the LogHandler hook in order
to use this module. Additionally, the following modules are required:

	o DBI
	o Date::Format

=head1 INSTALLATION

To install this module, move into the directory where this file is
located and type the following:

        perl Makefile.PL
        make
        make test
        make install

This will install the module into the Perl library directory. 

Once installed, you will need to modify your web server's configuration
file so it knows to use Apache::DBILogger during the logging phase.

=head1 VIEWING STATISTICS

Please see the bin/ directory in the distribution for a
statistics script.

Some funny examples on what you can do might include:

=over 4

=item hit count and total bytes transfered from the virtual server www.company.com

    select count(id),sum(bytes) from requests 
    where server="www.company.com"

=item hit count and total bytes from all servers, ordered by number of hits

    select server,count(id) as hits,sum(bytes) from requests
    group by server order by hits desc

=item count of hits from macintosh users

    select count(id) from requests where useragent like "%Mac%"

=item hits and total bytes in the last 30 days
    select count(id),sum(bytes) from requests where
    server="www.company.com" and TO_DAYS(NOW()) -
    TO_DAYS(timeserved) <= 30

This is pretty unoptimal.  It would be faster to calculate the dates
in perl and write them in the sql query using f.x. Date::Format.


=item hits and total bytes from www.company.com on mondays.

    select count(id),sum(bytes) from requests where
    server="www.company.com" and dayofweek(timeserved) = 2

=back

It's often pretty interesting to view the referer info too.

See your sql server documentation of more examples. I'm a happy mySQL
user, so I would continue on

http://www.tcx.se/Manual_chapter/manual_toc.html

=head1 LOCKING ISSUES

MySQL 'read locks' the table when you do a select. On a big table
(like a large httpdlog) this might take a while, where your httpds
can't insert new logentries, which will make them 'hang' until the
select is done.

One way to work around this is to create another table
(f.x. requests_insert) and get the httpd's to insert to this table.

Then run a script from crontab once in a while which does something
like this:

  LOCK TABLES requests WRITE, requests_insert WRITE
  insert into requests select * from requests_insert
  delete from requests_insert
  UNLOCK TABLES

You can use the moverows.pl script from the bin/ directory.

Please note that this won't work if you have any unique id field!
You'll get duplicates and your new rows won't be inserted, just
deleted. Be careful.

=head1 TRAPS

I've experienced problems with 'Packets too large' when using
Apache::DBI, mysql and DBD::mysql 2.00 (from the Msql-mysql 1.18x
packages).  The DBD::mysql module from Msql-mysql 1.19_17 seems to
work fine with Apache::DBI.

You might get problems with Apache 1.2.x. (Not supporting
post_connection?)

=head1 MOD_PERL 2 SUPPORT

The official version of this module, as Ask Bjoern Hansen last modified
it, lacks support for the API changes introduced with Apache 2.x and
the corresponding mod_perl 2.x - Of course, this is quite understandable
as this module was last updated in 1998 ;-) But anyway, the module does its
job still quite fine, and users still require its functionality.

For any help requests regarding this module on Apache 2 systems, contact
Gunnar Wolf <gwolf@debian.org> directly. If your system is based on Debian
GNU/Linux, you can use the regular Debian bugtracking facilities, as the
multi-API patch was introduced specifically for Debian.

=head1 SUPPORT

This module is supported via the mod_perl mailinglist
(modperl@apache.org, subscribe by sending a mail to
modperl-request@apache.org).

I would like to know which databases this module have been tested on,
so please mail me if you try it.

The latest version can be found on your local CPAN mirror or at
C<ftp://ftp.netcetera.dk/pub/perl/>

=head1 AUTHOR

Copyright (C) 1998, Ask Bjoern Hansen <ask@netcetera.dk>. All rights
reserved. This module is free software; you may redistribute it and/or
modify it under the same terms as Perl itself.

=head1 SEE ALSO

perl(1), mod_perl(3)


=cut