ptrace.h 9.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Based on arch/arm/include/asm/ptrace.h
  4. *
  5. * Copyright (C) 1996-2003 Russell King
  6. * Copyright (C) 2012 ARM Ltd.
  7. */
  8. #ifndef __ASM_PTRACE_H
  9. #define __ASM_PTRACE_H
  10. #include <asm/cpufeature.h>
  11. #include <uapi/asm/ptrace.h>
  12. /* Current Exception Level values, as contained in CurrentEL */
  13. #define CurrentEL_EL1 (1 << 2)
  14. #define CurrentEL_EL2 (2 << 2)
  15. #define INIT_PSTATE_EL1 \
  16. (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT | PSR_MODE_EL1h)
  17. #define INIT_PSTATE_EL2 \
  18. (PSR_D_BIT | PSR_A_BIT | PSR_I_BIT | PSR_F_BIT | PSR_MODE_EL2h)
  19. #include <linux/irqchip/arm-gic-v3-prio.h>
  20. #define GIC_PRIO_IRQON GICV3_PRIO_UNMASKED
  21. #define GIC_PRIO_IRQOFF GICV3_PRIO_IRQ
  22. #define GIC_PRIO_PSR_I_SET GICV3_PRIO_PSR_I_SET
  23. /* Additional SPSR bits not exposed in the UABI */
  24. #define PSR_MODE_THREAD_BIT (1 << 0)
  25. #define PSR_IL_BIT (1 << 20)
  26. /* AArch32-specific ptrace requests */
  27. #define COMPAT_PTRACE_GETREGS 12
  28. #define COMPAT_PTRACE_SETREGS 13
  29. #define COMPAT_PTRACE_GET_THREAD_AREA 22
  30. #define COMPAT_PTRACE_SET_SYSCALL 23
  31. #define COMPAT_PTRACE_GETVFPREGS 27
  32. #define COMPAT_PTRACE_SETVFPREGS 28
  33. #define COMPAT_PTRACE_GETHBPREGS 29
  34. #define COMPAT_PTRACE_SETHBPREGS 30
  35. /* SPSR_ELx bits for exceptions taken from AArch32 */
  36. #define PSR_AA32_MODE_MASK 0x0000001f
  37. #define PSR_AA32_MODE_USR 0x00000010
  38. #define PSR_AA32_MODE_FIQ 0x00000011
  39. #define PSR_AA32_MODE_IRQ 0x00000012
  40. #define PSR_AA32_MODE_SVC 0x00000013
  41. #define PSR_AA32_MODE_ABT 0x00000017
  42. #define PSR_AA32_MODE_HYP 0x0000001a
  43. #define PSR_AA32_MODE_UND 0x0000001b
  44. #define PSR_AA32_MODE_SYS 0x0000001f
  45. #define PSR_AA32_T_BIT 0x00000020
  46. #define PSR_AA32_F_BIT 0x00000040
  47. #define PSR_AA32_I_BIT 0x00000080
  48. #define PSR_AA32_A_BIT 0x00000100
  49. #define PSR_AA32_E_BIT 0x00000200
  50. #define PSR_AA32_PAN_BIT 0x00400000
  51. #define PSR_AA32_SSBS_BIT 0x00800000
  52. #define PSR_AA32_DIT_BIT 0x01000000
  53. #define PSR_AA32_Q_BIT 0x08000000
  54. #define PSR_AA32_V_BIT 0x10000000
  55. #define PSR_AA32_C_BIT 0x20000000
  56. #define PSR_AA32_Z_BIT 0x40000000
  57. #define PSR_AA32_N_BIT 0x80000000
  58. #define PSR_AA32_IT_MASK 0x0600fc00 /* If-Then execution state mask */
  59. #define PSR_AA32_GE_MASK 0x000f0000
  60. #ifdef CONFIG_CPU_BIG_ENDIAN
  61. #define PSR_AA32_ENDSTATE PSR_AA32_E_BIT
  62. #else
  63. #define PSR_AA32_ENDSTATE 0
  64. #endif
  65. /* AArch32 CPSR bits, as seen in AArch32 */
  66. #define COMPAT_PSR_DIT_BIT 0x00200000
  67. /*
  68. * These are 'magic' values for PTRACE_PEEKUSR that return info about where a
  69. * process is located in memory.
  70. */
  71. #define COMPAT_PT_TEXT_ADDR 0x10000
  72. #define COMPAT_PT_DATA_ADDR 0x10004
  73. #define COMPAT_PT_TEXT_END_ADDR 0x10008
  74. /*
  75. * If pt_regs.syscallno == NO_SYSCALL, then the thread is not executing
  76. * a syscall -- i.e., its most recent entry into the kernel from
  77. * userspace was not via SVC, or otherwise a tracer cancelled the syscall.
  78. *
  79. * This must have the value -1, for ABI compatibility with ptrace etc.
  80. */
  81. #define NO_SYSCALL (-1)
  82. #ifndef __ASSEMBLER__
  83. #include <linux/bug.h>
  84. #include <linux/types.h>
  85. #include <asm/stacktrace/frame.h>
  86. /* sizeof(struct user) for AArch32 */
  87. #define COMPAT_USER_SZ 296
  88. /* Architecturally defined mapping between AArch32 and AArch64 registers */
  89. #define compat_usr(x) regs[(x)]
  90. #define compat_fp regs[11]
  91. #define compat_sp regs[13]
  92. #define compat_lr regs[14]
  93. #define compat_sp_hyp regs[15]
  94. #define compat_lr_irq regs[16]
  95. #define compat_sp_irq regs[17]
  96. #define compat_lr_svc regs[18]
  97. #define compat_sp_svc regs[19]
  98. #define compat_lr_abt regs[20]
  99. #define compat_sp_abt regs[21]
  100. #define compat_lr_und regs[22]
  101. #define compat_sp_und regs[23]
  102. #define compat_r8_fiq regs[24]
  103. #define compat_r9_fiq regs[25]
  104. #define compat_r10_fiq regs[26]
  105. #define compat_r11_fiq regs[27]
  106. #define compat_r12_fiq regs[28]
  107. #define compat_sp_fiq regs[29]
  108. #define compat_lr_fiq regs[30]
  109. static inline unsigned long compat_psr_to_pstate(const unsigned long psr)
  110. {
  111. unsigned long pstate;
  112. pstate = psr & ~COMPAT_PSR_DIT_BIT;
  113. if (psr & COMPAT_PSR_DIT_BIT)
  114. pstate |= PSR_AA32_DIT_BIT;
  115. return pstate;
  116. }
  117. static inline unsigned long pstate_to_compat_psr(const unsigned long pstate)
  118. {
  119. unsigned long psr;
  120. psr = pstate & ~PSR_AA32_DIT_BIT;
  121. if (pstate & PSR_AA32_DIT_BIT)
  122. psr |= COMPAT_PSR_DIT_BIT;
  123. return psr;
  124. }
  125. /*
  126. * This struct defines the way the registers are stored on the stack during an
  127. * exception. struct user_pt_regs must form a prefix of struct pt_regs.
  128. */
  129. struct pt_regs {
  130. union {
  131. struct user_pt_regs user_regs;
  132. struct {
  133. u64 regs[31];
  134. u64 sp;
  135. u64 pc;
  136. u64 pstate;
  137. };
  138. };
  139. u64 orig_x0;
  140. s32 syscallno;
  141. u32 pmr;
  142. u64 sdei_ttbr1;
  143. struct frame_record_meta stackframe;
  144. };
  145. /* For correct stack alignment, pt_regs has to be a multiple of 16 bytes. */
  146. static_assert(IS_ALIGNED(sizeof(struct pt_regs), 16));
  147. static inline bool in_syscall(struct pt_regs const *regs)
  148. {
  149. return regs->syscallno != NO_SYSCALL;
  150. }
  151. static inline void forget_syscall(struct pt_regs *regs)
  152. {
  153. regs->syscallno = NO_SYSCALL;
  154. }
  155. #define MAX_REG_OFFSET offsetof(struct pt_regs, pstate)
  156. #define arch_has_single_step() (1)
  157. #ifdef CONFIG_COMPAT
  158. #define compat_thumb_mode(regs) \
  159. (((regs)->pstate & PSR_AA32_T_BIT))
  160. #else
  161. #define compat_thumb_mode(regs) (0)
  162. #endif
  163. #define user_mode(regs) \
  164. (((regs)->pstate & PSR_MODE_MASK) == PSR_MODE_EL0t)
  165. #define compat_user_mode(regs) \
  166. (((regs)->pstate & (PSR_MODE32_BIT | PSR_MODE_MASK)) == \
  167. (PSR_MODE32_BIT | PSR_MODE_EL0t))
  168. #define processor_mode(regs) \
  169. ((regs)->pstate & PSR_MODE_MASK)
  170. #define irqs_priority_unmasked(regs) \
  171. (system_uses_irq_prio_masking() ? \
  172. (regs)->pmr == GIC_PRIO_IRQON : \
  173. true)
  174. static __always_inline bool regs_irqs_disabled(const struct pt_regs *regs)
  175. {
  176. return (regs->pstate & PSR_I_BIT) || !irqs_priority_unmasked(regs);
  177. }
  178. #define interrupts_enabled(regs) (!regs_irqs_disabled(regs))
  179. static inline unsigned long user_stack_pointer(struct pt_regs *regs)
  180. {
  181. if (compat_user_mode(regs))
  182. return regs->compat_sp;
  183. return regs->sp;
  184. }
  185. extern int regs_query_register_offset(const char *name);
  186. extern unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
  187. unsigned int n);
  188. /**
  189. * regs_get_register() - get register value from its offset
  190. * @regs: pt_regs from which register value is gotten
  191. * @offset: offset of the register.
  192. *
  193. * regs_get_register returns the value of a register whose offset from @regs.
  194. * The @offset is the offset of the register in struct pt_regs.
  195. * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
  196. */
  197. static inline u64 regs_get_register(struct pt_regs *regs, unsigned int offset)
  198. {
  199. u64 val = 0;
  200. WARN_ON(offset & 7);
  201. offset >>= 3;
  202. switch (offset) {
  203. case 0 ... 30:
  204. val = regs->regs[offset];
  205. break;
  206. case offsetof(struct pt_regs, sp) >> 3:
  207. val = regs->sp;
  208. break;
  209. case offsetof(struct pt_regs, pc) >> 3:
  210. val = regs->pc;
  211. break;
  212. case offsetof(struct pt_regs, pstate) >> 3:
  213. val = regs->pstate;
  214. break;
  215. default:
  216. val = 0;
  217. }
  218. return val;
  219. }
  220. /*
  221. * Read a register given an architectural register index r.
  222. * This handles the common case where 31 means XZR, not SP.
  223. */
  224. static inline unsigned long pt_regs_read_reg(const struct pt_regs *regs, int r)
  225. {
  226. return (r == 31) ? 0 : regs->regs[r];
  227. }
  228. /*
  229. * Write a register given an architectural register index r.
  230. * This handles the common case where 31 means XZR, not SP.
  231. */
  232. static inline void pt_regs_write_reg(struct pt_regs *regs, int r,
  233. unsigned long val)
  234. {
  235. if (r != 31)
  236. regs->regs[r] = val;
  237. }
  238. /* Valid only for Kernel mode traps. */
  239. static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
  240. {
  241. return regs->sp;
  242. }
  243. static inline unsigned long regs_return_value(struct pt_regs *regs)
  244. {
  245. unsigned long val = regs->regs[0];
  246. /*
  247. * Audit currently uses regs_return_value() instead of
  248. * syscall_get_return_value(). Apply the same sign-extension here until
  249. * audit is updated to use syscall_get_return_value().
  250. */
  251. if (compat_user_mode(regs))
  252. val = sign_extend64(val, 31);
  253. return val;
  254. }
  255. static inline void regs_set_return_value(struct pt_regs *regs, unsigned long rc)
  256. {
  257. regs->regs[0] = rc;
  258. }
  259. /**
  260. * regs_get_kernel_argument() - get Nth function argument in kernel
  261. * @regs: pt_regs of that context
  262. * @n: function argument number (start from 0)
  263. *
  264. * regs_get_argument() returns @n th argument of the function call.
  265. *
  266. * Note that this chooses the most likely register mapping. In very rare
  267. * cases this may not return correct data, for example, if one of the
  268. * function parameters is 16 bytes or bigger. In such cases, we cannot
  269. * get access the parameter correctly and the register assignment of
  270. * subsequent parameters will be shifted.
  271. */
  272. static inline unsigned long regs_get_kernel_argument(struct pt_regs *regs,
  273. unsigned int n)
  274. {
  275. #define NR_REG_ARGUMENTS 8
  276. if (n < NR_REG_ARGUMENTS)
  277. return pt_regs_read_reg(regs, n);
  278. return 0;
  279. }
  280. /* We must avoid circular header include via sched.h */
  281. struct task_struct;
  282. int valid_user_regs(struct user_pt_regs *regs, struct task_struct *task);
  283. static inline unsigned long instruction_pointer(struct pt_regs *regs)
  284. {
  285. return regs->pc;
  286. }
  287. static inline void instruction_pointer_set(struct pt_regs *regs,
  288. unsigned long val)
  289. {
  290. regs->pc = val;
  291. }
  292. static inline unsigned long frame_pointer(struct pt_regs *regs)
  293. {
  294. return regs->regs[29];
  295. }
  296. #define procedure_link_pointer(regs) ((regs)->regs[30])
  297. static inline void procedure_link_pointer_set(struct pt_regs *regs,
  298. unsigned long val)
  299. {
  300. procedure_link_pointer(regs) = val;
  301. }
  302. extern unsigned long profile_pc(struct pt_regs *regs);
  303. #endif /* __ASSEMBLER__ */
  304. #endif