Fix sys_clone usage on sparc and s390, sparc returns parent pid in
[util-vserver.git] / lib_internal / sys_clone.h
1 // $Id$    --*- c -*--
2
3 // Copyright (C) 2004 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_UTIL_VSERVER_SRC_SYS_CLONE_H
20 #define H_UTIL_VSERVER_SRC_SYS_CLONE_H
21
22 #include <unistd.h>
23 #include "lib/syscall-wrap.h"
24 #define __NR__sys_clone         __NR_clone
25
26 #ifndef CLONE_NEWNS
27 #  define CLONE_NEWNS 0x00020000
28 #endif
29
30 #ifndef ENSC_SYSCALL_TRADITIONAL
31 #  include <errno.h>
32
33 #  if defined(__s390__)
34 inline static UNUSED ALWAYSINLINE
35 _syscall2(int, _sys_clone, void *, child_stack, int, flags)
36 #  else
37 inline static UNUSED ALWAYSINLINE
38 _syscall2(int, _sys_clone, int, flags, void *, child_stack)
39 #  endif
40 #endif
41
42 inline static UNUSED ALWAYSINLINE
43 int sys_clone(int flags, void *child_stack)
44 {
45   int ret;
46 #ifdef __sparc__
47   int parent = getpid();
48 #endif
49 #if defined(__dietlibc__) && defined(ENSC_SYSCALL_TRADITIONAL)
50   extern long int syscall (long int __sysno, ...);
51 #endif
52
53 #if   defined(__s390__) && defined(ENSC_SYSCALL_TRADITIONAL)
54   ret = syscall(__NR__sys_clone, child_stack, flags);
55 #elif defined(__s390__)
56   ret = _sys_clone(child_stack, flags);
57 #elif defined(ENSC_SYSCALL_TRADITIONAL)
58   ret = syscall(__NR__sys_clone, flags, child_stack);
59 #else
60   ret = _sys_clone(flags, child_stack);
61 #endif
62 #ifdef __sparc__
63   if (ret == parent)
64     ret = 0;
65 #endif
66   return ret;
67 }
68
69 #undef __NR__sys_clone
70
71 #define ENSC_HAVE_SYSCLONE              1
72   
73 #endif  //  H_UTIL_VSERVER_SRC_SYS_CLONE_H