added missing chroot() call
[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 <syscall.h>
24 #include <unistd.h>
25 #include <asm/unistd.h>
26 #include <errno.h>
27
28 #ifndef __NR_sys_virtual_context
29 #  define __NR_sys_virtual_context      273
30 #endif
31
32 #ifndef NDEBUG
33 static ALWAYSINLINE UNUSED void
34 vc_tell_unsafe_chroot()
35 {
36   static int                    flag = -1;
37   if (flag==-1) {
38     char const * const  e = getenv("VC_TELL_UNSAFE_CHROOT");
39     flag = e ? atoi(e) : 0;
40     flag = flag ? 1 : 0;
41   }
42
43   if (flag) write(2, "Unsafe chroot() used\n", 23);
44 }
45 #else
46 static ALWAYSINLINE UNUSED void vc_tell_unsafe_chroot() {}
47 #endif
48
49 static _syscall3(int, sys_virtual_context,
50                  uint32_t, cmd, uint32_t, id, void *, data)
51
52   
53 #endif  //  H_VSERVER_SYSCALL_INTERNAL_H