我有一个PHP脚本来运行具有执行时间限制和CPU时间限制的命令。
limit.php :
<?php
declare(ticks = 1);
ini_set('display_errors','on');
error_reporting(E_ALL);
if ($argc<2) die("Usage: php ".__FILE__." \"your command here\" [execute_time_limit = 600] [cpu_time_limit = 120]\n");
$cmd = $argv[1];
$tl = isset($argv[2]) ? intval($argv[2]) : 0;
$cl = isset($argv[3]) ? intval($argv[3]) : 0;
if (!$cmd) die("INCORRECT_CMD");
if ($tl<=0) $tl = 600;
if ($cl<=0) $cl = 120;
function sigalrm_handler($signo) {die('EXECUTE_ENDED');}//normal ended or killed by ulimit
$pid = pcntl_fork();
if (-1 == $pid) {
die('FORK_FAILED');
} elseif ($pid == 0) {
exec("ulimit -t $cl && $cmd");
posix_kill(posix_getppid(), SIGALRM);
} else {
pcntl_signal(SIGALRM, 'sigalrm_handler');
sleep($tl);
posix_kill($pid, SIGKILL);
die("TIMEOUT_KILLED : $pid");
}
另一个用于测试的PHP脚本。
test.php的
<?php
$i=0;
echo getmypid();
while(1) {
$i++;
file_put_contents("/tmp/x.log",$i."\n",FILE_APPEND);
echo "*";
sleep(1);
}
运行此命令:
php limit.php“php test.php”10
使用“ps -ef | grep ph [p]”,您可以按照我们的预期找到分叉和杀死的进程。
但是当我尝试这个命令时,
php limit.php“php test.php&gt; /tmp/y.log"10
儿童进程不能像我们预期的那样被杀死。参见:
Begining:
===============
alix 28979 23528 0 17:32 pts/0 00:00:00 php limit.php php test.php > /tmp/y.log 10
alix 28980 28979 0 17:32 pts/0 00:00:00 php limit.php php test.php > /tmp/y.log 10
alix 28981 28980 0 17:32 pts/0 00:00:00 sh -c ulimit -t 120 && php test.php > /tmp/y.log
alix 28982 28981 0 17:32 pts/0 00:00:00 php test.php
10秒后:
=================
alix 28981 1 0 17:32 pts/0 00:00:00 sh -c ulimit -t 120 && php test.php > /tmp/y.log
alix 28982 28981 0 17:32 pts/0 00:00:00 php test.php
PID 28979分叉28980,然后功能exec用PID 28981和28982创建了2个子进程.10s之后,28979发送SIGKILL到28980,但28981和28982没有受到影响(如果没有输出重定向就会被杀掉) &gt; /tmp/y.log“)。
我的服务器是: Linux s4 2.6.18-308.1.1.el5#1 SMP Wed Mar 7 04:16:51 EST 2012 x86_64 x86_64 x86_64 GNU / Linux 使用PHP 5.3.9(cli)(内置:2012年2月15日11:54:46)
有什么建议吗?