Removed CALL_LARGE_STACK support.
[wine] / scheduler / sysdeps.c
1 /*
2  * System-dependent scheduler support
3  *
4  * Copyright 1998 Alexandre Julliard
5  */
6
7 #include "config.h"
8
9 /* Get pointers to the static errno and h_errno variables used by Xlib. This
10    must be done before including <errno.h> makes the variables invisible.  */
11 extern int errno;
12 static int *perrno = &errno;
13 extern int h_errno;
14 static int *ph_errno = &h_errno;
15
16 #include <signal.h>
17 #include <stdio.h>
18 #include <unistd.h>
19 #include <sys/time.h>
20 #include <sys/resource.h>
21 #ifdef HAVE_SYS_SYSCALL_H
22 # include <sys/syscall.h>
23 #endif
24 #ifdef HAVE_SYS_LWP_H
25 # include <sys/lwp.h>
26 #endif
27 #ifdef HAVE_UCONTEXT_H
28 # include <ucontext.h>
29 #endif
30 #include "wine/port.h"
31 #include "thread.h"
32 #include "server.h"
33 #include "winbase.h"
34 #include "wine/exception.h"
35 #include "debugtools.h"
36
37 DEFAULT_DEBUG_CHANNEL(thread);
38
39 /* Xlib critical section (FIXME: does not belong here) */
40 CRITICAL_SECTION X11DRV_CritSection = CRITICAL_SECTION_INIT;
41
42 #ifdef linux
43 # ifdef HAVE_SCHED_H
44 #  include <sched.h>
45 # endif
46 # ifndef CLONE_VM
47 #  define CLONE_VM      0x00000100
48 #  define CLONE_FS      0x00000200
49 #  define CLONE_FILES   0x00000400
50 #  define CLONE_SIGHAND 0x00000800
51 #  define CLONE_PID     0x00001000
52 # endif  /* CLONE_VM */
53 #endif  /* linux */
54
55 static int init_done;
56
57 #ifndef NO_REENTRANT_LIBC
58
59 /***********************************************************************
60  *           __errno_location/__error/___errno
61  *
62  * Get the per-thread errno location.
63  */
64 #ifdef HAVE__ERRNO_LOCATION
65 int *__errno_location()
66 #endif
67 #ifdef HAVE__ERROR
68 int *__error()
69 #endif
70 #ifdef HAVE___ERRNO
71 int *___errno()
72 #endif
73 #ifdef HAVE__THR_ERRNO
74 int *__thr_errno()
75 #endif
76 {
77     if (!init_done) return perrno;
78 #ifdef NO_REENTRANT_X11
79     /* Use static libc errno while running in Xlib. */
80     if (X11DRV_CritSection.OwningThread == GetCurrentThreadId())
81         return perrno;
82 #endif
83     return &NtCurrentTeb()->thread_errno;
84 }
85
86 /***********************************************************************
87  *           __h_errno_location
88  *
89  * Get the per-thread h_errno location.
90  */
91 int *__h_errno_location()
92 {
93     if (!init_done) return ph_errno;
94 #ifdef NO_REENTRANT_X11
95     /* Use static libc h_errno while running in Xlib. */
96     if (X11DRV_CritSection.OwningThread == GetCurrentThreadId())
97         return ph_errno;
98 #endif
99     return &NtCurrentTeb()->thread_h_errno;
100 }
101
102 #endif /* NO_REENTRANT_LIBC */
103
104 /***********************************************************************
105  *           SYSDEPS_SetCurThread
106  *
107  * Make 'thread' the current thread.
108  */
109 void SYSDEPS_SetCurThread( TEB *teb )
110 {
111 #if defined(__i386__)
112     /* On the i386, the current thread is in the %fs register */
113     __set_fs( teb->teb_sel );
114 #elif defined(HAVE__LWP_CREATE)
115     /* On non-i386 Solaris, we use the LWP private pointer */
116     _lwp_setprivate( teb );
117 #endif
118
119     init_done = 1;  /* now we can use threading routines */
120 }
121
122 /***********************************************************************
123  *           SYSDEPS_StartThread
124  *
125  * Startup routine for a new thread.
126  */
127 static void SYSDEPS_StartThread( TEB *teb )
128 {
129     SYSDEPS_SetCurThread( teb );
130     CLIENT_InitThread();
131     SIGNAL_Init();
132     __TRY
133     {
134         teb->startup();
135     }
136     __EXCEPT(UnhandledExceptionFilter)
137     {
138         TerminateThread( GetCurrentThread(), GetExceptionCode() );
139     }
140     __ENDTRY
141     SYSDEPS_ExitThread(0);  /* should never get here */
142 }
143
144
145 /***********************************************************************
146  *           SYSDEPS_SpawnThread
147  *
148  * Start running a new thread.
149  * Return -1 on error, 0 if OK.
150  */
151 int SYSDEPS_SpawnThread( TEB *teb )
152 {
153 #ifndef NO_REENTRANT_LIBC
154
155 #ifdef linux
156     const int flags = CLONE_VM | CLONE_FS | CLONE_FILES | SIGCHLD;
157     if (clone( (int (*)(void *))SYSDEPS_StartThread, teb->stack_top, flags, teb ) < 0)
158         return -1;
159     if (!(flags & CLONE_FILES)) close( teb->socket );  /* close the child socket in the parent */
160     return 0;
161 #endif
162
163 #ifdef HAVE_RFORK
164     const int flags = RFPROC | RFMEM; /*|RFFDG*/
165     void **sp = (void **)teb->stack_top;
166     *--sp = teb;
167     *--sp = 0;
168     *--sp = SYSDEPS_StartThread;
169     __asm__ __volatile__(
170     "pushl %2;\n\t"             /* flags */
171     "pushl $0;\n\t"             /* 0 ? */
172     "movl %1,%%eax;\n\t"        /* SYS_rfork */
173     ".byte 0x9a; .long 0; .word 7;\n\t" /* lcall 7:0... FreeBSD syscall */
174     "cmpl $0, %%edx;\n\t"
175     "je 1f;\n\t"
176     "movl %0,%%esp;\n\t"        /* child -> new thread */
177     "ret;\n"
178     "1:\n\t"            /* parent -> caller thread */
179     "addl $8,%%esp" :
180     : "r" (sp), "g" (SYS_rfork), "g" (flags)
181     : "eax", "edx");
182     if (flags & RFFDG) close( teb->socket );  /* close the child socket in the parent */
183     return 0;
184 #endif
185
186 #ifdef HAVE__LWP_CREATE
187     ucontext_t context;
188     _lwp_makecontext( &context, (void(*)(void *))SYSDEPS_StartThread, teb,
189                       NULL, teb->stack_base, (char *)teb->stack_top - (char *)teb->stack_base );
190     if ( _lwp_create( &context, 0, NULL ) )
191         return -1;
192     return 0;
193 #endif
194
195 #endif /* NO_REENTRANT_LIBC */
196
197     FIXME("CreateThread: stub\n" );
198     return 0;
199 }
200
201
202
203 /***********************************************************************
204  *           SYSDEPS_ExitThread
205  *
206  * Exit a running thread; must not return.
207  */
208 void SYSDEPS_ExitThread( int status )
209 {
210     int socket = NtCurrentTeb()->socket;
211     NtCurrentTeb()->socket = -1;
212     close( socket );
213 #ifdef HAVE__LWP_CREATE
214     _lwp_exit();
215 #endif
216     _exit( status );
217     /*
218      * It is of course impossible to come here,
219      * but it eliminates a compiler warning.
220      */
221     exit( status );
222 }
223
224
225 /***********************************************************************
226  *           SYSDEPS_CallOnStack
227  */
228 int SYSDEPS_DoCallOnStack( int (*func)(LPVOID), LPVOID arg )
229 {
230     int retv = 0;
231
232     __TRY
233     {
234         retv = func( arg );
235     }
236     __EXCEPT(UnhandledExceptionFilter)
237     {
238         TerminateThread( GetCurrentThread(), GetExceptionCode() );
239         return 0;
240     }
241     __ENDTRY
242
243     return retv;
244 }
245
246 #ifdef __i386__
247 int SYSDEPS_CallOnStack( LPVOID stackTop, LPVOID stackLow,
248                          int (*func)(LPVOID), LPVOID arg );
249 __ASM_GLOBAL_FUNC( SYSDEPS_CallOnStack,
250                    "pushl %ebp\n\t"
251                    "movl %esp, %ebp\n\t"
252                    ".byte 0x64; pushl 0x04\n\t"
253                    ".byte 0x64; pushl 0x08\n\t"
254                    "movl 8(%ebp), %esp\n\t"
255                    "movl 12(%ebp), %eax\n\t"
256                    ".byte 0x64; movl %esp, 0x04\n\t"
257                    ".byte 0x64; movl %eax, 0x08\n\t"
258                    "pushl 20(%ebp)\n\t"
259                    "pushl 16(%ebp)\n\t"
260                    "call " __ASM_NAME("SYSDEPS_DoCallOnStack") "\n\t"
261                    "leal -8(%ebp), %esp\n\t"
262                    ".byte 0x64; popl 0x08\n\t"
263                    ".byte 0x64; popl 0x04\n\t"
264                    "popl %ebp\n\t"
265                    "ret" );
266 #else
267 int SYSDEPS_CallOnStack( LPVOID stackTop, LPVOID stackLow,
268                          int (*func)(LPVOID), LPVOID arg )
269 {
270     return SYSDEPS_DoCallOnStack( func, arg );
271 }
272 #endif
273
274 /***********************************************************************
275  *           SYSDEPS_SwitchToThreadStack
276  */
277 void SYSDEPS_SwitchToThreadStack( void (*func)(void) )
278 {
279     DWORD page_size = getpagesize();
280     DWORD cur_stack = (((DWORD)&func) + (page_size-1)) & ~(page_size-1);
281
282     TEB *teb = NtCurrentTeb();
283     LPVOID stackTop = teb->stack_top;
284     LPVOID stackLow = teb->stack_low;
285
286     struct rlimit rl;
287
288     if ( getrlimit(RLIMIT_STACK, &rl) < 0 ) 
289     {
290         WARN("Can't get rlimit\n");
291         rl.rlim_cur = 8*1024*1024;
292     }
293
294     teb->stack_top = (LPVOID) cur_stack;
295     teb->stack_low = (LPVOID)(cur_stack - rl.rlim_cur);
296
297     SYSDEPS_CallOnStack( stackTop, stackLow, 
298                          (int (*)(void *))func, NULL );
299 }
300
301 /**********************************************************************
302  *           NtCurrentTeb   (NTDLL.89)
303  *
304  * This will crash and burn if called before threading is initialized
305  */
306 #ifdef __i386__
307 __ASM_GLOBAL_FUNC( NtCurrentTeb, ".byte 0x64\n\tmovl 0x18,%eax\n\tret" );
308 #elif defined(HAVE__LWP_CREATE)
309 struct _TEB * WINAPI NtCurrentTeb(void)
310 {
311     extern void *_lwp_getprivate(void);
312     return (struct _TEB *)_lwp_getprivate();
313 }
314 #else
315 # error NtCurrentTeb not defined for this architecture
316 #endif  /* __i386__ */