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
|
#! /usr/bin/perl
package Apache::Resource;
use strict;
use vars qw($Debug);
use BSD::Resource qw(setrlimit getrlimit get_rlimits);
$Debug ||= 0;
$Apache::Resource::VERSION = '1.71';
sub MB ($) {
my $num = shift;
return ($num < (1024 * 1024)) ? $num*1024*1024 : $num;
}
sub BM ($) {
my $num = shift;
return ($num > (1024 * 1024)) ? '(' . ($num>>20) . 'Mb)' : '';
}
sub DEFAULT_RLIMIT_DATA () { 64 } #data (memory) size in MB
sub DEFAULT_RLIMIT_CPU () { 60*6 } #cpu time in seconds
sub DEFAULT_RLIMIT_CORE () { 0 } #core file size (MB)
sub DEFAULT_RLIMIT_RSS () { 16 } #resident set size (MB)
sub DEFAULT_RLIMIT_FSIZE () { 10 } #file size (MB)
sub DEFAULT_RLIMIT_STACK () { 20 } #stack size (MB)
my %is_mb = map {$_,1} qw{DATA RSS STACK FSIZE CORE MEMLOCK};
sub debug { print STDERR @_ if $Debug }
sub install_rlimit ($$$) {
my($res, $soft, $hard) = @_;
my $name = $res;
my $cv = \&{"BSD::Resource::RLIMIT_${res}"};
eval { $res = $cv->() };
return if $@;
unless ($soft) {
my $defval = \&{"DEFAULT_RLIMIT_${name}"};
if(defined &$defval) {
$soft = $defval->();
}
else {
warn "can't find default for `$defval'\n";
}
}
$hard ||= $soft;
debug "Apache::Resource: PID $$ attempting to set `$name'=$soft:$hard ...";
($soft, $hard) = (MB $soft, MB $hard) if $is_mb{$name};
return setrlimit $res, $soft, $hard;
}
sub handler {
while(my($k,$v) = each %ENV) {
next unless $k =~ /^PERL_RLIMIT_(\w+)$/;
$k = $1;
next if $k eq "DEFAULTS";
my($soft, $hard) = split ":", $v, 2;
$hard ||= $soft;
my $set = install_rlimit $k, $soft, $hard;
debug "not " unless $set;
debug "ok\n";
debug $@ if $@;
}
0;
}
sub default_handler {
while(my($k,$v) = each %Apache::Resource::) {
next unless $k =~ s/^DEFAULT_/PERL_/;
$ENV{$k} = "";
}
handler();
}
sub status_rlimit {
my $lim = get_rlimits();
my @retval = ("<table border=1><tr>",
(map "<th>$_</th>", qw(Resource Soft Hard)),
"</tr>");
for my $res (keys %$lim) {
my $val = eval "&BSD::Resource::${res}()";
my ($soft,$hard) = getrlimit $val;
(my $limit = $res) =~ s/^RLIMIT_//;
($soft, $hard) = ("$soft " . BM($soft),"$hard ". BM($hard))
if $is_mb{$limit};
push @retval,
"<tr>",
(map { "<td>$_</td>" } $res, $soft, $hard),
"</tr>";
}
push @retval, "</table><P>";
push @retval, "<SMALL>Apache::Resource $Apache::Resource::VERSION</SMALL>";
return \@retval;
}
if($ENV{MOD_PERL}) {
if($ENV{PERL_RLIMIT_DEFAULTS}) {
Apache->push_handlers(PerlChildInitHandler => \&default_handler);
}
Apache::Status->menu_item(rlimit => "Resource Limits",
\&status_rlimit)
if Apache->module("Apache::Status");
}
#perl Apache/Resource.pm
++$Debug, default_handler unless caller();
1;
__END__
=head1 NAME
Apache::Resource - Limit resources used by httpd children
=head1 SYNOPSIS
PerlModule Apache::Resource
#set child memory limit in megabytes
#default is 64 Meg
PerlSetEnv PERL_RLIMIT_DATA 32:48
#set child cpu limit in seconds
#default is 360 seconds
PerlSetEnv PERL_RLIMIT_CPU 120
PerlChildInitHandler Apache::Resource
=head1 DESCRIPTION
B<Apache::Resource> uses the B<BSD::Resource> module, which
uses the C function C<setrlimit> to set limits on
system resources such as memory and cpu usage.
Any B<RLIMIT> operation available to limit on your system can be set
by defining that operation as an environment variable with a C<PERL_>
prefix. See your system C<setrlimit> manpage for available resources
which can be limited.
The following limit values are in megabytes: C<DATA>, C<RSS>, C<STACK>,
C<FSIZE>, C<CORE>, C<MEMLOCK>; all others are treated as their natural unit.
If the value of the variable is of the form C<S:H>, C<S> is treated as
the soft limit, and C<H> is the hard limit. If it is just a single
number, it is used for both soft and hard limits.
=head1 DEFAULTS
To set reasonable defaults for all RLIMITs, add this to your httpd.conf:
PerlSetEnv PERL_RLIMIT_DEFAULTS On
PerlModule Apache::Resource
=head1 AUTHOR
Doug MacEachern
=head1 SEE ALSO
BSD::Resource(3), setrlimit(2)
=cut
|