diff options
author | lns <matzeton@googlemail.com> | 2018-04-29 11:32:58 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2018-04-29 11:32:58 +0200 |
commit | a4fc4120d474ee277e3f24c8c7ea5929b489d477 (patch) | |
tree | d0f78b0f0e9000092ce2621b5963a18f1c448ebc /src/jail.c | |
parent | b38788d83796f12e6bb060b11ab7b843c4340c99 (diff) |
POTD skeleton #37.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 35 |
1 files changed, 31 insertions, 4 deletions
@@ -5,6 +5,7 @@ #include <pty.h> #include <sys/epoll.h> #include <sys/prctl.h> +#include <sys/stat.h> #include <assert.h> #include "jail.h" @@ -250,7 +251,8 @@ static int jail_childfn(void *arg) { jail_prisoner_process *args; const char *path_dev = "/dev"; - int term_fd; + const char *path_devpts = "/dev/pts"; + int s, term_fd; struct termios *term = NULL; struct winsize *win = NULL; pid_t child_pid; @@ -273,12 +275,37 @@ static int jail_childfn(void *arg) exit(EXIT_FAILURE); } - D2("Mounting %s to %s%s", path_dev, args->newroot, path_dev); - if (dir_is_mountpoint(path_dev) > 0) { + D2("Mounting rootfs to %s", args->newroot); + mount_root(); + + D2("Mounting devtmpfs to %s%s", args->newroot, path_dev); + s = mkdir(path_dev, S_IRUSR|S_IWUSR|S_IXUSR| + S_IRGRP|S_IXGRP| + S_IROTH|S_IXOTH); + if (s && errno != EEXIST) { + E2("Could not create directory: %s", path_dev); + E_STRERR("mkdir"); + exit(EXIT_FAILURE); + } + if (dir_is_mountpoint(path_dev)) { W2("%s%s is already a mountpoint", args->newroot, path_dev); } if (mount_dev(path_dev)) { - E2("Can not mount /dev to %s%s", args->newroot, path_dev); + E2("Can not mount devtmpfs to %s%s", args->newroot, path_dev); + exit(EXIT_FAILURE); + } + + D2("Mounting devpts to %s%s", args->newroot, path_devpts); + s = mkdir(path_devpts, S_IRUSR|S_IWUSR|S_IXUSR| + S_IRGRP|S_IXGRP| + S_IROTH|S_IXOTH); + if (s && errno != EEXIST) { + E2("Could not create directory: %s", path_devpts); + E_STRERR("mkdir"); + exit(EXIT_FAILURE); + } + if (!dir_is_mountpoint(path_devpts) && mount_pts(path_devpts)) { + E2("Can not mount devpts to %s%s", args->newroot, path_devpts); exit(EXIT_FAILURE); } |