c4b5f76aaaa80ffd377e0d08aa2a4a44e1d62100
[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 <stdint.h>
23 #include <stdlib.h>
24 #include <sys/types.h>
25
26 #ifndef VC_NOCTX
27 #  define VC_NOCTX      ((ctx_t)(-1))
28 #endif
29
30 #ifndef S_CTX_INFO_LOCK
31 #  define S_CTX_INFO_LOCK       1
32 #endif
33
34 #ifndef S_CTX_INFO_SCHED
35 #  define S_CTX_INFO_SCHED      2
36 #endif
37
38 #ifndef S_CTX_INFO_NPROC
39 #  define S_CTX_INFO_NPROC      4
40 #endif
41
42 #ifndef S_CTX_INFO_PRIVATE
43 #  define S_CTX_INFO_PRIVATE    8
44 #endif
45
46 #ifndef S_CTX_INFO_INIT
47 #  define S_CTX_INFO_INIT       16
48 #endif
49
50 #ifndef S_CTX_INFO_HIDEINFO
51 #  define S_CTX_INFO_HIDEINFO   32
52 #endif
53
54 #ifndef S_CTX_INFO_ULIMIT
55 #  define S_CTX_INFO_ULIMIT     64
56 #endif
57
58
59 #ifdef __cplusplus
60 extern "C" {
61 #endif
62
63   struct vc_ip_mask_pair {
64     uint32_t    ip;
65     uint32_t    mask;
66   };
67
68     /** Returns version of the given API-category */
69   int   vc_get_version(int category);
70   
71     /** Puts current process into context <ctx>, removes the given caps and
72      *  sets flags.
73      *  Special values for ctx are
74      *  - -2 which means the current context (just for changing caps and flags)
75      *  - -1 which means the next free context; this value can be used by
76      *    ordinary users also */
77   int   vc_new_s_context(ctx_t ctx, unsigned int remove_cap, unsigned int flags);
78
79     /** Sets the ipv4root information.
80      *  \precondition: nb<16 */
81   int   vc_set_ipv4root(uint32_t  bcast, size_t nb, struct vc_ip_mask_pair const *ips);
82   
83   int   vc_chrootsafe(char const *dir);
84
85
86     /** Returns the context of the given process. pid==0 means the current process. */
87   ctx_t vc_X_getctx(pid_t pid);
88
89     /** Returns the pid of the 'init' process */
90   pid_t vc_X_getinitpid(pid_t pid);
91   
92 #ifdef __cplusplus
93 }
94 #endif
95
96 #endif