Added version information.
[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 <stdio.h>
30 #ifdef HAVE_UNISTD_H
31 # include <unistd.h>
32 #endif
33
34 #ifdef HAVE_SYS_PARAM_H
35 # include <sys/param.h>
36 #endif
37 #ifdef HAVE_SYSCALL_H
38 # include <syscall.h>
39 #else
40 # ifdef HAVE_SYS_SYSCALL_H
41 #  include <sys/syscall.h>
42 # endif
43 #endif
44
45 #ifdef HAVE_SYS_VM86_H
46 # include <sys/vm86.h>
47 #endif
48
49 #ifdef HAVE_SYS_SIGNAL_H
50 # include <sys/signal.h>
51 #endif
52
53 #include "windef.h"
54 #include "winternl.h"
55 #include "wine/library.h"
56
57 #include "selectors.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 } 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), "r" (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), "r" (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 %gs\n\t"
151                   "pushl %fs\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 %fs\n\t"
157                   "popl %gs\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  /* FreeBSD */
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, void *__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 #if defined(linux) || defined(__NetBSD__) || defined(__FreeBSD__) ||\
295     defined(__OpenBSD__) || defined(__EMX__) || defined(__CYGWIN__)
296
297 #define EAX_sig(context)     ((context)->sc_eax)
298 #define EBX_sig(context)     ((context)->sc_ebx)
299 #define ECX_sig(context)     ((context)->sc_ecx)
300 #define EDX_sig(context)     ((context)->sc_edx)
301 #define ESI_sig(context)     ((context)->sc_esi)
302 #define EDI_sig(context)     ((context)->sc_edi)
303 #define EBP_sig(context)     ((context)->sc_ebp)
304
305 #define CS_sig(context)      ((context)->sc_cs)
306 #define DS_sig(context)      ((context)->sc_ds)
307 #define ES_sig(context)      ((context)->sc_es)
308 #define FS_sig(context)      ((context)->sc_fs)
309 #define GS_sig(context)      ((context)->sc_gs)
310 #define SS_sig(context)      ((context)->sc_ss)
311
312 #define TRAP_sig(context)    ((context)->sc_trapno)
313
314 #ifdef __NetBSD__
315 #define ERROR_sig(context)   ((context)->sc_err)
316 #endif
317
318 #ifdef linux
319 #define ERROR_sig(context)   ((context)->sc_err)
320 #define FPU_sig(context)     ((FLOATING_SAVE_AREA*)((context)->i387))
321 #define FAULT_ADDRESS        ((void *)HANDLER_CONTEXT->cr2)
322 #endif
323
324 #ifdef __FreeBSD__
325 #define EFL_sig(context)     ((context)->sc_efl)
326 /* FreeBSD, see i386/i386/traps.c::trap_pfault va->err kludge  */
327 #define FAULT_ADDRESS        ((void *)HANDLER_CONTEXT->sc_err)
328 #else
329 #define EFL_sig(context)     ((context)->sc_eflags)
330 #endif
331
332 #define EIP_sig(context)     (*((unsigned long*)&(context)->sc_eip))
333 #define ESP_sig(context)     (*((unsigned long*)&(context)->sc_esp))
334
335 #endif  /* linux || __NetBSD__ || __FreeBSD__ || __OpenBSD__ */
336
337 #if defined(__svr4__) || defined(_SCO_DS) || defined(__sun)
338
339 #ifdef _SCO_DS
340 #define gregs regs
341 #endif
342
343 #define EAX_sig(context)     ((context)->uc_mcontext.gregs[EAX])
344 #define EBX_sig(context)     ((context)->uc_mcontext.gregs[EBX])
345 #define ECX_sig(context)     ((context)->uc_mcontext.gregs[ECX])
346 #define EDX_sig(context)     ((context)->uc_mcontext.gregs[EDX])
347 #define ESI_sig(context)     ((context)->uc_mcontext.gregs[ESI])
348 #define EDI_sig(context)     ((context)->uc_mcontext.gregs[EDI])
349 #define EBP_sig(context)     ((context)->uc_mcontext.gregs[EBP])
350
351 #define CS_sig(context)      ((context)->uc_mcontext.gregs[CS])
352 #define DS_sig(context)      ((context)->uc_mcontext.gregs[DS])
353 #define ES_sig(context)      ((context)->uc_mcontext.gregs[ES])
354 #define SS_sig(context)      ((context)->uc_mcontext.gregs[SS])
355
356 #define FS_sig(context)      ((context)->uc_mcontext.gregs[FS])
357 #define GS_sig(context)      ((context)->uc_mcontext.gregs[GS])
358
359 #define EFL_sig(context)     ((context)->uc_mcontext.gregs[EFL])
360
361 #define EIP_sig(context)     ((context)->uc_mcontext.gregs[EIP])
362 #ifdef R_ESP
363 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[R_ESP])
364 #else
365 #define ESP_sig(context)     ((context)->uc_mcontext.gregs[ESP])
366 #endif
367 #ifdef TRAPNO
368 #define TRAP_sig(context)     ((context)->uc_mcontext.gregs[TRAPNO])
369 #endif
370
371 #define FAULT_ADDRESS         (__siginfo->si_addr)
372
373 #endif  /* svr4 || SCO_DS */
374
375
376 /* exception code definitions (already defined by FreeBSD/NetBSD) */
377 #if !defined(__FreeBSD__) && !defined(__NetBSD__) /* FIXME: other BSDs? */
378 #define T_DIVIDE        0   /* Division by zero exception */
379 #define T_TRCTRAP       1   /* Single-step exception */
380 #define T_NMI           2   /* NMI interrupt */
381 #define T_BPTFLT        3   /* Breakpoint exception */
382 #define T_OFLOW         4   /* Overflow exception */
383 #define T_BOUND         5   /* Bound range exception */
384 #define T_PRIVINFLT     6   /* Invalid opcode exception */
385 #define T_DNA           7   /* Device not available exception */
386 #define T_DOUBLEFLT     8   /* Double fault exception */
387 #define T_FPOPFLT       9   /* Coprocessor segment overrun */
388 #define T_TSSFLT        10  /* Invalid TSS exception */
389 #define T_SEGNPFLT      11  /* Segment not present exception */
390 #define T_STKFLT        12  /* Stack fault */
391 #define T_PROTFLT       13  /* General protection fault */
392 #define T_PAGEFLT       14  /* Page fault */
393 #define T_RESERVED      15  /* Unknown exception */
394 #define T_ARITHTRAP     16  /* Floating point exception */
395 #define T_ALIGNFLT      17  /* Alignment check exception */
396 #define T_MCHK          18  /* Machine check exception */
397 #define T_CACHEFLT      19  /* Cache flush exception */
398 #endif
399 #if defined(__NetBSD__)
400 #define T_MCHK          19  /* Machine check exception */
401 #endif
402
403 #define T_UNKNOWN     (-1)  /* Unknown fault (TRAP_sig not defined) */
404
405 #include "wine/exception.h"
406 #include "stackframe.h"
407 #include "global.h"
408 #include "miscemu.h"
409 #include "syslevel.h"
410 #include "wine/debug.h"
411
412 WINE_DEFAULT_DEBUG_CHANNEL(seh);
413
414 typedef int (*wine_signal_handler)(unsigned int sig);
415
416 static wine_signal_handler handlers[256];
417
418 extern void WINAPI EXC_RtlRaiseException( PEXCEPTION_RECORD, PCONTEXT );
419
420 /***********************************************************************
421  *           dispatch_signal
422  */
423 inline static int dispatch_signal(unsigned int sig)
424 {
425     if (handlers[sig] == NULL) return 0;
426     return handlers[sig](sig);
427 }
428
429
430 /***********************************************************************
431  *           get_trap_code
432  *
433  * Get the trap code for a signal.
434  */
435 static inline int get_trap_code( const SIGCONTEXT *sigcontext )
436 {
437 #ifdef TRAP_sig
438     return TRAP_sig(sigcontext);
439 #else
440     return T_UNKNOWN;  /* unknown trap code */
441 #endif
442 }
443
444 /***********************************************************************
445  *           get_error_code
446  *
447  * Get the error code for a signal.
448  */
449 static inline int get_error_code( const SIGCONTEXT *sigcontext )
450 {
451 #ifdef ERROR_sig
452     return ERROR_sig(sigcontext);
453 #else
454     return 0;
455 #endif
456 }
457
458 #ifdef __HAVE_VM86
459 /***********************************************************************
460  *           save_vm86_context
461  *
462  * Set the register values from a vm86 structure.
463  */
464 static void save_vm86_context( CONTEXT *context, const struct vm86plus_struct *vm86 )
465 {
466     context->Eax    = vm86->regs.eax;
467     context->Ebx    = vm86->regs.ebx;
468     context->Ecx    = vm86->regs.ecx;
469     context->Edx    = vm86->regs.edx;
470     context->Esi    = vm86->regs.esi;
471     context->Edi    = vm86->regs.edi;
472     context->Esp    = vm86->regs.esp;
473     context->Ebp    = vm86->regs.ebp;
474     context->Eip    = vm86->regs.eip;
475     context->SegCs  = vm86->regs.cs;
476     context->SegDs  = vm86->regs.ds;
477     context->SegEs  = vm86->regs.es;
478     context->SegFs  = vm86->regs.fs;
479     context->SegGs  = vm86->regs.gs;
480     context->SegSs  = vm86->regs.ss;
481     context->EFlags = vm86->regs.eflags;
482 }
483
484
485 /***********************************************************************
486  *           restore_vm86_context
487  *
488  * Build a vm86 structure from the register values.
489  */
490 static void restore_vm86_context( const CONTEXT *context, struct vm86plus_struct *vm86 )
491 {
492     vm86->regs.eax    = context->Eax;
493     vm86->regs.ebx    = context->Ebx;
494     vm86->regs.ecx    = context->Ecx;
495     vm86->regs.edx    = context->Edx;
496     vm86->regs.esi    = context->Esi;
497     vm86->regs.edi    = context->Edi;
498     vm86->regs.esp    = context->Esp;
499     vm86->regs.ebp    = context->Ebp;
500     vm86->regs.eip    = context->Eip;
501     vm86->regs.cs     = context->SegCs;
502     vm86->regs.ds     = context->SegDs;
503     vm86->regs.es     = context->SegEs;
504     vm86->regs.fs     = context->SegFs;
505     vm86->regs.gs     = context->SegGs;
506     vm86->regs.ss     = context->SegSs;
507     vm86->regs.eflags = context->EFlags;
508 }
509 #endif /* __HAVE_VM86 */
510
511
512 /***********************************************************************
513  *           save_context
514  *
515  * Set the register values from a sigcontext.
516  */
517 static void save_context( CONTEXT *context, const SIGCONTEXT *sigcontext )
518 {
519     /* get %fs and %gs at time of the fault */
520 #ifdef FS_sig
521     context->SegFs = LOWORD(FS_sig(sigcontext));
522 #else
523     context->SegFs = wine_get_fs();
524 #endif
525 #ifdef GS_sig
526     context->SegGs = LOWORD(GS_sig(sigcontext));
527 #else
528     context->SegGs = wine_get_gs();
529 #endif
530
531     /* now restore a proper %fs for the fault handler */
532     if (!IS_SELECTOR_SYSTEM(CS_sig(sigcontext)) ||
533         !IS_SELECTOR_SYSTEM(SS_sig(sigcontext)))  /* 16-bit mode */
534     {
535         /*
536          * Win16 or DOS protected mode. Note that during switch 
537          * from 16-bit mode to linear mode, CS may be set to system 
538          * segment before FS is restored. Fortunately, in this case 
539          * SS is still non-system segment. This is why both CS and SS
540          * are checked.
541          */
542         wine_set_fs( SYSLEVEL_Win16CurrentTeb );
543         wine_set_gs( NtCurrentTeb()->gs_sel );
544     }
545 #ifdef __HAVE_VM86
546     else if ((void *)EIP_sig(sigcontext) == vm86_return)  /* vm86 mode */
547     {
548         unsigned int *stack = (unsigned int *)ESP_sig(sigcontext);
549
550         /* fetch the saved %fs on the stack */
551         wine_set_fs( stack[0] );
552         wine_set_gs( stack[1] );
553         if (EAX_sig(sigcontext) == VM86_EAX) {
554             /* retrieve pointer to vm86plus struct that was stored in vm86_enter
555              * (but we could also get if from teb->vm86_ptr) */
556             struct vm86plus_struct *vm86 = (struct vm86plus_struct *)stack[2];
557             /* get context from vm86 struct */
558             save_vm86_context( context, vm86 );
559             return;
560         }
561     }
562 #endif  /* __HAVE_VM86 */
563     else  /* 32-bit mode */
564     {
565 #ifdef FS_sig
566         wine_set_fs( FS_sig(sigcontext) );
567 #endif
568 #ifdef GS_sig
569         wine_set_gs( GS_sig(sigcontext) );
570 #endif
571     }
572
573     context->Eax    = EAX_sig(sigcontext);
574     context->Ebx    = EBX_sig(sigcontext);
575     context->Ecx    = ECX_sig(sigcontext);
576     context->Edx    = EDX_sig(sigcontext);
577     context->Esi    = ESI_sig(sigcontext);
578     context->Edi    = EDI_sig(sigcontext);
579     context->Ebp    = EBP_sig(sigcontext);
580     context->EFlags = EFL_sig(sigcontext);
581     context->Eip    = EIP_sig(sigcontext);
582     context->Esp    = ESP_sig(sigcontext);
583     context->SegCs  = LOWORD(CS_sig(sigcontext));
584     context->SegDs  = LOWORD(DS_sig(sigcontext));
585     context->SegEs  = LOWORD(ES_sig(sigcontext));
586     context->SegSs  = LOWORD(SS_sig(sigcontext));
587 }
588
589
590 /***********************************************************************
591  *           restore_context
592  *
593  * Build a sigcontext from the register values.
594  */
595 static void restore_context( const CONTEXT *context, SIGCONTEXT *sigcontext )
596 {
597 #ifdef __HAVE_VM86
598     /* check if exception occurred in vm86 mode */
599     if ((void *)EIP_sig(sigcontext) == vm86_return &&
600         IS_SELECTOR_SYSTEM(CS_sig(sigcontext)) &&
601         EAX_sig(sigcontext) == VM86_EAX)
602     {
603         unsigned int *stack = (unsigned int *)ESP_sig(sigcontext);
604         /* retrieve pointer to vm86plus struct that was stored in vm86_enter
605          * (but we could also get it from teb->vm86_ptr) */
606         struct vm86plus_struct *vm86 = (struct vm86plus_struct *)stack[2];
607         restore_vm86_context( context, vm86 );
608         return;
609     }
610 #endif /* __HAVE_VM86 */
611
612     EAX_sig(sigcontext) = context->Eax;
613     EBX_sig(sigcontext) = context->Ebx;
614     ECX_sig(sigcontext) = context->Ecx;
615     EDX_sig(sigcontext) = context->Edx;
616     ESI_sig(sigcontext) = context->Esi;
617     EDI_sig(sigcontext) = context->Edi;
618     EBP_sig(sigcontext) = context->Ebp;
619     EFL_sig(sigcontext) = context->EFlags;
620     EIP_sig(sigcontext) = context->Eip;
621     ESP_sig(sigcontext) = context->Esp;
622     CS_sig(sigcontext)  = context->SegCs;
623     DS_sig(sigcontext)  = context->SegDs;
624     ES_sig(sigcontext)  = context->SegEs;
625     SS_sig(sigcontext)  = context->SegSs;
626 #ifdef FS_sig
627     FS_sig(sigcontext)  = context->SegFs;
628 #else
629     wine_set_fs( context->SegFs );
630 #endif
631 #ifdef GS_sig
632     GS_sig(sigcontext)  = context->SegGs;
633 #else
634     wine_set_gs( context->SegGs );
635 #endif
636 }
637
638
639 /***********************************************************************
640  *           init_handler
641  *
642  * Handler initialization when the full context is not needed.
643  */
644 static void init_handler( const SIGCONTEXT *sigcontext )
645 {
646     /* restore a proper %fs for the fault handler */
647     if (!IS_SELECTOR_SYSTEM(CS_sig(sigcontext)) ||
648         !IS_SELECTOR_SYSTEM(SS_sig(sigcontext)))  /* 16-bit mode */
649     {
650         wine_set_fs( SYSLEVEL_Win16CurrentTeb );
651         wine_set_gs( NtCurrentTeb()->gs_sel );
652     }
653 #ifdef __HAVE_VM86
654     else if ((void *)EIP_sig(sigcontext) == vm86_return)  /* vm86 mode */
655     {
656         /* fetch the saved %fs on the stack */
657         wine_set_fs( *(unsigned int *)ESP_sig(sigcontext) );
658         wine_set_gs( NtCurrentTeb()->gs_sel );
659     }
660 #endif  /* __HAVE_VM86 */
661     else  /* 32-bit mode, get %fs at time of the fault */
662     {
663 #ifdef FS_sig
664         wine_set_fs( FS_sig(sigcontext) );
665 #endif
666 #ifdef GS_sig
667         wine_set_gs( GS_sig(sigcontext) );
668 #endif
669     }
670 }
671
672
673 /***********************************************************************
674  *           save_fpu
675  *
676  * Set the FPU context from a sigcontext.
677  */
678 inline static void save_fpu( CONTEXT *context, const SIGCONTEXT *sigcontext )
679 {
680 #ifdef FPU_sig
681     if (FPU_sig(sigcontext))
682     {
683         context->FloatSave = *FPU_sig(sigcontext);
684         return;
685     }
686 #endif  /* FPU_sig */
687 #ifdef __GNUC__
688     __asm__ __volatile__( "fnsave %0; fwait" : "=m" (context->FloatSave) );
689 #endif  /* __GNUC__ */
690 }
691
692
693 /***********************************************************************
694  *           restore_fpu
695  *
696  * Restore the FPU context to a sigcontext.
697  */
698 inline static void restore_fpu( CONTEXT *context, const SIGCONTEXT *sigcontext )
699 {
700     /* reset the current interrupt status */
701     context->FloatSave.StatusWord &= context->FloatSave.ControlWord | 0xffffff80;
702 #ifdef FPU_sig
703     if (FPU_sig(sigcontext))
704     {
705         *FPU_sig(sigcontext) = context->FloatSave;
706         return;
707     }
708 #endif  /* FPU_sig */
709 #ifdef __GNUC__
710     /* avoid nested exceptions */
711     __asm__ __volatile__( "frstor %0; fwait" : : "m" (context->FloatSave) );
712 #endif  /* __GNUC__ */
713 }
714
715
716 /**********************************************************************
717  *              get_fpu_code
718  *
719  * Get the FPU exception code from the FPU status.
720  */
721 static inline DWORD get_fpu_code( const CONTEXT *context )
722 {
723     DWORD status = context->FloatSave.StatusWord;
724
725     if (status & 0x01)  /* IE */
726     {
727         if (status & 0x40)  /* SF */
728             return EXCEPTION_FLT_STACK_CHECK;
729         else
730             return EXCEPTION_FLT_INVALID_OPERATION;
731     }
732     if (status & 0x02) return EXCEPTION_FLT_DENORMAL_OPERAND;  /* DE flag */
733     if (status & 0x04) return EXCEPTION_FLT_DIVIDE_BY_ZERO;    /* ZE flag */
734     if (status & 0x08) return EXCEPTION_FLT_OVERFLOW;          /* OE flag */
735     if (status & 0x10) return EXCEPTION_FLT_UNDERFLOW;         /* UE flag */
736     if (status & 0x20) return EXCEPTION_FLT_INEXACT_RESULT;    /* PE flag */
737     return EXCEPTION_FLT_INVALID_OPERATION;  /* generic error */
738 }
739
740
741 /**********************************************************************
742  *              do_segv
743  *
744  * Implementation of SIGSEGV handler.
745  */
746 static void do_segv( CONTEXT *context, int trap_code, void *cr2, int err_code )
747 {
748     EXCEPTION_RECORD rec;
749     DWORD page_fault_code = EXCEPTION_ACCESS_VIOLATION;
750
751 #ifdef FAULT_ADDRESS
752     /* we want the page-fault case to be fast */
753     if (trap_code == T_PAGEFLT)
754         if (!(page_fault_code = VIRTUAL_HandleFault( cr2 ))) return;
755 #endif
756
757     rec.ExceptionRecord  = NULL;
758     rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
759     rec.ExceptionAddress = (LPVOID)context->Eip;
760     rec.NumberParameters = 0;
761
762     switch(trap_code)
763     {
764     case T_OFLOW:   /* Overflow exception */
765         rec.ExceptionCode = EXCEPTION_INT_OVERFLOW;
766         break;
767     case T_BOUND:   /* Bound range exception */
768         rec.ExceptionCode = EXCEPTION_ARRAY_BOUNDS_EXCEEDED;
769         break;
770     case T_PRIVINFLT:   /* Invalid opcode exception */
771         rec.ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
772         break;
773     case T_STKFLT:  /* Stack fault */
774         rec.ExceptionCode = EXCEPTION_STACK_OVERFLOW;
775         break;
776     case T_SEGNPFLT:  /* Segment not present exception */
777     case T_PROTFLT:   /* General protection fault */
778     case T_UNKNOWN:   /* Unknown fault code */
779         if (INSTR_EmulateInstruction( context )) return;
780         rec.ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
781         break;
782     case T_PAGEFLT:  /* Page fault */
783 #ifdef FAULT_ADDRESS
784         rec.NumberParameters = 2;
785         rec.ExceptionInformation[0] = (err_code & 2) != 0;
786         rec.ExceptionInformation[1] = (DWORD)cr2;
787 #endif
788         rec.ExceptionCode = page_fault_code;
789         break;
790     case T_ALIGNFLT:  /* Alignment check exception */
791         /* FIXME: pass through exception handler first? */
792         if (context->EFlags & 0x00040000)
793         {
794             /* Disable AC flag, return */
795             context->EFlags &= ~0x00040000;
796             return;
797         }
798         rec.ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
799         break;
800     default:
801         ERR( "Got unexpected trap %d\n", trap_code );
802         /* fall through */
803     case T_NMI:       /* NMI interrupt */
804     case T_DNA:       /* Device not available exception */
805     case T_DOUBLEFLT: /* Double fault exception */
806     case T_TSSFLT:    /* Invalid TSS exception */
807     case T_RESERVED:  /* Unknown exception */
808     case T_MCHK:      /* Machine check exception */
809 #ifdef T_CACHEFLT
810     case T_CACHEFLT:  /* Cache flush exception */
811 #endif
812         rec.ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
813         break;
814     }
815     EXC_RtlRaiseException( &rec, context );
816 }
817
818
819 /**********************************************************************
820  *              do_trap
821  *
822  * Implementation of SIGTRAP handler.
823  */
824 static void do_trap( CONTEXT *context, int trap_code )
825 {
826     EXCEPTION_RECORD rec;
827     DWORD dr0, dr1, dr2, dr3, dr6, dr7;
828
829     rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
830     rec.ExceptionRecord  = NULL;
831     rec.ExceptionAddress = (LPVOID)context->Eip;
832     rec.NumberParameters = 0;
833
834     switch(trap_code)
835     {
836     case T_TRCTRAP:  /* Single-step exception */
837         rec.ExceptionCode = EXCEPTION_SINGLE_STEP;
838         if (context->EFlags & 0x100)
839         {
840             context->EFlags &= ~0x100;  /* clear single-step flag */
841         }
842         else  /* hardware breakpoint, fetch the debug registers */
843         {
844             context->ContextFlags = CONTEXT_DEBUG_REGISTERS;
845             NtGetContextThread(GetCurrentThread(), context);
846         }
847         break;
848     case T_BPTFLT:   /* Breakpoint exception */
849         rec.ExceptionAddress = (char *)rec.ExceptionAddress - 1;  /* back up over the int3 instruction */
850         /* fall through */
851     default:
852         rec.ExceptionCode = EXCEPTION_BREAKPOINT;
853         break;
854     }
855     dr0 = context->Dr0;
856     dr1 = context->Dr1;
857     dr2 = context->Dr2;
858     dr3 = context->Dr3;
859     dr6 = context->Dr6;
860     dr7 = context->Dr7;
861
862     EXC_RtlRaiseException( &rec, context );
863
864     if (dr0 != context->Dr0 || dr1 != context->Dr1 || dr2 != context->Dr2 ||
865         dr3 != context->Dr3 || dr6 != context->Dr6 || dr7 != context->Dr7)
866     {
867         /* the debug registers have changed, set the new values */
868         context->ContextFlags = CONTEXT_DEBUG_REGISTERS;
869         NtSetContextThread(GetCurrentThread(), context);
870     }
871 }
872
873
874 /**********************************************************************
875  *              do_fpe
876  *
877  * Implementation of SIGFPE handler
878  */
879 static void do_fpe( CONTEXT *context, int trap_code )
880 {
881     EXCEPTION_RECORD rec;
882
883     switch(trap_code)
884     {
885     case T_DIVIDE:   /* Division by zero exception */
886         rec.ExceptionCode = EXCEPTION_INT_DIVIDE_BY_ZERO;
887         break;
888     case T_FPOPFLT:   /* Coprocessor segment overrun */
889         rec.ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
890         break;
891     case T_ARITHTRAP:  /* Floating point exception */
892     case T_UNKNOWN:    /* Unknown fault code */
893         rec.ExceptionCode = get_fpu_code( context );
894         break;
895     default:
896         ERR( "Got unexpected trap %d\n", trap_code );
897         rec.ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
898         break;
899     }
900     rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
901     rec.ExceptionRecord  = NULL;
902     rec.ExceptionAddress = (LPVOID)context->Eip;
903     rec.NumberParameters = 0;
904     EXC_RtlRaiseException( &rec, context );
905 }
906
907
908 #ifdef __HAVE_VM86
909 /**********************************************************************
910  *              set_vm86_pend
911  *
912  * Handler for SIGUSR2, which we use to set the vm86 pending flag.
913  */
914 static void set_vm86_pend( CONTEXT *context )
915 {
916     EXCEPTION_RECORD rec;
917     TEB *teb = NtCurrentTeb();
918     struct vm86plus_struct *vm86 = (struct vm86plus_struct*)(teb->vm86_ptr);
919
920     rec.ExceptionCode           = EXCEPTION_VM86_STI;
921     rec.ExceptionFlags          = EXCEPTION_CONTINUABLE;
922     rec.ExceptionRecord         = NULL;
923     rec.NumberParameters        = 1;
924     rec.ExceptionInformation[0] = 0;
925
926     /* __wine_enter_vm86() merges the vm86_pending flag in safely */
927     teb->vm86_pending |= VIP_MASK;
928     /* see if we were in VM86 mode */
929     if (context->EFlags & 0x00020000)
930     {
931         /* seems so, also set flag in signal context */
932         if (context->EFlags & VIP_MASK) return;
933         context->EFlags |= VIP_MASK;
934         vm86->regs.eflags |= VIP_MASK; /* no exception recursion */
935         if (context->EFlags & VIF_MASK) {
936             /* VIF is set, throw exception */
937             teb->vm86_pending = 0;
938             teb->vm86_ptr = NULL;
939             rec.ExceptionAddress = (LPVOID)context->Eip;
940             EXC_RtlRaiseException( &rec, context );
941             teb->vm86_ptr = vm86;
942         }
943     }
944     else if (vm86)
945     {
946         /* not in VM86, but possibly setting up for it */
947         if (vm86->regs.eflags & VIP_MASK) return;
948         vm86->regs.eflags |= VIP_MASK;
949         if (((char*)context->Eip >= (char*)vm86_return) &&
950             ((char*)context->Eip <= (char*)vm86_return_end) &&
951             (VM86_TYPE(context->Eax) != VM86_SIGNAL)) {
952             /* exiting from VM86, can't throw */
953             return;
954         }
955         if (vm86->regs.eflags & VIF_MASK) {
956             /* VIF is set, throw exception */
957             CONTEXT vcontext;
958             teb->vm86_pending = 0;
959             teb->vm86_ptr = NULL;
960             save_vm86_context( &vcontext, vm86 );
961             rec.ExceptionAddress = (LPVOID)vcontext.Eip;
962             EXC_RtlRaiseException( &rec, &vcontext );
963             teb->vm86_ptr = vm86;
964             restore_vm86_context( &vcontext, vm86 );
965         }
966     }
967 }
968
969
970 /**********************************************************************
971  *              usr2_handler
972  *
973  * Handler for SIGUSR2.
974  * We use it to signal that the running __wine_enter_vm86() should
975  * immediately set VIP_MASK, causing pending events to be handled
976  * as early as possible.
977  */
978 static HANDLER_DEF(usr2_handler)
979 {
980     CONTEXT context;
981
982     save_context( &context, HANDLER_CONTEXT );
983     set_vm86_pend( &context );
984     restore_context( &context, HANDLER_CONTEXT );
985 }
986
987
988 /**********************************************************************
989  *              alrm_handler
990  *
991  * Handler for SIGALRM.
992  * Increases the alarm counter and sets the vm86 pending flag.
993  */
994 static HANDLER_DEF(alrm_handler)
995 {
996     CONTEXT context;
997
998     save_context( &context, HANDLER_CONTEXT );
999     NtCurrentTeb()->alarms++;
1000     set_vm86_pend( &context );
1001     restore_context( &context, HANDLER_CONTEXT );
1002 }
1003 #endif /* __HAVE_VM86 */
1004
1005
1006 /**********************************************************************
1007  *              segv_handler
1008  *
1009  * Handler for SIGSEGV and related errors.
1010  */
1011 static HANDLER_DEF(segv_handler)
1012 {
1013     CONTEXT context;
1014     void *cr2;
1015
1016     save_context( &context, HANDLER_CONTEXT );
1017 #ifdef FAULT_ADDRESS
1018     cr2 = FAULT_ADDRESS;
1019 #else
1020     cr2 = NULL;
1021 #endif
1022     do_segv( &context, get_trap_code(HANDLER_CONTEXT), cr2, get_error_code(HANDLER_CONTEXT) );
1023     restore_context( &context, HANDLER_CONTEXT );
1024 }
1025
1026
1027 /**********************************************************************
1028  *              trap_handler
1029  *
1030  * Handler for SIGTRAP.
1031  */
1032 static HANDLER_DEF(trap_handler)
1033 {
1034     CONTEXT context;
1035     save_context( &context, HANDLER_CONTEXT );
1036     do_trap( &context, get_trap_code(HANDLER_CONTEXT) );
1037     restore_context( &context, HANDLER_CONTEXT );
1038 }
1039
1040
1041 /**********************************************************************
1042  *              fpe_handler
1043  *
1044  * Handler for SIGFPE.
1045  */
1046 static HANDLER_DEF(fpe_handler)
1047 {
1048     CONTEXT context;
1049     save_fpu( &context, HANDLER_CONTEXT );
1050     save_context( &context, HANDLER_CONTEXT );
1051     do_fpe( &context, get_trap_code(HANDLER_CONTEXT) );
1052     restore_context( &context, HANDLER_CONTEXT );
1053     restore_fpu( &context, HANDLER_CONTEXT );
1054 }
1055
1056
1057 /**********************************************************************
1058  *              int_handler
1059  *
1060  * Handler for SIGINT.
1061  */
1062 static HANDLER_DEF(int_handler)
1063 {
1064     init_handler( HANDLER_CONTEXT );
1065     if (!dispatch_signal(SIGINT))
1066     {
1067         EXCEPTION_RECORD rec;
1068         CONTEXT context;
1069
1070         save_context( &context, HANDLER_CONTEXT );
1071         rec.ExceptionCode    = CONTROL_C_EXIT;
1072         rec.ExceptionFlags   = EXCEPTION_CONTINUABLE;
1073         rec.ExceptionRecord  = NULL;
1074         rec.ExceptionAddress = (LPVOID)context.Eip;
1075         rec.NumberParameters = 0;
1076         EXC_RtlRaiseException( &rec, &context );
1077         restore_context( &context, HANDLER_CONTEXT );
1078     }
1079 }
1080
1081 /**********************************************************************
1082  *              abrt_handler
1083  *
1084  * Handler for SIGABRT.
1085  */
1086 static HANDLER_DEF(abrt_handler)
1087 {
1088     EXCEPTION_RECORD rec;
1089     CONTEXT context;
1090
1091     save_context( &context, HANDLER_CONTEXT );
1092     rec.ExceptionCode    = EXCEPTION_WINE_ASSERTION;
1093     rec.ExceptionFlags   = EH_NONCONTINUABLE;
1094     rec.ExceptionRecord  = NULL;
1095     rec.ExceptionAddress = (LPVOID)context.Eip;
1096     rec.NumberParameters = 0;
1097     EXC_RtlRaiseException( &rec, &context ); /* Should never return.. */
1098     restore_context( &context, HANDLER_CONTEXT );
1099 }
1100
1101
1102 /**********************************************************************
1103  *              term_handler
1104  *
1105  * Handler for SIGTERM.
1106  */
1107 static HANDLER_DEF(term_handler)
1108 {
1109     init_handler( HANDLER_CONTEXT );
1110     SYSDEPS_AbortThread(0);
1111 }
1112
1113
1114 /**********************************************************************
1115  *              usr1_handler
1116  *
1117  * Handler for SIGUSR1, used to signal a thread that it got suspended.
1118  */
1119 static HANDLER_DEF(usr1_handler)
1120 {
1121     LARGE_INTEGER timeout;
1122
1123     init_handler( HANDLER_CONTEXT );
1124     /* wait with 0 timeout, will only return once the thread is no longer suspended */
1125     timeout.QuadPart = 0;
1126     NtWaitForMultipleObjects( 0, NULL, FALSE, FALSE, &timeout );
1127 }
1128
1129
1130 /***********************************************************************
1131  *           set_handler
1132  *
1133  * Set a signal handler
1134  */
1135 static int set_handler( int sig, int have_sigaltstack, void (*func)() )
1136 {
1137     struct sigaction sig_act;
1138
1139 #ifdef linux
1140     if (!have_sigaltstack && NtCurrentTeb()->signal_stack)
1141     {
1142         struct kernel_sigaction sig_act;
1143         sig_act.ksa_handler = func;
1144         sig_act.ksa_flags   = SA_RESTART;
1145         sig_act.ksa_mask    = (1 << (SIGINT-1)) |
1146                               (1 << (SIGUSR2-1)) |
1147                               (1 << (SIGALRM-1));
1148         /* point to the top of the stack */
1149         sig_act.ksa_restorer = (char *)NtCurrentTeb()->signal_stack + SIGNAL_STACK_SIZE;
1150         return wine_sigaction( sig, &sig_act, NULL );
1151     }
1152 #endif  /* linux */
1153     sig_act.sa_handler = func;
1154     sigemptyset( &sig_act.sa_mask );
1155     sigaddset( &sig_act.sa_mask, SIGINT );
1156     sigaddset( &sig_act.sa_mask, SIGUSR2 );
1157     sigaddset( &sig_act.sa_mask, SIGALRM );
1158
1159 #ifdef linux
1160     sig_act.sa_flags = SA_RESTART;
1161 #elif defined (__svr4__) || defined(_SCO_DS)
1162     sig_act.sa_flags = SA_SIGINFO | SA_RESTART;
1163 #else
1164     sig_act.sa_flags = 0;
1165 #endif
1166
1167 #ifdef SA_ONSTACK
1168     if (have_sigaltstack) sig_act.sa_flags |= SA_ONSTACK;
1169 #endif
1170     return sigaction( sig, &sig_act, NULL );
1171 }
1172
1173
1174 /***********************************************************************
1175  *           __wine_set_signal_handler   (NTDLL.@)
1176  */
1177 int __wine_set_signal_handler(unsigned int sig, wine_signal_handler wsh)
1178 {
1179     if (sig > sizeof(handlers) / sizeof(handlers[0])) return -1;
1180     if (handlers[sig] != NULL) return -2;
1181     handlers[sig] = wsh;
1182     return 0;
1183 }
1184
1185
1186 /**********************************************************************
1187  *              SIGNAL_Init
1188  */
1189 BOOL SIGNAL_Init(void)
1190 {
1191     int have_sigaltstack = 0;
1192
1193 #ifdef HAVE_SIGALTSTACK
1194     struct sigaltstack ss;
1195     if ((ss.ss_sp = NtCurrentTeb()->signal_stack))
1196     {
1197         ss.ss_size  = SIGNAL_STACK_SIZE;
1198         ss.ss_flags = 0;
1199         if (!sigaltstack(&ss, NULL)) have_sigaltstack = 1;
1200 #ifdef linux
1201         /* sigaltstack may fail because the kernel is too old, or
1202            because glibc is brain-dead. In the latter case a
1203            direct system call should succeed. */
1204         else if (!wine_sigaltstack(&ss, NULL)) have_sigaltstack = 1;
1205 #endif  /* linux */
1206     }
1207 #endif  /* HAVE_SIGALTSTACK */
1208
1209     if (set_handler( SIGINT,  have_sigaltstack, (void (*)())int_handler ) == -1) goto error;
1210     if (set_handler( SIGFPE,  have_sigaltstack, (void (*)())fpe_handler ) == -1) goto error;
1211     if (set_handler( SIGSEGV, have_sigaltstack, (void (*)())segv_handler ) == -1) goto error;
1212     if (set_handler( SIGILL,  have_sigaltstack, (void (*)())segv_handler ) == -1) goto error;
1213     if (set_handler( SIGABRT, have_sigaltstack, (void (*)())abrt_handler ) == -1) goto error;
1214     if (set_handler( SIGTERM, have_sigaltstack, (void (*)())term_handler ) == -1) goto error;
1215     if (set_handler( SIGUSR1, have_sigaltstack, (void (*)())usr1_handler ) == -1) goto error;
1216 #ifdef SIGBUS
1217     if (set_handler( SIGBUS,  have_sigaltstack, (void (*)())segv_handler ) == -1) goto error;
1218 #endif
1219 #ifdef SIGTRAP
1220     if (set_handler( SIGTRAP, have_sigaltstack, (void (*)())trap_handler ) == -1) goto error;
1221 #endif
1222
1223 #ifdef __HAVE_VM86
1224     if (set_handler( SIGALRM, have_sigaltstack, (void (*)())alrm_handler ) == -1) goto error;
1225     if (set_handler( SIGUSR2, have_sigaltstack, (void (*)())usr2_handler ) == -1) goto error;
1226 #endif
1227
1228     return TRUE;
1229
1230  error:
1231     perror("sigaction");
1232     return FALSE;
1233 }
1234
1235
1236 /**********************************************************************
1237  *              SIGNAL_Block
1238  *
1239  * Block the async signals.
1240  */
1241 void SIGNAL_Block(void)
1242 {
1243     sigset_t block_set;
1244
1245     sigemptyset( &block_set );
1246     sigaddset( &block_set, SIGALRM );
1247     sigaddset( &block_set, SIGIO );
1248     sigaddset( &block_set, SIGHUP );
1249     sigaddset( &block_set, SIGUSR1 );
1250     sigaddset( &block_set, SIGUSR2 );
1251     sigprocmask( SIG_BLOCK, &block_set, NULL );
1252 }
1253
1254
1255 /***********************************************************************
1256  *           SIGNAL_Unblock
1257  *
1258  * Unblock signals. Called from EXC_RtlRaiseException.
1259  */
1260 void SIGNAL_Unblock(void)
1261 {
1262     sigset_t all_sigs;
1263
1264     sigfillset( &all_sigs );
1265     sigprocmask( SIG_UNBLOCK, &all_sigs, NULL );
1266 }
1267
1268
1269 /**********************************************************************
1270  *              SIGNAL_Reset
1271  *
1272  * Restore the default handlers.
1273  */
1274 void SIGNAL_Reset(void)
1275 {
1276     signal( SIGINT, SIG_DFL );
1277     signal( SIGFPE, SIG_DFL );
1278     signal( SIGSEGV, SIG_DFL );
1279     signal( SIGILL, SIG_DFL );
1280     signal( SIGABRT, SIG_DFL );
1281     signal( SIGTERM, SIG_DFL );
1282 #ifdef SIGBUS
1283     signal( SIGBUS, SIG_DFL );
1284 #endif
1285 #ifdef SIGTRAP
1286     signal( SIGTRAP, SIG_DFL );
1287 #endif
1288 }
1289
1290
1291 #ifdef __HAVE_VM86
1292 /**********************************************************************
1293  *              __wine_enter_vm86   (NTDLL.@)
1294  *
1295  * Enter vm86 mode with the specified register context.
1296  */
1297 void __wine_enter_vm86( CONTEXT *context )
1298 {
1299     EXCEPTION_RECORD rec;
1300     TEB *teb = NtCurrentTeb();
1301     int res;
1302     struct vm86plus_struct vm86;
1303
1304     memset( &vm86, 0, sizeof(vm86) );
1305     for (;;)
1306     {
1307         restore_vm86_context( context, &vm86 );
1308         /* Linux doesn't preserve pending flag (VIP_MASK) on return,
1309          * so save it on entry, just in case */
1310         teb->vm86_pending |= (context->EFlags & VIP_MASK);
1311         /* Work around race conditions with signal handler
1312          * (avoiding sigprocmask for performance reasons) */
1313         teb->vm86_ptr = &vm86;
1314         vm86.regs.eflags |= teb->vm86_pending;
1315         /* Check for VIF|VIP here, since vm86_enter doesn't */
1316         if ((vm86.regs.eflags & (VIF_MASK|VIP_MASK)) == (VIF_MASK|VIP_MASK)) {
1317             teb->vm86_ptr = NULL;
1318             teb->vm86_pending = 0;
1319             context->EFlags |= VIP_MASK;
1320             rec.ExceptionCode = EXCEPTION_VM86_STI;
1321             rec.ExceptionInformation[0] = 0;
1322             goto cancel_vm86;
1323         }
1324
1325         do
1326         {
1327             res = vm86_enter( &teb->vm86_ptr ); /* uses and clears teb->vm86_ptr */
1328             if (res < 0)
1329             {
1330                 errno = -res;
1331                 return;
1332             }
1333         } while (VM86_TYPE(res) == VM86_SIGNAL);
1334
1335         save_vm86_context( context, &vm86 );
1336         context->EFlags |= teb->vm86_pending;
1337
1338         switch(VM86_TYPE(res))
1339         {
1340         case VM86_UNKNOWN: /* unhandled GP fault - IO-instruction or similar */
1341             do_segv( context, T_PROTFLT, 0, 0 );
1342             continue;
1343         case VM86_TRAP: /* return due to DOS-debugger request */
1344             do_trap( context, VM86_ARG(res) );
1345             continue;
1346         case VM86_INTx: /* int3/int x instruction (ARG = x) */
1347             rec.ExceptionCode = EXCEPTION_VM86_INTx;
1348             break;
1349         case VM86_STI: /* sti/popf/iret instruction enabled virtual interrupts */
1350             teb->vm86_pending = 0;
1351             rec.ExceptionCode = EXCEPTION_VM86_STI;
1352             break;
1353         case VM86_PICRETURN: /* return due to pending PIC request */
1354             rec.ExceptionCode = EXCEPTION_VM86_PICRETURN;
1355             break;
1356         default:
1357             ERR( "unhandled result from vm86 mode %x\n", res );
1358             continue;
1359         }
1360         rec.ExceptionInformation[0] = VM86_ARG(res);
1361 cancel_vm86:
1362         rec.ExceptionFlags          = EXCEPTION_CONTINUABLE;
1363         rec.ExceptionRecord         = NULL;
1364         rec.ExceptionAddress        = (LPVOID)context->Eip;
1365         rec.NumberParameters        = 1;
1366         EXC_RtlRaiseException( &rec, context );
1367     }
1368 }
1369
1370 #else /* __HAVE_VM86 */
1371 /**********************************************************************
1372  *              __wine_enter_vm86   (NTDLL.@)
1373  */
1374 void __wine_enter_vm86( CONTEXT *context )
1375 {
1376     MESSAGE("vm86 mode not supported on this platform\n");
1377 }
1378 #endif /* __HAVE_VM86 */
1379
1380 /**********************************************************************
1381  *              DbgBreakPoint   (NTDLL.@)
1382  */
1383 __ASM_GLOBAL_FUNC( DbgBreakPoint, "int $3; ret");
1384
1385 /**********************************************************************
1386  *              DbgUserBreakPoint   (NTDLL.@)
1387  */
1388 __ASM_GLOBAL_FUNC( DbgUserBreakPoint, "int $3; ret");
1389
1390 #endif  /* __i386__ */