a4827e63078863a400be63fecd116b5cd7cb762d
[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 <stdint.h>
23 #include <stdlib.h>
24 #include <syscall.h>
25 #include <unistd.h>
26 #include <asm/unistd.h>
27 #include <errno.h>
28
29 #ifndef __NR_sys_virtual_context
30 #  define __NR_sys_virtual_context      273
31 #endif
32
33 #define VC_PREFIX       0)
34 #define VC_SUFFIX       else (void)((void)0
35 #define CALL_VC_NOOP    (void)0
36 #define CALL_VC_GENERAL(ID, SUFFIX, FUNC, ...)                          \
37   VC_PREFIX; VC_SELECT(ID) return FUNC ## _ ## SUFFIX(__VA_ARGS__); VC_SUFFIX
38
39 #if 1
40 #  define VC_SELECT(ID) case ID: if(1)
41 #  define CALL_VC(...)                                  \
42   switch (utilvserver_checkCompatVersion()&~0xff) {     \
43     case -1     :  if (1) break;                        \
44       VC_SUFFIX, __VA_ARGS__ , VC_PREFIX;               \
45     default     :  errno = EINVAL;                      \
46   }                                                     \
47   return -1
48 #else
49 #  define VC_SELECT(ID) if (1)
50 #  define CALL_VC(...)                          \
51   if (1) {} VC_SUFFIX, __VA_ARGS__, VC_PREFIX;  \
52   errno = ENOSYS; return -1
53 #endif
54
55 #ifdef VC_ENABLE_API_COMPAT
56 #  define CALL_VC_COMPAT(F,...) CALL_VC_GENERAL(0x00010000, compat, F, __VA_ARGS__)
57 #else
58 #  define CALL_VC_COMPAT(F,...) CALL_VC_NOOP
59 #endif
60
61 #ifdef VC_ENABLE_API_LEGACY
62 #  define CALL_VC_LEGACY(F,...) CALL_VC_GENERAL(0x00000000, legacy, F, __VA_ARGS__)
63 #else
64 #  define CALL_VC_LEGACY(F,...) CALL_VC_NOOP
65 #endif
66
67
68
69
70 #ifdef __cplusplus
71 extern "C" {
72 #endif
73
74 #ifndef HAVE_SYS_VIRTUAL_CONTEXT
75 static UNUSED
76 _syscall3(int, sys_virtual_context,
77           uint32_t, cmd, uint32_t, id, void *, data)
78 #endif
79
80 size_t          utilvserver_uint2str(char *buf, size_t len,
81                                      unsigned int val, unsigned char base);
82 int             utilvserver_checkCompatVersion();
83
84 #ifdef __cplusplus
85 }
86 #endif
87
88
89 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H