back ported setsched syscall for new scheduler
[util-vserver.git] / lib / vserver-internal.h
1 // $Id: vserver-internal.h,v 1.1.4.14 2004/02/14 00:25:34 ensc Exp $    --*- 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 #if !defined(__NR_vserver) && defined(ENSC_SYSCALL__NR_vserver)
30 #  define __NR_vserver  ENSC_SYSCALL__NR_vserver
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 & 0xff      :  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 #ifdef VC_ENABLE_API_V11
68 #  define CALL_VC_V11(F,...)    CALL_VC_GENERAL(0x00010000, v11, F, __VA_ARGS__)
69 #else
70 #  define CALL_VC_V11(F,...)    CALL_VC_NOOP
71 #endif
72
73 #if 1
74 #  define CTX_KERNEL2USER(X)    (((X)==(uint32_t)(-1)) ? VC_NOCTX   : \
75                                  ((X)==(uint32_t)(-2)) ? VC_SAMECTX : \
76                                  (xid_t)(X))
77
78 #  define CTX_USER2KERNEL(X)    (((X)==VC_RANDCTX) ? (uint32_t)(-1) : \
79                                  ((X)==VC_SAMECTX) ? (uint32_t)(-2) : \
80                                  (uint32_t)(X))
81 #else
82 #  define CTX_USER2KERNEL(X)    (X)
83 #  define CTX_KERNEL2USER(X)    (X)
84 #endif
85
86 #ifdef __cplusplus
87 extern "C" {
88 #endif
89
90 #define ENSC_STRUCT_IDX(STRUCT,ATTR)                    \
91   ((char*)(&(STRUCT).ATTR) - (char*)(&(STRUCT)))
92 #define ENSC_SAME_STRUCT_IDX(LHS,RHS,ATTR)                      \
93   (ENSC_STRUCT_IDX(LHS,ATTR) == ENSC_STRUCT_IDX(RHS,ATTR))
94 #define ENSC_SAME_STRUCT_ITEM(LHS,RHS,ATTR)     \
95   (ENSC_SAME_STRUCT_IDX(LHS,RHS,ATTR) &&        \
96    sizeof((LHS).ATTR)==sizeof((RHS).ATTR) &&    \
97    sizeof(LHS)==sizeof(RHS))
98
99 #ifndef HAVE_VSERVER
100 #ifdef ENSC_SYSCALL_TRADITIONAL
101 inline static UNUSED ALWAYSINLINE
102 int vserver(uint32_t cmd, uint32_t id, void *data)
103 {
104   return syscall(__NR_vserver, cmd, id, data);
105 }
106 #else
107 inline static UNUSED ALWAYSINLINE
108 _syscall3(int, vserver,
109           uint32_t, cmd, uint32_t, id, void *, data)
110 #endif
111 #endif
112
113 size_t          utilvserver_uint2str(char *buf, size_t len,
114                                      unsigned int val, unsigned char base);
115 int             utilvserver_checkCompatVersion();
116
117 #ifdef __cplusplus
118 }
119 #endif
120
121
122 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H