- Update Xen patches to 3.3-rc5 and c/s 1157.
[linux-flexiantxendom0-3.2.10.git] / arch / x86 / include / asm / ptrace.h
1 #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 #include <asm/processor-flags.h>
7
8 #ifdef __KERNEL__
9 #include <asm/segment.h>
10 #include <asm/page_types.h>
11 #endif
12
13 #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
19 #ifndef __KERNEL__
20
21 struct 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;
32         int  xgs;
33         long orig_eax;
34         long eip;
35         int  xcs;
36         long eflags;
37         long esp;
38         int  xss;
39 };
40
41 #else /* __KERNEL__ */
42
43 struct pt_regs {
44         unsigned long bx;
45         unsigned long cx;
46         unsigned long dx;
47         unsigned long si;
48         unsigned long di;
49         unsigned long bp;
50         unsigned long ax;
51         unsigned long ds;
52         unsigned long es;
53         unsigned long fs;
54         unsigned long gs;
55         unsigned long orig_ax;
56         unsigned long ip;
57         unsigned long cs;
58         unsigned long flags;
59         unsigned long sp;
60         unsigned long ss;
61 };
62
63 #endif /* __KERNEL__ */
64
65 #else /* __i386__ */
66
67 #ifndef __KERNEL__
68
69 struct 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 up to 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
97 #else /* __KERNEL__ */
98
99 struct 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 up to 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 };
126
127 #endif /* __KERNEL__ */
128 #endif /* !__i386__ */
129
130
131 #ifdef __KERNEL__
132
133 #include <linux/init.h>
134 #ifdef CONFIG_PARAVIRT
135 #include <asm/paravirt_types.h>
136 #elif defined(CONFIG_X86_64_XEN)
137 #include <xen/interface/xen.h>
138 #endif
139
140 struct cpuinfo_x86;
141 struct task_struct;
142
143 extern unsigned long profile_pc(struct pt_regs *regs);
144 #define profile_pc profile_pc
145
146 extern unsigned long
147 convert_ip_to_linear(struct task_struct *child, struct pt_regs *regs);
148 extern void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
149                          int error_code, int si_code);
150 void signal_fault(struct pt_regs *regs, void __user *frame, char *where);
151
152 extern long syscall_trace_enter(struct pt_regs *);
153 extern void syscall_trace_leave(struct pt_regs *);
154
155 static inline unsigned long regs_return_value(struct pt_regs *regs)
156 {
157         return regs->ax;
158 }
159
160 /*
161  * user_mode_vm(regs) determines whether a register set came from user mode.
162  * This is true if V8086 mode was enabled OR if the register set was from
163  * protected mode with RPL-3 CS value.  This tricky test checks that with
164  * one comparison.  Many places in the kernel can bypass this full check
165  * if they have already ruled out V8086 mode, so user_mode(regs) can be used.
166  */
167 static inline int user_mode(struct pt_regs *regs)
168 {
169 #ifdef CONFIG_X86_32
170         return (regs->cs & SEGMENT_RPL_MASK) == USER_RPL;
171 #else
172         return !!(regs->cs & 3);
173 #endif
174 }
175
176 static inline int user_mode_vm(struct pt_regs *regs)
177 {
178 #ifdef CONFIG_X86_32
179         return ((regs->cs & SEGMENT_RPL_MASK) | (regs->flags & X86_VM_MASK)) >=
180                 USER_RPL;
181 #else
182         return user_mode(regs);
183 #endif
184 }
185
186 static inline int v8086_mode(struct pt_regs *regs)
187 {
188 #ifdef CONFIG_X86_32
189         return (regs->flags & X86_VM_MASK);
190 #else
191         return 0;       /* No V86 mode support in long mode */
192 #endif
193 }
194
195 #ifdef CONFIG_X86_64
196 static inline bool user_64bit_mode(struct pt_regs *regs)
197 {
198 #if defined(CONFIG_XEN)
199         /*
200          * On Xen, these are the only long mode CPL 3 selectors.
201          * We do not allow long mode selectors in the LDT.
202          */
203         return regs->cs == __USER_CS || regs->cs == FLAT_USER_CS64;
204 #elif !defined(CONFIG_PARAVIRT)
205         /*
206          * On non-paravirt systems, this is the only long mode CPL 3
207          * selector.  We do not allow long mode selectors in the LDT.
208          */
209         return regs->cs == __USER_CS;
210 #else
211         /* Headers are too twisted for this to go in paravirt.h. */
212         return regs->cs == __USER_CS || regs->cs == pv_info.extra_user_64bit_cs;
213 #endif
214 }
215 #endif
216
217 /*
218  * X86_32 CPUs don't save ss and esp if the CPU is already in kernel mode
219  * when it traps.  The previous stack will be directly underneath the saved
220  * registers, and 'sp/ss' won't even have been saved. Thus the '&regs->sp'.
221  *
222  * This is valid only for kernel mode traps.
223  */
224 static inline unsigned long kernel_stack_pointer(struct pt_regs *regs)
225 {
226 #ifdef CONFIG_X86_32
227         return (unsigned long)(&regs->sp);
228 #else
229         return regs->sp;
230 #endif
231 }
232
233 #define GET_IP(regs) ((regs)->ip)
234 #define GET_FP(regs) ((regs)->bp)
235 #define GET_USP(regs) ((regs)->sp)
236
237 #include <asm-generic/ptrace.h>
238
239 /* Query offset/name of register from its name/offset */
240 extern int regs_query_register_offset(const char *name);
241 extern const char *regs_query_register_name(unsigned int offset);
242 #define MAX_REG_OFFSET (offsetof(struct pt_regs, ss))
243
244 /**
245  * regs_get_register() - get register value from its offset
246  * @regs:       pt_regs from which register value is gotten.
247  * @offset:     offset number of the register.
248  *
249  * regs_get_register returns the value of a register. The @offset is the
250  * offset of the register in struct pt_regs address which specified by @regs.
251  * If @offset is bigger than MAX_REG_OFFSET, this returns 0.
252  */
253 static inline unsigned long regs_get_register(struct pt_regs *regs,
254                                               unsigned int offset)
255 {
256         if (unlikely(offset > MAX_REG_OFFSET))
257                 return 0;
258         return *(unsigned long *)((unsigned long)regs + offset);
259 }
260
261 /**
262  * regs_within_kernel_stack() - check the address in the stack
263  * @regs:       pt_regs which contains kernel stack pointer.
264  * @addr:       address which is checked.
265  *
266  * regs_within_kernel_stack() checks @addr is within the kernel stack page(s).
267  * If @addr is within the kernel stack, it returns true. If not, returns false.
268  */
269 static inline int regs_within_kernel_stack(struct pt_regs *regs,
270                                            unsigned long addr)
271 {
272         return ((addr & ~(THREAD_SIZE - 1))  ==
273                 (kernel_stack_pointer(regs) & ~(THREAD_SIZE - 1)));
274 }
275
276 /**
277  * regs_get_kernel_stack_nth() - get Nth entry of the stack
278  * @regs:       pt_regs which contains kernel stack pointer.
279  * @n:          stack entry number.
280  *
281  * regs_get_kernel_stack_nth() returns @n th entry of the kernel stack which
282  * is specified by @regs. If the @n th entry is NOT in the kernel stack,
283  * this returns 0.
284  */
285 static inline unsigned long regs_get_kernel_stack_nth(struct pt_regs *regs,
286                                                       unsigned int n)
287 {
288         unsigned long *addr = (unsigned long *)kernel_stack_pointer(regs);
289         addr += n;
290         if (regs_within_kernel_stack(regs, (unsigned long)addr))
291                 return *addr;
292         else
293                 return 0;
294 }
295
296 #define arch_has_single_step()  (1)
297 #if defined(CONFIG_XEN)
298 #define arch_has_block_step()   (0)
299 #elif defined(CONFIG_X86_DEBUGCTLMSR)
300 #define arch_has_block_step()   (1)
301 #else
302 #define arch_has_block_step()   (boot_cpu_data.x86 >= 6)
303 #endif
304
305 #define ARCH_HAS_USER_SINGLE_STEP_INFO
306
307 struct user_desc;
308 extern int do_get_thread_area(struct task_struct *p, int idx,
309                               struct user_desc __user *info);
310 extern int do_set_thread_area(struct task_struct *p, int idx,
311                               struct user_desc __user *info, int can_allocate);
312
313 #endif /* __KERNEL__ */
314
315 #endif /* !__ASSEMBLY__ */
316
317 #endif /* _ASM_X86_PTRACE_H */