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
24 #include "wine/port.h"
35 #ifdef HAVE_SYS_PARAM_H
36 # include <sys/param.h>
38 #ifdef HAVE_SYS_SIGNAL_H
39 # include <sys/signal.h>
42 #define NONAMELESSUNION
43 #define NONAMELESSSTRUCT
45 #define WIN32_NO_STATUS
48 #include "wine/library.h"
49 #include "wine/exception.h"
50 #include "ntdll_misc.h"
51 #include "wine/debug.h"
53 WINE_DEFAULT_DEBUG_CHANNEL(seh
);
55 struct _DISPATCHER_CONTEXT
;
57 typedef LONG (WINAPI
*PC_LANGUAGE_EXCEPTION_HANDLER
)( EXCEPTION_POINTERS
*ptrs
, ULONG64 frame
);
58 typedef EXCEPTION_DISPOSITION (WINAPI
*PEXCEPTION_ROUTINE
)( EXCEPTION_RECORD
*rec
,
61 struct _DISPATCHER_CONTEXT
*dispatch
);
63 typedef struct _DISPATCHER_CONTEXT
67 PRUNTIME_FUNCTION FunctionEntry
;
68 ULONG64 EstablisherFrame
;
70 PCONTEXT ContextRecord
;
71 PEXCEPTION_ROUTINE LanguageHandler
;
73 PUNWIND_HISTORY_TABLE HistoryTable
;
75 } DISPATCHER_CONTEXT
, *PDISPATCHER_CONTEXT
;
77 typedef struct _SCOPE_TABLE
87 } SCOPE_TABLE
, *PSCOPE_TABLE
;
90 /***********************************************************************
91 * signal context platform-specific definitions
95 #include <asm/prctl.h>
96 extern int arch_prctl(int func
, void *ptr
);
98 #define RAX_sig(context) ((context)->uc_mcontext.gregs[REG_RAX])
99 #define RBX_sig(context) ((context)->uc_mcontext.gregs[REG_RBX])
100 #define RCX_sig(context) ((context)->uc_mcontext.gregs[REG_RCX])
101 #define RDX_sig(context) ((context)->uc_mcontext.gregs[REG_RDX])
102 #define RSI_sig(context) ((context)->uc_mcontext.gregs[REG_RSI])
103 #define RDI_sig(context) ((context)->uc_mcontext.gregs[REG_RDI])
104 #define RBP_sig(context) ((context)->uc_mcontext.gregs[REG_RBP])
105 #define R8_sig(context) ((context)->uc_mcontext.gregs[REG_R8])
106 #define R9_sig(context) ((context)->uc_mcontext.gregs[REG_R9])
107 #define R10_sig(context) ((context)->uc_mcontext.gregs[REG_R10])
108 #define R11_sig(context) ((context)->uc_mcontext.gregs[REG_R11])
109 #define R12_sig(context) ((context)->uc_mcontext.gregs[REG_R12])
110 #define R13_sig(context) ((context)->uc_mcontext.gregs[REG_R13])
111 #define R14_sig(context) ((context)->uc_mcontext.gregs[REG_R14])
112 #define R15_sig(context) ((context)->uc_mcontext.gregs[REG_R15])
114 #define CS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 0))
115 #define GS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 1))
116 #define FS_sig(context) (*((WORD *)&(context)->uc_mcontext.gregs[REG_CSGSFS] + 2))
118 #define RSP_sig(context) ((context)->uc_mcontext.gregs[REG_RSP])
119 #define RIP_sig(context) ((context)->uc_mcontext.gregs[REG_RIP])
120 #define EFL_sig(context) ((context)->uc_mcontext.gregs[REG_EFL])
121 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
122 #define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
124 #define FPU_sig(context) ((XMM_SAVE_AREA32 *)((context)->uc_mcontext.fpregs))
128 #if defined(__NetBSD__)
129 # include <sys/ucontext.h>
130 # include <sys/types.h>
133 #define RAX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RAX])
134 #define RBX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBX])
135 #define RCX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RCX])
136 #define RDX_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDX])
137 #define RSI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RSI])
138 #define RDI_sig(context) ((context)->uc_mcontext.__gregs[_REG_RDI])
139 #define RBP_sig(context) ((context)->uc_mcontext.__gregs[_REG_RBP])
140 #define R8_sig(context) ((context)->uc_mcontext.__gregs[_REG_R8])
141 #define R9_sig(context) ((context)->uc_mcontext.__gregs[_REG_R9])
142 #define R10_sig(context) ((context)->uc_mcontext.__gregs[_REG_R10])
143 #define R11_sig(context) ((context)->uc_mcontext.__gregs[_REG_R11])
144 #define R12_sig(context) ((context)->uc_mcontext.__gregs[_REG_R12])
145 #define R13_sig(context) ((context)->uc_mcontext.__gregs[_REG_R13])
146 #define R14_sig(context) ((context)->uc_mcontext.__gregs[_REG_R14])
147 #define R15_sig(context) ((context)->uc_mcontext.__gregs[_REG_R15])
149 #define CS_sig(context) ((context)->uc_mcontext.__gregs[_REG_CS])
150 #define DS_sig(context) ((context)->uc_mcontext.__gregs[_REG_DS])
151 #define ES_sig(context) ((context)->uc_mcontext.__gregs[_REG_ES])
152 #define FS_sig(context) ((context)->uc_mcontext.__gregs[_REG_FS])
153 #define GS_sig(context) ((context)->uc_mcontext.__gregs[_REG_GS])
154 #define SS_sig(context) ((context)->uc_mcontext.__gregs[_REG_SS])
156 #define EFL_sig(context) ((context)->uc_mcontext.__gregs[_REG_RFL])
158 #define RIP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_RIP]))
159 #define RSP_sig(context) (*((unsigned long*)&(context)->uc_mcontext.__gregs[_REG_URSP]))
161 #define TRAP_sig(context) ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
162 #define ERROR_sig(context) ((context)->uc_mcontext.__gregs[_REG_ERR])
164 #define FPU_sig(context) ((XMM_SAVE_AREA32 *)((context)->uc_mcontext.__fpregs))
165 #endif /* __NetBSD__ */
169 TRAP_x86_UNKNOWN
= -1, /* Unknown fault (TRAP_sig not defined) */
170 TRAP_x86_DIVIDE
= 0, /* Division by zero exception */
171 TRAP_x86_TRCTRAP
= 1, /* Single-step exception */
172 TRAP_x86_NMI
= 2, /* NMI interrupt */
173 TRAP_x86_BPTFLT
= 3, /* Breakpoint exception */
174 TRAP_x86_OFLOW
= 4, /* Overflow exception */
175 TRAP_x86_BOUND
= 5, /* Bound range exception */
176 TRAP_x86_PRIVINFLT
= 6, /* Invalid opcode exception */
177 TRAP_x86_DNA
= 7, /* Device not available exception */
178 TRAP_x86_DOUBLEFLT
= 8, /* Double fault exception */
179 TRAP_x86_FPOPFLT
= 9, /* Coprocessor segment overrun */
180 TRAP_x86_TSSFLT
= 10, /* Invalid TSS exception */
181 TRAP_x86_SEGNPFLT
= 11, /* Segment not present exception */
182 TRAP_x86_STKFLT
= 12, /* Stack fault */
183 TRAP_x86_PROTFLT
= 13, /* General protection fault */
184 TRAP_x86_PAGEFLT
= 14, /* Page fault */
185 TRAP_x86_ARITHTRAP
= 16, /* Floating point exception */
186 TRAP_x86_ALIGNFLT
= 17, /* Alignment check exception */
187 TRAP_x86_MCHK
= 18, /* Machine check exception */
188 TRAP_x86_CACHEFLT
= 19 /* Cache flush exception */
191 static const size_t teb_size
= 0x2000; /* we reserve two pages for the TEB */
192 static size_t signal_stack_size
;
194 typedef void (*raise_func
)( EXCEPTION_RECORD
*rec
, CONTEXT
*context
);
195 typedef int (*wine_signal_handler
)(unsigned int sig
);
197 static wine_signal_handler handlers
[256];
200 /***********************************************************************
201 * Definitions for Win32 unwind tables
206 RUNTIME_FUNCTION chain
;
224 BYTE frame_offset
: 4;
225 struct opcode opcodes
[1]; /* info->count entries */
226 /* followed by handler_data */
229 #define UWOP_PUSH_NONVOL 0
230 #define UWOP_ALLOC_LARGE 1
231 #define UWOP_ALLOC_SMALL 2
232 #define UWOP_SET_FPREG 3
233 #define UWOP_SAVE_NONVOL 4
234 #define UWOP_SAVE_NONVOL_FAR 5
235 #define UWOP_SAVE_XMM128 8
236 #define UWOP_SAVE_XMM128_FAR 9
237 #define UWOP_PUSH_MACHFRAME 10
239 static void dump_unwind_info( ULONG64 base
, RUNTIME_FUNCTION
*function
)
241 static const char * const reg_names
[16] =
242 { "rax", "rcx", "rdx", "rbx", "rsp", "rbp", "rsi", "rdi",
243 "r8", "r9", "r10", "r11", "r12", "r13", "r14", "r15" };
245 union handler_data
*handler_data
;
246 struct UNWIND_INFO
*info
;
247 unsigned int i
, count
;
249 TRACE( "**** func %x-%x\n", function
->BeginAddress
, function
->EndAddress
);
252 if (function
->UnwindData
& 1)
254 RUNTIME_FUNCTION
*next
= (RUNTIME_FUNCTION
*)((char *)base
+ (function
->UnwindData
& ~1));
255 TRACE( "unwind info for function %p-%p chained to function %p-%p\n",
256 (char *)base
+ function
->BeginAddress
, (char *)base
+ function
->EndAddress
,
257 (char *)base
+ next
->BeginAddress
, (char *)base
+ next
->EndAddress
);
261 info
= (struct UNWIND_INFO
*)((char *)base
+ function
->UnwindData
);
263 TRACE( "unwind info at %p flags %x prolog 0x%x bytes function %p-%p\n",
264 info
, info
->flags
, info
->prolog
,
265 (char *)base
+ function
->BeginAddress
, (char *)base
+ function
->EndAddress
);
268 TRACE( " frame register %s offset 0x%x(%%rsp)\n",
269 reg_names
[info
->frame_reg
], info
->frame_offset
* 16 );
271 for (i
= 0; i
< info
->count
; i
++)
273 TRACE( " 0x%x: ", info
->opcodes
[i
].offset
);
274 switch (info
->opcodes
[i
].code
)
276 case UWOP_PUSH_NONVOL
:
277 TRACE( "pushq %%%s\n", reg_names
[info
->opcodes
[i
].info
] );
279 case UWOP_ALLOC_LARGE
:
280 if (info
->opcodes
[i
].info
)
282 count
= *(DWORD
*)&info
->opcodes
[i
+1];
287 count
= *(USHORT
*)&info
->opcodes
[i
+1] * 8;
290 TRACE( "subq $0x%x,%%rsp\n", count
);
292 case UWOP_ALLOC_SMALL
:
293 count
= (info
->opcodes
[i
].info
+ 1) * 8;
294 TRACE( "subq $0x%x,%%rsp\n", count
);
297 TRACE( "leaq 0x%x(%%rsp),%s\n",
298 info
->frame_offset
* 16, reg_names
[info
->frame_reg
] );
300 case UWOP_SAVE_NONVOL
:
301 count
= *(USHORT
*)&info
->opcodes
[i
+1] * 8;
302 TRACE( "movq %%%s,0x%x(%%rsp)\n", reg_names
[info
->opcodes
[i
].info
], count
);
305 case UWOP_SAVE_NONVOL_FAR
:
306 count
= *(DWORD
*)&info
->opcodes
[i
+1];
307 TRACE( "movq %%%s,0x%x(%%rsp)\n", reg_names
[info
->opcodes
[i
].info
], count
);
310 case UWOP_SAVE_XMM128
:
311 count
= *(USHORT
*)&info
->opcodes
[i
+1] * 16;
312 TRACE( "movaps %%xmm%u,0x%x(%%rsp)\n", info
->opcodes
[i
].info
, count
);
315 case UWOP_SAVE_XMM128_FAR
:
316 count
= *(DWORD
*)&info
->opcodes
[i
+1];
317 TRACE( "movaps %%xmm%u,0x%x(%%rsp)\n", info
->opcodes
[i
].info
, count
);
320 case UWOP_PUSH_MACHFRAME
:
321 TRACE( "PUSH_MACHFRAME %u\n", info
->opcodes
[i
].info
);
324 FIXME( "unknown code %u\n", info
->opcodes
[i
].code
);
329 handler_data
= (union handler_data
*)&info
->opcodes
[(info
->count
+ 1) & ~1];
330 if (info
->flags
& UNW_FLAG_CHAININFO
)
332 TRACE( " chained to function %p-%p\n",
333 (char *)base
+ handler_data
->chain
.BeginAddress
,
334 (char *)base
+ handler_data
->chain
.EndAddress
);
335 function
= &handler_data
->chain
;
338 if (info
->flags
& (UNW_FLAG_EHANDLER
| UNW_FLAG_UHANDLER
))
339 TRACE( " handler %p data at %p\n",
340 (char *)base
+ handler_data
->handler
, &handler_data
->handler
+ 1 );
345 static void dump_scope_table( ULONG64 base
, const SCOPE_TABLE
*table
)
349 TRACE( "scope table at %p\n", table
);
350 for (i
= 0; i
< table
->Count
; i
++)
351 TRACE( " %u: %lx-%lx handler %lx target %lx\n", i
,
352 base
+ table
->ScopeRecord
[i
].BeginAddress
,
353 base
+ table
->ScopeRecord
[i
].EndAddress
,
354 base
+ table
->ScopeRecord
[i
].HandlerAddress
,
355 base
+ table
->ScopeRecord
[i
].JumpTarget
);
359 /***********************************************************************
360 * Definitions for Dwarf unwind tables
363 enum dwarf_call_frame_info
365 DW_CFA_advance_loc
= 0x40,
366 DW_CFA_offset
= 0x80,
367 DW_CFA_restore
= 0xc0,
369 DW_CFA_set_loc
= 0x01,
370 DW_CFA_advance_loc1
= 0x02,
371 DW_CFA_advance_loc2
= 0x03,
372 DW_CFA_advance_loc4
= 0x04,
373 DW_CFA_offset_extended
= 0x05,
374 DW_CFA_restore_extended
= 0x06,
375 DW_CFA_undefined
= 0x07,
376 DW_CFA_same_value
= 0x08,
377 DW_CFA_register
= 0x09,
378 DW_CFA_remember_state
= 0x0a,
379 DW_CFA_restore_state
= 0x0b,
380 DW_CFA_def_cfa
= 0x0c,
381 DW_CFA_def_cfa_register
= 0x0d,
382 DW_CFA_def_cfa_offset
= 0x0e,
383 DW_CFA_def_cfa_expression
= 0x0f,
384 DW_CFA_expression
= 0x10,
385 DW_CFA_offset_extended_sf
= 0x11,
386 DW_CFA_def_cfa_sf
= 0x12,
387 DW_CFA_def_cfa_offset_sf
= 0x13,
388 DW_CFA_val_offset
= 0x14,
389 DW_CFA_val_offset_sf
= 0x15,
390 DW_CFA_val_expression
= 0x16,
397 DW_OP_const1u
= 0x08,
398 DW_OP_const1s
= 0x09,
399 DW_OP_const2u
= 0x0a,
400 DW_OP_const2s
= 0x0b,
401 DW_OP_const4u
= 0x0c,
402 DW_OP_const4s
= 0x0d,
403 DW_OP_const8u
= 0x0e,
404 DW_OP_const8s
= 0x0f,
424 DW_OP_plus_uconst
= 0x23,
537 DW_OP_deref_size
= 0x94,
538 DW_OP_xderef_size
= 0x95,
540 DW_OP_push_object_address
= 0x97,
543 DW_OP_call_ref
= 0x9a,
544 DW_OP_form_tls_address
= 0x9b,
545 DW_OP_call_frame_cfa
= 0x9c,
546 DW_OP_bit_piece
= 0x9d,
547 DW_OP_lo_user
= 0xe0,
548 DW_OP_hi_user
= 0xff,
549 DW_OP_GNU_push_tls_address
= 0xe0,
550 DW_OP_GNU_uninit
= 0xf0,
551 DW_OP_GNU_encoded_addr
= 0xf1,
554 #define DW_EH_PE_native 0x00
555 #define DW_EH_PE_leb128 0x01
556 #define DW_EH_PE_data2 0x02
557 #define DW_EH_PE_data4 0x03
558 #define DW_EH_PE_data8 0x04
559 #define DW_EH_PE_signed 0x08
560 #define DW_EH_PE_abs 0x00
561 #define DW_EH_PE_pcrel 0x10
562 #define DW_EH_PE_textrel 0x20
563 #define DW_EH_PE_datarel 0x30
564 #define DW_EH_PE_funcrel 0x40
565 #define DW_EH_PE_aligned 0x50
566 #define DW_EH_PE_indirect 0x80
567 #define DW_EH_PE_omit 0xff
569 struct dwarf_eh_bases
580 unsigned char version
;
581 unsigned char augmentation
[1];
587 unsigned int cie_offset
;
590 extern const struct dwarf_fde
*_Unwind_Find_FDE (void *, struct dwarf_eh_bases
*);
592 static unsigned char dwarf_get_u1( const unsigned char **p
)
597 static unsigned short dwarf_get_u2( const unsigned char **p
)
599 unsigned int ret
= (*p
)[0] | ((*p
)[1] << 8);
604 static unsigned int dwarf_get_u4( const unsigned char **p
)
606 unsigned int ret
= (*p
)[0] | ((*p
)[1] << 8) | ((*p
)[2] << 16) | ((*p
)[3] << 24);
611 static ULONG64
dwarf_get_u8( const unsigned char **p
)
613 ULONG64 low
= dwarf_get_u4( p
);
614 ULONG64 high
= dwarf_get_u4( p
);
615 return low
| (high
<< 32);
618 static ULONG_PTR
dwarf_get_uleb128( const unsigned char **p
)
621 unsigned int shift
= 0;
627 ret
|= (ULONG_PTR
)(byte
& 0x7f) << shift
;
630 } while (byte
& 0x80);
634 static LONG_PTR
dwarf_get_sleb128( const unsigned char **p
)
637 unsigned int shift
= 0;
643 ret
|= (ULONG_PTR
)(byte
& 0x7f) << shift
;
646 } while (byte
& 0x80);
648 if ((shift
< 8 * sizeof(ret
)) && (byte
& 0x40)) ret
|= -((ULONG_PTR
)1 << shift
);
652 static ULONG_PTR
dwarf_get_ptr( const unsigned char **p
, unsigned char encoding
)
656 if (encoding
== DW_EH_PE_omit
) return 0;
658 switch (encoding
& 0xf0)
664 base
= (ULONG_PTR
)*p
;
667 FIXME( "unsupported encoding %02x\n", encoding
);
671 switch (encoding
& 0x0f)
673 case DW_EH_PE_native
:
674 return base
+ dwarf_get_u8( p
);
675 case DW_EH_PE_leb128
:
676 return base
+ dwarf_get_uleb128( p
);
678 return base
+ dwarf_get_u2( p
);
680 return base
+ dwarf_get_u4( p
);
682 return base
+ dwarf_get_u8( p
);
683 case DW_EH_PE_signed
|DW_EH_PE_leb128
:
684 return base
+ dwarf_get_sleb128( p
);
685 case DW_EH_PE_signed
|DW_EH_PE_data2
:
686 return base
+ (signed short)dwarf_get_u2( p
);
687 case DW_EH_PE_signed
|DW_EH_PE_data4
:
688 return base
+ (signed int)dwarf_get_u4( p
);
689 case DW_EH_PE_signed
|DW_EH_PE_data8
:
690 return base
+ (LONG64
)dwarf_get_u8( p
);
692 FIXME( "unsupported encoding %02x\n", encoding
);
699 RULE_UNSET
, /* not set at all */
700 RULE_UNDEFINED
, /* undefined value */
701 RULE_SAME
, /* same value as previous frame */
702 RULE_CFA_OFFSET
, /* stored at cfa offset */
703 RULE_OTHER_REG
, /* stored in other register */
704 RULE_EXPRESSION
, /* address specified by expression */
705 RULE_VAL_EXPRESSION
/* value specified by expression */
708 #define NB_FRAME_REGS 41
713 ULONG_PTR code_align
;
715 ULONG_PTR cfa_offset
;
716 enum reg_rule cfa_rule
;
717 unsigned char cfa_reg
;
718 unsigned char retaddr_reg
;
719 unsigned char fde_encoding
;
720 unsigned char signal_frame
;
721 enum reg_rule rules
[NB_FRAME_REGS
];
722 ULONG64 regs
[NB_FRAME_REGS
];
725 static const char *dwarf_reg_names
[NB_FRAME_REGS
] =
727 /* 0-7 */ "%rax", "%rdx", "%rcx", "%rbx", "%rsi", "%rdi", "%rbp", "%rsp",
728 /* 8-16 */ "%r8", "%r9", "%r10", "%r11", "%r12", "%r13", "%r14", "%r15", "%rip",
729 /* 17-24 */ "%xmm0", "%xmm1", "%xmm2", "%xmm3", "%xmm4", "%xmm5", "%xmm6", "%xmm7",
730 /* 25-32 */ "%xmm8", "%xmm9", "%xmm10", "%xmm11", "%xmm12", "%xmm13", "%xmm14", "%xmm15",
731 /* 33-40 */ "%st0", "%st1", "%st2", "%st3", "%st4", "%st5", "%st6", "%st7"
734 static int valid_reg( ULONG_PTR reg
)
736 if (reg
>= NB_FRAME_REGS
) FIXME( "unsupported reg %lx\n", reg
);
737 return (reg
< NB_FRAME_REGS
);
740 static void execute_cfa_instructions( const unsigned char *ptr
, const unsigned char *end
,
741 ULONG_PTR last_ip
, struct frame_info
*info
)
743 while (ptr
< end
&& info
->ip
< last_ip
+ info
->signal_frame
)
745 enum dwarf_call_frame_info op
= *ptr
++;
751 case DW_CFA_advance_loc
:
753 ULONG_PTR offset
= (op
& 0x3f) * info
->code_align
;
754 TRACE( "%lx: DW_CFA_advance_loc %lu\n", info
->ip
, offset
);
760 ULONG_PTR reg
= op
& 0x3f;
761 LONG_PTR offset
= dwarf_get_uleb128( &ptr
) * info
->data_align
;
762 if (!valid_reg( reg
)) break;
763 TRACE( "%lx: DW_CFA_offset %s, %ld\n", info
->ip
, dwarf_reg_names
[reg
], offset
);
764 info
->regs
[reg
] = offset
;
765 info
->rules
[reg
] = RULE_CFA_OFFSET
;
770 ULONG_PTR reg
= op
& 0x3f;
771 if (!valid_reg( reg
)) break;
772 TRACE( "%lx: DW_CFA_restore %s\n", info
->ip
, dwarf_reg_names
[reg
] );
773 info
->rules
[reg
] = RULE_UNSET
;
784 ULONG_PTR loc
= dwarf_get_ptr( &ptr
, info
->fde_encoding
);
785 TRACE( "%lx: DW_CFA_set_loc %lx\n", info
->ip
, loc
);
789 case DW_CFA_advance_loc1
:
791 ULONG_PTR offset
= *ptr
++ * info
->code_align
;
792 TRACE( "%lx: DW_CFA_advance_loc1 %lu\n", info
->ip
, offset
);
796 case DW_CFA_advance_loc2
:
798 ULONG_PTR offset
= dwarf_get_u2( &ptr
) * info
->code_align
;
799 TRACE( "%lx: DW_CFA_advance_loc2 %lu\n", info
->ip
, offset
);
803 case DW_CFA_advance_loc4
:
805 ULONG_PTR offset
= dwarf_get_u4( &ptr
) * info
->code_align
;
806 TRACE( "%lx: DW_CFA_advance_loc4 %lu\n", info
->ip
, offset
);
810 case DW_CFA_offset_extended
:
811 case DW_CFA_offset_extended_sf
:
813 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
814 LONG_PTR offset
= (op
== DW_CFA_offset_extended
) ? dwarf_get_uleb128( &ptr
) * info
->data_align
815 : dwarf_get_sleb128( &ptr
) * info
->data_align
;
816 if (!valid_reg( reg
)) break;
817 TRACE( "%lx: DW_CFA_offset_extended %s, %ld\n", info
->ip
, dwarf_reg_names
[reg
], offset
);
818 info
->regs
[reg
] = offset
;
819 info
->rules
[reg
] = RULE_CFA_OFFSET
;
822 case DW_CFA_restore_extended
:
824 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
825 if (!valid_reg( reg
)) break;
826 TRACE( "%lx: DW_CFA_restore_extended %s\n", info
->ip
, dwarf_reg_names
[reg
] );
827 info
->rules
[reg
] = RULE_UNSET
;
830 case DW_CFA_undefined
:
832 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
833 if (!valid_reg( reg
)) break;
834 TRACE( "%lx: DW_CFA_undefined %s\n", info
->ip
, dwarf_reg_names
[reg
] );
835 info
->rules
[reg
] = RULE_UNDEFINED
;
838 case DW_CFA_same_value
:
840 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
841 if (!valid_reg( reg
)) break;
842 TRACE( "%lx: DW_CFA_same_value %s\n", info
->ip
, dwarf_reg_names
[reg
] );
843 info
->regs
[reg
] = reg
;
844 info
->rules
[reg
] = RULE_SAME
;
847 case DW_CFA_register
:
849 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
850 ULONG_PTR reg2
= dwarf_get_uleb128( &ptr
);
851 if (!valid_reg( reg
) || !valid_reg( reg2
)) break;
852 TRACE( "%lx: DW_CFA_register %s == %s\n", info
->ip
, dwarf_reg_names
[reg
], dwarf_reg_names
[reg2
] );
853 info
->regs
[reg
] = reg2
;
854 info
->rules
[reg
] = RULE_OTHER_REG
;
857 case DW_CFA_remember_state
:
858 FIXME( "%lx: DW_CFA_remember_state not implemented\n", info
->ip
);
860 case DW_CFA_restore_state
:
861 FIXME( "%lx: DW_CFA_restore_state not implemented\n", info
->ip
);
864 case DW_CFA_def_cfa_sf
:
866 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
867 ULONG_PTR offset
= (op
== DW_CFA_def_cfa
) ? dwarf_get_uleb128( &ptr
)
868 : dwarf_get_sleb128( &ptr
) * info
->data_align
;
869 if (!valid_reg( reg
)) break;
870 TRACE( "%lx: DW_CFA_def_cfa %s, %lu\n", info
->ip
, dwarf_reg_names
[reg
], offset
);
872 info
->cfa_offset
= offset
;
873 info
->cfa_rule
= RULE_CFA_OFFSET
;
876 case DW_CFA_def_cfa_register
:
878 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
879 if (!valid_reg( reg
)) break;
880 TRACE( "%lx: DW_CFA_def_cfa_register %s\n", info
->ip
, dwarf_reg_names
[reg
] );
882 info
->cfa_rule
= RULE_CFA_OFFSET
;
885 case DW_CFA_def_cfa_offset
:
886 case DW_CFA_def_cfa_offset_sf
:
888 ULONG_PTR offset
= (op
== DW_CFA_def_cfa_offset
) ? dwarf_get_uleb128( &ptr
)
889 : dwarf_get_sleb128( &ptr
) * info
->data_align
;
890 TRACE( "%lx: DW_CFA_def_cfa_offset %lu\n", info
->ip
, offset
);
891 info
->cfa_offset
= offset
;
892 info
->cfa_rule
= RULE_CFA_OFFSET
;
895 case DW_CFA_def_cfa_expression
:
897 ULONG_PTR expr
= (ULONG_PTR
)ptr
;
898 ULONG_PTR len
= dwarf_get_uleb128( &ptr
);
899 TRACE( "%lx: DW_CFA_def_cfa_expression %lx-%lx\n", info
->ip
, expr
, expr
+len
);
900 info
->cfa_offset
= expr
;
901 info
->cfa_rule
= RULE_VAL_EXPRESSION
;
905 case DW_CFA_expression
:
906 case DW_CFA_val_expression
:
908 ULONG_PTR reg
= dwarf_get_uleb128( &ptr
);
909 ULONG_PTR expr
= (ULONG_PTR
)ptr
;
910 ULONG_PTR len
= dwarf_get_uleb128( &ptr
);
911 if (!valid_reg( reg
)) break;
912 TRACE( "%lx: DW_CFA_%sexpression %s %lx-%lx\n",
913 info
->ip
, (op
== DW_CFA_expression
) ? "" : "val_", dwarf_reg_names
[reg
], expr
, expr
+len
);
914 info
->regs
[reg
] = expr
;
915 info
->rules
[reg
] = (op
== DW_CFA_expression
) ? RULE_EXPRESSION
: RULE_VAL_EXPRESSION
;
920 FIXME( "%lx: unknown CFA opcode %02x\n", info
->ip
, op
);
926 /* retrieve a context register from its dwarf number */
927 static void *get_context_reg( CONTEXT
*context
, ULONG_PTR dw_reg
)
931 case 0: return &context
->Rax
;
932 case 1: return &context
->Rdx
;
933 case 2: return &context
->Rcx
;
934 case 3: return &context
->Rbx
;
935 case 4: return &context
->Rsi
;
936 case 5: return &context
->Rdi
;
937 case 6: return &context
->Rbp
;
938 case 7: return &context
->Rsp
;
939 case 8: return &context
->R8
;
940 case 9: return &context
->R9
;
941 case 10: return &context
->R10
;
942 case 11: return &context
->R11
;
943 case 12: return &context
->R12
;
944 case 13: return &context
->R13
;
945 case 14: return &context
->R14
;
946 case 15: return &context
->R15
;
947 case 16: return &context
->Rip
;
948 case 17: return &context
->u
.s
.Xmm0
;
949 case 18: return &context
->u
.s
.Xmm1
;
950 case 19: return &context
->u
.s
.Xmm2
;
951 case 20: return &context
->u
.s
.Xmm3
;
952 case 21: return &context
->u
.s
.Xmm4
;
953 case 22: return &context
->u
.s
.Xmm5
;
954 case 23: return &context
->u
.s
.Xmm6
;
955 case 24: return &context
->u
.s
.Xmm7
;
956 case 25: return &context
->u
.s
.Xmm8
;
957 case 26: return &context
->u
.s
.Xmm9
;
958 case 27: return &context
->u
.s
.Xmm10
;
959 case 28: return &context
->u
.s
.Xmm11
;
960 case 29: return &context
->u
.s
.Xmm12
;
961 case 30: return &context
->u
.s
.Xmm13
;
962 case 31: return &context
->u
.s
.Xmm14
;
963 case 32: return &context
->u
.s
.Xmm15
;
964 case 33: return &context
->u
.s
.Legacy
[0];
965 case 34: return &context
->u
.s
.Legacy
[1];
966 case 35: return &context
->u
.s
.Legacy
[2];
967 case 36: return &context
->u
.s
.Legacy
[3];
968 case 37: return &context
->u
.s
.Legacy
[4];
969 case 38: return &context
->u
.s
.Legacy
[5];
970 case 39: return &context
->u
.s
.Legacy
[6];
971 case 40: return &context
->u
.s
.Legacy
[7];
972 default: return NULL
;
976 /* set a context register from its dwarf number */
977 static void set_context_reg( CONTEXT
*context
, ULONG_PTR dw_reg
, void *val
)
981 case 0: context
->Rax
= *(ULONG64
*)val
; break;
982 case 1: context
->Rdx
= *(ULONG64
*)val
; break;
983 case 2: context
->Rcx
= *(ULONG64
*)val
; break;
984 case 3: context
->Rbx
= *(ULONG64
*)val
; break;
985 case 4: context
->Rsi
= *(ULONG64
*)val
; break;
986 case 5: context
->Rdi
= *(ULONG64
*)val
; break;
987 case 6: context
->Rbp
= *(ULONG64
*)val
; break;
988 case 7: context
->Rsp
= *(ULONG64
*)val
; break;
989 case 8: context
->R8
= *(ULONG64
*)val
; break;
990 case 9: context
->R9
= *(ULONG64
*)val
; break;
991 case 10: context
->R10
= *(ULONG64
*)val
; break;
992 case 11: context
->R11
= *(ULONG64
*)val
; break;
993 case 12: context
->R12
= *(ULONG64
*)val
; break;
994 case 13: context
->R13
= *(ULONG64
*)val
; break;
995 case 14: context
->R14
= *(ULONG64
*)val
; break;
996 case 15: context
->R15
= *(ULONG64
*)val
; break;
997 case 16: context
->Rip
= *(ULONG64
*)val
; break;
998 case 17: context
->u
.s
.Xmm0
= *(M128A
*)val
; break;
999 case 18: context
->u
.s
.Xmm1
= *(M128A
*)val
; break;
1000 case 19: context
->u
.s
.Xmm2
= *(M128A
*)val
; break;
1001 case 20: context
->u
.s
.Xmm3
= *(M128A
*)val
; break;
1002 case 21: context
->u
.s
.Xmm4
= *(M128A
*)val
; break;
1003 case 22: context
->u
.s
.Xmm5
= *(M128A
*)val
; break;
1004 case 23: context
->u
.s
.Xmm6
= *(M128A
*)val
; break;
1005 case 24: context
->u
.s
.Xmm7
= *(M128A
*)val
; break;
1006 case 25: context
->u
.s
.Xmm8
= *(M128A
*)val
; break;
1007 case 26: context
->u
.s
.Xmm9
= *(M128A
*)val
; break;
1008 case 27: context
->u
.s
.Xmm10
= *(M128A
*)val
; break;
1009 case 28: context
->u
.s
.Xmm11
= *(M128A
*)val
; break;
1010 case 29: context
->u
.s
.Xmm12
= *(M128A
*)val
; break;
1011 case 30: context
->u
.s
.Xmm13
= *(M128A
*)val
; break;
1012 case 31: context
->u
.s
.Xmm14
= *(M128A
*)val
; break;
1013 case 32: context
->u
.s
.Xmm15
= *(M128A
*)val
; break;
1014 case 33: context
->u
.s
.Legacy
[0] = *(M128A
*)val
; break;
1015 case 34: context
->u
.s
.Legacy
[1] = *(M128A
*)val
; break;
1016 case 35: context
->u
.s
.Legacy
[2] = *(M128A
*)val
; break;
1017 case 36: context
->u
.s
.Legacy
[3] = *(M128A
*)val
; break;
1018 case 37: context
->u
.s
.Legacy
[4] = *(M128A
*)val
; break;
1019 case 38: context
->u
.s
.Legacy
[5] = *(M128A
*)val
; break;
1020 case 39: context
->u
.s
.Legacy
[6] = *(M128A
*)val
; break;
1021 case 40: context
->u
.s
.Legacy
[7] = *(M128A
*)val
; break;
1025 static ULONG_PTR
eval_expression( const unsigned char *p
, CONTEXT
*context
)
1027 ULONG_PTR reg
, tmp
, stack
[64];
1029 ULONG_PTR len
= dwarf_get_uleb128(&p
);
1030 const unsigned char *end
= p
+ len
;
1034 unsigned char opcode
= dwarf_get_u1(&p
);
1036 if (opcode
>= DW_OP_lit0
&& opcode
<= DW_OP_lit31
)
1037 stack
[++sp
] = opcode
- DW_OP_lit0
;
1038 else if (opcode
>= DW_OP_reg0
&& opcode
<= DW_OP_reg31
)
1039 stack
[++sp
] = *(ULONG_PTR
*)get_context_reg( context
, opcode
- DW_OP_reg0
);
1040 else if (opcode
>= DW_OP_breg0
&& opcode
<= DW_OP_breg31
)
1041 stack
[++sp
] = *(ULONG_PTR
*)get_context_reg( context
, opcode
- DW_OP_breg0
) + dwarf_get_sleb128(&p
);
1042 else switch (opcode
)
1044 case DW_OP_nop
: break;
1045 case DW_OP_addr
: stack
[++sp
] = dwarf_get_u8(&p
); break;
1046 case DW_OP_const1u
: stack
[++sp
] = dwarf_get_u1(&p
); break;
1047 case DW_OP_const1s
: stack
[++sp
] = (signed char)dwarf_get_u1(&p
); break;
1048 case DW_OP_const2u
: stack
[++sp
] = dwarf_get_u2(&p
); break;
1049 case DW_OP_const2s
: stack
[++sp
] = (short)dwarf_get_u2(&p
); break;
1050 case DW_OP_const4u
: stack
[++sp
] = dwarf_get_u4(&p
); break;
1051 case DW_OP_const4s
: stack
[++sp
] = (signed int)dwarf_get_u4(&p
); break;
1052 case DW_OP_const8u
: stack
[++sp
] = dwarf_get_u8(&p
); break;
1053 case DW_OP_const8s
: stack
[++sp
] = (LONG_PTR
)dwarf_get_u8(&p
); break;
1054 case DW_OP_constu
: stack
[++sp
] = dwarf_get_uleb128(&p
); break;
1055 case DW_OP_consts
: stack
[++sp
] = dwarf_get_sleb128(&p
); break;
1056 case DW_OP_deref
: stack
[sp
] = *(ULONG_PTR
*)stack
[sp
]; break;
1057 case DW_OP_dup
: stack
[sp
+ 1] = stack
[sp
]; sp
++; break;
1058 case DW_OP_drop
: sp
--; break;
1059 case DW_OP_over
: stack
[sp
+ 1] = stack
[sp
- 1]; sp
++; break;
1060 case DW_OP_pick
: stack
[sp
+ 1] = stack
[sp
- dwarf_get_u1(&p
)]; sp
++; break;
1061 case DW_OP_swap
: tmp
= stack
[sp
]; stack
[sp
] = stack
[sp
-1]; stack
[sp
-1] = tmp
; break;
1062 case DW_OP_rot
: tmp
= stack
[sp
]; stack
[sp
] = stack
[sp
-1]; stack
[sp
-1] = stack
[sp
-2]; stack
[sp
-2] = tmp
; break;
1063 case DW_OP_abs
: stack
[sp
] = labs(stack
[sp
]); break;
1064 case DW_OP_neg
: stack
[sp
] = -stack
[sp
]; break;
1065 case DW_OP_not
: stack
[sp
] = ~stack
[sp
]; break;
1066 case DW_OP_and
: stack
[sp
-1] &= stack
[sp
]; sp
--; break;
1067 case DW_OP_or
: stack
[sp
-1] |= stack
[sp
]; sp
--; break;
1068 case DW_OP_minus
: stack
[sp
-1] -= stack
[sp
]; sp
--; break;
1069 case DW_OP_mul
: stack
[sp
-1] *= stack
[sp
]; sp
--; break;
1070 case DW_OP_plus
: stack
[sp
-1] += stack
[sp
]; sp
--; break;
1071 case DW_OP_xor
: stack
[sp
-1] ^= stack
[sp
]; sp
--; break;
1072 case DW_OP_shl
: stack
[sp
-1] <<= stack
[sp
]; sp
--; break;
1073 case DW_OP_shr
: stack
[sp
-1] >>= stack
[sp
]; sp
--; break;
1074 case DW_OP_plus_uconst
: stack
[sp
] += dwarf_get_uleb128(&p
); break;
1075 case DW_OP_shra
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] / (1 << stack
[sp
]); sp
--; break;
1076 case DW_OP_div
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] / (LONG_PTR
)stack
[sp
]; sp
--; break;
1077 case DW_OP_mod
: stack
[sp
-1] = (LONG_PTR
)stack
[sp
-1] % (LONG_PTR
)stack
[sp
]; sp
--; break;
1078 case DW_OP_ge
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] >= (LONG_PTR
)stack
[sp
]); sp
--; break;
1079 case DW_OP_gt
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] > (LONG_PTR
)stack
[sp
]); sp
--; break;
1080 case DW_OP_le
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] <= (LONG_PTR
)stack
[sp
]); sp
--; break;
1081 case DW_OP_lt
: stack
[sp
-1] = ((LONG_PTR
)stack
[sp
-1] < (LONG_PTR
)stack
[sp
]); sp
--; break;
1082 case DW_OP_eq
: stack
[sp
-1] = (stack
[sp
-1] == stack
[sp
]); sp
--; break;
1083 case DW_OP_ne
: stack
[sp
-1] = (stack
[sp
-1] != stack
[sp
]); sp
--; break;
1084 case DW_OP_skip
: tmp
= (short)dwarf_get_u2(&p
); p
+= tmp
; break;
1085 case DW_OP_bra
: tmp
= (short)dwarf_get_u2(&p
); if (!stack
[sp
--]) p
+= tmp
; break;
1086 case DW_OP_GNU_encoded_addr
: tmp
= *p
++; stack
[++sp
] = dwarf_get_ptr( &p
, tmp
); break;
1087 case DW_OP_regx
: stack
[++sp
] = *(ULONG_PTR
*)get_context_reg( context
, dwarf_get_uleb128(&p
) ); break;
1089 reg
= dwarf_get_uleb128(&p
);
1090 tmp
= dwarf_get_sleb128(&p
);
1091 stack
[++sp
] = *(ULONG_PTR
*)get_context_reg( context
, reg
) + tmp
;
1093 case DW_OP_deref_size
:
1096 case 1: stack
[sp
] = *(unsigned char *)stack
[sp
]; break;
1097 case 2: stack
[sp
] = *(unsigned short *)stack
[sp
]; break;
1098 case 4: stack
[sp
] = *(unsigned int *)stack
[sp
]; break;
1099 case 8: stack
[sp
] = *(ULONG_PTR
*)stack
[sp
]; break;
1103 FIXME( "unhandled opcode %02x\n", opcode
);
1109 /* apply the computed frame info to the actual context */
1110 static void apply_frame_info( CONTEXT
*context
, struct frame_info
*info
)
1113 ULONG_PTR cfa
, value
;
1114 CONTEXT new_context
= *context
;
1116 switch (info
->cfa_rule
)
1118 case RULE_EXPRESSION
:
1119 cfa
= *(ULONG_PTR
*)eval_expression( (const unsigned char *)info
->cfa_offset
, context
);
1121 case RULE_VAL_EXPRESSION
:
1122 cfa
= eval_expression( (const unsigned char *)info
->cfa_offset
, context
);
1125 cfa
= *(ULONG_PTR
*)get_context_reg( context
, info
->cfa_reg
) + info
->cfa_offset
;
1130 for (i
= 0; i
< NB_FRAME_REGS
; i
++)
1132 switch (info
->rules
[i
])
1135 case RULE_UNDEFINED
:
1138 case RULE_CFA_OFFSET
:
1139 set_context_reg( &new_context
, i
, (char *)cfa
+ info
->regs
[i
] );
1141 case RULE_OTHER_REG
:
1142 set_context_reg( &new_context
, i
, get_context_reg( context
, info
->regs
[i
] ));
1144 case RULE_EXPRESSION
:
1145 value
= eval_expression( (const unsigned char *)info
->regs
[i
], context
);
1146 set_context_reg( &new_context
, i
, (void *)value
);
1148 case RULE_VAL_EXPRESSION
:
1149 value
= eval_expression( (const unsigned char *)info
->regs
[i
], context
);
1150 set_context_reg( &new_context
, i
, &value
);
1154 new_context
.Rsp
= cfa
;
1155 *context
= new_context
;
1159 /***********************************************************************
1160 * dwarf_virtual_unwind
1162 * Equivalent of RtlVirtualUnwind for builtin modules.
1164 static NTSTATUS
dwarf_virtual_unwind( ULONG64 ip
, ULONG64
*frame
,CONTEXT
*context
,
1165 const struct dwarf_fde
*fde
, const struct dwarf_eh_bases
*bases
,
1166 PEXCEPTION_ROUTINE
*handler
, void **handler_data
)
1168 const struct dwarf_cie
*cie
;
1169 const unsigned char *ptr
, *augmentation
, *end
;
1170 ULONG_PTR len
, code_end
;
1171 struct frame_info info
;
1172 int aug_z_format
= 0;
1173 unsigned char lsda_encoding
= DW_EH_PE_omit
;
1175 memset( &info
, 0, sizeof(info
) );
1176 info
.ip
= (ULONG_PTR
)bases
->func
;
1179 cie
= (const struct dwarf_cie
*)((const char *)&fde
->cie_offset
- fde
->cie_offset
);
1181 /* parse the CIE first */
1183 if (cie
->version
!= 1)
1185 FIXME( "unknown CIE version %u at %p\n", cie
->version
, cie
);
1186 return STATUS_INVALID_DISPOSITION
;
1188 ptr
= cie
->augmentation
+ strlen((const char *)cie
->augmentation
) + 1;
1190 info
.code_align
= dwarf_get_uleb128( &ptr
);
1191 info
.data_align
= dwarf_get_sleb128( &ptr
);
1192 info
.retaddr_reg
= *ptr
++;
1193 info
.cfa_rule
= RULE_CFA_OFFSET
;
1195 TRACE( "function %lx base %p cie %p len %x id %x version %x aug '%s' code_align %lu data_align %ld retaddr %s\n",
1196 ip
, bases
->func
, cie
, cie
->length
, cie
->id
, cie
->version
, cie
->augmentation
,
1197 info
.code_align
, info
.data_align
, dwarf_reg_names
[info
.retaddr_reg
] );
1200 for (augmentation
= cie
->augmentation
; *augmentation
; augmentation
++)
1202 switch (*augmentation
)
1205 len
= dwarf_get_uleb128( &ptr
);
1210 lsda_encoding
= *ptr
++;
1214 unsigned char encoding
= *ptr
++;
1215 *handler
= (void *)dwarf_get_ptr( &ptr
, encoding
);
1219 info
.fde_encoding
= *ptr
++;
1222 info
.signal_frame
= 1;
1225 FIXME( "unknown augmentation '%c'\n", *augmentation
);
1226 if (!end
) return STATUS_INVALID_DISPOSITION
; /* cannot continue */
1231 end
= (const unsigned char *)(&cie
->length
+ 1) + cie
->length
;
1232 execute_cfa_instructions( ptr
, end
, ip
, &info
);
1234 ptr
= (const unsigned char *)(fde
+ 1);
1235 info
.ip
= dwarf_get_ptr( &ptr
, info
.fde_encoding
); /* fde code start */
1236 code_end
= info
.ip
+ dwarf_get_ptr( &ptr
, info
.fde_encoding
& 0x0f ); /* fde code length */
1238 if (aug_z_format
) /* get length of augmentation data */
1240 len
= dwarf_get_uleb128( &ptr
);
1245 *handler_data
= (void *)dwarf_get_ptr( &ptr
, lsda_encoding
);
1248 end
= (const unsigned char *)(&fde
->length
+ 1) + fde
->length
;
1249 TRACE( "fde %p len %x personality %p lsda %p code %lx-%lx\n",
1250 fde
, fde
->length
, *handler
, *handler_data
, info
.ip
, code_end
);
1251 execute_cfa_instructions( ptr
, end
, ip
, &info
);
1252 apply_frame_info( context
, &info
);
1253 *frame
= context
->Rsp
;
1255 TRACE( "next function rip=%016lx\n", context
->Rip
);
1256 TRACE( " rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
1257 context
->Rax
, context
->Rbx
, context
->Rcx
, context
->Rdx
);
1258 TRACE( " rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
1259 context
->Rsi
, context
->Rdi
, context
->Rbp
, context
->Rsp
);
1260 TRACE( " r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
1261 context
->R8
, context
->R9
, context
->R10
, context
->R11
);
1262 TRACE( " r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
1263 context
->R12
, context
->R13
, context
->R14
, context
->R15
);
1265 return STATUS_SUCCESS
;
1269 /***********************************************************************
1272 static inline int dispatch_signal(unsigned int sig
)
1274 if (handlers
[sig
] == NULL
) return 0;
1275 return handlers
[sig
](sig
);
1278 /***********************************************************************
1281 * Get the base of the signal stack for the current thread.
1283 static inline void *get_signal_stack(void)
1285 return (char *)NtCurrentTeb() + teb_size
;
1288 /***********************************************************************
1289 * is_inside_signal_stack
1291 * Check if pointer is inside the signal stack.
1293 static inline int is_inside_signal_stack( void *ptr
)
1295 return ((char *)ptr
>= (char *)get_signal_stack() &&
1296 (char *)ptr
< (char *)get_signal_stack() + signal_stack_size
);
1299 /***********************************************************************
1302 * Set the register values from a sigcontext.
1304 static void save_context( CONTEXT
*context
, const ucontext_t
*sigcontext
)
1306 context
->ContextFlags
= CONTEXT_CONTROL
| CONTEXT_INTEGER
| CONTEXT_SEGMENTS
;
1307 context
->Rax
= RAX_sig(sigcontext
);
1308 context
->Rcx
= RCX_sig(sigcontext
);
1309 context
->Rdx
= RDX_sig(sigcontext
);
1310 context
->Rbx
= RBX_sig(sigcontext
);
1311 context
->Rsp
= RSP_sig(sigcontext
);
1312 context
->Rbp
= RBP_sig(sigcontext
);
1313 context
->Rsi
= RSI_sig(sigcontext
);
1314 context
->Rdi
= RDI_sig(sigcontext
);
1315 context
->R8
= R8_sig(sigcontext
);
1316 context
->R9
= R9_sig(sigcontext
);
1317 context
->R10
= R10_sig(sigcontext
);
1318 context
->R11
= R11_sig(sigcontext
);
1319 context
->R12
= R12_sig(sigcontext
);
1320 context
->R13
= R13_sig(sigcontext
);
1321 context
->R14
= R14_sig(sigcontext
);
1322 context
->R15
= R15_sig(sigcontext
);
1323 context
->Rip
= RIP_sig(sigcontext
);
1324 context
->SegCs
= CS_sig(sigcontext
);
1325 context
->SegFs
= FS_sig(sigcontext
);
1326 context
->SegGs
= GS_sig(sigcontext
);
1327 context
->EFlags
= EFL_sig(sigcontext
);
1329 context
->SegDs
= DS_sig(sigcontext
);
1331 __asm__("movw %%ds,%0" : "=m" (context
->SegDs
));
1334 context
->SegEs
= ES_sig(sigcontext
);
1336 __asm__("movw %%es,%0" : "=m" (context
->SegEs
));
1339 context
->SegSs
= SS_sig(sigcontext
);
1341 __asm__("movw %%ss,%0" : "=m" (context
->SegSs
));
1343 if (FPU_sig(sigcontext
))
1345 context
->ContextFlags
|= CONTEXT_FLOATING_POINT
;
1346 context
->u
.FltSave
= *FPU_sig(sigcontext
);
1347 context
->MxCsr
= context
->u
.FltSave
.MxCsr
;
1352 /***********************************************************************
1355 * Build a sigcontext from the register values.
1357 static void restore_context( const CONTEXT
*context
, ucontext_t
*sigcontext
)
1359 RAX_sig(sigcontext
) = context
->Rax
;
1360 RCX_sig(sigcontext
) = context
->Rcx
;
1361 RDX_sig(sigcontext
) = context
->Rdx
;
1362 RBX_sig(sigcontext
) = context
->Rbx
;
1363 RSP_sig(sigcontext
) = context
->Rsp
;
1364 RBP_sig(sigcontext
) = context
->Rbp
;
1365 RSI_sig(sigcontext
) = context
->Rsi
;
1366 RDI_sig(sigcontext
) = context
->Rdi
;
1367 R8_sig(sigcontext
) = context
->R8
;
1368 R9_sig(sigcontext
) = context
->R9
;
1369 R10_sig(sigcontext
) = context
->R10
;
1370 R11_sig(sigcontext
) = context
->R11
;
1371 R12_sig(sigcontext
) = context
->R12
;
1372 R13_sig(sigcontext
) = context
->R13
;
1373 R14_sig(sigcontext
) = context
->R14
;
1374 R15_sig(sigcontext
) = context
->R15
;
1375 RIP_sig(sigcontext
) = context
->Rip
;
1376 CS_sig(sigcontext
) = context
->SegCs
;
1377 FS_sig(sigcontext
) = context
->SegFs
;
1378 GS_sig(sigcontext
) = context
->SegGs
;
1379 EFL_sig(sigcontext
) = context
->EFlags
;
1381 DS_sig(sigcontext
) = context
->SegDs
;
1384 ES_sig(sigcontext
) = context
->SegEs
;
1387 SS_sig(sigcontext
) = context
->SegSs
;
1389 if (FPU_sig(sigcontext
)) *FPU_sig(sigcontext
) = context
->u
.FltSave
;
1393 /***********************************************************************
1394 * RtlCaptureContext (NTDLL.@)
1396 void WINAPI
__regs_RtlCaptureContext( CONTEXT
*context
, CONTEXT
*regs
)
1400 DEFINE_REGS_ENTRYPOINT( RtlCaptureContext
, 1 )
1403 /***********************************************************************
1406 * Set the new CPU context.
1408 void set_cpu_context( const CONTEXT
*context
)
1410 extern void CDECL
__wine_restore_regs( const CONTEXT
* ) DECLSPEC_NORETURN
;
1411 __wine_restore_regs( context
);
1415 /***********************************************************************
1418 * Copy a register context according to the flags.
1420 void copy_context( CONTEXT
*to
, const CONTEXT
*from
, DWORD flags
)
1422 flags
&= ~CONTEXT_AMD64
; /* get rid of CPU id */
1423 if (flags
& CONTEXT_CONTROL
)
1425 to
->Rbp
= from
->Rbp
;
1426 to
->Rip
= from
->Rip
;
1427 to
->Rsp
= from
->Rsp
;
1428 to
->SegCs
= from
->SegCs
;
1429 to
->SegSs
= from
->SegSs
;
1430 to
->EFlags
= from
->EFlags
;
1432 if (flags
& CONTEXT_INTEGER
)
1434 to
->Rax
= from
->Rax
;
1435 to
->Rcx
= from
->Rcx
;
1436 to
->Rdx
= from
->Rdx
;
1437 to
->Rbx
= from
->Rbx
;
1438 to
->Rsi
= from
->Rsi
;
1439 to
->Rdi
= from
->Rdi
;
1442 to
->R10
= from
->R10
;
1443 to
->R11
= from
->R11
;
1444 to
->R12
= from
->R12
;
1445 to
->R13
= from
->R13
;
1446 to
->R14
= from
->R14
;
1447 to
->R15
= from
->R15
;
1449 if (flags
& CONTEXT_SEGMENTS
)
1451 to
->SegDs
= from
->SegDs
;
1452 to
->SegEs
= from
->SegEs
;
1453 to
->SegFs
= from
->SegFs
;
1454 to
->SegGs
= from
->SegGs
;
1456 if (flags
& CONTEXT_FLOATING_POINT
)
1458 to
->MxCsr
= from
->MxCsr
;
1459 to
->u
.FltSave
= from
->u
.FltSave
;
1461 if (flags
& CONTEXT_DEBUG_REGISTERS
)
1463 to
->Dr0
= from
->Dr0
;
1464 to
->Dr1
= from
->Dr1
;
1465 to
->Dr2
= from
->Dr2
;
1466 to
->Dr3
= from
->Dr3
;
1467 to
->Dr6
= from
->Dr6
;
1468 to
->Dr7
= from
->Dr7
;
1473 /***********************************************************************
1476 * Convert a register context to the server format.
1478 NTSTATUS
context_to_server( context_t
*to
, const CONTEXT
*from
)
1480 DWORD flags
= from
->ContextFlags
& ~CONTEXT_AMD64
; /* get rid of CPU id */
1482 memset( to
, 0, sizeof(*to
) );
1483 to
->cpu
= CPU_x86_64
;
1485 if (flags
& CONTEXT_CONTROL
)
1487 to
->flags
|= SERVER_CTX_CONTROL
;
1488 to
->ctl
.x86_64_regs
.rbp
= from
->Rbp
;
1489 to
->ctl
.x86_64_regs
.rip
= from
->Rip
;
1490 to
->ctl
.x86_64_regs
.rsp
= from
->Rsp
;
1491 to
->ctl
.x86_64_regs
.cs
= from
->SegCs
;
1492 to
->ctl
.x86_64_regs
.ss
= from
->SegSs
;
1493 to
->ctl
.x86_64_regs
.flags
= from
->EFlags
;
1495 if (flags
& CONTEXT_INTEGER
)
1497 to
->flags
|= SERVER_CTX_INTEGER
;
1498 to
->integer
.x86_64_regs
.rax
= from
->Rax
;
1499 to
->integer
.x86_64_regs
.rcx
= from
->Rcx
;
1500 to
->integer
.x86_64_regs
.rdx
= from
->Rdx
;
1501 to
->integer
.x86_64_regs
.rbx
= from
->Rbx
;
1502 to
->integer
.x86_64_regs
.rsi
= from
->Rsi
;
1503 to
->integer
.x86_64_regs
.rdi
= from
->Rdi
;
1504 to
->integer
.x86_64_regs
.r8
= from
->R8
;
1505 to
->integer
.x86_64_regs
.r9
= from
->R9
;
1506 to
->integer
.x86_64_regs
.r10
= from
->R10
;
1507 to
->integer
.x86_64_regs
.r11
= from
->R11
;
1508 to
->integer
.x86_64_regs
.r12
= from
->R12
;
1509 to
->integer
.x86_64_regs
.r13
= from
->R13
;
1510 to
->integer
.x86_64_regs
.r14
= from
->R14
;
1511 to
->integer
.x86_64_regs
.r15
= from
->R15
;
1513 if (flags
& CONTEXT_SEGMENTS
)
1515 to
->flags
|= SERVER_CTX_SEGMENTS
;
1516 to
->seg
.x86_64_regs
.ds
= from
->SegDs
;
1517 to
->seg
.x86_64_regs
.es
= from
->SegEs
;
1518 to
->seg
.x86_64_regs
.fs
= from
->SegFs
;
1519 to
->seg
.x86_64_regs
.gs
= from
->SegGs
;
1521 if (flags
& CONTEXT_FLOATING_POINT
)
1523 to
->flags
|= SERVER_CTX_FLOATING_POINT
;
1524 memcpy( to
->fp
.x86_64_regs
.fpregs
, &from
->u
.FltSave
, sizeof(to
->fp
.x86_64_regs
.fpregs
) );
1526 if (flags
& CONTEXT_DEBUG_REGISTERS
)
1528 to
->flags
|= SERVER_CTX_DEBUG_REGISTERS
;
1529 to
->debug
.x86_64_regs
.dr0
= from
->Dr0
;
1530 to
->debug
.x86_64_regs
.dr1
= from
->Dr1
;
1531 to
->debug
.x86_64_regs
.dr2
= from
->Dr2
;
1532 to
->debug
.x86_64_regs
.dr3
= from
->Dr3
;
1533 to
->debug
.x86_64_regs
.dr6
= from
->Dr6
;
1534 to
->debug
.x86_64_regs
.dr7
= from
->Dr7
;
1536 return STATUS_SUCCESS
;
1540 /***********************************************************************
1541 * context_from_server
1543 * Convert a register context from the server format.
1545 NTSTATUS
context_from_server( CONTEXT
*to
, const context_t
*from
)
1547 if (from
->cpu
!= CPU_x86_64
) return STATUS_INVALID_PARAMETER
;
1549 to
->ContextFlags
= CONTEXT_AMD64
;
1550 if (from
->flags
& SERVER_CTX_CONTROL
)
1552 to
->ContextFlags
|= CONTEXT_CONTROL
;
1553 to
->Rbp
= from
->ctl
.x86_64_regs
.rbp
;
1554 to
->Rip
= from
->ctl
.x86_64_regs
.rip
;
1555 to
->Rsp
= from
->ctl
.x86_64_regs
.rsp
;
1556 to
->SegCs
= from
->ctl
.x86_64_regs
.cs
;
1557 to
->SegSs
= from
->ctl
.x86_64_regs
.ss
;
1558 to
->EFlags
= from
->ctl
.x86_64_regs
.flags
;
1561 if (from
->flags
& SERVER_CTX_INTEGER
)
1563 to
->ContextFlags
|= CONTEXT_INTEGER
;
1564 to
->Rax
= from
->integer
.x86_64_regs
.rax
;
1565 to
->Rcx
= from
->integer
.x86_64_regs
.rcx
;
1566 to
->Rdx
= from
->integer
.x86_64_regs
.rdx
;
1567 to
->Rbx
= from
->integer
.x86_64_regs
.rbx
;
1568 to
->Rsi
= from
->integer
.x86_64_regs
.rsi
;
1569 to
->Rdi
= from
->integer
.x86_64_regs
.rdi
;
1570 to
->R8
= from
->integer
.x86_64_regs
.r8
;
1571 to
->R9
= from
->integer
.x86_64_regs
.r9
;
1572 to
->R10
= from
->integer
.x86_64_regs
.r10
;
1573 to
->R11
= from
->integer
.x86_64_regs
.r11
;
1574 to
->R12
= from
->integer
.x86_64_regs
.r12
;
1575 to
->R13
= from
->integer
.x86_64_regs
.r13
;
1576 to
->R14
= from
->integer
.x86_64_regs
.r14
;
1577 to
->R15
= from
->integer
.x86_64_regs
.r15
;
1579 if (from
->flags
& SERVER_CTX_SEGMENTS
)
1581 to
->ContextFlags
|= CONTEXT_SEGMENTS
;
1582 to
->SegDs
= from
->seg
.x86_64_regs
.ds
;
1583 to
->SegEs
= from
->seg
.x86_64_regs
.es
;
1584 to
->SegFs
= from
->seg
.x86_64_regs
.fs
;
1585 to
->SegGs
= from
->seg
.x86_64_regs
.gs
;
1587 if (from
->flags
& SERVER_CTX_FLOATING_POINT
)
1589 to
->ContextFlags
|= CONTEXT_FLOATING_POINT
;
1590 memcpy( &to
->u
.FltSave
, from
->fp
.x86_64_regs
.fpregs
, sizeof(from
->fp
.x86_64_regs
.fpregs
) );
1591 to
->MxCsr
= to
->u
.FltSave
.MxCsr
;
1593 if (from
->flags
& SERVER_CTX_DEBUG_REGISTERS
)
1595 to
->ContextFlags
|= CONTEXT_DEBUG_REGISTERS
;
1596 to
->Dr0
= from
->debug
.x86_64_regs
.dr0
;
1597 to
->Dr1
= from
->debug
.x86_64_regs
.dr1
;
1598 to
->Dr2
= from
->debug
.x86_64_regs
.dr2
;
1599 to
->Dr3
= from
->debug
.x86_64_regs
.dr3
;
1600 to
->Dr6
= from
->debug
.x86_64_regs
.dr6
;
1601 to
->Dr7
= from
->debug
.x86_64_regs
.dr7
;
1603 return STATUS_SUCCESS
;
1607 extern void raise_func_trampoline( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, raise_func func
);
1608 __ASM_GLOBAL_FUNC( raise_func_trampoline
,
1609 ".cfi_signal_frame\n\t"
1610 ".cfi_def_cfa %rbp,144\n\t" /* red zone + rip + rbp */
1611 ".cfi_rel_offset %rip,8\n\t"
1612 ".cfi_rel_offset %rbp,0\n\t"
1616 /***********************************************************************
1619 * Setup a proper stack frame for the raise function, and modify the
1620 * sigcontext so that the return from the signal handler will call
1621 * the raise function.
1623 static EXCEPTION_RECORD
*setup_exception( ucontext_t
*sigcontext
, raise_func func
)
1628 EXCEPTION_RECORD rec
;
1631 ULONG64 red_zone
[16];
1634 DWORD exception_code
= 0;
1636 stack
= (struct stack_layout
*)(RSP_sig(sigcontext
) & ~15);
1638 /* stack sanity checks */
1640 if (is_inside_signal_stack( stack
))
1642 ERR( "nested exception on signal stack in thread %04x eip %016lx esp %016lx stack %p-%p\n",
1643 GetCurrentThreadId(), RIP_sig(sigcontext
), RSP_sig(sigcontext
),
1644 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
1648 if (stack
- 1 > stack
|| /* check for overflow in subtraction */
1649 (char *)stack
<= (char *)NtCurrentTeb()->DeallocationStack
||
1650 (char *)stack
> (char *)NtCurrentTeb()->Tib
.StackBase
)
1652 WARN( "exception outside of stack limits in thread %04x eip %016lx esp %016lx stack %p-%p\n",
1653 GetCurrentThreadId(), RIP_sig(sigcontext
), RSP_sig(sigcontext
),
1654 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
1656 else if ((char *)(stack
- 1) < (char *)NtCurrentTeb()->DeallocationStack
+ 4096)
1658 /* stack overflow on last page, unrecoverable */
1659 UINT diff
= (char *)NtCurrentTeb()->DeallocationStack
+ 4096 - (char *)(stack
- 1);
1660 ERR( "stack overflow %u bytes in thread %04x eip %016lx esp %016lx stack %p-%p-%p\n",
1661 diff
, GetCurrentThreadId(), RIP_sig(sigcontext
),
1662 RSP_sig(sigcontext
), NtCurrentTeb()->DeallocationStack
,
1663 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
1666 else if ((char *)(stack
- 1) < (char *)NtCurrentTeb()->Tib
.StackLimit
)
1668 /* stack access below stack limit, may be recoverable */
1669 if (virtual_handle_stack_fault( stack
- 1 )) exception_code
= EXCEPTION_STACK_OVERFLOW
;
1672 UINT diff
= (char *)NtCurrentTeb()->Tib
.StackLimit
- (char *)(stack
- 1);
1673 ERR( "stack overflow %u bytes in thread %04x eip %016lx esp %016lx stack %p-%p-%p\n",
1674 diff
, GetCurrentThreadId(), RIP_sig(sigcontext
),
1675 RSP_sig(sigcontext
), NtCurrentTeb()->DeallocationStack
,
1676 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
1681 stack
--; /* push the stack_layout structure */
1682 stack
->rec
.ExceptionRecord
= NULL
;
1683 stack
->rec
.ExceptionCode
= exception_code
;
1684 stack
->rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
1685 stack
->rec
.ExceptionAddress
= (void *)RIP_sig(sigcontext
);
1686 stack
->rec
.NumberParameters
= 0;
1687 save_context( &stack
->context
, sigcontext
);
1689 /* store return address and %rbp without aligning, so that the offset is fixed */
1690 rsp_ptr
= (ULONG64
*)RSP_sig(sigcontext
) - 16;
1691 *(--rsp_ptr
) = RIP_sig(sigcontext
);
1692 *(--rsp_ptr
) = RBP_sig(sigcontext
);
1694 /* now modify the sigcontext to return to the raise function */
1695 RIP_sig(sigcontext
) = (ULONG_PTR
)raise_func_trampoline
;
1696 RDI_sig(sigcontext
) = (ULONG_PTR
)&stack
->rec
;
1697 RSI_sig(sigcontext
) = (ULONG_PTR
)&stack
->context
;
1698 RDX_sig(sigcontext
) = (ULONG_PTR
)func
;
1699 RBP_sig(sigcontext
) = (ULONG_PTR
)rsp_ptr
;
1700 RSP_sig(sigcontext
) = (ULONG_PTR
)stack
;
1701 /* clear single-step, direction, and align check flag */
1702 EFL_sig(sigcontext
) &= ~(0x100|0x400|0x40000);
1708 /**********************************************************************
1709 * find_function_info
1711 static RUNTIME_FUNCTION
*find_function_info( ULONG64 pc
, HMODULE module
,
1712 RUNTIME_FUNCTION
*func
, ULONG size
)
1715 int max
= size
/sizeof(*func
) - 1;
1719 int pos
= (min
+ max
) / 2;
1720 if ((char *)pc
< (char *)module
+ func
[pos
].BeginAddress
) max
= pos
- 1;
1721 else if ((char *)pc
>= (char *)module
+ func
[pos
].EndAddress
) min
= pos
+ 1;
1725 while (func
->UnwindData
& 1) /* follow chained entry */
1726 func
= (RUNTIME_FUNCTION
*)((char *)module
+ (func
->UnwindData
& ~1));
1734 /**********************************************************************
1737 * Call a single exception handler.
1738 * FIXME: Handle nested exceptions.
1740 static NTSTATUS
call_handler( EXCEPTION_RECORD
*rec
, DISPATCHER_CONTEXT
*dispatch
, CONTEXT
*orig_context
)
1744 dispatch
->ControlPc
= dispatch
->ContextRecord
->Rip
;
1746 TRACE( "calling handler %p (rec=%p, frame=0x%lx context=%p, dispatch=%p)\n",
1747 dispatch
->LanguageHandler
, rec
, dispatch
->EstablisherFrame
, dispatch
->ContextRecord
, dispatch
);
1748 res
= dispatch
->LanguageHandler( rec
, dispatch
->EstablisherFrame
, dispatch
->ContextRecord
, dispatch
);
1749 TRACE( "handler at %p returned %u\n", dispatch
->LanguageHandler
, res
);
1753 case ExceptionContinueExecution
:
1754 if (rec
->ExceptionFlags
& EH_NONCONTINUABLE
) return STATUS_NONCONTINUABLE_EXCEPTION
;
1755 *orig_context
= *dispatch
->ContextRecord
;
1756 return STATUS_SUCCESS
;
1757 case ExceptionContinueSearch
:
1759 case ExceptionNestedException
:
1762 return STATUS_INVALID_DISPOSITION
;
1764 return STATUS_UNHANDLED_EXCEPTION
;
1768 /**********************************************************************
1771 * Call a single exception handler from the TEB chain.
1772 * FIXME: Handle nested exceptions.
1774 static NTSTATUS
call_teb_handler( EXCEPTION_RECORD
*rec
, DISPATCHER_CONTEXT
*dispatch
,
1775 EXCEPTION_REGISTRATION_RECORD
*teb_frame
, CONTEXT
*orig_context
)
1777 EXCEPTION_REGISTRATION_RECORD
*dispatcher
;
1780 TRACE( "calling TEB handler %p (rec=%p, frame=%p context=%p, dispatcher=%p)\n",
1781 teb_frame
->Handler
, rec
, teb_frame
, dispatch
->ContextRecord
, &dispatcher
);
1782 res
= teb_frame
->Handler( rec
, teb_frame
, dispatch
->ContextRecord
, &dispatcher
);
1783 TRACE( "handler at %p returned %u\n", teb_frame
->Handler
, res
);
1787 case ExceptionContinueExecution
:
1788 if (rec
->ExceptionFlags
& EH_NONCONTINUABLE
) return STATUS_NONCONTINUABLE_EXCEPTION
;
1789 *orig_context
= *dispatch
->ContextRecord
;
1790 return STATUS_SUCCESS
;
1791 case ExceptionContinueSearch
:
1793 case ExceptionNestedException
:
1796 return STATUS_INVALID_DISPOSITION
;
1798 return STATUS_UNHANDLED_EXCEPTION
;
1802 /**********************************************************************
1803 * call_stack_handlers
1805 * Call the stack handlers chain.
1807 static NTSTATUS
call_stack_handlers( EXCEPTION_RECORD
*rec
, CONTEXT
*orig_context
)
1809 EXCEPTION_REGISTRATION_RECORD
*teb_frame
= NtCurrentTeb()->Tib
.ExceptionList
;
1810 UNWIND_HISTORY_TABLE table
;
1811 RUNTIME_FUNCTION
*dir
;
1812 DISPATCHER_CONTEXT dispatch
;
1813 CONTEXT context
, new_context
;
1818 context
= *orig_context
;
1819 dispatch
.TargetIp
= 0;
1820 dispatch
.ContextRecord
= &context
;
1821 dispatch
.HistoryTable
= &table
;
1822 dispatch
.ScopeIndex
= 0; /* FIXME */
1825 new_context
= context
;
1827 /* FIXME: should use the history table to make things faster */
1831 dispatch
.ImageBase
= 0;
1833 if (!LdrFindEntryForAddress( (void *)context
.Rip
, &module
))
1835 if (!(dir
= RtlImageDirectoryEntryToData( module
->BaseAddress
, TRUE
,
1836 IMAGE_DIRECTORY_ENTRY_EXCEPTION
, &size
)) &&
1837 !(module
->Flags
& LDR_WINE_INTERNAL
))
1839 ERR( "module %s doesn't contain exception data, can't dispatch exception\n",
1840 debugstr_w(module
->BaseDllName
.Buffer
) );
1843 dispatch
.ImageBase
= (ULONG64
)module
->BaseAddress
;
1848 struct dwarf_eh_bases bases
;
1849 const struct dwarf_fde
*fde
= _Unwind_Find_FDE( (void *)(context
.Rip
- 1), &bases
);
1852 /* assume leaf function */
1853 context
.Rip
= *(ULONG64
*)context
.Rsp
;
1854 context
.Rsp
+= sizeof(ULONG64
);
1857 status
= dwarf_virtual_unwind( context
.Rip
, &dispatch
.EstablisherFrame
, &new_context
,
1858 fde
, &bases
, &dispatch
.LanguageHandler
, &dispatch
.HandlerData
);
1859 if (status
!= STATUS_SUCCESS
) return status
;
1860 dispatch
.FunctionEntry
= NULL
;
1861 if (dispatch
.LanguageHandler
&& !module
)
1863 FIXME( "calling personality routine in system library not supported yet\n" );
1864 dispatch
.LanguageHandler
= NULL
;
1869 if (!(dispatch
.FunctionEntry
= find_function_info( context
.Rip
, module
->BaseAddress
,
1873 context
.Rip
= *(ULONG64
*)context
.Rsp
;
1874 context
.Rsp
+= sizeof(ULONG64
);
1877 dispatch
.LanguageHandler
= RtlVirtualUnwind( UNW_FLAG_EHANDLER
, dispatch
.ImageBase
,
1878 context
.Rip
, dispatch
.FunctionEntry
,
1879 &new_context
, &dispatch
.HandlerData
,
1880 &dispatch
.EstablisherFrame
, NULL
);
1883 if (!dispatch
.EstablisherFrame
) break;
1885 if ((dispatch
.EstablisherFrame
& 7) ||
1886 dispatch
.EstablisherFrame
< (ULONG64
)NtCurrentTeb()->Tib
.StackLimit
||
1887 dispatch
.EstablisherFrame
> (ULONG64
)NtCurrentTeb()->Tib
.StackBase
)
1889 ERR( "invalid frame %lx (%p-%p)\n", dispatch
.EstablisherFrame
,
1890 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
1891 rec
->ExceptionFlags
|= EH_STACK_INVALID
;
1895 if (dispatch
.LanguageHandler
)
1897 status
= call_handler( rec
, &dispatch
, orig_context
);
1898 if (status
!= STATUS_UNHANDLED_EXCEPTION
) return status
;
1900 /* hack: call wine handlers registered in the tib list */
1901 else while ((ULONG64
)teb_frame
< new_context
.Rsp
)
1903 TRACE( "found wine frame %p rsp %lx handler %p\n",
1904 teb_frame
, new_context
.Rsp
, teb_frame
->Handler
);
1905 dispatch
.EstablisherFrame
= (ULONG64
)teb_frame
;
1906 context
= *orig_context
;
1907 status
= call_teb_handler( rec
, &dispatch
, teb_frame
, orig_context
);
1908 if (status
!= STATUS_UNHANDLED_EXCEPTION
) return status
;
1909 teb_frame
= teb_frame
->Prev
;
1912 if (new_context
.Rsp
== (ULONG64
)NtCurrentTeb()->Tib
.StackBase
) break;
1913 context
= new_context
;
1915 return STATUS_UNHANDLED_EXCEPTION
;
1919 /*******************************************************************
1922 * Implementation of NtRaiseException.
1924 static NTSTATUS
raise_exception( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, BOOL first_chance
)
1932 TRACE( "code=%x flags=%x addr=%p ip=%lx tid=%04x\n",
1933 rec
->ExceptionCode
, rec
->ExceptionFlags
, rec
->ExceptionAddress
,
1934 context
->Rip
, GetCurrentThreadId() );
1935 for (c
= 0; c
< min( EXCEPTION_MAXIMUM_PARAMETERS
, rec
->NumberParameters
); c
++)
1936 TRACE( " info[%d]=%08lx\n", c
, rec
->ExceptionInformation
[c
] );
1937 if (rec
->ExceptionCode
== EXCEPTION_WINE_STUB
)
1939 if (rec
->ExceptionInformation
[1] >> 16)
1940 MESSAGE( "wine: Call from %p to unimplemented function %s.%s, aborting\n",
1941 rec
->ExceptionAddress
,
1942 (char*)rec
->ExceptionInformation
[0], (char*)rec
->ExceptionInformation
[1] );
1944 MESSAGE( "wine: Call from %p to unimplemented function %s.%ld, aborting\n",
1945 rec
->ExceptionAddress
,
1946 (char*)rec
->ExceptionInformation
[0], rec
->ExceptionInformation
[1] );
1950 TRACE(" rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
1951 context
->Rax
, context
->Rbx
, context
->Rcx
, context
->Rdx
);
1952 TRACE(" rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
1953 context
->Rsi
, context
->Rdi
, context
->Rbp
, context
->Rsp
);
1954 TRACE(" r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
1955 context
->R8
, context
->R9
, context
->R10
, context
->R11
);
1956 TRACE(" r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
1957 context
->R12
, context
->R13
, context
->R14
, context
->R15
);
1959 status
= send_debug_event( rec
, TRUE
, context
);
1960 if (status
== DBG_CONTINUE
|| status
== DBG_EXCEPTION_HANDLED
)
1961 return STATUS_SUCCESS
;
1963 if (call_vectored_handlers( rec
, context
) == EXCEPTION_CONTINUE_EXECUTION
)
1964 return STATUS_SUCCESS
;
1966 if ((status
= call_stack_handlers( rec
, context
)) != STATUS_UNHANDLED_EXCEPTION
)
1970 /* last chance exception */
1972 status
= send_debug_event( rec
, FALSE
, context
);
1973 if (status
!= DBG_CONTINUE
)
1975 if (rec
->ExceptionFlags
& EH_STACK_INVALID
)
1976 ERR("Exception frame is not in stack limits => unable to dispatch exception.\n");
1977 else if (rec
->ExceptionCode
== STATUS_NONCONTINUABLE_EXCEPTION
)
1978 ERR("Process attempted to continue execution after noncontinuable exception.\n");
1980 ERR("Unhandled exception code %x flags %x addr %p\n",
1981 rec
->ExceptionCode
, rec
->ExceptionFlags
, rec
->ExceptionAddress
);
1982 NtTerminateProcess( NtCurrentProcess(), rec
->ExceptionCode
);
1984 return STATUS_SUCCESS
;
1988 /**********************************************************************
1989 * raise_segv_exception
1991 static void raise_segv_exception( EXCEPTION_RECORD
*rec
, CONTEXT
*context
)
1995 switch(rec
->ExceptionCode
)
1997 case EXCEPTION_ACCESS_VIOLATION
:
1998 if (rec
->NumberParameters
== 2)
2000 if (!(rec
->ExceptionCode
= virtual_handle_fault( (void *)rec
->ExceptionInformation
[1],
2001 rec
->ExceptionInformation
[0] )))
2002 set_cpu_context( context
);
2006 status
= raise_exception( rec
, context
, TRUE
);
2007 if (status
) raise_status( status
, rec
);
2008 set_cpu_context( context
);
2012 /**********************************************************************
2013 * raise_generic_exception
2015 * Generic raise function for exceptions that don't need special treatment.
2017 static void raise_generic_exception( EXCEPTION_RECORD
*rec
, CONTEXT
*context
)
2019 NTSTATUS status
= raise_exception( rec
, context
, TRUE
);
2020 if (status
) raise_status( status
, rec
);
2021 set_cpu_context( context
);
2025 /**********************************************************************
2028 * Handler for SIGSEGV and related errors.
2030 static void segv_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
2032 EXCEPTION_RECORD
*rec
= setup_exception( sigcontext
, raise_segv_exception
);
2033 ucontext_t
*ucontext
= sigcontext
;
2035 switch(TRAP_sig(ucontext
))
2037 case TRAP_x86_OFLOW
: /* Overflow exception */
2038 rec
->ExceptionCode
= EXCEPTION_INT_OVERFLOW
;
2040 case TRAP_x86_BOUND
: /* Bound range exception */
2041 rec
->ExceptionCode
= EXCEPTION_ARRAY_BOUNDS_EXCEEDED
;
2043 case TRAP_x86_PRIVINFLT
: /* Invalid opcode exception */
2044 rec
->ExceptionCode
= EXCEPTION_ILLEGAL_INSTRUCTION
;
2046 case TRAP_x86_STKFLT
: /* Stack fault */
2047 rec
->ExceptionCode
= EXCEPTION_STACK_OVERFLOW
;
2049 case TRAP_x86_SEGNPFLT
: /* Segment not present exception */
2050 case TRAP_x86_PROTFLT
: /* General protection fault */
2051 case TRAP_x86_UNKNOWN
: /* Unknown fault code */
2052 rec
->ExceptionCode
= ERROR_sig(ucontext
) ? EXCEPTION_ACCESS_VIOLATION
: EXCEPTION_PRIV_INSTRUCTION
;
2053 rec
->ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
2055 case TRAP_x86_PAGEFLT
: /* Page fault */
2056 rec
->ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
2057 rec
->NumberParameters
= 2;
2058 rec
->ExceptionInformation
[0] = (ERROR_sig(ucontext
) & 2) != 0;
2059 rec
->ExceptionInformation
[1] = (ULONG_PTR
)siginfo
->si_addr
;
2061 case TRAP_x86_ALIGNFLT
: /* Alignment check exception */
2062 rec
->ExceptionCode
= EXCEPTION_DATATYPE_MISALIGNMENT
;
2065 ERR( "Got unexpected trap %ld\n", TRAP_sig(ucontext
) );
2067 case TRAP_x86_NMI
: /* NMI interrupt */
2068 case TRAP_x86_DNA
: /* Device not available exception */
2069 case TRAP_x86_DOUBLEFLT
: /* Double fault exception */
2070 case TRAP_x86_TSSFLT
: /* Invalid TSS exception */
2071 case TRAP_x86_MCHK
: /* Machine check exception */
2072 case TRAP_x86_CACHEFLT
: /* Cache flush exception */
2073 rec
->ExceptionCode
= EXCEPTION_ILLEGAL_INSTRUCTION
;
2078 /**********************************************************************
2081 * Handler for SIGTRAP.
2083 static void trap_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
2085 EXCEPTION_RECORD
*rec
= setup_exception( sigcontext
, raise_generic_exception
);
2087 switch (siginfo
->si_code
)
2089 case TRAP_TRACE
: /* Single-step exception */
2090 rec
->ExceptionCode
= EXCEPTION_SINGLE_STEP
;
2092 case TRAP_BRKPT
: /* Breakpoint exception */
2093 rec
->ExceptionAddress
= (char *)rec
->ExceptionAddress
- 1; /* back up over the int3 instruction */
2096 rec
->ExceptionCode
= EXCEPTION_BREAKPOINT
;
2101 /**********************************************************************
2104 * Handler for SIGFPE.
2106 static void fpe_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
2108 EXCEPTION_RECORD
*rec
= setup_exception( sigcontext
, raise_generic_exception
);
2110 switch (siginfo
->si_code
)
2113 rec
->ExceptionCode
= EXCEPTION_ARRAY_BOUNDS_EXCEEDED
;
2116 rec
->ExceptionCode
= EXCEPTION_INT_DIVIDE_BY_ZERO
;
2119 rec
->ExceptionCode
= EXCEPTION_INT_OVERFLOW
;
2122 rec
->ExceptionCode
= EXCEPTION_FLT_DIVIDE_BY_ZERO
;
2125 rec
->ExceptionCode
= EXCEPTION_FLT_OVERFLOW
;
2128 rec
->ExceptionCode
= EXCEPTION_FLT_UNDERFLOW
;
2131 rec
->ExceptionCode
= EXCEPTION_FLT_INEXACT_RESULT
;
2135 rec
->ExceptionCode
= EXCEPTION_FLT_INVALID_OPERATION
;
2140 /**********************************************************************
2143 * Handler for SIGINT.
2145 static void int_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
2147 if (!dispatch_signal(SIGINT
))
2149 EXCEPTION_RECORD
*rec
= setup_exception( sigcontext
, raise_generic_exception
);
2150 rec
->ExceptionCode
= CONTROL_C_EXIT
;
2155 /**********************************************************************
2158 * Handler for SIGABRT.
2160 static void abrt_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
2162 EXCEPTION_RECORD
*rec
= setup_exception( sigcontext
, raise_generic_exception
);
2163 rec
->ExceptionCode
= EXCEPTION_WINE_ASSERTION
;
2164 rec
->ExceptionFlags
= EH_NONCONTINUABLE
;
2168 /**********************************************************************
2171 * Handler for SIGQUIT.
2173 static void quit_handler( int signal
, siginfo_t
*siginfo
, void *ucontext
)
2179 /**********************************************************************
2182 * Handler for SIGUSR1, used to signal a thread that it got suspended.
2184 static void usr1_handler( int signal
, siginfo_t
*siginfo
, void *ucontext
)
2188 save_context( &context
, ucontext
);
2189 wait_suspend( &context
);
2190 restore_context( &context
, ucontext
);
2194 /***********************************************************************
2195 * __wine_set_signal_handler (NTDLL.@)
2197 int CDECL
__wine_set_signal_handler(unsigned int sig
, wine_signal_handler wsh
)
2199 if (sig
> sizeof(handlers
) / sizeof(handlers
[0])) return -1;
2200 if (handlers
[sig
] != NULL
) return -2;
2201 handlers
[sig
] = wsh
;
2206 /**********************************************************************
2207 * signal_alloc_thread
2209 NTSTATUS
signal_alloc_thread( TEB
**teb
)
2211 static size_t sigstack_zero_bits
;
2215 if (!sigstack_zero_bits
)
2217 size_t min_size
= teb_size
+ max( MINSIGSTKSZ
, 8192 );
2218 /* find the first power of two not smaller than min_size */
2219 sigstack_zero_bits
= 12;
2220 while ((1u << sigstack_zero_bits
) < min_size
) sigstack_zero_bits
++;
2221 signal_stack_size
= (1 << sigstack_zero_bits
) - teb_size
;
2222 assert( sizeof(TEB
) <= teb_size
);
2225 size
= 1 << sigstack_zero_bits
;
2227 if (!(status
= NtAllocateVirtualMemory( NtCurrentProcess(), (void **)teb
, sigstack_zero_bits
,
2228 &size
, MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
)))
2230 (*teb
)->Tib
.Self
= &(*teb
)->Tib
;
2231 (*teb
)->Tib
.ExceptionList
= (void *)~0UL;
2237 /**********************************************************************
2238 * signal_free_thread
2240 void signal_free_thread( TEB
*teb
)
2244 if (teb
->DeallocationStack
)
2247 NtFreeVirtualMemory( GetCurrentProcess(), &teb
->DeallocationStack
, &size
, MEM_RELEASE
);
2250 NtFreeVirtualMemory( NtCurrentProcess(), (void **)&teb
, &size
, MEM_RELEASE
);
2254 /**********************************************************************
2255 * signal_init_thread
2257 void signal_init_thread( TEB
*teb
)
2262 arch_prctl( ARCH_SET_GS
, teb
);
2264 # error Please define setting %gs for your architecture
2267 ss
.ss_sp
= (char *)teb
+ teb_size
;
2268 ss
.ss_size
= signal_stack_size
;
2270 if (sigaltstack(&ss
, NULL
) == -1) perror( "sigaltstack" );
2273 /**********************************************************************
2274 * signal_init_process
2276 void signal_init_process(void)
2278 struct sigaction sig_act
;
2280 sig_act
.sa_mask
= server_block_set
;
2281 sig_act
.sa_flags
= SA_RESTART
| SA_SIGINFO
| SA_ONSTACK
;
2283 sig_act
.sa_sigaction
= int_handler
;
2284 if (sigaction( SIGINT
, &sig_act
, NULL
) == -1) goto error
;
2285 sig_act
.sa_sigaction
= fpe_handler
;
2286 if (sigaction( SIGFPE
, &sig_act
, NULL
) == -1) goto error
;
2287 sig_act
.sa_sigaction
= abrt_handler
;
2288 if (sigaction( SIGABRT
, &sig_act
, NULL
) == -1) goto error
;
2289 sig_act
.sa_sigaction
= quit_handler
;
2290 if (sigaction( SIGQUIT
, &sig_act
, NULL
) == -1) goto error
;
2291 sig_act
.sa_sigaction
= usr1_handler
;
2292 if (sigaction( SIGUSR1
, &sig_act
, NULL
) == -1) goto error
;
2294 sig_act
.sa_sigaction
= segv_handler
;
2295 if (sigaction( SIGSEGV
, &sig_act
, NULL
) == -1) goto error
;
2296 if (sigaction( SIGILL
, &sig_act
, NULL
) == -1) goto error
;
2298 if (sigaction( SIGBUS
, &sig_act
, NULL
) == -1) goto error
;
2302 sig_act
.sa_sigaction
= trap_handler
;
2303 if (sigaction( SIGTRAP
, &sig_act
, NULL
) == -1) goto error
;
2308 perror("sigaction");
2313 /**********************************************************************
2314 * RtlAddFunctionTable (NTDLL.@)
2316 BOOLEAN CDECL
RtlAddFunctionTable( RUNTIME_FUNCTION
*table
, DWORD count
, DWORD64 addr
)
2318 FIXME( "%p %u %lx: stub\n", table
, count
, addr
);
2323 /**********************************************************************
2324 * RtlDeleteFunctionTable (NTDLL.@)
2326 BOOLEAN CDECL
RtlDeleteFunctionTable( RUNTIME_FUNCTION
*table
)
2328 FIXME( "%p: stub\n", table
);
2333 /**********************************************************************
2334 * RtlLookupFunctionEntry (NTDLL.@)
2336 PRUNTIME_FUNCTION WINAPI
RtlLookupFunctionEntry( ULONG64 pc
, ULONG64
*base
, UNWIND_HISTORY_TABLE
*table
)
2339 RUNTIME_FUNCTION
*func
;
2342 /* FIXME: should use the history table to make things faster */
2344 if (LdrFindEntryForAddress( (void *)pc
, &module
))
2346 WARN( "module not found for %lx\n", pc
);
2349 if (!(func
= RtlImageDirectoryEntryToData( module
->BaseAddress
, TRUE
,
2350 IMAGE_DIRECTORY_ENTRY_EXCEPTION
, &size
)))
2352 WARN( "no exception table found in module %p pc %lx\n", module
->BaseAddress
, pc
);
2355 func
= find_function_info( pc
, module
->BaseAddress
, func
, size
);
2356 if (func
) *base
= (ULONG64
)module
->BaseAddress
;
2360 static ULONG64
get_int_reg( CONTEXT
*context
, int reg
)
2362 return *(&context
->Rax
+ reg
);
2365 static void set_int_reg( CONTEXT
*context
, KNONVOLATILE_CONTEXT_POINTERS
*ctx_ptr
, int reg
, ULONG64 val
)
2367 *(&context
->Rax
+ reg
) = val
;
2368 if (ctx_ptr
) ctx_ptr
->u2
.IntegerContext
[reg
] = &context
->Rax
+ reg
;
2371 static void set_float_reg( CONTEXT
*context
, KNONVOLATILE_CONTEXT_POINTERS
*ctx_ptr
, int reg
, M128A val
)
2373 *(&context
->u
.s
.Xmm0
+ reg
) = val
;
2374 if (ctx_ptr
) ctx_ptr
->u1
.FloatingContext
[reg
] = &context
->u
.s
.Xmm0
+ reg
;
2377 static int get_opcode_size( struct opcode op
)
2381 case UWOP_ALLOC_LARGE
:
2382 return 2 + (op
.info
!= 0);
2383 case UWOP_SAVE_NONVOL
:
2384 case UWOP_SAVE_XMM128
:
2386 case UWOP_SAVE_NONVOL_FAR
:
2387 case UWOP_SAVE_XMM128_FAR
:
2394 static BOOL
is_inside_epilog( BYTE
*pc
)
2396 /* add or lea must be the first instruction, and it must have a rex.W prefix */
2397 if ((pc
[0] & 0xf8) == 0x48)
2401 case 0x81: /* add $nnnn,%rsp */
2402 if (pc
[0] == 0x48 && pc
[2] == 0xc4)
2408 case 0x83: /* add $n,%rsp */
2409 if (pc
[0] == 0x48 && pc
[2] == 0xc4)
2415 case 0x8d: /* lea n(reg),%rsp */
2416 if (pc
[0] & 0x06) return FALSE
; /* rex.RX must be cleared */
2417 if (((pc
[2] >> 3) & 7) != 4) return FALSE
; /* dest reg mus be %rsp */
2418 if ((pc
[2] & 7) == 4) return FALSE
; /* no SIB byte allowed */
2419 if ((pc
[2] >> 6) == 1) /* 8-bit offset */
2424 if ((pc
[2] >> 6) == 2) /* 32-bit offset */
2433 /* now check for various pop instructions */
2439 if ((*pc
& 0xf0) == 0x40) rex
= *pc
++ & 0x0f; /* rex prefix */
2443 case 0x58: /* pop %rax/%r8 */
2444 case 0x59: /* pop %rcx/%r9 */
2445 case 0x5a: /* pop %rdx/%r10 */
2446 case 0x5b: /* pop %rbx/%r11 */
2447 case 0x5c: /* pop %rsp/%r12 */
2448 case 0x5d: /* pop %rbp/%r13 */
2449 case 0x5e: /* pop %rsi/%r14 */
2450 case 0x5f: /* pop %rdi/%r15 */
2453 case 0xc2: /* ret $nn */
2454 case 0xc3: /* ret */
2456 /* FIXME: add various jump instructions */
2462 /* execute a function epilog, which must have been validated with is_inside_epilog() */
2463 static void interpret_epilog( BYTE
*pc
, CONTEXT
*context
, KNONVOLATILE_CONTEXT_POINTERS
*ctx_ptr
)
2469 if ((*pc
& 0xf0) == 0x40) rex
= *pc
++ & 0x0f; /* rex prefix */
2473 case 0x58: /* pop %rax/r8 */
2474 case 0x59: /* pop %rcx/r9 */
2475 case 0x5a: /* pop %rdx/r10 */
2476 case 0x5b: /* pop %rbx/r11 */
2477 case 0x5c: /* pop %rsp/r12 */
2478 case 0x5d: /* pop %rbp/r13 */
2479 case 0x5e: /* pop %rsi/r14 */
2480 case 0x5f: /* pop %rdi/r15 */
2481 set_int_reg( context
, ctx_ptr
, *pc
- 0x58 + (rex
& 1) * 8, *(ULONG64
*)context
->Rsp
);
2482 context
->Rsp
+= sizeof(ULONG64
);
2485 case 0x81: /* add $nnnn,%rsp */
2486 context
->Rsp
+= *(LONG
*)(pc
+ 2);
2487 pc
+= 2 + sizeof(LONG
);
2489 case 0x83: /* add $n,%rsp */
2490 context
->Rsp
+= (signed char)pc
[2];
2494 if ((pc
[1] >> 6) == 1) /* lea n(reg),%rsp */
2496 context
->Rsp
= get_int_reg( context
, (pc
[1] & 7) + (rex
& 1) * 8 ) + (signed char)pc
[2];
2499 else /* lea nnnn(reg),%rsp */
2501 context
->Rsp
= get_int_reg( context
, (pc
[1] & 7) + (rex
& 1) * 8 ) + *(LONG
*)(pc
+ 2);
2502 pc
+= 2 + sizeof(LONG
);
2505 case 0xc2: /* ret $nn */
2506 context
->Rip
= *(ULONG64
*)context
->Rsp
;
2507 context
->Rsp
+= sizeof(ULONG64
) + *(WORD
*)(pc
+ 1);
2509 case 0xc3: /* ret */
2510 context
->Rip
= *(ULONG64
*)context
->Rsp
;
2511 context
->Rsp
+= sizeof(ULONG64
);
2513 /* FIXME: add various jump instructions */
2519 /**********************************************************************
2520 * RtlVirtualUnwind (NTDLL.@)
2522 PVOID WINAPI
RtlVirtualUnwind( ULONG type
, ULONG64 base
, ULONG64 pc
,
2523 RUNTIME_FUNCTION
*function
, CONTEXT
*context
,
2524 PVOID
*data
, ULONG64
*frame_ret
,
2525 KNONVOLATILE_CONTEXT_POINTERS
*ctx_ptr
)
2527 union handler_data
*handler_data
;
2529 struct UNWIND_INFO
*info
;
2530 unsigned int i
, prolog_offset
;
2532 TRACE( "type %x rip %lx rsp %lx\n", type
, pc
, context
->Rsp
);
2533 if (TRACE_ON(seh
)) dump_unwind_info( base
, function
);
2535 frame
= *frame_ret
= context
->Rsp
;
2538 info
= (struct UNWIND_INFO
*)((char *)base
+ function
->UnwindData
);
2539 handler_data
= (union handler_data
*)&info
->opcodes
[(info
->count
+ 1) & ~1];
2541 if (info
->version
!= 1)
2543 FIXME( "unknown unwind info version %u at %p\n", info
->version
, info
);
2547 if (info
->frame_reg
)
2548 frame
= get_int_reg( context
, info
->frame_reg
) - info
->frame_offset
* 16;
2550 /* check if in prolog */
2551 if (pc
>= base
+ function
->BeginAddress
&& pc
< base
+ function
->BeginAddress
+ info
->prolog
)
2553 prolog_offset
= pc
- base
- function
->BeginAddress
;
2558 if (is_inside_epilog( (BYTE
*)pc
))
2560 interpret_epilog( (BYTE
*)pc
, context
, ctx_ptr
);
2566 for (i
= 0; i
< info
->count
; i
+= get_opcode_size(info
->opcodes
[i
]))
2568 if (prolog_offset
< info
->opcodes
[i
].offset
) continue; /* skip it */
2570 switch (info
->opcodes
[i
].code
)
2572 case UWOP_PUSH_NONVOL
: /* pushq %reg */
2573 set_int_reg( context
, ctx_ptr
, info
->opcodes
[i
].info
, *(ULONG64
*)context
->Rsp
);
2574 context
->Rsp
+= sizeof(ULONG64
);
2576 case UWOP_ALLOC_LARGE
: /* subq $nn,%rsp */
2577 if (info
->opcodes
[i
].info
) context
->Rsp
+= *(DWORD
*)&info
->opcodes
[i
+1];
2578 else context
->Rsp
+= *(USHORT
*)&info
->opcodes
[i
+1] * 8;
2580 case UWOP_ALLOC_SMALL
: /* subq $n,%rsp */
2581 context
->Rsp
+= (info
->opcodes
[i
].info
+ 1) * 8;
2583 case UWOP_SET_FPREG
: /* leaq nn(%rsp),%framereg */
2584 context
->Rsp
= *frame_ret
= frame
;
2586 case UWOP_SAVE_NONVOL
: /* movq %reg,n(%rsp) */
2587 off
= frame
+ *(USHORT
*)&info
->opcodes
[i
+1] * 8;
2588 set_int_reg( context
, ctx_ptr
, info
->opcodes
[i
].info
, *(ULONG64
*)off
);
2590 case UWOP_SAVE_NONVOL_FAR
: /* movq %reg,nn(%rsp) */
2591 off
= frame
+ *(DWORD
*)&info
->opcodes
[i
+1];
2592 set_int_reg( context
, ctx_ptr
, info
->opcodes
[i
].info
, *(ULONG64
*)off
);
2594 case UWOP_SAVE_XMM128
: /* movaps %xmmreg,n(%rsp) */
2595 off
= frame
+ *(USHORT
*)&info
->opcodes
[i
+1] * 16;
2596 set_float_reg( context
, ctx_ptr
, info
->opcodes
[i
].info
, *(M128A
*)off
);
2598 case UWOP_SAVE_XMM128_FAR
: /* movaps %xmmreg,nn(%rsp) */
2599 off
= frame
+ *(DWORD
*)&info
->opcodes
[i
+1];
2600 set_float_reg( context
, ctx_ptr
, info
->opcodes
[i
].info
, *(M128A
*)off
);
2602 case UWOP_PUSH_MACHFRAME
:
2603 FIXME( "PUSH_MACHFRAME %u\n", info
->opcodes
[i
].info
);
2606 FIXME( "unknown code %u\n", info
->opcodes
[i
].code
);
2611 if (!(info
->flags
& UNW_FLAG_CHAININFO
)) break;
2612 function
= &handler_data
->chain
; /* restart with the chained info */
2615 /* now pop return address */
2616 context
->Rip
= *(ULONG64
*)context
->Rsp
;
2617 context
->Rsp
+= sizeof(ULONG64
);
2619 if (!(info
->flags
& type
)) return NULL
; /* no matching handler */
2620 if (prolog_offset
!= ~0) return NULL
; /* inside prolog */
2622 *data
= &handler_data
->handler
+ 1;
2623 return (char *)base
+ handler_data
->handler
;
2627 /**********************************************************************
2628 * call_unwind_handler
2630 * Call a single unwind handler.
2631 * FIXME: Handle nested exceptions.
2633 static void call_unwind_handler( EXCEPTION_RECORD
*rec
, DISPATCHER_CONTEXT
*dispatch
)
2637 dispatch
->ControlPc
= dispatch
->ContextRecord
->Rip
;
2639 TRACE( "calling handler %p (rec=%p, frame=0x%lx context=%p, dispatch=%p)\n",
2640 dispatch
->LanguageHandler
, rec
, dispatch
->EstablisherFrame
, dispatch
->ContextRecord
, dispatch
);
2641 res
= dispatch
->LanguageHandler( rec
, dispatch
->EstablisherFrame
, dispatch
->ContextRecord
, dispatch
);
2642 TRACE( "handler %p returned %x\n", dispatch
->LanguageHandler
, res
);
2646 case ExceptionContinueSearch
:
2648 case ExceptionCollidedUnwind
:
2649 FIXME( "ExceptionCollidedUnwind not supported yet\n" );
2652 raise_status( STATUS_INVALID_DISPOSITION
, rec
);
2658 /**********************************************************************
2659 * call_teb_unwind_handler
2661 * Call a single unwind handler from the TEB chain.
2662 * FIXME: Handle nested exceptions.
2664 static void call_teb_unwind_handler( EXCEPTION_RECORD
*rec
, DISPATCHER_CONTEXT
*dispatch
,
2665 EXCEPTION_REGISTRATION_RECORD
*teb_frame
)
2667 EXCEPTION_REGISTRATION_RECORD
*dispatcher
;
2670 TRACE( "calling TEB handler %p (rec=%p, frame=%p context=%p, dispatcher=%p)\n",
2671 teb_frame
->Handler
, rec
, teb_frame
, dispatch
->ContextRecord
, &dispatcher
);
2672 res
= teb_frame
->Handler( rec
, teb_frame
, dispatch
->ContextRecord
, &dispatcher
);
2673 TRACE( "handler at %p returned %u\n", teb_frame
->Handler
, res
);
2677 case ExceptionContinueSearch
:
2679 case ExceptionCollidedUnwind
:
2680 FIXME( "ExceptionCollidedUnwind not supported yet\n" );
2683 raise_status( STATUS_INVALID_DISPOSITION
, rec
);
2689 /*******************************************************************
2690 * RtlUnwindEx (NTDLL.@)
2692 void WINAPI
RtlUnwindEx( ULONG64 end_frame
, ULONG64 target_ip
, EXCEPTION_RECORD
*rec
,
2693 ULONG64 retval
, CONTEXT
*orig_context
, UNWIND_HISTORY_TABLE
*table
)
2695 EXCEPTION_REGISTRATION_RECORD
*teb_frame
= NtCurrentTeb()->Tib
.ExceptionList
;
2696 EXCEPTION_RECORD record
;
2697 RUNTIME_FUNCTION
*dir
;
2698 DISPATCHER_CONTEXT dispatch
;
2699 CONTEXT context
, new_context
;
2704 /* build an exception record, if we do not have one */
2707 record
.ExceptionCode
= STATUS_UNWIND
;
2708 record
.ExceptionFlags
= 0;
2709 record
.ExceptionRecord
= NULL
;
2710 record
.ExceptionAddress
= (void *)orig_context
->Rip
;
2711 record
.NumberParameters
= 0;
2715 rec
->ExceptionFlags
|= EH_UNWINDING
| (end_frame
? 0 : EH_EXIT_UNWIND
);
2717 TRACE( "code=%x flags=%x end_frame=%lx target_ip=%lx rip=%016lx\n",
2718 rec
->ExceptionCode
, rec
->ExceptionFlags
, end_frame
, target_ip
, orig_context
->Rip
);
2719 TRACE(" rax=%016lx rbx=%016lx rcx=%016lx rdx=%016lx\n",
2720 orig_context
->Rax
, orig_context
->Rbx
, orig_context
->Rcx
, orig_context
->Rdx
);
2721 TRACE(" rsi=%016lx rdi=%016lx rbp=%016lx rsp=%016lx\n",
2722 orig_context
->Rsi
, orig_context
->Rdi
, orig_context
->Rbp
, orig_context
->Rsp
);
2723 TRACE(" r8=%016lx r9=%016lx r10=%016lx r11=%016lx\n",
2724 orig_context
->R8
, orig_context
->R9
, orig_context
->R10
, orig_context
->R11
);
2725 TRACE(" r12=%016lx r13=%016lx r14=%016lx r15=%016lx\n",
2726 orig_context
->R12
, orig_context
->R13
, orig_context
->R14
, orig_context
->R15
);
2728 context
= *orig_context
;
2729 dispatch
.EstablisherFrame
= context
.Rsp
;
2730 dispatch
.TargetIp
= target_ip
;
2731 dispatch
.ContextRecord
= &context
;
2732 dispatch
.HistoryTable
= table
;
2734 while (dispatch
.EstablisherFrame
!= end_frame
)
2736 new_context
= context
;
2738 /* FIXME: should use the history table to make things faster */
2742 dispatch
.ImageBase
= 0;
2743 dispatch
.ScopeIndex
= 0; /* FIXME */
2745 if (!LdrFindEntryForAddress( (void *)context
.Rip
, &module
))
2747 if (!(dir
= RtlImageDirectoryEntryToData( module
->BaseAddress
, TRUE
,
2748 IMAGE_DIRECTORY_ENTRY_EXCEPTION
, &size
)) &&
2749 !(module
->Flags
& LDR_WINE_INTERNAL
))
2751 ERR( "module %s doesn't contain exception data, can't unwind exception\n",
2752 debugstr_w(module
->BaseDllName
.Buffer
) );
2753 raise_status( STATUS_BAD_FUNCTION_TABLE
, rec
);
2755 dispatch
.ImageBase
= (ULONG64
)module
->BaseAddress
;
2760 struct dwarf_eh_bases bases
;
2761 const struct dwarf_fde
*fde
= _Unwind_Find_FDE( (void *)(context
.Rip
- 1), &bases
);
2764 /* assume leaf function */
2765 context
.Rip
= *(ULONG64
*)context
.Rsp
;
2766 context
.Rsp
+= sizeof(ULONG64
);
2769 dispatch
.FunctionEntry
= NULL
;
2770 status
= dwarf_virtual_unwind( context
.Rip
, &dispatch
.EstablisherFrame
, &new_context
, fde
,
2771 &bases
, &dispatch
.LanguageHandler
, &dispatch
.HandlerData
);
2772 if (status
!= STATUS_SUCCESS
) raise_status( status
, rec
);
2773 if (dispatch
.LanguageHandler
&& !module
)
2775 FIXME( "calling personality routine in system library not supported yet\n" );
2776 dispatch
.LanguageHandler
= NULL
;
2781 if (!(dispatch
.FunctionEntry
= find_function_info( context
.Rip
, module
->BaseAddress
,
2785 context
.Rip
= *(ULONG64
*)context
.Rsp
;
2786 context
.Rsp
+= sizeof(ULONG64
);
2789 dispatch
.LanguageHandler
= RtlVirtualUnwind( UNW_FLAG_UHANDLER
, dispatch
.ImageBase
,
2790 context
.Rip
, dispatch
.FunctionEntry
,
2791 &new_context
, &dispatch
.HandlerData
,
2792 &dispatch
.EstablisherFrame
, NULL
);
2795 if (!dispatch
.EstablisherFrame
) break;
2797 if (is_inside_signal_stack( (void *)dispatch
.EstablisherFrame
))
2799 TRACE( "frame %lx is inside signal stack (%p-%p)\n", dispatch
.EstablisherFrame
,
2800 get_signal_stack(), (char *)get_signal_stack() + signal_stack_size
);
2801 context
= new_context
;
2805 if ((dispatch
.EstablisherFrame
& 7) ||
2806 dispatch
.EstablisherFrame
< (ULONG64
)NtCurrentTeb()->Tib
.StackLimit
||
2807 dispatch
.EstablisherFrame
> (ULONG64
)NtCurrentTeb()->Tib
.StackBase
)
2809 ERR( "invalid frame %lx (%p-%p)\n", dispatch
.EstablisherFrame
,
2810 NtCurrentTeb()->Tib
.StackLimit
, NtCurrentTeb()->Tib
.StackBase
);
2811 rec
->ExceptionFlags
|= EH_STACK_INVALID
;
2815 if (dispatch
.LanguageHandler
)
2817 if (end_frame
&& (dispatch
.EstablisherFrame
> end_frame
))
2819 ERR( "invalid end frame %lx/%lx\n", dispatch
.EstablisherFrame
, end_frame
);
2820 raise_status( STATUS_INVALID_UNWIND_TARGET
, rec
);
2822 call_unwind_handler( rec
, &dispatch
);
2824 else /* hack: call builtin handlers registered in the tib list */
2826 while ((ULONG64
)teb_frame
< new_context
.Rsp
&& (ULONG64
)teb_frame
< end_frame
)
2828 TRACE( "found builtin frame %p handler %p\n", teb_frame
, teb_frame
->Handler
);
2829 dispatch
.EstablisherFrame
= (ULONG64
)teb_frame
;
2830 call_teb_unwind_handler( rec
, &dispatch
, teb_frame
);
2831 teb_frame
= __wine_pop_frame( teb_frame
);
2833 if ((ULONG64
)teb_frame
== end_frame
&& end_frame
< new_context
.Rsp
) break;
2834 dispatch
.EstablisherFrame
= new_context
.Rsp
;
2837 context
= new_context
;
2839 context
.Rax
= retval
;
2840 context
.Rip
= target_ip
;
2841 TRACE( "returning to %lx stack %lx\n", context
.Rip
, context
.Rsp
);
2842 set_cpu_context( &context
);
2846 /*******************************************************************
2847 * RtlUnwind (NTDLL.@)
2849 void WINAPI
__regs_RtlUnwind( ULONG64 frame
, ULONG64 target_ip
, EXCEPTION_RECORD
*rec
,
2850 ULONG64 retval
, CONTEXT
*context
)
2852 RtlUnwindEx( frame
, target_ip
, rec
, retval
, context
, NULL
);
2854 DEFINE_REGS_ENTRYPOINT( RtlUnwind
, 4 )
2857 /*******************************************************************
2858 * __C_specific_handler (NTDLL.@)
2860 EXCEPTION_DISPOSITION WINAPI
__C_specific_handler( EXCEPTION_RECORD
*rec
,
2863 struct _DISPATCHER_CONTEXT
*dispatch
)
2865 SCOPE_TABLE
*table
= dispatch
->HandlerData
;
2868 TRACE( "%p %lx %p %p\n", rec
, frame
, context
, dispatch
);
2869 if (TRACE_ON(seh
)) dump_scope_table( dispatch
->ImageBase
, table
);
2871 if (rec
->ExceptionFlags
& (EH_UNWINDING
| EH_EXIT_UNWIND
)) /* FIXME */
2872 return ExceptionContinueSearch
;
2874 for (i
= 0; i
< table
->Count
; i
++)
2876 if (context
->Rip
>= dispatch
->ImageBase
+ table
->ScopeRecord
[i
].BeginAddress
&&
2877 context
->Rip
< dispatch
->ImageBase
+ table
->ScopeRecord
[i
].EndAddress
)
2879 if (!table
->ScopeRecord
[i
].JumpTarget
) continue;
2880 if (table
->ScopeRecord
[i
].HandlerAddress
!= EXCEPTION_EXECUTE_HANDLER
)
2882 EXCEPTION_POINTERS ptrs
;
2883 PC_LANGUAGE_EXCEPTION_HANDLER filter
;
2885 filter
= (PC_LANGUAGE_EXCEPTION_HANDLER
)(dispatch
->ImageBase
+ table
->ScopeRecord
[i
].HandlerAddress
);
2886 ptrs
.ExceptionRecord
= rec
;
2887 ptrs
.ContextRecord
= context
;
2888 TRACE( "calling filter %p ptrs %p frame %lx\n", filter
, &ptrs
, frame
);
2889 switch (filter( &ptrs
, frame
))
2891 case EXCEPTION_EXECUTE_HANDLER
:
2893 case EXCEPTION_CONTINUE_SEARCH
:
2895 case EXCEPTION_CONTINUE_EXECUTION
:
2896 return ExceptionContinueExecution
;
2899 TRACE( "unwinding to target %lx\n", dispatch
->ImageBase
+ table
->ScopeRecord
[i
].JumpTarget
);
2900 RtlUnwindEx( frame
, dispatch
->ImageBase
+ table
->ScopeRecord
[i
].JumpTarget
,
2901 rec
, 0, context
, dispatch
->HistoryTable
);
2904 return ExceptionContinueSearch
;
2908 /*******************************************************************
2909 * NtRaiseException (NTDLL.@)
2911 NTSTATUS WINAPI
NtRaiseException( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, BOOL first_chance
)
2913 NTSTATUS status
= raise_exception( rec
, context
, first_chance
);
2914 if (status
== STATUS_SUCCESS
) NtSetContextThread( GetCurrentThread(), context
);
2919 /***********************************************************************
2920 * RtlRaiseException (NTDLL.@)
2922 void WINAPI
__regs_RtlRaiseException( EXCEPTION_RECORD
*rec
, CONTEXT
*context
)
2926 rec
->ExceptionAddress
= (void *)context
->Rip
;
2927 status
= raise_exception( rec
, context
, TRUE
);
2928 if (status
!= STATUS_SUCCESS
) raise_status( status
, rec
);
2930 DEFINE_REGS_ENTRYPOINT( RtlRaiseException
, 1 )
2933 /*************************************************************************
2934 * RtlCaptureStackBackTrace (NTDLL.@)
2936 USHORT WINAPI
RtlCaptureStackBackTrace( ULONG skip
, ULONG count
, PVOID
*buffer
, ULONG
*hash
)
2938 FIXME( "(%d, %d, %p, %p) stub!\n", skip
, count
, buffer
, hash
);
2943 /***********************************************************************
2946 void call_thread_func( LPTHREAD_START_ROUTINE entry
, void *arg
, void *frame
)
2948 ntdll_get_thread_data()->exit_frame
= frame
;
2951 RtlExitUserThread( entry( arg
));
2953 __EXCEPT(unhandled_exception_filter
)
2955 NtTerminateThread( GetCurrentThread(), GetExceptionCode() );
2958 abort(); /* should not be reached */
2961 extern void DECLSPEC_NORETURN
call_thread_entry_point( LPTHREAD_START_ROUTINE entry
, void *arg
);
2962 __ASM_GLOBAL_FUNC( call_thread_entry_point
,
2964 ".cfi_adjust_cfa_offset 8\n\t"
2965 "movq %rsp,%rdx\n\t"
2966 "call " __ASM_NAME("call_thread_func") );
2968 extern void DECLSPEC_NORETURN
call_thread_exit_func( int status
, void (*func
)(int), void *frame
);
2969 __ASM_GLOBAL_FUNC( call_thread_exit_func
,
2971 ".cfi_adjust_cfa_offset 8\n\t"
2972 "movq %rdx,%rsp\n\t"
2975 /***********************************************************************
2976 * RtlExitUserThread (NTDLL.@)
2978 void WINAPI
RtlExitUserThread( ULONG status
)
2980 if (!ntdll_get_thread_data()->exit_frame
) exit_thread( status
);
2981 call_thread_exit_func( status
, exit_thread
, ntdll_get_thread_data()->exit_frame
);
2984 /***********************************************************************
2987 void abort_thread( int status
)
2989 if (!ntdll_get_thread_data()->exit_frame
) terminate_thread( status
);
2990 call_thread_exit_func( status
, terminate_thread
, ntdll_get_thread_data()->exit_frame
);
2993 /**********************************************************************
2994 * __wine_enter_vm86 (NTDLL.@)
2996 void __wine_enter_vm86( CONTEXT
*context
)
2998 MESSAGE("vm86 mode not supported on this platform\n");
3001 /**********************************************************************
3002 * DbgBreakPoint (NTDLL.@)
3004 __ASM_STDCALL_FUNC( DbgBreakPoint
, 0, "int $3; ret")
3006 /**********************************************************************
3007 * DbgUserBreakPoint (NTDLL.@)
3009 __ASM_STDCALL_FUNC( DbgUserBreakPoint
, 0, "int $3; ret")
3011 #endif /* __x86_64__ */