ptrace.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204
  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 unsigned long ptrace_get_reg(struct task_struct *task, int regno);
  78. extern int ptrace_put_reg(struct task_struct *task, int regno,
  79. unsigned long data);
  80. #define current_pt_regs() \
  81. ((struct pt_regs *)((unsigned long)current_thread_info() + THREAD_SIZE) - 1)
  82. /*
  83. * We use the least-significant bit of the trap field to indicate
  84. * whether we have saved the full set of registers, or only a
  85. * partial set. A 1 there means the partial set.
  86. * On 4xx we use the next bit to indicate whether the exception
  87. * is a critical exception (1 means it is).
  88. */
  89. #define FULL_REGS(regs) (((regs)->trap & 1) == 0)
  90. #ifndef __powerpc64__
  91. #define IS_CRITICAL_EXC(regs) (((regs)->trap & 2) != 0)
  92. #define IS_MCHECK_EXC(regs) (((regs)->trap & 4) != 0)
  93. #define IS_DEBUG_EXC(regs) (((regs)->trap & 8) != 0)
  94. #endif /* ! __powerpc64__ */
  95. #define TRAP(regs) ((regs)->trap & ~0xF)
  96. #ifdef __powerpc64__
  97. #define NV_REG_POISON 0xdeadbeefdeadbeefUL
  98. #define CHECK_FULL_REGS(regs) BUG_ON(regs->trap & 1)
  99. #else
  100. #define NV_REG_POISON 0xdeadbeef
  101. #define CHECK_FULL_REGS(regs) \
  102. do { \
  103. if ((regs)->trap & 1) \
  104. printk(KERN_CRIT "%s: partial register set\n", __func__); \
  105. } while (0)
  106. #endif /* __powerpc64__ */
  107. #define arch_has_single_step() (1)
  108. #define arch_has_block_step() (!cpu_has_feature(CPU_FTR_601))
  109. #define ARCH_HAS_USER_SINGLE_STEP_INFO
  110. /*
  111. * kprobe-based event tracer support
  112. */
  113. #include <linux/stddef.h>
  114. #include <linux/thread_info.h>
  115. extern int regs_query_register_offset(const char *name);
  116. extern const char *regs_query_register_name(unsigned int offset);
  117. #define MAX_REG_OFFSET (offsetof(struct pt_regs, dsisr))
  118. /**
  119. * regs_get_register() - get register value from its offset
  120. * @regs: pt_regs from which register value is gotten
  121. * @offset: offset number of the register.
  122. *
  123. * regs_get_register returns the value of a register whose offset from @regs.
  124. * The @offset is the offset of the register in struct pt_regs.
  125. * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
  126. */
  127. static inline unsigned long regs_get_register(struct pt_regs *regs,
  128. unsigned int offset)
  129. {
  130. if (unlikely(offset > MAX_REG_OFFSET))
  131. return 0;
  132. return *(unsigned long *)((unsigned long)regs + offset);
  133. }
  134. /**
  135. * regs_within_kernel_stack() - check the address in the stack
  136. * @regs: pt_regs which contains kernel stack pointer.
  137. * @addr: address which is checked.
  138. *
  139. * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
  140. * If @addr is within the kernel stack, it returns true. If not, returns false.
  141. */
  142. static inline bool regs_within_kernel_stack(struct pt_regs *regs,
  143. unsigned long addr)
  144. {
  145. return ((addr & ~(THREAD_SIZE - 1)) ==
  146. (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
  147. }
  148. /**
  149. * regs_get_kernel_stack_nth() - get Nth entry of the stack
  150. * @regs: pt_regs which contains kernel stack pointer.
  151. * @n: stack entry number.
  152. *
  153. * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
  154. * is specified by @regs. If the @n th entry is NOT in the kernel stack,
  155. * this returns 0.
  156. */
  157. static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
  158. unsigned int n)
  159. {
  160. unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
  161. addr += n;
  162. if (regs_within_kernel_stack(regs, (unsigned long)addr))
  163. return *addr;
  164. else
  165. return 0;
  166. }
  167. #endif /* __ASSEMBLY__ */
  168. #ifndef __powerpc64__
  169. #else /* __powerpc64__ */
  170. #define PT_FPSCR32 (PT_FPR0 + 2*32 + 1) /* each FP reg occupies 2 32-bit userspace slots */
  171. #define PT_VR0_32 164 /* each Vector reg occupies 4 slots in 32-bit */
  172. #define PT_VSCR_32 (PT_VR0 + 32*4 + 3)
  173. #define PT_VRSAVE_32 (PT_VR0 + 33*4)
  174. #define PT_VSR0_32 300 /* each VSR reg occupies 4 slots in 32-bit */
  175. #endif /* __powerpc64__ */
  176. #endif /* _ASM_POWERPC_PTRACE_H */