small cosmetical fix
[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   switch (utilvserver_checkCompatVersion()&~0xff) {     \
45     case -1 & ~0xff     :  if (1) break;                \
46       VC_SUFFIX, __VA_ARGS__ , VC_PREFIX;               \
47     default     :  errno = EINVAL;                      \
48   }                                                     \
49   return -1
50 #else
51 #  define VC_SELECT(ID) if (1)
52 #  define CALL_VC(...)                          \
53   if (1) {} VC_SUFFIX, __VA_ARGS__, VC_PREFIX;  \
54   errno = ENOSYS; return -1
55 #endif
56
57 #ifdef VC_ENABLE_API_COMPAT
58 #  define CALL_VC_COMPAT(F,...) CALL_VC_GENERAL(0x00010000, compat, F, __VA_ARGS__)
59 #else
60 #  define CALL_VC_COMPAT(F,...) CALL_VC_NOOP
61 #endif
62
63 #ifdef VC_ENABLE_API_LEGACY
64 #  define CALL_VC_LEGACY(F,...) CALL_VC_GENERAL(0x00000000, legacy, F, __VA_ARGS__)
65 #else
66 #  define CALL_VC_LEGACY(F,...) CALL_VC_NOOP
67 #endif
68
69 #ifdef VC_ENABLE_API_V11
70 #  define CALL_VC_V11(F,...)    CALL_VC_GENERAL(0x00010000, v11, F, __VA_ARGS__)
71 #else
72 #  define CALL_VC_V11(F,...)    CALL_VC_NOOP
73 #endif
74
75
76 #if 1
77 #  define CTX_KERNEL2USER(X)    (((X)==(uint32_t)(-1)) ? VC_NOCTX   : \
78                                  ((X)==(uint32_t)(-2)) ? VC_SAMECTX : \
79                                  (xid_t)(X))
80
81 #  define CTX_USER2KERNEL(X)    (((X)==VC_RANDCTX) ? (uint32_t)(-1) : \
82                                  ((X)==VC_SAMECTX) ? (uint32_t)(-2) : \
83                                  (uint32_t)(X))
84 #else
85 #  define CTX_USER2KERNEL(X)    (X)
86 #  define CTX_KERNEL2USER(X)    (X)
87 #endif
88
89
90 #ifndef HAVE_VSERVER
91 #if defined(__pic__) && defined(__i386)
92 inline static UNUSED ALWAYSINLINE
93 int vserver(uint32_t cmd, uint32_t id, void *data)
94 {
95 #if defined __dietlibc__
96   extern long int syscall (long int __sysno, ...);
97 #endif
98  
99   return syscall(__NR_vserver, cmd, id, data);
100 }
101 #else
102 inline static UNUSED ALWAYSINLINE
103 _syscall3(int, vserver,
104           uint32_t, cmd, uint32_t, id, void *, data)
105 #endif
106 #endif
107
108 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H