Page Menu
Home
Phorge
Search
Configure Global Search
Log In
Files
F2874960
D25149.1736968245.diff
No One
Temporary
Actions
View File
Edit File
Delete File
View Transforms
Subscribe
Award Token
Flag For Later
Advanced/Developer...
View Handle
View Hovercard
Size
2 KB
Referenced Files
None
Subscribers
None
D25149.1736968245.diff
View Options
diff --git a/src/applications/config/controller/PhabricatorConfigConsoleController.php b/src/applications/config/controller/PhabricatorConfigConsoleController.php
--- a/src/applications/config/controller/PhabricatorConfigConsoleController.php
+++ b/src/applications/config/controller/PhabricatorConfigConsoleController.php
@@ -150,6 +150,16 @@
$log_futures = array();
$remote_futures = array();
+ // Git commands needs the HOME environment variable
+ // to read their .gitconfig - otherwise you cannot
+ // fix errors like "detected dubious ownership"
+ // https://we.phorge.it/T15282
+ $commands_env = array();
+ $webserver_home = self::webserverHomePath();
+ if ($webserver_home) {
+ $commands_env['HOME'] = $webserver_home;
+ }
+
foreach ($specs as $lib) {
$root = dirname(phutil_get_library_root($lib));
@@ -161,9 +171,11 @@
'git remote -v');
$log_futures[$lib] = id(new ExecFuture('%C', $log_command))
+ ->setEnv($commands_env)
->setCWD($root);
$remote_futures[$lib] = id(new ExecFuture('%C', $remote_command))
+ ->setEnv($commands_env)
->setCWD($root);
}
@@ -340,5 +352,40 @@
->appendChild($table_view);
}
+ /**
+ * Get the HOME of the current webserver user
+ *
+ * Example: In mod_php it returns something like "/var/www/html"
+ * Example: In PHP-FPM it returns the home of the configured pool user
+ *
+ * @return string|null|false
+ */
+ private static function webserverHomePath() {
+
+ $home = null;
+
+ // Almost surely Microsoft Windows does not have these functions
+ if (function_exists('posix_geteuid') && function_exists('posix_getpwuid')) {
+
+ // This is almost surely Unix/Linux
+
+ // Let's read the "effective" user UID (not the "real" one)
+ // Example: in PHP-FPM we want the effective pool user, not root daemon
+ // https://we.phorge.it/T15298
+ $webserver_user = posix_getpwuid(posix_geteuid());
+ if ($webserver_user !== false) {
+ $home = $webserver_user['dir'];
+ }
+ } else {
+
+ // This is almost surely Microsoft Windows
+
+ // Let's read this environment var
+ // if missing, it's just false
+ $home = getenv('USERPROFILE');
+ }
+
+ return $home;
+ }
}
File Metadata
Details
Attached
Mime Type
text/plain
Expires
Wed, Jan 15, 19:10 (2 d, 23 h ago)
Storage Engine
blob
Storage Format
Raw Data
Storage Handle
1114232
Default Alt Text
D25149.1736968245.diff (2 KB)
Attached To
Mode
D25149: Config page: add $HOME to allow a gitconfig and help on "dubious ownership"
Attached
Detach File
Event Timeline
Log In to Comment