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