diff options
author | Toni Uhlig <matzeton@googlemail.com> | 2018-05-15 14:34:39 +0200 |
---|---|---|
committer | Toni Uhlig <matzeton@googlemail.com> | 2018-05-15 14:34:39 +0200 |
commit | 58d2689b9b43dfd4341b2eb227c51d89d873b35e (patch) | |
tree | 134d89c8387b107bac7ba2e7206acdd8a8c60acd /src/jail.c | |
parent | 19299c4c0cf3f0a0c1fcdda1783f4593245358e6 (diff) |
POTD skeleton #54.
Signed-off-by: Toni Uhlig <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 3 |
1 files changed, 2 insertions, 1 deletions
@@ -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); |