diff options
-rw-r--r-- | TODO | 2 | ||||
-rw-r--r-- | src/nspawn/nspawn.c | 17 |
2 files changed, 17 insertions, 2 deletions
@@ -180,8 +180,6 @@ Features: * nspawn: implement personality changes a la linux32(8) -* nspawn: reset all aux groups - * cryptsetup-generator: warn if the password files are world-readable * cryptsetup-generator: add RequiresMountsFor= to cryptseup service files referencing a file, similar for devices diff --git a/src/nspawn/nspawn.c b/src/nspawn/nspawn.c index 244ebb8342..59171abff3 100644 --- a/src/nspawn/nspawn.c +++ b/src/nspawn/nspawn.c @@ -1327,6 +1327,23 @@ int main(int argc, char *argv[]) { log_error("setreuid() failed: %m"); goto child_fail; } + } else { + /* Reset everything fully to 0, just in case */ + + if (setgroups(0, NULL) < 0) { + log_error("setgroups() failed: %m"); + goto child_fail; + } + + if (setresgid(0, 0, 0) < 0) { + log_error("setregid() failed: %m"); + goto child_fail; + } + + if (setresuid(0, 0, 0) < 0) { + log_error("setreuid() failed: %m"); + goto child_fail; + } } if ((asprintf((char**)(envp + 3), "HOME=%s", home ? home: "/root") < 0) || |