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 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365
|
From 47618b33232dcde1fadf710e2e1450c985d508ff Mon Sep 17 00:00:00 2001
From: Noah Misch <nmisch@google.com>
Date: Sat, 9 Mar 2024 23:00:53 -0800
Subject: [PATCH 1/5] Detect child exit faster on Windows, via lower select()
timeout.
Windows lacks SIGCHLD. When _select_loop() called select() with zero
file descriptors, IPC::Run would not respond to child termination until
the select() timeout elapsed. For that case, use the 0.01s timeout
every time, as an exception to the usual doubling of the timeout until
we reach 0.5s. This spends CPU to achieve responsiveness.
---
lib/IPC/Run.pm | 27 ++++++++++++++++++++-------
1 file changed, 20 insertions(+), 7 deletions(-)
diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm
index 76a41a1..d5d0ed2 100644
--- a/lib/IPC/Run.pm
+++ b/lib/IPC/Run.pm
@@ -2987,7 +2987,8 @@ sub _select_loop {
my $io_occurred;
- my $not_forever = 0.01;
+ my $min_select_timeout = 0.01;
+ my $not_forever = $min_select_timeout;
SELECT:
while ( $self->pumpable ) {
@@ -3065,9 +3066,16 @@ sub _select_loop {
## No I/O will wake the select loop up, but we have children
## lingering, so we need to poll them with a short timeout.
## Otherwise, assume more input will be coming.
- $timeout = $not_forever;
- $not_forever *= 2;
- $not_forever = 0.5 if $not_forever >= 0.5;
+
+ if ( !Win32_MODE || $self->{RIN} || $self->{WIN} || $self->{EIN} ) {
+ $timeout = $not_forever;
+ $not_forever *= 2;
+ $not_forever = 0.5 if $not_forever >= 0.5;
+ }
+ else {
+ # see above rationale for Windows-specific behavior
+ $timeout = $min_select_timeout;
+ }
}
## Make sure we don't block forever in select() because inputs are
@@ -3083,9 +3091,14 @@ sub _select_loop {
}
## Otherwise, assume more input will be coming.
- $timeout = $not_forever;
- $not_forever *= 2;
- $not_forever = 0.5 if $not_forever >= 0.5;
+ if ( !Win32_MODE || $self->{RIN} || $self->{WIN} || $self->{EIN} ) {
+ $timeout = $not_forever;
+ $not_forever *= 2;
+ $not_forever = 0.5 if $not_forever >= 0.5;
+ }
+ else {
+ $timeout = $min_select_timeout;
+ }
}
_debug 'timeout=', defined $timeout ? $timeout : 'forever'
From fc9288c673c6edf6b7631f5f7db9fa87086d6dca Mon Sep 17 00:00:00 2001
From: Noah Misch <nmisch@google.com>
Date: Sat, 9 Mar 2024 23:01:32 -0800
Subject: [PATCH 2/5] Detect child exit faster, via SIGCHLD.
In the absence of an application-defined signal handler, SIGCHLD did not
improve _select_loop() responsiveness. Install a transient handler.
---
lib/IPC/Run.pm | 17 +++++++++++++++++
1 file changed, 17 insertions(+)
diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm
index d5d0ed2..f06b993 100644
--- a/lib/IPC/Run.pm
+++ b/lib/IPC/Run.pm
@@ -2985,6 +2985,23 @@ sub _clobber {
sub _select_loop {
my IPC::Run $self = shift;
+ # With !defined $SIG{CHLD} (the default), Perl restarts any select() that
+ # SIGCHLD interrupts. Install a no-op handler, to make select() terminate
+ # with EINTR, accelerating our reaction. This doesn't help if SIGCHLD
+ # arrives just before the select() call; https://cr.yp.to/docs/selfpipe.html
+ # is a way to close that race condition. It doesn't help on Windows, where
+ # we substitute a low timeout in zero-FD (timeout-only) select(). That
+ # spends CPU to achieve responsiveness. We could do better there with a
+ # C-language module that calls OpenProcess(), WSAEventSelect(), and
+ # WaitForMultipleObjects().
+ #
+ # If non-IPC::Run code has installed a handler, via $SIG{CHLD} assignment or
+ # via POSIX::sigaction(), this statement takes no action, and the existing
+ # handler helps just like this one would. The cap on $not_forever helps
+ # when non-IPC::Run code has blocked SIGCHLD, e.g. via POSIX::sigprocmask().
+ local $SIG{CHLD} = sub { }
+ unless defined $SIG{CHLD};
+
my $io_occurred;
my $min_select_timeout = 0.01;
From 1069736bd6605d85e956bf6055be329df9eed555 Mon Sep 17 00:00:00 2001
From: Noah Misch <nmisch@google.com>
Date: Sat, 9 Mar 2024 23:07:02 -0800
Subject: [PATCH 3/5] Extract _waitpid() subroutine from reap_nb().
This refactoring has no functional effects. It makes the function
available to subsequent commits.
---
lib/IPC/Run.pm | 96 +++++++++++++++++++++++++++-----------------------
1 file changed, 52 insertions(+), 44 deletions(-)
diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm
index f06b993..dc508ae 100644
--- a/lib/IPC/Run.pm
+++ b/lib/IPC/Run.pm
@@ -3477,59 +3477,67 @@ sub reap_nb {
## Oh, and this keeps us from reaping other children the process
## may have spawned.
for my $kid ( @{ $self->{KIDS} } ) {
- if (Win32_MODE) {
- next if !defined $kid->{PROCESS} || defined $kid->{RESULT};
- unless ( $kid->{PROCESS}->Wait(0) ) {
- _debug "kid $kid->{NUM} ($kid->{PID}) still running"
- if _debugging_details;
- next;
- }
+ _waitpid($kid);
+ }
+}
- _debug "kid $kid->{NUM} ($kid->{PID}) exited"
- if _debugging;
+# Support routine (non-method) for waitpid() or platform's equivalent. Sets $?
+# and $_[0]->{RESULT} iff the kid exited.
+sub _waitpid {
+ my $kid = shift;
- my $native_result;
- $kid->{PROCESS}->GetExitCode($native_result)
- or croak "$! while GetExitCode()ing for Win32 process";
+ if (Win32_MODE) {
+ return if !defined $kid->{PROCESS} || defined $kid->{RESULT};
+ unless ( $kid->{PROCESS}->Wait(0) ) {
+ _debug "kid $kid->{NUM} ($kid->{PID}) still running"
+ if _debugging_details;
+ return;
+ }
- unless ( defined $native_result ) {
- $kid->{RESULT} = "0 but true";
- $? = $kid->{RESULT} = 0x0F;
- }
- else {
- my $win32_full_result = $native_result << 8;
- if ( $win32_full_result >> 8 != $native_result ) {
+ _debug "kid $kid->{NUM} ($kid->{PID}) exited"
+ if _debugging;
- # !USE_64_BIT_INT build and exit code > 0xFFFFFF
- require Math::BigInt;
- $win32_full_result = Math::BigInt->new($native_result);
- $win32_full_result->blsft(8);
- }
- $? = $kid->{RESULT} = $win32_full_result;
- }
+ my $native_result;
+ $kid->{PROCESS}->GetExitCode($native_result)
+ or croak "$! while GetExitCode()ing for Win32 process";
+
+ unless ( defined $native_result ) {
+ $kid->{RESULT} = "0 but true";
+ $? = $kid->{RESULT} = 0x0F;
}
else {
- next if !defined $kid->{PID} || defined $kid->{RESULT};
- my $pid = waitpid $kid->{PID}, POSIX::WNOHANG();
- unless ($pid) {
- _debug "$kid->{NUM} ($kid->{PID}) still running"
- if _debugging_details;
- next;
- }
+ my $win32_full_result = $native_result << 8;
+ if ( $win32_full_result >> 8 != $native_result ) {
- if ( $pid < 0 ) {
- _debug "No such process: $kid->{PID}\n" if _debugging;
- $kid->{RESULT} = "unknown result, unknown PID";
+ # !USE_64_BIT_INT build and exit code > 0xFFFFFF
+ require Math::BigInt;
+ $win32_full_result = Math::BigInt->new($native_result);
+ $win32_full_result->blsft(8);
}
- else {
- _debug "kid $kid->{NUM} ($kid->{PID}) exited"
- if _debugging;
+ $? = $kid->{RESULT} = $win32_full_result;
+ }
+ }
+ else {
+ return if !defined $kid->{PID} || defined $kid->{RESULT};
+ my $pid = waitpid $kid->{PID}, POSIX::WNOHANG();
+ unless ($pid) {
+ _debug "$kid->{NUM} ($kid->{PID}) still running"
+ if _debugging_details;
+ return;
+ }
- confess "waitpid returned the wrong PID: $pid instead of $kid->{PID}"
- unless $pid == $kid->{PID};
- _debug "$kid->{PID} returned $?\n" if _debugging;
- $kid->{RESULT} = $?;
- }
+ if ( $pid < 0 ) {
+ _debug "No such process: $kid->{PID}\n" if _debugging;
+ $kid->{RESULT} = "unknown result, unknown PID";
+ }
+ else {
+ _debug "kid $kid->{NUM} ($kid->{PID}) exited"
+ if _debugging;
+
+ confess "waitpid returned the wrong PID: $pid instead of $kid->{PID}"
+ unless $pid == $kid->{PID};
+ _debug "$kid->{PID} returned $?\n" if _debugging;
+ $kid->{RESULT} = $?;
}
}
}
From ab6867148b1f891aa1e423dfd70a30d07d985d46 Mon Sep 17 00:00:00 2001
From: Noah Misch <nmisch@google.com>
Date: Sat, 9 Mar 2024 23:09:59 -0800
Subject: [PATCH 4/5] Fix _cleanup() "reaping child" code for Windows.
This code didn't know about GetExitCode(), and it cleaned up filters too
early. This code was mostly unreachable, because callers kill_kill()
and finish() reap all kids first. The next commit will change that.
This might already be reachable when start() failure calls _cleanup(),
but broken $? values or I/O results are unimportant then.
---
lib/IPC/Run.pm | 34 +++++++++++++++++++++-------------
1 file changed, 21 insertions(+), 13 deletions(-)
diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm
index dc508ae..fd74fb7 100644
--- a/lib/IPC/Run.pm
+++ b/lib/IPC/Run.pm
@@ -3256,8 +3256,8 @@ sub _cleanup {
## _clobber modifies PIPES
$self->_clobber( $self->{PIPES}->[0] ) while @{ $self->{PIPES} };
+ # reap kids
for my $kid ( @{ $self->{KIDS} } ) {
- _debug "cleaning up kid ", $kid->{NUM} if _debugging_details;
if ( !length $kid->{PID} ) {
_debug 'never ran child ', $kid->{NUM}, ", can't reap"
if _debugging;
@@ -3266,14 +3266,15 @@ sub _cleanup {
if defined $op->{TFD} && !defined $op->{TEMP_FILE_HANDLE};
}
}
- elsif ( !defined $kid->{RESULT} ) {
- _debug 'reaping child ', $kid->{NUM}, ' (pid ', $kid->{PID}, ')'
- if _debugging;
- my $pid = waitpid $kid->{PID}, 0;
- $kid->{RESULT} = $?;
- _debug 'reaped ', $pid, ', $?=', $kid->{RESULT}
- if _debugging;
+ else {
+ _waitpid( $kid, 0 );
}
+ }
+
+ # OPS cleanup. Kids may share an OPS object; search for "also to write".
+ # Example harness: run(['echo',1], '&', ['echo',2], '>', \$out). Hence,
+ # this starts after the last reap.
+ for my $kid ( @{ $self->{KIDS} } ) {
# if ( defined $kid->{DEBUG_FD} ) {
# die;
@@ -3283,7 +3284,7 @@ sub _cleanup {
# $kid->{DEBUG_FD} = undef;
# }
- _debug "cleaning up filters" if _debugging_details;
+ _debug "cleaning up filters at kid ", $kid->{NUM} if _debugging_details;
for my $op ( @{ $kid->{OPS} } ) {
@{ $op->{FILTERS} } = grep {
my $filter = $_;
@@ -3477,18 +3478,23 @@ sub reap_nb {
## Oh, and this keeps us from reaping other children the process
## may have spawned.
for my $kid ( @{ $self->{KIDS} } ) {
- _waitpid($kid);
+ _waitpid( $kid, 1 );
}
}
# Support routine (non-method) for waitpid() or platform's equivalent. Sets $?
# and $_[0]->{RESULT} iff the kid exited.
sub _waitpid {
- my $kid = shift;
+ my ( $kid, $nohang ) = @_;
if (Win32_MODE) {
+ require Win32::Process;
+
return if !defined $kid->{PROCESS} || defined $kid->{RESULT};
- unless ( $kid->{PROCESS}->Wait(0) ) {
+ my $wait_timeout = $nohang ? 0 : Win32::Process::INFINITE();
+ unless ( $kid->{PROCESS}->Wait($wait_timeout) ) {
+ confess "kid $kid->{PID} still running after indefinite wait"
+ unless $nohang;
_debug "kid $kid->{NUM} ($kid->{PID}) still running"
if _debugging_details;
return;
@@ -3519,8 +3525,10 @@ sub _waitpid {
}
else {
return if !defined $kid->{PID} || defined $kid->{RESULT};
- my $pid = waitpid $kid->{PID}, POSIX::WNOHANG();
+ my $pid = waitpid $kid->{PID}, $nohang ? POSIX::WNOHANG() : 0;
unless ($pid) {
+ confess "kid $kid->{PID} still running after indefinite wait"
+ unless $nohang;
_debug "$kid->{NUM} ($kid->{PID}) still running"
if _debugging_details;
return;
From 896429f9ab8cfbc0dc186e14dff5bc482cc0277e Mon Sep 17 00:00:00 2001
From: Noah Misch <nmisch@google.com>
Date: Sat, 9 Mar 2024 23:10:45 -0800
Subject: [PATCH 5/5] Detect child exit faster, via blocking waitpid(), if
awaiting nothing else.
This helps when the application blocks SIGCHLD or the platform does not
provide SIGCHLD. Expect it to be more efficient, too.
---
lib/IPC/Run.pm | 6 ++++--
1 file changed, 4 insertions(+), 2 deletions(-)
diff --git a/lib/IPC/Run.pm b/lib/IPC/Run.pm
index fd74fb7..81f42bf 100644
--- a/lib/IPC/Run.pm
+++ b/lib/IPC/Run.pm
@@ -3589,8 +3589,10 @@ sub finish {
# We don't alter $self->{clear_ins}, start() and run() control it.
- while ( $self->pumpable ) {
- $self->_select_loop($options);
+ if ( %{ $self->{PTYS} } || @{ $self->{PIPES} } || @{ $self->{TIMERS} } ) {
+ while ( $self->pumpable ) {
+ $self->_select_loop($options);
+ }
}
$self->_cleanup;
|