2012-04-29 10:35:59 +02:00
|
|
|
#!perl -w
|
2006-01-11 18:03:45 +01:00
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
=head1 NAME
|
2006-01-11 18:03:45 +01:00
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
hosts_allow - decide if a host is allowed to connect
|
2006-01-11 18:03:45 +01:00
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
The B<hosts_allow> module decides before the SMTP-Greeting if a host is
|
|
|
|
allowed to connect. It checks for too many (running) connections from one
|
2012-05-11 07:50:03 +02:00
|
|
|
host (see -m/--max-from-ip options in qpsmtpd-forkserver) and the config
|
2006-01-11 18:03:45 +01:00
|
|
|
file I<hosts_allow>.
|
2012-05-11 07:50:03 +02:00
|
|
|
|
|
|
|
The plugin takes no config/plugin arguments.
|
|
|
|
|
|
|
|
This plugin only works with the forkserver and prefork deployment models. It
|
|
|
|
does not work with the tcpserver deployment model. See SEE ALSO below.
|
2006-01-11 18:03:45 +01:00
|
|
|
|
|
|
|
=head1 CONFIG
|
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
The I<hosts_allow> config file contains lines with two or three items. The
|
|
|
|
first is an IP address or a network/mask pair. The second is a (valid) return
|
|
|
|
code from Qpsmtpd::Constants. The last is a comment which will be returned to
|
|
|
|
the connecting client if the return code is DENY or DENYSOFT (and of course
|
|
|
|
DENY_DISCONNECT and DENYSOFT_DISCONNECT).
|
|
|
|
|
2006-01-11 18:03:45 +01:00
|
|
|
Example:
|
|
|
|
|
|
|
|
192.168.3.4 DECLINED
|
|
|
|
192.168.3.0/24 DENY Sorry, known spam only source
|
|
|
|
|
|
|
|
This would exclude 192.168.3.4 from the DENY of 192.168.3.0/24.
|
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
To get similar functionality for the tcpserver deployment model, use
|
|
|
|
tcpserver's -x feature. Create a tcp.smtp file with entries like this:
|
|
|
|
|
|
|
|
70.65.227.235:deny
|
|
|
|
183.7.90.207:deny
|
|
|
|
:allow
|
|
|
|
|
|
|
|
compile the tcp.smtp file like this:
|
|
|
|
|
|
|
|
/usr/local/bin/tcprules tcp.smtp.cdb tcp.smtp.tmp < tcp.smtp
|
|
|
|
|
|
|
|
and add the file to the chain of arguments to tcpserver in your run file.
|
|
|
|
|
|
|
|
See also: http://cr.yp.to/ucspi-tcp.html
|
|
|
|
|
2006-01-11 18:03:45 +01:00
|
|
|
=cut
|
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
use strict;
|
|
|
|
use warnings;
|
|
|
|
|
2006-01-11 18:03:45 +01:00
|
|
|
use Qpsmtpd::Constants;
|
|
|
|
use Socket;
|
|
|
|
|
|
|
|
sub hook_pre_connection {
|
|
|
|
my ($self,$transaction,%args) = @_;
|
|
|
|
|
|
|
|
# remote_ip => inet_ntoa($iaddr),
|
|
|
|
# remote_port => $port,
|
|
|
|
# local_ip => inet_ntoa($laddr),
|
|
|
|
# local_port => $lport,
|
|
|
|
# max_conn_ip => $MAXCONNIP,
|
2012-05-11 07:50:03 +02:00
|
|
|
# child_addrs => [values %childstatus],
|
2006-01-11 18:03:45 +01:00
|
|
|
|
|
|
|
my $remote = $args{remote_ip};
|
2012-05-11 07:50:03 +02:00
|
|
|
my $max = $args{max_conn_ip};
|
2006-01-11 18:03:45 +01:00
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
if ( $max ) {
|
2006-01-11 18:03:45 +01:00
|
|
|
my $num_conn = 1; # seed with current value
|
|
|
|
my $raddr = inet_aton($remote);
|
|
|
|
foreach my $rip (@{$args{child_addrs}}) {
|
|
|
|
++$num_conn if (defined $rip && $rip eq $raddr);
|
|
|
|
}
|
2012-05-11 07:50:03 +02:00
|
|
|
if ($num_conn > $max ) {
|
|
|
|
my $err_mess = "too many connections from $remote";
|
|
|
|
$self->log(LOGINFO, "fail: $err_mess ($num_conn > $max)");
|
|
|
|
return (DENYSOFT, "Sorry, $err_mess, try again later");
|
2006-01-11 18:03:45 +01:00
|
|
|
}
|
|
|
|
}
|
2012-05-11 07:50:03 +02:00
|
|
|
|
2006-01-11 18:03:45 +01:00
|
|
|
foreach ($self->qp->config("hosts_allow")) {
|
|
|
|
s/^\s*//;
|
|
|
|
my ($ipmask, $const, $message) = split /\s+/, $_, 3;
|
|
|
|
next unless defined $const;
|
|
|
|
|
|
|
|
my ($net,$mask) = split '/', $ipmask, 2;
|
2012-05-11 07:50:03 +02:00
|
|
|
$mask = 32 if !defined $mask;
|
2006-01-11 18:03:45 +01:00
|
|
|
$mask = pack "B32", "1"x($mask)."0"x(32-$mask);
|
|
|
|
if (join(".", unpack("C4", inet_aton($remote) & $mask)) eq $net) {
|
|
|
|
$const = Qpsmtpd::Constants::return_code($const) || DECLINED;
|
2012-05-11 07:50:03 +02:00
|
|
|
if ( $const =~ /deny/i ) {
|
|
|
|
$self->log( LOGINFO, "fail: $message" );
|
|
|
|
};
|
|
|
|
$self->log( LOGDEBUG, "pass: $const, $message" );
|
2006-01-11 18:03:45 +01:00
|
|
|
return($const, $message);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2012-05-11 07:50:03 +02:00
|
|
|
$self->log( LOGDEBUG, "pass" );
|
2006-01-11 18:03:45 +01:00
|
|
|
return (DECLINED);
|
|
|
|
}
|