blob: cd8189a72c8f8cb9f2314f1447cda6be29d3b996 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
#include <stdio.h>
#include <stdlib.h>
#include <assert.h>
#include "jail.h"
int jail_init(jail_ctx **ctx, size_t stacksize)
{
assert(ctx);
if (stacksize > BUFSIZ)
stacksize = BUFSIZ;
if (!*ctx)
*ctx = calloc(1, sizeof(**ctx));
assert(*ctx);
(*ctx)->stacksize = stacksize;
(*ctx)->stack_ptr =
(unsigned char *) calloc(1, (*ctx)->stacksize)
+ (*ctx)->stacksize;
return 0;
}
void jail_free(jail_ctx **ctx)
{
}
int jail_fork(jail_ctx *ctx)
{
return 0;
}
|