blob: 6303701d18e3bc598fefb0f27326fd99d00f3ec8 [file] [log] [blame]
Thomas Gleixner8fc37f22007-10-23 22:37:24 +02001#ifndef _ASM_X86_PTRACE_H
2#define _ASM_X86_PTRACE_H
3
4#include <linux/compiler.h> /* For __user */
5#include <asm/ptrace-abi.h>
6
Markus Metzgereee3af42008-01-30 13:31:09 +01007
Thomas Gleixner8fc37f22007-10-23 22:37:24 +02008#ifndef __ASSEMBLY__
9
10#ifdef __i386__
11/* this struct defines the way the registers are stored on the
12 stack during a system call. */
13
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010014#ifndef __KERNEL__
15
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020016struct pt_regs {
17 long ebx;
18 long ecx;
19 long edx;
20 long esi;
21 long edi;
22 long ebp;
23 long eax;
24 int xds;
25 int xes;
26 int xfs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010027 /* int gs; */
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020028 long orig_eax;
29 long eip;
30 int xcs;
31 long eflags;
32 long esp;
33 int xss;
34};
35
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010036#else /* __KERNEL__ */
37
38struct pt_regs {
Harvey Harrison92bc2052008-02-08 12:09:56 -080039 unsigned long bx;
40 unsigned long cx;
41 unsigned long dx;
42 unsigned long si;
43 unsigned long di;
44 unsigned long bp;
Harvey Harrison9902a702008-02-08 12:09:57 -080045 unsigned long ax;
Harvey Harrison92bc2052008-02-08 12:09:56 -080046 unsigned long ds;
47 unsigned long es;
48 unsigned long fs;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010049 /* int gs; */
Harvey Harrison9902a702008-02-08 12:09:57 -080050 unsigned long orig_ax;
Harvey Harrison92bc2052008-02-08 12:09:56 -080051 unsigned long ip;
52 unsigned long cs;
53 unsigned long flags;
54 unsigned long sp;
55 unsigned long ss;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010056};
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020057
58#include <asm/vm86.h>
59#include <asm/segment.h>
60
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020061#endif /* __KERNEL__ */
62
63#else /* __i386__ */
64
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010065#ifndef __KERNEL__
66
Thomas Gleixner8fc37f22007-10-23 22:37:24 +020067struct pt_regs {
68 unsigned long r15;
69 unsigned long r14;
70 unsigned long r13;
71 unsigned long r12;
72 unsigned long rbp;
73 unsigned long rbx;
74/* arguments: non interrupts/non tracing syscalls only save upto here*/
75 unsigned long r11;
76 unsigned long r10;
77 unsigned long r9;
78 unsigned long r8;
79 unsigned long rax;
80 unsigned long rcx;
81 unsigned long rdx;
82 unsigned long rsi;
83 unsigned long rdi;
84 unsigned long orig_rax;
85/* end of arguments */
86/* cpu exception frame or undefined */
87 unsigned long rip;
88 unsigned long cs;
89 unsigned long eflags;
90 unsigned long rsp;
91 unsigned long ss;
92/* top of stack page */
93};
94
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010095#else /* __KERNEL__ */
96
97struct pt_regs {
98 unsigned long r15;
99 unsigned long r14;
100 unsigned long r13;
101 unsigned long r12;
102 unsigned long bp;
103 unsigned long bx;
104/* arguments: non interrupts/non tracing syscalls only save upto here*/
105 unsigned long r11;
106 unsigned long r10;
107 unsigned long r9;
108 unsigned long r8;
109 unsigned long ax;
110 unsigned long cx;
111 unsigned long dx;
112 unsigned long si;
113 unsigned long di;
114 unsigned long orig_ax;
115/* end of arguments */
116/* cpu exception frame or undefined */
117 unsigned long ip;
118 unsigned long cs;
119 unsigned long flags;
120 unsigned long sp;
121 unsigned long ss;
122/* top of stack page */
123};
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200124
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200125#endif /* __KERNEL__ */
126#endif /* !__i386__ */
Roland McGrathefd1ca52008-01-30 13:30:46 +0100127
Markus Metzger93fa7632008-04-08 11:01:58 +0200128
129#ifdef CONFIG_X86_PTRACE_BTS
130/* a branch trace record entry
131 *
132 * In order to unify the interface between various processor versions,
133 * we use the below data structure for all processors.
134 */
135enum bts_qualifier {
136 BTS_INVALID = 0,
137 BTS_BRANCH,
138 BTS_TASK_ARRIVES,
139 BTS_TASK_DEPARTS
140};
141
142struct bts_struct {
143 __u64 qualifier;
144 union {
145 /* BTS_BRANCH */
146 struct {
147 __u64 from_ip;
148 __u64 to_ip;
149 } lbr;
150 /* BTS_TASK_ARRIVES or
151 BTS_TASK_DEPARTS */
152 __u64 jiffies;
153 } variant;
154};
155#endif /* CONFIG_X86_PTRACE_BTS */
156
Roland McGrathefd1ca52008-01-30 13:30:46 +0100157#ifdef __KERNEL__
158
Markus Metzger93fa7632008-04-08 11:01:58 +0200159#include <linux/init.h>
Harvey Harrisondbe35332008-01-30 13:33:16 +0100160
Markus Metzger93fa7632008-04-08 11:01:58 +0200161struct cpuinfo_x86;
Harvey Harrisondbe35332008-01-30 13:33:16 +0100162struct task_struct;
163
Markus Metzger93fa7632008-04-08 11:01:58 +0200164#ifdef CONFIG_X86_PTRACE_BTS
165extern void __cpuinit ptrace_bts_init_intel(struct cpuinfo_x86 *);
Harvey Harrisondbe35332008-01-30 13:33:16 +0100166extern void ptrace_bts_take_timestamp(struct task_struct *, enum bts_qualifier);
Markus Metzger93fa7632008-04-08 11:01:58 +0200167#else
168#define ptrace_bts_init_intel(config) do {} while (0)
169#endif /* CONFIG_X86_PTRACE_BTS */
Harvey Harrisondbe35332008-01-30 13:33:16 +0100170
171extern unsigned long profile_pc(struct pt_regs *regs);
172
173extern unsigned long
174convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs);
175
176#ifdef CONFIG_X86_32
Joe Perches72f74fa22008-03-23 01:03:17 -0700177extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
178 int error_code);
Harvey Harrisondbe35332008-01-30 13:33:16 +0100179#else
180void signal_fault(struct pt_regs *regs, void __user *frame, char *where);
181#endif
182
Harvey Harrison9902a702008-02-08 12:09:57 -0800183static inline unsigned long regs_return_value(struct pt_regs *regs)
184{
185 return regs->ax;
186}
Harvey Harrisondbe35332008-01-30 13:33:16 +0100187
Roland McGrath7f232342008-01-30 13:30:48 +0100188/*
Harvey Harrison90d43d72008-01-30 13:33:16 +0100189 * user_mode_vm(regs) determines whether a register set came from user mode.
190 * This is true if V8086 mode was enabled OR if the register set was from
191 * protected mode with RPL-3 CS value. This tricky test checks that with
192 * one comparison. Many places in the kernel can bypass this full check
193 * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
194 */
195static inline int user_mode(struct pt_regs *regs)
196{
197#ifdef CONFIG_X86_32
198 return (regs->cs & SEGMENT_RPL_MASK) == USER_RPL;
199#else
200 return !!(regs->cs & 3);
201#endif
202}
203
204static inline int user_mode_vm(struct pt_regs *regs)
205{
206#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300207 return ((regs->cs & SEGMENT_RPL_MASK) | (regs->flags & X86_VM_MASK)) >=
Joe Perches72f74fa22008-03-23 01:03:17 -0700208 USER_RPL;
Harvey Harrison90d43d72008-01-30 13:33:16 +0100209#else
210 return user_mode(regs);
211#endif
212}
213
214static inline int v8086_mode(struct pt_regs *regs)
215{
216#ifdef CONFIG_X86_32
gorcunov@gmail.com6b6891f2008-03-28 17:56:57 +0300217 return (regs->flags & X86_VM_MASK);
Harvey Harrison90d43d72008-01-30 13:33:16 +0100218#else
219 return 0; /* No V86 mode support in long mode */
220#endif
221}
222
Harvey Harrisonf6e8e282008-01-30 13:33:16 +0100223/*
224 * X86_32 CPUs don't save ss and esp if the CPU is already in kernel mode
225 * when it traps. So regs will be the current sp.
226 *
227 * This is valid only for kernel mode traps.
228 */
229static inline unsigned long kernel_trap_sp(struct pt_regs *regs)
Harvey Harrison90d43d72008-01-30 13:33:16 +0100230{
231#ifdef CONFIG_X86_32
232 return (unsigned long)regs;
233#else
234 return regs->sp;
235#endif
236}
237
238static inline unsigned long instruction_pointer(struct pt_regs *regs)
239{
240 return regs->ip;
241}
242
243static inline unsigned long frame_pointer(struct pt_regs *regs)
244{
245 return regs->bp;
246}
247
248/*
Roland McGrath7f232342008-01-30 13:30:48 +0100249 * These are defined as per linux/ptrace.h, which see.
250 */
251#define arch_has_single_step() (1)
252extern void user_enable_single_step(struct task_struct *);
253extern void user_disable_single_step(struct task_struct *);
254
Roland McGrath10faa812008-01-30 13:30:54 +0100255extern void user_enable_block_step(struct task_struct *);
256#ifdef CONFIG_X86_DEBUGCTLMSR
257#define arch_has_block_step() (1)
258#else
259#define arch_has_block_step() (boot_cpu_data.x86 >= 6)
260#endif
261
Roland McGrathefd1ca52008-01-30 13:30:46 +0100262struct user_desc;
263extern int do_get_thread_area(struct task_struct *p, int idx,
264 struct user_desc __user *info);
265extern int do_set_thread_area(struct task_struct *p, int idx,
266 struct user_desc __user *info, int can_allocate);
267
Roland McGrath562b80b2008-04-22 12:21:25 -0700268#define __ARCH_WANT_COMPAT_SYS_PTRACE
269
Roland McGrathefd1ca52008-01-30 13:30:46 +0100270#endif /* __KERNEL__ */
271
Thomas Gleixner8fc37f22007-10-23 22:37:24 +0200272#endif /* !__ASSEMBLY__ */
273
Thomas Gleixner96a388d2007-10-11 11:20:03 +0200274#endif