aboutsummaryrefslogtreecommitdiff
path: root/src/jail.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/jail.c')
-rw-r--r--src/jail.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/jail.c b/src/jail.c
index 5671499..20dee9a 100644
--- a/src/jail.c
+++ b/src/jail.c
@@ -450,6 +450,15 @@ static int jail_childfn(prisoner_process *ctx)
if (sethostname("openwrt", SIZEOF("openwrt")))
exit(EXIT_FAILURE);
+ /* TODO: map root user: unshare(CLONE_NEWUSER); */
+ if (setresgid(65534, 65534, 65534)) {
+ D2("setregid failed: %s", strerror(errno));
+ }
+ if (setresuid(65534, 65534, 65534)) {
+ D2("setreuid failed: %s", strerror(errno));
+ exit(EXIT_FAILURE);
+ }
+
printf("%s",
" _______ ________ __\n"
" | |.-----.-----.-----.| | | |.----.| |_\n"