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/>.
21 #include "disas/disas.h"
23 #include "qemu/bitops.h"
36 #include <sys/ucontext.h>
39 //#define DEBUG_SIGNAL
41 static void exception_action(CPUArchState
*env1
)
43 #if defined(TARGET_I386)
44 raise_exception_err(env1
, env1
->exception_index
, env1
->error_code
);
50 /* exit the current TB from a signal handler. The host registers are
51 restored in a state compatible with the CPU emulator
53 void cpu_resume_from_signal(CPUArchState
*env1
, void *puc
)
56 struct ucontext
*uc
= puc
;
57 #elif defined(__OpenBSD__)
58 struct sigcontext
*uc
= puc
;
62 /* XXX: use siglongjmp ? */
65 sigprocmask(SIG_SETMASK
, (sigset_t
*)&uc
->uc_sigmask
, NULL
);
67 sigprocmask(SIG_SETMASK
, &uc
->uc_sigmask
, NULL
);
69 #elif defined(__OpenBSD__)
70 sigprocmask(SIG_SETMASK
, &uc
->sc_mask
, NULL
);
73 env1
->exception_index
= -1;
74 siglongjmp(env1
->jmp_env
, 1);
77 /* 'pc' is the host PC at which the exception was raised. 'address' is
78 the effective address of the memory exception. 'is_write' is 1 if a
79 write caused the exception and otherwise 0'. 'old_set' is the
80 signal set which should be restored */
81 static inline int handle_cpu_signal(uintptr_t pc
, unsigned long address
,
82 int is_write
, sigset_t
*old_set
,
88 #if defined(DEBUG_SIGNAL)
89 qemu_printf("qemu: SIGSEGV pc=0x%08lx address=%08lx w=%d oldset=0x%08lx\n",
90 pc
, address
, is_write
, *(unsigned long *)old_set
);
92 /* XXX: locking issue */
93 if (is_write
&& h2g_valid(address
)
94 && page_unprotect(h2g(address
), pc
, puc
)) {
98 /* Convert forcefully to guest address space, invalid addresses
99 are still valid segv ones */
100 address
= h2g_nocheck(address
);
102 env
= current_cpu
->env_ptr
;
103 /* see if it is an MMU fault */
104 ret
= cpu_handle_mmu_fault(env
, address
, is_write
, MMU_USER_IDX
);
106 return 0; /* not an MMU fault */
109 return 1; /* the MMU fault was handled without causing real CPU fault */
111 /* now we have a real cpu fault */
112 cpu_restore_state(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(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 defined(__GLIBC__) && (__GLIBC__ < 2 || (__GLIBC__ == 2 && __GLIBC_MINOR__ <= 3))
446 pc
= uc
->uc_mcontext
.gregs
[R15
];
448 pc
= uc
->uc_mcontext
.arm_pc
;
451 /* error_code is the FSR value, in which bit 11 is WnR (assuming a v6 or
452 * later processor; on v5 we will always report this as a read).
454 is_write
= extract32(uc
->uc_mcontext
.error_code
, 11, 1);
455 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
457 &uc
->uc_sigmask
, puc
);
460 #elif defined(__aarch64__)
462 int cpu_signal_handler(int host_signum
, void *pinfo
,
465 siginfo_t
*info
= pinfo
;
466 struct ucontext
*uc
= puc
;
468 int is_write
= 0; /* XXX how to determine? */
470 pc
= uc
->uc_mcontext
.pc
;
471 return handle_cpu_signal(pc
, (uint64_t)info
->si_addr
,
472 is_write
, &uc
->uc_sigmask
, puc
);
475 #elif defined(__mc68000)
477 int cpu_signal_handler(int host_signum
, void *pinfo
,
480 siginfo_t
*info
= pinfo
;
481 struct ucontext
*uc
= puc
;
485 pc
= uc
->uc_mcontext
.gregs
[16];
486 /* XXX: compute is_write */
488 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
490 &uc
->uc_sigmask
, puc
);
493 #elif defined(__ia64)
496 /* This ought to be in <bits/siginfo.h>... */
497 # define __ISR_VALID 1
500 int cpu_signal_handler(int host_signum
, void *pinfo
, void *puc
)
502 siginfo_t
*info
= pinfo
;
503 struct ucontext
*uc
= puc
;
507 ip
= uc
->uc_mcontext
.sc_ip
;
508 switch (host_signum
) {
514 if (info
->si_code
&& (info
->si_segvflags
& __ISR_VALID
)) {
515 /* ISR.W (write-access) is bit 33: */
516 is_write
= (info
->si_isr
>> 33) & 1;
523 return handle_cpu_signal(ip
, (unsigned long)info
->si_addr
,
525 (sigset_t
*)&uc
->uc_sigmask
, puc
);
528 #elif defined(__s390__)
530 int cpu_signal_handler(int host_signum
, void *pinfo
,
533 siginfo_t
*info
= pinfo
;
534 struct ucontext
*uc
= puc
;
539 pc
= uc
->uc_mcontext
.psw
.addr
;
541 /* ??? On linux, the non-rt signal handler has 4 (!) arguments instead
542 of the normal 2 arguments. The 3rd argument contains the "int_code"
543 from the hardware which does in fact contain the is_write value.
544 The rt signal handler, as far as I can tell, does not give this value
545 at all. Not that we could get to it from here even if it were. */
546 /* ??? This is not even close to complete, since it ignores all
547 of the read-modify-write instructions. */
548 pinsn
= (uint16_t *)pc
;
549 switch (pinsn
[0] >> 8) {
555 case 0xc4: /* RIL format insns */
556 switch (pinsn
[0] & 0xf) {
558 case 0xb: /* STGRL */
559 case 0x7: /* STHRL */
563 case 0xe3: /* RXY format insns */
564 switch (pinsn
[2] & 0xff) {
567 case 0x72: /* STCY */
568 case 0x70: /* STHY */
569 case 0x8e: /* STPQ */
570 case 0x3f: /* STRVH */
571 case 0x3e: /* STRV */
572 case 0x2f: /* STRVG */
577 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
578 is_write
, &uc
->uc_sigmask
, puc
);
581 #elif defined(__mips__)
583 int cpu_signal_handler(int host_signum
, void *pinfo
,
586 siginfo_t
*info
= pinfo
;
587 struct ucontext
*uc
= puc
;
588 greg_t pc
= uc
->uc_mcontext
.pc
;
591 /* XXX: compute is_write */
593 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
594 is_write
, &uc
->uc_sigmask
, puc
);
597 #elif defined(__hppa__)
599 int cpu_signal_handler(int host_signum
, void *pinfo
,
602 siginfo_t
*info
= pinfo
;
603 struct ucontext
*uc
= puc
;
604 unsigned long pc
= uc
->uc_mcontext
.sc_iaoq
[0];
605 uint32_t insn
= *(uint32_t *)pc
;
608 /* XXX: need kernel patch to get write flag faster. */
609 switch (insn
>> 26) {
613 case 0x1b: /* STWM */
617 case 0x09: /* CSTWX, FSTWX, FSTWS */
618 case 0x0b: /* CSTDX, FSTDX, FSTDS */
619 /* Distinguish from coprocessor load ... */
620 is_write
= (insn
>> 9) & 1;
624 switch ((insn
>> 6) & 15) {
628 case 0xe: /* STWAS */
629 case 0xc: /* STBYS */
635 return handle_cpu_signal(pc
, (unsigned long)info
->si_addr
,
636 is_write
, &uc
->uc_sigmask
, puc
);
641 #error host CPU specific signal handler needed