我开发了一个小的Nagios监控脚本,它基本上在给定的接口和端口上运行tcpdump,并在前10个捕获的数据包中查找特定的字符串。我正在监视一个系统,它可能会挂起并使用特定消息充斥我的服务器。
我不是一名专业的Perl程序员,但我相信我已经对待了所有的考验。
在本地运行此脚本就可以了,并将控制台返回给我。但是,当我尝试通过我的Nagios服务器运行它时,通过ssh(ssh user @ host -i private_key'/path/script.pl'),脚本执行成功,我得到退出消息,但是,ssh没有出口。我必须按Ctrl + C或点击一些返回才能让bash回到我身边。使用check_by_ssh运行它会出现一个插件超时错误,原因很明显。
我很确定它与我正在使用的fork()有关,但我不知道它有什么问题。
#!/usr/bin/perl -w
use strict;
use warnings;
use Getopt::Long;
my $RC_OK = 0;
my $RC_WARNING = 1;
my $RC_CRITICAL = 2;
my $RC_UNKNOWN = 3;
my $GREP_RC = undef;
my $PORT = undef;
my $INT = undef;
my $STRING = undef;
my $PID = undef;
# Handler principal de alarme de timeout
$SIG{ALRM} = sub {
print "UNKNOWN: Main script timed out!\n";
exit $RC_UNKNOWN;
};
# Inicio contagem global
alarm(8);
# Coleta parametros
GetOptions ("port=s" => \$PORT,
"interface=s" => \$INT,
"string=s" => \$STRING);
# Sanity check de parametros
if((not defined $PORT) || (not defined $STRING)) {
print "Usage: ./check_stratus.pl -p=PORT -i=INTERFACE -s=STRING\n";
exit $RC_UNKNOWN;
}
# Capturando pelo tcpdump
defined($PID = fork()) or die "Problema ao criar o fork: $!\n";
if ($PID == 0) {
# Handler secundario de alarme de timeout
$SIG{ALRM} = sub {
exit 1;
};
# Captura no maximo por 5 segundos, ou 10 pacotes
alarm(5);
`sudo /usr/sbin/tcpdump -nX -s 2048 -c 10 -i $INT port $PORT > /tmp/capture.txt 2>&1`;
# Checando se o tcpdump rodou com sucesso
if ($? != 0) {
print "Erro ao executar \"/usr/sbin/tcpdump -nX -s 2048 -c 1 -i $INT port $PORT > /tmp/capture.txt\", verifique o arquivo de saida para mais detalhes.\n";
exit $RC_UNKNOWN;
}
exit $RC_OK;
}
# Espera o filho encerar...
waitpid($PID, 0);
# Verificando se o arquivo capturado esta ok
`/bin/ls /tmp/capture.txt`;
if ($? != 0) {
print "Erro ao encontrar o arquivo /tmp/capture.txt\n";
exit $RC_UNKNOWN;
}
# Executando grep da string em cima da captura
`/bin/grep $STRING /tmp/capture.txt`;
# Verificando resultado do grep
if ($? == 0) {
print "Foi encontrada a string \"$STRING\" na captura do tcpdump escutando na interface $INT e na porta $PORT!\n";
exit $RC_CRITICAL;
}
if ($? == 256) {
print "Nao foi encontrada a string \"$STRING\" na captura do tcpdump escutando na interface $INT e na porta $PORT.\n";
exit $RC_OK;
} else {
print "Erro desconhecido! Codigo do grep foi $?\n";
exit $RC_UNKNOWN;
}
非常感谢任何帮助。
谢谢!
答案 0 :(得分:2)
看这里:
#!/usr/bin/perl
use strict;
my $PID;
defined($PID = fork()) or die "no fork works";
if ($PID == 0) {
# Handler secundario de alarme de timeout
$SIG{ALRM} = sub {
exit 1;
};
# Captura no maximo por 5 segundos, ou 10 pacotes
alarm(1);
`sleep 100`;
}
waitpid($PID, 0);
/tmp$ ps xawww |grep sleep
1705 pts/2 S+ 0:00 grep sleep
host:/tmp$ time /tmp/test.pl
real 0m1.008s
user 0m0.000s
sys 0m0.004s
host:/tmp$ ps xawww |grep sleep
1708 pts/2 S 0:00 sleep 100
1710 pts/2 S+ 0:00 grep sleep
出现问题的原因是您的系统分叉了一个新进程,而该进程没有从父进程获取信号。
解决方案只是使用exec()
代替``
或system()
,因为exec()
不会分叉新进程:
alarm(1);
exec("sleep 100");