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
|
# The TCP server closes the connection to syslogd.
# The client writes a message to Sys::Syslog native method.
# The syslogd writes it into a file and through a pipe.
# The syslogd does a TCP reconnect and passes it to loghost.
# The server receives the message on its new accepted TCP socket.
# Find the message in client, pipe, syslogd, server log.
# Check that syslogd and server close and reopen the connection.
use strict;
use warnings;
use Socket;
use Errno ':POSIX';
my @errors = (ECONNREFUSED, EPIPE);
my $errors = "(". join("|", map { $! = $_ } @errors). ")";
our %args = (
client => {
func => sub { write_between2logs(shift, sub {
my $self = shift;
${$self->{syslogd}}->loggrep($errors, 5)
or die "no $errors in syslogd.log";
})},
},
syslogd => {
loghost => '@tcp://127.0.0.1:$connectport',
loggrep => {
qr/Logging to FORWTCP \@tcp:\/\/127.0.0.1:\d+/ => '>=6',
qr/syslogd\[\d+\]: (connect .*|.*connection error): $errors/ => 1,
get_between2loggrep(),
},
},
server => {
listen => { domain => AF_INET, proto => "tcp", addr => "127.0.0.1" },
redo => 0,
func => sub { read_between2logs(shift, sub {
my $self = shift;
if ($self->{redo}) {
$self->{redo}--;
return;
}
$self->close();
shutdown(\*STDOUT, 1)
or die "shutdown write failed: $!";
${$self->{syslogd}}->loggrep($errors, 5)
or die "no $errors in syslogd.log";
$self->listen();
$self->{redo}++;
})},
loggrep => {
qr/Accepted/ => 2,
qr/syslogd\[\d+\]: loghost .* connection close/ => 1,
qr/syslogd\[\d+\]: (connect .*|.*connection error): $errors/ => 1,
get_between2loggrep(),
},
},
file => {
loggrep => {
qr/syslogd\[\d+\]: (connect .*|.*connection error): $errors/ => 1,
get_between2loggrep(),
},
},
);
1;
|