blob: d64a6109716531261d43bb1f80dc37060c6067dc [file] [log] [blame]
Vegard Nossum77ef50a2008-06-18 17:08:48 +02001#ifndef ASM_X86__PTRACE_H
2#define ASM_X86__PTRACE_H
Thomas Gleixner8fc37f22007-10-23 22:37:24 +02003
4#include <linux/compiler.h> /* For __user */
5#include <asm/ptrace-abi.h>
Vegard Nossum6330a302008-05-28 09:46:19 +02006#include <asm/processor-flags.h>
Thomas Gleixner8fc37f22007-10-23 22:37:24 +02007
Vegard Nossum6330a302008-05-28 09:46:19 +02008#ifdef __KERNEL__
9#include <asm/ds.h> /* the DS BTS struct is used for ptrace too */
10#include <asm/segment.h>
11#endif
Markus Metzgereee3af42008-01-30 13:31:09 +010012
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020013#ifndef __ASSEMBLY__
14
15#ifdef __i386__
16/* this struct defines the way the registers are stored on the
17 stack during a system call. */
18
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010019#ifndef __KERNEL__
20
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020021struct pt_regs {
22 long ebx;
23 long ecx;
24 long edx;
25 long esi;
26 long edi;
27 long ebp;
28 long eax;
29 int xds;
30 int xes;
31 int xfs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010032 /* int gs; */
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020033 long orig_eax;
34 long eip;
35 int xcs;
36 long eflags;
37 long esp;
38 int xss;
39};
40
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010041#else /* __KERNEL__ */
42
43struct pt_regs {
Harvey Harrison92bc2052008-02-08 12:09:56 -080044 unsigned long bx;
45 unsigned long cx;
46 unsigned long dx;
47 unsigned long si;
48 unsigned long di;
49 unsigned long bp;
Harvey Harrison9902a702008-02-08 12:09:57 -080050 unsigned long ax;
Harvey Harrison92bc2052008-02-08 12:09:56 -080051 unsigned long ds;
52 unsigned long es;
53 unsigned long fs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010054 /* int gs; */
Harvey Harrison9902a702008-02-08 12:09:57 -080055 unsigned long orig_ax;
Harvey Harrison92bc2052008-02-08 12:09:56 -080056 unsigned long ip;
57 unsigned long cs;
58 unsigned long flags;
59 unsigned long sp;
60 unsigned long ss;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010061};
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020062
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020063#endif /* __KERNEL__ */
64
65#else /* __i386__ */
66
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010067#ifndef __KERNEL__
68
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020069struct pt_regs {
70 unsigned long r15;
71 unsigned long r14;
72 unsigned long r13;
73 unsigned long r12;
74 unsigned long rbp;
75 unsigned long rbx;
76/* arguments: non interrupts/non tracing syscalls only save upto here*/
77 unsigned long r11;
78 unsigned long r10;
79 unsigned long r9;
80 unsigned long r8;
81 unsigned long rax;
82 unsigned long rcx;
83 unsigned long rdx;
84 unsigned long rsi;
85 unsigned long rdi;
86 unsigned long orig_rax;
87/* end of arguments */
88/* cpu exception frame or undefined */
89 unsigned long rip;
90 unsigned long cs;
91 unsigned long eflags;
92 unsigned long rsp;
93 unsigned long ss;
94/* top of stack page */
95};
96
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010097#else /* __KERNEL__ */
98
99struct pt_regs {
100 unsigned long r15;
101 unsigned long r14;
102 unsigned long r13;
103 unsigned long r12;
104 unsigned long bp;
105 unsigned long bx;
106/* arguments: non interrupts/non tracing syscalls only save upto here*/
107 unsigned long r11;
108 unsigned long r10;
109 unsigned long r9;
110 unsigned long r8;
111 unsigned long ax;
112 unsigned long cx;
113 unsigned long dx;
114 unsigned long si;
115 unsigned long di;
116 unsigned long orig_ax;
117/* end of arguments */
118/* cpu exception frame or undefined */
119 unsigned long ip;
120 unsigned long cs;
121 unsigned long flags;
122 unsigned long sp;
123 unsigned long ss;
124/* top of stack page */
125};
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200126
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200127#endif /* __KERNEL__ */
128#endif /* !__i386__ */
Roland McGrathefd1ca52008-01-30 13:30:46 +0100129
Markus Metzger93fa7632008-04-08 11:01:58 +0200130
131#ifdef CONFIG_X86_PTRACE_BTS
132/* a branch trace record entry
133 *
134 * In order to unify the interface between various processor versions,
135 * we use the below data structure for all processors.
136 */
137enum bts_qualifier {
138 BTS_INVALID = 0,
139 BTS_BRANCH,
140 BTS_TASK_ARRIVES,
141 BTS_TASK_DEPARTS
142};
143
144struct bts_struct {
145 __u64 qualifier;
146 union {
147 /* BTS_BRANCH */
148 struct {
149 __u64 from_ip;
150 __u64 to_ip;
151 } lbr;
152 /* BTS_TASK_ARRIVES or
153 BTS_TASK_DEPARTS */
154 __u64 jiffies;
155 } variant;
156};
157#endif /* CONFIG_X86_PTRACE_BTS */
158
Roland McGrathefd1ca52008-01-30 13:30:46 +0100159#ifdef __KERNEL__
160
Markus Metzger93fa7632008-04-08 11:01:58 +0200161#include <linux/init.h>
Harvey Harrisondbe35332008-01-30 13:33:16 +0100162
Markus Metzger93fa7632008-04-08 11:01:58 +0200163struct cpuinfo_x86;
Harvey Harrisondbe35332008-01-30 13:33:16 +0100164struct task_struct;
165
Markus Metzger93fa7632008-04-08 11:01:58 +0200166#ifdef CONFIG_X86_PTRACE_BTS
167extern void __cpuinit ptrace_bts_init_intel(struct cpuinfo_x86 *);
Harvey Harrisondbe35332008-01-30 13:33:16 +0100168extern void ptrace_bts_take_timestamp(struct task_struct *, enum bts_qualifier);
Markus Metzger93fa7632008-04-08 11:01:58 +0200169#else
170#define ptrace_bts_init_intel(config) do {} while (0)
171#endif /* CONFIG_X86_PTRACE_BTS */
Harvey Harrisondbe35332008-01-30 13:33:16 +0100172
173extern unsigned long profile_pc(struct pt_regs *regs);
174
175extern unsigned long
176convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs);
177
178#ifdef CONFIG_X86_32
Joe Perches72f74fa22008-03-23 01:03:17 -0700179extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
180 int error_code);
Harvey Harrisondbe35332008-01-30 13:33:16 +0100181#else
182void signal_fault(struct pt_regs *regs, void __user *frame, char *where);
183#endif
184
Jaswinder Singhc1686ae2008-07-21 22:35:38 +0530185extern long syscall_trace_enter(struct pt_regs *);
186extern void syscall_trace_leave(struct pt_regs *);
187
Harvey Harrison9902a702008-02-08 12:09:57 -0800188static inline unsigned long regs_return_value(struct pt_regs *regs)
189{
190 return regs->ax;
191}
Harvey Harrisondbe35332008-01-30 13:33:16 +0100192
Roland McGrath7f232342008-01-30 13:30:48 +0100193/*
Harvey Harrison90d43d72008-01-30 13:33:16 +0100194 * user_mode_vm(regs) determines whether a register set came from user mode.
195 * This is true if V8086 mode was enabled OR if the register set was from
196 * protected mode with RPL-3 CS value. This tricky test checks that with
197 * one comparison. Many places in the kernel can bypass this full check
198 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
199 */
200static inline int user_mode(struct pt_regs *regs)
201{
202#ifdef CONFIG_X86_32
203 return (regs->cs & SEGMENT_RPL_MASK) == USER_RPL;
204#else
205 return !!(regs->cs & 3);
206#endif
207}
208
209static inline int user_mode_vm(struct pt_regs *regs)
210{
211#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300212 return ((regs->cs & SEGMENT_RPL_MASK) | (regs->flags & X86_VM_MASK)) >=
Joe Perches72f74fa22008-03-23 01:03:17 -0700213 USER_RPL;
Harvey Harrison90d43d72008-01-30 13:33:16 +0100214#else
215 return user_mode(regs);
216#endif
217}
218
219static inline int v8086_mode(struct pt_regs *regs)
220{
221#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300222 return (regs->flags & X86_VM_MASK);
Harvey Harrison90d43d72008-01-30 13:33:16 +0100223#else
224 return 0; /* No V86 mode support in long mode */
225#endif
226}
227
Harvey Harrisonf6e8e282008-01-30 13:33:16 +0100228/*
229 * X86_32 CPUs don't save ss and esp if the CPU is already in kernel mode
230 * when it traps. So regs will be the current sp.
231 *
232 * This is valid only for kernel mode traps.
233 */
234static inline unsigned long kernel_trap_sp(struct pt_regs *regs)
Harvey Harrison90d43d72008-01-30 13:33:16 +0100235{
236#ifdef CONFIG_X86_32
237 return (unsigned long)regs;
238#else
239 return regs->sp;
240#endif
241}
242
243static inline unsigned long instruction_pointer(struct pt_regs *regs)
244{
245 return regs->ip;
246}
247
248static inline unsigned long frame_pointer(struct pt_regs *regs)
249{
250 return regs->bp;
251}
252
Roland McGrath68bd0f42008-04-18 17:08:44 -0700253static inline unsigned long user_stack_pointer(struct pt_regs *regs)
254{
255 return regs->sp;
256}
257
Harvey Harrison90d43d72008-01-30 13:33:16 +0100258/*
Roland McGrath7f232342008-01-30 13:30:48 +0100259 * These are defined as per linux/ptrace.h, which see.
260 */
261#define arch_has_single_step() (1)
262extern void user_enable_single_step(struct task_struct *);
263extern void user_disable_single_step(struct task_struct *);
264
Roland McGrath10faa812008-01-30 13:30:54 +0100265extern void user_enable_block_step(struct task_struct *);
266#ifdef CONFIG_X86_DEBUGCTLMSR
267#define arch_has_block_step() (1)
268#else
269#define arch_has_block_step() (boot_cpu_data.x86 >= 6)
270#endif
271
Roland McGrathefd1ca52008-01-30 13:30:46 +0100272struct user_desc;
273extern int do_get_thread_area(struct task_struct *p, int idx,
274 struct user_desc __user *info);
275extern int do_set_thread_area(struct task_struct *p, int idx,
276 struct user_desc __user *info, int can_allocate);
277
Roland McGrath562b80b2008-04-22 12:21:25 -0700278#define __ARCH_WANT_COMPAT_SYS_PTRACE
279
Roland McGrathefd1ca52008-01-30 13:30:46 +0100280#endif /* __KERNEL__ */
281
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200282#endif /* !__ASSEMBLY__ */
283
Vegard Nossum77ef50a2008-06-18 17:08:48 +0200284#endif /* ASM_X86__PTRACE_H */