2003-04-15 19:39:27 +02:00
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
check_earlytalker - Check that the client doesn't talk before we send the SMTP banner
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
Checks to see if the remote host starts talking before we've issued a 2xx
|
|
|
|
greeting. If so, we're likely looking at a direct-to-MX spam agent which
|
|
|
|
pipelines its entire SMTP conversation, and will happily dump an entire spam
|
|
|
|
into our mail log even if later tests deny acceptance.
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
Depending on configuration, clients which behave in this way are either
|
|
|
|
immediately disconnected with a deny or denysoft code, or else are issued this
|
|
|
|
on all mail/rcpt commands in the transaction.
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=head1 CONFIGURATION
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=over 4
|
2003-04-15 19:39:27 +02:00
|
|
|
|
2004-08-01 09:08:07 +02:00
|
|
|
=item wait [integer]
|
|
|
|
|
|
|
|
The number of seconds to delay the initial greeting to see if the connecting
|
|
|
|
host speaks first. The default is 1.
|
|
|
|
|
|
|
|
=item action [string: deny, denysoft, log]
|
|
|
|
|
|
|
|
What to do when matching an early-talker -- the options are I<deny>,
|
|
|
|
I<denysoft> or I<log>.
|
|
|
|
|
|
|
|
If I<log> is specified, the connection will be allowed to proceed as normal,
|
|
|
|
and only a warning will be logged.
|
|
|
|
|
|
|
|
The default is I<denysoft>.
|
|
|
|
|
|
|
|
=item defer-reject [boolean]
|
|
|
|
|
|
|
|
When an early-talker is detected, if this option is set to a true value, the
|
|
|
|
SMTP greeting will be issued as usual, but all RCPT/MAIL commands will be
|
|
|
|
issued a deny or denysoft (depending on the value of I<action>). The default
|
|
|
|
is to react at the SMTP greeting stage by issuing the apropriate response code
|
|
|
|
and terminating the SMTP connection.
|
|
|
|
|
|
|
|
=back
|
2003-04-15 19:39:27 +02:00
|
|
|
|
|
|
|
=cut
|
|
|
|
|
|
|
|
sub register {
|
2004-08-01 09:08:07 +02:00
|
|
|
my ($self, $qp, @args) = @_;
|
|
|
|
|
|
|
|
if (@args % 2) {
|
2005-03-08 23:58:09 +01:00
|
|
|
$self->log(LOGERROR, "Unrecognized/mismatched arguments");
|
|
|
|
return undef;
|
2004-08-01 09:08:07 +02:00
|
|
|
}
|
|
|
|
$self->{_args} = {
|
2005-03-08 23:58:09 +01:00
|
|
|
'wait' => 1,
|
|
|
|
'action' => 'denysoft',
|
|
|
|
'defer-reject' => 0,
|
|
|
|
@args,
|
2004-08-01 09:08:07 +02:00
|
|
|
};
|
2003-04-15 19:39:27 +02:00
|
|
|
$self->register_hook('connect', 'connect_handler');
|
2005-06-21 22:02:14 +02:00
|
|
|
$self->register_hook('connect', 'connect_post_handler');
|
2004-08-01 09:08:07 +02:00
|
|
|
$self->register_hook('mail', 'mail_handler')
|
|
|
|
if $self->{_args}->{'defer-reject'};
|
2005-06-21 22:02:14 +02:00
|
|
|
warn("check_earlytalker registered\n");
|
2004-08-01 09:08:07 +02:00
|
|
|
1;
|
2003-04-15 19:39:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
sub connect_handler {
|
|
|
|
my ($self, $transaction) = @_;
|
2005-05-09 15:43:40 +02:00
|
|
|
|
2005-06-21 22:02:14 +02:00
|
|
|
warn("check early talker");
|
|
|
|
my $qp = $self->qp;
|
|
|
|
my $conn = $qp->connection;
|
|
|
|
$qp->AddTimer($self->{_args}{'wait'}, sub { read_now($qp, $conn) });
|
|
|
|
$qp->disable_read();
|
|
|
|
return CONTINUATION;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub read_now {
|
|
|
|
my ($qp, $conn) = @_;
|
|
|
|
|
|
|
|
warn("read now");
|
|
|
|
$qp->enable_read();
|
|
|
|
if (my $data = $qp->read(1024)) {
|
|
|
|
if (length($$data)) {
|
|
|
|
$qp->log(LOGNOTICE, 'remote host started talking before we said hello');
|
|
|
|
$qp->push_back_read($data);
|
|
|
|
$conn->notes('earlytalker', 1);
|
2004-08-01 09:08:07 +02:00
|
|
|
}
|
2005-05-09 15:43:40 +02:00
|
|
|
}
|
2005-06-21 22:02:14 +02:00
|
|
|
$qp->finish_continuation;
|
|
|
|
}
|
|
|
|
|
|
|
|
sub connect_post_handler {
|
|
|
|
my ($self, $transaction) = @_;
|
|
|
|
|
|
|
|
my $conn = $self->qp->connection;
|
|
|
|
return DECLINED unless $conn->notes('earlytalker');
|
|
|
|
return DECLINED if $self->{'defer-reject'};
|
|
|
|
my $msg = 'Connecting host started transmitting before SMTP greeting';
|
|
|
|
return (DENY,$msg) if $self->{_args}->{'action'} eq 'deny';
|
|
|
|
return (DENYSOFT,$msg) if $self->{_args}->{'action'} eq 'denysoft';
|
|
|
|
return DECLINED; # assume action eq 'log'
|
2003-04-15 19:39:27 +02:00
|
|
|
}
|
2004-08-01 09:08:07 +02:00
|
|
|
|
|
|
|
sub mail_handler {
|
|
|
|
my ($self, $txn) = @_;
|
|
|
|
my $msg = 'Connecting host started transmitting before SMTP greeting';
|
|
|
|
|
2005-03-08 23:58:09 +01:00
|
|
|
return DECLINED unless $self->connection->notes('earlytalker');
|
2005-06-21 22:02:14 +02:00
|
|
|
my $msg = 'Connecting host started transmitting before SMTP greeting';
|
2004-08-01 09:08:07 +02:00
|
|
|
return (DENY,$msg) if $self->{_args}->{'action'} eq 'deny';
|
|
|
|
return (DENYSOFT,$msg) if $self->{_args}->{'action'} eq 'denysoft';
|
|
|
|
return DECLINED;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
1;
|
|
|
|
|