mmdevapi: Fix compiler warnings with flag -Wcast-qual.
[wine.git] / dlls / ntdll / signal_x86_64.c
blob45cdb320cdbd42c593388366b1d30731aeeb09ce
1 /*
2 * x86-64 signal handling routines
4 * Copyright 1999, 2005 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
21 #ifdef __x86_64__
23 #include "config.h"
24 #include "wine/port.h"
26 #include <assert.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
35 #ifdef HAVE_SYS_PARAM_H
36 # include <sys/param.h>
37 #endif
38 #ifdef HAVE_SYS_SIGNAL_H
39 # include <sys/signal.h>
40 #endif
42 #define NONAMELESSUNION
43 #define NONAMELESSSTRUCT
44 #include "ntstatus.h"
45 #define WIN32_NO_STATUS
46 #include "windef.h"
47 #include "winternl.h"
48 #include "wine/library.h"
49 #include "wine/exception.h"
50 #include "ntdll_misc.h"
51 #include "wine/debug.h"
53 #ifdef HAVE_VALGRIND_MEMCHECK_H
54 #include <valgrind/memcheck.h>
55 #endif
57 WINE_DEFAULT_DEBUG_CHANNEL(seh);
59 struct _DISPATCHER_CONTEXT;
61 typedef LONG (WINAPI *PC_LANGUAGE_EXCEPTION_HANDLER)( EXCEPTION_POINTERS *ptrs, ULONG64 frame );
62 typedef EXCEPTION_DISPOSITION (WINAPI *PEXCEPTION_ROUTINE)( EXCEPTION_RECORD *rec,
63 ULONG64 frame,
64 CONTEXT *context,
65 struct _DISPATCHER_CONTEXT *dispatch );
67 typedef struct _DISPATCHER_CONTEXT
69 ULONG64 ControlPc;
70 ULONG64 ImageBase;
71 PRUNTIME_FUNCTION FunctionEntry;
72 ULONG64 EstablisherFrame;
73 ULONG64 TargetIp;
74 PCONTEXT ContextRecord;
75 PEXCEPTION_ROUTINE LanguageHandler;
76 PVOID HandlerData;
77 PUNWIND_HISTORY_TABLE HistoryTable;
78 ULONG ScopeIndex;
79 } DISPATCHER_CONTEXT, *PDISPATCHER_CONTEXT;
81 typedef struct _SCOPE_TABLE
83 ULONG Count;
84 struct
86 ULONG BeginAddress;
87 ULONG EndAddress;
88 ULONG HandlerAddress;
89 ULONG JumpTarget;
90 } ScopeRecord[1];
91 } SCOPE_TABLE, *PSCOPE_TABLE;
94 /***********************************************************************
95 * signal context platform-specific definitions
97 #ifdef linux
99 #include <asm/prctl.h>
100 extern int arch_prctl(int func, void *ptr);
102 #define RAX_sig(context) ((context)->uc_mcontext.gregs[REG_RAX])
103 #define RBX_sig(context) ((context)->uc_mcontext.gregs[REG_RBX])
104 #define RCX_sig(context) ((context)->uc_mcontext.gregs[REG_RCX])
105 #define RDX_sig(context) ((context)->uc_mcontext.gregs[REG_RDX])
106 #define RSI_sig(context) ((context)->uc_mcontext.gregs[REG_RSI])
107 #define RDI_sig(context) ((context)->uc_mcontext.gregs[REG_RDI])
108 #define RBP_sig(context) ((context)->uc_mcontext.gregs[REG_RBP])
109 #define R8_sig(context) ((context)->uc_mcontext.gregs[REG_R8])
110 #define R9_sig(context) ((context)->uc_mcontext.gregs[REG_R9])
111 #define R10_sig(context) ((context)->uc_mcontext.gregs[REG_R10])
112 #define R11_sig(context) ((context)->uc_mcontext.gregs[REG_R11])
113 #define R12_sig(context) ((context)->uc_mcontext.gregs[REG_R12])
114 #define R13_sig(context) ((context)->uc_mcontext.gregs[REG_R13])
115 #define R14_sig(context) ((context)->uc_mcontext.gregs[REG_R14])
116 #define R15_sig(context) ((context)->uc_mcontext.gregs[REG_R15])
118 #define CS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 0))
119 #define GS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 1))
120 #define FS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 2))
122 #define RSP_sig(context) ((context)->uc_mcontext.gregs[REG_RSP])
123 #define RIP_sig(context) ((context)->uc_mcontext.gregs[REG_RIP])
124 #define EFL_sig(context) ((context)->uc_mcontext.gregs[REG_EFL])
125 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
126 #define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
128 #define FPU_sig(context) ((XMM_SAVE_AREA32 *)((context)->uc_mcontext.fpregs))
130 #endif /* linux */
132 #if defined(__NetBSD__)
133 # include <sys/ucontext.h>
134 # include <sys/types.h>
135 # include <signal.h>
137 #define RAX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RAX])
138 #define RBX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBX])
139 #define RCX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RCX])
140 #define RDX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDX])
141 #define RSI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RSI])
142 #define RDI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDI])
143 #define RBP_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBP])
144 #define R8_sig(context) ((context)->uc_mcontext.__gregs[_REG_R8])
145 #define R9_sig(context) ((context)->uc_mcontext.__gregs[_REG_R9])
146 #define R10_sig(context) ((context)->uc_mcontext.__gregs[_REG_R10])
147 #define R11_sig(context) ((context)->uc_mcontext.__gregs[_REG_R11])
148 #define R12_sig(context) ((context)->uc_mcontext.__gregs[_REG_R12])
149 #define R13_sig(context) ((context)->uc_mcontext.__gregs[_REG_R13])
150 #define R14_sig(context) ((context)->uc_mcontext.__gregs[_REG_R14])
151 #define R15_sig(context) ((context)->uc_mcontext.__gregs[_REG_R15])
153 #define CS_sig(context) ((context)->uc_mcontext.__gregs[_REG_CS])
154 #define DS_sig(context) ((context)->uc_mcontext.__gregs[_REG_DS])
155 #define ES_sig(context) ((context)->uc_mcontext.__gregs[_REG_ES])
156 #define FS_sig(context) ((context)->uc_mcontext.__gregs[_REG_FS])
157 #define GS_sig(context) ((context)->uc_mcontext.__gregs[_REG_GS])
158 #define SS_sig(context) ((context)->uc_mcontext.__gregs[_REG_SS])
160 #define EFL_sig(context) ((context)->uc_mcontext.__gregs[_REG_RFL])
162 #define RIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_RIP]))
163 #define RSP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_URSP]))
165 #define TRAP_sig(context) ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
166 #define ERROR_sig(context) ((context)->uc_mcontext.__gregs[_REG_ERR])
168 #define FPU_sig(context) ((XMM_SAVE_AREA32 *)((context)->uc_mcontext.__fpregs))
169 #endif /* __NetBSD__ */
171 enum i386_trap_code
173 TRAP_x86_UNKNOWN = -1, /* Unknown fault (TRAP_sig not defined) */
174 TRAP_x86_DIVIDE = 0, /* Division by zero exception */
175 TRAP_x86_TRCTRAP = 1, /* Single-step exception */
176 TRAP_x86_NMI = 2, /* NMI interrupt */
177 TRAP_x86_BPTFLT = 3, /* Breakpoint exception */
178 TRAP_x86_OFLOW = 4, /* Overflow exception */
179 TRAP_x86_BOUND = 5, /* Bound range exception */
180 TRAP_x86_PRIVINFLT = 6, /* Invalid opcode exception */
181 TRAP_x86_DNA = 7, /* Device not available exception */
182 TRAP_x86_DOUBLEFLT = 8, /* Double fault exception */
183 TRAP_x86_FPOPFLT = 9, /* Coprocessor segment overrun */
184 TRAP_x86_TSSFLT = 10, /* Invalid TSS exception */
185 TRAP_x86_SEGNPFLT = 11, /* Segment not present exception */
186 TRAP_x86_STKFLT = 12, /* Stack fault */
187 TRAP_x86_PROTFLT = 13, /* General protection fault */
188 TRAP_x86_PAGEFLT = 14, /* Page fault */
189 TRAP_x86_ARITHTRAP = 16, /* Floating point exception */
190 TRAP_x86_ALIGNFLT = 17, /* Alignment check exception */
191 TRAP_x86_MCHK = 18, /* Machine check exception */
192 TRAP_x86_CACHEFLT = 19 /* Cache flush exception */
195 static const size_t teb_size = 0x2000; /* we reserve two pages for the TEB */
196 static size_t signal_stack_size;
198 typedef void (*raise_func)( EXCEPTION_RECORD *rec, CONTEXT *context );
199 typedef int (*wine_signal_handler)(unsigned int sig);
201 static wine_signal_handler handlers[256];
204 /***********************************************************************
205 * Definitions for Win32 unwind tables
208 union handler_data
210 RUNTIME_FUNCTION chain;
211 ULONG handler;
214 struct opcode
216 BYTE offset;
217 BYTE code : 4;
218 BYTE info : 4;
221 struct UNWIND_INFO
223 BYTE version : 3;
224 BYTE flags : 5;
225 BYTE prolog;
226 BYTE count;
227 BYTE frame_reg : 4;
228 BYTE frame_offset : 4;
229 struct opcode opcodes[1]; /* info->count entries */
230 /* followed by handler_data */
233 #define UWOP_PUSH_NONVOL 0
234 #define UWOP_ALLOC_LARGE 1
235 #define UWOP_ALLOC_SMALL 2
236 #define UWOP_SET_FPREG 3
237 #define UWOP_SAVE_NONVOL 4
238 #define UWOP_SAVE_NONVOL_FAR 5
239 #define UWOP_SAVE_XMM128 8
240 #define UWOP_SAVE_XMM128_FAR 9
241 #define UWOP_PUSH_MACHFRAME 10
243 static void dump_unwind_info( ULONG64 base, RUNTIME_FUNCTION *function )
245 static const char * const reg_names[16] =
246 { "rax", "rcx", "rdx", "rbx", "rsp", "rbp", "rsi", "rdi",
247 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" };
249 union handler_data *handler_data;
250 struct UNWIND_INFO *info;
251 unsigned int i, count;
253 TRACE( "**** func %x-%x\n", function->BeginAddress, function->EndAddress );
254 for (;;)
256 if (function->UnwindData & 1)
258 RUNTIME_FUNCTION *next = (RUNTIME_FUNCTION *)((char *)base + (function->UnwindData & ~1));
259 TRACE( "unwind info for function %p-%p chained to function %p-%p\n",
260 (char *)base + function->BeginAddress, (char *)base + function->EndAddress,
261 (char *)base + next->BeginAddress, (char *)base + next->EndAddress );
262 function = next;
263 continue;
265 info = (struct UNWIND_INFO *)((char *)base + function->UnwindData);
267 TRACE( "unwind info at %p flags %x prolog 0x%x bytes function %p-%p\n",
268 info, info->flags, info->prolog,
269 (char *)base + function->BeginAddress, (char *)base + function->EndAddress );
271 if (info->frame_reg)
272 TRACE( " frame register %s offset 0x%x(%%rsp)\n",
273 reg_names[info->frame_reg], info->frame_offset * 16 );
275 for (i = 0; i < info->count; i++)
277 TRACE( " 0x%x: ", info->opcodes[i].offset );
278 switch (info->opcodes[i].code)
280 case UWOP_PUSH_NONVOL:
281 TRACE( "pushq %%%s\n", reg_names[info->opcodes[i].info] );
282 break;
283 case UWOP_ALLOC_LARGE:
284 if (info->opcodes[i].info)
286 count = *(DWORD *)&info->opcodes[i+1];
287 i += 2;
289 else
291 count = *(USHORT *)&info->opcodes[i+1] * 8;
292 i++;
294 TRACE( "subq $0x%x,%%rsp\n", count );
295 break;
296 case UWOP_ALLOC_SMALL:
297 count = (info->opcodes[i].info + 1) * 8;
298 TRACE( "subq $0x%x,%%rsp\n", count );
299 break;
300 case UWOP_SET_FPREG:
301 TRACE( "leaq 0x%x(%%rsp),%s\n",
302 info->frame_offset * 16, reg_names[info->frame_reg] );
303 break;
304 case UWOP_SAVE_NONVOL:
305 count = *(USHORT *)&info->opcodes[i+1] * 8;
306 TRACE( "movq %%%s,0x%x(%%rsp)\n", reg_names[info->opcodes[i].info], count );
307 i++;
308 break;
309 case UWOP_SAVE_NONVOL_FAR:
310 count = *(DWORD *)&info->opcodes[i+1];
311 TRACE( "movq %%%s,0x%x(%%rsp)\n", reg_names[info->opcodes[i].info], count );
312 i += 2;
313 break;
314 case UWOP_SAVE_XMM128:
315 count = *(USHORT *)&info->opcodes[i+1] * 16;
316 TRACE( "movaps %%xmm%u,0x%x(%%rsp)\n", info->opcodes[i].info, count );
317 i++;
318 break;
319 case UWOP_SAVE_XMM128_FAR:
320 count = *(DWORD *)&info->opcodes[i+1];
321 TRACE( "movaps %%xmm%u,0x%x(%%rsp)\n", info->opcodes[i].info, count );
322 i += 2;
323 break;
324 case UWOP_PUSH_MACHFRAME:
325 TRACE( "PUSH_MACHFRAME %u\n", info->opcodes[i].info );
326 break;
327 default:
328 FIXME( "unknown code %u\n", info->opcodes[i].code );
329 break;
333 handler_data = (union handler_data *)&info->opcodes[(info->count + 1) & ~1];
334 if (info->flags & UNW_FLAG_CHAININFO)
336 TRACE( " chained to function %p-%p\n",
337 (char *)base + handler_data->chain.BeginAddress,
338 (char *)base + handler_data->chain.EndAddress );
339 function = &handler_data->chain;
340 continue;
342 if (info->flags & (UNW_FLAG_EHANDLER | UNW_FLAG_UHANDLER))
343 TRACE( " handler %p data at %p\n",
344 (char *)base + handler_data->handler, &handler_data->handler + 1 );
345 break;
349 static void dump_scope_table( ULONG64 base, const SCOPE_TABLE *table )
351 unsigned int i;
353 TRACE( "scope table at %p\n", table );
354 for (i = 0; i < table->Count; i++)
355 TRACE( " %u: %lx-%lx handler %lx target %lx\n", i,
356 base + table->ScopeRecord[i].BeginAddress,
357 base + table->ScopeRecord[i].EndAddress,
358 base + table->ScopeRecord[i].HandlerAddress,
359 base + table->ScopeRecord[i].JumpTarget );
363 /***********************************************************************
364 * Definitions for Dwarf unwind tables
367 enum dwarf_call_frame_info
369 DW_CFA_advance_loc = 0x40,
370 DW_CFA_offset = 0x80,
371 DW_CFA_restore = 0xc0,
372 DW_CFA_nop = 0x00,
373 DW_CFA_set_loc = 0x01,
374 DW_CFA_advance_loc1 = 0x02,
375 DW_CFA_advance_loc2 = 0x03,
376 DW_CFA_advance_loc4 = 0x04,
377 DW_CFA_offset_extended = 0x05,
378 DW_CFA_restore_extended = 0x06,
379 DW_CFA_undefined = 0x07,
380 DW_CFA_same_value = 0x08,
381 DW_CFA_register = 0x09,
382 DW_CFA_remember_state = 0x0a,
383 DW_CFA_restore_state = 0x0b,
384 DW_CFA_def_cfa = 0x0c,
385 DW_CFA_def_cfa_register = 0x0d,
386 DW_CFA_def_cfa_offset = 0x0e,
387 DW_CFA_def_cfa_expression = 0x0f,
388 DW_CFA_expression = 0x10,
389 DW_CFA_offset_extended_sf = 0x11,
390 DW_CFA_def_cfa_sf = 0x12,
391 DW_CFA_def_cfa_offset_sf = 0x13,
392 DW_CFA_val_offset = 0x14,
393 DW_CFA_val_offset_sf = 0x15,
394 DW_CFA_val_expression = 0x16,
397 enum dwarf_operation
399 DW_OP_addr = 0x03,
400 DW_OP_deref = 0x06,
401 DW_OP_const1u = 0x08,
402 DW_OP_const1s = 0x09,
403 DW_OP_const2u = 0x0a,
404 DW_OP_const2s = 0x0b,
405 DW_OP_const4u = 0x0c,
406 DW_OP_const4s = 0x0d,
407 DW_OP_const8u = 0x0e,
408 DW_OP_const8s = 0x0f,
409 DW_OP_constu = 0x10,
410 DW_OP_consts = 0x11,
411 DW_OP_dup = 0x12,
412 DW_OP_drop = 0x13,
413 DW_OP_over = 0x14,
414 DW_OP_pick = 0x15,
415 DW_OP_swap = 0x16,
416 DW_OP_rot = 0x17,
417 DW_OP_xderef = 0x18,
418 DW_OP_abs = 0x19,
419 DW_OP_and = 0x1a,
420 DW_OP_div = 0x1b,
421 DW_OP_minus = 0x1c,
422 DW_OP_mod = 0x1d,
423 DW_OP_mul = 0x1e,
424 DW_OP_neg = 0x1f,
425 DW_OP_not = 0x20,
426 DW_OP_or = 0x21,
427 DW_OP_plus = 0x22,
428 DW_OP_plus_uconst = 0x23,
429 DW_OP_shl = 0x24,
430 DW_OP_shr = 0x25,
431 DW_OP_shra = 0x26,
432 DW_OP_xor = 0x27,
433 DW_OP_bra = 0x28,
434 DW_OP_eq = 0x29,
435 DW_OP_ge = 0x2a,
436 DW_OP_gt = 0x2b,
437 DW_OP_le = 0x2c,
438 DW_OP_lt = 0x2d,
439 DW_OP_ne = 0x2e,
440 DW_OP_skip = 0x2f,
441 DW_OP_lit0 = 0x30,
442 DW_OP_lit1 = 0x31,
443 DW_OP_lit2 = 0x32,
444 DW_OP_lit3 = 0x33,
445 DW_OP_lit4 = 0x34,
446 DW_OP_lit5 = 0x35,
447 DW_OP_lit6 = 0x36,
448 DW_OP_lit7 = 0x37,
449 DW_OP_lit8 = 0x38,
450 DW_OP_lit9 = 0x39,
451 DW_OP_lit10 = 0x3a,
452 DW_OP_lit11 = 0x3b,
453 DW_OP_lit12 = 0x3c,
454 DW_OP_lit13 = 0x3d,
455 DW_OP_lit14 = 0x3e,
456 DW_OP_lit15 = 0x3f,
457 DW_OP_lit16 = 0x40,
458 DW_OP_lit17 = 0x41,
459 DW_OP_lit18 = 0x42,
460 DW_OP_lit19 = 0x43,
461 DW_OP_lit20 = 0x44,
462 DW_OP_lit21 = 0x45,
463 DW_OP_lit22 = 0x46,
464 DW_OP_lit23 = 0x47,
465 DW_OP_lit24 = 0x48,
466 DW_OP_lit25 = 0x49,
467 DW_OP_lit26 = 0x4a,
468 DW_OP_lit27 = 0x4b,
469 DW_OP_lit28 = 0x4c,
470 DW_OP_lit29 = 0x4d,
471 DW_OP_lit30 = 0x4e,
472 DW_OP_lit31 = 0x4f,
473 DW_OP_reg0 = 0x50,
474 DW_OP_reg1 = 0x51,
475 DW_OP_reg2 = 0x52,
476 DW_OP_reg3 = 0x53,
477 DW_OP_reg4 = 0x54,
478 DW_OP_reg5 = 0x55,
479 DW_OP_reg6 = 0x56,
480 DW_OP_reg7 = 0x57,
481 DW_OP_reg8 = 0x58,
482 DW_OP_reg9 = 0x59,
483 DW_OP_reg10 = 0x5a,
484 DW_OP_reg11 = 0x5b,
485 DW_OP_reg12 = 0x5c,
486 DW_OP_reg13 = 0x5d,
487 DW_OP_reg14 = 0x5e,
488 DW_OP_reg15 = 0x5f,
489 DW_OP_reg16 = 0x60,
490 DW_OP_reg17 = 0x61,
491 DW_OP_reg18 = 0x62,
492 DW_OP_reg19 = 0x63,
493 DW_OP_reg20 = 0x64,
494 DW_OP_reg21 = 0x65,
495 DW_OP_reg22 = 0x66,
496 DW_OP_reg23 = 0x67,
497 DW_OP_reg24 = 0x68,
498 DW_OP_reg25 = 0x69,
499 DW_OP_reg26 = 0x6a,
500 DW_OP_reg27 = 0x6b,
501 DW_OP_reg28 = 0x6c,
502 DW_OP_reg29 = 0x6d,
503 DW_OP_reg30 = 0x6e,
504 DW_OP_reg31 = 0x6f,
505 DW_OP_breg0 = 0x70,
506 DW_OP_breg1 = 0x71,
507 DW_OP_breg2 = 0x72,
508 DW_OP_breg3 = 0x73,
509 DW_OP_breg4 = 0x74,
510 DW_OP_breg5 = 0x75,
511 DW_OP_breg6 = 0x76,
512 DW_OP_breg7 = 0x77,
513 DW_OP_breg8 = 0x78,
514 DW_OP_breg9 = 0x79,
515 DW_OP_breg10 = 0x7a,
516 DW_OP_breg11 = 0x7b,
517 DW_OP_breg12 = 0x7c,
518 DW_OP_breg13 = 0x7d,
519 DW_OP_breg14 = 0x7e,
520 DW_OP_breg15 = 0x7f,
521 DW_OP_breg16 = 0x80,
522 DW_OP_breg17 = 0x81,
523 DW_OP_breg18 = 0x82,
524 DW_OP_breg19 = 0x83,
525 DW_OP_breg20 = 0x84,
526 DW_OP_breg21 = 0x85,
527 DW_OP_breg22 = 0x86,
528 DW_OP_breg23 = 0x87,
529 DW_OP_breg24 = 0x88,
530 DW_OP_breg25 = 0x89,
531 DW_OP_breg26 = 0x8a,
532 DW_OP_breg27 = 0x8b,
533 DW_OP_breg28 = 0x8c,
534 DW_OP_breg29 = 0x8d,
535 DW_OP_breg30 = 0x8e,
536 DW_OP_breg31 = 0x8f,
537 DW_OP_regx = 0x90,
538 DW_OP_fbreg = 0x91,
539 DW_OP_bregx = 0x92,
540 DW_OP_piece = 0x93,
541 DW_OP_deref_size = 0x94,
542 DW_OP_xderef_size = 0x95,
543 DW_OP_nop = 0x96,
544 DW_OP_push_object_address = 0x97,
545 DW_OP_call2 = 0x98,
546 DW_OP_call4 = 0x99,
547 DW_OP_call_ref = 0x9a,
548 DW_OP_form_tls_address = 0x9b,
549 DW_OP_call_frame_cfa = 0x9c,
550 DW_OP_bit_piece = 0x9d,
551 DW_OP_lo_user = 0xe0,
552 DW_OP_hi_user = 0xff,
553 DW_OP_GNU_push_tls_address = 0xe0,
554 DW_OP_GNU_uninit = 0xf0,
555 DW_OP_GNU_encoded_addr = 0xf1,
558 #define DW_EH_PE_native 0x00
559 #define DW_EH_PE_leb128 0x01
560 #define DW_EH_PE_data2 0x02
561 #define DW_EH_PE_data4 0x03
562 #define DW_EH_PE_data8 0x04
563 #define DW_EH_PE_signed 0x08
564 #define DW_EH_PE_abs 0x00
565 #define DW_EH_PE_pcrel 0x10
566 #define DW_EH_PE_textrel 0x20
567 #define DW_EH_PE_datarel 0x30
568 #define DW_EH_PE_funcrel 0x40
569 #define DW_EH_PE_aligned 0x50
570 #define DW_EH_PE_indirect 0x80
571 #define DW_EH_PE_omit 0xff
573 struct dwarf_eh_bases
575 void *tbase;
576 void *dbase;
577 void *func;
580 struct dwarf_cie
582 unsigned int length;
583 int id;
584 unsigned char version;
585 unsigned char augmentation[1];
588 struct dwarf_fde
590 unsigned int length;
591 unsigned int cie_offset;
594 extern const struct dwarf_fde *_Unwind_Find_FDE (void *, struct dwarf_eh_bases *);
596 static unsigned char dwarf_get_u1( const unsigned char **p )
598 return *(*p)++;
601 static unsigned short dwarf_get_u2( const unsigned char **p )
603 unsigned int ret = (*p)[0] | ((*p)[1] << 8);
604 (*p) += 2;
605 return ret;
608 static unsigned int dwarf_get_u4( const unsigned char **p )
610 unsigned int ret = (*p)[0] | ((*p)[1] << 8) | ((*p)[2] << 16) | ((*p)[3] << 24);
611 (*p) += 4;
612 return ret;
615 static ULONG64 dwarf_get_u8( const unsigned char **p )
617 ULONG64 low = dwarf_get_u4( p );
618 ULONG64 high = dwarf_get_u4( p );
619 return low | (high << 32);
622 static ULONG_PTR dwarf_get_uleb128( const unsigned char **p )
624 ULONG_PTR ret = 0;
625 unsigned int shift = 0;
626 unsigned char byte;
630 byte = **p;
631 ret |= (ULONG_PTR)(byte & 0x7f) << shift;
632 shift += 7;
633 (*p)++;
634 } while (byte & 0x80);
635 return ret;
638 static LONG_PTR dwarf_get_sleb128( const unsigned char **p )
640 ULONG_PTR ret = 0;
641 unsigned int shift = 0;
642 unsigned char byte;
646 byte = **p;
647 ret |= (ULONG_PTR)(byte & 0x7f) << shift;
648 shift += 7;
649 (*p)++;
650 } while (byte & 0x80);
652 if ((shift < 8 * sizeof(ret)) && (byte & 0x40)) ret |= -((ULONG_PTR)1 << shift);
653 return ret;
656 static ULONG_PTR dwarf_get_ptr( const unsigned char **p, unsigned char encoding )
658 ULONG_PTR base;
660 if (encoding == DW_EH_PE_omit) return 0;
662 switch (encoding & 0xf0)
664 case DW_EH_PE_abs:
665 base = 0;
666 break;
667 case DW_EH_PE_pcrel:
668 base = (ULONG_PTR)*p;
669 break;
670 default:
671 FIXME( "unsupported encoding %02x\n", encoding );
672 return 0;
675 switch (encoding & 0x0f)
677 case DW_EH_PE_native:
678 return base + dwarf_get_u8( p );
679 case DW_EH_PE_leb128:
680 return base + dwarf_get_uleb128( p );
681 case DW_EH_PE_data2:
682 return base + dwarf_get_u2( p );
683 case DW_EH_PE_data4:
684 return base + dwarf_get_u4( p );
685 case DW_EH_PE_data8:
686 return base + dwarf_get_u8( p );
687 case DW_EH_PE_signed|DW_EH_PE_leb128:
688 return base + dwarf_get_sleb128( p );
689 case DW_EH_PE_signed|DW_EH_PE_data2:
690 return base + (signed short)dwarf_get_u2( p );
691 case DW_EH_PE_signed|DW_EH_PE_data4:
692 return base + (signed int)dwarf_get_u4( p );
693 case DW_EH_PE_signed|DW_EH_PE_data8:
694 return base + (LONG64)dwarf_get_u8( p );
695 default:
696 FIXME( "unsupported encoding %02x\n", encoding );
697 return 0;
701 enum reg_rule
703 RULE_UNSET, /* not set at all */
704 RULE_UNDEFINED, /* undefined value */
705 RULE_SAME, /* same value as previous frame */
706 RULE_CFA_OFFSET, /* stored at cfa offset */
707 RULE_OTHER_REG, /* stored in other register */
708 RULE_EXPRESSION, /* address specified by expression */
709 RULE_VAL_EXPRESSION /* value specified by expression */
712 #define NB_FRAME_REGS 41
714 struct frame_info
716 ULONG_PTR ip;
717 ULONG_PTR code_align;
718 LONG_PTR data_align;
719 ULONG_PTR cfa_offset;
720 enum reg_rule cfa_rule;
721 unsigned char cfa_reg;
722 unsigned char retaddr_reg;
723 unsigned char fde_encoding;
724 unsigned char signal_frame;
725 enum reg_rule rules[NB_FRAME_REGS];
726 ULONG64 regs[NB_FRAME_REGS];
729 static const char *dwarf_reg_names[NB_FRAME_REGS] =
731 /* 0-7 */ "%rax", "%rdx", "%rcx", "%rbx", "%rsi", "%rdi", "%rbp", "%rsp",
732 /* 8-16 */ "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15", "%rip",
733 /* 17-24 */ "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7",
734 /* 25-32 */ "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm12", "%xmm13", "%xmm14", "%xmm15",
735 /* 33-40 */ "%st0", "%st1", "%st2", "%st3", "%st4", "%st5", "%st6", "%st7"
738 static int valid_reg( ULONG_PTR reg )
740 if (reg >= NB_FRAME_REGS) FIXME( "unsupported reg %lx\n", reg );
741 return (reg < NB_FRAME_REGS);
744 static void execute_cfa_instructions( const unsigned char *ptr, const unsigned char *end,
745 ULONG_PTR last_ip, struct frame_info *info )
747 while (ptr < end && info->ip < last_ip + info->signal_frame)
749 enum dwarf_call_frame_info op = *ptr++;
751 if (op & 0xc0)
753 switch (op & 0xc0)
755 case DW_CFA_advance_loc:
757 ULONG_PTR offset = (op & 0x3f) * info->code_align;
758 TRACE( "%lx: DW_CFA_advance_loc %lu\n", info->ip, offset );
759 info->ip += offset;
760 break;
762 case DW_CFA_offset:
764 ULONG_PTR reg = op & 0x3f;
765 LONG_PTR offset = dwarf_get_uleb128( &ptr ) * info->data_align;
766 if (!valid_reg( reg )) break;
767 TRACE( "%lx: DW_CFA_offset %s, %ld\n", info->ip, dwarf_reg_names[reg], offset );
768 info->regs[reg] = offset;
769 info->rules[reg] = RULE_CFA_OFFSET;
770 break;
772 case DW_CFA_restore:
774 ULONG_PTR reg = op & 0x3f;
775 if (!valid_reg( reg )) break;
776 TRACE( "%lx: DW_CFA_restore %s\n", info->ip, dwarf_reg_names[reg] );
777 info->rules[reg] = RULE_UNSET;
778 break;
782 else switch (op)
784 case DW_CFA_nop:
785 break;
786 case DW_CFA_set_loc:
788 ULONG_PTR loc = dwarf_get_ptr( &ptr, info->fde_encoding );
789 TRACE( "%lx: DW_CFA_set_loc %lx\n", info->ip, loc );
790 info->ip = loc;
791 break;
793 case DW_CFA_advance_loc1:
795 ULONG_PTR offset = *ptr++ * info->code_align;
796 TRACE( "%lx: DW_CFA_advance_loc1 %lu\n", info->ip, offset );
797 info->ip += offset;
798 break;
800 case DW_CFA_advance_loc2:
802 ULONG_PTR offset = dwarf_get_u2( &ptr ) * info->code_align;
803 TRACE( "%lx: DW_CFA_advance_loc2 %lu\n", info->ip, offset );
804 info->ip += offset;
805 break;
807 case DW_CFA_advance_loc4:
809 ULONG_PTR offset = dwarf_get_u4( &ptr ) * info->code_align;
810 TRACE( "%lx: DW_CFA_advance_loc4 %lu\n", info->ip, offset );
811 info->ip += offset;
812 break;
814 case DW_CFA_offset_extended:
815 case DW_CFA_offset_extended_sf:
817 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
818 LONG_PTR offset = (op == DW_CFA_offset_extended) ? dwarf_get_uleb128( &ptr ) * info->data_align
819 : dwarf_get_sleb128( &ptr ) * info->data_align;
820 if (!valid_reg( reg )) break;
821 TRACE( "%lx: DW_CFA_offset_extended %s, %ld\n", info->ip, dwarf_reg_names[reg], offset );
822 info->regs[reg] = offset;
823 info->rules[reg] = RULE_CFA_OFFSET;
824 break;
826 case DW_CFA_restore_extended:
828 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
829 if (!valid_reg( reg )) break;
830 TRACE( "%lx: DW_CFA_restore_extended %s\n", info->ip, dwarf_reg_names[reg] );
831 info->rules[reg] = RULE_UNSET;
832 break;
834 case DW_CFA_undefined:
836 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
837 if (!valid_reg( reg )) break;
838 TRACE( "%lx: DW_CFA_undefined %s\n", info->ip, dwarf_reg_names[reg] );
839 info->rules[reg] = RULE_UNDEFINED;
840 break;
842 case DW_CFA_same_value:
844 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
845 if (!valid_reg( reg )) break;
846 TRACE( "%lx: DW_CFA_same_value %s\n", info->ip, dwarf_reg_names[reg] );
847 info->regs[reg] = reg;
848 info->rules[reg] = RULE_SAME;
849 break;
851 case DW_CFA_register:
853 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
854 ULONG_PTR reg2 = dwarf_get_uleb128( &ptr );
855 if (!valid_reg( reg ) || !valid_reg( reg2 )) break;
856 TRACE( "%lx: DW_CFA_register %s == %s\n", info->ip, dwarf_reg_names[reg], dwarf_reg_names[reg2] );
857 info->regs[reg] = reg2;
858 info->rules[reg] = RULE_OTHER_REG;
859 break;
861 case DW_CFA_remember_state:
862 FIXME( "%lx: DW_CFA_remember_state not implemented\n", info->ip );
863 break;
864 case DW_CFA_restore_state:
865 FIXME( "%lx: DW_CFA_restore_state not implemented\n", info->ip );
866 break;
867 case DW_CFA_def_cfa:
868 case DW_CFA_def_cfa_sf:
870 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
871 ULONG_PTR offset = (op == DW_CFA_def_cfa) ? dwarf_get_uleb128( &ptr )
872 : dwarf_get_sleb128( &ptr ) * info->data_align;
873 if (!valid_reg( reg )) break;
874 TRACE( "%lx: DW_CFA_def_cfa %s, %lu\n", info->ip, dwarf_reg_names[reg], offset );
875 info->cfa_reg = reg;
876 info->cfa_offset = offset;
877 info->cfa_rule = RULE_CFA_OFFSET;
878 break;
880 case DW_CFA_def_cfa_register:
882 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
883 if (!valid_reg( reg )) break;
884 TRACE( "%lx: DW_CFA_def_cfa_register %s\n", info->ip, dwarf_reg_names[reg] );
885 info->cfa_reg = reg;
886 info->cfa_rule = RULE_CFA_OFFSET;
887 break;
889 case DW_CFA_def_cfa_offset:
890 case DW_CFA_def_cfa_offset_sf:
892 ULONG_PTR offset = (op == DW_CFA_def_cfa_offset) ? dwarf_get_uleb128( &ptr )
893 : dwarf_get_sleb128( &ptr ) * info->data_align;
894 TRACE( "%lx: DW_CFA_def_cfa_offset %lu\n", info->ip, offset );
895 info->cfa_offset = offset;
896 info->cfa_rule = RULE_CFA_OFFSET;
897 break;
899 case DW_CFA_def_cfa_expression:
901 ULONG_PTR expr = (ULONG_PTR)ptr;
902 ULONG_PTR len = dwarf_get_uleb128( &ptr );
903 TRACE( "%lx: DW_CFA_def_cfa_expression %lx-%lx\n", info->ip, expr, expr+len );
904 info->cfa_offset = expr;
905 info->cfa_rule = RULE_VAL_EXPRESSION;
906 ptr += len;
907 break;
909 case DW_CFA_expression:
910 case DW_CFA_val_expression:
912 ULONG_PTR reg = dwarf_get_uleb128( &ptr );
913 ULONG_PTR expr = (ULONG_PTR)ptr;
914 ULONG_PTR len = dwarf_get_uleb128( &ptr );
915 if (!valid_reg( reg )) break;
916 TRACE( "%lx: DW_CFA_%sexpression %s %lx-%lx\n",
917 info->ip, (op == DW_CFA_expression) ? "" : "val_", dwarf_reg_names[reg], expr, expr+len );
918 info->regs[reg] = expr;
919 info->rules[reg] = (op == DW_CFA_expression) ? RULE_EXPRESSION : RULE_VAL_EXPRESSION;
920 ptr += len;
921 break;
923 default:
924 FIXME( "%lx: unknown CFA opcode %02x\n", info->ip, op );
925 break;
930 /* retrieve a context register from its dwarf number */
931 static void *get_context_reg( CONTEXT *context, ULONG_PTR dw_reg )
933 switch (dw_reg)
935 case 0: return &context->Rax;
936 case 1: return &context->Rdx;
937 case 2: return &context->Rcx;
938 case 3: return &context->Rbx;
939 case 4: return &context->Rsi;
940 case 5: return &context->Rdi;
941 case 6: return &context->Rbp;
942 case 7: return &context->Rsp;
943 case 8: return &context->R8;
944 case 9: return &context->R9;
945 case 10: return &context->R10;
946 case 11: return &context->R11;
947 case 12: return &context->R12;
948 case 13: return &context->R13;
949 case 14: return &context->R14;
950 case 15: return &context->R15;
951 case 16: return &context->Rip;
952 case 17: return &context->u.s.Xmm0;
953 case 18: return &context->u.s.Xmm1;
954 case 19: return &context->u.s.Xmm2;
955 case 20: return &context->u.s.Xmm3;
956 case 21: return &context->u.s.Xmm4;
957 case 22: return &context->u.s.Xmm5;
958 case 23: return &context->u.s.Xmm6;
959 case 24: return &context->u.s.Xmm7;
960 case 25: return &context->u.s.Xmm8;
961 case 26: return &context->u.s.Xmm9;
962 case 27: return &context->u.s.Xmm10;
963 case 28: return &context->u.s.Xmm11;
964 case 29: return &context->u.s.Xmm12;
965 case 30: return &context->u.s.Xmm13;
966 case 31: return &context->u.s.Xmm14;
967 case 32: return &context->u.s.Xmm15;
968 case 33: return &context->u.s.Legacy[0];
969 case 34: return &context->u.s.Legacy[1];
970 case 35: return &context->u.s.Legacy[2];
971 case 36: return &context->u.s.Legacy[3];
972 case 37: return &context->u.s.Legacy[4];
973 case 38: return &context->u.s.Legacy[5];
974 case 39: return &context->u.s.Legacy[6];
975 case 40: return &context->u.s.Legacy[7];
976 default: return NULL;
980 /* set a context register from its dwarf number */
981 static void set_context_reg( CONTEXT *context, ULONG_PTR dw_reg, void *val )
983 switch (dw_reg)
985 case 0: context->Rax = *(ULONG64 *)val; break;
986 case 1: context->Rdx = *(ULONG64 *)val; break;
987 case 2: context->Rcx = *(ULONG64 *)val; break;
988 case 3: context->Rbx = *(ULONG64 *)val; break;
989 case 4: context->Rsi = *(ULONG64 *)val; break;
990 case 5: context->Rdi = *(ULONG64 *)val; break;
991 case 6: context->Rbp = *(ULONG64 *)val; break;
992 case 7: context->Rsp = *(ULONG64 *)val; break;
993 case 8: context->R8 = *(ULONG64 *)val; break;
994 case 9: context->R9 = *(ULONG64 *)val; break;
995 case 10: context->R10 = *(ULONG64 *)val; break;
996 case 11: context->R11 = *(ULONG64 *)val; break;
997 case 12: context->R12 = *(ULONG64 *)val; break;
998 case 13: context->R13 = *(ULONG64 *)val; break;
999 case 14: context->R14 = *(ULONG64 *)val; break;
1000 case 15: context->R15 = *(ULONG64 *)val; break;
1001 case 16: context->Rip = *(ULONG64 *)val; break;
1002 case 17: context->u.s.Xmm0 = *(M128A *)val; break;
1003 case 18: context->u.s.Xmm1 = *(M128A *)val; break;
1004 case 19: context->u.s.Xmm2 = *(M128A *)val; break;
1005 case 20: context->u.s.Xmm3 = *(M128A *)val; break;
1006 case 21: context->u.s.Xmm4 = *(M128A *)val; break;
1007 case 22: context->u.s.Xmm5 = *(M128A *)val; break;
1008 case 23: context->u.s.Xmm6 = *(M128A *)val; break;
1009 case 24: context->u.s.Xmm7 = *(M128A *)val; break;
1010 case 25: context->u.s.Xmm8 = *(M128A *)val; break;
1011 case 26: context->u.s.Xmm9 = *(M128A *)val; break;
1012 case 27: context->u.s.Xmm10 = *(M128A *)val; break;
1013 case 28: context->u.s.Xmm11 = *(M128A *)val; break;
1014 case 29: context->u.s.Xmm12 = *(M128A *)val; break;
1015 case 30: context->u.s.Xmm13 = *(M128A *)val; break;
1016 case 31: context->u.s.Xmm14 = *(M128A *)val; break;
1017 case 32: context->u.s.Xmm15 = *(M128A *)val; break;
1018 case 33: context->u.s.Legacy[0] = *(M128A *)val; break;
1019 case 34: context->u.s.Legacy[1] = *(M128A *)val; break;
1020 case 35: context->u.s.Legacy[2] = *(M128A *)val; break;
1021 case 36: context->u.s.Legacy[3] = *(M128A *)val; break;
1022 case 37: context->u.s.Legacy[4] = *(M128A *)val; break;
1023 case 38: context->u.s.Legacy[5] = *(M128A *)val; break;
1024 case 39: context->u.s.Legacy[6] = *(M128A *)val; break;
1025 case 40: context->u.s.Legacy[7] = *(M128A *)val; break;
1029 static ULONG_PTR eval_expression( const unsigned char *p, CONTEXT *context )
1031 ULONG_PTR reg, tmp, stack[64];
1032 int sp = -1;
1033 ULONG_PTR len = dwarf_get_uleb128(&p);
1034 const unsigned char *end = p + len;
1036 while (p < end)
1038 unsigned char opcode = dwarf_get_u1(&p);
1040 if (opcode >= DW_OP_lit0 && opcode <= DW_OP_lit31)
1041 stack[++sp] = opcode - DW_OP_lit0;
1042 else if (opcode >= DW_OP_reg0 && opcode <= DW_OP_reg31)
1043 stack[++sp] = *(ULONG_PTR *)get_context_reg( context, opcode - DW_OP_reg0 );
1044 else if (opcode >= DW_OP_breg0 && opcode <= DW_OP_breg31)
1045 stack[++sp] = *(ULONG_PTR *)get_context_reg( context, opcode - DW_OP_breg0 ) + dwarf_get_sleb128(&p);
1046 else switch (opcode)
1048 case DW_OP_nop: break;
1049 case DW_OP_addr: stack[++sp] = dwarf_get_u8(&p); break;
1050 case DW_OP_const1u: stack[++sp] = dwarf_get_u1(&p); break;
1051 case DW_OP_const1s: stack[++sp] = (signed char)dwarf_get_u1(&p); break;
1052 case DW_OP_const2u: stack[++sp] = dwarf_get_u2(&p); break;
1053 case DW_OP_const2s: stack[++sp] = (short)dwarf_get_u2(&p); break;
1054 case DW_OP_const4u: stack[++sp] = dwarf_get_u4(&p); break;
1055 case DW_OP_const4s: stack[++sp] = (signed int)dwarf_get_u4(&p); break;
1056 case DW_OP_const8u: stack[++sp] = dwarf_get_u8(&p); break;
1057 case DW_OP_const8s: stack[++sp] = (LONG_PTR)dwarf_get_u8(&p); break;
1058 case DW_OP_constu: stack[++sp] = dwarf_get_uleb128(&p); break;
1059 case DW_OP_consts: stack[++sp] = dwarf_get_sleb128(&p); break;
1060 case DW_OP_deref: stack[sp] = *(ULONG_PTR *)stack[sp]; break;
1061 case DW_OP_dup: stack[sp + 1] = stack[sp]; sp++; break;
1062 case DW_OP_drop: sp--; break;
1063 case DW_OP_over: stack[sp + 1] = stack[sp - 1]; sp++; break;
1064 case DW_OP_pick: stack[sp + 1] = stack[sp - dwarf_get_u1(&p)]; sp++; break;
1065 case DW_OP_swap: tmp = stack[sp]; stack[sp] = stack[sp-1]; stack[sp-1] = tmp; break;
1066 case DW_OP_rot: tmp = stack[sp]; stack[sp] = stack[sp-1]; stack[sp-1] = stack[sp-2]; stack[sp-2] = tmp; break;
1067 case DW_OP_abs: stack[sp] = labs(stack[sp]); break;
1068 case DW_OP_neg: stack[sp] = -stack[sp]; break;
1069 case DW_OP_not: stack[sp] = ~stack[sp]; break;
1070 case DW_OP_and: stack[sp-1] &= stack[sp]; sp--; break;
1071 case DW_OP_or: stack[sp-1] |= stack[sp]; sp--; break;
1072 case DW_OP_minus: stack[sp-1] -= stack[sp]; sp--; break;
1073 case DW_OP_mul: stack[sp-1] *= stack[sp]; sp--; break;
1074 case DW_OP_plus: stack[sp-1] += stack[sp]; sp--; break;
1075 case DW_OP_xor: stack[sp-1] ^= stack[sp]; sp--; break;
1076 case DW_OP_shl: stack[sp-1] <<= stack[sp]; sp--; break;
1077 case DW_OP_shr: stack[sp-1] >>= stack[sp]; sp--; break;
1078 case DW_OP_plus_uconst: stack[sp] += dwarf_get_uleb128(&p); break;
1079 case DW_OP_shra: stack[sp-1] = (LONG_PTR)stack[sp-1] / (1 << stack[sp]); sp--; break;
1080 case DW_OP_div: stack[sp-1] = (LONG_PTR)stack[sp-1] / (LONG_PTR)stack[sp]; sp--; break;
1081 case DW_OP_mod: stack[sp-1] = (LONG_PTR)stack[sp-1] % (LONG_PTR)stack[sp]; sp--; break;
1082 case DW_OP_ge: stack[sp-1] = ((LONG_PTR)stack[sp-1] >= (LONG_PTR)stack[sp]); sp--; break;
1083 case DW_OP_gt: stack[sp-1] = ((LONG_PTR)stack[sp-1] > (LONG_PTR)stack[sp]); sp--; break;
1084 case DW_OP_le: stack[sp-1] = ((LONG_PTR)stack[sp-1] <= (LONG_PTR)stack[sp]); sp--; break;
1085 case DW_OP_lt: stack[sp-1] = ((LONG_PTR)stack[sp-1] < (LONG_PTR)stack[sp]); sp--; break;
1086 case DW_OP_eq: stack[sp-1] = (stack[sp-1] == stack[sp]); sp--; break;
1087 case DW_OP_ne: stack[sp-1] = (stack[sp-1] != stack[sp]); sp--; break;
1088 case DW_OP_skip: tmp = (short)dwarf_get_u2(&p); p += tmp; break;
1089 case DW_OP_bra: tmp = (short)dwarf_get_u2(&p); if (!stack[sp--]) p += tmp; break;
1090 case DW_OP_GNU_encoded_addr: tmp = *p++; stack[++sp] = dwarf_get_ptr( &p, tmp ); break;
1091 case DW_OP_regx: stack[++sp] = *(ULONG_PTR *)get_context_reg( context, dwarf_get_uleb128(&p) ); break;
1092 case DW_OP_bregx:
1093 reg = dwarf_get_uleb128(&p);
1094 tmp = dwarf_get_sleb128(&p);
1095 stack[++sp] = *(ULONG_PTR *)get_context_reg( context, reg ) + tmp;
1096 break;
1097 case DW_OP_deref_size:
1098 switch (*p++)
1100 case 1: stack[sp] = *(unsigned char *)stack[sp]; break;
1101 case 2: stack[sp] = *(unsigned short *)stack[sp]; break;
1102 case 4: stack[sp] = *(unsigned int *)stack[sp]; break;
1103 case 8: stack[sp] = *(ULONG_PTR *)stack[sp]; break;
1105 break;
1106 default:
1107 FIXME( "unhandled opcode %02x\n", opcode );
1110 return stack[sp];
1113 /* apply the computed frame info to the actual context */
1114 static void apply_frame_info( CONTEXT *context, struct frame_info *info )
1116 unsigned int i;
1117 ULONG_PTR cfa, value;
1118 CONTEXT new_context = *context;
1120 switch (info->cfa_rule)
1122 case RULE_EXPRESSION:
1123 cfa = *(ULONG_PTR *)eval_expression( (const unsigned char *)info->cfa_offset, context );
1124 break;
1125 case RULE_VAL_EXPRESSION:
1126 cfa = eval_expression( (const unsigned char *)info->cfa_offset, context );
1127 break;
1128 default:
1129 cfa = *(ULONG_PTR *)get_context_reg( context, info->cfa_reg ) + info->cfa_offset;
1130 break;
1132 if (!cfa) return;
1134 for (i = 0; i < NB_FRAME_REGS; i++)
1136 switch (info->rules[i])
1138 case RULE_UNSET:
1139 case RULE_UNDEFINED:
1140 case RULE_SAME:
1141 break;
1142 case RULE_CFA_OFFSET:
1143 set_context_reg( &new_context, i, (char *)cfa + info->regs[i] );
1144 break;
1145 case RULE_OTHER_REG:
1146 set_context_reg( &new_context, i, get_context_reg( context, info->regs[i] ));
1147 break;
1148 case RULE_EXPRESSION:
1149 value = eval_expression( (const unsigned char *)info->regs[i], context );
1150 set_context_reg( &new_context, i, (void *)value );
1151 break;
1152 case RULE_VAL_EXPRESSION:
1153 value = eval_expression( (const unsigned char *)info->regs[i], context );
1154 set_context_reg( &new_context, i, &value );
1155 break;
1158 new_context.Rsp = cfa;
1159 *context = new_context;
1163 /***********************************************************************
1164 * dwarf_virtual_unwind
1166 * Equivalent of RtlVirtualUnwind for builtin modules.
1168 static NTSTATUS dwarf_virtual_unwind( ULONG64 ip, ULONG64 *frame,CONTEXT *context,
1169 const struct dwarf_fde *fde, const struct dwarf_eh_bases *bases,
1170 PEXCEPTION_ROUTINE *handler, void **handler_data )
1172 const struct dwarf_cie *cie;
1173 const unsigned char *ptr, *augmentation, *end;
1174 ULONG_PTR len, code_end;
1175 struct frame_info info;
1176 int aug_z_format = 0;
1177 unsigned char lsda_encoding = DW_EH_PE_omit;
1179 memset( &info, 0, sizeof(info) );
1180 info.ip = (ULONG_PTR)bases->func;
1181 *handler = NULL;
1183 cie = (const struct dwarf_cie *)((const char *)&fde->cie_offset - fde->cie_offset);
1185 /* parse the CIE first */
1187 if (cie->version != 1)
1189 FIXME( "unknown CIE version %u at %p\n", cie->version, cie );
1190 return STATUS_INVALID_DISPOSITION;
1192 ptr = cie->augmentation + strlen((const char *)cie->augmentation) + 1;
1194 info.code_align = dwarf_get_uleb128( &ptr );
1195 info.data_align = dwarf_get_sleb128( &ptr );
1196 info.retaddr_reg = *ptr++;
1197 info.cfa_rule = RULE_CFA_OFFSET;
1199 TRACE( "function %lx base %p cie %p len %x id %x version %x aug '%s' code_align %lu data_align %ld retaddr %s\n",
1200 ip, bases->func, cie, cie->length, cie->id, cie->version, cie->augmentation,
1201 info.code_align, info.data_align, dwarf_reg_names[info.retaddr_reg] );
1203 end = NULL;
1204 for (augmentation = cie->augmentation; *augmentation; augmentation++)
1206 switch (*augmentation)
1208 case 'z':
1209 len = dwarf_get_uleb128( &ptr );
1210 end = ptr + len;
1211 aug_z_format = 1;
1212 continue;
1213 case 'L':
1214 lsda_encoding = *ptr++;
1215 continue;
1216 case 'P':
1218 unsigned char encoding = *ptr++;
1219 *handler = (void *)dwarf_get_ptr( &ptr, encoding );
1220 continue;
1222 case 'R':
1223 info.fde_encoding = *ptr++;
1224 continue;
1225 case 'S':
1226 info.signal_frame = 1;
1227 continue;
1229 FIXME( "unknown augmentation '%c'\n", *augmentation );
1230 if (!end) return STATUS_INVALID_DISPOSITION; /* cannot continue */
1231 break;
1233 if (end) ptr = end;
1235 end = (const unsigned char *)(&cie->length + 1) + cie->length;
1236 execute_cfa_instructions( ptr, end, ip, &info );
1238 ptr = (const unsigned char *)(fde + 1);
1239 info.ip = dwarf_get_ptr( &ptr, info.fde_encoding ); /* fde code start */
1240 code_end = info.ip + dwarf_get_ptr( &ptr, info.fde_encoding & 0x0f ); /* fde code length */
1242 if (aug_z_format) /* get length of augmentation data */
1244 len = dwarf_get_uleb128( &ptr );
1245 end = ptr + len;
1247 else end = NULL;
1249 *handler_data = (void *)dwarf_get_ptr( &ptr, lsda_encoding );
1250 if (end) ptr = end;
1252 end = (const unsigned char *)(&fde->length + 1) + fde->length;
1253 TRACE( "fde %p len %x personality %p lsda %p code %lx-%lx\n",
1254 fde, fde->length, *handler, *handler_data, info.ip, code_end );
1255 execute_cfa_instructions( ptr, end, ip, &info );
1256 apply_frame_info( context, &info );
1257 *frame = context->Rsp;
1259 TRACE( "next function rip=%016lx\n", context->Rip );
1260 TRACE( " rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
1261 context->Rax, context->Rbx, context->Rcx, context->Rdx );
1262 TRACE( " rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
1263 context->Rsi, context->Rdi, context->Rbp, context->Rsp );
1264 TRACE( " r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
1265 context->R8, context->R9, context->R10, context->R11 );
1266 TRACE( " r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
1267 context->R12, context->R13, context->R14, context->R15 );
1269 return STATUS_SUCCESS;
1273 /***********************************************************************
1274 * dispatch_signal
1276 static inline int dispatch_signal(unsigned int sig)
1278 if (handlers[sig] == NULL) return 0;
1279 return handlers[sig](sig);
1282 /***********************************************************************
1283 * get_signal_stack
1285 * Get the base of the signal stack for the current thread.
1287 static inline void *get_signal_stack(void)
1289 return (char *)NtCurrentTeb() + teb_size;
1292 /***********************************************************************
1293 * is_inside_signal_stack
1295 * Check if pointer is inside the signal stack.
1297 static inline int is_inside_signal_stack( void *ptr )
1299 return ((char *)ptr >= (char *)get_signal_stack() &&
1300 (char *)ptr < (char *)get_signal_stack() + signal_stack_size);
1303 /***********************************************************************
1304 * save_context
1306 * Set the register values from a sigcontext.
1308 static void save_context( CONTEXT *context, const ucontext_t *sigcontext )
1310 context->ContextFlags = CONTEXT_CONTROL | CONTEXT_INTEGER | CONTEXT_SEGMENTS;
1311 context->Rax = RAX_sig(sigcontext);
1312 context->Rcx = RCX_sig(sigcontext);
1313 context->Rdx = RDX_sig(sigcontext);
1314 context->Rbx = RBX_sig(sigcontext);
1315 context->Rsp = RSP_sig(sigcontext);
1316 context->Rbp = RBP_sig(sigcontext);
1317 context->Rsi = RSI_sig(sigcontext);
1318 context->Rdi = RDI_sig(sigcontext);
1319 context->R8 = R8_sig(sigcontext);
1320 context->R9 = R9_sig(sigcontext);
1321 context->R10 = R10_sig(sigcontext);
1322 context->R11 = R11_sig(sigcontext);
1323 context->R12 = R12_sig(sigcontext);
1324 context->R13 = R13_sig(sigcontext);
1325 context->R14 = R14_sig(sigcontext);
1326 context->R15 = R15_sig(sigcontext);
1327 context->Rip = RIP_sig(sigcontext);
1328 context->SegCs = CS_sig(sigcontext);
1329 context->SegFs = FS_sig(sigcontext);
1330 context->SegGs = GS_sig(sigcontext);
1331 context->EFlags = EFL_sig(sigcontext);
1332 #ifdef DS_sig
1333 context->SegDs = DS_sig(sigcontext);
1334 #else
1335 __asm__("movw %%ds,%0" : "=m" (context->SegDs));
1336 #endif
1337 #ifdef ES_sig
1338 context->SegEs = ES_sig(sigcontext);
1339 #else
1340 __asm__("movw %%es,%0" : "=m" (context->SegEs));
1341 #endif
1342 #ifdef SS_sig
1343 context->SegSs = SS_sig(sigcontext);
1344 #else
1345 __asm__("movw %%ss,%0" : "=m" (context->SegSs));
1346 #endif
1347 if (FPU_sig(sigcontext))
1349 context->ContextFlags |= CONTEXT_FLOATING_POINT;
1350 context->u.FltSave = *FPU_sig(sigcontext);
1351 context->MxCsr = context->u.FltSave.MxCsr;
1356 /***********************************************************************
1357 * restore_context
1359 * Build a sigcontext from the register values.
1361 static void restore_context( const CONTEXT *context, ucontext_t *sigcontext )
1363 RAX_sig(sigcontext) = context->Rax;
1364 RCX_sig(sigcontext) = context->Rcx;
1365 RDX_sig(sigcontext) = context->Rdx;
1366 RBX_sig(sigcontext) = context->Rbx;
1367 RSP_sig(sigcontext) = context->Rsp;
1368 RBP_sig(sigcontext) = context->Rbp;
1369 RSI_sig(sigcontext) = context->Rsi;
1370 RDI_sig(sigcontext) = context->Rdi;
1371 R8_sig(sigcontext) = context->R8;
1372 R9_sig(sigcontext) = context->R9;
1373 R10_sig(sigcontext) = context->R10;
1374 R11_sig(sigcontext) = context->R11;
1375 R12_sig(sigcontext) = context->R12;
1376 R13_sig(sigcontext) = context->R13;
1377 R14_sig(sigcontext) = context->R14;
1378 R15_sig(sigcontext) = context->R15;
1379 RIP_sig(sigcontext) = context->Rip;
1380 CS_sig(sigcontext) = context->SegCs;
1381 FS_sig(sigcontext) = context->SegFs;
1382 GS_sig(sigcontext) = context->SegGs;
1383 EFL_sig(sigcontext) = context->EFlags;
1384 #ifdef DS_sig
1385 DS_sig(sigcontext) = context->SegDs;
1386 #endif
1387 #ifdef ES_sig
1388 ES_sig(sigcontext) = context->SegEs;
1389 #endif
1390 #ifdef SS_sig
1391 SS_sig(sigcontext) = context->SegSs;
1392 #endif
1393 if (FPU_sig(sigcontext)) *FPU_sig(sigcontext) = context->u.FltSave;
1397 /***********************************************************************
1398 * RtlCaptureContext (NTDLL.@)
1400 void WINAPI __regs_RtlCaptureContext( CONTEXT *context, CONTEXT *regs )
1402 *context = *regs;
1404 DEFINE_REGS_ENTRYPOINT( RtlCaptureContext, 1 )
1407 /***********************************************************************
1408 * set_cpu_context
1410 * Set the new CPU context.
1412 void set_cpu_context( const CONTEXT *context )
1414 extern void CDECL __wine_restore_regs( const CONTEXT * ) DECLSPEC_NORETURN;
1415 __wine_restore_regs( context );
1419 /***********************************************************************
1420 * copy_context
1422 * Copy a register context according to the flags.
1424 void copy_context( CONTEXT *to, const CONTEXT *from, DWORD flags )
1426 flags &= ~CONTEXT_AMD64; /* get rid of CPU id */
1427 if (flags & CONTEXT_CONTROL)
1429 to->Rbp = from->Rbp;
1430 to->Rip = from->Rip;
1431 to->Rsp = from->Rsp;
1432 to->SegCs = from->SegCs;
1433 to->SegSs = from->SegSs;
1434 to->EFlags = from->EFlags;
1436 if (flags & CONTEXT_INTEGER)
1438 to->Rax = from->Rax;
1439 to->Rcx = from->Rcx;
1440 to->Rdx = from->Rdx;
1441 to->Rbx = from->Rbx;
1442 to->Rsi = from->Rsi;
1443 to->Rdi = from->Rdi;
1444 to->R8 = from->R8;
1445 to->R9 = from->R9;
1446 to->R10 = from->R10;
1447 to->R11 = from->R11;
1448 to->R12 = from->R12;
1449 to->R13 = from->R13;
1450 to->R14 = from->R14;
1451 to->R15 = from->R15;
1453 if (flags & CONTEXT_SEGMENTS)
1455 to->SegDs = from->SegDs;
1456 to->SegEs = from->SegEs;
1457 to->SegFs = from->SegFs;
1458 to->SegGs = from->SegGs;
1460 if (flags & CONTEXT_FLOATING_POINT)
1462 to->MxCsr = from->MxCsr;
1463 to->u.FltSave = from->u.FltSave;
1465 if (flags & CONTEXT_DEBUG_REGISTERS)
1467 to->Dr0 = from->Dr0;
1468 to->Dr1 = from->Dr1;
1469 to->Dr2 = from->Dr2;
1470 to->Dr3 = from->Dr3;
1471 to->Dr6 = from->Dr6;
1472 to->Dr7 = from->Dr7;
1477 /***********************************************************************
1478 * context_to_server
1480 * Convert a register context to the server format.
1482 NTSTATUS context_to_server( context_t *to, const CONTEXT *from )
1484 DWORD flags = from->ContextFlags & ~CONTEXT_AMD64; /* get rid of CPU id */
1486 memset( to, 0, sizeof(*to) );
1487 to->cpu = CPU_x86_64;
1489 if (flags & CONTEXT_CONTROL)
1491 to->flags |= SERVER_CTX_CONTROL;
1492 to->ctl.x86_64_regs.rbp = from->Rbp;
1493 to->ctl.x86_64_regs.rip = from->Rip;
1494 to->ctl.x86_64_regs.rsp = from->Rsp;
1495 to->ctl.x86_64_regs.cs = from->SegCs;
1496 to->ctl.x86_64_regs.ss = from->SegSs;
1497 to->ctl.x86_64_regs.flags = from->EFlags;
1499 if (flags & CONTEXT_INTEGER)
1501 to->flags |= SERVER_CTX_INTEGER;
1502 to->integer.x86_64_regs.rax = from->Rax;
1503 to->integer.x86_64_regs.rcx = from->Rcx;
1504 to->integer.x86_64_regs.rdx = from->Rdx;
1505 to->integer.x86_64_regs.rbx = from->Rbx;
1506 to->integer.x86_64_regs.rsi = from->Rsi;
1507 to->integer.x86_64_regs.rdi = from->Rdi;
1508 to->integer.x86_64_regs.r8 = from->R8;
1509 to->integer.x86_64_regs.r9 = from->R9;
1510 to->integer.x86_64_regs.r10 = from->R10;
1511 to->integer.x86_64_regs.r11 = from->R11;
1512 to->integer.x86_64_regs.r12 = from->R12;
1513 to->integer.x86_64_regs.r13 = from->R13;
1514 to->integer.x86_64_regs.r14 = from->R14;
1515 to->integer.x86_64_regs.r15 = from->R15;
1517 if (flags & CONTEXT_SEGMENTS)
1519 to->flags |= SERVER_CTX_SEGMENTS;
1520 to->seg.x86_64_regs.ds = from->SegDs;
1521 to->seg.x86_64_regs.es = from->SegEs;
1522 to->seg.x86_64_regs.fs = from->SegFs;
1523 to->seg.x86_64_regs.gs = from->SegGs;
1525 if (flags & CONTEXT_FLOATING_POINT)
1527 to->flags |= SERVER_CTX_FLOATING_POINT;
1528 memcpy( to->fp.x86_64_regs.fpregs, &from->u.FltSave, sizeof(to->fp.x86_64_regs.fpregs) );
1530 if (flags & CONTEXT_DEBUG_REGISTERS)
1532 to->flags |= SERVER_CTX_DEBUG_REGISTERS;
1533 to->debug.x86_64_regs.dr0 = from->Dr0;
1534 to->debug.x86_64_regs.dr1 = from->Dr1;
1535 to->debug.x86_64_regs.dr2 = from->Dr2;
1536 to->debug.x86_64_regs.dr3 = from->Dr3;
1537 to->debug.x86_64_regs.dr6 = from->Dr6;
1538 to->debug.x86_64_regs.dr7 = from->Dr7;
1540 return STATUS_SUCCESS;
1544 /***********************************************************************
1545 * context_from_server
1547 * Convert a register context from the server format.
1549 NTSTATUS context_from_server( CONTEXT *to, const context_t *from )
1551 if (from->cpu != CPU_x86_64) return STATUS_INVALID_PARAMETER;
1553 to->ContextFlags = CONTEXT_AMD64;
1554 if (from->flags & SERVER_CTX_CONTROL)
1556 to->ContextFlags |= CONTEXT_CONTROL;
1557 to->Rbp = from->ctl.x86_64_regs.rbp;
1558 to->Rip = from->ctl.x86_64_regs.rip;
1559 to->Rsp = from->ctl.x86_64_regs.rsp;
1560 to->SegCs = from->ctl.x86_64_regs.cs;
1561 to->SegSs = from->ctl.x86_64_regs.ss;
1562 to->EFlags = from->ctl.x86_64_regs.flags;
1565 if (from->flags & SERVER_CTX_INTEGER)
1567 to->ContextFlags |= CONTEXT_INTEGER;
1568 to->Rax = from->integer.x86_64_regs.rax;
1569 to->Rcx = from->integer.x86_64_regs.rcx;
1570 to->Rdx = from->integer.x86_64_regs.rdx;
1571 to->Rbx = from->integer.x86_64_regs.rbx;
1572 to->Rsi = from->integer.x86_64_regs.rsi;
1573 to->Rdi = from->integer.x86_64_regs.rdi;
1574 to->R8 = from->integer.x86_64_regs.r8;
1575 to->R9 = from->integer.x86_64_regs.r9;
1576 to->R10 = from->integer.x86_64_regs.r10;
1577 to->R11 = from->integer.x86_64_regs.r11;
1578 to->R12 = from->integer.x86_64_regs.r12;
1579 to->R13 = from->integer.x86_64_regs.r13;
1580 to->R14 = from->integer.x86_64_regs.r14;
1581 to->R15 = from->integer.x86_64_regs.r15;
1583 if (from->flags & SERVER_CTX_SEGMENTS)
1585 to->ContextFlags |= CONTEXT_SEGMENTS;
1586 to->SegDs = from->seg.x86_64_regs.ds;
1587 to->SegEs = from->seg.x86_64_regs.es;
1588 to->SegFs = from->seg.x86_64_regs.fs;
1589 to->SegGs = from->seg.x86_64_regs.gs;
1591 if (from->flags & SERVER_CTX_FLOATING_POINT)
1593 to->ContextFlags |= CONTEXT_FLOATING_POINT;
1594 memcpy( &to->u.FltSave, from->fp.x86_64_regs.fpregs, sizeof(from->fp.x86_64_regs.fpregs) );
1595 to->MxCsr = to->u.FltSave.MxCsr;
1597 if (from->flags & SERVER_CTX_DEBUG_REGISTERS)
1599 to->ContextFlags |= CONTEXT_DEBUG_REGISTERS;
1600 to->Dr0 = from->debug.x86_64_regs.dr0;
1601 to->Dr1 = from->debug.x86_64_regs.dr1;
1602 to->Dr2 = from->debug.x86_64_regs.dr2;
1603 to->Dr3 = from->debug.x86_64_regs.dr3;
1604 to->Dr6 = from->debug.x86_64_regs.dr6;
1605 to->Dr7 = from->debug.x86_64_regs.dr7;
1607 return STATUS_SUCCESS;
1611 extern void raise_func_trampoline( EXCEPTION_RECORD *rec, CONTEXT *context, raise_func func );
1612 __ASM_GLOBAL_FUNC( raise_func_trampoline,
1613 ".cfi_signal_frame\n\t"
1614 ".cfi_def_cfa %rbp,144\n\t" /* red zone + rip + rbp */
1615 ".cfi_rel_offset %rip,8\n\t"
1616 ".cfi_rel_offset %rbp,0\n\t"
1617 "call *%rdx\n\t"
1618 "int $3")
1620 /***********************************************************************
1621 * setup_exception
1623 * Setup a proper stack frame for the raise function, and modify the
1624 * sigcontext so that the return from the signal handler will call
1625 * the raise function.
1627 static EXCEPTION_RECORD *setup_exception( ucontext_t *sigcontext, raise_func func )
1629 struct stack_layout
1631 CONTEXT context;
1632 EXCEPTION_RECORD rec;
1633 ULONG64 rbp;
1634 ULONG64 rip;
1635 ULONG64 red_zone[16];
1636 } *stack;
1637 ULONG64 *rsp_ptr;
1638 DWORD exception_code = 0;
1640 stack = (struct stack_layout *)(RSP_sig(sigcontext) & ~15);
1642 /* stack sanity checks */
1644 if (is_inside_signal_stack( stack ))
1646 ERR( "nested exception on signal stack in thread %04x eip %016lx esp %016lx stack %p-%p\n",
1647 GetCurrentThreadId(), RIP_sig(sigcontext), RSP_sig(sigcontext),
1648 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
1649 abort_thread(1);
1652 if (stack - 1 > stack || /* check for overflow in subtraction */
1653 (char *)stack <= (char *)NtCurrentTeb()->DeallocationStack ||
1654 (char *)stack > (char *)NtCurrentTeb()->Tib.StackBase)
1656 WARN( "exception outside of stack limits in thread %04x eip %016lx esp %016lx stack %p-%p\n",
1657 GetCurrentThreadId(), RIP_sig(sigcontext), RSP_sig(sigcontext),
1658 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
1660 else if ((char *)(stack - 1) < (char *)NtCurrentTeb()->DeallocationStack + 4096)
1662 /* stack overflow on last page, unrecoverable */
1663 UINT diff = (char *)NtCurrentTeb()->DeallocationStack + 4096 - (char *)(stack - 1);
1664 ERR( "stack overflow %u bytes in thread %04x eip %016lx esp %016lx stack %p-%p-%p\n",
1665 diff, GetCurrentThreadId(), RIP_sig(sigcontext),
1666 RSP_sig(sigcontext), NtCurrentTeb()->DeallocationStack,
1667 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
1668 abort_thread(1);
1670 else if ((char *)(stack - 1) < (char *)NtCurrentTeb()->Tib.StackLimit)
1672 /* stack access below stack limit, may be recoverable */
1673 if (virtual_handle_stack_fault( stack - 1 )) exception_code = EXCEPTION_STACK_OVERFLOW;
1674 else
1676 UINT diff = (char *)NtCurrentTeb()->Tib.StackLimit - (char *)(stack - 1);
1677 ERR( "stack overflow %u bytes in thread %04x eip %016lx esp %016lx stack %p-%p-%p\n",
1678 diff, GetCurrentThreadId(), RIP_sig(sigcontext),
1679 RSP_sig(sigcontext), NtCurrentTeb()->DeallocationStack,
1680 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
1681 abort_thread(1);
1685 stack--; /* push the stack_layout structure */
1686 #if defined(VALGRIND_MAKE_MEM_UNDEFINED)
1687 VALGRIND_MAKE_MEM_UNDEFINED(stack, sizeof(*stack));
1688 #elif defined(VALGRIND_MAKE_WRITABLE)
1689 VALGRIND_MAKE_WRITABLE(stack, sizeof(*stack));
1690 #endif
1691 stack->rec.ExceptionRecord = NULL;
1692 stack->rec.ExceptionCode = exception_code;
1693 stack->rec.ExceptionFlags = EXCEPTION_CONTINUABLE;
1694 stack->rec.ExceptionAddress = (void *)RIP_sig(sigcontext);
1695 stack->rec.NumberParameters = 0;
1696 save_context( &stack->context, sigcontext );
1698 /* store return address and %rbp without aligning, so that the offset is fixed */
1699 rsp_ptr = (ULONG64 *)RSP_sig(sigcontext) - 16;
1700 *(--rsp_ptr) = RIP_sig(sigcontext);
1701 *(--rsp_ptr) = RBP_sig(sigcontext);
1703 /* now modify the sigcontext to return to the raise function */
1704 RIP_sig(sigcontext) = (ULONG_PTR)raise_func_trampoline;
1705 RDI_sig(sigcontext) = (ULONG_PTR)&stack->rec;
1706 RSI_sig(sigcontext) = (ULONG_PTR)&stack->context;
1707 RDX_sig(sigcontext) = (ULONG_PTR)func;
1708 RBP_sig(sigcontext) = (ULONG_PTR)rsp_ptr;
1709 RSP_sig(sigcontext) = (ULONG_PTR)stack;
1710 /* clear single-step, direction, and align check flag */
1711 EFL_sig(sigcontext) &= ~(0x100|0x400|0x40000);
1713 return &stack->rec;
1717 /**********************************************************************
1718 * find_function_info
1720 static RUNTIME_FUNCTION *find_function_info( ULONG64 pc, HMODULE module,
1721 RUNTIME_FUNCTION *func, ULONG size )
1723 int min = 0;
1724 int max = size/sizeof(*func) - 1;
1726 while (min <= max)
1728 int pos = (min + max) / 2;
1729 if ((char *)pc < (char *)module + func[pos].BeginAddress) max = pos - 1;
1730 else if ((char *)pc >= (char *)module + func[pos].EndAddress) min = pos + 1;
1731 else
1733 func += pos;
1734 while (func->UnwindData & 1) /* follow chained entry */
1735 func = (RUNTIME_FUNCTION *)((char *)module + (func->UnwindData & ~1));
1736 return func;
1739 return NULL;
1743 /**********************************************************************
1744 * call_handler
1746 * Call a single exception handler.
1747 * FIXME: Handle nested exceptions.
1749 static NTSTATUS call_handler( EXCEPTION_RECORD *rec, DISPATCHER_CONTEXT *dispatch, CONTEXT *orig_context )
1751 DWORD res;
1753 dispatch->ControlPc = dispatch->ContextRecord->Rip;
1755 TRACE( "calling handler %p (rec=%p, frame=0x%lx context=%p, dispatch=%p)\n",
1756 dispatch->LanguageHandler, rec, dispatch->EstablisherFrame, dispatch->ContextRecord, dispatch );
1757 res = dispatch->LanguageHandler( rec, dispatch->EstablisherFrame, dispatch->ContextRecord, dispatch );
1758 TRACE( "handler at %p returned %u\n", dispatch->LanguageHandler, res );
1760 switch (res)
1762 case ExceptionContinueExecution:
1763 if (rec->ExceptionFlags & EH_NONCONTINUABLE) return STATUS_NONCONTINUABLE_EXCEPTION;
1764 *orig_context = *dispatch->ContextRecord;
1765 return STATUS_SUCCESS;
1766 case ExceptionContinueSearch:
1767 break;
1768 case ExceptionNestedException:
1769 break;
1770 default:
1771 return STATUS_INVALID_DISPOSITION;
1773 return STATUS_UNHANDLED_EXCEPTION;
1777 /**********************************************************************
1778 * call_teb_handler
1780 * Call a single exception handler from the TEB chain.
1781 * FIXME: Handle nested exceptions.
1783 static NTSTATUS call_teb_handler( EXCEPTION_RECORD *rec, DISPATCHER_CONTEXT *dispatch,
1784 EXCEPTION_REGISTRATION_RECORD *teb_frame, CONTEXT *orig_context )
1786 EXCEPTION_REGISTRATION_RECORD *dispatcher;
1787 DWORD res;
1789 TRACE( "calling TEB handler %p (rec=%p, frame=%p context=%p, dispatcher=%p)\n",
1790 teb_frame->Handler, rec, teb_frame, dispatch->ContextRecord, &dispatcher );
1791 res = teb_frame->Handler( rec, teb_frame, dispatch->ContextRecord, &dispatcher );
1792 TRACE( "handler at %p returned %u\n", teb_frame->Handler, res );
1794 switch (res)
1796 case ExceptionContinueExecution:
1797 if (rec->ExceptionFlags & EH_NONCONTINUABLE) return STATUS_NONCONTINUABLE_EXCEPTION;
1798 *orig_context = *dispatch->ContextRecord;
1799 return STATUS_SUCCESS;
1800 case ExceptionContinueSearch:
1801 break;
1802 case ExceptionNestedException:
1803 break;
1804 default:
1805 return STATUS_INVALID_DISPOSITION;
1807 return STATUS_UNHANDLED_EXCEPTION;
1811 /**********************************************************************
1812 * call_stack_handlers
1814 * Call the stack handlers chain.
1816 static NTSTATUS call_stack_handlers( EXCEPTION_RECORD *rec, CONTEXT *orig_context )
1818 EXCEPTION_REGISTRATION_RECORD *teb_frame = NtCurrentTeb()->Tib.ExceptionList;
1819 UNWIND_HISTORY_TABLE table;
1820 RUNTIME_FUNCTION *dir;
1821 DISPATCHER_CONTEXT dispatch;
1822 CONTEXT context, new_context;
1823 LDR_MODULE *module;
1824 DWORD size;
1825 NTSTATUS status;
1827 context = *orig_context;
1828 dispatch.TargetIp = 0;
1829 dispatch.ContextRecord = &context;
1830 dispatch.HistoryTable = &table;
1831 dispatch.ScopeIndex = 0; /* FIXME */
1832 for (;;)
1834 new_context = context;
1836 /* FIXME: should use the history table to make things faster */
1838 dir = NULL;
1839 module = NULL;
1840 dispatch.ImageBase = 0;
1842 if (!LdrFindEntryForAddress( (void *)context.Rip, &module ))
1844 if (!(dir = RtlImageDirectoryEntryToData( module->BaseAddress, TRUE,
1845 IMAGE_DIRECTORY_ENTRY_EXCEPTION, &size )) &&
1846 !(module->Flags & LDR_WINE_INTERNAL))
1848 ERR( "module %s doesn't contain exception data, can't dispatch exception\n",
1849 debugstr_w(module->BaseDllName.Buffer) );
1850 break;
1852 dispatch.ImageBase = (ULONG64)module->BaseAddress;
1855 if (!dir)
1857 struct dwarf_eh_bases bases;
1858 const struct dwarf_fde *fde = _Unwind_Find_FDE( (void *)(context.Rip - 1), &bases );
1859 if (!fde)
1861 /* assume leaf function */
1862 context.Rip = *(ULONG64 *)context.Rsp;
1863 context.Rsp += sizeof(ULONG64);
1864 continue;
1866 status = dwarf_virtual_unwind( context.Rip, &dispatch.EstablisherFrame, &new_context,
1867 fde, &bases, &dispatch.LanguageHandler, &dispatch.HandlerData );
1868 if (status != STATUS_SUCCESS) return status;
1869 dispatch.FunctionEntry = NULL;
1870 if (dispatch.LanguageHandler && !module)
1872 FIXME( "calling personality routine in system library not supported yet\n" );
1873 dispatch.LanguageHandler = NULL;
1876 else
1878 if (!(dispatch.FunctionEntry = find_function_info( context.Rip, module->BaseAddress,
1879 dir, size )))
1881 /* leaf function */
1882 context.Rip = *(ULONG64 *)context.Rsp;
1883 context.Rsp += sizeof(ULONG64);
1884 continue;
1886 dispatch.LanguageHandler = RtlVirtualUnwind( UNW_FLAG_EHANDLER, dispatch.ImageBase,
1887 context.Rip, dispatch.FunctionEntry,
1888 &new_context, &dispatch.HandlerData,
1889 &dispatch.EstablisherFrame, NULL );
1892 if (!dispatch.EstablisherFrame) break;
1894 if ((dispatch.EstablisherFrame & 7) ||
1895 dispatch.EstablisherFrame < (ULONG64)NtCurrentTeb()->Tib.StackLimit ||
1896 dispatch.EstablisherFrame > (ULONG64)NtCurrentTeb()->Tib.StackBase)
1898 ERR( "invalid frame %lx (%p-%p)\n", dispatch.EstablisherFrame,
1899 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
1900 rec->ExceptionFlags |= EH_STACK_INVALID;
1901 break;
1904 if (dispatch.LanguageHandler)
1906 status = call_handler( rec, &dispatch, orig_context );
1907 if (status != STATUS_UNHANDLED_EXCEPTION) return status;
1909 /* hack: call wine handlers registered in the tib list */
1910 else while ((ULONG64)teb_frame < new_context.Rsp)
1912 TRACE( "found wine frame %p rsp %lx handler %p\n",
1913 teb_frame, new_context.Rsp, teb_frame->Handler );
1914 dispatch.EstablisherFrame = (ULONG64)teb_frame;
1915 context = *orig_context;
1916 status = call_teb_handler( rec, &dispatch, teb_frame, orig_context );
1917 if (status != STATUS_UNHANDLED_EXCEPTION) return status;
1918 teb_frame = teb_frame->Prev;
1921 if (new_context.Rsp == (ULONG64)NtCurrentTeb()->Tib.StackBase) break;
1922 context = new_context;
1924 return STATUS_UNHANDLED_EXCEPTION;
1928 /*******************************************************************
1929 * raise_exception
1931 * Implementation of NtRaiseException.
1933 static NTSTATUS raise_exception( EXCEPTION_RECORD *rec, CONTEXT *context, BOOL first_chance )
1935 NTSTATUS status;
1937 if (first_chance)
1939 DWORD c;
1941 TRACE( "code=%x flags=%x addr=%p ip=%lx tid=%04x\n",
1942 rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress,
1943 context->Rip, GetCurrentThreadId() );
1944 for (c = 0; c < min( EXCEPTION_MAXIMUM_PARAMETERS, rec->NumberParameters ); c++)
1945 TRACE( " info[%d]=%08lx\n", c, rec->ExceptionInformation[c] );
1946 if (rec->ExceptionCode == EXCEPTION_WINE_STUB)
1948 if (rec->ExceptionInformation[1] >> 16)
1949 MESSAGE( "wine: Call from %p to unimplemented function %s.%s, aborting\n",
1950 rec->ExceptionAddress,
1951 (char*)rec->ExceptionInformation[0], (char*)rec->ExceptionInformation[1] );
1952 else
1953 MESSAGE( "wine: Call from %p to unimplemented function %s.%ld, aborting\n",
1954 rec->ExceptionAddress,
1955 (char*)rec->ExceptionInformation[0], rec->ExceptionInformation[1] );
1957 else
1959 TRACE(" rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
1960 context->Rax, context->Rbx, context->Rcx, context->Rdx );
1961 TRACE(" rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
1962 context->Rsi, context->Rdi, context->Rbp, context->Rsp );
1963 TRACE(" r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
1964 context->R8, context->R9, context->R10, context->R11 );
1965 TRACE(" r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
1966 context->R12, context->R13, context->R14, context->R15 );
1968 status = send_debug_event( rec, TRUE, context );
1969 if (status == DBG_CONTINUE || status == DBG_EXCEPTION_HANDLED)
1970 return STATUS_SUCCESS;
1972 if (call_vectored_handlers( rec, context ) == EXCEPTION_CONTINUE_EXECUTION)
1973 return STATUS_SUCCESS;
1975 if ((status = call_stack_handlers( rec, context )) != STATUS_UNHANDLED_EXCEPTION)
1976 return status;
1979 /* last chance exception */
1981 status = send_debug_event( rec, FALSE, context );
1982 if (status != DBG_CONTINUE)
1984 if (rec->ExceptionFlags & EH_STACK_INVALID)
1985 ERR("Exception frame is not in stack limits => unable to dispatch exception.\n");
1986 else if (rec->ExceptionCode == STATUS_NONCONTINUABLE_EXCEPTION)
1987 ERR("Process attempted to continue execution after noncontinuable exception.\n");
1988 else
1989 ERR("Unhandled exception code %x flags %x addr %p\n",
1990 rec->ExceptionCode, rec->ExceptionFlags, rec->ExceptionAddress );
1991 NtTerminateProcess( NtCurrentProcess(), rec->ExceptionCode );
1993 return STATUS_SUCCESS;
1997 /**********************************************************************
1998 * raise_segv_exception
2000 static void raise_segv_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
2002 NTSTATUS status;
2004 switch(rec->ExceptionCode)
2006 case EXCEPTION_ACCESS_VIOLATION:
2007 if (rec->NumberParameters == 2)
2009 if (!(rec->ExceptionCode = virtual_handle_fault( (void *)rec->ExceptionInformation[1],
2010 rec->ExceptionInformation[0] )))
2011 set_cpu_context( context );
2013 break;
2015 status = raise_exception( rec, context, TRUE );
2016 if (status) raise_status( status, rec );
2017 set_cpu_context( context );
2021 /**********************************************************************
2022 * raise_generic_exception
2024 * Generic raise function for exceptions that don't need special treatment.
2026 static void raise_generic_exception( EXCEPTION_RECORD *rec, CONTEXT *context )
2028 NTSTATUS status = raise_exception( rec, context, TRUE );
2029 if (status) raise_status( status, rec );
2030 set_cpu_context( context );
2034 /**********************************************************************
2035 * segv_handler
2037 * Handler for SIGSEGV and related errors.
2039 static void segv_handler( int signal, siginfo_t *siginfo, void *sigcontext )
2041 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_segv_exception );
2042 ucontext_t *ucontext = sigcontext;
2044 switch(TRAP_sig(ucontext))
2046 case TRAP_x86_OFLOW: /* Overflow exception */
2047 rec->ExceptionCode = EXCEPTION_INT_OVERFLOW;
2048 break;
2049 case TRAP_x86_BOUND: /* Bound range exception */
2050 rec->ExceptionCode = EXCEPTION_ARRAY_BOUNDS_EXCEEDED;
2051 break;
2052 case TRAP_x86_PRIVINFLT: /* Invalid opcode exception */
2053 rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
2054 break;
2055 case TRAP_x86_STKFLT: /* Stack fault */
2056 rec->ExceptionCode = EXCEPTION_STACK_OVERFLOW;
2057 break;
2058 case TRAP_x86_SEGNPFLT: /* Segment not present exception */
2059 case TRAP_x86_PROTFLT: /* General protection fault */
2060 case TRAP_x86_UNKNOWN: /* Unknown fault code */
2061 rec->ExceptionCode = ERROR_sig(ucontext) ? EXCEPTION_ACCESS_VIOLATION : EXCEPTION_PRIV_INSTRUCTION;
2062 rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
2063 break;
2064 case TRAP_x86_PAGEFLT: /* Page fault */
2065 rec->ExceptionCode = EXCEPTION_ACCESS_VIOLATION;
2066 rec->NumberParameters = 2;
2067 rec->ExceptionInformation[0] = (ERROR_sig(ucontext) & 2) != 0;
2068 rec->ExceptionInformation[1] = (ULONG_PTR)siginfo->si_addr;
2069 break;
2070 case TRAP_x86_ALIGNFLT: /* Alignment check exception */
2071 rec->ExceptionCode = EXCEPTION_DATATYPE_MISALIGNMENT;
2072 break;
2073 default:
2074 ERR( "Got unexpected trap %ld\n", TRAP_sig(ucontext) );
2075 /* fall through */
2076 case TRAP_x86_NMI: /* NMI interrupt */
2077 case TRAP_x86_DNA: /* Device not available exception */
2078 case TRAP_x86_DOUBLEFLT: /* Double fault exception */
2079 case TRAP_x86_TSSFLT: /* Invalid TSS exception */
2080 case TRAP_x86_MCHK: /* Machine check exception */
2081 case TRAP_x86_CACHEFLT: /* Cache flush exception */
2082 rec->ExceptionCode = EXCEPTION_ILLEGAL_INSTRUCTION;
2083 break;
2087 /**********************************************************************
2088 * trap_handler
2090 * Handler for SIGTRAP.
2092 static void trap_handler( int signal, siginfo_t *siginfo, void *sigcontext )
2094 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_generic_exception );
2096 switch (siginfo->si_code)
2098 case TRAP_TRACE: /* Single-step exception */
2099 rec->ExceptionCode = EXCEPTION_SINGLE_STEP;
2100 break;
2101 case TRAP_BRKPT: /* Breakpoint exception */
2102 rec->ExceptionAddress = (char *)rec->ExceptionAddress - 1; /* back up over the int3 instruction */
2103 /* fall through */
2104 default:
2105 rec->ExceptionCode = EXCEPTION_BREAKPOINT;
2106 break;
2110 /**********************************************************************
2111 * fpe_handler
2113 * Handler for SIGFPE.
2115 static void fpe_handler( int signal, siginfo_t *siginfo, void *sigcontext )
2117 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_generic_exception );
2119 switch (siginfo->si_code)
2121 case FPE_FLTSUB:
2122 rec->ExceptionCode = EXCEPTION_ARRAY_BOUNDS_EXCEEDED;
2123 break;
2124 case FPE_INTDIV:
2125 rec->ExceptionCode = EXCEPTION_INT_DIVIDE_BY_ZERO;
2126 break;
2127 case FPE_INTOVF:
2128 rec->ExceptionCode = EXCEPTION_INT_OVERFLOW;
2129 break;
2130 case FPE_FLTDIV:
2131 rec->ExceptionCode = EXCEPTION_FLT_DIVIDE_BY_ZERO;
2132 break;
2133 case FPE_FLTOVF:
2134 rec->ExceptionCode = EXCEPTION_FLT_OVERFLOW;
2135 break;
2136 case FPE_FLTUND:
2137 rec->ExceptionCode = EXCEPTION_FLT_UNDERFLOW;
2138 break;
2139 case FPE_FLTRES:
2140 rec->ExceptionCode = EXCEPTION_FLT_INEXACT_RESULT;
2141 break;
2142 case FPE_FLTINV:
2143 default:
2144 rec->ExceptionCode = EXCEPTION_FLT_INVALID_OPERATION;
2145 break;
2149 /**********************************************************************
2150 * int_handler
2152 * Handler for SIGINT.
2154 static void int_handler( int signal, siginfo_t *siginfo, void *sigcontext )
2156 if (!dispatch_signal(SIGINT))
2158 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_generic_exception );
2159 rec->ExceptionCode = CONTROL_C_EXIT;
2164 /**********************************************************************
2165 * abrt_handler
2167 * Handler for SIGABRT.
2169 static void abrt_handler( int signal, siginfo_t *siginfo, void *sigcontext )
2171 EXCEPTION_RECORD *rec = setup_exception( sigcontext, raise_generic_exception );
2172 rec->ExceptionCode = EXCEPTION_WINE_ASSERTION;
2173 rec->ExceptionFlags = EH_NONCONTINUABLE;
2177 /**********************************************************************
2178 * quit_handler
2180 * Handler for SIGQUIT.
2182 static void quit_handler( int signal, siginfo_t *siginfo, void *ucontext )
2184 abort_thread(0);
2188 /**********************************************************************
2189 * usr1_handler
2191 * Handler for SIGUSR1, used to signal a thread that it got suspended.
2193 static void usr1_handler( int signal, siginfo_t *siginfo, void *ucontext )
2195 CONTEXT context;
2197 save_context( &context, ucontext );
2198 wait_suspend( &context );
2199 restore_context( &context, ucontext );
2203 /***********************************************************************
2204 * __wine_set_signal_handler (NTDLL.@)
2206 int CDECL __wine_set_signal_handler(unsigned int sig, wine_signal_handler wsh)
2208 if (sig > sizeof(handlers) / sizeof(handlers[0])) return -1;
2209 if (handlers[sig] != NULL) return -2;
2210 handlers[sig] = wsh;
2211 return 0;
2215 /**********************************************************************
2216 * signal_alloc_thread
2218 NTSTATUS signal_alloc_thread( TEB **teb )
2220 static size_t sigstack_zero_bits;
2221 SIZE_T size;
2222 NTSTATUS status;
2224 if (!sigstack_zero_bits)
2226 size_t min_size = teb_size + max( MINSIGSTKSZ, 8192 );
2227 /* find the first power of two not smaller than min_size */
2228 sigstack_zero_bits = 12;
2229 while ((1u << sigstack_zero_bits) < min_size) sigstack_zero_bits++;
2230 signal_stack_size = (1 << sigstack_zero_bits) - teb_size;
2231 assert( sizeof(TEB) <= teb_size );
2234 size = 1 << sigstack_zero_bits;
2235 *teb = NULL;
2236 if (!(status = NtAllocateVirtualMemory( NtCurrentProcess(), (void **)teb, sigstack_zero_bits,
2237 &size, MEM_COMMIT | MEM_TOP_DOWN, PAGE_READWRITE )))
2239 (*teb)->Tib.Self = &(*teb)->Tib;
2240 (*teb)->Tib.ExceptionList = (void *)~0UL;
2242 return status;
2246 /**********************************************************************
2247 * signal_free_thread
2249 void signal_free_thread( TEB *teb )
2251 SIZE_T size;
2253 if (teb->DeallocationStack)
2255 size = 0;
2256 NtFreeVirtualMemory( GetCurrentProcess(), &teb->DeallocationStack, &size, MEM_RELEASE );
2258 size = 0;
2259 NtFreeVirtualMemory( NtCurrentProcess(), (void **)&teb, &size, MEM_RELEASE );
2263 /**********************************************************************
2264 * signal_init_thread
2266 void signal_init_thread( TEB *teb )
2268 stack_t ss;
2270 #ifdef __linux__
2271 arch_prctl( ARCH_SET_GS, teb );
2272 #else
2273 # error Please define setting %gs for your architecture
2274 #endif
2276 ss.ss_sp = (char *)teb + teb_size;
2277 ss.ss_size = signal_stack_size;
2278 ss.ss_flags = 0;
2279 if (sigaltstack(&ss, NULL) == -1) perror( "sigaltstack" );
2282 /**********************************************************************
2283 * signal_init_process
2285 void signal_init_process(void)
2287 struct sigaction sig_act;
2289 sig_act.sa_mask = server_block_set;
2290 sig_act.sa_flags = SA_RESTART | SA_SIGINFO | SA_ONSTACK;
2292 sig_act.sa_sigaction = int_handler;
2293 if (sigaction( SIGINT, &sig_act, NULL ) == -1) goto error;
2294 sig_act.sa_sigaction = fpe_handler;
2295 if (sigaction( SIGFPE, &sig_act, NULL ) == -1) goto error;
2296 sig_act.sa_sigaction = abrt_handler;
2297 if (sigaction( SIGABRT, &sig_act, NULL ) == -1) goto error;
2298 sig_act.sa_sigaction = quit_handler;
2299 if (sigaction( SIGQUIT, &sig_act, NULL ) == -1) goto error;
2300 sig_act.sa_sigaction = usr1_handler;
2301 if (sigaction( SIGUSR1, &sig_act, NULL ) == -1) goto error;
2303 sig_act.sa_sigaction = segv_handler;
2304 if (sigaction( SIGSEGV, &sig_act, NULL ) == -1) goto error;
2305 if (sigaction( SIGILL, &sig_act, NULL ) == -1) goto error;
2306 #ifdef SIGBUS
2307 if (sigaction( SIGBUS, &sig_act, NULL ) == -1) goto error;
2308 #endif
2310 #ifdef SIGTRAP
2311 sig_act.sa_sigaction = trap_handler;
2312 if (sigaction( SIGTRAP, &sig_act, NULL ) == -1) goto error;
2313 #endif
2314 return;
2316 error:
2317 perror("sigaction");
2318 exit(1);
2322 /**********************************************************************
2323 * RtlAddFunctionTable (NTDLL.@)
2325 BOOLEAN CDECL RtlAddFunctionTable( RUNTIME_FUNCTION *table, DWORD count, DWORD64 addr )
2327 FIXME( "%p %u %lx: stub\n", table, count, addr );
2328 return FALSE;
2332 /**********************************************************************
2333 * RtlDeleteFunctionTable (NTDLL.@)
2335 BOOLEAN CDECL RtlDeleteFunctionTable( RUNTIME_FUNCTION *table )
2337 FIXME( "%p: stub\n", table );
2338 return FALSE;
2342 /**********************************************************************
2343 * RtlLookupFunctionEntry (NTDLL.@)
2345 PRUNTIME_FUNCTION WINAPI RtlLookupFunctionEntry( ULONG64 pc, ULONG64 *base, UNWIND_HISTORY_TABLE *table )
2347 LDR_MODULE *module;
2348 RUNTIME_FUNCTION *func;
2349 ULONG size;
2351 /* FIXME: should use the history table to make things faster */
2353 if (LdrFindEntryForAddress( (void *)pc, &module ))
2355 WARN( "module not found for %lx\n", pc );
2356 return NULL;
2358 if (!(func = RtlImageDirectoryEntryToData( module->BaseAddress, TRUE,
2359 IMAGE_DIRECTORY_ENTRY_EXCEPTION, &size )))
2361 WARN( "no exception table found in module %p pc %lx\n", module->BaseAddress, pc );
2362 return NULL;
2364 func = find_function_info( pc, module->BaseAddress, func, size );
2365 if (func) *base = (ULONG64)module->BaseAddress;
2366 return func;
2369 static ULONG64 get_int_reg( CONTEXT *context, int reg )
2371 return *(&context->Rax + reg);
2374 static void set_int_reg( CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *ctx_ptr, int reg, ULONG64 val )
2376 *(&context->Rax + reg) = val;
2377 if (ctx_ptr) ctx_ptr->u2.IntegerContext[reg] = &context->Rax + reg;
2380 static void set_float_reg( CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *ctx_ptr, int reg, M128A val )
2382 *(&context->u.s.Xmm0 + reg) = val;
2383 if (ctx_ptr) ctx_ptr->u1.FloatingContext[reg] = &context->u.s.Xmm0 + reg;
2386 static int get_opcode_size( struct opcode op )
2388 switch (op.code)
2390 case UWOP_ALLOC_LARGE:
2391 return 2 + (op.info != 0);
2392 case UWOP_SAVE_NONVOL:
2393 case UWOP_SAVE_XMM128:
2394 return 2;
2395 case UWOP_SAVE_NONVOL_FAR:
2396 case UWOP_SAVE_XMM128_FAR:
2397 return 3;
2398 default:
2399 return 1;
2403 static BOOL is_inside_epilog( BYTE *pc )
2405 /* add or lea must be the first instruction, and it must have a rex.W prefix */
2406 if ((pc[0] & 0xf8) == 0x48)
2408 switch (pc[1])
2410 case 0x81: /* add $nnnn,%rsp */
2411 if (pc[0] == 0x48 && pc[2] == 0xc4)
2413 pc += 7;
2414 break;
2416 return FALSE;
2417 case 0x83: /* add $n,%rsp */
2418 if (pc[0] == 0x48 && pc[2] == 0xc4)
2420 pc += 4;
2421 break;
2423 return FALSE;
2424 case 0x8d: /* lea n(reg),%rsp */
2425 if (pc[0] & 0x06) return FALSE; /* rex.RX must be cleared */
2426 if (((pc[2] >> 3) & 7) != 4) return FALSE; /* dest reg mus be %rsp */
2427 if ((pc[2] & 7) == 4) return FALSE; /* no SIB byte allowed */
2428 if ((pc[2] >> 6) == 1) /* 8-bit offset */
2430 pc += 4;
2431 break;
2433 if ((pc[2] >> 6) == 2) /* 32-bit offset */
2435 pc += 7;
2436 break;
2438 return FALSE;
2442 /* now check for various pop instructions */
2444 for (;;)
2446 BYTE rex = 0;
2448 if ((*pc & 0xf0) == 0x40) rex = *pc++ & 0x0f; /* rex prefix */
2450 switch (*pc)
2452 case 0x58: /* pop %rax/%r8 */
2453 case 0x59: /* pop %rcx/%r9 */
2454 case 0x5a: /* pop %rdx/%r10 */
2455 case 0x5b: /* pop %rbx/%r11 */
2456 case 0x5c: /* pop %rsp/%r12 */
2457 case 0x5d: /* pop %rbp/%r13 */
2458 case 0x5e: /* pop %rsi/%r14 */
2459 case 0x5f: /* pop %rdi/%r15 */
2460 pc++;
2461 continue;
2462 case 0xc2: /* ret $nn */
2463 case 0xc3: /* ret */
2464 return TRUE;
2465 /* FIXME: add various jump instructions */
2467 return FALSE;
2471 /* execute a function epilog, which must have been validated with is_inside_epilog() */
2472 static void interpret_epilog( BYTE *pc, CONTEXT *context, KNONVOLATILE_CONTEXT_POINTERS *ctx_ptr )
2474 for (;;)
2476 BYTE rex = 0;
2478 if ((*pc & 0xf0) == 0x40) rex = *pc++ & 0x0f; /* rex prefix */
2480 switch (*pc)
2482 case 0x58: /* pop %rax/r8 */
2483 case 0x59: /* pop %rcx/r9 */
2484 case 0x5a: /* pop %rdx/r10 */
2485 case 0x5b: /* pop %rbx/r11 */
2486 case 0x5c: /* pop %rsp/r12 */
2487 case 0x5d: /* pop %rbp/r13 */
2488 case 0x5e: /* pop %rsi/r14 */
2489 case 0x5f: /* pop %rdi/r15 */
2490 set_int_reg( context, ctx_ptr, *pc - 0x58 + (rex & 1) * 8, *(ULONG64 *)context->Rsp );
2491 context->Rsp += sizeof(ULONG64);
2492 pc++;
2493 continue;
2494 case 0x81: /* add $nnnn,%rsp */
2495 context->Rsp += *(LONG *)(pc + 2);
2496 pc += 2 + sizeof(LONG);
2497 continue;
2498 case 0x83: /* add $n,%rsp */
2499 context->Rsp += (signed char)pc[2];
2500 pc += 3;
2501 continue;
2502 case 0x8d:
2503 if ((pc[1] >> 6) == 1) /* lea n(reg),%rsp */
2505 context->Rsp = get_int_reg( context, (pc[1] & 7) + (rex & 1) * 8 ) + (signed char)pc[2];
2506 pc += 3;
2508 else /* lea nnnn(reg),%rsp */
2510 context->Rsp = get_int_reg( context, (pc[1] & 7) + (rex & 1) * 8 ) + *(LONG *)(pc + 2);
2511 pc += 2 + sizeof(LONG);
2513 continue;
2514 case 0xc2: /* ret $nn */
2515 context->Rip = *(ULONG64 *)context->Rsp;
2516 context->Rsp += sizeof(ULONG64) + *(WORD *)(pc + 1);
2517 return;
2518 case 0xc3: /* ret */
2519 context->Rip = *(ULONG64 *)context->Rsp;
2520 context->Rsp += sizeof(ULONG64);
2521 return;
2522 /* FIXME: add various jump instructions */
2524 return;
2528 /**********************************************************************
2529 * RtlVirtualUnwind (NTDLL.@)
2531 PVOID WINAPI RtlVirtualUnwind( ULONG type, ULONG64 base, ULONG64 pc,
2532 RUNTIME_FUNCTION *function, CONTEXT *context,
2533 PVOID *data, ULONG64 *frame_ret,
2534 KNONVOLATILE_CONTEXT_POINTERS *ctx_ptr )
2536 union handler_data *handler_data;
2537 ULONG64 frame, off;
2538 struct UNWIND_INFO *info;
2539 unsigned int i, prolog_offset;
2541 TRACE( "type %x rip %lx rsp %lx\n", type, pc, context->Rsp );
2542 if (TRACE_ON(seh)) dump_unwind_info( base, function );
2544 frame = *frame_ret = context->Rsp;
2545 for (;;)
2547 info = (struct UNWIND_INFO *)((char *)base + function->UnwindData);
2548 handler_data = (union handler_data *)&info->opcodes[(info->count + 1) & ~1];
2550 if (info->version != 1)
2552 FIXME( "unknown unwind info version %u at %p\n", info->version, info );
2553 return NULL;
2556 if (info->frame_reg)
2557 frame = get_int_reg( context, info->frame_reg ) - info->frame_offset * 16;
2559 /* check if in prolog */
2560 if (pc >= base + function->BeginAddress && pc < base + function->BeginAddress + info->prolog)
2562 prolog_offset = pc - base - function->BeginAddress;
2564 else
2566 prolog_offset = ~0;
2567 if (is_inside_epilog( (BYTE *)pc ))
2569 interpret_epilog( (BYTE *)pc, context, ctx_ptr );
2570 *frame_ret = frame;
2571 return NULL;
2575 for (i = 0; i < info->count; i += get_opcode_size(info->opcodes[i]))
2577 if (prolog_offset < info->opcodes[i].offset) continue; /* skip it */
2579 switch (info->opcodes[i].code)
2581 case UWOP_PUSH_NONVOL: /* pushq %reg */
2582 set_int_reg( context, ctx_ptr, info->opcodes[i].info, *(ULONG64 *)context->Rsp );
2583 context->Rsp += sizeof(ULONG64);
2584 break;
2585 case UWOP_ALLOC_LARGE: /* subq $nn,%rsp */
2586 if (info->opcodes[i].info) context->Rsp += *(DWORD *)&info->opcodes[i+1];
2587 else context->Rsp += *(USHORT *)&info->opcodes[i+1] * 8;
2588 break;
2589 case UWOP_ALLOC_SMALL: /* subq $n,%rsp */
2590 context->Rsp += (info->opcodes[i].info + 1) * 8;
2591 break;
2592 case UWOP_SET_FPREG: /* leaq nn(%rsp),%framereg */
2593 context->Rsp = *frame_ret = frame;
2594 break;
2595 case UWOP_SAVE_NONVOL: /* movq %reg,n(%rsp) */
2596 off = frame + *(USHORT *)&info->opcodes[i+1] * 8;
2597 set_int_reg( context, ctx_ptr, info->opcodes[i].info, *(ULONG64 *)off );
2598 break;
2599 case UWOP_SAVE_NONVOL_FAR: /* movq %reg,nn(%rsp) */
2600 off = frame + *(DWORD *)&info->opcodes[i+1];
2601 set_int_reg( context, ctx_ptr, info->opcodes[i].info, *(ULONG64 *)off );
2602 break;
2603 case UWOP_SAVE_XMM128: /* movaps %xmmreg,n(%rsp) */
2604 off = frame + *(USHORT *)&info->opcodes[i+1] * 16;
2605 set_float_reg( context, ctx_ptr, info->opcodes[i].info, *(M128A *)off );
2606 break;
2607 case UWOP_SAVE_XMM128_FAR: /* movaps %xmmreg,nn(%rsp) */
2608 off = frame + *(DWORD *)&info->opcodes[i+1];
2609 set_float_reg( context, ctx_ptr, info->opcodes[i].info, *(M128A *)off );
2610 break;
2611 case UWOP_PUSH_MACHFRAME:
2612 FIXME( "PUSH_MACHFRAME %u\n", info->opcodes[i].info );
2613 break;
2614 default:
2615 FIXME( "unknown code %u\n", info->opcodes[i].code );
2616 break;
2620 if (!(info->flags & UNW_FLAG_CHAININFO)) break;
2621 function = &handler_data->chain; /* restart with the chained info */
2624 /* now pop return address */
2625 context->Rip = *(ULONG64 *)context->Rsp;
2626 context->Rsp += sizeof(ULONG64);
2628 if (!(info->flags & type)) return NULL; /* no matching handler */
2629 if (prolog_offset != ~0) return NULL; /* inside prolog */
2631 *data = &handler_data->handler + 1;
2632 return (char *)base + handler_data->handler;
2636 /**********************************************************************
2637 * call_unwind_handler
2639 * Call a single unwind handler.
2640 * FIXME: Handle nested exceptions.
2642 static void call_unwind_handler( EXCEPTION_RECORD *rec, DISPATCHER_CONTEXT *dispatch )
2644 DWORD res;
2646 dispatch->ControlPc = dispatch->ContextRecord->Rip;
2648 TRACE( "calling handler %p (rec=%p, frame=0x%lx context=%p, dispatch=%p)\n",
2649 dispatch->LanguageHandler, rec, dispatch->EstablisherFrame, dispatch->ContextRecord, dispatch );
2650 res = dispatch->LanguageHandler( rec, dispatch->EstablisherFrame, dispatch->ContextRecord, dispatch );
2651 TRACE( "handler %p returned %x\n", dispatch->LanguageHandler, res );
2653 switch (res)
2655 case ExceptionContinueSearch:
2656 break;
2657 case ExceptionCollidedUnwind:
2658 FIXME( "ExceptionCollidedUnwind not supported yet\n" );
2659 break;
2660 default:
2661 raise_status( STATUS_INVALID_DISPOSITION, rec );
2662 break;
2667 /**********************************************************************
2668 * call_teb_unwind_handler
2670 * Call a single unwind handler from the TEB chain.
2671 * FIXME: Handle nested exceptions.
2673 static void call_teb_unwind_handler( EXCEPTION_RECORD *rec, DISPATCHER_CONTEXT *dispatch,
2674 EXCEPTION_REGISTRATION_RECORD *teb_frame )
2676 EXCEPTION_REGISTRATION_RECORD *dispatcher;
2677 DWORD res;
2679 TRACE( "calling TEB handler %p (rec=%p, frame=%p context=%p, dispatcher=%p)\n",
2680 teb_frame->Handler, rec, teb_frame, dispatch->ContextRecord, &dispatcher );
2681 res = teb_frame->Handler( rec, teb_frame, dispatch->ContextRecord, &dispatcher );
2682 TRACE( "handler at %p returned %u\n", teb_frame->Handler, res );
2684 switch (res)
2686 case ExceptionContinueSearch:
2687 break;
2688 case ExceptionCollidedUnwind:
2689 FIXME( "ExceptionCollidedUnwind not supported yet\n" );
2690 break;
2691 default:
2692 raise_status( STATUS_INVALID_DISPOSITION, rec );
2693 break;
2698 /*******************************************************************
2699 * RtlUnwindEx (NTDLL.@)
2701 void WINAPI RtlUnwindEx( ULONG64 end_frame, ULONG64 target_ip, EXCEPTION_RECORD *rec,
2702 ULONG64 retval, CONTEXT *orig_context, UNWIND_HISTORY_TABLE *table )
2704 EXCEPTION_REGISTRATION_RECORD *teb_frame = NtCurrentTeb()->Tib.ExceptionList;
2705 EXCEPTION_RECORD record;
2706 RUNTIME_FUNCTION *dir;
2707 DISPATCHER_CONTEXT dispatch;
2708 CONTEXT context, new_context;
2709 LDR_MODULE *module;
2710 NTSTATUS status;
2711 DWORD size;
2713 /* build an exception record, if we do not have one */
2714 if (!rec)
2716 record.ExceptionCode = STATUS_UNWIND;
2717 record.ExceptionFlags = 0;
2718 record.ExceptionRecord = NULL;
2719 record.ExceptionAddress = (void *)orig_context->Rip;
2720 record.NumberParameters = 0;
2721 rec = &record;
2724 rec->ExceptionFlags |= EH_UNWINDING | (end_frame ? 0 : EH_EXIT_UNWIND);
2726 TRACE( "code=%x flags=%x end_frame=%lx target_ip=%lx rip=%016lx\n",
2727 rec->ExceptionCode, rec->ExceptionFlags, end_frame, target_ip, orig_context->Rip );
2728 TRACE(" rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
2729 orig_context->Rax, orig_context->Rbx, orig_context->Rcx, orig_context->Rdx );
2730 TRACE(" rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
2731 orig_context->Rsi, orig_context->Rdi, orig_context->Rbp, orig_context->Rsp );
2732 TRACE(" r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
2733 orig_context->R8, orig_context->R9, orig_context->R10, orig_context->R11 );
2734 TRACE(" r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
2735 orig_context->R12, orig_context->R13, orig_context->R14, orig_context->R15 );
2737 context = *orig_context;
2738 dispatch.EstablisherFrame = context.Rsp;
2739 dispatch.TargetIp = target_ip;
2740 dispatch.ContextRecord = &context;
2741 dispatch.HistoryTable = table;
2743 while (dispatch.EstablisherFrame != end_frame)
2745 new_context = context;
2747 /* FIXME: should use the history table to make things faster */
2749 dir = NULL;
2750 module = NULL;
2751 dispatch.ImageBase = 0;
2752 dispatch.ScopeIndex = 0; /* FIXME */
2754 if (!LdrFindEntryForAddress( (void *)context.Rip, &module ))
2756 if (!(dir = RtlImageDirectoryEntryToData( module->BaseAddress, TRUE,
2757 IMAGE_DIRECTORY_ENTRY_EXCEPTION, &size )) &&
2758 !(module->Flags & LDR_WINE_INTERNAL))
2760 ERR( "module %s doesn't contain exception data, can't unwind exception\n",
2761 debugstr_w(module->BaseDllName.Buffer) );
2762 raise_status( STATUS_BAD_FUNCTION_TABLE, rec );
2764 dispatch.ImageBase = (ULONG64)module->BaseAddress;
2767 if (!dir)
2769 struct dwarf_eh_bases bases;
2770 const struct dwarf_fde *fde = _Unwind_Find_FDE( (void *)(context.Rip - 1), &bases );
2771 if (!fde)
2773 /* assume leaf function */
2774 context.Rip = *(ULONG64 *)context.Rsp;
2775 context.Rsp += sizeof(ULONG64);
2776 continue;
2778 dispatch.FunctionEntry = NULL;
2779 status = dwarf_virtual_unwind( context.Rip, &dispatch.EstablisherFrame, &new_context, fde,
2780 &bases, &dispatch.LanguageHandler, &dispatch.HandlerData );
2781 if (status != STATUS_SUCCESS) raise_status( status, rec );
2782 if (dispatch.LanguageHandler && !module)
2784 FIXME( "calling personality routine in system library not supported yet\n" );
2785 dispatch.LanguageHandler = NULL;
2788 else
2790 if (!(dispatch.FunctionEntry = find_function_info( context.Rip, module->BaseAddress,
2791 dir, size )))
2793 /* leaf function */
2794 context.Rip = *(ULONG64 *)context.Rsp;
2795 context.Rsp += sizeof(ULONG64);
2796 continue;
2798 dispatch.LanguageHandler = RtlVirtualUnwind( UNW_FLAG_UHANDLER, dispatch.ImageBase,
2799 context.Rip, dispatch.FunctionEntry,
2800 &new_context, &dispatch.HandlerData,
2801 &dispatch.EstablisherFrame, NULL );
2804 if (!dispatch.EstablisherFrame) break;
2806 if (is_inside_signal_stack( (void *)dispatch.EstablisherFrame ))
2808 TRACE( "frame %lx is inside signal stack (%p-%p)\n", dispatch.EstablisherFrame,
2809 get_signal_stack(), (char *)get_signal_stack() + signal_stack_size );
2810 context = new_context;
2811 continue;
2814 if ((dispatch.EstablisherFrame & 7) ||
2815 dispatch.EstablisherFrame < (ULONG64)NtCurrentTeb()->Tib.StackLimit ||
2816 dispatch.EstablisherFrame > (ULONG64)NtCurrentTeb()->Tib.StackBase)
2818 ERR( "invalid frame %lx (%p-%p)\n", dispatch.EstablisherFrame,
2819 NtCurrentTeb()->Tib.StackLimit, NtCurrentTeb()->Tib.StackBase );
2820 rec->ExceptionFlags |= EH_STACK_INVALID;
2821 break;
2824 if (dispatch.LanguageHandler)
2826 if (end_frame && (dispatch.EstablisherFrame > end_frame))
2828 ERR( "invalid end frame %lx/%lx\n", dispatch.EstablisherFrame, end_frame );
2829 raise_status( STATUS_INVALID_UNWIND_TARGET, rec );
2831 call_unwind_handler( rec, &dispatch );
2833 else /* hack: call builtin handlers registered in the tib list */
2835 while ((ULONG64)teb_frame < new_context.Rsp && (ULONG64)teb_frame < end_frame)
2837 TRACE( "found builtin frame %p handler %p\n", teb_frame, teb_frame->Handler );
2838 dispatch.EstablisherFrame = (ULONG64)teb_frame;
2839 call_teb_unwind_handler( rec, &dispatch, teb_frame );
2840 teb_frame = __wine_pop_frame( teb_frame );
2842 if ((ULONG64)teb_frame == end_frame && end_frame < new_context.Rsp) break;
2843 dispatch.EstablisherFrame = new_context.Rsp;
2846 context = new_context;
2848 context.Rax = retval;
2849 context.Rip = target_ip;
2850 TRACE( "returning to %lx stack %lx\n", context.Rip, context.Rsp );
2851 set_cpu_context( &context );
2855 /*******************************************************************
2856 * RtlUnwind (NTDLL.@)
2858 void WINAPI __regs_RtlUnwind( ULONG64 frame, ULONG64 target_ip, EXCEPTION_RECORD *rec,
2859 ULONG64 retval, CONTEXT *context )
2861 RtlUnwindEx( frame, target_ip, rec, retval, context, NULL );
2863 DEFINE_REGS_ENTRYPOINT( RtlUnwind, 4 )
2866 /*******************************************************************
2867 * __C_specific_handler (NTDLL.@)
2869 EXCEPTION_DISPOSITION WINAPI __C_specific_handler( EXCEPTION_RECORD *rec,
2870 ULONG64 frame,
2871 CONTEXT *context,
2872 struct _DISPATCHER_CONTEXT *dispatch )
2874 SCOPE_TABLE *table = dispatch->HandlerData;
2875 ULONG i;
2877 TRACE( "%p %lx %p %p\n", rec, frame, context, dispatch );
2878 if (TRACE_ON(seh)) dump_scope_table( dispatch->ImageBase, table );
2880 if (rec->ExceptionFlags & (EH_UNWINDING | EH_EXIT_UNWIND)) /* FIXME */
2881 return ExceptionContinueSearch;
2883 for (i = 0; i < table->Count; i++)
2885 if (context->Rip >= dispatch->ImageBase + table->ScopeRecord[i].BeginAddress &&
2886 context->Rip < dispatch->ImageBase + table->ScopeRecord[i].EndAddress)
2888 if (!table->ScopeRecord[i].JumpTarget) continue;
2889 if (table->ScopeRecord[i].HandlerAddress != EXCEPTION_EXECUTE_HANDLER)
2891 EXCEPTION_POINTERS ptrs;
2892 PC_LANGUAGE_EXCEPTION_HANDLER filter;
2894 filter = (PC_LANGUAGE_EXCEPTION_HANDLER)(dispatch->ImageBase + table->ScopeRecord[i].HandlerAddress);
2895 ptrs.ExceptionRecord = rec;
2896 ptrs.ContextRecord = context;
2897 TRACE( "calling filter %p ptrs %p frame %lx\n", filter, &ptrs, frame );
2898 switch (filter( &ptrs, frame ))
2900 case EXCEPTION_EXECUTE_HANDLER:
2901 break;
2902 case EXCEPTION_CONTINUE_SEARCH:
2903 continue;
2904 case EXCEPTION_CONTINUE_EXECUTION:
2905 return ExceptionContinueExecution;
2908 TRACE( "unwinding to target %lx\n", dispatch->ImageBase + table->ScopeRecord[i].JumpTarget );
2909 RtlUnwindEx( frame, dispatch->ImageBase + table->ScopeRecord[i].JumpTarget,
2910 rec, 0, context, dispatch->HistoryTable );
2913 return ExceptionContinueSearch;
2917 /*******************************************************************
2918 * NtRaiseException (NTDLL.@)
2920 NTSTATUS WINAPI NtRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context, BOOL first_chance )
2922 NTSTATUS status = raise_exception( rec, context, first_chance );
2923 if (status == STATUS_SUCCESS) NtSetContextThread( GetCurrentThread(), context );
2924 return status;
2928 /***********************************************************************
2929 * RtlRaiseException (NTDLL.@)
2931 void WINAPI __regs_RtlRaiseException( EXCEPTION_RECORD *rec, CONTEXT *context )
2933 NTSTATUS status;
2935 rec->ExceptionAddress = (void *)context->Rip;
2936 status = raise_exception( rec, context, TRUE );
2937 if (status != STATUS_SUCCESS) raise_status( status, rec );
2939 DEFINE_REGS_ENTRYPOINT( RtlRaiseException, 1 )
2942 /*************************************************************************
2943 * RtlCaptureStackBackTrace (NTDLL.@)
2945 USHORT WINAPI RtlCaptureStackBackTrace( ULONG skip, ULONG count, PVOID *buffer, ULONG *hash )
2947 FIXME( "(%d, %d, %p, %p) stub!\n", skip, count, buffer, hash );
2948 return 0;
2952 /***********************************************************************
2953 * call_thread_func
2955 void call_thread_func( LPTHREAD_START_ROUTINE entry, void *arg, void *frame )
2957 ntdll_get_thread_data()->exit_frame = frame;
2958 __TRY
2960 RtlExitUserThread( entry( arg ));
2962 __EXCEPT(unhandled_exception_filter)
2964 NtTerminateThread( GetCurrentThread(), GetExceptionCode() );
2966 __ENDTRY
2967 abort(); /* should not be reached */
2970 extern void DECLSPEC_NORETURN call_thread_entry_point( LPTHREAD_START_ROUTINE entry, void *arg );
2971 __ASM_GLOBAL_FUNC( call_thread_entry_point,
2972 "subq $8,%rsp\n\t"
2973 ".cfi_adjust_cfa_offset 8\n\t"
2974 "movq %rsp,%rdx\n\t"
2975 "call " __ASM_NAME("call_thread_func") );
2977 extern void DECLSPEC_NORETURN call_thread_exit_func( int status, void (*func)(int), void *frame );
2978 __ASM_GLOBAL_FUNC( call_thread_exit_func,
2979 "subq $8,%rsp\n\t"
2980 ".cfi_adjust_cfa_offset 8\n\t"
2981 "movq %rdx,%rsp\n\t"
2982 "call *%rsi" );
2984 /***********************************************************************
2985 * RtlExitUserThread (NTDLL.@)
2987 void WINAPI RtlExitUserThread( ULONG status )
2989 if (!ntdll_get_thread_data()->exit_frame) exit_thread( status );
2990 call_thread_exit_func( status, exit_thread, ntdll_get_thread_data()->exit_frame );
2993 /***********************************************************************
2994 * abort_thread
2996 void abort_thread( int status )
2998 if (!ntdll_get_thread_data()->exit_frame) terminate_thread( status );
2999 call_thread_exit_func( status, terminate_thread, ntdll_get_thread_data()->exit_frame );
3002 /**********************************************************************
3003 * __wine_enter_vm86 (NTDLL.@)
3005 void __wine_enter_vm86( CONTEXT *context )
3007 MESSAGE("vm86 mode not supported on this platform\n");
3010 /**********************************************************************
3011 * DbgBreakPoint (NTDLL.@)
3013 __ASM_STDCALL_FUNC( DbgBreakPoint, 0, "int $3; ret")
3015 /**********************************************************************
3016 * DbgUserBreakPoint (NTDLL.@)
3018 __ASM_STDCALL_FUNC( DbgUserBreakPoint, 0, "int $3; ret")
3020 #endif /* __x86_64__ */