2 * Sparc signal handling routines
4 * Copyright 1999 Ulrich Weigand
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., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
31 #include <sys/ucontext.h>
37 #include "wine/exception.h"
39 #include "stackframe.h"
41 #include "wine/debug.h"
43 WINE_DEFAULT_DEBUG_CHANNEL(seh
);
45 #define HANDLER_DEF(name) void name( int __signal, struct siginfo *__siginfo, ucontext_t *__context )
46 #define HANDLER_CONTEXT (__context)
48 typedef int (*wine_signal_handler
)(unsigned int sig
);
50 static wine_signal_handler handlers
[256];
52 static sigset_t all_sigs
;
54 extern void WINAPI
EXC_RtlRaiseException( PEXCEPTION_RECORD
, PCONTEXT
);
56 /***********************************************************************
59 inline static int dispatch_signal(unsigned int sig
)
61 if (handlers
[sig
] == NULL
) return 0;
62 return handlers
[sig
](sig
);
67 * FIXME: All this works only on Solaris for now
70 /**********************************************************************
73 static void save_context( CONTEXT
*context
, ucontext_t
*ucontext
)
75 /* Special registers */
76 context
->psr
= ucontext
->uc_mcontext
.gregs
[REG_PSR
];
77 context
->pc
= ucontext
->uc_mcontext
.gregs
[REG_PC
];
78 context
->npc
= ucontext
->uc_mcontext
.gregs
[REG_nPC
];
79 context
->y
= ucontext
->uc_mcontext
.gregs
[REG_Y
];
80 context
->wim
= 0; /* FIXME */
81 context
->tbr
= 0; /* FIXME */
83 /* Global registers */
84 context
->g0
= 0; /* always */
85 context
->g1
= ucontext
->uc_mcontext
.gregs
[REG_G1
];
86 context
->g2
= ucontext
->uc_mcontext
.gregs
[REG_G2
];
87 context
->g3
= ucontext
->uc_mcontext
.gregs
[REG_G3
];
88 context
->g4
= ucontext
->uc_mcontext
.gregs
[REG_G4
];
89 context
->g5
= ucontext
->uc_mcontext
.gregs
[REG_G5
];
90 context
->g6
= ucontext
->uc_mcontext
.gregs
[REG_G6
];
91 context
->g7
= ucontext
->uc_mcontext
.gregs
[REG_G7
];
93 /* Current 'out' registers */
94 context
->o0
= ucontext
->uc_mcontext
.gregs
[REG_O0
];
95 context
->o1
= ucontext
->uc_mcontext
.gregs
[REG_O1
];
96 context
->o2
= ucontext
->uc_mcontext
.gregs
[REG_O2
];
97 context
->o3
= ucontext
->uc_mcontext
.gregs
[REG_O3
];
98 context
->o4
= ucontext
->uc_mcontext
.gregs
[REG_O4
];
99 context
->o5
= ucontext
->uc_mcontext
.gregs
[REG_O5
];
100 context
->o6
= ucontext
->uc_mcontext
.gregs
[REG_O6
];
101 context
->o7
= ucontext
->uc_mcontext
.gregs
[REG_O7
];
103 /* FIXME: what if the current register window isn't saved? */
104 if ( ucontext
->uc_mcontext
.gwins
&& ucontext
->uc_mcontext
.gwins
->wbcnt
> 0 )
106 /* Current 'local' registers from first register window */
107 context
->l0
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[0];
108 context
->l1
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[1];
109 context
->l2
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[2];
110 context
->l3
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[3];
111 context
->l4
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[4];
112 context
->l5
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[5];
113 context
->l6
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[6];
114 context
->l7
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_local
[7];
116 /* Current 'in' registers from first register window */
117 context
->i0
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[0];
118 context
->i1
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[1];
119 context
->i2
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[2];
120 context
->i3
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[3];
121 context
->i4
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[4];
122 context
->i5
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[5];
123 context
->i6
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[6];
124 context
->i7
= ucontext
->uc_mcontext
.gwins
->wbuf
[0].rw_in
[7];
128 /**********************************************************************
131 static void restore_context( CONTEXT
*context
, ucontext_t
*ucontext
)
136 /**********************************************************************
139 static void save_fpu( CONTEXT
*context
, ucontext_t
*ucontext
)
144 /**********************************************************************
147 static void restore_fpu( CONTEXT
*context
, ucontext_t
*ucontext
)
153 /**********************************************************************
156 * Handler for SIGSEGV.
158 static void segv_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
160 EXCEPTION_RECORD rec
;
163 /* we want the page-fault case to be fast */
164 if ( info
->si_code
== SEGV_ACCERR
)
165 if (VIRTUAL_HandleFault( (LPVOID
)info
->si_addr
)) return;
167 save_context( &context
, ucontext
);
168 rec
.ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
169 rec
.ExceptionRecord
= NULL
;
170 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
171 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
172 rec
.NumberParameters
= 2;
173 rec
.ExceptionInformation
[0] = 0; /* FIXME: read/write access ? */
174 rec
.ExceptionInformation
[1] = (DWORD
)info
->si_addr
;
176 EXC_RtlRaiseException( &rec
, &context
);
177 restore_context( &context
, ucontext
);
180 /**********************************************************************
183 * Handler for SIGBUS.
185 static void bus_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
187 EXCEPTION_RECORD rec
;
190 save_context( &context
, ucontext
);
191 rec
.ExceptionRecord
= NULL
;
192 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
193 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
194 rec
.NumberParameters
= 0;
196 if ( info
->si_code
== BUS_ADRALN
)
197 rec
.ExceptionCode
= EXCEPTION_DATATYPE_MISALIGNMENT
;
199 rec
.ExceptionCode
= EXCEPTION_ACCESS_VIOLATION
;
201 EXC_RtlRaiseException( &rec
, &context
);
202 restore_context( &context
, ucontext
);
205 /**********************************************************************
208 * Handler for SIGILL.
210 static void ill_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
212 EXCEPTION_RECORD rec
;
215 switch ( info
->si_code
)
222 rec
.ExceptionCode
= EXCEPTION_ILLEGAL_INSTRUCTION
;
227 rec
.ExceptionCode
= EXCEPTION_PRIV_INSTRUCTION
;
231 rec
.ExceptionCode
= EXCEPTION_STACK_OVERFLOW
;
235 save_context( &context
, ucontext
);
236 rec
.ExceptionRecord
= NULL
;
237 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
238 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
239 rec
.NumberParameters
= 0;
240 EXC_RtlRaiseException( &rec
, &context
);
241 restore_context( &context
, ucontext
);
245 /**********************************************************************
248 * Handler for SIGTRAP.
250 static void trap_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
252 EXCEPTION_RECORD rec
;
255 switch ( info
->si_code
)
258 rec
.ExceptionCode
= EXCEPTION_SINGLE_STEP
;
262 rec
.ExceptionCode
= EXCEPTION_BREAKPOINT
;
266 save_context( &context
, ucontext
);
267 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
268 rec
.ExceptionRecord
= NULL
;
269 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
270 rec
.NumberParameters
= 0;
271 EXC_RtlRaiseException( &rec
, &context
);
272 restore_context( &context
, ucontext
);
276 /**********************************************************************
279 * Handler for SIGFPE.
281 static void fpe_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
283 EXCEPTION_RECORD rec
;
286 switch ( info
->si_code
)
289 rec
.ExceptionCode
= EXCEPTION_ARRAY_BOUNDS_EXCEEDED
;
292 rec
.ExceptionCode
= EXCEPTION_INT_DIVIDE_BY_ZERO
;
295 rec
.ExceptionCode
= EXCEPTION_INT_OVERFLOW
;
298 rec
.ExceptionCode
= EXCEPTION_FLT_DIVIDE_BY_ZERO
;
301 rec
.ExceptionCode
= EXCEPTION_FLT_OVERFLOW
;
304 rec
.ExceptionCode
= EXCEPTION_FLT_UNDERFLOW
;
307 rec
.ExceptionCode
= EXCEPTION_FLT_INEXACT_RESULT
;
311 rec
.ExceptionCode
= EXCEPTION_FLT_INVALID_OPERATION
;
315 save_context( &context
, ucontext
);
316 save_fpu( &context
, ucontext
);
317 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
318 rec
.ExceptionRecord
= NULL
;
319 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
320 rec
.NumberParameters
= 0;
321 EXC_RtlRaiseException( &rec
, &context
);
322 restore_context( &context
, ucontext
);
323 restore_fpu( &context
, ucontext
);
327 /**********************************************************************
330 * Handler for SIGINT.
332 static void int_handler( int signal
, siginfo_t
*info
, ucontext_t
*ucontext
)
334 if (!dispatch_signal(SIGINT
))
336 EXCEPTION_RECORD rec
;
339 save_context( &context
, ucontext
);
340 rec
.ExceptionCode
= CONTROL_C_EXIT
;
341 rec
.ExceptionFlags
= EXCEPTION_CONTINUABLE
;
342 rec
.ExceptionRecord
= NULL
;
343 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
344 rec
.NumberParameters
= 0;
345 EXC_RtlRaiseException( &rec
, &context
);
346 restore_context( &context
, ucontext
);
350 /**********************************************************************
353 * Handler for SIGABRT.
355 static HANDLER_DEF(abrt_handler
)
357 EXCEPTION_RECORD rec
;
360 save_context( &context
, HANDLER_CONTEXT
);
361 rec
.ExceptionCode
= EXCEPTION_WINE_ASSERTION
;
362 rec
.ExceptionFlags
= EH_NONCONTINUABLE
;
363 rec
.ExceptionRecord
= NULL
;
364 rec
.ExceptionAddress
= (LPVOID
)context
.pc
;
365 rec
.NumberParameters
= 0;
366 EXC_RtlRaiseException( &rec
, &context
); /* Should never return.. */
367 restore_context( &context
, HANDLER_CONTEXT
);
370 /***********************************************************************
373 * Set a signal handler
375 static int set_handler( int sig
, void (*func
)() )
377 struct sigaction sig_act
;
379 sig_act
.sa_handler
= NULL
;
380 sig_act
.sa_sigaction
= func
;
381 sigemptyset( &sig_act
.sa_mask
);
382 sig_act
.sa_flags
= SA_SIGINFO
;
384 return sigaction( sig
, &sig_act
, NULL
);
388 /***********************************************************************
389 * __wine_set_signal_handler (NTDLL.@)
391 int __wine_set_signal_handler(unsigned int sig
, wine_signal_handler wsh
)
393 if (sig
> sizeof(handlers
) / sizeof(handlers
[0])) return -1;
394 if (handlers
[sig
] != NULL
) return -2;
400 /***********************************************************************
403 * Unblock signals. Called from EXC_RtlRaiseException.
405 void SIGNAL_Unblock( void )
407 sigprocmask( SIG_UNBLOCK
, &all_sigs
, NULL
);
411 /**********************************************************************
414 BOOL
SIGNAL_Init(void)
416 sigfillset( &all_sigs
);
418 if (set_handler( SIGINT
, (void (*)())int_handler
) == -1) goto error
;
419 if (set_handler( SIGFPE
, (void (*)())fpe_handler
) == -1) goto error
;
420 if (set_handler( SIGSEGV
, (void (*)())segv_handler
) == -1) goto error
;
421 if (set_handler( SIGILL
, (void (*)())ill_handler
) == -1) goto error
;
422 if (set_handler( SIGBUS
, (void (*)())bus_handler
) == -1) goto error
;
423 if (set_handler( SIGTRAP
, (void (*)())trap_handler
) == -1) goto error
;
424 if (set_handler( SIGABRT
, (void (*)())abrt_handler
) == -1) goto error
;
433 /**********************************************************************
436 void SIGNAL_Reset(void)
440 /* block the async signals */
441 sigemptyset( &block_set
);
442 sigaddset( &block_set
, SIGALRM
);
443 sigaddset( &block_set
, SIGIO
);
444 sigaddset( &block_set
, SIGHUP
);
445 sigaddset( &block_set
, SIGUSR2
);
446 sigprocmask( SIG_BLOCK
, &block_set
, NULL
);
448 /* restore default handlers */
449 signal( SIGINT
, SIG_DFL
);
450 signal( SIGFPE
, SIG_DFL
);
451 signal( SIGSEGV
, SIG_DFL
);
452 signal( SIGILL
, SIG_DFL
);
453 signal( SIGBUS
, SIG_DFL
);
454 signal( SIGTRAP
, SIG_DFL
);
458 /**********************************************************************
461 void __wine_enter_vm86( CONTEXT
*context
)
463 MESSAGE("vm86 mode not supported on this platform\n");
466 /**********************************************************************
467 * DbgBreakPoint (NTDLL.@)
469 void WINAPI
DbgBreakPoint(void)
471 kill(getpid(), SIGTRAP
);
474 /**********************************************************************
475 * DbgUserBreakPoint (NTDLL.@)
477 void WINAPI
DbgUserBreakPoint(void)
479 kill(getpid(), SIGTRAP
);
482 #endif /* __sparc__ */