ptrace.h 7.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226
  1. /*
  2. * Copyright (C) 2001 PPC64 Team, IBM Corp
  3. *
  4. * This struct defines the way the registers are stored on the
  5. * kernel stack during a system call or other kernel entry.
  6. *
  7. * this should only contain volatile regs
  8. * since we can keep non-volatile in the thread_struct
  9. * should set this up when only volatiles are saved
  10. * by intr code.
  11. *
  12. * Since this is going on the stack, *CARE MUST BE TAKEN* to insure
  13. * that the overall structure is a multiple of 16 bytes in length.
  14. *
  15. * Note that the offsets of the fields in this struct correspond with
  16. * the PT_* values below. This simplifies arch/powerpc/kernel/ptrace.c.
  17. *
  18. * This program is free software; you can redistribute it and/or
  19. * modify it under the terms of the GNU General Public License
  20. * as published by the Free Software Foundation; either version
  21. * 2 of the License, or (at your option) any later version.
  22. */
  23. #ifndef _ASM_POWERPC_PTRACE_H
  24. #define _ASM_POWERPC_PTRACE_H
  25. #include <uapi/asm/ptrace.h>
  26. #ifdef __powerpc64__
  27. /*
  28. * Size of redzone that userspace is allowed to use below the stack
  29. * pointer. This is 288 in the 64-bit big-endian ELF ABI, and 512 in
  30. * the new ELFv2 little-endian ABI, so we allow the larger amount.
  31. *
  32. * For kernel code we allow a 288-byte redzone, in order to conserve
  33. * kernel stack space; gcc currently only uses 288 bytes, and will
  34. * hopefully allow explicit control of the redzone size in future.
  35. */
  36. #define USER_REDZONE_SIZE 512
  37. #define KERNEL_REDZONE_SIZE 288
  38. #define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */
  39. #define STACK_FRAME_LR_SAVE 2 /* Location of LR in stack frame */
  40. #define STACK_FRAME_REGS_MARKER ASM_CONST(0x7265677368657265)
  41. #define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + \
  42. STACK_FRAME_OVERHEAD + KERNEL_REDZONE_SIZE)
  43. #define STACK_FRAME_MARKER 12
  44. #if defined(_CALL_ELF) && _CALL_ELF == 2
  45. #define STACK_FRAME_MIN_SIZE 32
  46. #else
  47. #define STACK_FRAME_MIN_SIZE STACK_FRAME_OVERHEAD
  48. #endif
  49. /* Size of dummy stack frame allocated when calling signal handler. */
  50. #define __SIGNAL_FRAMESIZE 128
  51. #define __SIGNAL_FRAMESIZE32 64
  52. #else /* __powerpc64__ */
  53. #define USER_REDZONE_SIZE 0
  54. #define KERNEL_REDZONE_SIZE 0
  55. #define STACK_FRAME_OVERHEAD 16 /* size of minimum stack frame */
  56. #define STACK_FRAME_LR_SAVE 1 /* Location of LR in stack frame */
  57. #define STACK_FRAME_REGS_MARKER ASM_CONST(0x72656773)
  58. #define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD)
  59. #define STACK_FRAME_MARKER 2
  60. #define STACK_FRAME_MIN_SIZE STACK_FRAME_OVERHEAD
  61. /* Size of stack frame allocated when calling signal handler. */
  62. #define __SIGNAL_FRAMESIZE 64
  63. #endif /* __powerpc64__ */
  64. #ifndef __ASSEMBLY__
  65. #define GET_IP(regs) ((regs)->nip)
  66. #define GET_USP(regs) ((regs)->gpr[1])
  67. #define GET_FP(regs) (0)
  68. #define SET_FP(regs, val)
  69. #ifdef CONFIG_SMP
  70. extern unsigned long profile_pc(struct pt_regs *regs);
  71. #define profile_pc profile_pc
  72. #endif
  73. #include <asm-generic/ptrace.h>
  74. #define kernel_stack_pointer(regs) ((regs)->gpr[1])
  75. static inline int is_syscall_success(struct pt_regs *regs)
  76. {
  77. return !(regs->ccr & 0x10000000);
  78. }
  79. static inline long regs_return_value(struct pt_regs *regs)
  80. {
  81. if (is_syscall_success(regs))
  82. return regs->gpr[3];
  83. else
  84. return -regs->gpr[3];
  85. }
  86. #ifdef __powerpc64__
  87. #define user_mode(regs) ((((regs)->msr) >> MSR_PR_LG) & 0x1)
  88. #else
  89. #define user_mode(regs) (((regs)->msr & MSR_PR) != 0)
  90. #endif
  91. #define force_successful_syscall_return() \
  92. do { \
  93. set_thread_flag(TIF_NOERROR); \
  94. } while(0)
  95. struct task_struct;
  96. extern int ptrace_get_reg(struct task_struct *task, int regno,
  97. unsigned long *data);
  98. extern int ptrace_put_reg(struct task_struct *task, int regno,
  99. unsigned long data);
  100. #define current_pt_regs() \
  101. ((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE) - 1)
  102. /*
  103. * We use the least-significant bit of the trap field to indicate
  104. * whether we have saved the full set of registers, or only a
  105. * partial set. A 1 there means the partial set.
  106. * On 4xx we use the next bit to indicate whether the exception
  107. * is a critical exception (1 means it is).
  108. */
  109. #define FULL_REGS(regs) (((regs)->trap & 1) == 0)
  110. #ifndef __powerpc64__
  111. #define IS_CRITICAL_EXC(regs) (((regs)->trap & 2) != 0)
  112. #define IS_MCHECK_EXC(regs) (((regs)->trap & 4) != 0)
  113. #define IS_DEBUG_EXC(regs) (((regs)->trap & 8) != 0)
  114. #endif /* ! __powerpc64__ */
  115. #define TRAP(regs) ((regs)->trap & ~0xF)
  116. #ifdef __powerpc64__
  117. #define NV_REG_POISON 0xdeadbeefdeadbeefUL
  118. #define CHECK_FULL_REGS(regs) BUG_ON(regs->trap & 1)
  119. #else
  120. #define NV_REG_POISON 0xdeadbeef
  121. #define CHECK_FULL_REGS(regs) \
  122. do { \
  123. if ((regs)->trap & 1) \
  124. printk(KERN_CRIT "%s: partial register set\n", __func__); \
  125. } while (0)
  126. #endif /* __powerpc64__ */
  127. #define arch_has_single_step() (1)
  128. #define arch_has_block_step() (!cpu_has_feature(CPU_FTR_601))
  129. #define ARCH_HAS_USER_SINGLE_STEP_INFO
  130. /*
  131. * kprobe-based event tracer support
  132. */
  133. #include <linux/stddef.h>
  134. #include <linux/thread_info.h>
  135. extern int regs_query_register_offset(const char *name);
  136. extern const char *regs_query_register_name(unsigned int offset);
  137. #define MAX_REG_OFFSET (offsetof(struct pt_regs, dsisr))
  138. /**
  139. * regs_get_register() - get register value from its offset
  140. * @regs: pt_regs from which register value is gotten
  141. * @offset: offset number of the register.
  142. *
  143. * regs_get_register returns the value of a register whose offset from @regs.
  144. * The @offset is the offset of the register in struct pt_regs.
  145. * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
  146. */
  147. static inline unsigned long regs_get_register(struct pt_regs *regs,
  148. unsigned int offset)
  149. {
  150. if (unlikely(offset > MAX_REG_OFFSET))
  151. return 0;
  152. return *(unsigned long *)((unsigned long)regs + offset);
  153. }
  154. /**
  155. * regs_within_kernel_stack() - check the address in the stack
  156. * @regs: pt_regs which contains kernel stack pointer.
  157. * @addr: address which is checked.
  158. *
  159. * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
  160. * If @addr is within the kernel stack, it returns true. If not, returns false.
  161. */
  162. static inline bool regs_within_kernel_stack(struct pt_regs *regs,
  163. unsigned long addr)
  164. {
  165. return ((addr & ~(THREAD_SIZE - 1)) ==
  166. (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
  167. }
  168. /**
  169. * regs_get_kernel_stack_nth() - get Nth entry of the stack
  170. * @regs: pt_regs which contains kernel stack pointer.
  171. * @n: stack entry number.
  172. *
  173. * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
  174. * is specified by @regs. If the @n th entry is NOT in the kernel stack,
  175. * this returns 0.
  176. */
  177. static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
  178. unsigned int n)
  179. {
  180. unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
  181. addr += n;
  182. if (regs_within_kernel_stack(regs, (unsigned long)addr))
  183. return *addr;
  184. else
  185. return 0;
  186. }
  187. #endif /* __ASSEMBLY__ */
  188. #ifndef __powerpc64__
  189. #else /* __powerpc64__ */
  190. #define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-bit userspace slots */
  191. #define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit */
  192. #define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
  193. #define PT_VRSAVE_32 (PT_VR0 + 33*4)
  194. #define PT_VSR0_32 300 /* each VSR reg occupies 4 slots in 32-bit */
  195. #endif /* __powerpc64__ */
  196. #endif /* _ASM_POWERPC_PTRACE_H */