2 * User emulator execution
4 * Copyright (c) 2003-2005 Fabrice Bellard
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 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, see <http://www.gnu.org/licenses/>.
35 #include <sys/ucontext.h>
38 //#define DEBUG_SIGNAL
40 static void exception_action(CPUArchState
*env1
)
42 #if defined(TARGET_I386)
43 raise_exception_err(env1
, env1
->exception_index
, env1
->error_code
);
49 /* exit the current TB from a signal handler. The host registers are
50 restored in a state compatible with the CPU emulator
52 void cpu_resume_from_signal(CPUArchState
*env1
, void *puc
)
55 struct ucontext
*uc
= puc
;
56 #elif defined(__OpenBSD__)
57 struct sigcontext
*uc
= puc
;
61 /* XXX: use siglongjmp ? */
64 sigprocmask(SIG_SETMASK
, (sigset_t
*)&uc
->uc_sigmask
, NULL
);
66 sigprocmask(SIG_SETMASK
, &uc
->uc_sigmask
, NULL
);
68 #elif defined(__OpenBSD__)
69 sigprocmask(SIG_SETMASK
, &uc
->sc_mask
, NULL
);
72 env1
->exception_index
= -1;
73 longjmp(env1
->jmp_env
, 1);
76 /* 'pc' is the host PC at which the exception was raised. 'address' is
77 the effective address of the memory exception. 'is_write' is 1 if a
78 write caused the exception and otherwise 0'. 'old_set' is the
79 signal set which should be restored */
80 static inline int handle_cpu_signal(uintptr_t pc
, unsigned long address
,
81 int is_write
, sigset_t
*old_set
,
87 #if defined(DEBUG_SIGNAL)
88 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
89 pc
, address
, is_write
, *(unsigned long *)old_set
);
91 /* XXX: locking issue */
92 if (is_write
&& h2g_valid(address
)
93 && page_unprotect(h2g(address
), pc
, puc
)) {
97 /* see if it is an MMU fault */
98 ret
= cpu_handle_mmu_fault(cpu_single_env
, address
, is_write
,
101 return 0; /* not an MMU fault */
104 return 1; /* the MMU fault was handled without causing real CPU fault */
106 /* now we have a real cpu fault */
109 /* the PC is inside the translated code. It means that we have
110 a virtual CPU fault */
111 cpu_restore_state(tb
, cpu_single_env
, pc
);
114 /* we restore the process signal mask as the sigreturn should
115 do it (XXX: use sigsetjmp) */
116 sigprocmask(SIG_SETMASK
, old_set
, NULL
);
117 exception_action(cpu_single_env
);
119 /* never comes here */
123 #if defined(__i386__)
125 #if defined(__APPLE__)
126 #include <sys/ucontext.h>
128 #define EIP_sig(context) (*((unsigned long *)&(context)->uc_mcontext->ss.eip))
129 #define TRAP_sig(context) ((context)->uc_mcontext->es.trapno)
130 #define ERROR_sig(context) ((context)->uc_mcontext->es.err)
131 #define MASK_sig(context) ((context)->uc_sigmask)
132 #elif defined(__NetBSD__)
133 #include <ucontext.h>
135 #define EIP_sig(context) ((context)->uc_mcontext.__gregs[_REG_EIP])
136 #define TRAP_sig(context) ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
137 #define ERROR_sig(context) ((context)->uc_mcontext.__gregs[_REG_ERR])
138 #define MASK_sig(context) ((context)->uc_sigmask)
139 #elif defined(__FreeBSD__) || defined(__DragonFly__)
140 #include <ucontext.h>
142 #define EIP_sig(context) (*((unsigned long *)&(context)->uc_mcontext.mc_eip))
143 #define TRAP_sig(context) ((context)->uc_mcontext.mc_trapno)
144 #define ERROR_sig(context) ((context)->uc_mcontext.mc_err)
145 #define MASK_sig(context) ((context)->uc_sigmask)
146 #elif defined(__OpenBSD__)
147 #define EIP_sig(context) ((context)->sc_eip)
148 #define TRAP_sig(context) ((context)->sc_trapno)
149 #define ERROR_sig(context) ((context)->sc_err)
150 #define MASK_sig(context) ((context)->sc_mask)
152 #define EIP_sig(context) ((context)->uc_mcontext.gregs[REG_EIP])
153 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
154 #define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
155 #define MASK_sig(context) ((context)->uc_sigmask)
158 int cpu_signal_handler(int host_signum
, void *pinfo
,
161 siginfo_t
*info
= pinfo
;
162 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
163 ucontext_t
*uc
= puc
;
164 #elif defined(__OpenBSD__)
165 struct sigcontext
*uc
= puc
;
167 struct ucontext
*uc
= puc
;
176 #define REG_TRAPNO TRAPNO
179 trapno
= TRAP_sig(uc
);
180 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
182 (ERROR_sig(uc
) >> 1) & 1 : 0,
186 #elif defined(__x86_64__)
189 #define PC_sig(context) _UC_MACHINE_PC(context)
190 #define TRAP_sig(context) ((context)->uc_mcontext.__gregs[_REG_TRAPNO])
191 #define ERROR_sig(context) ((context)->uc_mcontext.__gregs[_REG_ERR])
192 #define MASK_sig(context) ((context)->uc_sigmask)
193 #elif defined(__OpenBSD__)
194 #define PC_sig(context) ((context)->sc_rip)
195 #define TRAP_sig(context) ((context)->sc_trapno)
196 #define ERROR_sig(context) ((context)->sc_err)
197 #define MASK_sig(context) ((context)->sc_mask)
198 #elif defined(__FreeBSD__) || defined(__DragonFly__)
199 #include <ucontext.h>
201 #define PC_sig(context) (*((unsigned long *)&(context)->uc_mcontext.mc_rip))
202 #define TRAP_sig(context) ((context)->uc_mcontext.mc_trapno)
203 #define ERROR_sig(context) ((context)->uc_mcontext.mc_err)
204 #define MASK_sig(context) ((context)->uc_sigmask)
206 #define PC_sig(context) ((context)->uc_mcontext.gregs[REG_RIP])
207 #define TRAP_sig(context) ((context)->uc_mcontext.gregs[REG_TRAPNO])
208 #define ERROR_sig(context) ((context)->uc_mcontext.gregs[REG_ERR])
209 #define MASK_sig(context) ((context)->uc_sigmask)
212 int cpu_signal_handler(int host_signum
, void *pinfo
,
215 siginfo_t
*info
= pinfo
;
217 #if defined(__NetBSD__) || defined(__FreeBSD__) || defined(__DragonFly__)
218 ucontext_t
*uc
= puc
;
219 #elif defined(__OpenBSD__)
220 struct sigcontext
*uc
= puc
;
222 struct ucontext
*uc
= puc
;
226 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
227 TRAP_sig(uc
) == 0xe ?
228 (ERROR_sig(uc
) >> 1) & 1 : 0,
232 #elif defined(_ARCH_PPC)
234 /***********************************************************************
235 * signal context platform-specific definitions
239 /* All Registers access - only for local access */
240 #define REG_sig(reg_name, context) \
241 ((context)->uc_mcontext.regs->reg_name)
242 /* Gpr Registers access */
243 #define GPR_sig(reg_num, context) REG_sig(gpr[reg_num], context)
244 /* Program counter */
245 #define IAR_sig(context) REG_sig(nip, context)
246 /* Machine State Register (Supervisor) */
247 #define MSR_sig(context) REG_sig(msr, context)
249 #define CTR_sig(context) REG_sig(ctr, context)
250 /* User's integer exception register */
251 #define XER_sig(context) REG_sig(xer, context)
253 #define LR_sig(context) REG_sig(link, context)
254 /* Condition register */
255 #define CR_sig(context) REG_sig(ccr, context)
257 /* Float Registers access */
258 #define FLOAT_sig(reg_num, context) \
259 (((double *)((char *)((context)->uc_mcontext.regs + 48 * 4)))[reg_num])
260 #define FPSCR_sig(context) \
261 (*(int *)((char *)((context)->uc_mcontext.regs + (48 + 32 * 2) * 4)))
262 /* Exception Registers access */
263 #define DAR_sig(context) REG_sig(dar, context)
264 #define DSISR_sig(context) REG_sig(dsisr, context)
265 #define TRAP_sig(context) REG_sig(trap, context)
268 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
269 #include <ucontext.h>
270 #define IAR_sig(context) ((context)->uc_mcontext.mc_srr0)
271 #define MSR_sig(context) ((context)->uc_mcontext.mc_srr1)
272 #define CTR_sig(context) ((context)->uc_mcontext.mc_ctr)
273 #define XER_sig(context) ((context)->uc_mcontext.mc_xer)
274 #define LR_sig(context) ((context)->uc_mcontext.mc_lr)
275 #define CR_sig(context) ((context)->uc_mcontext.mc_cr)
276 /* Exception Registers access */
277 #define DAR_sig(context) ((context)->uc_mcontext.mc_dar)
278 #define DSISR_sig(context) ((context)->uc_mcontext.mc_dsisr)
279 #define TRAP_sig(context) ((context)->uc_mcontext.mc_exc)
280 #endif /* __FreeBSD__|| __FreeBSD_kernel__ */
283 #include <sys/ucontext.h>
284 typedef struct ucontext SIGCONTEXT
;
285 /* All Registers access - only for local access */
286 #define REG_sig(reg_name, context) \
287 ((context)->uc_mcontext->ss.reg_name)
288 #define FLOATREG_sig(reg_name, context) \
289 ((context)->uc_mcontext->fs.reg_name)
290 #define EXCEPREG_sig(reg_name, context) \
291 ((context)->uc_mcontext->es.reg_name)
292 #define VECREG_sig(reg_name, context) \
293 ((context)->uc_mcontext->vs.reg_name)
294 /* Gpr Registers access */
295 #define GPR_sig(reg_num, context) REG_sig(r##reg_num, context)
296 /* Program counter */
297 #define IAR_sig(context) REG_sig(srr0, context)
298 /* Machine State Register (Supervisor) */
299 #define MSR_sig(context) REG_sig(srr1, context)
300 #define CTR_sig(context) REG_sig(ctr, context)
302 #define XER_sig(context) REG_sig(xer, context)
303 /* User's integer exception register */
304 #define LR_sig(context) REG_sig(lr, context)
305 /* Condition register */
306 #define CR_sig(context) REG_sig(cr, context)
307 /* Float Registers access */
308 #define FLOAT_sig(reg_num, context) \
309 FLOATREG_sig(fpregs[reg_num], context)
310 #define FPSCR_sig(context) \
311 ((double)FLOATREG_sig(fpscr, context))
312 /* Exception Registers access */
313 /* Fault registers for coredump */
314 #define DAR_sig(context) EXCEPREG_sig(dar, context)
315 #define DSISR_sig(context) EXCEPREG_sig(dsisr, context)
316 /* number of powerpc exception taken */
317 #define TRAP_sig(context) EXCEPREG_sig(exception, context)
318 #endif /* __APPLE__ */
320 int cpu_signal_handler(int host_signum
, void *pinfo
,
323 siginfo_t
*info
= pinfo
;
324 #if defined(__FreeBSD__) || defined(__FreeBSD_kernel__)
325 ucontext_t
*uc
= puc
;
327 struct ucontext
*uc
= puc
;
336 if (DSISR_sig(uc
) & 0x00800000) {
340 if (TRAP_sig(uc
) != 0x400 && (DSISR_sig(uc
) & 0x02000000)) {
344 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
345 is_write
, &uc
->uc_sigmask
, puc
);
348 #elif defined(__alpha__)
350 int cpu_signal_handler(int host_signum
, void *pinfo
,
353 siginfo_t
*info
= pinfo
;
354 struct ucontext
*uc
= puc
;
355 uint32_t *pc
= uc
->uc_mcontext
.sc_pc
;
359 /* XXX: need kernel patch to get write flag faster */
360 switch (insn
>> 26) {
363 case 0x0f: /* stq_u */
370 case 0x2e: /* stl_c */
371 case 0x2f: /* stq_c */
375 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
376 is_write
, &uc
->uc_sigmask
, puc
);
378 #elif defined(__sparc__)
380 int cpu_signal_handler(int host_signum
, void *pinfo
,
383 siginfo_t
*info
= pinfo
;
386 #if !defined(__arch64__) || defined(CONFIG_SOLARIS)
387 uint32_t *regs
= (uint32_t *)(info
+ 1);
388 void *sigmask
= (regs
+ 20);
389 /* XXX: is there a standard glibc define ? */
390 unsigned long pc
= regs
[1];
393 struct sigcontext
*sc
= puc
;
394 unsigned long pc
= sc
->sigc_regs
.tpc
;
395 void *sigmask
= (void *)sc
->sigc_mask
;
396 #elif defined(__OpenBSD__)
397 struct sigcontext
*uc
= puc
;
398 unsigned long pc
= uc
->sc_pc
;
399 void *sigmask
= (void *)(long)uc
->sc_mask
;
403 /* XXX: need kernel patch to get write flag faster */
405 insn
= *(uint32_t *)pc
;
406 if ((insn
>> 30) == 3) {
407 switch ((insn
>> 19) & 0x3f) {
409 case 0x15: /* stba */
411 case 0x16: /* stha */
415 case 0x17: /* stda */
417 case 0x1e: /* stxa */
419 case 0x34: /* stfa */
420 case 0x27: /* stdf */
421 case 0x37: /* stdfa */
422 case 0x26: /* stqf */
423 case 0x36: /* stqfa */
424 case 0x25: /* stfsr */
425 case 0x3c: /* casa */
426 case 0x3e: /* casxa */
431 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
432 is_write
, sigmask
, NULL
);
435 #elif defined(__arm__)
437 int cpu_signal_handler(int host_signum
, void *pinfo
,
440 siginfo_t
*info
= pinfo
;
441 struct ucontext
*uc
= puc
;
445 #if (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
446 pc
= uc
->uc_mcontext
.gregs
[R15
];
448 pc
= uc
->uc_mcontext
.arm_pc
;
450 /* XXX: compute is_write */
452 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
454 &uc
->uc_sigmask
, puc
);
457 #elif defined(__mc68000)
459 int cpu_signal_handler(int host_signum
, void *pinfo
,
462 siginfo_t
*info
= pinfo
;
463 struct ucontext
*uc
= puc
;
467 pc
= uc
->uc_mcontext
.gregs
[16];
468 /* XXX: compute is_write */
470 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
472 &uc
->uc_sigmask
, puc
);
475 #elif defined(__ia64)
478 /* This ought to be in <bits/siginfo.h>... */
479 # define __ISR_VALID 1
482 int cpu_signal_handler(int host_signum
, void *pinfo
, void *puc
)
484 siginfo_t
*info
= pinfo
;
485 struct ucontext
*uc
= puc
;
489 ip
= uc
->uc_mcontext
.sc_ip
;
490 switch (host_signum
) {
496 if (info
->si_code
&& (info
->si_segvflags
& __ISR_VALID
)) {
497 /* ISR.W (write-access) is bit 33: */
498 is_write
= (info
->si_isr
>> 33) & 1;
505 return handle_cpu_signal(ip
, (unsigned long)info
->si_addr
,
507 (sigset_t
*)&uc
->uc_sigmask
, puc
);
510 #elif defined(__s390__)
512 int cpu_signal_handler(int host_signum
, void *pinfo
,
515 siginfo_t
*info
= pinfo
;
516 struct ucontext
*uc
= puc
;
521 pc
= uc
->uc_mcontext
.psw
.addr
;
523 /* ??? On linux, the non-rt signal handler has 4 (!) arguments instead
524 of the normal 2 arguments. The 3rd argument contains the "int_code"
525 from the hardware which does in fact contain the is_write value.
526 The rt signal handler, as far as I can tell, does not give this value
527 at all. Not that we could get to it from here even if it were. */
528 /* ??? This is not even close to complete, since it ignores all
529 of the read-modify-write instructions. */
530 pinsn
= (uint16_t *)pc
;
531 switch (pinsn
[0] >> 8) {
537 case 0xc4: /* RIL format insns */
538 switch (pinsn
[0] & 0xf) {
540 case 0xb: /* STGRL */
541 case 0x7: /* STHRL */
545 case 0xe3: /* RXY format insns */
546 switch (pinsn
[2] & 0xff) {
549 case 0x72: /* STCY */
550 case 0x70: /* STHY */
551 case 0x8e: /* STPQ */
552 case 0x3f: /* STRVH */
553 case 0x3e: /* STRV */
554 case 0x2f: /* STRVG */
559 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
560 is_write
, &uc
->uc_sigmask
, puc
);
563 #elif defined(__mips__)
565 int cpu_signal_handler(int host_signum
, void *pinfo
,
568 siginfo_t
*info
= pinfo
;
569 struct ucontext
*uc
= puc
;
570 greg_t pc
= uc
->uc_mcontext
.pc
;
573 /* XXX: compute is_write */
575 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
576 is_write
, &uc
->uc_sigmask
, puc
);
579 #elif defined(__hppa__)
581 int cpu_signal_handler(int host_signum
, void *pinfo
,
584 siginfo_t
*info
= pinfo
;
585 struct ucontext
*uc
= puc
;
586 unsigned long pc
= uc
->uc_mcontext
.sc_iaoq
[0];
587 uint32_t insn
= *(uint32_t *)pc
;
590 /* XXX: need kernel patch to get write flag faster. */
591 switch (insn
>> 26) {
595 case 0x1b: /* STWM */
599 case 0x09: /* CSTWX, FSTWX, FSTWS */
600 case 0x0b: /* CSTDX, FSTDX, FSTDS */
601 /* Distinguish from coprocessor load ... */
602 is_write
= (insn
>> 9) & 1;
606 switch ((insn
>> 6) & 15) {
610 case 0xe: /* STWAS */
611 case 0xc: /* STBYS */
617 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
618 is_write
, &uc
->uc_sigmask
, puc
);
623 #error host CPU specific signal handler needed