2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2001 PPC64 Team, IBM Corp
|
|
|
|
*
|
|
|
|
* This struct defines the way the registers are stored on the
|
|
|
|
* kernel stack during a system call or other kernel entry.
|
|
|
|
*
|
|
|
|
* this should only contain volatile regs
|
|
|
|
* since we can keep non-volatile in the thread_struct
|
|
|
|
* should set this up when only volatiles are saved
|
|
|
|
* by intr code.
|
|
|
|
*
|
|
|
|
* Since this is going on the stack, *CARE MUST BE TAKEN* to insure
|
|
|
|
* that the overall structure is a multiple of 16 bytes in length.
|
|
|
|
*
|
|
|
|
* Note that the offsets of the fields in this struct correspond with
|
2005-11-03 12:14:36 +08:00
|
|
|
* the PT_* values below. This simplifies arch/powerpc/kernel/ptrace.c.
|
2005-04-17 06:20:36 +08:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version
|
|
|
|
* 2 of the License, or (at your option) any later version.
|
|
|
|
*/
|
2012-10-09 16:47:26 +08:00
|
|
|
#ifndef _ASM_POWERPC_PTRACE_H
|
|
|
|
#define _ASM_POWERPC_PTRACE_H
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2012-10-09 16:47:26 +08:00
|
|
|
#include <uapi/asm/ptrace.h>
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2005-09-10 14:01:08 +08:00
|
|
|
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifdef __powerpc64__
|
|
|
|
|
2014-02-26 14:07:38 +08:00
|
|
|
/*
|
|
|
|
* Size of redzone that userspace is allowed to use below the stack
|
|
|
|
* pointer. This is 288 in the 64-bit big-endian ELF ABI, and 512 in
|
|
|
|
* the new ELFv2 little-endian ABI, so we allow the larger amount.
|
|
|
|
*
|
|
|
|
* For kernel code we allow a 288-byte redzone, in order to conserve
|
|
|
|
* kernel stack space; gcc currently only uses 288 bytes, and will
|
|
|
|
* hopefully allow explicit control of the redzone size in future.
|
|
|
|
*/
|
|
|
|
#define USER_REDZONE_SIZE 512
|
|
|
|
#define KERNEL_REDZONE_SIZE 288
|
|
|
|
|
2005-11-03 12:14:36 +08:00
|
|
|
#define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */
|
2008-04-17 12:34:59 +08:00
|
|
|
#define STACK_FRAME_LR_SAVE 2 /* Location of LR in stack frame */
|
|
|
|
#define STACK_FRAME_REGS_MARKER ASM_CONST(0x7265677368657265)
|
|
|
|
#define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + \
|
2014-02-26 14:07:38 +08:00
|
|
|
STACK_FRAME_OVERHEAD + KERNEL_REDZONE_SIZE)
|
2008-04-17 12:34:59 +08:00
|
|
|
#define STACK_FRAME_MARKER 12
|
2005-11-03 12:14:36 +08:00
|
|
|
|
|
|
|
/* Size of dummy stack frame allocated when calling signal handler. */
|
|
|
|
#define __SIGNAL_FRAMESIZE 128
|
|
|
|
#define __SIGNAL_FRAMESIZE32 64
|
|
|
|
|
|
|
|
#else /* __powerpc64__ */
|
|
|
|
|
2014-02-26 14:07:38 +08:00
|
|
|
#define USER_REDZONE_SIZE 0
|
|
|
|
#define KERNEL_REDZONE_SIZE 0
|
2005-11-03 12:14:36 +08:00
|
|
|
#define STACK_FRAME_OVERHEAD 16 /* size of minimum stack frame */
|
2008-04-17 12:34:59 +08:00
|
|
|
#define STACK_FRAME_LR_SAVE 1 /* Location of LR in stack frame */
|
|
|
|
#define STACK_FRAME_REGS_MARKER ASM_CONST(0x72656773)
|
|
|
|
#define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD)
|
|
|
|
#define STACK_FRAME_MARKER 2
|
2005-11-03 12:14:36 +08:00
|
|
|
|
|
|
|
/* Size of stack frame allocated when calling signal handler. */
|
|
|
|
#define __SIGNAL_FRAMESIZE 64
|
|
|
|
|
|
|
|
#endif /* __powerpc64__ */
|
2005-09-10 14:01:08 +08:00
|
|
|
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
|
2012-02-08 12:53:13 +08:00
|
|
|
#define GET_IP(regs) ((regs)->nip)
|
|
|
|
#define GET_USP(regs) ((regs)->gpr[1])
|
|
|
|
#define GET_FP(regs) (0)
|
|
|
|
#define SET_FP(regs, val)
|
|
|
|
|
|
|
|
#ifdef CONFIG_SMP
|
|
|
|
extern unsigned long profile_pc(struct pt_regs *regs);
|
|
|
|
#define profile_pc profile_pc
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#include <asm-generic/ptrace.h>
|
|
|
|
|
2010-04-07 16:10:20 +08:00
|
|
|
#define kernel_stack_pointer(regs) ((regs)->gpr[1])
|
2012-01-04 03:23:06 +08:00
|
|
|
static inline int is_syscall_success(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
return !(regs->ccr & 0x10000000);
|
|
|
|
}
|
|
|
|
|
|
|
|
static inline long regs_return_value(struct pt_regs *regs)
|
|
|
|
{
|
|
|
|
if (is_syscall_success(regs))
|
|
|
|
return regs->gpr[3];
|
|
|
|
else
|
|
|
|
return -regs->gpr[3];
|
|
|
|
}
|
2006-10-02 17:17:31 +08:00
|
|
|
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifdef __powerpc64__
|
2005-04-17 06:20:36 +08:00
|
|
|
#define user_mode(regs) ((((regs)->msr) >> MSR_PR_LG) & 0x1)
|
2005-11-03 12:14:36 +08:00
|
|
|
#else
|
|
|
|
#define user_mode(regs) (((regs)->msr & MSR_PR) != 0)
|
|
|
|
#endif
|
2005-04-17 06:20:36 +08:00
|
|
|
|
|
|
|
#define force_successful_syscall_return() \
|
2005-11-03 12:14:36 +08:00
|
|
|
do { \
|
[PATCH] syscall entry/exit revamp
This cleanup patch speeds up the null syscall path on ppc64 by about 3%,
and brings the ppc32 and ppc64 code slightly closer together.
The ppc64 code was checking current_thread_info()->flags twice in the
syscall exit path; once for TIF_SYSCALL_T_OR_A before disabling
interrupts, and then again for TIF_SIGPENDING|TIF_NEED_RESCHED etc after
disabling interrupts. Now we do the same as ppc32 -- check the flags
only once in the fast path, and re-enable interrupts if necessary in the
ptrace case.
The patch abolishes the 'syscall_noerror' member of struct thread_info
and replaces it with a TIF_NOERROR bit in the flags, which is handled in
the slow path. This shortens the syscall entry code, which no longer
needs to clear syscall_noerror.
The patch adds a TIF_SAVE_NVGPRS flag which causes the syscall exit slow
path to save the non-volatile GPRs into a signal frame. This removes the
need for the assembly wrappers around sys_sigsuspend(),
sys_rt_sigsuspend(), et al which existed solely to save those registers
in advance. It also means I don't have to add new wrappers for ppoll()
and pselect(), which is what I was supposed to be doing when I got
distracted into this...
Finally, it unifies the ppc64 and ppc32 methods of handling syscall exit
directly into a signal handler (as required by sigsuspend et al) by
introducing a TIF_RESTOREALL flag which causes _all_ the registers to be
reloaded from the pt_regs by taking the ret_from_exception path, instead
of the normal syscall exit path which stomps on the callee-saved GPRs.
It appears to pass an LTP test run on ppc64, and passes basic testing on
ppc32 too. Brief tests of ptrace functionality with strace and gdb also
appear OK. I wouldn't send it to Linus for 2.6.15 just yet though :)
Signed-off-by: David Woodhouse <dwmw2@infradead.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
2005-11-16 02:52:18 +08:00
|
|
|
set_thread_flag(TIF_NOERROR); \
|
2005-11-03 12:14:36 +08:00
|
|
|
} while(0)
|
2005-04-17 06:20:36 +08:00
|
|
|
|
2007-06-04 13:15:44 +08:00
|
|
|
struct task_struct;
|
2013-02-15 01:44:23 +08:00
|
|
|
extern int ptrace_get_reg(struct task_struct *task, int regno,
|
|
|
|
unsigned long *data);
|
2007-06-04 13:15:44 +08:00
|
|
|
extern int ptrace_put_reg(struct task_struct *task, int regno,
|
|
|
|
unsigned long data);
|
|
|
|
|
2012-09-01 03:48:05 +08:00
|
|
|
#define current_pt_regs() \
|
|
|
|
((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE) - 1)
|
2005-04-17 06:20:36 +08:00
|
|
|
/*
|
|
|
|
* We use the least-significant bit of the trap field to indicate
|
|
|
|
* whether we have saved the full set of registers, or only a
|
|
|
|
* partial set. A 1 there means the partial set.
|
2005-11-03 12:14:36 +08:00
|
|
|
* On 4xx we use the next bit to indicate whether the exception
|
|
|
|
* is a critical exception (1 means it is).
|
2005-04-17 06:20:36 +08:00
|
|
|
*/
|
|
|
|
#define FULL_REGS(regs) (((regs)->trap & 1) == 0)
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifndef __powerpc64__
|
2007-12-21 12:39:21 +08:00
|
|
|
#define IS_CRITICAL_EXC(regs) (((regs)->trap & 2) != 0)
|
|
|
|
#define IS_MCHECK_EXC(regs) (((regs)->trap & 4) != 0)
|
2008-04-30 18:44:53 +08:00
|
|
|
#define IS_DEBUG_EXC(regs) (((regs)->trap & 8) != 0)
|
2005-11-03 12:14:36 +08:00
|
|
|
#endif /* ! __powerpc64__ */
|
2005-04-17 06:20:36 +08:00
|
|
|
#define TRAP(regs) ((regs)->trap & ~0xF)
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifdef __powerpc64__
|
2011-03-21 08:14:53 +08:00
|
|
|
#define NV_REG_POISON 0xdeadbeefdeadbeefUL
|
2005-04-17 06:20:36 +08:00
|
|
|
#define CHECK_FULL_REGS(regs) BUG_ON(regs->trap & 1)
|
2005-11-03 12:14:36 +08:00
|
|
|
#else
|
2011-03-21 08:14:53 +08:00
|
|
|
#define NV_REG_POISON 0xdeadbeef
|
2005-11-03 12:14:36 +08:00
|
|
|
#define CHECK_FULL_REGS(regs) \
|
|
|
|
do { \
|
|
|
|
if ((regs)->trap & 1) \
|
2008-10-21 07:00:08 +08:00
|
|
|
printk(KERN_CRIT "%s: partial register set\n", __func__); \
|
2005-11-03 12:14:36 +08:00
|
|
|
} while (0)
|
|
|
|
#endif /* __powerpc64__ */
|
2005-09-10 14:01:08 +08:00
|
|
|
|
2008-01-30 20:30:51 +08:00
|
|
|
#define arch_has_single_step() (1)
|
2009-05-29 05:26:38 +08:00
|
|
|
#define arch_has_block_step() (!cpu_has_feature(CPU_FTR_601))
|
2009-12-16 08:47:18 +08:00
|
|
|
#define ARCH_HAS_USER_SINGLE_STEP_INFO
|
|
|
|
|
2010-04-07 16:10:20 +08:00
|
|
|
/*
|
|
|
|
* kprobe-based event tracer support
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/stddef.h>
|
|
|
|
#include <linux/thread_info.h>
|
|
|
|
extern int regs_query_register_offset(const char *name);
|
|
|
|
extern const char *regs_query_register_name(unsigned int offset);
|
|
|
|
#define MAX_REG_OFFSET (offsetof(struct pt_regs, dsisr))
|
|
|
|
|
|
|
|
/**
|
|
|
|
* regs_get_register() - get register value from its offset
|
|
|
|
* @regs: pt_regs from which register value is gotten
|
|
|
|
* @offset: offset number of the register.
|
|
|
|
*
|
|
|
|
* regs_get_register returns the value of a register whose offset from @regs.
|
|
|
|
* The @offset is the offset of the register in struct pt_regs.
|
|
|
|
* If @offset is bigger than MAX_REG_OFFSET, this returns 0.
|
|
|
|
*/
|
|
|
|
static inline unsigned long regs_get_register(struct pt_regs *regs,
|
|
|
|
unsigned int offset)
|
|
|
|
{
|
|
|
|
if (unlikely(offset > MAX_REG_OFFSET))
|
|
|
|
return 0;
|
|
|
|
return *(unsigned long *)((unsigned long)regs + offset);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* regs_within_kernel_stack() - check the address in the stack
|
|
|
|
* @regs: pt_regs which contains kernel stack pointer.
|
|
|
|
* @addr: address which is checked.
|
|
|
|
*
|
|
|
|
* regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
|
|
|
|
* If @addr is within the kernel stack, it returns true. If not, returns false.
|
|
|
|
*/
|
|
|
|
|
|
|
|
static inline bool regs_within_kernel_stack(struct pt_regs *regs,
|
|
|
|
unsigned long addr)
|
|
|
|
{
|
|
|
|
return ((addr & ~(THREAD_SIZE - 1)) ==
|
|
|
|
(kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* regs_get_kernel_stack_nth() - get Nth entry of the stack
|
|
|
|
* @regs: pt_regs which contains kernel stack pointer.
|
|
|
|
* @n: stack entry number.
|
|
|
|
*
|
|
|
|
* regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
|
|
|
|
* is specified by @regs. If the @n th entry is NOT in the kernel stack,
|
|
|
|
* this returns 0.
|
|
|
|
*/
|
|
|
|
static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
|
|
|
|
unsigned int n)
|
|
|
|
{
|
|
|
|
unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
|
|
|
|
addr += n;
|
|
|
|
if (regs_within_kernel_stack(regs, (unsigned long)addr))
|
|
|
|
return *addr;
|
|
|
|
else
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2005-09-10 14:01:08 +08:00
|
|
|
#endif /* __ASSEMBLY__ */
|
|
|
|
|
2005-11-03 12:14:36 +08:00
|
|
|
#ifndef __powerpc64__
|
|
|
|
#else /* __powerpc64__ */
|
2005-09-10 14:01:08 +08:00
|
|
|
#define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-bit userspace slots */
|
2005-04-17 06:20:36 +08:00
|
|
|
#define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit */
|
|
|
|
#define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
|
|
|
|
#define PT_VRSAVE_32 (PT_VR0 + 33*4)
|
2008-06-25 12:07:18 +08:00
|
|
|
#define PT_VSR0_32 300 /* each VSR reg occupies 4 slots in 32-bit */
|
2005-11-03 12:14:36 +08:00
|
|
|
#endif /* __powerpc64__ */
|
|
|
|
#endif /* _ASM_POWERPC_PTRACE_H */
|