ptrace.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  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. #define STACK_FRAME_OVERHEAD 112 /* size of minimum stack frame */
  28. #define STACK_FRAME_LR_SAVE 2 /* Location of LR in stack frame */
  29. #define STACK_FRAME_REGS_MARKER ASM_CONST(0x7265677368657265)
  30. #define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + \
  31. STACK_FRAME_OVERHEAD + 288)
  32. #define STACK_FRAME_MARKER 12
  33. /* Size of dummy stack frame allocated when calling signal handler. */
  34. #define __SIGNAL_FRAMESIZE 128
  35. #define __SIGNAL_FRAMESIZE32 64
  36. #else /* __powerpc64__ */
  37. #define STACK_FRAME_OVERHEAD 16 /* size of minimum stack frame */
  38. #define STACK_FRAME_LR_SAVE 1 /* Location of LR in stack frame */
  39. #define STACK_FRAME_REGS_MARKER ASM_CONST(0x72656773)
  40. #define STACK_INT_FRAME_SIZE (sizeof(struct pt_regs) + STACK_FRAME_OVERHEAD)
  41. #define STACK_FRAME_MARKER 2
  42. /* Size of stack frame allocated when calling signal handler. */
  43. #define __SIGNAL_FRAMESIZE 64
  44. #endif /* __powerpc64__ */
  45. #ifndef __ASSEMBLY__
  46. #define GET_IP(regs) ((regs)->nip)
  47. #define GET_USP(regs) ((regs)->gpr[1])
  48. #define GET_FP(regs) (0)
  49. #define SET_FP(regs, val)
  50. #ifdef CONFIG_SMP
  51. extern unsigned long profile_pc(struct pt_regs *regs);
  52. #define profile_pc profile_pc
  53. #endif
  54. #include <asm-generic/ptrace.h>
  55. #define kernel_stack_pointer(regs) ((regs)->gpr[1])
  56. static inline int is_syscall_success(struct pt_regs *regs)
  57. {
  58. return !(regs->ccr & 0x10000000);
  59. }
  60. static inline long regs_return_value(struct pt_regs *regs)
  61. {
  62. if (is_syscall_success(regs))
  63. return regs->gpr[3];
  64. else
  65. return -regs->gpr[3];
  66. }
  67. #ifdef __powerpc64__
  68. #define user_mode(regs) ((((regs)->msr) >> MSR_PR_LG) & 0x1)
  69. #else
  70. #define user_mode(regs) (((regs)->msr & MSR_PR) != 0)
  71. #endif
  72. #define force_successful_syscall_return() \
  73. do { \
  74. set_thread_flag(TIF_NOERROR); \
  75. } while(0)
  76. struct task_struct;
  77. extern int ptrace_get_reg(struct task_struct *task, int regno,
  78. unsigned long *data);
  79. extern int ptrace_put_reg(struct task_struct *task, int regno,
  80. unsigned long data);
  81. #define current_pt_regs() \
  82. ((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE) - 1)
  83. /*
  84. * We use the least-significant bit of the trap field to indicate
  85. * whether we have saved the full set of registers, or only a
  86. * partial set. A 1 there means the partial set.
  87. * On 4xx we use the next bit to indicate whether the exception
  88. * is a critical exception (1 means it is).
  89. */
  90. #define FULL_REGS(regs) (((regs)->trap & 1) == 0)
  91. #ifndef __powerpc64__
  92. #define IS_CRITICAL_EXC(regs) (((regs)->trap & 2) != 0)
  93. #define IS_MCHECK_EXC(regs) (((regs)->trap & 4) != 0)
  94. #define IS_DEBUG_EXC(regs) (((regs)->trap & 8) != 0)
  95. #endif /* ! __powerpc64__ */
  96. #define TRAP(regs) ((regs)->trap & ~0xF)
  97. #ifdef __powerpc64__
  98. #define NV_REG_POISON 0xdeadbeefdeadbeefUL
  99. #define CHECK_FULL_REGS(regs) BUG_ON(regs->trap & 1)
  100. #else
  101. #define NV_REG_POISON 0xdeadbeef
  102. #define CHECK_FULL_REGS(regs) \
  103. do { \
  104. if ((regs)->trap & 1) \
  105. printk(KERN_CRIT "%s: partial register set\n", __func__); \
  106. } while (0)
  107. #endif /* __powerpc64__ */
  108. #define arch_has_single_step() (1)
  109. #define arch_has_block_step() (!cpu_has_feature(CPU_FTR_601))
  110. #define ARCH_HAS_USER_SINGLE_STEP_INFO
  111. /*
  112. * kprobe-based event tracer support
  113. */
  114. #include <linux/stddef.h>
  115. #include <linux/thread_info.h>
  116. extern int regs_query_register_offset(const char *name);
  117. extern const char *regs_query_register_name(unsigned int offset);
  118. #define MAX_REG_OFFSET (offsetof(struct pt_regs, dsisr))
  119. /**
  120. * regs_get_register() - get register value from its offset
  121. * @regs: pt_regs from which register value is gotten
  122. * @offset: offset number of the register.
  123. *
  124. * regs_get_register returns the value of a register whose offset from @regs.
  125. * The @offset is the offset of the register in struct pt_regs.
  126. * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
  127. */
  128. static inline unsigned long regs_get_register(struct pt_regs *regs,
  129. unsigned int offset)
  130. {
  131. if (unlikely(offset > MAX_REG_OFFSET))
  132. return 0;
  133. return *(unsigned long *)((unsigned long)regs + offset);
  134. }
  135. /**
  136. * regs_within_kernel_stack() - check the address in the stack
  137. * @regs: pt_regs which contains kernel stack pointer.
  138. * @addr: address which is checked.
  139. *
  140. * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
  141. * If @addr is within the kernel stack, it returns true. If not, returns false.
  142. */
  143. static inline bool regs_within_kernel_stack(struct pt_regs *regs,
  144. unsigned long addr)
  145. {
  146. return ((addr & ~(THREAD_SIZE - 1)) ==
  147. (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
  148. }
  149. /**
  150. * regs_get_kernel_stack_nth() - get Nth entry of the stack
  151. * @regs: pt_regs which contains kernel stack pointer.
  152. * @n: stack entry number.
  153. *
  154. * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
  155. * is specified by @regs. If the @n th entry is NOT in the kernel stack,
  156. * this returns 0.
  157. */
  158. static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
  159. unsigned int n)
  160. {
  161. unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
  162. addr += n;
  163. if (regs_within_kernel_stack(regs, (unsigned long)addr))
  164. return *addr;
  165. else
  166. return 0;
  167. }
  168. #endif /* __ASSEMBLY__ */
  169. #ifndef __powerpc64__
  170. #else /* __powerpc64__ */
  171. #define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-bit userspace slots */
  172. #define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit */
  173. #define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
  174. #define PT_VRSAVE_32 (PT_VR0 + 33*4)
  175. #define PT_VSR0_32 300 /* each VSR reg occupies 4 slots in 32-bit */
  176. #endif /* __powerpc64__ */
  177. #endif /* _ASM_POWERPC_PTRACE_H */