2 * ARM signal handling routines
4 * Copyright 2002 Marcus Meissner, SuSE Linux AG
5 * Copyright 2010-2013, 2015 André Hentschel
7 * This library is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU Lesser General Public
9 * License as published by the Free Software Foundation; either
10 * version 2.1 of the License, or (at your option) any later version.
12 * This library is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15 * Lesser General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public
18 * License along with this library; if not, write to the Free Software
19 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301, USA
25 #include "wine/port.h"
35 #ifdef HAVE_SYS_PARAM_H
36 # include <sys/param.h>
41 # ifdef HAVE_SYS_SYSCALL_H
42 # include <sys/syscall.h>
45 #ifdef HAVE_SYS_SIGNAL_H
46 # include <sys/signal.h>
48 #ifdef HAVE_SYS_UCONTEXT_H
49 # include <sys/ucontext.h>
52 #define NONAMELESSUNION
53 #define NONAMELESSSTRUCT
55 #define WIN32_NO_STATUS
58 #include "wine/library.h"
59 #include "wine/exception.h"
60 #include "ntdll_misc.h"
61 #include "wine/debug.h"
64 WINE_DEFAULT_DEBUG_CHANNEL(seh
);
65 WINE_DECLARE_DEBUG_CHANNEL(relay
);
67 static pthread_key_t teb_key
;
69 /***********************************************************************
70 * signal context platform-specific definitions
74 #if defined(__ANDROID__) && !defined(HAVE_SYS_UCONTEXT_H)
75 typedef struct ucontext
77 unsigned long uc_flags
;
78 struct ucontext
*uc_link
;
80 struct sigcontext uc_mcontext
;
82 unsigned long uc_regspace
[128] __attribute__((__aligned__(8)));
86 /* All Registers access - only for local access */
87 # define REG_sig(reg_name, context) ((context)->uc_mcontext.reg_name)
88 # define REGn_sig(reg_num, context) ((context)->uc_mcontext.arm_r##reg_num)
90 /* Special Registers access */
91 # define SP_sig(context) REG_sig(arm_sp, context) /* Stack pointer */
92 # define LR_sig(context) REG_sig(arm_lr, context) /* Link register */
93 # define PC_sig(context) REG_sig(arm_pc, context) /* Program counter */
94 # define CPSR_sig(context) REG_sig(arm_cpsr, context) /* Current State Register */
95 # define IP_sig(context) REG_sig(arm_ip, context) /* Intra-Procedure-call scratch register */
96 # define FP_sig(context) REG_sig(arm_fp, context) /* Frame pointer */
99 # define ERROR_sig(context) REG_sig(error_code, context)
100 # define TRAP_sig(context) REG_sig(trap_no, context)
102 #elif defined(__FreeBSD__)
104 /* All Registers access - only for local access */
105 # define REGn_sig(reg_num, context) ((context)->uc_mcontext.__gregs[reg_num])
107 /* Special Registers access */
108 # define SP_sig(context) REGn_sig(_REG_SP, context) /* Stack pointer */
109 # define LR_sig(context) REGn_sig(_REG_LR, context) /* Link register */
110 # define PC_sig(context) REGn_sig(_REG_PC, context) /* Program counter */
111 # define CPSR_sig(context) REGn_sig(_REG_CPSR, context) /* Current State Register */
112 # define IP_sig(context) REGn_sig(_REG_R12, context) /* Intra-Procedure-call scratch register */
113 # define FP_sig(context) REGn_sig(_REG_FP, context) /* Frame pointer */
119 TRAP_ARM_UNKNOWN
= -1, /* Unknown fault (TRAP_sig not defined) */
120 TRAP_ARM_PRIVINFLT
= 6, /* Invalid opcode exception */
121 TRAP_ARM_PAGEFLT
= 14, /* Page fault */
122 TRAP_ARM_ALIGNFLT
= 17, /* Alignment check exception */
125 typedef void (WINAPI
*raise_func
)( EXCEPTION_RECORD
*rec
, CONTEXT
*context
);
126 typedef int (*wine_signal_handler
)(unsigned int sig
);
128 static wine_signal_handler handlers
[256];
133 WORD function_length
;
140 /***********************************************************************
143 * Get the trap code for a signal.
145 static inline enum arm_trap_code
get_trap_code( const ucontext_t
*sigcontext
)
148 return TRAP_sig(sigcontext
);
150 return TRAP_ARM_UNKNOWN
; /* unknown trap code */
154 /***********************************************************************
157 * Get the error code for a signal.
159 static inline WORD
get_error_code( const ucontext_t
*sigcontext
)
162 return ERROR_sig(sigcontext
);
168 /***********************************************************************
171 static inline int dispatch_signal(unsigned int sig
)
173 if (handlers
[sig
] == NULL
) return 0;
174 return handlers
[sig
](sig
);
177 /*******************************************************************
180 static inline BOOL
is_valid_frame( void *frame
)
182 if ((ULONG_PTR
)frame
& 3) return FALSE
;
183 return (frame
>= NtCurrentTeb()->Tib
.StackLimit
&&
184 (void **)frame
< (void **)NtCurrentTeb()->Tib
.StackBase
- 1);
187 /***********************************************************************
190 * Set the register values from a sigcontext.
192 static void save_context( CONTEXT
*context
, const ucontext_t
*sigcontext
)
194 #define C(x) context->R##x = REGn_sig(x,sigcontext)
195 /* Save normal registers */
196 C(0); C(1); C(2); C(3); C(4); C(5); C(6); C(7); C(8); C(9); C(10);
199 context
->ContextFlags
= CONTEXT_FULL
;
200 context
->Sp
= SP_sig(sigcontext
); /* Stack pointer */
201 context
->Lr
= LR_sig(sigcontext
); /* Link register */
202 context
->Pc
= PC_sig(sigcontext
); /* Program Counter */
203 context
->Cpsr
= CPSR_sig(sigcontext
); /* Current State Register */
204 context
->R11
= FP_sig(sigcontext
); /* Frame pointer */
205 context
->R12
= IP_sig(sigcontext
); /* Intra-Procedure-call scratch register */
209 /***********************************************************************
212 * Build a sigcontext from the register values.
214 static void restore_context( const CONTEXT
*context
, ucontext_t
*sigcontext
)
216 #define C(x) REGn_sig(x,sigcontext) = context->R##x
217 /* Restore normal registers */
218 C(0); C(1); C(2); C(3); C(4); C(5); C(6); C(7); C(8); C(9); C(10);
221 SP_sig(sigcontext
) = context
->Sp
; /* Stack pointer */
222 LR_sig(sigcontext
) = context
->Lr
; /* Link register */
223 PC_sig(sigcontext
) = context
->Pc
; /* Program Counter */
224 CPSR_sig(sigcontext
) = context
->Cpsr
; /* Current State Register */
225 FP_sig(sigcontext
) = context
->R11
; /* Frame pointer */
226 IP_sig(sigcontext
) = context
->R12
; /* Intra-Procedure-call scratch register */
230 /***********************************************************************
233 * Set the FPU context from a sigcontext.
235 static inline void save_fpu( CONTEXT
*context
, const ucontext_t
*sigcontext
)
237 FIXME("not implemented\n");
241 /***********************************************************************
244 * Restore the FPU context to a sigcontext.
246 static inline void restore_fpu( CONTEXT
*context
, const ucontext_t
*sigcontext
)
248 FIXME("not implemented\n");
251 /**************************************************************************
254 * Incoming r4 contains words to allocate, converting to bytes then return
256 __ASM_GLOBAL_FUNC( __chkstk
, "lsl r4, r4, #2\n\t"
259 /***********************************************************************
260 * RtlCaptureContext (NTDLL.@)
262 /* FIXME: Use the Stack instead of the actual register values */
263 __ASM_STDCALL_FUNC( RtlCaptureContext
, 4,
265 "stmib r0, {r0-r12}\n\t" /* context->R0..R12 */
266 "mov r1, #0x0200000\n\t" /* CONTEXT_ARM */
267 "add r1, r1, #0x3\n\t" /* CONTEXT_FULL */
268 "str r1, [r0]\n\t" /* context->ContextFlags */
269 "str SP, [r0, #0x38]\n\t" /* context->Sp */
270 "str LR, [r0, #0x3c]\n\t" /* context->Lr */
271 "str PC, [r0, #0x40]\n\t" /* context->Pc */
273 "str r1, [r0, #0x44]\n\t" /* context->Cpsr */
278 /***********************************************************************
281 * Set the new CPU context.
283 void DECLSPEC_HIDDEN
set_cpu_context( const CONTEXT
*context
);
284 __ASM_GLOBAL_FUNC( set_cpu_context
,
286 "ldr r1, [r0, #0x44]\n\t" /* context->Cpsr */
288 "ldr r1, [r0, #0x40]\n\t" /* context->Pc */
289 "ldr lr, [r0, #0x3c]\n\t" /* context->Lr */
290 "ldr sp, [r0, #0x38]\n\t" /* context->Sp */
292 "ldmib r0, {r0-r12}\n\t" /* context->R0..R12 */
296 /***********************************************************************
299 * Copy a register context according to the flags.
301 static void copy_context( CONTEXT
*to
, const CONTEXT
*from
, DWORD flags
)
303 flags
&= ~CONTEXT_ARM
; /* get rid of CPU id */
304 if (flags
& CONTEXT_CONTROL
)
309 to
->Cpsr
= from
->Cpsr
;
311 if (flags
& CONTEXT_INTEGER
)
327 if (flags
& CONTEXT_FLOATING_POINT
)
329 to
->Fpscr
= from
->Fpscr
;
330 memcpy( to
->u
.D
, from
->u
.D
, sizeof(to
->u
.D
) );
335 /***********************************************************************
338 * Convert a register context to the server format.
340 NTSTATUS
context_to_server( context_t
*to
, const CONTEXT
*from
)
342 DWORD i
, flags
= from
->ContextFlags
& ~CONTEXT_ARM
; /* get rid of CPU id */
344 memset( to
, 0, sizeof(*to
) );
347 if (flags
& CONTEXT_CONTROL
)
349 to
->flags
|= SERVER_CTX_CONTROL
;
350 to
->ctl
.arm_regs
.sp
= from
->Sp
;
351 to
->ctl
.arm_regs
.lr
= from
->Lr
;
352 to
->ctl
.arm_regs
.pc
= from
->Pc
;
353 to
->ctl
.arm_regs
.cpsr
= from
->Cpsr
;
355 if (flags
& CONTEXT_INTEGER
)
357 to
->flags
|= SERVER_CTX_INTEGER
;
358 to
->integer
.arm_regs
.r
[0] = from
->R0
;
359 to
->integer
.arm_regs
.r
[1] = from
->R1
;
360 to
->integer
.arm_regs
.r
[2] = from
->R2
;
361 to
->integer
.arm_regs
.r
[3] = from
->R3
;
362 to
->integer
.arm_regs
.r
[4] = from
->R4
;
363 to
->integer
.arm_regs
.r
[5] = from
->R5
;
364 to
->integer
.arm_regs
.r
[6] = from
->R6
;
365 to
->integer
.arm_regs
.r
[7] = from
->R7
;
366 to
->integer
.arm_regs
.r
[8] = from
->R8
;
367 to
->integer
.arm_regs
.r
[9] = from
->R9
;
368 to
->integer
.arm_regs
.r
[10] = from
->R10
;
369 to
->integer
.arm_regs
.r
[11] = from
->R11
;
370 to
->integer
.arm_regs
.r
[12] = from
->R12
;
372 if (flags
& CONTEXT_FLOATING_POINT
)
374 to
->flags
|= SERVER_CTX_FLOATING_POINT
;
375 for (i
= 0; i
< 32; i
++) to
->fp
.arm_regs
.d
[i
] = from
->u
.D
[i
];
376 to
->fp
.arm_regs
.fpscr
= from
->Fpscr
;
378 if (flags
& CONTEXT_DEBUG_REGISTERS
)
380 to
->flags
|= SERVER_CTX_DEBUG_REGISTERS
;
381 for (i
= 0; i
< ARM_MAX_BREAKPOINTS
; i
++) to
->debug
.arm_regs
.bvr
[i
] = from
->Bvr
[i
];
382 for (i
= 0; i
< ARM_MAX_BREAKPOINTS
; i
++) to
->debug
.arm_regs
.bcr
[i
] = from
->Bcr
[i
];
383 for (i
= 0; i
< ARM_MAX_WATCHPOINTS
; i
++) to
->debug
.arm_regs
.wvr
[i
] = from
->Wvr
[i
];
384 for (i
= 0; i
< ARM_MAX_WATCHPOINTS
; i
++) to
->debug
.arm_regs
.wcr
[i
] = from
->Wcr
[i
];
386 return STATUS_SUCCESS
;
390 /***********************************************************************
391 * context_from_server
393 * Convert a register context from the server format.
395 NTSTATUS
context_from_server( CONTEXT
*to
, const context_t
*from
)
399 if (from
->cpu
!= CPU_ARM
) return STATUS_INVALID_PARAMETER
;
401 to
->ContextFlags
= CONTEXT_ARM
;
402 if (from
->flags
& SERVER_CTX_CONTROL
)
404 to
->ContextFlags
|= CONTEXT_CONTROL
;
405 to
->Sp
= from
->ctl
.arm_regs
.sp
;
406 to
->Lr
= from
->ctl
.arm_regs
.lr
;
407 to
->Pc
= from
->ctl
.arm_regs
.pc
;
408 to
->Cpsr
= from
->ctl
.arm_regs
.cpsr
;
410 if (from
->flags
& SERVER_CTX_INTEGER
)
412 to
->ContextFlags
|= CONTEXT_INTEGER
;
413 to
->R0
= from
->integer
.arm_regs
.r
[0];
414 to
->R1
= from
->integer
.arm_regs
.r
[1];
415 to
->R2
= from
->integer
.arm_regs
.r
[2];
416 to
->R3
= from
->integer
.arm_regs
.r
[3];
417 to
->R4
= from
->integer
.arm_regs
.r
[4];
418 to
->R5
= from
->integer
.arm_regs
.r
[5];
419 to
->R6
= from
->integer
.arm_regs
.r
[6];
420 to
->R7
= from
->integer
.arm_regs
.r
[7];
421 to
->R8
= from
->integer
.arm_regs
.r
[8];
422 to
->R9
= from
->integer
.arm_regs
.r
[9];
423 to
->R10
= from
->integer
.arm_regs
.r
[10];
424 to
->R11
= from
->integer
.arm_regs
.r
[11];
425 to
->R12
= from
->integer
.arm_regs
.r
[12];
427 if (from
->flags
& SERVER_CTX_FLOATING_POINT
)
429 to
->ContextFlags
|= CONTEXT_FLOATING_POINT
;
430 for (i
= 0; i
< 32; i
++) to
->u
.D
[i
] = from
->fp
.arm_regs
.d
[i
];
431 to
->Fpscr
= from
->fp
.arm_regs
.fpscr
;
433 if (from
->flags
& SERVER_CTX_DEBUG_REGISTERS
)
435 to
->ContextFlags
|= CONTEXT_DEBUG_REGISTERS
;
436 for (i
= 0; i
< ARM_MAX_BREAKPOINTS
; i
++) to
->Bvr
[i
] = from
->debug
.arm_regs
.bvr
[i
];
437 for (i
= 0; i
< ARM_MAX_BREAKPOINTS
; i
++) to
->Bcr
[i
] = from
->debug
.arm_regs
.bcr
[i
];
438 for (i
= 0; i
< ARM_MAX_WATCHPOINTS
; i
++) to
->Wvr
[i
] = from
->debug
.arm_regs
.wvr
[i
];
439 for (i
= 0; i
< ARM_MAX_WATCHPOINTS
; i
++) to
->Wcr
[i
] = from
->debug
.arm_regs
.wcr
[i
];
441 return STATUS_SUCCESS
;
444 /***********************************************************************
445 * NtSetContextThread (NTDLL.@)
446 * ZwSetContextThread (NTDLL.@)
448 NTSTATUS WINAPI
NtSetContextThread( HANDLE handle
, const CONTEXT
*context
)
453 ret
= set_thread_context( handle
, context
, &self
);
454 if (self
&& ret
== STATUS_SUCCESS
) set_cpu_context( context
);
459 /***********************************************************************
460 * NtGetContextThread (NTDLL.@)
461 * ZwGetContextThread (NTDLL.@)
463 NTSTATUS WINAPI
NtGetContextThread( HANDLE handle
, CONTEXT
*context
)
466 DWORD needed_flags
= context
->ContextFlags
;
467 BOOL self
= (handle
== GetCurrentThread());
471 if ((ret
= get_thread_context( handle
, context
, &self
))) return ret
;
472 needed_flags
&= ~context
->ContextFlags
;
475 if (self
&& needed_flags
)
478 RtlCaptureContext( &ctx
);
479 copy_context( context
, &ctx
, ctx
.ContextFlags
& needed_flags
);
480 context
->ContextFlags
|= ctx
.ContextFlags
& needed_flags
;
482 return STATUS_SUCCESS
;
486 extern void raise_func_trampoline_thumb( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, raise_func func
);
487 __ASM_GLOBAL_FUNC( raise_func_trampoline_thumb
,
492 extern void raise_func_trampoline_arm( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, raise_func func
);
493 __ASM_GLOBAL_FUNC( raise_func_trampoline_arm
,
498 /***********************************************************************
499 * setup_exception_record
501 * Setup the exception record and context on the thread stack.
503 static EXCEPTION_RECORD
*setup_exception( ucontext_t
*sigcontext
, raise_func func
)
508 EXCEPTION_RECORD rec
;
510 DWORD exception_code
= 0;
512 stack
= (struct stack_layout
*)(SP_sig(sigcontext
) & ~3);
513 stack
--; /* push the stack_layout structure */
515 stack
->rec
.ExceptionRecord
= NULL
;
516 stack
->rec
.ExceptionCode
= exception_code
;
517 stack
->rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
518 stack
->rec
.ExceptionAddress
= (LPVOID
)PC_sig(sigcontext
);
519 stack
->rec
.NumberParameters
= 0;
521 save_context( &stack
->context
, sigcontext
);
523 /* now modify the sigcontext to return to the raise function */
524 SP_sig(sigcontext
) = (DWORD
)stack
;
525 if (CPSR_sig(sigcontext
) & 0x20)
526 PC_sig(sigcontext
) = (DWORD
)raise_func_trampoline_thumb
;
528 PC_sig(sigcontext
) = (DWORD
)raise_func_trampoline_arm
;
529 REGn_sig(0, sigcontext
) = (DWORD
)&stack
->rec
; /* first arg for raise_func */
530 REGn_sig(1, sigcontext
) = (DWORD
)&stack
->context
; /* second arg for raise_func */
531 REGn_sig(2, sigcontext
) = (DWORD
)func
; /* the raise_func as third arg for the trampoline */
537 /**********************************************************************
538 * raise_segv_exception
540 static void WINAPI
raise_segv_exception( EXCEPTION_RECORD
*rec
, CONTEXT
*context
)
544 switch(rec
->ExceptionCode
)
546 case EXCEPTION_ACCESS_VIOLATION
:
547 if (rec
->NumberParameters
== 2)
549 if (!(rec
->ExceptionCode
= virtual_handle_fault( (void *)rec
->ExceptionInformation
[1],
550 rec
->ExceptionInformation
[0], FALSE
)))
555 status
= NtRaiseException( rec
, context
, TRUE
);
556 if (status
) raise_status( status
, rec
);
558 set_cpu_context( context
);
561 /**********************************************************************
562 * call_stack_handlers
564 * Call the stack handlers chain.
566 static NTSTATUS
call_stack_handlers( EXCEPTION_RECORD
*rec
, CONTEXT
*context
)
568 EXCEPTION_REGISTRATION_RECORD
*frame
, *dispatch
, *nested_frame
;
571 frame
= NtCurrentTeb()->Tib
.ExceptionList
;
573 while (frame
!= (EXCEPTION_REGISTRATION_RECORD
*)~0UL)
575 /* Check frame address */
576 if (!is_valid_frame( frame
))
578 rec
->ExceptionFlags
|= EH_STACK_INVALID
;
583 TRACE( "calling handler at %p code=%x flags=%x\n",
584 frame
->Handler
, rec
->ExceptionCode
, rec
->ExceptionFlags
);
585 res
= frame
->Handler( rec
, frame
, context
, &dispatch
);
586 TRACE( "handler at %p returned %x\n", frame
->Handler
, res
);
588 if (frame
== nested_frame
)
590 /* no longer nested */
592 rec
->ExceptionFlags
&= ~EH_NESTED_CALL
;
597 case ExceptionContinueExecution
:
598 if (!(rec
->ExceptionFlags
& EH_NONCONTINUABLE
)) return STATUS_SUCCESS
;
599 return STATUS_NONCONTINUABLE_EXCEPTION
;
600 case ExceptionContinueSearch
:
602 case ExceptionNestedException
:
603 if (nested_frame
< dispatch
) nested_frame
= dispatch
;
604 rec
->ExceptionFlags
|= EH_NESTED_CALL
;
607 return STATUS_INVALID_DISPOSITION
;
611 return STATUS_UNHANDLED_EXCEPTION
;
615 /*******************************************************************
618 * Implementation of NtRaiseException.
620 static NTSTATUS
raise_exception( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, BOOL first_chance
)
628 TRACE( "code=%x flags=%x addr=%p pc=%08x tid=%04x\n",
629 rec
->ExceptionCode
, rec
->ExceptionFlags
, rec
->ExceptionAddress
,
630 context
->Pc
, GetCurrentThreadId() );
631 for (c
= 0; c
< rec
->NumberParameters
; c
++)
632 TRACE( " info[%d]=%08lx\n", c
, rec
->ExceptionInformation
[c
] );
633 if (rec
->ExceptionCode
== EXCEPTION_WINE_STUB
)
635 if (rec
->ExceptionInformation
[1] >> 16)
636 MESSAGE( "wine: Call from %p to unimplemented function %s.%s, aborting\n",
637 rec
->ExceptionAddress
,
638 (char*)rec
->ExceptionInformation
[0], (char*)rec
->ExceptionInformation
[1] );
640 MESSAGE( "wine: Call from %p to unimplemented function %s.%ld, aborting\n",
641 rec
->ExceptionAddress
,
642 (char*)rec
->ExceptionInformation
[0], rec
->ExceptionInformation
[1] );
646 TRACE( " r0=%08x r1=%08x r2=%08x r3=%08x r4=%08x r5=%08x\n",
647 context
->R0
, context
->R1
, context
->R2
, context
->R3
, context
->R4
, context
->R5
);
648 TRACE( " r6=%08x r7=%08x r8=%08x r9=%08x r10=%08x r11=%08x\n",
649 context
->R6
, context
->R7
, context
->R8
, context
->R9
, context
->R10
, context
->R11
);
650 TRACE( " r12=%08x sp=%08x lr=%08x pc=%08x cpsr=%08x\n",
651 context
->R12
, context
->Sp
, context
->Lr
, context
->Pc
, context
->Cpsr
);
654 status
= send_debug_event( rec
, TRUE
, context
);
655 if (status
== DBG_CONTINUE
|| status
== DBG_EXCEPTION_HANDLED
)
656 return STATUS_SUCCESS
;
658 if (call_vectored_handlers( rec
, context
) == EXCEPTION_CONTINUE_EXECUTION
)
659 return STATUS_SUCCESS
;
661 if ((status
= call_stack_handlers( rec
, context
)) != STATUS_UNHANDLED_EXCEPTION
)
665 /* last chance exception */
667 status
= send_debug_event( rec
, FALSE
, context
);
668 if (status
!= DBG_CONTINUE
)
670 if (rec
->ExceptionFlags
& EH_STACK_INVALID
)
671 ERR("Exception frame is not in stack limits => unable to dispatch exception.\n");
672 else if (rec
->ExceptionCode
== STATUS_NONCONTINUABLE_EXCEPTION
)
673 ERR("Process attempted to continue execution after noncontinuable exception.\n");
675 ERR("Unhandled exception code %x flags %x addr %p\n",
676 rec
->ExceptionCode
, rec
->ExceptionFlags
, rec
->ExceptionAddress
);
677 NtTerminateProcess( NtCurrentProcess(), rec
->ExceptionCode
);
679 return STATUS_SUCCESS
;
683 /**********************************************************************
686 * Handler for SIGSEGV and related errors.
688 static void segv_handler( int signal
, siginfo_t
*info
, void *ucontext
)
690 EXCEPTION_RECORD
*rec
;
691 ucontext_t
*context
= ucontext
;
693 /* check for page fault inside the thread stack */
694 if (get_trap_code(context
) == TRAP_ARM_PAGEFLT
&&
695 (char *)info
->si_addr
>= (char *)NtCurrentTeb()->DeallocationStack
&&
696 (char *)info
->si_addr
< (char *)NtCurrentTeb()->Tib
.StackBase
&&
697 virtual_handle_stack_fault( info
->si_addr
))
699 /* check if this was the last guard page */
700 if ((char *)info
->si_addr
< (char *)NtCurrentTeb()->DeallocationStack
+ 2*4096)
702 rec
= setup_exception( context
, raise_segv_exception
);
703 rec
->ExceptionCode
= EXCEPTION_STACK_OVERFLOW
;
708 rec
= setup_exception( context
, raise_segv_exception
);
709 if (rec
->ExceptionCode
== EXCEPTION_STACK_OVERFLOW
) return;
711 switch(get_trap_code(context
))
713 case TRAP_ARM_PRIVINFLT
: /* Invalid opcode exception */
714 rec
->ExceptionCode
= EXCEPTION_ILLEGAL_INSTRUCTION
;
716 case TRAP_ARM_PAGEFLT
: /* Page fault */
717 rec
->ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
718 rec
->NumberParameters
= 2;
719 rec
->ExceptionInformation
[0] = (get_error_code(context
) & 0x800) != 0;
720 rec
->ExceptionInformation
[1] = (ULONG_PTR
)info
->si_addr
;
722 case TRAP_ARM_ALIGNFLT
: /* Alignment check exception */
723 rec
->ExceptionCode
= EXCEPTION_DATATYPE_MISALIGNMENT
;
725 case TRAP_ARM_UNKNOWN
: /* Unknown fault code */
726 rec
->ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
727 rec
->NumberParameters
= 2;
728 rec
->ExceptionInformation
[0] = 0;
729 rec
->ExceptionInformation
[1] = 0xffffffff;
732 ERR("Got unexpected trap %d\n", get_trap_code(context
));
733 rec
->ExceptionCode
= EXCEPTION_ILLEGAL_INSTRUCTION
;
738 /**********************************************************************
741 * Handler for SIGTRAP.
743 static void trap_handler( int signal
, siginfo_t
*info
, void *ucontext
)
745 EXCEPTION_RECORD rec
;
749 switch ( info
->si_code
)
752 rec
.ExceptionCode
= EXCEPTION_SINGLE_STEP
;
756 rec
.ExceptionCode
= EXCEPTION_BREAKPOINT
;
760 save_context( &context
, ucontext
);
761 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
762 rec
.ExceptionRecord
= NULL
;
763 rec
.ExceptionAddress
= (LPVOID
)context
.Pc
;
764 rec
.NumberParameters
= 0;
765 status
= raise_exception( &rec
, &context
, TRUE
);
766 if (status
) raise_status( status
, &rec
);
767 restore_context( &context
, ucontext
);
770 /**********************************************************************
773 * Handler for SIGFPE.
775 static void fpe_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
777 EXCEPTION_RECORD rec
;
781 save_fpu( &context
, sigcontext
);
782 save_context( &context
, sigcontext
);
784 switch (siginfo
->si_code
& 0xffff )
788 rec
.ExceptionCode
= EXCEPTION_ARRAY_BOUNDS_EXCEEDED
;
793 rec
.ExceptionCode
= EXCEPTION_INT_DIVIDE_BY_ZERO
;
798 rec
.ExceptionCode
= EXCEPTION_INT_OVERFLOW
;
803 rec
.ExceptionCode
= EXCEPTION_FLT_DIVIDE_BY_ZERO
;
808 rec
.ExceptionCode
= EXCEPTION_FLT_OVERFLOW
;
813 rec
.ExceptionCode
= EXCEPTION_FLT_UNDERFLOW
;
818 rec
.ExceptionCode
= EXCEPTION_FLT_INEXACT_RESULT
;
825 rec
.ExceptionCode
= EXCEPTION_FLT_INVALID_OPERATION
;
828 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
829 rec
.ExceptionRecord
= NULL
;
830 rec
.ExceptionAddress
= (LPVOID
)context
.Pc
;
831 rec
.NumberParameters
= 0;
832 status
= raise_exception( &rec
, &context
, TRUE
);
833 if (status
) raise_status( status
, &rec
);
835 restore_context( &context
, sigcontext
);
836 restore_fpu( &context
, sigcontext
);
839 /**********************************************************************
842 * Handler for SIGINT.
844 static void int_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
846 if (!dispatch_signal(SIGINT
))
848 EXCEPTION_RECORD rec
;
852 save_context( &context
, sigcontext
);
853 rec
.ExceptionCode
= CONTROL_C_EXIT
;
854 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
855 rec
.ExceptionRecord
= NULL
;
856 rec
.ExceptionAddress
= (LPVOID
)context
.Pc
;
857 rec
.NumberParameters
= 0;
858 status
= raise_exception( &rec
, &context
, TRUE
);
859 if (status
) raise_status( status
, &rec
);
860 restore_context( &context
, sigcontext
);
865 /**********************************************************************
868 * Handler for SIGABRT.
870 static void abrt_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
872 EXCEPTION_RECORD rec
;
876 save_context( &context
, sigcontext
);
877 rec
.ExceptionCode
= EXCEPTION_WINE_ASSERTION
;
878 rec
.ExceptionFlags
= EH_NONCONTINUABLE
;
879 rec
.ExceptionRecord
= NULL
;
880 rec
.ExceptionAddress
= (LPVOID
)context
.Pc
;
881 rec
.NumberParameters
= 0;
882 status
= raise_exception( &rec
, &context
, TRUE
);
883 if (status
) raise_status( status
, &rec
);
884 restore_context( &context
, sigcontext
);
888 /**********************************************************************
891 * Handler for SIGQUIT.
893 static void quit_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
899 /**********************************************************************
902 * Handler for SIGUSR1, used to signal a thread that it got suspended.
904 static void usr1_handler( int signal
, siginfo_t
*siginfo
, void *sigcontext
)
908 save_context( &context
, sigcontext
);
909 wait_suspend( &context
);
910 restore_context( &context
, sigcontext
);
914 /***********************************************************************
915 * __wine_set_signal_handler (NTDLL.@)
917 int CDECL
__wine_set_signal_handler(unsigned int sig
, wine_signal_handler wsh
)
919 if (sig
>= sizeof(handlers
) / sizeof(handlers
[0])) return -1;
920 if (handlers
[sig
] != NULL
) return -2;
926 /**********************************************************************
927 * signal_alloc_thread
929 NTSTATUS
signal_alloc_thread( TEB
**teb
)
931 static size_t sigstack_zero_bits
;
935 if (!sigstack_zero_bits
)
937 size_t min_size
= page_size
;
938 /* find the first power of two not smaller than min_size */
939 while ((1u << sigstack_zero_bits
) < min_size
) sigstack_zero_bits
++;
940 assert( sizeof(TEB
) <= min_size
);
943 size
= 1 << sigstack_zero_bits
;
945 if (!(status
= NtAllocateVirtualMemory( NtCurrentProcess(), (void **)teb
, sigstack_zero_bits
,
946 &size
, MEM_COMMIT
| MEM_TOP_DOWN
, PAGE_READWRITE
)))
948 (*teb
)->Tib
.Self
= &(*teb
)->Tib
;
949 (*teb
)->Tib
.ExceptionList
= (void *)~0UL;
955 /**********************************************************************
958 void signal_free_thread( TEB
*teb
)
962 NtFreeVirtualMemory( NtCurrentProcess(), (void **)&teb
, &size
, MEM_RELEASE
);
966 /**********************************************************************
969 void signal_init_thread( TEB
*teb
)
971 static BOOL init_done
;
975 pthread_key_create( &teb_key
, NULL
);
979 #if defined(__ARM_ARCH_7A__) || defined(__ARM_ARCH_8A__)
980 /* Win32/ARM applications expect the TEB pointer to be in the TPIDRURW register. */
981 __asm__
__volatile__( "mcr p15, 0, %0, c13, c0, 2" : : "r" (teb
) );
984 pthread_setspecific( teb_key
, teb
);
988 /**********************************************************************
989 * signal_init_process
991 void signal_init_process(void)
993 struct sigaction sig_act
;
995 sig_act
.sa_mask
= server_block_set
;
996 sig_act
.sa_flags
= SA_RESTART
| SA_SIGINFO
;
998 sig_act
.sa_sigaction
= int_handler
;
999 if (sigaction( SIGINT
, &sig_act
, NULL
) == -1) goto error
;
1000 sig_act
.sa_sigaction
= fpe_handler
;
1001 if (sigaction( SIGFPE
, &sig_act
, NULL
) == -1) goto error
;
1002 sig_act
.sa_sigaction
= abrt_handler
;
1003 if (sigaction( SIGABRT
, &sig_act
, NULL
) == -1) goto error
;
1004 sig_act
.sa_sigaction
= quit_handler
;
1005 if (sigaction( SIGQUIT
, &sig_act
, NULL
) == -1) goto error
;
1006 sig_act
.sa_sigaction
= usr1_handler
;
1007 if (sigaction( SIGUSR1
, &sig_act
, NULL
) == -1) goto error
;
1009 sig_act
.sa_sigaction
= segv_handler
;
1010 if (sigaction( SIGSEGV
, &sig_act
, NULL
) == -1) goto error
;
1011 if (sigaction( SIGILL
, &sig_act
, NULL
) == -1) goto error
;
1013 if (sigaction( SIGBUS
, &sig_act
, NULL
) == -1) goto error
;
1017 sig_act
.sa_sigaction
= trap_handler
;
1018 if (sigaction( SIGTRAP
, &sig_act
, NULL
) == -1) goto error
;
1023 perror("sigaction");
1028 /**********************************************************************
1029 * RtlAddFunctionTable (NTDLL.@)
1031 BOOLEAN CDECL
RtlAddFunctionTable( RUNTIME_FUNCTION
*table
, DWORD count
, DWORD addr
)
1033 FIXME( "%p %u %x: stub\n", table
, count
, addr
);
1038 /**********************************************************************
1039 * RtlDeleteFunctionTable (NTDLL.@)
1041 BOOLEAN CDECL
RtlDeleteFunctionTable( RUNTIME_FUNCTION
*table
)
1043 FIXME( "%p: stub\n", table
);
1047 /**********************************************************************
1048 * find_function_info
1050 static RUNTIME_FUNCTION
*find_function_info( ULONG_PTR pc
, HMODULE module
,
1051 RUNTIME_FUNCTION
*func
, ULONG size
)
1054 int max
= size
/sizeof(*func
) - 1;
1058 int pos
= (min
+ max
) / 2;
1059 DWORD begin
= (func
[pos
].BeginAddress
& ~1), end
;
1060 if (func
[pos
].u
.s
.Flag
)
1061 end
= begin
+ func
[pos
].u
.s
.FunctionLength
* 2;
1064 struct UNWIND_INFO
*info
;
1065 info
= (struct UNWIND_INFO
*)((char *)module
+ func
[pos
].u
.UnwindData
);
1066 end
= begin
+ info
->function_length
* 2;
1069 if ((char *)pc
< (char *)module
+ begin
) max
= pos
- 1;
1070 else if ((char *)pc
>= (char *)module
+ end
) min
= pos
+ 1;
1071 else return func
+ pos
;
1076 /**********************************************************************
1077 * RtlLookupFunctionEntry (NTDLL.@)
1079 PRUNTIME_FUNCTION WINAPI
RtlLookupFunctionEntry( ULONG_PTR pc
, DWORD
*base
,
1080 UNWIND_HISTORY_TABLE
*table
)
1083 RUNTIME_FUNCTION
*func
;
1086 /* FIXME: should use the history table to make things faster */
1088 if (LdrFindEntryForAddress( (void *)pc
, &module
))
1090 WARN( "module not found for %lx\n", pc
);
1093 if (!(func
= RtlImageDirectoryEntryToData( module
->BaseAddress
, TRUE
,
1094 IMAGE_DIRECTORY_ENTRY_EXCEPTION
, &size
)))
1096 WARN( "no exception table found in module %p pc %lx\n", module
->BaseAddress
, pc
);
1099 func
= find_function_info( pc
, module
->BaseAddress
, func
, size
);
1100 if (func
) *base
= (DWORD
)module
->BaseAddress
;
1104 /***********************************************************************
1105 * RtlUnwind (NTDLL.@)
1107 void WINAPI
RtlUnwind( void *endframe
, void *target_ip
, EXCEPTION_RECORD
*rec
, void *retval
)
1110 EXCEPTION_RECORD record
;
1111 EXCEPTION_REGISTRATION_RECORD
*frame
, *dispatch
;
1114 RtlCaptureContext( &context
);
1115 context
.R0
= (DWORD
)retval
;
1117 /* build an exception record, if we do not have one */
1120 record
.ExceptionCode
= STATUS_UNWIND
;
1121 record
.ExceptionFlags
= 0;
1122 record
.ExceptionRecord
= NULL
;
1123 record
.ExceptionAddress
= (void *)context
.Pc
;
1124 record
.NumberParameters
= 0;
1128 rec
->ExceptionFlags
|= EH_UNWINDING
| (endframe
? 0 : EH_EXIT_UNWIND
);
1130 TRACE( "code=%x flags=%x\n", rec
->ExceptionCode
, rec
->ExceptionFlags
);
1132 /* get chain of exception frames */
1133 frame
= NtCurrentTeb()->Tib
.ExceptionList
;
1134 while ((frame
!= (EXCEPTION_REGISTRATION_RECORD
*)~0UL) && (frame
!= endframe
))
1136 /* Check frame address */
1137 if (endframe
&& ((void*)frame
> endframe
))
1138 raise_status( STATUS_INVALID_UNWIND_TARGET
, rec
);
1140 if (!is_valid_frame( frame
)) raise_status( STATUS_BAD_STACK
, rec
);
1143 TRACE( "calling handler at %p code=%x flags=%x\n",
1144 frame
->Handler
, rec
->ExceptionCode
, rec
->ExceptionFlags
);
1145 res
= frame
->Handler(rec
, frame
, &context
, &dispatch
);
1146 TRACE( "handler at %p returned %x\n", frame
->Handler
, res
);
1150 case ExceptionContinueSearch
:
1152 case ExceptionCollidedUnwind
:
1156 raise_status( STATUS_INVALID_DISPOSITION
, rec
);
1159 frame
= __wine_pop_frame( frame
);
1163 /*******************************************************************
1164 * NtRaiseException (NTDLL.@)
1166 NTSTATUS WINAPI
NtRaiseException( EXCEPTION_RECORD
*rec
, CONTEXT
*context
, BOOL first_chance
)
1168 NTSTATUS status
= raise_exception( rec
, context
, first_chance
);
1169 if (status
== STATUS_SUCCESS
) NtSetContextThread( GetCurrentThread(), context
);
1173 /***********************************************************************
1174 * RtlRaiseException (NTDLL.@)
1176 void WINAPI
RtlRaiseException( EXCEPTION_RECORD
*rec
)
1181 RtlCaptureContext( &context
);
1182 rec
->ExceptionAddress
= (LPVOID
)context
.Pc
;
1183 status
= raise_exception( rec
, &context
, TRUE
);
1184 if (status
) raise_status( status
, rec
);
1187 /*************************************************************************
1188 * RtlCaptureStackBackTrace (NTDLL.@)
1190 USHORT WINAPI
RtlCaptureStackBackTrace( ULONG skip
, ULONG count
, PVOID
*buffer
, ULONG
*hash
)
1192 FIXME( "(%d, %d, %p, %p) stub!\n", skip
, count
, buffer
, hash
);
1196 /***********************************************************************
1197 * call_thread_entry_point
1199 static void call_thread_entry_point( LPTHREAD_START_ROUTINE entry
, void *arg
)
1203 TRACE_(relay
)( "\1Starting thread proc %p (arg=%p)\n", entry
, arg
);
1204 RtlExitUserThread( entry( arg
));
1206 __EXCEPT(unhandled_exception_filter
)
1208 NtTerminateThread( GetCurrentThread(), GetExceptionCode() );
1211 abort(); /* should not be reached */
1214 extern void DECLSPEC_NORETURN
start_thread( LPTHREAD_START_ROUTINE entry
, void *arg
, BOOL suspend
,
1215 void *relay
, TEB
*teb
);
1216 __ASM_GLOBAL_FUNC( start_thread
,
1218 "push {r4-r12,lr}\n\t"
1219 /* store exit frame */
1220 "ldr r4, [sp, #40]\n\t" /* teb */
1221 "str sp, [r4, #0x1d4]\n\t" /* teb->SystemReserved2 */
1222 /* switch to thread stack */
1223 "ldr r4, [r4, #4]\n\t" /* teb->Tib.StackBase */
1224 "sub sp, r4, #0x1000\n\t"
1226 "bl " __ASM_NAME("attach_thread") "\n\t"
1228 /* clear the stack */
1229 "and r0, #~0xff0\n\t" /* round down to page size */
1230 "bl " __ASM_NAME("virtual_clear_thread_stack") "\n\t"
1231 /* switch to the initial context */
1233 "b " __ASM_NAME("set_cpu_context") )
1235 extern void DECLSPEC_NORETURN
call_thread_exit_func( int status
, void (*func
)(int), TEB
*teb
);
1236 __ASM_GLOBAL_FUNC( call_thread_exit_func
,
1238 "ldr r3, [r2, #0x1d4]\n\t" /* teb->SystemReserved2 */
1240 "str ip, [r2, #0x1d4]\n\t"
1245 /***********************************************************************
1246 * init_thread_context
1248 static void init_thread_context( CONTEXT
*context
, LPTHREAD_START_ROUTINE entry
, void *arg
, void *relay
)
1250 context
->R0
= (DWORD
)entry
;
1251 context
->R1
= (DWORD
)arg
;
1252 context
->Sp
= (DWORD
)NtCurrentTeb()->Tib
.StackBase
;
1253 context
->Pc
= (DWORD
)relay
;
1257 /***********************************************************************
1260 PCONTEXT DECLSPEC_HIDDEN
attach_thread( LPTHREAD_START_ROUTINE entry
, void *arg
,
1261 BOOL suspend
, void *relay
)
1267 CONTEXT context
= { CONTEXT_ALL
};
1269 init_thread_context( &context
, entry
, arg
, relay
);
1270 wait_suspend( &context
);
1271 ctx
= (CONTEXT
*)((ULONG_PTR
)context
.Sp
& ~15) - 1;
1276 ctx
= (CONTEXT
*)NtCurrentTeb()->Tib
.StackBase
- 1;
1277 init_thread_context( ctx
, entry
, arg
, relay
);
1279 ctx
->ContextFlags
= CONTEXT_FULL
;
1285 /***********************************************************************
1286 * signal_start_thread
1288 * Thread startup sequence:
1289 * signal_start_thread()
1290 * -> thread_startup()
1291 * -> call_thread_entry_point()
1293 void signal_start_thread( LPTHREAD_START_ROUTINE entry
, void *arg
, BOOL suspend
)
1295 start_thread( entry
, arg
, suspend
, call_thread_entry_point
, NtCurrentTeb() );
1298 /**********************************************************************
1299 * signal_start_process
1301 * Process startup sequence:
1302 * signal_start_process()
1303 * -> thread_startup()
1304 * -> kernel32_start_process()
1306 void signal_start_process( LPTHREAD_START_ROUTINE entry
, BOOL suspend
)
1308 start_thread( entry
, NtCurrentTeb()->Peb
, suspend
, kernel32_start_process
, NtCurrentTeb() );
1311 /***********************************************************************
1312 * signal_exit_thread
1314 void signal_exit_thread( int status
)
1316 call_thread_exit_func( status
, exit_thread
, NtCurrentTeb() );
1319 /***********************************************************************
1320 * signal_exit_process
1322 void signal_exit_process( int status
)
1324 call_thread_exit_func( status
, exit
, NtCurrentTeb() );
1327 /**********************************************************************
1328 * DbgBreakPoint (NTDLL.@)
1330 void WINAPI
DbgBreakPoint(void)
1332 kill(getpid(), SIGTRAP
);
1335 /**********************************************************************
1336 * DbgUserBreakPoint (NTDLL.@)
1338 void WINAPI
DbgUserBreakPoint(void)
1340 kill(getpid(), SIGTRAP
);
1343 /**********************************************************************
1344 * NtCurrentTeb (NTDLL.@)
1346 TEB
* WINAPI
NtCurrentTeb(void)
1348 return pthread_getspecific( teb_key
);
1351 #endif /* __arm__ */