]> git.proxmox.com Git - pve-access-control.git/commitdiff
correctly catch EINTR
authorDietmar Maurer <dietmar@proxmox.com>
Tue, 18 Oct 2011 05:26:43 +0000 (07:26 +0200)
committerDietmar Maurer <dietmar@proxmox.com>
Tue, 18 Oct 2011 05:26:43 +0000 (07:26 +0200)
PVE/RPCEnvironment.pm

index e6393578a7438ca1e7e44b709c02491d99f0bc21..0905b65ef040930c6cc662ed96d4dc6936f99193 100644 (file)
@@ -2,7 +2,7 @@ package PVE::RPCEnvironment;
 
 use strict;
 use warnings;
-use POSIX ":sys_wait_h";
+use POSIX qw(:sys_wait_h EINTR);
 use IO::File;
 use Fcntl qw(:flock);
 use PVE::SafeSyslog;
@@ -649,13 +649,25 @@ sub fork_worker {
     if ($sync) {
        my $count;
        my $outbuf = '';
+       my $int_count = 0;
        eval {
-           local $SIG{INT} = 
-               local $SIG{QUIT} = 
-               local $SIG{TERM} = sub { die "got interrupt\n"; };
+           local $SIG{INT} = local $SIG{QUIT} = local $SIG{TERM} = sub { 
+               if ($int_count < 3) {
+                   kill(15, $cpid); # send TERM signal
+               } else {
+                   kill(9, $cpid); # send KILL signal
+               }
+               $int_count++;
+           };
            local $SIG{PIPE} = sub { die "broken pipe\n"; };
        
-           while (($count = POSIX::read($psync[0], $readbuf, 4096)) && ($count > 0)) {
+           while (1) {
+               if (!defined($count = POSIX::read($psync[0], $readbuf, 4096))) {
+                   next if $! == EINTR;
+                   last;
+               }
+               last if $count == 0; # eof
+
                $outbuf .= $readbuf;
                while ($outbuf =~ s/^(([^\010\r\n]*)(\r|\n|(\010)+|\r\n))//s) {
                    my $line = $1;