2008-05-19 23:52:27 +00:00
|
|
|
/*
|
2005-04-16 22:20:36 +00:00
|
|
|
* etrap.S: Preparing for entry into the kernel on Sparc V9.
|
|
|
|
*
|
|
|
|
* Copyright (C) 1996, 1997 David S. Miller (davem@caip.rutgers.edu)
|
|
|
|
* Copyright (C) 1997, 1998, 1999 Jakub Jelinek (jj@ultra.linux.cz)
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include <asm/asi.h>
|
|
|
|
#include <asm/pstate.h>
|
|
|
|
#include <asm/ptrace.h>
|
|
|
|
#include <asm/page.h>
|
|
|
|
#include <asm/spitfire.h>
|
|
|
|
#include <asm/head.h>
|
|
|
|
#include <asm/processor.h>
|
|
|
|
#include <asm/mmu.h>
|
|
|
|
|
|
|
|
#define TASK_REGOFF (THREAD_SIZE-TRACEREG_SZ-STACKFRAME_SZ)
|
2008-10-30 04:25:00 +00:00
|
|
|
#define ETRAP_PSTATE1 (PSTATE_TSO | PSTATE_PRIV)
|
2005-04-16 22:20:36 +00:00
|
|
|
#define ETRAP_PSTATE2 \
|
2008-10-30 04:25:00 +00:00
|
|
|
(PSTATE_TSO | PSTATE_PEF | PSTATE_PRIV | PSTATE_IE)
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* On entry, %g7 is return address - 0x4.
|
|
|
|
* %g4 and %g5 will be preserved %l4 and %l5 respectively.
|
|
|
|
*/
|
|
|
|
|
|
|
|
.text
|
|
|
|
.align 64
|
sparc: Fix debugger syscall restart interactions.
So, forever, we've had this ptrace_signal_deliver implementation
which tries to handle all of the nasties that can occur when the
debugger looks at a process about to take a signal. It's meant
to address all of these issues inside of the kernel so that the
debugger need not be mindful of such things.
Problem is, this doesn't work.
The idea was that we should do the syscall restart business first, so
that the debugger captures that state. Otherwise, if the debugger for
example saves the child's state, makes the child execute something
else, then restores the saved state, we won't handle the syscall
restart properly because we lose the "we're in a syscall" state.
The code here worked for most cases, but if the debugger actually
passes the signal through to the child unaltered, it's possible that
we would do a syscall restart when we shouldn't have.
In particular this breaks the case of debugging a process under a gdb
which is being debugged by yet another gdb. gdb uses sigsuspend
to wait for SIGCHLD of the inferior, but if gdb itself is being
debugged by a top-level gdb we get a ptrace_stop(). The top-level gdb
does a PTRACE_CONT with SIGCHLD to let the inferior gdb see the
signal. But ptrace_signal_deliver() assumed the debugger would cancel
out the signal and therefore did a syscall restart, because the return
error was ERESTARTNOHAND.
Fix this by simply making ptrace_signal_deliver() a nop, and providing
a way for the debugger to control system call restarting properly:
1) Report a "in syscall" software bit in regs->{tstate,psr}.
It is set early on in trap entry to a system call and is fully
visible to the debugger via ptrace() and regsets.
2) Test this bit right before doing a syscall restart. We have
to do a final recheck right after get_signal_to_deliver() in
case the debugger cleared the bit during ptrace_stop().
3) Clear the bit in trap return so we don't accidently try to set
that bit in the real register.
As a result we also get a ptrace_{is,clear}_syscall() for sparc32 just
like sparc64 has.
M68K has this same exact bug, and is now the only other user of the
ptrace_signal_deliver hook. It needs to be fixed in the same exact
way as sparc.
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-05-11 09:07:19 +00:00
|
|
|
.globl etrap_syscall, etrap, etrap_irq, etraptl1
|
2005-04-16 22:20:36 +00:00
|
|
|
etrap: rdpr %pil, %g2
|
sparc: Fix debugger syscall restart interactions.
So, forever, we've had this ptrace_signal_deliver implementation
which tries to handle all of the nasties that can occur when the
debugger looks at a process about to take a signal. It's meant
to address all of these issues inside of the kernel so that the
debugger need not be mindful of such things.
Problem is, this doesn't work.
The idea was that we should do the syscall restart business first, so
that the debugger captures that state. Otherwise, if the debugger for
example saves the child's state, makes the child execute something
else, then restores the saved state, we won't handle the syscall
restart properly because we lose the "we're in a syscall" state.
The code here worked for most cases, but if the debugger actually
passes the signal through to the child unaltered, it's possible that
we would do a syscall restart when we shouldn't have.
In particular this breaks the case of debugging a process under a gdb
which is being debugged by yet another gdb. gdb uses sigsuspend
to wait for SIGCHLD of the inferior, but if gdb itself is being
debugged by a top-level gdb we get a ptrace_stop(). The top-level gdb
does a PTRACE_CONT with SIGCHLD to let the inferior gdb see the
signal. But ptrace_signal_deliver() assumed the debugger would cancel
out the signal and therefore did a syscall restart, because the return
error was ERESTARTNOHAND.
Fix this by simply making ptrace_signal_deliver() a nop, and providing
a way for the debugger to control system call restarting properly:
1) Report a "in syscall" software bit in regs->{tstate,psr}.
It is set early on in trap entry to a system call and is fully
visible to the debugger via ptrace() and regsets.
2) Test this bit right before doing a syscall restart. We have
to do a final recheck right after get_signal_to_deliver() in
case the debugger cleared the bit during ptrace_stop().
3) Clear the bit in trap return so we don't accidently try to set
that bit in the real register.
As a result we also get a ptrace_{is,clear}_syscall() for sparc32 just
like sparc64 has.
M68K has this same exact bug, and is now the only other user of the
ptrace_signal_deliver hook. It needs to be fixed in the same exact
way as sparc.
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-05-11 09:07:19 +00:00
|
|
|
etrap_irq: clr %g3
|
|
|
|
etrap_syscall: TRAP_LOAD_THREAD_REG(%g6, %g1)
|
2005-04-16 22:20:36 +00:00
|
|
|
rdpr %tstate, %g1
|
sparc: Fix debugger syscall restart interactions.
So, forever, we've had this ptrace_signal_deliver implementation
which tries to handle all of the nasties that can occur when the
debugger looks at a process about to take a signal. It's meant
to address all of these issues inside of the kernel so that the
debugger need not be mindful of such things.
Problem is, this doesn't work.
The idea was that we should do the syscall restart business first, so
that the debugger captures that state. Otherwise, if the debugger for
example saves the child's state, makes the child execute something
else, then restores the saved state, we won't handle the syscall
restart properly because we lose the "we're in a syscall" state.
The code here worked for most cases, but if the debugger actually
passes the signal through to the child unaltered, it's possible that
we would do a syscall restart when we shouldn't have.
In particular this breaks the case of debugging a process under a gdb
which is being debugged by yet another gdb. gdb uses sigsuspend
to wait for SIGCHLD of the inferior, but if gdb itself is being
debugged by a top-level gdb we get a ptrace_stop(). The top-level gdb
does a PTRACE_CONT with SIGCHLD to let the inferior gdb see the
signal. But ptrace_signal_deliver() assumed the debugger would cancel
out the signal and therefore did a syscall restart, because the return
error was ERESTARTNOHAND.
Fix this by simply making ptrace_signal_deliver() a nop, and providing
a way for the debugger to control system call restarting properly:
1) Report a "in syscall" software bit in regs->{tstate,psr}.
It is set early on in trap entry to a system call and is fully
visible to the debugger via ptrace() and regsets.
2) Test this bit right before doing a syscall restart. We have
to do a final recheck right after get_signal_to_deliver() in
case the debugger cleared the bit during ptrace_stop().
3) Clear the bit in trap return so we don't accidently try to set
that bit in the real register.
As a result we also get a ptrace_{is,clear}_syscall() for sparc32 just
like sparc64 has.
M68K has this same exact bug, and is now the only other user of the
ptrace_signal_deliver hook. It needs to be fixed in the same exact
way as sparc.
Signed-off-by: David S. Miller <davem@davemloft.net>
2008-05-11 09:07:19 +00:00
|
|
|
or %g1, %g3, %g1
|
2005-04-16 22:20:36 +00:00
|
|
|
sllx %g2, 20, %g3
|
|
|
|
andcc %g1, TSTATE_PRIV, %g0
|
|
|
|
or %g1, %g3, %g1
|
|
|
|
bne,pn %xcc, 1f
|
|
|
|
sub %sp, STACKFRAME_SZ+TRACEREG_SZ-STACK_BIAS, %g2
|
|
|
|
wrpr %g0, 7, %cleanwin
|
|
|
|
|
|
|
|
sethi %hi(TASK_REGOFF), %g2
|
|
|
|
sethi %hi(TSTATE_PEF), %g3
|
|
|
|
or %g2, %lo(TASK_REGOFF), %g2
|
|
|
|
and %g1, %g3, %g3
|
|
|
|
brnz,pn %g3, 1f
|
|
|
|
add %g6, %g2, %g2
|
|
|
|
wr %g0, 0, %fprs
|
|
|
|
1: rdpr %tpc, %g3
|
|
|
|
|
|
|
|
stx %g1, [%g2 + STACKFRAME_SZ + PT_V9_TSTATE]
|
|
|
|
rdpr %tnpc, %g1
|
|
|
|
stx %g3, [%g2 + STACKFRAME_SZ + PT_V9_TPC]
|
|
|
|
rd %y, %g3
|
|
|
|
stx %g1, [%g2 + STACKFRAME_SZ + PT_V9_TNPC]
|
2008-04-24 05:52:13 +00:00
|
|
|
rdpr %tt, %g1
|
2005-04-16 22:20:36 +00:00
|
|
|
st %g3, [%g2 + STACKFRAME_SZ + PT_V9_Y]
|
2008-04-24 05:52:13 +00:00
|
|
|
sethi %hi(PT_REGS_MAGIC), %g3
|
|
|
|
or %g3, %g1, %g1
|
|
|
|
st %g1, [%g2 + STACKFRAME_SZ + PT_V9_MAGIC]
|
2006-02-04 08:10:01 +00:00
|
|
|
|
|
|
|
rdpr %cansave, %g1
|
|
|
|
brnz,pt %g1, etrap_save
|
|
|
|
nop
|
|
|
|
|
|
|
|
rdpr %cwp, %g1
|
|
|
|
add %g1, 2, %g1
|
|
|
|
wrpr %g1, %cwp
|
|
|
|
be,pt %xcc, etrap_user_spill
|
|
|
|
mov ASI_AIUP, %g3
|
|
|
|
|
|
|
|
rdpr %otherwin, %g3
|
|
|
|
brz %g3, etrap_kernel_spill
|
|
|
|
mov ASI_AIUS, %g3
|
|
|
|
|
|
|
|
etrap_user_spill:
|
|
|
|
|
|
|
|
wr %g3, 0x0, %asi
|
|
|
|
ldx [%g6 + TI_FLAGS], %g3
|
|
|
|
and %g3, _TIF_32BIT, %g3
|
|
|
|
brnz,pt %g3, etrap_user_spill_32bit
|
|
|
|
nop
|
|
|
|
ba,a,pt %xcc, etrap_user_spill_64bit
|
|
|
|
|
|
|
|
etrap_save: save %g2, -STACK_BIAS, %sp
|
2005-04-16 22:20:36 +00:00
|
|
|
mov %g6, %l6
|
|
|
|
|
|
|
|
bne,pn %xcc, 3f
|
|
|
|
mov PRIMARY_CONTEXT, %l4
|
|
|
|
rdpr %canrestore, %g3
|
|
|
|
rdpr %wstate, %g2
|
|
|
|
wrpr %g0, 0, %canrestore
|
|
|
|
sll %g2, 3, %g2
|
|
|
|
mov 1, %l5
|
|
|
|
stb %l5, [%l6 + TI_FPDEPTH]
|
|
|
|
|
|
|
|
wrpr %g3, 0, %otherwin
|
|
|
|
wrpr %g2, 0, %wstate
|
2005-10-04 22:23:20 +00:00
|
|
|
sethi %hi(sparc64_kern_pri_context), %g2
|
|
|
|
ldx [%g2 + %lo(sparc64_kern_pri_context)], %g3
|
2006-02-08 06:13:05 +00:00
|
|
|
|
|
|
|
661: stxa %g3, [%l4] ASI_DMMU
|
|
|
|
.section .sun4v_1insn_patch, "ax"
|
|
|
|
.word 661b
|
|
|
|
stxa %g3, [%l4] ASI_MMU
|
|
|
|
.previous
|
|
|
|
|
2006-02-01 02:33:00 +00:00
|
|
|
sethi %hi(KERNBASE), %l4
|
|
|
|
flush %l4
|
2006-02-06 04:47:26 +00:00
|
|
|
mov ASI_AIUS, %l7
|
|
|
|
2: mov %g4, %l4
|
2005-04-16 22:20:36 +00:00
|
|
|
mov %g5, %l5
|
2006-02-06 04:47:26 +00:00
|
|
|
add %g7, 4, %l2
|
2006-02-06 05:29:28 +00:00
|
|
|
|
|
|
|
/* Go to trap time globals so we can save them. */
|
|
|
|
661: wrpr %g0, ETRAP_PSTATE1, %pstate
|
2006-02-07 08:00:16 +00:00
|
|
|
.section .sun4v_1insn_patch, "ax"
|
2006-02-06 05:29:28 +00:00
|
|
|
.word 661b
|
|
|
|
SET_GL(0)
|
|
|
|
.previous
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
stx %g1, [%sp + PTREGS_OFF + PT_V9_G1]
|
|
|
|
stx %g2, [%sp + PTREGS_OFF + PT_V9_G2]
|
2006-02-06 04:47:26 +00:00
|
|
|
sllx %l7, 24, %l7
|
2005-04-16 22:20:36 +00:00
|
|
|
stx %g3, [%sp + PTREGS_OFF + PT_V9_G3]
|
2006-02-06 04:47:26 +00:00
|
|
|
rdpr %cwp, %l0
|
2005-04-16 22:20:36 +00:00
|
|
|
stx %g4, [%sp + PTREGS_OFF + PT_V9_G4]
|
|
|
|
stx %g5, [%sp + PTREGS_OFF + PT_V9_G5]
|
|
|
|
stx %g6, [%sp + PTREGS_OFF + PT_V9_G6]
|
|
|
|
stx %g7, [%sp + PTREGS_OFF + PT_V9_G7]
|
2006-02-06 04:47:26 +00:00
|
|
|
or %l7, %l0, %l7
|
2008-10-30 04:25:00 +00:00
|
|
|
sethi %hi(TSTATE_TSO | TSTATE_PEF), %l0
|
2006-02-06 04:47:26 +00:00
|
|
|
or %l7, %l0, %l7
|
|
|
|
wrpr %l2, %tnpc
|
|
|
|
wrpr %l7, (TSTATE_PRIV | TSTATE_IE), %tstate
|
2005-04-16 22:20:36 +00:00
|
|
|
stx %i0, [%sp + PTREGS_OFF + PT_V9_I0]
|
|
|
|
stx %i1, [%sp + PTREGS_OFF + PT_V9_I1]
|
|
|
|
stx %i2, [%sp + PTREGS_OFF + PT_V9_I2]
|
|
|
|
stx %i3, [%sp + PTREGS_OFF + PT_V9_I3]
|
|
|
|
stx %i4, [%sp + PTREGS_OFF + PT_V9_I4]
|
|
|
|
stx %i5, [%sp + PTREGS_OFF + PT_V9_I5]
|
|
|
|
stx %i6, [%sp + PTREGS_OFF + PT_V9_I6]
|
|
|
|
mov %l6, %g6
|
2006-02-06 04:47:26 +00:00
|
|
|
stx %i7, [%sp + PTREGS_OFF + PT_V9_I7]
|
2006-02-03 05:55:10 +00:00
|
|
|
LOAD_PER_CPU_BASE(%g5, %g6, %g4, %g3, %l1)
|
2006-02-06 04:47:26 +00:00
|
|
|
ldx [%g6 + TI_TASK], %g4
|
|
|
|
done
|
2005-04-16 22:20:36 +00:00
|
|
|
|
2006-02-06 04:47:26 +00:00
|
|
|
3: mov ASI_P, %l7
|
|
|
|
ldub [%l6 + TI_FPDEPTH], %l5
|
2005-04-16 22:20:36 +00:00
|
|
|
add %l6, TI_FPSAVED + 1, %l4
|
|
|
|
srl %l5, 1, %l3
|
|
|
|
add %l5, 2, %l5
|
|
|
|
stb %l5, [%l6 + TI_FPDEPTH]
|
|
|
|
ba,pt %xcc, 2b
|
|
|
|
stb %g0, [%l4 + %l3]
|
|
|
|
nop
|
|
|
|
|
|
|
|
etraptl1: /* Save tstate/tpc/tnpc of TL 1-->4 and the tl register itself.
|
|
|
|
* We place this right after pt_regs on the trap stack.
|
|
|
|
* The layout is:
|
|
|
|
* 0x00 TL1's TSTATE
|
|
|
|
* 0x08 TL1's TPC
|
|
|
|
* 0x10 TL1's TNPC
|
|
|
|
* 0x18 TL1's TT
|
|
|
|
* ...
|
|
|
|
* 0x58 TL4's TT
|
|
|
|
* 0x60 TL
|
|
|
|
*/
|
2006-02-03 05:55:10 +00:00
|
|
|
TRAP_LOAD_THREAD_REG(%g6, %g1)
|
2005-04-16 22:20:36 +00:00
|
|
|
sub %sp, ((4 * 8) * 4) + 8, %g2
|
|
|
|
rdpr %tl, %g1
|
|
|
|
|
|
|
|
wrpr %g0, 1, %tl
|
|
|
|
rdpr %tstate, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x00]
|
|
|
|
rdpr %tpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x08]
|
|
|
|
rdpr %tnpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x10]
|
|
|
|
rdpr %tt, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x18]
|
|
|
|
|
|
|
|
wrpr %g0, 2, %tl
|
|
|
|
rdpr %tstate, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x20]
|
|
|
|
rdpr %tpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x28]
|
|
|
|
rdpr %tnpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x30]
|
|
|
|
rdpr %tt, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x38]
|
|
|
|
|
2006-02-16 09:41:41 +00:00
|
|
|
sethi %hi(is_sun4v), %g3
|
|
|
|
lduw [%g3 + %lo(is_sun4v)], %g3
|
|
|
|
brnz,pn %g3, finish_tl1_capture
|
|
|
|
nop
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
wrpr %g0, 3, %tl
|
|
|
|
rdpr %tstate, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x40]
|
|
|
|
rdpr %tpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x48]
|
|
|
|
rdpr %tnpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x50]
|
|
|
|
rdpr %tt, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x58]
|
|
|
|
|
|
|
|
wrpr %g0, 4, %tl
|
|
|
|
rdpr %tstate, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x60]
|
|
|
|
rdpr %tpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x68]
|
|
|
|
rdpr %tnpc, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x70]
|
|
|
|
rdpr %tt, %g3
|
|
|
|
stx %g3, [%g2 + STACK_BIAS + 0x78]
|
|
|
|
|
|
|
|
stx %g1, [%g2 + STACK_BIAS + 0x80]
|
|
|
|
|
2006-02-16 09:41:41 +00:00
|
|
|
finish_tl1_capture:
|
2006-02-06 05:29:28 +00:00
|
|
|
wrpr %g0, 1, %tl
|
|
|
|
661: nop
|
2006-02-07 08:00:16 +00:00
|
|
|
.section .sun4v_1insn_patch, "ax"
|
2006-02-06 05:29:28 +00:00
|
|
|
.word 661b
|
|
|
|
SET_GL(1)
|
|
|
|
.previous
|
|
|
|
|
2005-04-16 22:20:36 +00:00
|
|
|
rdpr %tstate, %g1
|
|
|
|
sub %g2, STACKFRAME_SZ + TRACEREG_SZ - STACK_BIAS, %g2
|
|
|
|
ba,pt %xcc, 1b
|
|
|
|
andcc %g1, TSTATE_PRIV, %g0
|
|
|
|
|
|
|
|
#undef TASK_REGOFF
|
|
|
|
#undef ETRAP_PSTATE1
|