summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorColin Walters <walters@verbum.org>2016-05-02 10:38:16 -0400
committerColin Walters <walters@verbum.org>2016-05-02 10:38:16 -0400
commit85c9dd5c073a8c0d74c4baa2e4a94f5535984e62 (patch)
tree27de498869f5499aaddc4d3c1e786aff2dad0853
parent47ddbfa56341df3a9453854e1101e1c2f2359ddb (diff)
downloadlibglnx-85c9dd5c073a8c0d74c4baa2e4a94f5535984e62.tar.gz
libcontainer: Always set PATH when running in new root
For rpm-ostree's use we always run in a new root, so we don't want to inherit the host system's PATH. For example, NixOS uses PATH for its software namespacing, but one could be using rpm-ostree to build CentOS commits.
-rw-r--r--glnx-libcontainer.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/glnx-libcontainer.c b/glnx-libcontainer.c
index 8c0f340..38c1937 100644
--- a/glnx-libcontainer.c
+++ b/glnx-libcontainer.c
@@ -274,6 +274,14 @@ glnx_libcontainer_run_chroot_private (const char *dest,
if (chdir ("/") != 0)
_perror_fatal ("chdir: ");
+ /* Environment variables like PATH in the end are distribution
+ * specific. The most correct thing would be to run through PAM,
+ * but that's a huge level of pain. We'd like to drive towards a
+ * standard /usr/bin (i.e. unified sbin too), but for now this is
+ * pretty compatible.
+ */
+ setenv ("PATH", "/usr/local/sbin:/usr/local/bin:/usr/sbin:/usr/bin:/sbin:/bin", 1);
+
if (binary[0] == '/')
{
if (execv (binary, argv) != 0)
@@ -281,9 +289,6 @@ glnx_libcontainer_run_chroot_private (const char *dest,
}
else
{
- /* Set PATH to something sane. */
- setenv ("PATH", "/usr/sbin:/usr/bin", 1);
-
if (execvp (binary, argv) != 0)
_perror_fatal ("execvp: ");
}