Fixed some compilation issues on Mac OS X Leopard.
[wine] / dlls / ntdll / signal_i386.c
1 /*
2  * i386 signal handling routines
3  *
4  * Copyright 1999 Alexandre Julliard
5  *
6  * This library is free software; you can redistribute it and/or
7  * modify it under the terms of the GNU Lesser General Public
8  * License as published by the Free Software Foundation; either
9  * version 2.1 of the License, or (at your option) any later version.
10  *
11  * This library is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * Lesser General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public
17  * License along with this library; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
19  */
20
21 #ifdef __i386__
22
23 #include "config.h"
24 #include "wine/port.h"
25
26 #include <errno.h>
27 #include <signal.h>
28 #include <stdlib.h>
29 #include <stdarg.h>
30 #include <stdio.h>
31 #include <sys/types.h>
32 #ifdef HAVE_UNISTD_H
33 # include <unistd.h>
34 #endif
35
36 #ifdef HAVE_SYS_PARAM_H
37 # include <sys/param.h>
38 #endif
39 #ifdef HAVE_SYSCALL_H
40 # include <syscall.h>
41 #else
42 # ifdef HAVE_SYS_SYSCALL_H
43 #  include <sys/syscall.h>
44 # endif
45 #endif
46
47 #ifdef HAVE_SYS_VM86_H
48 # include <sys/vm86.h>
49 #endif
50
51 #ifdef HAVE_SYS_SIGNAL_H
52 # include <sys/signal.h>
53 #endif
54 #ifdef HAVE_SYS_SYSCTL_H
55 # include <sys/sysctl.h>
56 #endif
57
58 #include "windef.h"
59 #include "thread.h"
60 #include "wine/library.h"
61 #include "ntdll_misc.h"
62
63 #ifdef HAVE_VALGRIND_MEMCHECK_H
64 #include <valgrind/memcheck.h>
65 #endif
66
67 /***********************************************************************
68  * signal context platform-specific definitions
69  */
70
71 #ifdef linux
72
73 typedef ucontext_t SIGCONTEXT;
74
75 #define EAX_sig(context)     ((context)->uc_mcontext.gregs[REG_EAX])
76 #define EBX_sig(context)     ((context)->uc_mcontext.gregs[REG_EBX])
77 #define ECX_sig(context)     ((context)->uc_mcontext.gregs[REG_ECX])
78 #define EDX_sig(context)     ((context)->uc_mcontext.gregs[REG_EDX])
79 #define ESI_sig(context)     ((context)->uc_mcontext.gregs[REG_ESI])
80 #define EDI_sig(context)     ((context)->uc_mcontext.gregs[REG_EDI])
81 #define EBP_sig(context)     ((context)->uc_mcontext.gregs[REG_EBP])
82 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[REG_ESP])
83
84 #define CS_sig(context)      ((context)->uc_mcontext.gregs[REG_CS])
85 #define DS_sig(context)      ((context)->uc_mcontext.gregs[REG_DS])
86 #define ES_sig(context)      ((context)->uc_mcontext.gregs[REG_ES])
87 #define SS_sig(context)      ((context)->uc_mcontext.gregs[REG_SS])
88 #define FS_sig(context)      ((context)->uc_mcontext.gregs[REG_FS])
89 #define GS_sig(context)      ((context)->uc_mcontext.gregs[REG_GS])
90
91 #define EFL_sig(context)     ((context)->uc_mcontext.gregs[REG_EFL])
92 #define EIP_sig(context)     ((context)->uc_mcontext.gregs[REG_EIP])
93 #define TRAP_sig(context)    ((context)->uc_mcontext.gregs[REG_TRAPNO])
94 #define ERROR_sig(context)   ((context)->uc_mcontext.gregs[REG_ERR])
95
96 #define FPU_sig(context)     ((FLOATING_SAVE_AREA*)((context)->uc_mcontext.fpregs))
97
98 #define VM86_EAX 0 /* the %eax value while vm86_enter is executing */
99
100 int vm86_enter( void **vm86_ptr );
101 void vm86_return(void);
102 void vm86_return_end(void);
103 __ASM_GLOBAL_FUNC(vm86_enter,
104                   "pushl %ebp\n\t"
105                   "movl %esp, %ebp\n\t"
106                   "movl $166,%eax\n\t"  /*SYS_vm86*/
107                   "movl 8(%ebp),%ecx\n\t" /* vm86_ptr */
108                   "movl (%ecx),%ecx\n\t"
109                   "pushl %ebx\n\t"
110                   "movl $1,%ebx\n\t"    /*VM86_ENTER*/
111                   "pushl %ecx\n\t"      /* put vm86plus_struct ptr somewhere we can find it */
112                   "pushl %fs\n\t"
113                   "pushl %gs\n\t"
114                   "int $0x80\n"
115                   ".globl " __ASM_NAME("vm86_return") "\n\t"
116                   __ASM_FUNC("vm86_return") "\n"
117                   __ASM_NAME("vm86_return") ":\n\t"
118                   "popl %gs\n\t"
119                   "popl %fs\n\t"
120                   "popl %ecx\n\t"
121                   "popl %ebx\n\t"
122                   "popl %ebp\n\t"
123                   "testl %eax,%eax\n\t"
124                   "jl 0f\n\t"
125                   "cmpb $0,%al\n\t" /* VM86_SIGNAL */
126                   "je " __ASM_NAME("vm86_enter") "\n\t"
127                   "0:\n\t"
128                   "movl 4(%esp),%ecx\n\t"  /* vm86_ptr */
129                   "movl $0,(%ecx)\n\t"
130                   ".globl " __ASM_NAME("vm86_return_end") "\n\t"
131                   __ASM_FUNC("vm86_return_end") "\n"
132                   __ASM_NAME("vm86_return_end") ":\n\t"
133                   "ret" )
134
135 #ifdef HAVE_SYS_VM86_H
136 # define __HAVE_VM86
137 #endif
138
139 #endif  /* linux */
140
141 #ifdef BSDI
142
143 #include <machine/frame.h>
144 typedef struct trapframe SIGCONTEXT;
145
146 #define EAX_sig(context)     ((context)->tf_eax)
147 #define EBX_sig(context)     ((context)->tf_ebx)
148 #define ECX_sig(context)     ((context)->tf_ecx)
149 #define EDX_sig(context)     ((context)->tf_edx)
150 #define ESI_sig(context)     ((context)->tf_esi)
151 #define EDI_sig(context)     ((context)->tf_edi)
152 #define EBP_sig(context)     ((context)->tf_ebp)
153
154 #define CS_sig(context)      ((context)->tf_cs)
155 #define DS_sig(context)      ((context)->tf_ds)
156 #define ES_sig(context)      ((context)->tf_es)
157 #define SS_sig(context)      ((context)->tf_ss)
158
159 #define EFL_sig(context)     ((context)->tf_eflags)
160
161 #define EIP_sig(context)     (*((unsigned long*)&(context)->tf_eip))
162 #define ESP_sig(context)     (*((unsigned long*)&(context)->tf_esp))
163
164 #endif /* bsdi */
165
166 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
167
168 typedef struct sigcontext SIGCONTEXT;
169
170 #define EAX_sig(context)     ((context)->sc_eax)
171 #define EBX_sig(context)     ((context)->sc_ebx)
172 #define ECX_sig(context)     ((context)->sc_ecx)
173 #define EDX_sig(context)     ((context)->sc_edx)
174 #define ESI_sig(context)     ((context)->sc_esi)
175 #define EDI_sig(context)     ((context)->sc_edi)
176 #define EBP_sig(context)     ((context)->sc_ebp)
177
178 #define CS_sig(context)      ((context)->sc_cs)
179 #define DS_sig(context)      ((context)->sc_ds)
180 #define ES_sig(context)      ((context)->sc_es)
181 #define FS_sig(context)      ((context)->sc_fs)
182 #define GS_sig(context)      ((context)->sc_gs)
183 #define SS_sig(context)      ((context)->sc_ss)
184
185 #define TRAP_sig(context)    ((context)->sc_trapno)
186 #define ERROR_sig(context)   ((context)->sc_err)
187 #define EFL_sig(context)     ((context)->sc_eflags)
188
189 #define EIP_sig(context)     ((context)->sc_eip)
190 #define ESP_sig(context)     ((context)->sc_esp)
191
192 #endif  /* *BSD */
193
194 #if defined(__svr4__) || defined(_SCO_DS) || defined(__sun)
195
196 #ifdef _SCO_DS
197 #include <sys/regset.h>
198 #endif
199 /* Solaris kludge */
200 #undef ERR
201 #include <sys/ucontext.h>
202 #undef ERR
203 typedef struct ucontext SIGCONTEXT;
204
205 #ifdef _SCO_DS
206 #define gregs regs
207 #endif
208
209 #define EAX_sig(context)     ((context)->uc_mcontext.gregs[EAX])
210 #define EBX_sig(context)     ((context)->uc_mcontext.gregs[EBX])
211 #define ECX_sig(context)     ((context)->uc_mcontext.gregs[ECX])
212 #define EDX_sig(context)     ((context)->uc_mcontext.gregs[EDX])
213 #define ESI_sig(context)     ((context)->uc_mcontext.gregs[ESI])
214 #define EDI_sig(context)     ((context)->uc_mcontext.gregs[EDI])
215 #define EBP_sig(context)     ((context)->uc_mcontext.gregs[EBP])
216
217 #define CS_sig(context)      ((context)->uc_mcontext.gregs[CS])
218 #define DS_sig(context)      ((context)->uc_mcontext.gregs[DS])
219 #define ES_sig(context)      ((context)->uc_mcontext.gregs[ES])
220 #define SS_sig(context)      ((context)->uc_mcontext.gregs[SS])
221
222 #define FS_sig(context)      ((context)->uc_mcontext.gregs[FS])
223 #define GS_sig(context)      ((context)->uc_mcontext.gregs[GS])
224
225 #define EFL_sig(context)     ((context)->uc_mcontext.gregs[EFL])
226
227 #define EIP_sig(context)     ((context)->uc_mcontext.gregs[EIP])
228 #ifdef UESP
229 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[UESP])
230 #elif defined(R_ESP)
231 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[R_ESP])
232 #else
233 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[ESP])
234 #endif
235 #ifdef TRAPNO
236 #define TRAP_sig(context)     ((context)->uc_mcontext.gregs[TRAPNO])
237 #endif
238
239 #endif  /* svr4 || SCO_DS */
240
241 #ifdef __APPLE__
242 # include <sys/ucontext.h>
243
244 typedef ucontext_t SIGCONTEXT;
245
246 /* work around silly renaming of struct members in OS X 10.5 */
247 #if __DARWIN_UNIX03 && defined(_STRUCT_X86_EXCEPTION_STATE32)
248 #define EAX_sig(context)     ((context)->uc_mcontext->__ss.__eax)
249 #define EBX_sig(context)     ((context)->uc_mcontext->__ss.__ebx)
250 #define ECX_sig(context)     ((context)->uc_mcontext->__ss.__ecx)
251 #define EDX_sig(context)     ((context)->uc_mcontext->__ss.__edx)
252 #define ESI_sig(context)     ((context)->uc_mcontext->__ss.__esi)
253 #define EDI_sig(context)     ((context)->uc_mcontext->__ss.__edi)
254 #define EBP_sig(context)     ((context)->uc_mcontext->__ss.__ebp)
255 #define CS_sig(context)      ((context)->uc_mcontext->__ss.__cs)
256 #define DS_sig(context)      ((context)->uc_mcontext->__ss.__ds)
257 #define ES_sig(context)      ((context)->uc_mcontext->__ss.__es)
258 #define FS_sig(context)      ((context)->uc_mcontext->__ss.__fs)
259 #define GS_sig(context)      ((context)->uc_mcontext->__ss.__gs)
260 #define SS_sig(context)      ((context)->uc_mcontext->__ss.__ss)
261 #define EFL_sig(context)     ((context)->uc_mcontext->__ss.__eflags)
262 #define EIP_sig(context)     (*((unsigned long*)&(context)->uc_mcontext->__ss.__eip))
263 #define ESP_sig(context)     (*((unsigned long*)&(context)->uc_mcontext->__ss.__esp))
264 #define TRAP_sig(context)    ((context)->uc_mcontext->__es.__trapno)
265 #define ERROR_sig(context)   ((context)->uc_mcontext->__es.__err)
266 #else
267 #define EAX_sig(context)     ((context)->uc_mcontext->ss.eax)
268 #define EBX_sig(context)     ((context)->uc_mcontext->ss.ebx)
269 #define ECX_sig(context)     ((context)->uc_mcontext->ss.ecx)
270 #define EDX_sig(context)     ((context)->uc_mcontext->ss.edx)
271 #define ESI_sig(context)     ((context)->uc_mcontext->ss.esi)
272 #define EDI_sig(context)     ((context)->uc_mcontext->ss.edi)
273 #define EBP_sig(context)     ((context)->uc_mcontext->ss.ebp)
274 #define CS_sig(context)      ((context)->uc_mcontext->ss.cs)
275 #define DS_sig(context)      ((context)->uc_mcontext->ss.ds)
276 #define ES_sig(context)      ((context)->uc_mcontext->ss.es)
277 #define FS_sig(context)      ((context)->uc_mcontext->ss.fs)
278 #define GS_sig(context)      ((context)->uc_mcontext->ss.gs)
279 #define SS_sig(context)      ((context)->uc_mcontext->ss.ss)
280 #define EFL_sig(context)     ((context)->uc_mcontext->ss.eflags)
281 #define EIP_sig(context)     (*((unsigned long*)&(context)->uc_mcontext->ss.eip))
282 #define ESP_sig(context)     (*((unsigned long*)&(context)->uc_mcontext->ss.esp))
283 #define TRAP_sig(context)    ((context)->uc_mcontext->es.trapno)
284 #define ERROR_sig(context)   ((context)->uc_mcontext->es.err)
285 #endif
286
287 #endif /* __APPLE__ */
288
289 #include "wine/exception.h"
290 #include "wine/debug.h"
291
292 WINE_DEFAULT_DEBUG_CHANNEL(seh);
293
294 typedef int (*wine_signal_handler)(unsigned int sig);
295
296 static size_t signal_stack_mask;
297 static size_t signal_stack_size;
298
299 static wine_signal_handler handlers[256];
300
301 extern void DECLSPEC_NORETURN __wine_call_from_32_restore_regs( const CONTEXT *context );
302
303 enum i386_trap_code
304 {
305     TRAP_x86_UNKNOWN    = -1,  /* Unknown fault (TRAP_sig not defined) */
306 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
307     TRAP_x86_DIVIDE     = T_DIVIDE,     /* Division by zero exception */
308     TRAP_x86_TRCTRAP    = T_TRCTRAP,    /* Single-step exception */
309     TRAP_x86_NMI        = T_NMI,        /* NMI interrupt */
310     TRAP_x86_BPTFLT     = T_BPTFLT,     /* Breakpoint exception */
311     TRAP_x86_OFLOW      = T_OFLOW,      /* Overflow exception */
312     TRAP_x86_BOUND      = T_BOUND,      /* Bound range exception */
313     TRAP_x86_PRIVINFLT  = T_PRIVINFLT,  /* Invalid opcode exception */
314     TRAP_x86_DNA        = T_DNA,        /* Device not available exception */
315     TRAP_x86_DOUBLEFLT  = T_DOUBLEFLT,  /* Double fault exception */
316     TRAP_x86_FPOPFLT    = T_FPOPFLT,    /* Coprocessor segment overrun */
317     TRAP_x86_TSSFLT     = T_TSSFLT,     /* Invalid TSS exception */
318     TRAP_x86_SEGNPFLT   = T_SEGNPFLT,   /* Segment not present exception */
319     TRAP_x86_STKFLT     = T_STKFLT,     /* Stack fault */
320     TRAP_x86_PROTFLT    = T_PROTFLT,    /* General protection fault */
321     TRAP_x86_PAGEFLT    = T_PAGEFLT,    /* Page fault */
322     TRAP_x86_ARITHTRAP  = T_ARITHTRAP,  /* Floating point exception */
323     TRAP_x86_ALIGNFLT   = T_ALIGNFLT,   /* Alignment check exception */
324     TRAP_x86_MCHK       = T_MCHK,       /* Machine check exception */
325     TRAP_x86_CACHEFLT   = T_XMMFLT      /* Cache flush exception */
326 #else
327     TRAP_x86_DIVIDE     = 0,   /* Division by zero exception */
328     TRAP_x86_TRCTRAP    = 1,   /* Single-step exception */
329     TRAP_x86_NMI        = 2,   /* NMI interrupt */
330     TRAP_x86_BPTFLT     = 3,   /* Breakpoint exception */
331     TRAP_x86_OFLOW      = 4,   /* Overflow exception */
332     TRAP_x86_BOUND      = 5,   /* Bound range exception */
333     TRAP_x86_PRIVINFLT  = 6,   /* Invalid opcode exception */
334     TRAP_x86_DNA        = 7,   /* Device not available exception */
335     TRAP_x86_DOUBLEFLT  = 8,   /* Double fault exception */
336     TRAP_x86_FPOPFLT    = 9,   /* Coprocessor segment overrun */
337     TRAP_x86_TSSFLT     = 10,  /* Invalid TSS exception */
338     TRAP_x86_SEGNPFLT   = 11,  /* Segment not present exception */
339     TRAP_x86_STKFLT     = 12,  /* Stack fault */
340     TRAP_x86_PROTFLT    = 13,  /* General protection fault */
341     TRAP_x86_PAGEFLT    = 14,  /* Page fault */
342     TRAP_x86_ARITHTRAP  = 16,  /* Floating point exception */
343     TRAP_x86_ALIGNFLT   = 17,  /* Alignment check exception */
344     TRAP_x86_MCHK       = 18,  /* Machine check exception */
345     TRAP_x86_CACHEFLT   = 19   /* SIMD exception (via SIGFPE) if CPU is SSE capable
346                                   otherwise Cache flush exception (via SIGSEV) */
347 #endif
348 };
349
350
351 /***********************************************************************
352  *           dispatch_signal
353  */
354 inline static int dispatch_signal(unsigned int sig)
355 {
356     if (handlers[sig] == NULL) return 0;
357     return handlers[sig](sig);
358 }
359
360
361 /***********************************************************************
362  *           get_trap_code
363  *
364  * Get the trap code for a signal.
365  */
366 static inline enum i386_trap_code get_trap_code( const SIGCONTEXT *sigcontext )
367 {
368 #ifdef TRAP_sig
369     return TRAP_sig(sigcontext);
370 #else
371     return TRAP_x86_UNKNOWN;  /* unknown trap code */
372 #endif
373 }
374
375 /***********************************************************************
376  *           get_error_code
377  *
378  * Get the error code for a signal.
379  */
380 static inline WORD get_error_code( const SIGCONTEXT *sigcontext )
381 {
382 #ifdef ERROR_sig
383     return ERROR_sig(sigcontext);
384 #else
385     return 0;
386 #endif
387 }
388
389 /***********************************************************************
390  *           get_signal_stack
391  *
392  * Get the base of the signal stack for the current thread.
393  */
394 static inline void *get_signal_stack(void)
395 {
396     return (char *)NtCurrentTeb() + 4096;
397 }
398
399
400 /***********************************************************************
401  *           get_current_teb
402  *
403  * Get the current teb based on the stack pointer.
404  */
405 static inline TEB *get_current_teb(void)
406 {
407     unsigned long esp;
408     __asm__("movl %%esp,%0" : "=g" (esp) );
409     return (TEB *)(esp & ~signal_stack_mask);
410 }
411
412
413 #ifdef __HAVE_VM86
414 /***********************************************************************
415  *           save_vm86_context
416  *
417  * Set the register values from a vm86 structure.
418  */
419 static void save_vm86_context( CONTEXT *context, const struct vm86plus_struct *vm86 )
420 {
421     context->ContextFlags = CONTEXT_FULL;
422     context->Eax    = vm86->regs.eax;
423     context->Ebx    = vm86->regs.ebx;
424     context->Ecx    = vm86->regs.ecx;
425     context->Edx    = vm86->regs.edx;
426     context->Esi    = vm86->regs.esi;
427     context->Edi    = vm86->regs.edi;
428     context->Esp    = vm86->regs.esp;
429     context->Ebp    = vm86->regs.ebp;
430     context->Eip    = vm86->regs.eip;
431     context->SegCs  = vm86->regs.cs;
432     context->SegDs  = vm86->regs.ds;
433     context->SegEs  = vm86->regs.es;
434     context->SegFs  = vm86->regs.fs;
435     context->SegGs  = vm86->regs.gs;
436     context->SegSs  = vm86->regs.ss;
437     context->EFlags = vm86->regs.eflags;
438 }
439
440
441 /***********************************************************************
442  *           restore_vm86_context
443  *
444  * Build a vm86 structure from the register values.
445  */
446 static void restore_vm86_context( const CONTEXT *context, struct vm86plus_struct *vm86 )
447 {
448     vm86->regs.eax    = context->Eax;
449     vm86->regs.ebx    = context->Ebx;
450     vm86->regs.ecx    = context->Ecx;
451     vm86->regs.edx    = context->Edx;
452     vm86->regs.esi    = context->Esi;
453     vm86->regs.edi    = context->Edi;
454     vm86->regs.esp    = context->Esp;
455     vm86->regs.ebp    = context->Ebp;
456     vm86->regs.eip    = context->Eip;
457     vm86->regs.cs     = context->SegCs;
458     vm86->regs.ds     = context->SegDs;
459     vm86->regs.es     = context->SegEs;
460     vm86->regs.fs     = context->SegFs;
461     vm86->regs.gs     = context->SegGs;
462     vm86->regs.ss     = context->SegSs;
463     vm86->regs.eflags = context->EFlags;
464 }
465
466
467 /**********************************************************************
468  *              merge_vm86_pending_flags
469  *
470  * Merges TEB.vm86_ptr and TEB.vm86_pending VIP flags and
471  * raises exception if there are pending events and VIF flag
472  * has been turned on.
473  *
474  * Called from __wine_enter_vm86 because vm86_enter
475  * doesn't check for pending events. 
476  *
477  * Called from raise_vm86_sti_exception to check for
478  * pending events in a signal safe way.
479  */
480 static void merge_vm86_pending_flags( EXCEPTION_RECORD *rec )
481 {
482     BOOL check_pending = TRUE;
483     struct vm86plus_struct *vm86 =
484         (struct vm86plus_struct*)(ntdll_get_thread_data()->vm86_ptr);
485
486     /*
487      * In order to prevent a race when SIGUSR2 occurs while
488      * we are returning from exception handler, pending events
489      * will be rechecked after each raised exception.
490      */
491     while (check_pending && NtCurrentTeb()->vm86_pending)
492     {
493         check_pending = FALSE;
494         ntdll_get_thread_data()->vm86_ptr = NULL;
495             
496         /*
497          * If VIF is set, throw exception.
498          * Note that SIGUSR2 may turn VIF flag off so
499          * VIF check must occur only when TEB.vm86_ptr is NULL.
500          */
501         if (vm86->regs.eflags & VIF_MASK)
502         {
503             CONTEXT vcontext;
504             save_vm86_context( &vcontext, vm86 );
505             
506             rec->ExceptionCode    = EXCEPTION_VM86_STI;
507             rec->ExceptionFlags   = EXCEPTION_CONTINUABLE;
508             rec->ExceptionRecord  = NULL;
509             rec->NumberParameters = 0;
510             rec->ExceptionAddress = (LPVOID)vcontext.Eip;
511
512             vcontext.EFlags &= ~VIP_MASK;
513             NtCurrentTeb()->vm86_pending = 0;
514             __regs_RtlRaiseException( rec, &vcontext );
515
516             restore_vm86_context( &vcontext, vm86 );
517             check_pending = TRUE;
518         }
519
520         ntdll_get_thread_data()->vm86_ptr = vm86;
521     }
522
523     /*
524      * Merge VIP flags in a signal safe way. This requires
525      * that the following operation compiles into atomic
526      * instruction.
527      */
528     vm86->regs.eflags |= NtCurrentTeb()->vm86_pending;
529 }
530 #endif /* __HAVE_VM86 */
531
532
533 typedef void (WINAPI *raise_func)( EXCEPTION_RECORD *rec, CONTEXT *context );
534
535
536 /***********************************************************************
537  *           init_handler
538  *
539  * Handler initialization when the full context is not needed.
540  */
541 inline static void *init_handler( const SIGCONTEXT *sigcontext, WORD *fs, WORD *gs )
542 {
543     void *stack = (void *)(ESP_sig(sigcontext) & ~3);
544     TEB *teb = get_current_teb();
545     struct ntdll_thread_regs *thread_regs = (struct ntdll_thread_regs *)teb->SpareBytes1;
546
547     /* get %fs and %gs at time of the fault */
548 #ifdef FS_sig
549     *fs = LOWORD(FS_sig(sigcontext));
550 #else
551     *fs = wine_get_fs();
552 #endif
553 #ifdef GS_sig
554     *gs = LOWORD(GS_sig(sigcontext));
555 #else
556     *gs = wine_get_gs();
557 #endif
558
559     wine_set_fs( thread_regs->fs );
560
561     /* now restore a proper %gs for the fault handler */
562     if (!wine_ldt_is_system(CS_sig(sigcontext)) ||
563         !wine_ldt_is_system(SS_sig(sigcontext)))  /* 16-bit mode */
564     {
565         /*
566          * Win16 or DOS protected mode. Note that during switch
567          * from 16-bit mode to linear mode, CS may be set to system
568          * segment before FS is restored. Fortunately, in this case
569          * SS is still non-system segment. This is why both CS and SS
570          * are checked.
571          */
572         wine_set_gs( thread_regs->gs );
573         stack = teb->WOW32Reserved;
574     }
575 #ifdef __HAVE_VM86
576     else if ((void *)EIP_sig(sigcontext) == vm86_return)  /* vm86 mode */
577     {
578         unsigned int *int_stack = stack;
579         /* fetch the saved %gs from the stack */
580         wine_set_gs( int_stack[0] );
581     }
582 #endif
583     else  /* 32-bit mode */
584     {
585 #ifdef GS_sig
586         wine_set_gs( GS_sig(sigcontext) );
587 #endif
588     }
589     return stack;
590 }
591
592
593 /***********************************************************************
594  *           save_fpu
595  *
596  * Save the thread FPU context.
597  */
598 inline static void save_fpu( CONTEXT *context )
599 {
600 #ifdef __GNUC__
601     context->ContextFlags |= CONTEXT_FLOATING_POINT;
602     __asm__ __volatile__( "fnsave %0; fwait" : "=m" (context->FloatSave) );
603 #endif
604 }
605
606
607 /***********************************************************************
608  *           restore_fpu
609  *
610  * Restore the FPU context to a sigcontext.
611  */
612 inline static void restore_fpu( const CONTEXT *context )
613 {
614     FLOATING_SAVE_AREA float_status = context->FloatSave;
615     /* reset the current interrupt status */
616     float_status.StatusWord &= float_status.ControlWord | 0xffffff80;
617 #ifdef __GNUC__
618     __asm__ __volatile__( "frstor %0; fwait" : : "m" (float_status) );
619 #endif  /* __GNUC__ */
620 }
621
622
623 /***********************************************************************
624  *           save_context
625  *
626  * Build a context structure from the signal info.
627  */
628 inline static void save_context( CONTEXT *context, const SIGCONTEXT *sigcontext, WORD fs, WORD gs )
629 {
630     struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
631
632     memset(context, 0, sizeof(*context));
633     context->ContextFlags = CONTEXT_FULL | CONTEXT_DEBUG_REGISTERS;
634     context->Eax          = EAX_sig(sigcontext);
635     context->Ebx          = EBX_sig(sigcontext);
636     context->Ecx          = ECX_sig(sigcontext);
637     context->Edx          = EDX_sig(sigcontext);
638     context->Esi          = ESI_sig(sigcontext);
639     context->Edi          = EDI_sig(sigcontext);
640     context->Ebp          = EBP_sig(sigcontext);
641     context->EFlags       = EFL_sig(sigcontext);
642     context->Eip          = EIP_sig(sigcontext);
643     context->Esp          = ESP_sig(sigcontext);
644     context->SegCs        = LOWORD(CS_sig(sigcontext));
645     context->SegDs        = LOWORD(DS_sig(sigcontext));
646     context->SegEs        = LOWORD(ES_sig(sigcontext));
647     context->SegFs        = fs;
648     context->SegGs        = gs;
649     context->SegSs        = LOWORD(SS_sig(sigcontext));
650     context->Dr0          = regs->dr0;
651     context->Dr1          = regs->dr1;
652     context->Dr2          = regs->dr2;
653     context->Dr3          = regs->dr3;
654     context->Dr6          = regs->dr6;
655     context->Dr7          = regs->dr7;
656
657 #ifdef FPU_sig
658     if (FPU_sig(sigcontext))
659     {
660         context->ContextFlags |= CONTEXT_FLOATING_POINT;
661         context->FloatSave = *FPU_sig(sigcontext);
662     }
663     else
664 #endif
665     {
666         save_fpu( context );
667     }
668 }
669
670
671 /***********************************************************************
672  *           restore_context
673  *
674  * Restore the signal info from the context.
675  */
676 inline static void restore_context( const CONTEXT *context, SIGCONTEXT *sigcontext )
677 {
678     struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
679
680     regs->dr0 = context->Dr0;
681     regs->dr1 = context->Dr1;
682     regs->dr2 = context->Dr2;
683     regs->dr3 = context->Dr3;
684     regs->dr6 = context->Dr6;
685     regs->dr7 = context->Dr7;
686     EAX_sig(sigcontext) = context->Eax;
687     EBX_sig(sigcontext) = context->Ebx;
688     ECX_sig(sigcontext) = context->Ecx;
689     EDX_sig(sigcontext) = context->Edx;
690     ESI_sig(sigcontext) = context->Esi;
691     EDI_sig(sigcontext) = context->Edi;
692     EBP_sig(sigcontext) = context->Ebp;
693     EFL_sig(sigcontext) = context->EFlags;
694     EIP_sig(sigcontext) = context->Eip;
695     ESP_sig(sigcontext) = context->Esp;
696     CS_sig(sigcontext)  = context->SegCs;
697     DS_sig(sigcontext)  = context->SegDs;
698     ES_sig(sigcontext)  = context->SegEs;
699     SS_sig(sigcontext)  = context->SegSs;
700 #ifdef GS_sig
701     GS_sig(sigcontext)  = context->SegGs;
702 #else
703     wine_set_gs( context->SegGs );
704 #endif
705 #ifdef FS_sig
706     FS_sig(sigcontext)  = context->SegFs;
707 #else
708     wine_set_fs( context->SegFs );
709 #endif
710
711 #ifdef FPU_sig
712     if (FPU_sig(sigcontext))
713     {
714         *FPU_sig(sigcontext) = context->FloatSave;
715     }
716     else
717 #endif
718     {
719         restore_fpu( context );
720     }
721 }
722
723
724 /***********************************************************************
725  *              get_cpu_context
726  *
727  * Register function to get the context of the current thread.
728  */
729 void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs )
730 {
731     *context = *regs;
732     save_fpu( context );
733 }
734 DEFINE_REGS_ENTRYPOINT( get_cpu_context, 4, 4 );
735
736
737 /***********************************************************************
738  *           set_cpu_context
739  *
740  * Set the new CPU context. Used by NtSetContextThread.
741  */
742 void set_cpu_context( const CONTEXT *context )
743 {
744     DWORD flags = context->ContextFlags & ~CONTEXT_i386;
745
746     if (flags & CONTEXT_FLOATING_POINT) restore_fpu( context );
747
748     if (flags & CONTEXT_DEBUG_REGISTERS)
749     {
750         struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
751         regs->dr0 = context->Dr0;
752         regs->dr1 = context->Dr1;
753         regs->dr2 = context->Dr2;
754         regs->dr3 = context->Dr3;
755         regs->dr6 = context->Dr6;
756         regs->dr7 = context->Dr7;
757     }
758     if (flags & CONTEXT_FULL)
759     {
760         if ((flags & CONTEXT_FULL) != (CONTEXT_FULL & ~CONTEXT_i386))
761             FIXME( "setting partial context (%x) not supported\n", flags );
762         else
763             __wine_call_from_32_restore_regs( context );
764     }
765 }
766
767
768 /***********************************************************************
769  *           is_privileged_instr
770  *
771  * Check if the fault location is a privileged instruction.
772  * Based on the instruction emulation code in dlls/kernel/instr.c.
773  */
774 static inline int is_privileged_instr( CONTEXT86 *context )
775 {
776     const BYTE *instr;
777     unsigned int prefix_count = 0;
778
779     if (!wine_ldt_is_system( context->SegCs )) return 0;
780     instr = (BYTE *)context->Eip;
781
782     for (;;) switch(*instr)
783     {
784     /* instruction prefixes */
785     case 0x2e:  /* %cs: */
786     case 0x36:  /* %ss: */
787     case 0x3e:  /* %ds: */
788     case 0x26:  /* %es: */
789     case 0x64:  /* %fs: */
790     case 0x65:  /* %gs: */
791     case 0x66:  /* opcode size */
792     case 0x67:  /* addr size */
793     case 0xf0:  /* lock */
794     case 0xf2:  /* repne */
795     case 0xf3:  /* repe */
796         if (++prefix_count >= 15) return 0;
797         instr++;
798         continue;
799
800     case 0x0f: /* extended instruction */
801         switch(instr[1])
802         {
803         case 0x20: /* mov crX, reg */
804         case 0x21: /* mov drX, reg */
805         case 0x22: /* mov reg, crX */
806         case 0x23: /* mov reg drX */
807             return 1;
808         }
809         return 0;
810     case 0x6c: /* insb (%dx) */
811     case 0x6d: /* insl (%dx) */
812     case 0x6e: /* outsb (%dx) */
813     case 0x6f: /* outsl (%dx) */
814     case 0xcd: /* int $xx */
815     case 0xe4: /* inb al,XX */
816     case 0xe5: /* in (e)ax,XX */
817     case 0xe6: /* outb XX,al */
818     case 0xe7: /* out XX,(e)ax */
819     case 0xec: /* inb (%dx),%al */
820     case 0xed: /* inl (%dx),%eax */
821     case 0xee: /* outb %al,(%dx) */
822     case 0xef: /* outl %eax,(%dx) */
823     case 0xf4: /* hlt */
824     case 0xfa: /* cli */
825     case 0xfb: /* sti */
826         return 1;
827     default:
828         return 0;
829     }
830 }
831
832
833 #include "pshpack1.h"
834 struct atl_thunk
835 {
836     DWORD movl;  /* movl this,4(%esp) */
837     DWORD this;
838     BYTE  jmp;   /* jmp func */
839     int   func;
840 };
841 #include "poppack.h"
842
843 /**********************************************************************
844  *              check_atl_thunk
845  *
846  * Check if code destination is an ATL thunk, and emulate it if so.
847  */
848 static BOOL check_atl_thunk( EXCEPTION_RECORD *rec, CONTEXT *context )
849 {
850     const struct atl_thunk *thunk = (const struct atl_thunk *)rec->ExceptionInformation[1];
851     BOOL ret = FALSE;
852
853     __TRY
854     {
855         if (thunk->movl == 0x042444c7 && thunk->jmp == 0xe9)
856         {
857             *((DWORD *)context->Esp + 1) = thunk->this;
858             context->Eip = (DWORD_PTR)(&thunk->func + 1) + thunk->func;
859             TRACE( "emulating ATL thunk at %p, func=%08x arg=%08x\n",
860                    thunk, context->Eip, *((DWORD *)context->Esp + 1) );
861             ret = TRUE;
862         }
863     }
864     __EXCEPT_PAGE_FAULT
865     {
866         return FALSE;
867     }
868     __ENDTRY
869     return ret;
870 }
871
872
873 /***********************************************************************
874  *           setup_exception
875  *
876  * Setup a proper stack frame for the raise function, and modify the
877  * sigcontext so that the return from the signal handler will call
878  * the raise function.
879  */
880 static EXCEPTION_RECORD *setup_exception( SIGCONTEXT *sigcontext, raise_func func )
881 {
882     struct stack_layout
883     {
884         void             *ret_addr;      /* return address from raise_func */
885         EXCEPTION_RECORD *rec_ptr;       /* first arg for raise_func */
886         CONTEXT          *context_ptr;   /* second arg for raise_func */
887         CONTEXT           context;
888         EXCEPTION_RECORD  rec;
889         DWORD             ebp;
890         DWORD             eip;
891     } *stack;
892
893     WORD fs, gs;
894
895     stack = init_handler( sigcontext, &fs, &gs );
896
897     /* stack sanity checks */
898
899     if ((char *)stack >= (char *)get_signal_stack() &&
900         (char *)stack < (char *)get_signal_stack() + signal_stack_size)
901     {
902         ERR( "nested exception on signal stack in thread %04x eip %08x esp %08x stack %p-%p\n",
903              GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
904              (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
905              NtCurrentTeb()->Tib.StackBase );
906         server_abort_thread(1);
907     }
908
909     if (stack - 1 > stack || /* check for overflow in subtraction */
910         (char *)(stack - 1) < (char *)NtCurrentTeb()->Tib.StackLimit ||
911         (char *)stack > (char *)NtCurrentTeb()->Tib.StackBase)
912     {
913         UINT diff = (char *)NtCurrentTeb()->Tib.StackLimit - (char *)stack;
914         if (diff < 4096)
915         {
916             ERR( "stack overflow %u bytes in thread %04x eip %08x esp %08x stack %p-%p\n",
917                  diff, GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
918                  (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
919                  NtCurrentTeb()->Tib.StackBase );
920             server_abort_thread(1);
921         }
922         else WARN( "exception outside of stack limits in thread %04x eip %08x esp %08x stack %p-%p\n",
923                    GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
924                    (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
925                    NtCurrentTeb()->Tib.StackBase );
926     }
927
928     stack--;  /* push the stack_layout structure */
929 #ifdef HAVE_VALGRIND_MEMCHECK_H
930     VALGRIND_MAKE_WRITABLE(stack, sizeof(*stack));
931 #endif
932     stack->ret_addr     = (void *)0xdeadbabe;  /* raise_func must not return */
933     stack->rec_ptr      = &stack->rec;
934     stack->context_ptr  = &stack->context;
935
936     stack->rec.ExceptionRecord  = NULL;
937     stack->rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
938     stack->rec.ExceptionAddress = (LPVOID)EIP_sig(sigcontext);
939     stack->rec.NumberParameters = 0;
940
941     save_context( &stack->context, sigcontext, fs, gs );
942
943     /* now modify the sigcontext to return to the raise function */
944     ESP_sig(sigcontext) = (DWORD)stack;
945     EIP_sig(sigcontext) = (DWORD)func;
946     /* clear single-step and align check flag */
947     EFL_sig(sigcontext) &= ~(0x100|0x40000); 
948     CS_sig(sigcontext)  = wine_get_cs();
949     DS_sig(sigcontext)  = wine_get_ds();
950     ES_sig(sigcontext)  = wine_get_es();
951     FS_sig(sigcontext)  = wine_get_fs();
952     GS_sig(sigcontext)  = wine_get_gs();
953     SS_sig(sigcontext)  = wine_get_ss();
954
955     return stack->rec_ptr;
956 }
957
958
959 /***********************************************************************
960  *           get_exception_context
961  *
962  * Get a pointer to the context built by setup_exception.
963  */
964 static inline CONTEXT *get_exception_context( EXCEPTION_RECORD *rec )
965 {
966     return (CONTEXT *)rec - 1;  /* cf. stack_layout structure */
967 }
968
969
970 /**********************************************************************
971  *              get_fpu_code
972  *
973  * Get the FPU exception code from the FPU status.
974  */
975 static inline DWORD get_fpu_code( const CONTEXT *context )
976 {
977     DWORD status = context->FloatSave.StatusWord;
978
979     if (status & 0x01)  /* IE */
980     {
981         if (status & 0x40)  /* SF */
982             return EXCEPTION_FLT_STACK_CHECK;
983         else
984             return EXCEPTION_FLT_INVALID_OPERATION;
985     }
986     if (status & 0x02) return EXCEPTION_FLT_DENORMAL_OPERAND;  /* DE flag */
987     if (status & 0x04) return EXCEPTION_FLT_DIVIDE_BY_ZERO;    /* ZE flag */
988     if (status & 0x08) return EXCEPTION_FLT_OVERFLOW;          /* OE flag */
989     if (status & 0x10) return EXCEPTION_FLT_UNDERFLOW;         /* UE flag */
990     if (status & 0x20) return EXCEPTION_FLT_INEXACT_RESULT;    /* PE flag */
991     return EXCEPTION_FLT_INVALID_OPERATION;  /* generic error */
992 }
993
994
995 /**********************************************************************
996  *              raise_segv_exception
997  */
998 static void WINAPI raise_segv_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
999 {
1000     switch(rec->ExceptionCode)
1001     {
1002     case EXCEPTION_ACCESS_VIOLATION:
1003         if (rec->NumberParameters == 2)
1004         {
1005             if (rec->ExceptionInformation[0] == EXCEPTION_EXECUTE_FAULT && check_atl_thunk( rec, context ))
1006                 goto done;
1007             rec->ExceptionCode = VIRTUAL_HandleFault( (void *)rec->ExceptionInformation[1] );
1008         }
1009         break;
1010     case EXCEPTION_DATATYPE_MISALIGNMENT:
1011         /* FIXME: pass through exception handler first? */
1012         if (context->EFlags & 0x00040000)
1013         {
1014             /* Disable AC flag, return */
1015             context->EFlags &= ~0x00040000;
1016             goto done;
1017         }
1018         break;
1019     }
1020     __regs_RtlRaiseException( rec, context );
1021 done:
1022     NtSetContextThread( GetCurrentThread(), context );
1023 }
1024
1025
1026 /**********************************************************************
1027  *              raise_trap_exception
1028  */
1029 static void WINAPI raise_trap_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1030 {
1031     if (rec->ExceptionCode == EXCEPTION_SINGLE_STEP)
1032     {
1033         if (context->EFlags & 0x100)
1034         {
1035             context->EFlags &= ~0x100;  /* clear single-step flag */
1036         }
1037         else  /* hardware breakpoint, fetch the debug registers */
1038         {
1039             context->ContextFlags = CONTEXT_DEBUG_REGISTERS;
1040             NtGetContextThread(GetCurrentThread(), context);
1041             /* we have either:
1042              *    - a bp from a debug register
1043              *    - a single step interrupt at popf instruction, which just has
1044              *      removed the TF.
1045              *    - someone did a kill(SIGTRAP) on us, and we shall return
1046              *      a breakpoint, not a single step exception
1047              */
1048             if ( !(context->Dr6 & 0xf) && !(context->Dr6 & 0x4000) )
1049                 rec->ExceptionCode = EXCEPTION_BREAKPOINT;
1050             context->ContextFlags |= CONTEXT_FULL;  /* restore flags */
1051         }
1052     }
1053
1054     __regs_RtlRaiseException( rec, context );
1055     NtSetContextThread( GetCurrentThread(), context );
1056 }
1057
1058
1059 /**********************************************************************
1060  *              raise_exception
1061  *
1062  * Generic raise function for exceptions that don't need special treatment.
1063  */
1064 static void WINAPI raise_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1065 {
1066     __regs_RtlRaiseException( rec, context );
1067     NtSetContextThread( GetCurrentThread(), context );
1068 }
1069
1070
1071 #ifdef __HAVE_VM86
1072 /**********************************************************************
1073  *              raise_vm86_sti_exception
1074  */
1075 static void WINAPI raise_vm86_sti_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1076 {
1077     /* merge_vm86_pending_flags merges the vm86_pending flag in safely */
1078     NtCurrentTeb()->vm86_pending |= VIP_MASK;
1079
1080     if (ntdll_get_thread_data()->vm86_ptr)
1081     {
1082         if (((char*)context->Eip >= (char*)vm86_return) &&
1083             ((char*)context->Eip <= (char*)vm86_return_end) &&
1084             (VM86_TYPE(context->Eax) != VM86_SIGNAL)) {
1085             /* exiting from VM86, can't throw */
1086             goto done;
1087         }
1088         merge_vm86_pending_flags( rec );
1089     }
1090     else if (NtCurrentTeb()->dpmi_vif &&
1091              !wine_ldt_is_system(context->SegCs) &&
1092              !wine_ldt_is_system(context->SegSs))
1093     {
1094         /* Executing DPMI code and virtual interrupts are enabled. */
1095         NtCurrentTeb()->vm86_pending = 0;
1096         __regs_RtlRaiseException( rec, context );
1097     }
1098 done:
1099     NtSetContextThread( GetCurrentThread(), context );
1100 }
1101
1102
1103 /**********************************************************************
1104  *              usr2_handler
1105  *
1106  * Handler for SIGUSR2.
1107  * We use it to signal that the running __wine_enter_vm86() should
1108  * immediately set VIP_MASK, causing pending events to be handled
1109  * as early as possible.
1110  */
1111 static void usr2_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1112 {
1113     EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_vm86_sti_exception );
1114     rec->ExceptionCode = EXCEPTION_VM86_STI;
1115 }
1116 #endif /* __HAVE_VM86 */
1117
1118
1119 /**********************************************************************
1120  *              segv_handler
1121  *
1122  * Handler for SIGSEGV and related errors.
1123  */
1124 static void segv_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1125 {
1126     SIGCONTEXT *context = sigcontext;
1127     EXCEPTION_RECORD *rec = setup_exception( context, raise_segv_exception );
1128
1129     switch(get_trap_code(context))
1130     {
1131     case TRAP_x86_OFLOW:   /* Overflow exception */
1132         rec->ExceptionCode = EXCEPTION_INT_OVERFLOW;
1133         break;
1134     case TRAP_x86_BOUND:   /* Bound range exception */
1135         rec->ExceptionCode = EXCEPTION_ARRAY_BOUNDS_EXCEEDED;
1136         break;
1137     case TRAP_x86_PRIVINFLT:   /* Invalid opcode exception */
1138         rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
1139         break;
1140     case TRAP_x86_STKFLT:  /* Stack fault */
1141         rec->ExceptionCode = EXCEPTION_STACK_OVERFLOW;
1142         break;
1143     case TRAP_x86_SEGNPFLT:  /* Segment not present exception */
1144     case TRAP_x86_PROTFLT:   /* General protection fault */
1145     case TRAP_x86_UNKNOWN:   /* Unknown fault code */
1146         if (!get_error_code(context) && is_privileged_instr( get_exception_context(rec) ))
1147             rec->ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
1148         else
1149         {
1150             WORD err = get_error_code(context);
1151             rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
1152             rec->NumberParameters = 2;
1153             rec->ExceptionInformation[0] = 0;
1154             /* if error contains a LDT selector, use that as fault address */
1155             rec->ExceptionInformation[1] = (err & 7) == 4 ? (err & ~7) : 0xffffffff;
1156         }
1157         break;
1158     case TRAP_x86_PAGEFLT:  /* Page fault */
1159         rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
1160         rec->NumberParameters = 2;
1161         rec->ExceptionInformation[0] = (get_error_code(context) >> 1) & 0x09;
1162         rec->ExceptionInformation[1] = (ULONG_PTR)siginfo->si_addr;
1163         break;
1164     case TRAP_x86_ALIGNFLT:  /* Alignment check exception */
1165         rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
1166         break;
1167     default:
1168         ERR( "Got unexpected trap %d\n", get_trap_code(context) );
1169         /* fall through */
1170     case TRAP_x86_NMI:       /* NMI interrupt */
1171     case TRAP_x86_DNA:       /* Device not available exception */
1172     case TRAP_x86_DOUBLEFLT: /* Double fault exception */
1173     case TRAP_x86_TSSFLT:    /* Invalid TSS exception */
1174     case TRAP_x86_MCHK:      /* Machine check exception */
1175     case TRAP_x86_CACHEFLT:  /* Cache flush exception */
1176         rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
1177         break;
1178     }
1179 }
1180
1181
1182 /**********************************************************************
1183  *              trap_handler
1184  *
1185  * Handler for SIGTRAP.
1186  */
1187 static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1188 {
1189     SIGCONTEXT *context = sigcontext;
1190     EXCEPTION_RECORD *rec = setup_exception( context, raise_trap_exception );
1191
1192     switch(get_trap_code(context))
1193     {
1194     case TRAP_x86_TRCTRAP:  /* Single-step exception */
1195         rec->ExceptionCode = EXCEPTION_SINGLE_STEP;
1196         break;
1197     case TRAP_x86_BPTFLT:   /* Breakpoint exception */
1198         rec->ExceptionAddress = (char *)rec->ExceptionAddress - 1;  /* back up over the int3 instruction */
1199         /* fall through */
1200     default:
1201         rec->ExceptionCode = EXCEPTION_BREAKPOINT;
1202         break;
1203     }
1204 }
1205
1206
1207 /**********************************************************************
1208  *              fpe_handler
1209  *
1210  * Handler for SIGFPE.
1211  */
1212 static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1213 {
1214     CONTEXT *win_context;
1215     SIGCONTEXT *context = sigcontext;
1216     EXCEPTION_RECORD *rec = setup_exception( context, raise_exception );
1217
1218     win_context = get_exception_context( rec );
1219
1220     switch(get_trap_code(context))
1221     {
1222     case TRAP_x86_DIVIDE:   /* Division by zero exception */
1223         rec->ExceptionCode = EXCEPTION_INT_DIVIDE_BY_ZERO;
1224         break;
1225     case TRAP_x86_FPOPFLT:   /* Coprocessor segment overrun */
1226         rec->ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
1227         break;
1228     case TRAP_x86_ARITHTRAP:  /* Floating point exception */
1229     case TRAP_x86_UNKNOWN:    /* Unknown fault code */
1230         rec->ExceptionCode = get_fpu_code( win_context );
1231         break;
1232     case TRAP_x86_CACHEFLT:  /* SIMD exception */
1233         /* TODO:
1234          * Behaviour only tested for divide-by-zero exceptions
1235          * Check for other SIMD exceptions as well */
1236         if(siginfo->si_code != FPE_FLTDIV)
1237             FIXME("untested SIMD exception: %#x. Might not work correctly\n",
1238                   siginfo->si_code);
1239
1240         rec->ExceptionCode = STATUS_FLOAT_MULTIPLE_TRAPS;
1241         rec->NumberParameters = 1;
1242         /* no idea what meaning is actually behind this but thats what native does */
1243         rec->ExceptionInformation[0] = 0;
1244         break;
1245     default:
1246         ERR( "Got unexpected trap %d\n", get_trap_code(context) );
1247         rec->ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
1248         break;
1249     }
1250 }
1251
1252
1253 /**********************************************************************
1254  *              int_handler
1255  *
1256  * Handler for SIGINT.
1257  *
1258  * FIXME: should not be calling external functions on the signal stack.
1259  */
1260 static void int_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1261 {
1262     WORD fs, gs;
1263     init_handler( sigcontext, &fs, &gs );
1264     if (!dispatch_signal(SIGINT))
1265     {
1266         EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_exception );
1267         rec->ExceptionCode = CONTROL_C_EXIT;
1268     }
1269 }
1270
1271 /**********************************************************************
1272  *              abrt_handler
1273  *
1274  * Handler for SIGABRT.
1275  */
1276 static void abrt_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1277 {
1278     EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_exception );
1279     rec->ExceptionCode  = EXCEPTION_WINE_ASSERTION;
1280     rec->ExceptionFlags = EH_NONCONTINUABLE;
1281 }
1282
1283
1284 /**********************************************************************
1285  *              term_handler
1286  *
1287  * Handler for SIGTERM.
1288  */
1289 static void term_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1290 {
1291     WORD fs, gs;
1292     init_handler( sigcontext, &fs, &gs );
1293     server_abort_thread(0);
1294 }
1295
1296
1297 /**********************************************************************
1298  *              usr1_handler
1299  *
1300  * Handler for SIGUSR1, used to signal a thread that it got suspended.
1301  */
1302 static void usr1_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1303 {
1304     CONTEXT context;
1305     WORD fs, gs;
1306
1307     init_handler( sigcontext, &fs, &gs );
1308     save_context( &context, sigcontext, fs, gs );
1309     wait_suspend( &context );
1310     restore_context( &context, sigcontext );
1311 }
1312
1313
1314 /**********************************************************************
1315  *              get_signal_stack_total_size
1316  *
1317  * Retrieve the size to allocate for the signal stack, including the TEB at the bottom.
1318  * Must be a power of two.
1319  */
1320 size_t get_signal_stack_total_size(void)
1321 {
1322     static const size_t teb_size = 4096;  /* we reserve one page for the TEB */
1323
1324     if (!signal_stack_size)
1325     {
1326         size_t size = 4096, min_size = teb_size + max( MINSIGSTKSZ, 4096 );
1327         /* find the first power of two not smaller than min_size */
1328         while (size < min_size) size *= 2;
1329         signal_stack_mask = size - 1;
1330         signal_stack_size = size - teb_size;
1331     }
1332     return signal_stack_size + teb_size;
1333 }
1334
1335
1336 /***********************************************************************
1337  *           __wine_set_signal_handler   (NTDLL.@)
1338  */
1339 int __wine_set_signal_handler(unsigned int sig, wine_signal_handler wsh)
1340 {
1341     if (sig >= sizeof(handlers) / sizeof(handlers[0])) return -1;
1342     if (handlers[sig] != NULL) return -2;
1343     handlers[sig] = wsh;
1344     return 0;
1345 }
1346
1347
1348 /**********************************************************************
1349  *              SIGNAL_Init
1350  */
1351 BOOL SIGNAL_Init(void)
1352 {
1353     struct sigaction sig_act;
1354
1355 #ifdef HAVE_SIGALTSTACK
1356     stack_t ss;
1357
1358 #ifdef __APPLE__
1359     int mib[2], val = 1;
1360
1361     mib[0] = CTL_KERN;
1362     mib[1] = KERN_THALTSTACK;
1363     sysctl( mib, 2, NULL, NULL, &val, sizeof(val) );
1364 #endif
1365
1366     ss.ss_sp    = get_signal_stack();
1367     ss.ss_size  = signal_stack_size;
1368     ss.ss_flags = 0;
1369     if (sigaltstack(&ss, NULL) == -1)
1370     {
1371         perror( "sigaltstack" );
1372         return FALSE;
1373     }
1374 #endif  /* HAVE_SIGALTSTACK */
1375
1376     sig_act.sa_mask = server_block_set;
1377     sig_act.sa_flags = SA_SIGINFO | SA_RESTART;
1378 #ifdef SA_ONSTACK
1379     sig_act.sa_flags |= SA_ONSTACK;
1380 #endif
1381
1382     sig_act.sa_sigaction = int_handler;
1383     if (sigaction( SIGINT, &sig_act, NULL ) == -1) goto error;
1384     sig_act.sa_sigaction = fpe_handler;
1385     if (sigaction( SIGFPE, &sig_act, NULL ) == -1) goto error;
1386     sig_act.sa_sigaction = abrt_handler;
1387     if (sigaction( SIGABRT, &sig_act, NULL ) == -1) goto error;
1388     sig_act.sa_sigaction = term_handler;
1389     if (sigaction( SIGTERM, &sig_act, NULL ) == -1) goto error;
1390     sig_act.sa_sigaction = usr1_handler;
1391     if (sigaction( SIGUSR1, &sig_act, NULL ) == -1) goto error;
1392
1393     sig_act.sa_sigaction = segv_handler;
1394     if (sigaction( SIGSEGV, &sig_act, NULL ) == -1) goto error;
1395     if (sigaction( SIGILL, &sig_act, NULL ) == -1) goto error;
1396 #ifdef SIGBUS
1397     if (sigaction( SIGBUS, &sig_act, NULL ) == -1) goto error;
1398 #endif
1399
1400 #ifdef SIGTRAP
1401     sig_act.sa_sigaction = trap_handler;
1402     if (sigaction( SIGTRAP, &sig_act, NULL ) == -1) goto error;
1403 #endif
1404
1405 #ifdef __HAVE_VM86
1406     sig_act.sa_sigaction = usr2_handler;
1407     if (sigaction( SIGUSR2, &sig_act, NULL ) == -1) goto error;
1408 #endif
1409
1410     return TRUE;
1411
1412  error:
1413     perror("sigaction");
1414     return FALSE;
1415 }
1416
1417
1418 #ifdef __HAVE_VM86
1419 /**********************************************************************
1420  *              __wine_enter_vm86   (NTDLL.@)
1421  *
1422  * Enter vm86 mode with the specified register context.
1423  */
1424 void __wine_enter_vm86( CONTEXT *context )
1425 {
1426     EXCEPTION_RECORD rec;
1427     int res;
1428     struct vm86plus_struct vm86;
1429
1430     memset( &vm86, 0, sizeof(vm86) );
1431     for (;;)
1432     {
1433         restore_vm86_context( context, &vm86 );
1434
1435         ntdll_get_thread_data()->vm86_ptr = &vm86;
1436         merge_vm86_pending_flags( &rec );
1437
1438         res = vm86_enter( &ntdll_get_thread_data()->vm86_ptr ); /* uses and clears teb->vm86_ptr */
1439         if (res < 0)
1440         {
1441             errno = -res;
1442             return;
1443         }
1444
1445         save_vm86_context( context, &vm86 );
1446
1447         rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
1448         rec.ExceptionRecord  = NULL;
1449         rec.ExceptionAddress = (LPVOID)context->Eip;
1450         rec.NumberParameters = 0;
1451
1452         switch(VM86_TYPE(res))
1453         {
1454         case VM86_UNKNOWN: /* unhandled GP fault - IO-instruction or similar */
1455             rec.ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
1456             raise_segv_exception( &rec, context );
1457             continue;
1458         case VM86_TRAP: /* return due to DOS-debugger request */
1459             switch(VM86_ARG(res))
1460             {
1461             case TRAP_x86_TRCTRAP:  /* Single-step exception */
1462                 rec.ExceptionCode = EXCEPTION_SINGLE_STEP;
1463                 break;
1464             case TRAP_x86_BPTFLT:   /* Breakpoint exception */
1465                 rec.ExceptionAddress = (char *)rec.ExceptionAddress - 1;  /* back up over the int3 instruction */
1466                 /* fall through */
1467             default:
1468                 rec.ExceptionCode = EXCEPTION_BREAKPOINT;
1469                 break;
1470             }
1471             break;
1472         case VM86_INTx: /* int3/int x instruction (ARG = x) */
1473             rec.ExceptionCode = EXCEPTION_VM86_INTx;
1474             rec.NumberParameters = 1;
1475             rec.ExceptionInformation[0] = VM86_ARG(res);
1476             break;
1477         case VM86_STI: /* sti/popf/iret instruction enabled virtual interrupts */
1478             context->EFlags |= VIF_MASK;
1479             context->EFlags &= ~VIP_MASK;
1480             NtCurrentTeb()->vm86_pending = 0;
1481             rec.ExceptionCode = EXCEPTION_VM86_STI;
1482             break;
1483         case VM86_PICRETURN: /* return due to pending PIC request */
1484             rec.ExceptionCode = EXCEPTION_VM86_PICRETURN;
1485             break;
1486         case VM86_SIGNAL: /* cannot happen because vm86_enter handles this case */
1487         default:
1488             ERR( "unhandled result from vm86 mode %x\n", res );
1489             continue;
1490         }
1491         __regs_RtlRaiseException( &rec, context );
1492     }
1493 }
1494
1495 #else /* __HAVE_VM86 */
1496 /**********************************************************************
1497  *              __wine_enter_vm86   (NTDLL.@)
1498  */
1499 void __wine_enter_vm86( CONTEXT *context )
1500 {
1501     MESSAGE("vm86 mode not supported on this platform\n");
1502 }
1503 #endif /* __HAVE_VM86 */
1504
1505 /**********************************************************************
1506  *              DbgBreakPoint   (NTDLL.@)
1507  */
1508 __ASM_GLOBAL_FUNC( DbgBreakPoint, "int $3; ret")
1509
1510 /**********************************************************************
1511  *              DbgUserBreakPoint   (NTDLL.@)
1512  */
1513 __ASM_GLOBAL_FUNC( DbgUserBreakPoint, "int $3; ret")
1514
1515
1516 /**********************************************************************
1517  *              EXC_CallHandler   (internal)
1518  *
1519  * Some exception handlers depend on EBP to have a fixed position relative to
1520  * the exception frame.
1521  * Shrinker depends on (*1) doing what it does,
1522  * (*2) being the exact instruction it is and (*3) beginning with 0x64
1523  * (i.e. the %fs prefix to the movl instruction). It also depends on the
1524  * function calling the handler having only 5 parameters (*4).
1525  */
1526 __ASM_GLOBAL_FUNC( EXC_CallHandler,
1527 "       pushl   %ebp\n"
1528 "       movl    %esp, %ebp\n"
1529 "       pushl   %ebx\n"
1530 "       movl    28(%ebp), %edx\n" /* ugly hack to pass the 6th param needed because of Shrinker */
1531 "       pushl   24(%ebp)\n"
1532 "       pushl   20(%ebp)\n"
1533 "       pushl   16(%ebp)\n"
1534 "       pushl   12(%ebp)\n"
1535 "       pushl   8(%ebp)\n"
1536 "       call    " __ASM_NAME("call_exception_handler") "\n"
1537 "       popl    %ebx\n"
1538 "       leave\n"
1539 "       ret\n"
1540 )
1541 __ASM_GLOBAL_FUNC(call_exception_handler,
1542 "       pushl   %ebp\n"
1543 "       movl    %esp, %ebp\n"
1544 "       subl    $12,%esp\n"
1545 "       pushl   12(%ebp)\n"       /* make any exceptions in this... */
1546 "       pushl   %edx\n"           /* handler be handled by... */
1547 "       .byte   0x64\n"
1548 "       pushl   (0)\n"            /* nested_handler (passed in edx). */
1549 "       .byte   0x64\n"
1550 "       movl    %esp,(0)\n"       /* push the new exception frame onto the exception stack. */
1551 "       pushl   20(%ebp)\n"
1552 "       pushl   16(%ebp)\n"
1553 "       pushl   12(%ebp)\n"
1554 "       pushl   8(%ebp)\n"
1555 "       movl    24(%ebp), %ecx\n" /* (*1) */
1556 "       call    *%ecx\n"          /* call handler. (*2) */
1557 "       .byte   0x64\n"
1558 "       movl    (0), %esp\n"      /* restore previous... (*3) */
1559 "       .byte   0x64\n"
1560 "       popl    (0)\n"            /* exception frame. */
1561 "       movl    %ebp, %esp\n"     /* restore saved stack, in case it was corrupted */
1562 "       popl    %ebp\n"
1563 "       ret     $20\n"            /* (*4) */
1564 )
1565 #endif  /* __i386__ */