From: Daniel Golle Date: Sun, 12 Apr 2020 14:51:49 +0000 (+0100) Subject: jail: only mess with rootfs if CLONE_NEWNS was set X-Git-Url: https://git.librecmc.org/?p=oweals%2Fprocd.git;a=commitdiff_plain;h=32c717e18ee3f73a68ac854cfc5ba9e7cbf8c3b1 jail: only mess with rootfs if CLONE_NEWNS was set Avoid messing up rootfs of the parent/only mount namespace for the unusual case of a jailed process which does use namespaces, but doesn't make use of mount namespaces. Signed-off-by: Daniel Golle --- diff --git a/jail/jail.c b/jail/jail.c index ec106d2..fa8da01 100644 --- a/jail/jail.c +++ b/jail/jail.c @@ -502,7 +502,7 @@ static int exec_jail(void *pipes_ptr) exit(EXIT_FAILURE); } - if (opts.namespace && build_jail_fs()) { + if ((opts.namespace & CLONE_NEWNS) && build_jail_fs()) { ERROR("failed to build jail fs\n"); exit(EXIT_FAILURE); }