made CALL_VC-macro a block
[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
80 #if 1
81 #  define CTX_KERNEL2USER(X)    (((X)==(uint32_t)(-1)) ? VC_NOCTX   : \
82                                  ((X)==(uint32_t)(-2)) ? VC_SAMECTX : \
83                                  (xid_t)(X))
84
85 #  define CTX_USER2KERNEL(X)    (((X)==VC_RANDCTX) ? (uint32_t)(-1) : \
86                                  ((X)==VC_SAMECTX) ? (uint32_t)(-2) : \
87                                  (uint32_t)(X))
88 #else
89 #  define CTX_USER2KERNEL(X)    (X)
90 #  define CTX_KERNEL2USER(X)    (X)
91 #endif
92
93 #if 1
94 #  define EXT2FLAGS_USER2KERNEL(X)      (((X) & ~(VC_IMMUTABLE_FILE_FL|VC_IMMUTABLE_LINK_FL)) | \
95                                          ((X) & VC_IMMUTABLE_FILE_FL ? EXT2_IMMUTABLE_FILE_FL : 0) | \
96                                          ((X) & VC_IMMUTABLE_LINK_FL ? EXT2_IMMUTABLE_LINK_FL : 0))
97 #  define EXT2FLAGS_KERNEL2USER(X)      (((X) & ~(EXT2_IMMUTABLE_FILE_FL|EXT2_IMMUTABLE_LINK_FL)) | \
98                                          ((X) & EXT2_IMMUTABLE_FILE_FL ? VC_IMMUTABLE_FILE_FL : 0) | \
99                                          ((X) & EXT2_IMMUTABLE_LINK_FL ? VC_IMMUTABLE_LINK_FL : 0))
100 #else
101 #  define EXT2FLAGS_KERNEL2USER(X)      (X)
102 #  define EXT2FLAGS_USER2KERNEL(X)      (X)
103 #endif
104
105
106 #define EXT2_IOC_GETCONTEXT             _IOR('x', 1, long)
107 #define EXT2_IOC_SETCONTEXT             _IOW('x', 2, long)
108
109 #ifndef HAVE_VSERVER
110 #if defined(__pic__) && defined(__i386)
111 inline static UNUSED ALWAYSINLINE
112 int vserver(uint32_t cmd, uint32_t id, void *data)
113 {
114 #if defined __dietlibc__
115   extern long int syscall (long int __sysno, ...);
116 #endif
117  
118   return syscall(__NR_vserver, cmd, id, data);
119 }
120 #else
121 inline static UNUSED ALWAYSINLINE
122 _syscall3(int, vserver,
123           uint32_t, cmd, uint32_t, id, void *, data)
124 #endif
125 #endif
126
127 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H