diff options
author | lns <matzeton@googlemail.com> | 2018-04-22 13:00:31 +0200 |
---|---|---|
committer | lns <matzeton@googlemail.com> | 2018-04-22 13:00:31 +0200 |
commit | 3778cdb66b7a7fc3e6dd43be0bb0da0c5f3f0d7a (patch) | |
tree | 12ee61fe3ff701c83b764c176a3557021206d699 /src/jail.c | |
parent | aaa10f05c673ae2f5893bf54db5660d474b9759c (diff) |
POTD skeleton #23.
Signed-off-by: lns <matzeton@googlemail.com>
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 31 |
1 files changed, 26 insertions, 5 deletions
@@ -1,11 +1,15 @@ #include <stdio.h> #include <stdlib.h> +#include <sched.h> +#include <signal.h> #include <assert.h> #include "jail.h" +static int jail_childfn(void *arg); -int jail_init(jail_ctx **ctx, size_t stacksize) + +void jail_init(jail_ctx **ctx, size_t stacksize) { assert(ctx); if (stacksize > BUFSIZ) @@ -15,18 +19,35 @@ int jail_init(jail_ctx **ctx, size_t stacksize) assert(*ctx); (*ctx)->stacksize = stacksize; - (*ctx)->stack_ptr = - (unsigned char *) calloc(1, (*ctx)->stacksize) + (*ctx)->stack_ptr = calloc(1, (*ctx)->stacksize); + (*ctx)->stack_beg = + (unsigned char *) (*ctx)->stack_ptr + (*ctx)->stacksize; - - return 0; } void jail_free(jail_ctx **ctx) { + free((*ctx)->stack_ptr); + free(*ctx); + *ctx = NULL; } int jail_fork(jail_ctx *ctx) { + int clone_flags = CLONE_NEWUTS|CLONE_NEWPID|CLONE_NEWIPC| + CLONE_NEWNS|CLONE_NEWNET; + + assert(ctx); + ctx->jail_pid = clone(jail_childfn, ctx->stack_beg, + SIGCHLD|clone_flags, ctx); + + return ctx->jail_pid < 0; +} + +static int jail_childfn(void *arg) +{ + FILE *log = fopen("./test.log", "wb"); + fprintf(log, "---> CHILD FN <----\n"); + sleep(200); return 0; } |