aboutsummaryrefslogtreecommitdiff
path: root/src/jail.c
diff options
context:
space:
mode:
authorToni Uhlig <matzeton@googlemail.com>2018-05-15 14:34:39 +0200
committerToni Uhlig <matzeton@googlemail.com>2018-05-15 14:34:39 +0200
commit58d2689b9b43dfd4341b2eb227c51d89d873b35e (patch)
tree134d89c8387b107bac7ba2e7206acdd8a8c60acd /src/jail.c
parent19299c4c0cf3f0a0c1fcdda1783f4593245358e6 (diff)
POTD skeleton #54.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r--src/jail.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/jail.c b/src/jail.c
index 13040ec..8a2f410 100644
--- a/src/jail.c
+++ b/src/jail.c
@@ -229,9 +229,10 @@ static int jail_childfn(prisoner_process *ctx)
const char *path_devpts = "/dev/pts";
const char *path_proc = "/proc";
const char *path_shell = "/bin/sh";
+ //const char *path_self = "/proc/self/%s";
int s, master_fd;
int unshare_flags = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC|
- CLONE_NEWNS|CLONE_NEWNET;
+ CLONE_NEWNS|CLONE_NEWNET/*|CLONE_NEWUSER*/;
pid_t self_pid, child_pid;
assert(ctx);