Browse Source

Handle exceptions from child processes

rpm
J. King 3 years ago
parent
commit
e160189224
  1. 20
      lib/Service/Daemon.php

20
lib/Service/Daemon.php

@ -6,6 +6,8 @@
declare(strict_types=1);
namespace JKingWeb\Arsse\Service;
use JKingWeb\Arsse\AbstractException;
class Daemon {
protected const PID_PATTERN = '/^([1-9]\d{0,77})?$/D'; // no more than 78 digits (256-bit unsigned integer), starting with a digit other than zero
@ -34,7 +36,10 @@ class Daemon {
case 0:
fclose($pipe[0]);
# In the child, call setsid() to detach from any terminal and create an independent session.
@posix_setsid();
try {
if (@posix_setsid() === -1) {
throw new Exception("forkFailed", ['instance' => 1]);
}
# In the child, call fork() again, to ensure that the daemon can never re-acquire a terminal again. (This relevant if the program — and all its dependencies — does not carefully specify `O_NOCTTY` on each and every single `open()` call that might potentially open a TTY device node.)
switch (@pcntl_fork()) {
case -1:
@ -49,7 +54,7 @@ class Daemon {
# From the daemon process, notify the original process started that initialization is complete. This can be implemented via an unnamed pipe or similar communication channel that is created before the first fork() and hence available in both the original and the daemon process.
fwrite($pipe[1], (string) posix_getpid());
fclose($pipe[1]);
// now everything else is done in order
// now everything else is done in order, but beyond this point any errors cannot be reported back to the original process
# In the daemon process, connect /dev/null to standard input, output, and error.
fclose(STDIN);
fclose(STDOUT);
@ -67,9 +72,18 @@ class Daemon {
# Call exit() in the first child, so that only the second child (the actual daemon process) stays around. This ensures that the daemon process is re-parented to init/PID 1, as all daemons should be.
exit;
}
} catch (AbstractException $e) {
// transmit the exception back to the original process, which will re-create the exception if necessary
@fwrite($pipe[1], json_encode([get_class($e), $e->getSymbol(), $e->getParams()]));
exit;
}
default:
fclose($pipe[1]);
$result = fread($pipe[0], 100);
$result = json_decode(fread($pipe[0], 100), true);
if ($result) {
[$class, $symbol, $params] = $result;
throw new $class($symbol, $params);
}
fclose($pipe[0]);
# Call exit() in the original process. The process that invoked the daemon must be able to rely on that this exit() happens after initialization is complete and all external communication channels are established and accessible.
exit;

Loading…
Cancel
Save