diff options
Diffstat (limited to 'src/jail.c')
-rw-r--r-- | src/jail.c | 6 |
1 files changed, 6 insertions, 0 deletions
@@ -91,6 +91,12 @@ int jail_validate_ctx(const jail_ctx *ctx) assert(ctx); assert(ctx->fwd_ctx.sock.addr_len > 0); assert(ctx->stack_ptr); + assert(ctx->newroot); + + if (access(ctx->newroot, R_OK|X_OK)) { + E_STRERR("new root directory access to '%s'", ctx->newroot); + return 1; + } return 0; } |