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