7a4324f178b0bb4ffac692bfcdb2f24b94e65e23
[util-vserver.git] / util-vserver / lib / vserver-internal.h
1 // $Id$    --*- c++ -*--
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; version 2 of the License.
8 //  
9 // This program is distributed in the hope that it will be useful,
10 // but WITHOUT ANY WARRANTY; without even the implied warranty of
11 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 // GNU General Public License for more details.
13 //  
14 // You should have received a copy of the GNU General Public License
15 // along with this program; if not, write to the Free Software
16 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17
18
19 #ifndef H_VSERVER_SYSCALL_INTERNAL_H
20 #define H_VSERVER_SYSCALL_INTERNAL_H
21
22 #include <asm/unistd.h>
23 #include <syscall.h>
24 #include <errno.h>
25 #include <stdint.h>
26 #include <sys/syscall.h>
27 #include <unistd.h>
28
29 #include "internal.h"
30
31 #ifndef __NR_vserver
32 #  define __NR_vserver  273
33 #endif
34
35 #define VC_PREFIX       0)
36 #define VC_SUFFIX       else (void)((void)0
37 #define CALL_VC_NOOP    (void)0
38 #define CALL_VC_GENERAL(ID, SUFFIX, FUNC, ...)                          \
39   VC_PREFIX; VC_SELECT(ID) return FUNC ## _ ## SUFFIX(__VA_ARGS__); VC_SUFFIX
40
41 #if 1
42 #  define VC_SELECT(ID) case ID: if(1)
43 #  define CALL_VC(...)                                  \
44   do {                                                  \
45     switch (utilvserver_checkCompatVersion()&~0xff) {   \
46       case -1 & ~0xff   :  if (1) break;                \
47         VC_SUFFIX, __VA_ARGS__ , VC_PREFIX;             \
48       default   :  errno = EINVAL;                      \
49     }                                                   \
50     return -1;                                          \
51   } while (0)
52 #else
53 #  define VC_SELECT(ID) if (1)
54 #  define CALL_VC(...)                                  \
55   do {                                                  \
56     if (1) {} VC_SUFFIX, __VA_ARGS__, VC_PREFIX;        \
57     errno = ENOSYS; return -1;                          \
58   } while (0)
59 #endif
60
61 #ifdef VC_ENABLE_API_COMPAT
62 #  define CALL_VC_COMPAT(F,...) CALL_VC_GENERAL(0x00010000, compat, F, __VA_ARGS__)
63 #else
64 #  define CALL_VC_COMPAT(F,...) CALL_VC_NOOP
65 #endif
66
67 #ifdef VC_ENABLE_API_LEGACY
68 #  define CALL_VC_LEGACY(F,...) CALL_VC_GENERAL(0x00000000, legacy, F, __VA_ARGS__)
69 #else
70 #  define CALL_VC_LEGACY(F,...) CALL_VC_NOOP
71 #endif
72
73 #ifdef VC_ENABLE_API_V11
74 #  define CALL_VC_V11(F,...)    CALL_VC_GENERAL(0x00010000, v11, F, __VA_ARGS__)
75 #else
76 #  define CALL_VC_V11(F,...)    CALL_VC_NOOP
77 #endif
78
79 #ifdef VC_ENABLE_API_V13
80 #  define CALL_VC_V13(F,...)    CALL_VC_GENERAL(0x00010000, v13, F, __VA_ARGS__)
81 #else
82 #  define CALL_VC_V13(F,...)    CALL_VC_NOOP
83 #endif
84
85
86 #if 1
87 #  define CTX_KERNEL2USER(X)    (((X)==(uint32_t)(-1)) ? VC_NOCTX   : \
88                                  ((X)==(uint32_t)(-2)) ? VC_SAMECTX : \
89                                  (xid_t)(X))
90
91 #  define CTX_USER2KERNEL(X)    (((X)==VC_RANDCTX) ? (uint32_t)(-1) : \
92                                  ((X)==VC_SAMECTX) ? (uint32_t)(-2) : \
93                                  (uint32_t)(X))
94 #else
95 #  define CTX_USER2KERNEL(X)    (X)
96 #  define CTX_KERNEL2USER(X)    (X)
97 #endif
98
99 #if 1
100 #  define EXT2FLAGS_USER2KERNEL(X)      (((X) & ~(VC_IMMUTABLE_FILE_FL|VC_IMMUTABLE_LINK_FL)) | \
101                                          ((X) & VC_IMMUTABLE_FILE_FL ? EXT2_IMMUTABLE_FILE_FL : 0) | \
102                                          ((X) & VC_IMMUTABLE_LINK_FL ? EXT2_IMMUTABLE_LINK_FL : 0))
103 #  define EXT2FLAGS_KERNEL2USER(X)      (((X) & ~(EXT2_IMMUTABLE_FILE_FL|EXT2_IMMUTABLE_LINK_FL)) | \
104                                          ((X) & EXT2_IMMUTABLE_FILE_FL ? VC_IMMUTABLE_FILE_FL : 0) | \
105                                          ((X) & EXT2_IMMUTABLE_LINK_FL ? VC_IMMUTABLE_LINK_FL : 0))
106 #else
107 #  define EXT2FLAGS_KERNEL2USER(X)      (X)
108 #  define EXT2FLAGS_USER2KERNEL(X)      (X)
109 #endif
110
111
112 #define EXT2_IOC_GETCONTEXT             _IOR('x', 1, long)
113 #define EXT2_IOC_SETCONTEXT             _IOW('x', 2, long)
114
115 #ifndef HAVE_VSERVER
116 #if defined(__pic__) && defined(__i386)
117 inline static UNUSED ALWAYSINLINE
118 int vserver(uint32_t cmd, uint32_t id, void *data)
119 {
120 #if defined __dietlibc__
121   extern long int syscall (long int __sysno, ...);
122 #endif
123  
124   return syscall(__NR_vserver, cmd, id, data);
125 }
126 #else
127 inline static UNUSED ALWAYSINLINE
128 _syscall3(int, vserver,
129           uint32_t, cmd, uint32_t, id, void *, data)
130 #endif
131 #endif
132
133 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H