e425fc1c5d753ff509a19242c9e4a332f74e86e2
[util-vserver.git] / util-vserver / lib / vserver.h
1 // $Id$
2
3 // Copyright (C) 2003 Enrico Scholz <enrico.scholz@informatik.tu-chemnitz.de>
4 //  
5 // This program is free software; you can redistribute it and/or modify
6 // it under the terms of the GNU General Public License as published by
7 // the Free Software Foundation; either version 2, or (at your option)
8 // any later version.
9 //  
10 // This program is distributed in the hope that it will be useful,
11 // but WITHOUT ANY WARRANTY; without even the implied warranty of
12 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 // GNU General Public License for more details.
14 //  
15 // You should have received a copy of the GNU General Public License
16 // along with this program; if not, write to the Free Software
17 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18
19 #ifndef H_VSERVER_SYSCALL_H
20 #define H_VSERVER_SYSCALL_H
21
22 #include <sys/types.h>
23 #include <unistd.h>
24
25 #define CTX_NOCTX       ((ctx_t)(-1))
26
27 #ifdef __cplusplus
28 extern "C" {
29 #endif
30
31   typedef short int     ctx_t;
32
33 int call_new_s_context(int nbctx, int ctxs[], int remove_cap, int flags);
34 int call_set_ipv4root (unsigned long ip[], int nb,
35                        unsigned long bcast, unsigned long mask[]);
36 int call_chrootsafe (const char *dir);
37 int has_chrootsafe();
38 int call_set_ctxlimit (int res, long limit);
39
40 void    vserver_init();
41
42   ctx_t         getctx(pid_t pid);
43
44 #define getcctx()       (getctx(getpid()))
45
46 #ifdef __cplusplus
47 }
48 #endif
49
50 #endif