diff options
author | lns <matzeton@googlemail.com> | 2018-04-27 13:12:22 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2018-04-27 13:12:22 +0200 |
commit | 533f9b6dea8365fe911955cc93f5c6d59daebfec (patch) | |
tree | 81d854783a7063bf826e072f57f010c86c47698c /src/jail.c | |
parent | 2c18582245f9b68369a4bb25e602dd449ccf6410 (diff) |
POTD skeleton #34.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 13 |
1 files changed, 13 insertions, 0 deletions
@@ -16,6 +16,7 @@ typedef struct jail_prisoner_process { pid_t prisoner_pid; psocket client_psock; char host_buf[NI_MAXHOST], service_buf[NI_MAXSERV]; + char *newroot; } jail_prisoner_process; static int jail_mainloop_epoll(int epoll_fd, jail_ctx *ctx[], size_t siz); @@ -212,6 +213,7 @@ static int jail_accept_client(jail_ctx *ctx[], if (ctx[i]->sock.fd == event->data.fd) { args = (jail_prisoner_process *) calloc(1, sizeof(*args)); assert(args); + args->newroot = ctx[i]->newroot; if (socket_accept_in(&ctx[i]->sock, &args->client_psock)) { E_STRERR("Could not accept client connection"); @@ -254,6 +256,17 @@ static int jail_childfn(void *arg) E_STRERR("Jail child prctl"); exit(EXIT_FAILURE); } + + if (!args->newroot) { + E2("%s", "No new root set"); + exit(EXIT_FAILURE); + } + N2("Safe change root to: '%s'", args->newroot); + if (safe_chroot(args->newroot)) { + E2("Safe jail chroot to '%s' failed", args->newroot); + exit(EXIT_FAILURE); + } + printf("----> CHILD FN: %d <----\n", args->client_psock.fd); sleep(10); |