Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15432615
D212.id433.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Flag For Later
Size
1 KB
Referenced Files
None
Subscribers
None
D212.id433.diff
View Options
Index: src/daemon/overseer/PhutilDaemonOverseer.php
===================================================================
--- src/daemon/overseer/PhutilDaemonOverseer.php
+++ src/daemon/overseer/PhutilDaemonOverseer.php
@@ -40,6 +40,7 @@
private $traceMemory;
private $daemonize;
private $phddir;
+ private $conduit;
private $conduitURI;
public function __construct($daemon, array $argv) {
@@ -135,9 +136,18 @@
$exec_dir = $root.'/scripts/daemon/exec/';
+ // NOTE: In Ubuntu, this command is executed via an intermediary shell
+ // due to some awkward implemenation artifact beyond our control.
+ // We use 'exec' to replace it with the real process; without this,
+ // the child will call posix_getppid(), be given the pid of the 'sh -c'
+ // process, and send it SIGUSR1 to keepalive which will terminate it
+ // immediately. We also won't be able to do process group management
+ // because the shell process won't properly posix_setsid() so the pgid
+ // of the child won't be meaningful.
+
$exec_daemon = './exec_daemon.php';
$argv = $this->argv;
- array_unshift($argv, $exec_daemon, $this->daemon);
+ array_unshift($argv, 'exec', $exec_daemon, $this->daemon);
foreach ($argv as $k => $arg) {
$argv[$k] = escapeshellarg($arg);
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Tue, Mar 25, 6:47 PM (1 w, 4 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7722502
Default Alt Text
D212.id433.diff (1 KB)
Attached To
Mode
D212: Fix daemon issues caused by Ubuntu's surprising intermediary shell
Attached
Detach File
Event Timeline
Log In to Comment