/usr/share/exim4/timeout.pl is in exim4-base 4.76-3ubuntu3.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 | #!/usr/bin/perl
## timeout
##
## (c) 2004 Piotr Roszatycki <dexter@debian.org>, GPL
##
## $Id$
=head1 NAME
timeout - Run command with bounded time.
=head1 SYNOPSIS
B<timeout> S<B<-h>>
B<timeout>
S<[-I<signal>]>
I<time>
I<command>
...
=cut
use 5.006;
use strict;
use Config;
BEGIN {
unless( eval "require Pod::Usage" ) {
die "Please install the perl-modules package if you want this script to work\n";
}
}
use POSIX qw(setsid);
##############################################################################
## Default values for constant variables
##
## Program name
my $NAME = "timeout";
## Program version
my $VERSION = "0.1+he1";
##############################################################################
## Signals to handle
##
my @signals = qw( HUP INT QUIT TERM SEGV PIPE XCPU XFSZ ALRM );
##############################################################################
## Signal to send after timeout. Default is KILL.
my $signal = 'KILL';
## Time to wait
my $time = 0;
## Command to execute as array of arguments
my @command = ();
## PID for fork function
my $child_pid;
## PID for wait function
my $pid;
##############################################################################
## usage()
##
## Prints usage message.
##
sub usage() {
pod2usage(2);
}
## help()
##
## Prints help message.
##
sub help() {
pod2usage(-verbose=>1, -message=>"$NAME $VERSION\n");
}
## signal_handler($sig)
##
## Handler for signals to clean up child processes
##
sub signal_handler($) {
my ($sig) = @_;
if ($sig eq 'ALRM') {
printf STDERR "Timeout: aborting command ``%s'' with signal SIG%s\n", join(' ', @command), $signal;
} else {
printf STDERR "Got signal SIG%s: aborting command ``%s'' with signal SIG%s\n", $sig, join(' ', @command), $signal;
}
kill $signal, -$child_pid;
exit -1;
}
##############################################################################
## Main subroutine
##
## Parse command line arguments
my $arg = $ARGV[0];
if ($arg =~ /^-(.*)$/) {
my $opt = $1;
if ($arg eq '-h' || $arg eq '--help') {
help();
} elsif ($opt =~ /^[A-Z0-9]+$/) {
if ($opt =~ /^\d+/) {
#Convert numeric signal to name by using the perl interpreter's
#configuration:
usage() unless defined $Config{sig_name};
$signal = (split(' ', $Config{sig_name}))[$opt];
} else {
$opt =~ s/^SIG//;
$signal = $opt;
}
shift @ARGV;
} else {
usage();
}
}
usage() if @ARGV < 2;
$arg = $ARGV[0];
usage() unless $arg =~ /^\d+$/;
$time = $arg;
shift @ARGV;
@command = @ARGV;
## Fork for exec
if (! defined($child_pid = fork)) {
die "Could not fork: $!\n";
exit 1;
} elsif ($child_pid == 0) {
## child
## Set new process group
setsid;
## Execute command
exec @command or die "Can not run command `" . join(' ', @command) . "': $!\n";
}
## parent
## Set the handle for signals
foreach my $sig (@signals) {
$SIG{$sig} = \&signal_handler;
}
## Set the alarm
alarm $time;
## Wait for child
while (($pid = wait) != -1 && $pid != $child_pid) {}
## Clean exit
exit ($pid == $child_pid ? $? >> 8 : -1);
__END__
=head1 DESCRIPTION
B<timeout> executes a command and imposes an elapsed time limit.
The command is run in a separate POSIX process group so that the
right thing happens with commands that spawn child processes.
=head1 OPTIONS
=over 8
=item -I<signal>
Specify an optional signal name to send to the controlled process. By default,
B<timeout> sends B<KILL>, which cannot be caught or ignored.
=item I<time>
The elapsed time limit after which the command is terminated.
=item I<command>
The command to be executed.
=back
=head1 RETURN CODES
=over 8
=item 0..253
Return code from called command.
=item 254
Internal error. No return code could be fetched.
=item 255
The timeout was occured.
=back
=head1 AUTHOR
(c) 2004 Piotr Roszatycki E<lt>dexter@debian.orgE<gt>
Inspired by timeout.c that is part of The Coroner's Toolkit.
All rights reserved. This program is free software; you can redistribute it
and/or modify it under the terms of the GNU General Public License, the
latest version.
|