1 #ifndef _ASM_X86_PTRACE_H
2 #define _ASM_X86_PTRACE_H
4 #include <linux/compiler.h> /* For __user */
5 #include <asm/ptrace-abi.h>
6 #include <asm/processor-flags.h>
9 #include <asm/segment.h>
10 #include <asm/page_types.h>
16 /* this struct defines the way the registers are stored on the
17 stack during a system call. */
41 #else /* __KERNEL__ */
55 unsigned long orig_ax
;
63 #endif /* __KERNEL__ */
76 /* arguments: non interrupts/non tracing syscalls only save up to here*/
86 unsigned long orig_rax
;
87 /* end of arguments */
88 /* cpu exception frame or undefined */
94 /* top of stack page */
97 #else /* __KERNEL__ */
106 /* arguments: non interrupts/non tracing syscalls only save up to here*/
116 unsigned long orig_ax
;
117 /* end of arguments */
118 /* cpu exception frame or undefined */
124 /* top of stack page */
127 #endif /* __KERNEL__ */
128 #endif /* !__i386__ */
133 #include <linux/init.h>
134 #ifdef CONFIG_PARAVIRT
135 #include <asm/paravirt_types.h>
141 extern unsigned long profile_pc(struct pt_regs
*regs
);
142 #define profile_pc profile_pc
145 convert_ip_to_linear(struct task_struct
*child
, struct pt_regs
*regs
);
146 extern void send_sigtrap(struct task_struct
*tsk
, struct pt_regs
*regs
,
147 int error_code
, int si_code
);
148 void signal_fault(struct pt_regs
*regs
, void __user
*frame
, char *where
);
150 extern long syscall_trace_enter(struct pt_regs
*);
151 extern void syscall_trace_leave(struct pt_regs
*);
153 static inline unsigned long regs_return_value(struct pt_regs
*regs
)
159 * user_mode_vm(regs) determines whether a register set came from user mode.
160 * This is true if V8086 mode was enabled OR if the register set was from
161 * protected mode with RPL-3 CS value. This tricky test checks that with
162 * one comparison. Many places in the kernel can bypass this full check
163 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
165 static inline int user_mode(struct pt_regs
*regs
)
168 return (regs
->cs
& SEGMENT_RPL_MASK
) == USER_RPL
;
170 return !!(regs
->cs
& 3);
174 static inline int user_mode_vm(struct pt_regs
*regs
)
177 return ((regs
->cs
& SEGMENT_RPL_MASK
) | (regs
->flags
& X86_VM_MASK
)) >=
180 return user_mode(regs
);
184 static inline int v8086_mode(struct pt_regs
*regs
)
187 return (regs
->flags
& X86_VM_MASK
);
189 return 0; /* No V86 mode support in long mode */
194 static inline bool user_64bit_mode(struct pt_regs
*regs
)
196 #ifndef CONFIG_PARAVIRT
198 * On non-paravirt systems, this is the only long mode CPL 3
199 * selector. We do not allow long mode selectors in the LDT.
201 return regs
->cs
== __USER_CS
;
203 /* Headers are too twisted for this to go in paravirt.h. */
204 return regs
->cs
== __USER_CS
|| regs
->cs
== pv_info
.extra_user_64bit_cs
;
210 * X86_32 CPUs don't save ss and esp if the CPU is already in kernel mode
211 * when it traps. The previous stack will be directly underneath the saved
212 * registers, and 'sp/ss' won't even have been saved. Thus the '®s->sp'.
214 * This is valid only for kernel mode traps.
216 static inline unsigned long kernel_stack_pointer(struct pt_regs
*regs
)
219 return (unsigned long)(®s
->sp
);
225 #define GET_IP(regs) ((regs)->ip)
226 #define GET_FP(regs) ((regs)->bp)
227 #define GET_USP(regs) ((regs)->sp)
229 #include <asm-generic/ptrace.h>
231 /* Query offset/name of register from its name/offset */
232 extern int regs_query_register_offset(const char *name
);
233 extern const char *regs_query_register_name(unsigned int offset
);
234 #define MAX_REG_OFFSET (offsetof(struct pt_regs, ss))
237 * regs_get_register() - get register value from its offset
238 * @regs: pt_regs from which register value is gotten.
239 * @offset: offset number of the register.
241 * regs_get_register returns the value of a register. The @offset is the
242 * offset of the register in struct pt_regs address which specified by @regs.
243 * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
245 static inline unsigned long regs_get_register(struct pt_regs
*regs
,
248 if (unlikely(offset
> MAX_REG_OFFSET
))
250 return *(unsigned long *)((unsigned long)regs
+ offset
);
254 * regs_within_kernel_stack() - check the address in the stack
255 * @regs: pt_regs which contains kernel stack pointer.
256 * @addr: address which is checked.
258 * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
259 * If @addr is within the kernel stack, it returns true. If not, returns false.
261 static inline int regs_within_kernel_stack(struct pt_regs
*regs
,
264 return ((addr
& ~(THREAD_SIZE
- 1)) ==
265 (kernel_stack_pointer(regs
) & ~(THREAD_SIZE
- 1)));
269 * regs_get_kernel_stack_nth() - get Nth entry of the stack
270 * @regs: pt_regs which contains kernel stack pointer.
271 * @n: stack entry number.
273 * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
274 * is specified by @regs. If the @n th entry is NOT in the kernel stack,
277 static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs
*regs
,
280 unsigned long *addr
= (unsigned long *)kernel_stack_pointer(regs
);
282 if (regs_within_kernel_stack(regs
, (unsigned long)addr
))
288 #define arch_has_single_step() (1)
289 #ifdef CONFIG_X86_DEBUGCTLMSR
290 #define arch_has_block_step() (1)
292 #define arch_has_block_step() (boot_cpu_data.x86 >= 6)
295 #define ARCH_HAS_USER_SINGLE_STEP_INFO
298 extern int do_get_thread_area(struct task_struct
*p
, int idx
,
299 struct user_desc __user
*info
);
300 extern int do_set_thread_area(struct task_struct
*p
, int idx
,
301 struct user_desc __user
*info
, int can_allocate
);
303 #endif /* __KERNEL__ */
305 #endif /* !__ASSEMBLY__ */
307 #endif /* _ASM_X86_PTRACE_H */