2014-02-14 03:42:56 +01:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
=head1 NAME
|
|
|
|
|
|
|
|
loadcheck
|
|
|
|
|
|
|
|
=head1 DESCRIPTION
|
|
|
|
|
|
|
|
Only takes email transactions if the system load is at or below a
|
|
|
|
specified level.
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
If this is running on a system that provides /kern/loadavg or
|
2014-03-21 14:42:54 +01:00
|
|
|
/proc/loadavg it will be used instead of the 'uptime' command.
|
2014-03-21 14:40:01 +01:00
|
|
|
|
|
|
|
Once a load value is determined, it is cached for a period of time.
|
|
|
|
See the cache_time below.
|
|
|
|
|
2014-03-21 14:56:32 +01:00
|
|
|
Since fork/exec is expensive in perl you'll want to use cache_time to avoid increasing your load on every connection by checking system load.
|
|
|
|
|
2014-02-14 03:42:56 +01:00
|
|
|
=head1 CONFIG
|
|
|
|
|
|
|
|
max_load
|
|
|
|
|
|
|
|
This is the 1 minute system load where we won't take transactions
|
|
|
|
if our load is higher than this value. (Default: 7)
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
cache_time
|
|
|
|
|
|
|
|
A recently determined load value will be cached and used for the
|
|
|
|
assigned number of seconds. (Default: 10)
|
|
|
|
|
2014-02-14 03:42:56 +01:00
|
|
|
uptime
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
The path to the command 'uptime' if different than the default.
|
2014-02-14 03:42:56 +01:00
|
|
|
(Default: /usr/bin/uptime)
|
|
|
|
|
|
|
|
Example:
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
loadcheck cache_time 30
|
|
|
|
|
2014-02-14 03:42:56 +01:00
|
|
|
loadcheck max_load 7 uptime /usr/bin/uptime
|
|
|
|
|
2014-03-21 14:56:32 +01:00
|
|
|
=head1 SEE ALSO
|
|
|
|
|
|
|
|
Original version: http://www.nntp.perl.org/group/perl.qpsmtpd/2006/01/msg4422.html
|
|
|
|
|
|
|
|
Variant with caching: http://www.nntp.perl.org/group/perl.qpsmtpd/2006/03/msg4710.html
|
|
|
|
|
|
|
|
Steve Kemp's announcement of an alternate load limiter: http://www.nntp.perl.org/group/perl.qpsmtpd/2008/03/msg7814.html
|
|
|
|
|
2014-02-14 03:42:56 +01:00
|
|
|
=head1 AUTHOR
|
|
|
|
|
|
|
|
Written by Peter Eisch <peter@boku.net>.
|
|
|
|
|
|
|
|
=cut
|
|
|
|
|
2014-03-21 14:42:54 +01:00
|
|
|
my $VERSION = 0.02;
|
2014-02-14 03:42:56 +01:00
|
|
|
|
|
|
|
sub register {
|
|
|
|
my ($self, $qp, @args) = @_;
|
|
|
|
|
|
|
|
%{$self->{_args}} = @args;
|
|
|
|
|
|
|
|
$self->{_args}->{max_load} = 7
|
|
|
|
if (! defined $self->{_args}->{max_load});
|
|
|
|
|
|
|
|
$self->{_args}->{uptime} = '/usr/bin/uptime'
|
|
|
|
if (! defined $self->{_args}->{uptime});
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
$self->{_args}->{cache_time} = 10
|
|
|
|
if (! defined $self->{_args}->{cache_time});
|
|
|
|
|
|
|
|
$self->{_load} = -1;
|
|
|
|
$self->{_time} = 0;
|
|
|
|
|
2014-02-14 03:42:56 +01:00
|
|
|
$self->register_hook("connect", "loadcheck");
|
|
|
|
}
|
|
|
|
|
|
|
|
sub loadcheck {
|
|
|
|
my ($self, $transaction) = @_;
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
if (time() > ($self->{_time} + $self->{_args}->{cache_time})) {
|
|
|
|
# cached value expired
|
|
|
|
|
|
|
|
if ( -r '/kern/loadavg' ) { # *BSD
|
|
|
|
# contains fix-point scaling value
|
|
|
|
open(LD, "</kern/loadavg");
|
|
|
|
my $res = <LD>;
|
|
|
|
close LD;
|
|
|
|
my @vals = split(/ /, $res);
|
|
|
|
$self->{_load} = ($val[0] / $val[3]);
|
|
|
|
$self->{_time} = time();
|
|
|
|
$self->log(LOGDEBUG, "/kern/loadavg reported: $self->{_load}");
|
|
|
|
} elsif ( -r '/proc/loadavg' ) { # *inux
|
|
|
|
# contains decimal value
|
|
|
|
# contains fix-point scaling value
|
|
|
|
open(LD, "</proc/loadavg");
|
|
|
|
my $res = <LD>;
|
|
|
|
close LD;
|
|
|
|
$self->{_load} = (split(/ /, $res))[0];
|
|
|
|
$self->{_time} = time();
|
|
|
|
$self->log(LOGDEBUG, "/proc/loadavg reported: $self->{_load}");
|
|
|
|
} else {
|
|
|
|
# the various formats returned:
|
|
|
|
#10:33AM up 2:06, 1 user, load averages: 6.55, 3.76, 2.48
|
|
|
|
# 12:29am 2 users, load average: 0.05, 0.05, 0.06
|
|
|
|
# 12:30am up 5 days, 12:43, 1 user, load average: 0.00, 0.00, 0.00
|
|
|
|
|
|
|
|
my $res = `$self->{_args}->{uptime}`;
|
|
|
|
if ($res =~ /aver\S+: (\d+\.\d+)/) {
|
|
|
|
$self->{_load} = $1;
|
|
|
|
$self->{_time} = time();
|
|
|
|
$self->log(LOGDEBUG, "$self->{_args}->{uptime} reported: $self->{_load}");
|
|
|
|
}
|
|
|
|
}
|
2014-02-14 03:42:56 +01:00
|
|
|
}
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
if ($self->{_load} > $self->{_args}->{max_load}) {
|
|
|
|
$self->log(LOGERROR, "local load too high: $self->{_load}");
|
2014-02-14 03:42:56 +01:00
|
|
|
return DENYSOFT;
|
|
|
|
}
|
|
|
|
|
2014-03-21 14:40:01 +01:00
|
|
|
return (DECLINED, "continuing with load: $self->{_load}");
|
2014-02-14 03:42:56 +01:00
|
|
|
}
|
|
|
|
|