Page Menu
Home
Phabricator
Search
Configure Global Search
Log In
Files
F15424869
D12571.id30182.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
D12571.id30182.diff
View Options
diff --git a/support/PhabricatorStartup.php b/support/PhabricatorStartup.php
--- a/support/PhabricatorStartup.php
+++ b/support/PhabricatorStartup.php
@@ -425,7 +425,8 @@
$_POST = array_merge($_POST, $filtered);
break;
case INPUT_ENV;
- $_ENV = array_merge($_ENV, $filtered);
+ $env = array_merge($_ENV, $filtered);
+ $_ENV = self::filterEnvSuperglobal($env);
break;
}
}
@@ -458,6 +459,30 @@
}
}
+
+ /**
+ * Adjust `$_ENV` before execution.
+ *
+ * Adjustments here primarily impact the environment as seen by subprocesses.
+ * The environment is forwarded explicitly by @{class:ExecFuture}.
+ *
+ * @param map<string, wild> Input `$_ENV`.
+ * @return map<string, string> Suitable `$_ENV`.
+ * @task validation
+ */
+ private static function filterEnvSuperglobal(array $env) {
+
+ // In some configurations, we may get "argc" and "argv" set in $_ENV.
+ // These are not real environmental variables, and "argv" may have an array
+ // value which can not be forwarded to subprocesses. Remove these from the
+ // environment if they are present.
+ unset($env['argc']);
+ unset($env['argv']);
+
+ return $env;
+ }
+
+
/**
* @task validation
*/
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Mon, Mar 24, 12:40 AM (1 w, 5 d ago)
Storage Engine
blob
Storage Format
Encrypted (AES-256-CBC)
Storage Handle
7704620
Default Alt Text
D12571.id30182.diff (1 KB)
Attached To
Mode
D12571: Filter potentially problematic $_ENV variables
Attached
Detach File
Event Timeline
Log In to Comment