2 * i386 signal handling routines
4 * Copyright 1999 Alexandre Julliard
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.
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.
16 * You should have received a copy of the GNU Lesser General Public
17 * License along with this library; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
24 #include "wine/port.h"
31 #include <sys/types.h>
36 #ifdef HAVE_SYS_PARAM_H
37 # include <sys/param.h>
42 # ifdef HAVE_SYS_SYSCALL_H
43 # include <sys/syscall.h>
47 #ifdef HAVE_SYS_VM86_H
48 # include <sys/vm86.h>
51 #ifdef HAVE_SYS_SIGNAL_H
52 # include <sys/signal.h>
54 #ifdef HAVE_SYS_SYSCTL_H
55 # include <sys/sysctl.h>
60 #include "wine/library.h"
61 #include "ntdll_misc.h"
63 #ifdef HAVE_VALGRIND_MEMCHECK_H
64 #include <valgrind/memcheck.h>
67 /***********************************************************************
68 * signal context platform-specific definitions
73 typedef ucontext_t SIGCONTEXT;
75 #define EAX_sig(context) ((context)->uc_mcontext.gregs[REG_EAX])
76 #define EBX_sig(context) ((context)->uc_mcontext.gregs[REG_EBX])
77 #define ECX_sig(context) ((context)->uc_mcontext.gregs[REG_ECX])
78 #define EDX_sig(context) ((context)->uc_mcontext.gregs[REG_EDX])
79 #define ESI_sig(context) ((context)->uc_mcontext.gregs[REG_ESI])
80 #define EDI_sig(context) ((context)->uc_mcontext.gregs[REG_EDI])
81 #define EBP_sig(context) ((context)->uc_mcontext.gregs[REG_EBP])
82 #define ESP_sig(context) ((context)->uc_mcontext.gregs[REG_ESP])
84 #define CS_sig(context) ((context)->uc_mcontext.gregs[REG_CS])
85 #define DS_sig(context) ((context)->uc_mcontext.gregs[REG_DS])
86 #define ES_sig(context) ((context)->uc_mcontext.gregs[REG_ES])
87 #define SS_sig(context) ((context)->uc_mcontext.gregs[REG_SS])
88 #define FS_sig(context) ((context)->uc_mcontext.gregs[REG_FS])
89 #define GS_sig(context) ((context)->uc_mcontext.gregs[REG_GS])
91 #define EFL_sig(context) ((context)->uc_mcontext.gregs[REG_EFL])
92 #define EIP_sig(context) ((context)->uc_mcontext.gregs[REG_EIP])
93 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
94 #define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
96 #define FPU_sig(context) ((FLOATING_SAVE_AREA*)((context)->uc_mcontext.fpregs))
98 #define VM86_EAX 0 /* the %eax value while vm86_enter is executing */
100 int vm86_enter( void **vm86_ptr );
101 void vm86_return(void);
102 void vm86_return_end(void);
103 __ASM_GLOBAL_FUNC(vm86_enter,
105 "movl %esp, %ebp\n\t"
106 "movl $166,%eax\n\t" /*SYS_vm86*/
107 "movl 8(%ebp),%ecx\n\t" /* vm86_ptr */
108 "movl (%ecx),%ecx\n\t"
110 "movl $1,%ebx\n\t" /*VM86_ENTER*/
111 "pushl %ecx\n\t" /* put vm86plus_struct ptr somewhere we can find it */
115 ".globl " __ASM_NAME("vm86_return") "\n\t"
116 __ASM_FUNC("vm86_return") "\n"
117 __ASM_NAME("vm86_return") ":\n\t"
123 "testl %eax,%eax\n\t"
125 "cmpb $0,%al\n\t" /* VM86_SIGNAL */
126 "je " __ASM_NAME("vm86_enter") "\n\t"
128 "movl 4(%esp),%ecx\n\t" /* vm86_ptr */
130 ".globl " __ASM_NAME("vm86_return_end") "\n\t"
131 __ASM_FUNC("vm86_return_end") "\n"
132 __ASM_NAME("vm86_return_end") ":\n\t"
135 #ifdef HAVE_SYS_VM86_H
143 #include <machine/frame.h>
144 typedef struct trapframe SIGCONTEXT;
146 #define EAX_sig(context) ((context)->tf_eax)
147 #define EBX_sig(context) ((context)->tf_ebx)
148 #define ECX_sig(context) ((context)->tf_ecx)
149 #define EDX_sig(context) ((context)->tf_edx)
150 #define ESI_sig(context) ((context)->tf_esi)
151 #define EDI_sig(context) ((context)->tf_edi)
152 #define EBP_sig(context) ((context)->tf_ebp)
154 #define CS_sig(context) ((context)->tf_cs)
155 #define DS_sig(context) ((context)->tf_ds)
156 #define ES_sig(context) ((context)->tf_es)
157 #define SS_sig(context) ((context)->tf_ss)
159 #define EFL_sig(context) ((context)->tf_eflags)
161 #define EIP_sig(context) (*((unsigned long*)&(context)->tf_eip))
162 #define ESP_sig(context) (*((unsigned long*)&(context)->tf_esp))
166 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__FreeBSD_kernel__) || defined(__OpenBSD__)
168 typedef struct sigcontext SIGCONTEXT;
170 #define EAX_sig(context) ((context)->sc_eax)
171 #define EBX_sig(context) ((context)->sc_ebx)
172 #define ECX_sig(context) ((context)->sc_ecx)
173 #define EDX_sig(context) ((context)->sc_edx)
174 #define ESI_sig(context) ((context)->sc_esi)
175 #define EDI_sig(context) ((context)->sc_edi)
176 #define EBP_sig(context) ((context)->sc_ebp)
178 #define CS_sig(context) ((context)->sc_cs)
179 #define DS_sig(context) ((context)->sc_ds)
180 #define ES_sig(context) ((context)->sc_es)
181 #define FS_sig(context) ((context)->sc_fs)
182 #define GS_sig(context) ((context)->sc_gs)
183 #define SS_sig(context) ((context)->sc_ss)
185 #define TRAP_sig(context) ((context)->sc_trapno)
186 #define ERROR_sig(context) ((context)->sc_err)
187 #define EFL_sig(context) ((context)->sc_eflags)
189 #define EIP_sig(context) ((context)->sc_eip)
190 #define ESP_sig(context) ((context)->sc_esp)
194 #if defined(__svr4__) || defined(_SCO_DS) || defined(__sun)
197 #include <sys/regset.h>
201 #include <sys/ucontext.h>
203 typedef struct ucontext SIGCONTEXT;
209 #define EAX_sig(context) ((context)->uc_mcontext.gregs[EAX])
210 #define EBX_sig(context) ((context)->uc_mcontext.gregs[EBX])
211 #define ECX_sig(context) ((context)->uc_mcontext.gregs[ECX])
212 #define EDX_sig(context) ((context)->uc_mcontext.gregs[EDX])
213 #define ESI_sig(context) ((context)->uc_mcontext.gregs[ESI])
214 #define EDI_sig(context) ((context)->uc_mcontext.gregs[EDI])
215 #define EBP_sig(context) ((context)->uc_mcontext.gregs[EBP])
217 #define CS_sig(context) ((context)->uc_mcontext.gregs[CS])
218 #define DS_sig(context) ((context)->uc_mcontext.gregs[DS])
219 #define ES_sig(context) ((context)->uc_mcontext.gregs[ES])
220 #define SS_sig(context) ((context)->uc_mcontext.gregs[SS])
222 #define FS_sig(context) ((context)->uc_mcontext.gregs[FS])
223 #define GS_sig(context) ((context)->uc_mcontext.gregs[GS])
225 #define EFL_sig(context) ((context)->uc_mcontext.gregs[EFL])
227 #define EIP_sig(context) ((context)->uc_mcontext.gregs[EIP])
229 #define ESP_sig(context) ((context)->uc_mcontext.gregs[UESP])
231 #define ESP_sig(context) ((context)->uc_mcontext.gregs[R_ESP])
233 #define ESP_sig(context) ((context)->uc_mcontext.gregs[ESP])
236 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[TRAPNO])
239 #endif /* svr4 || SCO_DS */
242 # include <sys/ucontext.h>
244 typedef ucontext_t SIGCONTEXT;
246 #define EAX_sig(context) ((context)->uc_mcontext->ss.eax)
247 #define EBX_sig(context) ((context)->uc_mcontext->ss.ebx)
248 #define ECX_sig(context) ((context)->uc_mcontext->ss.ecx)
249 #define EDX_sig(context) ((context)->uc_mcontext->ss.edx)
250 #define ESI_sig(context) ((context)->uc_mcontext->ss.esi)
251 #define EDI_sig(context) ((context)->uc_mcontext->ss.edi)
252 #define EBP_sig(context) ((context)->uc_mcontext->ss.ebp)
254 #define CS_sig(context) ((context)->uc_mcontext->ss.cs)
255 #define DS_sig(context) ((context)->uc_mcontext->ss.ds)
256 #define ES_sig(context) ((context)->uc_mcontext->ss.es)
257 #define FS_sig(context) ((context)->uc_mcontext->ss.fs)
258 #define GS_sig(context) ((context)->uc_mcontext->ss.gs)
259 #define SS_sig(context) ((context)->uc_mcontext->ss.ss)
261 #define EFL_sig(context) ((context)->uc_mcontext->ss.eflags)
263 #define EIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext->ss.eip))
264 #define ESP_sig(context) (*((unsigned long*)&(context)->uc_mcontext->ss.esp))
266 #define TRAP_sig(context) ((context)->uc_mcontext->es.trapno)
267 #define ERROR_sig(context) ((context)->uc_mcontext->es.err)
269 #endif /* __APPLE__ */
271 #include "wine/exception.h"
272 #include "wine/debug.h"
274 WINE_DEFAULT_DEBUG_CHANNEL(seh);
276 typedef int (*wine_signal_handler)(unsigned int sig);
278 static size_t signal_stack_mask;
279 static size_t signal_stack_size;
281 static wine_signal_handler handlers[256];
283 extern void DECLSPEC_NORETURN __wine_call_from_32_restore_regs( const CONTEXT *context );
287 TRAP_x86_UNKNOWN = -1, /* Unknown fault (TRAP_sig not defined) */
288 #if defined(__FreeBSD__) || defined(__NetBSD__) || defined(__OpenBSD__)
289 TRAP_x86_DIVIDE = T_DIVIDE, /* Division by zero exception */
290 TRAP_x86_TRCTRAP = T_TRCTRAP, /* Single-step exception */
291 TRAP_x86_NMI = T_NMI, /* NMI interrupt */
292 TRAP_x86_BPTFLT = T_BPTFLT, /* Breakpoint exception */
293 TRAP_x86_OFLOW = T_OFLOW, /* Overflow exception */
294 TRAP_x86_BOUND = T_BOUND, /* Bound range exception */
295 TRAP_x86_PRIVINFLT = T_PRIVINFLT, /* Invalid opcode exception */
296 TRAP_x86_DNA = T_DNA, /* Device not available exception */
297 TRAP_x86_DOUBLEFLT = T_DOUBLEFLT, /* Double fault exception */
298 TRAP_x86_FPOPFLT = T_FPOPFLT, /* Coprocessor segment overrun */
299 TRAP_x86_TSSFLT = T_TSSFLT, /* Invalid TSS exception */
300 TRAP_x86_SEGNPFLT = T_SEGNPFLT, /* Segment not present exception */
301 TRAP_x86_STKFLT = T_STKFLT, /* Stack fault */
302 TRAP_x86_PROTFLT = T_PROTFLT, /* General protection fault */
303 TRAP_x86_PAGEFLT = T_PAGEFLT, /* Page fault */
304 TRAP_x86_ARITHTRAP = T_ARITHTRAP, /* Floating point exception */
305 TRAP_x86_ALIGNFLT = T_ALIGNFLT, /* Alignment check exception */
306 TRAP_x86_MCHK = T_MCHK, /* Machine check exception */
307 TRAP_x86_CACHEFLT = T_XMMFLT /* Cache flush exception */
309 TRAP_x86_DIVIDE = 0, /* Division by zero exception */
310 TRAP_x86_TRCTRAP = 1, /* Single-step exception */
311 TRAP_x86_NMI = 2, /* NMI interrupt */
312 TRAP_x86_BPTFLT = 3, /* Breakpoint exception */
313 TRAP_x86_OFLOW = 4, /* Overflow exception */
314 TRAP_x86_BOUND = 5, /* Bound range exception */
315 TRAP_x86_PRIVINFLT = 6, /* Invalid opcode exception */
316 TRAP_x86_DNA = 7, /* Device not available exception */
317 TRAP_x86_DOUBLEFLT = 8, /* Double fault exception */
318 TRAP_x86_FPOPFLT = 9, /* Coprocessor segment overrun */
319 TRAP_x86_TSSFLT = 10, /* Invalid TSS exception */
320 TRAP_x86_SEGNPFLT = 11, /* Segment not present exception */
321 TRAP_x86_STKFLT = 12, /* Stack fault */
322 TRAP_x86_PROTFLT = 13, /* General protection fault */
323 TRAP_x86_PAGEFLT = 14, /* Page fault */
324 TRAP_x86_ARITHTRAP = 16, /* Floating point exception */
325 TRAP_x86_ALIGNFLT = 17, /* Alignment check exception */
326 TRAP_x86_MCHK = 18, /* Machine check exception */
327 TRAP_x86_CACHEFLT = 19 /* Cache flush exception */
332 /***********************************************************************
335 inline static int dispatch_signal(unsigned int sig)
337 if (handlers[sig] == NULL) return 0;
338 return handlers[sig](sig);
342 /***********************************************************************
345 * Get the trap code for a signal.
347 static inline enum i386_trap_code get_trap_code( const SIGCONTEXT *sigcontext )
350 return TRAP_sig(sigcontext);
352 return TRAP_x86_UNKNOWN; /* unknown trap code */
356 /***********************************************************************
359 * Get the error code for a signal.
361 static inline WORD get_error_code( const SIGCONTEXT *sigcontext )
364 return ERROR_sig(sigcontext);
370 /***********************************************************************
373 * Get the base of the signal stack for the current thread.
375 static inline void *get_signal_stack(void)
377 return (char *)NtCurrentTeb() + 4096;
381 /***********************************************************************
384 * Get the current teb based on the stack pointer.
386 static inline TEB *get_current_teb(void)
389 __asm__("movl %%esp,%0" : "=g" (esp) );
390 return (TEB *)(esp & ~signal_stack_mask);
395 /***********************************************************************
398 * Set the register values from a vm86 structure.
400 static void save_vm86_context( CONTEXT *context, const struct vm86plus_struct *vm86 )
402 context->ContextFlags = CONTEXT_FULL;
403 context->Eax = vm86->regs.eax;
404 context->Ebx = vm86->regs.ebx;
405 context->Ecx = vm86->regs.ecx;
406 context->Edx = vm86->regs.edx;
407 context->Esi = vm86->regs.esi;
408 context->Edi = vm86->regs.edi;
409 context->Esp = vm86->regs.esp;
410 context->Ebp = vm86->regs.ebp;
411 context->Eip = vm86->regs.eip;
412 context->SegCs = vm86->regs.cs;
413 context->SegDs = vm86->regs.ds;
414 context->SegEs = vm86->regs.es;
415 context->SegFs = vm86->regs.fs;
416 context->SegGs = vm86->regs.gs;
417 context->SegSs = vm86->regs.ss;
418 context->EFlags = vm86->regs.eflags;
422 /***********************************************************************
423 * restore_vm86_context
425 * Build a vm86 structure from the register values.
427 static void restore_vm86_context( const CONTEXT *context, struct vm86plus_struct *vm86 )
429 vm86->regs.eax = context->Eax;
430 vm86->regs.ebx = context->Ebx;
431 vm86->regs.ecx = context->Ecx;
432 vm86->regs.edx = context->Edx;
433 vm86->regs.esi = context->Esi;
434 vm86->regs.edi = context->Edi;
435 vm86->regs.esp = context->Esp;
436 vm86->regs.ebp = context->Ebp;
437 vm86->regs.eip = context->Eip;
438 vm86->regs.cs = context->SegCs;
439 vm86->regs.ds = context->SegDs;
440 vm86->regs.es = context->SegEs;
441 vm86->regs.fs = context->SegFs;
442 vm86->regs.gs = context->SegGs;
443 vm86->regs.ss = context->SegSs;
444 vm86->regs.eflags = context->EFlags;
448 /**********************************************************************
449 * merge_vm86_pending_flags
451 * Merges TEB.vm86_ptr and TEB.vm86_pending VIP flags and
452 * raises exception if there are pending events and VIF flag
453 * has been turned on.
455 * Called from __wine_enter_vm86 because vm86_enter
456 * doesn't check for pending events.
458 * Called from raise_vm86_sti_exception to check for
459 * pending events in a signal safe way.
461 static void merge_vm86_pending_flags( EXCEPTION_RECORD *rec )
463 BOOL check_pending = TRUE;
464 struct vm86plus_struct *vm86 =
465 (struct vm86plus_struct*)(ntdll_get_thread_data()->vm86_ptr);
468 * In order to prevent a race when SIGUSR2 occurs while
469 * we are returning from exception handler, pending events
470 * will be rechecked after each raised exception.
472 while (check_pending && NtCurrentTeb()->vm86_pending)
474 check_pending = FALSE;
475 ntdll_get_thread_data()->vm86_ptr = NULL;
478 * If VIF is set, throw exception.
479 * Note that SIGUSR2 may turn VIF flag off so
480 * VIF check must occur only when TEB.vm86_ptr is NULL.
482 if (vm86->regs.eflags & VIF_MASK)
485 save_vm86_context( &vcontext, vm86 );
487 rec->ExceptionCode = EXCEPTION_VM86_STI;
488 rec->ExceptionFlags = EXCEPTION_CONTINUABLE;
489 rec->ExceptionRecord = NULL;
490 rec->NumberParameters = 0;
491 rec->ExceptionAddress = (LPVOID)vcontext.Eip;
493 vcontext.EFlags &= ~VIP_MASK;
494 NtCurrentTeb()->vm86_pending = 0;
495 __regs_RtlRaiseException( rec, &vcontext );
497 restore_vm86_context( &vcontext, vm86 );
498 check_pending = TRUE;
501 ntdll_get_thread_data()->vm86_ptr = vm86;
505 * Merge VIP flags in a signal safe way. This requires
506 * that the following operation compiles into atomic
509 vm86->regs.eflags |= NtCurrentTeb()->vm86_pending;
511 #endif /* __HAVE_VM86 */
514 typedef void (WINAPI *raise_func)( EXCEPTION_RECORD *rec, CONTEXT *context );
517 /***********************************************************************
520 * Handler initialization when the full context is not needed.
522 inline static void *init_handler( const SIGCONTEXT *sigcontext, WORD *fs, WORD *gs )
524 void *stack = (void *)ESP_sig(sigcontext);
525 TEB *teb = get_current_teb();
526 struct ntdll_thread_regs *thread_regs = (struct ntdll_thread_regs *)teb->SpareBytes1;
528 /* get %fs and %gs at time of the fault */
530 *fs = LOWORD(FS_sig(sigcontext));
535 *gs = LOWORD(GS_sig(sigcontext));
540 wine_set_fs( thread_regs->fs );
542 /* now restore a proper %gs for the fault handler */
543 if (!wine_ldt_is_system(CS_sig(sigcontext)) ||
544 !wine_ldt_is_system(SS_sig(sigcontext))) /* 16-bit mode */
547 * Win16 or DOS protected mode. Note that during switch
548 * from 16-bit mode to linear mode, CS may be set to system
549 * segment before FS is restored. Fortunately, in this case
550 * SS is still non-system segment. This is why both CS and SS
553 wine_set_gs( thread_regs->gs );
554 stack = teb->WOW32Reserved;
557 else if ((void *)EIP_sig(sigcontext) == vm86_return) /* vm86 mode */
559 unsigned int *int_stack = stack;
560 /* fetch the saved %gs from the stack */
561 wine_set_gs( int_stack[0] );
564 else /* 32-bit mode */
567 wine_set_gs( GS_sig(sigcontext) );
574 /***********************************************************************
577 * Save the thread FPU context.
579 inline static void save_fpu( CONTEXT *context )
582 context->ContextFlags |= CONTEXT_FLOATING_POINT;
583 __asm__ __volatile__( "fnsave %0; fwait" : "=m" (context->FloatSave) );
588 /***********************************************************************
591 * Restore the FPU context to a sigcontext.
593 inline static void restore_fpu( const CONTEXT *context )
595 FLOATING_SAVE_AREA float_status = context->FloatSave;
596 /* reset the current interrupt status */
597 float_status.StatusWord &= float_status.ControlWord | 0xffffff80;
599 __asm__ __volatile__( "frstor %0; fwait" : : "m" (float_status) );
600 #endif /* __GNUC__ */
604 /***********************************************************************
607 * Build a context structure from the signal info.
609 inline static void save_context( CONTEXT *context, const SIGCONTEXT *sigcontext, WORD fs, WORD gs )
611 struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
613 memset(context, 0, sizeof(*context));
614 context->ContextFlags = CONTEXT_FULL | CONTEXT_DEBUG_REGISTERS;
615 context->Eax = EAX_sig(sigcontext);
616 context->Ebx = EBX_sig(sigcontext);
617 context->Ecx = ECX_sig(sigcontext);
618 context->Edx = EDX_sig(sigcontext);
619 context->Esi = ESI_sig(sigcontext);
620 context->Edi = EDI_sig(sigcontext);
621 context->Ebp = EBP_sig(sigcontext);
622 context->EFlags = EFL_sig(sigcontext);
623 context->Eip = EIP_sig(sigcontext);
624 context->Esp = ESP_sig(sigcontext);
625 context->SegCs = LOWORD(CS_sig(sigcontext));
626 context->SegDs = LOWORD(DS_sig(sigcontext));
627 context->SegEs = LOWORD(ES_sig(sigcontext));
630 context->SegSs = LOWORD(SS_sig(sigcontext));
631 context->Dr0 = regs->dr0;
632 context->Dr1 = regs->dr1;
633 context->Dr2 = regs->dr2;
634 context->Dr3 = regs->dr3;
635 context->Dr6 = regs->dr6;
636 context->Dr7 = regs->dr7;
639 if (FPU_sig(sigcontext))
641 context->ContextFlags |= CONTEXT_FLOATING_POINT;
642 context->FloatSave = *FPU_sig(sigcontext);
652 /***********************************************************************
655 * Restore the signal info from the context.
657 inline static void restore_context( const CONTEXT *context, SIGCONTEXT *sigcontext )
659 struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
661 regs->dr0 = context->Dr0;
662 regs->dr1 = context->Dr1;
663 regs->dr2 = context->Dr2;
664 regs->dr3 = context->Dr3;
665 regs->dr6 = context->Dr6;
666 regs->dr7 = context->Dr7;
667 EAX_sig(sigcontext) = context->Eax;
668 EBX_sig(sigcontext) = context->Ebx;
669 ECX_sig(sigcontext) = context->Ecx;
670 EDX_sig(sigcontext) = context->Edx;
671 ESI_sig(sigcontext) = context->Esi;
672 EDI_sig(sigcontext) = context->Edi;
673 EBP_sig(sigcontext) = context->Ebp;
674 EFL_sig(sigcontext) = context->EFlags;
675 EIP_sig(sigcontext) = context->Eip;
676 ESP_sig(sigcontext) = context->Esp;
677 CS_sig(sigcontext) = context->SegCs;
678 DS_sig(sigcontext) = context->SegDs;
679 ES_sig(sigcontext) = context->SegEs;
680 SS_sig(sigcontext) = context->SegSs;
682 GS_sig(sigcontext) = context->SegGs;
684 wine_set_gs( context->SegGs );
687 FS_sig(sigcontext) = context->SegFs;
689 wine_set_fs( context->SegFs );
693 if (FPU_sig(sigcontext))
695 *FPU_sig(sigcontext) = context->FloatSave;
700 restore_fpu( context );
705 /***********************************************************************
708 * Register function to get the context of the current thread.
710 void WINAPI __regs_get_cpu_context( CONTEXT *context, CONTEXT *regs )
715 DEFINE_REGS_ENTRYPOINT( get_cpu_context, 4, 4 );
718 /***********************************************************************
721 * Set the new CPU context. Used by NtSetContextThread.
723 void set_cpu_context( const CONTEXT *context )
725 DWORD flags = context->ContextFlags & ~CONTEXT_i386;
727 if (flags & CONTEXT_FLOATING_POINT) restore_fpu( context );
729 if (flags & CONTEXT_DEBUG_REGISTERS)
731 struct ntdll_thread_regs * const regs = ntdll_get_thread_regs();
732 regs->dr0 = context->Dr0;
733 regs->dr1 = context->Dr1;
734 regs->dr2 = context->Dr2;
735 regs->dr3 = context->Dr3;
736 regs->dr6 = context->Dr6;
737 regs->dr7 = context->Dr7;
739 if (flags & CONTEXT_FULL)
741 if ((flags & CONTEXT_FULL) != (CONTEXT_FULL & ~CONTEXT_i386))
742 FIXME( "setting partial context (%lx) not supported\n", flags );
744 __wine_call_from_32_restore_regs( context );
749 /***********************************************************************
750 * is_privileged_instr
752 * Check if the fault location is a privileged instruction.
753 * Based on the instruction emulation code in dlls/kernel/instr.c.
755 static inline int is_privileged_instr( CONTEXT86 *context )
758 unsigned int prefix_count = 0;
760 if (!wine_ldt_is_system( context->SegCs )) return 0;
761 instr = (BYTE *)context->Eip;
763 for (;;) switch(*instr)
765 /* instruction prefixes */
766 case 0x2e: /* %cs: */
767 case 0x36: /* %ss: */
768 case 0x3e: /* %ds: */
769 case 0x26: /* %es: */
770 case 0x64: /* %fs: */
771 case 0x65: /* %gs: */
772 case 0x66: /* opcode size */
773 case 0x67: /* addr size */
774 case 0xf0: /* lock */
775 case 0xf2: /* repne */
776 case 0xf3: /* repe */
777 if (++prefix_count >= 15) return 0;
781 case 0x0f: /* extended instruction */
784 case 0x20: /* mov crX, reg */
785 case 0x21: /* mov drX, reg */
786 case 0x22: /* mov reg, crX */
787 case 0x23: /* mov reg drX */
791 case 0x6c: /* insb (%dx) */
792 case 0x6d: /* insl (%dx) */
793 case 0x6e: /* outsb (%dx) */
794 case 0x6f: /* outsl (%dx) */
795 case 0xcd: /* int $xx */
796 case 0xe4: /* inb al,XX */
797 case 0xe5: /* in (e)ax,XX */
798 case 0xe6: /* outb XX,al */
799 case 0xe7: /* out XX,(e)ax */
800 case 0xec: /* inb (%dx),%al */
801 case 0xed: /* inl (%dx),%eax */
802 case 0xee: /* outb %al,(%dx) */
803 case 0xef: /* outl %eax,(%dx) */
814 #include "pshpack1.h"
817 DWORD movl; /* movl this,4(%esp) */
819 BYTE jmp; /* jmp func */
824 /**********************************************************************
827 * Check if code destination is an ATL thunk, and emulate it if so.
829 static BOOL check_atl_thunk( EXCEPTION_RECORD *rec, CONTEXT *context )
831 const struct atl_thunk *thunk = (const struct atl_thunk *)rec->ExceptionInformation[1];
836 if (thunk->movl == 0x042444c7 && thunk->jmp == 0xe9)
838 *((DWORD *)context->Esp + 1) = thunk->this;
839 context->Eip = (DWORD_PTR)(&thunk->func + 1) + thunk->func;
840 TRACE( "emulating ATL thunk at %p, func=%08lx arg=%08lx\n",
841 thunk, context->Eip, *((DWORD *)context->Esp + 1) );
854 /***********************************************************************
857 * Setup a proper stack frame for the raise function, and modify the
858 * sigcontext so that the return from the signal handler will call
859 * the raise function.
861 static EXCEPTION_RECORD *setup_exception( SIGCONTEXT *sigcontext, raise_func func )
865 void *ret_addr; /* return address from raise_func */
866 EXCEPTION_RECORD *rec_ptr; /* first arg for raise_func */
867 CONTEXT *context_ptr; /* second arg for raise_func */
869 EXCEPTION_RECORD rec;
876 stack = init_handler( sigcontext, &fs, &gs );
878 /* stack sanity checks */
880 if ((char *)stack >= (char *)get_signal_stack() &&
881 (char *)stack < (char *)get_signal_stack() + signal_stack_size)
883 ERR( "nested exception on signal stack in thread %04lx eip %08x esp %08x stack %p-%p\n",
884 GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
885 (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
886 NtCurrentTeb()->Tib.StackBase );
887 server_abort_thread(1);
890 if (stack - 1 > stack || /* check for overflow in subtraction */
891 (char *)(stack - 1) < (char *)NtCurrentTeb()->Tib.StackLimit ||
892 (char *)stack > (char *)NtCurrentTeb()->Tib.StackBase)
894 UINT diff = (char *)NtCurrentTeb()->Tib.StackLimit - (char *)stack;
897 ERR( "stack overflow %u bytes in thread %04lx eip %08x esp %08x stack %p-%p\n",
898 diff, GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
899 (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
900 NtCurrentTeb()->Tib.StackBase );
901 server_abort_thread(1);
903 else WARN( "exception outside of stack limits in thread %04lx eip %08x esp %08x stack %p-%p\n",
904 GetCurrentThreadId(), (unsigned int) EIP_sig(sigcontext),
905 (unsigned int) ESP_sig(sigcontext), NtCurrentTeb()->Tib.StackLimit,
906 NtCurrentTeb()->Tib.StackBase );
909 stack--; /* push the stack_layout structure */
910 #ifdef HAVE_VALGRIND_MEMCHECK_H
911 VALGRIND_MAKE_WRITABLE(stack, sizeof(*stack));
913 stack->ret_addr = (void *)0xdeadbabe; /* raise_func must not return */
914 stack->rec_ptr = &stack->rec;
915 stack->context_ptr = &stack->context;
917 stack->rec.ExceptionRecord = NULL;
918 stack->rec.ExceptionFlags = EXCEPTION_CONTINUABLE;
919 stack->rec.ExceptionAddress = (LPVOID)EIP_sig(sigcontext);
920 stack->rec.NumberParameters = 0;
922 save_context( &stack->context, sigcontext, fs, gs );
924 /* now modify the sigcontext to return to the raise function */
925 ESP_sig(sigcontext) = (DWORD)stack;
926 EIP_sig(sigcontext) = (DWORD)func;
927 EFL_sig(sigcontext) &= ~0x100; /* clear single-step flag */
928 CS_sig(sigcontext) = wine_get_cs();
929 DS_sig(sigcontext) = wine_get_ds();
930 ES_sig(sigcontext) = wine_get_es();
931 FS_sig(sigcontext) = wine_get_fs();
932 GS_sig(sigcontext) = wine_get_gs();
933 SS_sig(sigcontext) = wine_get_ss();
935 return stack->rec_ptr;
939 /***********************************************************************
940 * get_exception_context
942 * Get a pointer to the context built by setup_exception.
944 static inline CONTEXT *get_exception_context( EXCEPTION_RECORD *rec )
946 return (CONTEXT *)rec - 1; /* cf. stack_layout structure */
950 /**********************************************************************
953 * Get the FPU exception code from the FPU status.
955 static inline DWORD get_fpu_code( const CONTEXT *context )
957 DWORD status = context->FloatSave.StatusWord;
959 if (status & 0x01) /* IE */
961 if (status & 0x40) /* SF */
962 return EXCEPTION_FLT_STACK_CHECK;
964 return EXCEPTION_FLT_INVALID_OPERATION;
966 if (status & 0x02) return EXCEPTION_FLT_DENORMAL_OPERAND; /* DE flag */
967 if (status & 0x04) return EXCEPTION_FLT_DIVIDE_BY_ZERO; /* ZE flag */
968 if (status & 0x08) return EXCEPTION_FLT_OVERFLOW; /* OE flag */
969 if (status & 0x10) return EXCEPTION_FLT_UNDERFLOW; /* UE flag */
970 if (status & 0x20) return EXCEPTION_FLT_INEXACT_RESULT; /* PE flag */
971 return EXCEPTION_FLT_INVALID_OPERATION; /* generic error */
975 /**********************************************************************
976 * raise_segv_exception
978 static void WINAPI raise_segv_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
980 switch(rec->ExceptionCode)
982 case EXCEPTION_ACCESS_VIOLATION:
983 if (rec->NumberParameters == 2)
985 if (rec->ExceptionInformation[0] == EXCEPTION_EXECUTE_FAULT && check_atl_thunk( rec, context ))
987 rec->ExceptionCode = VIRTUAL_HandleFault( (void *)rec->ExceptionInformation[1] );
990 case EXCEPTION_DATATYPE_MISALIGNMENT:
991 /* FIXME: pass through exception handler first? */
992 if (context->EFlags & 0x00040000)
994 /* Disable AC flag, return */
995 context->EFlags &= ~0x00040000;
1000 __regs_RtlRaiseException( rec, context );
1002 NtSetContextThread( GetCurrentThread(), context );
1006 /**********************************************************************
1007 * raise_trap_exception
1009 static void WINAPI raise_trap_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1011 if (rec->ExceptionCode == EXCEPTION_SINGLE_STEP)
1013 if (context->EFlags & 0x100)
1015 context->EFlags &= ~0x100; /* clear single-step flag */
1017 else /* hardware breakpoint, fetch the debug registers */
1019 context->ContextFlags = CONTEXT_DEBUG_REGISTERS;
1020 NtGetContextThread(GetCurrentThread(), context);
1021 /* do we really have a bp from a debug register ?
1022 * if not, then someone did a kill(SIGTRAP) on us, and we
1023 * shall return a breakpoint, not a single step exception
1025 if (!(context->Dr6 & 0xf)) rec->ExceptionCode = EXCEPTION_BREAKPOINT;
1026 context->ContextFlags |= CONTEXT_FULL; /* restore flags */
1030 __regs_RtlRaiseException( rec, context );
1031 NtSetContextThread( GetCurrentThread(), context );
1035 /**********************************************************************
1038 * Generic raise function for exceptions that don't need special treatment.
1040 static void WINAPI raise_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1042 __regs_RtlRaiseException( rec, context );
1043 NtSetContextThread( GetCurrentThread(), context );
1048 /**********************************************************************
1049 * raise_vm86_sti_exception
1051 static void WINAPI raise_vm86_sti_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
1053 /* merge_vm86_pending_flags merges the vm86_pending flag in safely */
1054 NtCurrentTeb()->vm86_pending |= VIP_MASK;
1056 if (ntdll_get_thread_data()->vm86_ptr)
1058 if (((char*)context->Eip >= (char*)vm86_return) &&
1059 ((char*)context->Eip <= (char*)vm86_return_end) &&
1060 (VM86_TYPE(context->Eax) != VM86_SIGNAL)) {
1061 /* exiting from VM86, can't throw */
1064 merge_vm86_pending_flags( rec );
1066 else if (NtCurrentTeb()->dpmi_vif &&
1067 !wine_ldt_is_system(context->SegCs) &&
1068 !wine_ldt_is_system(context->SegSs))
1070 /* Executing DPMI code and virtual interrupts are enabled. */
1071 NtCurrentTeb()->vm86_pending = 0;
1072 __regs_RtlRaiseException( rec, context );
1075 NtSetContextThread( GetCurrentThread(), context );
1079 /**********************************************************************
1082 * Handler for SIGUSR2.
1083 * We use it to signal that the running __wine_enter_vm86() should
1084 * immediately set VIP_MASK, causing pending events to be handled
1085 * as early as possible.
1087 static void usr2_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1089 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_vm86_sti_exception );
1090 rec->ExceptionCode = EXCEPTION_VM86_STI;
1092 #endif /* __HAVE_VM86 */
1095 /**********************************************************************
1098 * Handler for SIGSEGV and related errors.
1100 static void segv_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1102 SIGCONTEXT *context = sigcontext;
1103 EXCEPTION_RECORD *rec = setup_exception( context, raise_segv_exception );
1105 switch(get_trap_code(context))
1107 case TRAP_x86_OFLOW: /* Overflow exception */
1108 rec->ExceptionCode = EXCEPTION_INT_OVERFLOW;
1110 case TRAP_x86_BOUND: /* Bound range exception */
1111 rec->ExceptionCode = EXCEPTION_ARRAY_BOUNDS_EXCEEDED;
1113 case TRAP_x86_PRIVINFLT: /* Invalid opcode exception */
1114 rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
1116 case TRAP_x86_STKFLT: /* Stack fault */
1117 rec->ExceptionCode = EXCEPTION_STACK_OVERFLOW;
1119 case TRAP_x86_SEGNPFLT: /* Segment not present exception */
1120 case TRAP_x86_PROTFLT: /* General protection fault */
1121 case TRAP_x86_UNKNOWN: /* Unknown fault code */
1122 if (!get_error_code(context) && is_privileged_instr( get_exception_context(rec) ))
1123 rec->ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
1126 WORD err = get_error_code(context);
1127 rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
1128 rec->NumberParameters = 2;
1129 rec->ExceptionInformation[0] = 0;
1130 /* if error contains a LDT selector, use that as fault address */
1131 rec->ExceptionInformation[1] = (err & 7) == 4 ? (err & ~7) : 0xffffffff;
1134 case TRAP_x86_PAGEFLT: /* Page fault */
1135 rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
1136 rec->NumberParameters = 2;
1137 rec->ExceptionInformation[0] = (get_error_code(context) >> 1) & 0x09;
1138 rec->ExceptionInformation[1] = (ULONG_PTR)siginfo->si_addr;
1140 case TRAP_x86_ALIGNFLT: /* Alignment check exception */
1141 rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
1144 ERR( "Got unexpected trap %d\n", get_trap_code(context) );
1146 case TRAP_x86_NMI: /* NMI interrupt */
1147 case TRAP_x86_DNA: /* Device not available exception */
1148 case TRAP_x86_DOUBLEFLT: /* Double fault exception */
1149 case TRAP_x86_TSSFLT: /* Invalid TSS exception */
1150 case TRAP_x86_MCHK: /* Machine check exception */
1151 case TRAP_x86_CACHEFLT: /* Cache flush exception */
1152 rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
1158 /**********************************************************************
1161 * Handler for SIGTRAP.
1163 static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1165 SIGCONTEXT *context = sigcontext;
1166 EXCEPTION_RECORD *rec = setup_exception( context, raise_trap_exception );
1168 switch(get_trap_code(context))
1170 case TRAP_x86_TRCTRAP: /* Single-step exception */
1171 rec->ExceptionCode = EXCEPTION_SINGLE_STEP;
1173 case TRAP_x86_BPTFLT: /* Breakpoint exception */
1174 rec->ExceptionAddress = (char *)rec->ExceptionAddress - 1; /* back up over the int3 instruction */
1177 rec->ExceptionCode = EXCEPTION_BREAKPOINT;
1183 /**********************************************************************
1186 * Handler for SIGFPE.
1188 static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1190 CONTEXT *win_context;
1191 SIGCONTEXT *context = sigcontext;
1192 EXCEPTION_RECORD *rec = setup_exception( context, raise_exception );
1194 win_context = get_exception_context( rec );
1196 switch(get_trap_code(context))
1198 case TRAP_x86_DIVIDE: /* Division by zero exception */
1199 rec->ExceptionCode = EXCEPTION_INT_DIVIDE_BY_ZERO;
1201 case TRAP_x86_FPOPFLT: /* Coprocessor segment overrun */
1202 rec->ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
1204 case TRAP_x86_ARITHTRAP: /* Floating point exception */
1205 case TRAP_x86_UNKNOWN: /* Unknown fault code */
1206 rec->ExceptionCode = get_fpu_code( win_context );
1209 ERR( "Got unexpected trap %d\n", get_trap_code(context) );
1210 rec->ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
1216 /**********************************************************************
1219 * Handler for SIGINT.
1221 * FIXME: should not be calling external functions on the signal stack.
1223 static void int_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1226 init_handler( sigcontext, &fs, &gs );
1227 if (!dispatch_signal(SIGINT))
1229 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_exception );
1230 rec->ExceptionCode = CONTROL_C_EXIT;
1234 /**********************************************************************
1237 * Handler for SIGABRT.
1239 static void abrt_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1241 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_exception );
1242 rec->ExceptionCode = EXCEPTION_WINE_ASSERTION;
1243 rec->ExceptionFlags = EH_NONCONTINUABLE;
1247 /**********************************************************************
1250 * Handler for SIGTERM.
1252 static void term_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1255 init_handler( sigcontext, &fs, &gs );
1256 server_abort_thread(0);
1260 /**********************************************************************
1263 * Handler for SIGUSR1, used to signal a thread that it got suspended.
1265 static void usr1_handler( int signal, siginfo_t *siginfo, void *sigcontext )
1270 init_handler( sigcontext, &fs, &gs );
1271 save_context( &context, sigcontext, fs, gs );
1272 wait_suspend( &context );
1273 restore_context( &context, sigcontext );
1277 /**********************************************************************
1278 * get_signal_stack_total_size
1280 * Retrieve the size to allocate for the signal stack, including the TEB at the bottom.
1281 * Must be a power of two.
1283 size_t get_signal_stack_total_size(void)
1285 static const size_t teb_size = 4096; /* we reserve one page for the TEB */
1287 if (!signal_stack_size)
1289 size_t size = 4096, min_size = teb_size + max( MINSIGSTKSZ, 4096 );
1290 /* find the first power of two not smaller than min_size */
1291 while (size < min_size) size *= 2;
1292 signal_stack_mask = size - 1;
1293 signal_stack_size = size - teb_size;
1295 return signal_stack_size + teb_size;
1299 /***********************************************************************
1300 * __wine_set_signal_handler (NTDLL.@)
1302 int __wine_set_signal_handler(unsigned int sig, wine_signal_handler wsh)
1304 if (sig >= sizeof(handlers) / sizeof(handlers[0])) return -1;
1305 if (handlers[sig] != NULL) return -2;
1306 handlers[sig] = wsh;
1311 /**********************************************************************
1314 BOOL SIGNAL_Init(void)
1316 struct sigaction sig_act;
1318 #ifdef HAVE_SIGALTSTACK
1319 struct sigaltstack ss;
1322 int mib[2], val = 1;
1325 mib[1] = KERN_THALTSTACK;
1326 sysctl( mib, 2, NULL, NULL, &val, sizeof(val) );
1329 ss.ss_sp = get_signal_stack();
1330 ss.ss_size = signal_stack_size;
1332 if (sigaltstack(&ss, NULL) == -1)
1334 perror( "sigaltstack" );
1337 #endif /* HAVE_SIGALTSTACK */
1339 sigemptyset( &sig_act.sa_mask );
1340 sigaddset( &sig_act.sa_mask, SIGINT );
1341 sigaddset( &sig_act.sa_mask, SIGUSR1 );
1342 sigaddset( &sig_act.sa_mask, SIGUSR2 );
1343 sig_act.sa_flags = SA_SIGINFO | SA_RESTART;
1346 sig_act.sa_flags |= SA_ONSTACK;
1349 sig_act.sa_sigaction = int_handler;
1350 if (sigaction( SIGINT, &sig_act, NULL ) == -1) goto error;
1351 sig_act.sa_sigaction = fpe_handler;
1352 if (sigaction( SIGFPE, &sig_act, NULL ) == -1) goto error;
1353 sig_act.sa_sigaction = abrt_handler;
1354 if (sigaction( SIGABRT, &sig_act, NULL ) == -1) goto error;
1355 sig_act.sa_sigaction = term_handler;
1356 if (sigaction( SIGTERM, &sig_act, NULL ) == -1) goto error;
1357 sig_act.sa_sigaction = usr1_handler;
1358 if (sigaction( SIGUSR1, &sig_act, NULL ) == -1) goto error;
1360 sig_act.sa_sigaction = segv_handler;
1361 if (sigaction( SIGSEGV, &sig_act, NULL ) == -1) goto error;
1362 if (sigaction( SIGILL, &sig_act, NULL ) == -1) goto error;
1364 if (sigaction( SIGBUS, &sig_act, NULL ) == -1) goto error;
1368 sig_act.sa_sigaction = trap_handler;
1369 if (sigaction( SIGTRAP, &sig_act, NULL ) == -1) goto error;
1373 sig_act.sa_sigaction = usr2_handler;
1374 if (sigaction( SIGUSR2, &sig_act, NULL ) == -1) goto error;
1380 perror("sigaction");
1386 /**********************************************************************
1387 * __wine_enter_vm86 (NTDLL.@)
1389 * Enter vm86 mode with the specified register context.
1391 void __wine_enter_vm86( CONTEXT *context )
1393 EXCEPTION_RECORD rec;
1395 struct vm86plus_struct vm86;
1397 memset( &vm86, 0, sizeof(vm86) );
1400 restore_vm86_context( context, &vm86 );
1402 ntdll_get_thread_data()->vm86_ptr = &vm86;
1403 merge_vm86_pending_flags( &rec );
1405 res = vm86_enter( &ntdll_get_thread_data()->vm86_ptr ); /* uses and clears teb->vm86_ptr */
1412 save_vm86_context( context, &vm86 );
1414 rec.ExceptionFlags = EXCEPTION_CONTINUABLE;
1415 rec.ExceptionRecord = NULL;
1416 rec.ExceptionAddress = (LPVOID)context->Eip;
1417 rec.NumberParameters = 0;
1419 switch(VM86_TYPE(res))
1421 case VM86_UNKNOWN: /* unhandled GP fault - IO-instruction or similar */
1422 rec.ExceptionCode = EXCEPTION_PRIV_INSTRUCTION;
1423 raise_segv_exception( &rec, context );
1425 case VM86_TRAP: /* return due to DOS-debugger request */
1426 switch(VM86_ARG(res))
1428 case TRAP_x86_TRCTRAP: /* Single-step exception */
1429 rec.ExceptionCode = EXCEPTION_SINGLE_STEP;
1431 case TRAP_x86_BPTFLT: /* Breakpoint exception */
1432 rec.ExceptionAddress = (char *)rec.ExceptionAddress - 1; /* back up over the int3 instruction */
1435 rec.ExceptionCode = EXCEPTION_BREAKPOINT;
1439 case VM86_INTx: /* int3/int x instruction (ARG = x) */
1440 rec.ExceptionCode = EXCEPTION_VM86_INTx;
1441 rec.NumberParameters = 1;
1442 rec.ExceptionInformation[0] = VM86_ARG(res);
1444 case VM86_STI: /* sti/popf/iret instruction enabled virtual interrupts */
1445 context->EFlags |= VIF_MASK;
1446 context->EFlags &= ~VIP_MASK;
1447 NtCurrentTeb()->vm86_pending = 0;
1448 rec.ExceptionCode = EXCEPTION_VM86_STI;
1450 case VM86_PICRETURN: /* return due to pending PIC request */
1451 rec.ExceptionCode = EXCEPTION_VM86_PICRETURN;
1453 case VM86_SIGNAL: /* cannot happen because vm86_enter handles this case */
1455 ERR( "unhandled result from vm86 mode %x\n", res );
1458 __regs_RtlRaiseException( &rec, context );
1462 #else /* __HAVE_VM86 */
1463 /**********************************************************************
1464 * __wine_enter_vm86 (NTDLL.@)
1466 void __wine_enter_vm86( CONTEXT *context )
1468 MESSAGE("vm86 mode not supported on this platform\n");
1470 #endif /* __HAVE_VM86 */
1472 /**********************************************************************
1473 * DbgBreakPoint (NTDLL.@)
1475 __ASM_GLOBAL_FUNC( DbgBreakPoint, "int $3; ret");
1477 /**********************************************************************
1478 * DbgUserBreakPoint (NTDLL.@)
1480 __ASM_GLOBAL_FUNC( DbgUserBreakPoint, "int $3; ret");
1483 /**********************************************************************
1484 * EXC_CallHandler (internal)
1486 * Some exception handlers depend on EBP to have a fixed position relative to
1487 * the exception frame.
1488 * Shrinker depends on (*1) doing what it does,
1489 * (*2) being the exact instruction it is and (*3) beginning with 0x64
1490 * (i.e. the %fs prefix to the movl instruction). It also depends on the
1491 * function calling the handler having only 5 parameters (*4).
1493 __ASM_GLOBAL_FUNC( EXC_CallHandler,
1495 " movl %esp, %ebp\n"
1497 " movl 28(%ebp), %edx\n" /* ugly hack to pass the 6th param needed because of Shrinker */
1503 " call " __ASM_NAME("call_exception_handler") "\n"
1508 __ASM_GLOBAL_FUNC(call_exception_handler,
1510 " movl %esp, %ebp\n"
1512 " pushl 12(%ebp)\n" /* make any exceptions in this... */
1513 " pushl %edx\n" /* handler be handled by... */
1515 " pushl (0)\n" /* nested_handler (passed in edx). */
1517 " movl %esp,(0)\n" /* push the new exception frame onto the exception stack. */
1522 " movl 24(%ebp), %ecx\n" /* (*1) */
1523 " call *%ecx\n" /* call handler. (*2) */
1525 " movl (0), %esp\n" /* restore previous... (*3) */
1527 " popl (0)\n" /* exception frame. */
1528 " movl %ebp, %esp\n" /* restore saved stack, in case it was corrupted */
1530 " ret $20\n" /* (*4) */
1532 #endif /* __i386__ */