blob: 2c8ec1ba75e663e63b4ce2d1740b6db1fb2954d3 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/* By Ross Biro 1/23/92 */
2/*
3 * Pentium III FXSR, SSE support
4 * Gareth Hughes <gareth@valinux.com>, May 2000
Markus Metzgereee3af42008-01-30 13:31:09 +01005 *
6 * BTS tracing
7 * Markus Metzger <markus.t.metzger@intel.com>, Dec 2007
Linus Torvalds1da177e2005-04-16 15:20:36 -07008 */
9
10#include <linux/kernel.h>
11#include <linux/sched.h>
12#include <linux/mm.h>
13#include <linux/smp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/errno.h>
15#include <linux/ptrace.h>
Roland McGrath91e7b702008-01-30 13:31:52 +010016#include <linux/regset.h>
Roland McGratheeea3c32008-03-16 23:36:28 -070017#include <linux/tracehook.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070018#include <linux/user.h>
Roland McGrath070459d2008-01-30 13:31:53 +010019#include <linux/elf.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/security.h>
21#include <linux/audit.h>
22#include <linux/seccomp.h>
Jesper Juhl7ed20e12005-05-01 08:59:14 -070023#include <linux/signal.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/uaccess.h>
26#include <asm/pgtable.h>
27#include <asm/system.h>
28#include <asm/processor.h>
29#include <asm/i387.h>
30#include <asm/debugreg.h>
31#include <asm/ldt.h>
32#include <asm/desc.h>
Roland McGrath2047b082008-01-30 13:31:01 +010033#include <asm/prctl.h>
34#include <asm/proto.h>
Markus Metzgereee3af42008-01-30 13:31:09 +010035#include <asm/ds.h>
36
Roland McGrath070459d2008-01-30 13:31:53 +010037#include "tls.h"
38
39enum x86_regset {
40 REGSET_GENERAL,
41 REGSET_FP,
42 REGSET_XFP,
Roland McGrath325af5f2008-08-08 15:58:39 -070043 REGSET_IOPERM64 = REGSET_XFP,
Roland McGrath070459d2008-01-30 13:31:53 +010044 REGSET_TLS,
Roland McGrath325af5f2008-08-08 15:58:39 -070045 REGSET_IOPERM32,
Roland McGrath070459d2008-01-30 13:31:53 +010046};
Markus Metzgereee3af42008-01-30 13:31:09 +010047
48/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070049 * does not yet catch signals sent when the child dies.
50 * in exit.c or in signal.c.
51 */
52
Chuck Ebbert9f155b92006-01-05 23:11:29 -050053/*
54 * Determines which flags the user has access to [1 = access, 0 = no access].
Chuck Ebbert9f155b92006-01-05 23:11:29 -050055 */
Roland McGrathe39c2892008-01-30 13:31:01 +010056#define FLAG_MASK_32 ((unsigned long) \
57 (X86_EFLAGS_CF | X86_EFLAGS_PF | \
58 X86_EFLAGS_AF | X86_EFLAGS_ZF | \
59 X86_EFLAGS_SF | X86_EFLAGS_TF | \
60 X86_EFLAGS_DF | X86_EFLAGS_OF | \
61 X86_EFLAGS_RF | X86_EFLAGS_AC))
62
Roland McGrath2047b082008-01-30 13:31:01 +010063/*
64 * Determines whether a value may be installed in a segment register.
65 */
66static inline bool invalid_selector(u16 value)
67{
68 return unlikely(value != 0 && (value & SEGMENT_RPL_MASK) != USER_RPL);
69}
70
71#ifdef CONFIG_X86_32
72
Roland McGrathe39c2892008-01-30 13:31:01 +010073#define FLAG_MASK FLAG_MASK_32
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
Jaswinder Singh4fe702c2008-07-25 10:19:27 +053075static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long regno)
Linus Torvalds1da177e2005-04-16 15:20:36 -070076{
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010077 BUILD_BUG_ON(offsetof(struct pt_regs, bx) != 0);
Roland McGrath06ee1b62008-01-30 13:31:01 +010078 regno >>= 2;
Roland McGrath62a97d42008-01-30 13:30:52 +010079 if (regno > FS)
80 --regno;
H. Peter Anvin65ea5b02008-01-30 13:30:56 +010081 return &regs->bx + regno;
Linus Torvalds1da177e2005-04-16 15:20:36 -070082}
83
Roland McGrath06ee1b62008-01-30 13:31:01 +010084static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070085{
Roland McGrath06ee1b62008-01-30 13:31:01 +010086 /*
87 * Returning the value truncates it to 16 bits.
88 */
89 unsigned int retval;
90 if (offset != offsetof(struct user_regs_struct, gs))
91 retval = *pt_regs_access(task_pt_regs(task), offset);
92 else {
93 retval = task->thread.gs;
94 if (task == current)
95 savesegment(gs, retval);
96 }
97 return retval;
98}
99
100static int set_segment_reg(struct task_struct *task,
101 unsigned long offset, u16 value)
102{
103 /*
104 * The value argument was already truncated to 16 bits.
105 */
Roland McGrath2047b082008-01-30 13:31:01 +0100106 if (invalid_selector(value))
Roland McGrath06ee1b62008-01-30 13:31:01 +0100107 return -EIO;
108
Roland McGrathc63855d2008-02-06 22:39:44 +0100109 /*
110 * For %cs and %ss we cannot permit a null selector.
111 * We can permit a bogus selector as long as it has USER_RPL.
112 * Null selectors are fine for other segment registers, but
113 * we will never get back to user mode with invalid %cs or %ss
114 * and will take the trap in iret instead. Much code relies
115 * on user_mode() to distinguish a user trap frame (which can
116 * safely use invalid selectors) from a kernel trap frame.
117 */
118 switch (offset) {
119 case offsetof(struct user_regs_struct, cs):
120 case offsetof(struct user_regs_struct, ss):
121 if (unlikely(value == 0))
122 return -EIO;
123
124 default:
Roland McGrath06ee1b62008-01-30 13:31:01 +0100125 *pt_regs_access(task_pt_regs(task), offset) = value;
Roland McGrathc63855d2008-02-06 22:39:44 +0100126 break;
127
128 case offsetof(struct user_regs_struct, gs):
Roland McGrath06ee1b62008-01-30 13:31:01 +0100129 task->thread.gs = value;
130 if (task == current)
Roland McGrath5fd4d162008-01-30 13:30:58 +0100131 /*
132 * The user-mode %gs is not affected by
133 * kernel entry, so we must update the CPU.
134 */
135 loadsegment(gs, value);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136 }
Roland McGrath06ee1b62008-01-30 13:31:01 +0100137
Linus Torvalds1da177e2005-04-16 15:20:36 -0700138 return 0;
139}
140
Roland McGrath2047b082008-01-30 13:31:01 +0100141static unsigned long debugreg_addr_limit(struct task_struct *task)
142{
143 return TASK_SIZE - 3;
144}
145
146#else /* CONFIG_X86_64 */
147
148#define FLAG_MASK (FLAG_MASK_32 | X86_EFLAGS_NT)
149
150static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long offset)
151{
152 BUILD_BUG_ON(offsetof(struct pt_regs, r15) != 0);
153 return &regs->r15 + (offset / sizeof(regs->r15));
154}
155
156static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
157{
158 /*
159 * Returning the value truncates it to 16 bits.
160 */
161 unsigned int seg;
162
163 switch (offset) {
164 case offsetof(struct user_regs_struct, fs):
165 if (task == current) {
166 /* Older gas can't assemble movq %?s,%r?? */
167 asm("movl %%fs,%0" : "=r" (seg));
168 return seg;
169 }
170 return task->thread.fsindex;
171 case offsetof(struct user_regs_struct, gs):
172 if (task == current) {
173 asm("movl %%gs,%0" : "=r" (seg));
174 return seg;
175 }
176 return task->thread.gsindex;
177 case offsetof(struct user_regs_struct, ds):
178 if (task == current) {
179 asm("movl %%ds,%0" : "=r" (seg));
180 return seg;
181 }
182 return task->thread.ds;
183 case offsetof(struct user_regs_struct, es):
184 if (task == current) {
185 asm("movl %%es,%0" : "=r" (seg));
186 return seg;
187 }
188 return task->thread.es;
189
190 case offsetof(struct user_regs_struct, cs):
191 case offsetof(struct user_regs_struct, ss):
192 break;
193 }
194 return *pt_regs_access(task_pt_regs(task), offset);
195}
196
197static int set_segment_reg(struct task_struct *task,
198 unsigned long offset, u16 value)
199{
200 /*
201 * The value argument was already truncated to 16 bits.
202 */
203 if (invalid_selector(value))
204 return -EIO;
205
206 switch (offset) {
207 case offsetof(struct user_regs_struct,fs):
208 /*
209 * If this is setting fs as for normal 64-bit use but
210 * setting fs_base has implicitly changed it, leave it.
211 */
212 if ((value == FS_TLS_SEL && task->thread.fsindex == 0 &&
213 task->thread.fs != 0) ||
214 (value == 0 && task->thread.fsindex == FS_TLS_SEL &&
215 task->thread.fs == 0))
216 break;
217 task->thread.fsindex = value;
218 if (task == current)
219 loadsegment(fs, task->thread.fsindex);
220 break;
221 case offsetof(struct user_regs_struct,gs):
222 /*
223 * If this is setting gs as for normal 64-bit use but
224 * setting gs_base has implicitly changed it, leave it.
225 */
226 if ((value == GS_TLS_SEL && task->thread.gsindex == 0 &&
227 task->thread.gs != 0) ||
228 (value == 0 && task->thread.gsindex == GS_TLS_SEL &&
229 task->thread.gs == 0))
230 break;
231 task->thread.gsindex = value;
232 if (task == current)
233 load_gs_index(task->thread.gsindex);
234 break;
235 case offsetof(struct user_regs_struct,ds):
236 task->thread.ds = value;
237 if (task == current)
238 loadsegment(ds, task->thread.ds);
239 break;
240 case offsetof(struct user_regs_struct,es):
241 task->thread.es = value;
242 if (task == current)
243 loadsegment(es, task->thread.es);
244 break;
245
246 /*
247 * Can't actually change these in 64-bit mode.
248 */
249 case offsetof(struct user_regs_struct,cs):
Roland McGrathc63855d2008-02-06 22:39:44 +0100250 if (unlikely(value == 0))
251 return -EIO;
Roland McGrath2047b082008-01-30 13:31:01 +0100252#ifdef CONFIG_IA32_EMULATION
253 if (test_tsk_thread_flag(task, TIF_IA32))
254 task_pt_regs(task)->cs = value;
Roland McGrath2047b082008-01-30 13:31:01 +0100255#endif
Roland McGrathcb757c42008-01-30 13:31:01 +0100256 break;
Roland McGrath2047b082008-01-30 13:31:01 +0100257 case offsetof(struct user_regs_struct,ss):
Roland McGrathc63855d2008-02-06 22:39:44 +0100258 if (unlikely(value == 0))
259 return -EIO;
Roland McGrath2047b082008-01-30 13:31:01 +0100260#ifdef CONFIG_IA32_EMULATION
261 if (test_tsk_thread_flag(task, TIF_IA32))
262 task_pt_regs(task)->ss = value;
Roland McGrath2047b082008-01-30 13:31:01 +0100263#endif
Roland McGrathcb757c42008-01-30 13:31:01 +0100264 break;
Roland McGrath2047b082008-01-30 13:31:01 +0100265 }
266
267 return 0;
268}
269
270static unsigned long debugreg_addr_limit(struct task_struct *task)
271{
272#ifdef CONFIG_IA32_EMULATION
273 if (test_tsk_thread_flag(task, TIF_IA32))
274 return IA32_PAGE_OFFSET - 3;
275#endif
276 return TASK_SIZE64 - 7;
277}
278
279#endif /* CONFIG_X86_32 */
280
Roland McGrath06ee1b62008-01-30 13:31:01 +0100281static unsigned long get_flags(struct task_struct *task)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700282{
Roland McGrath06ee1b62008-01-30 13:31:01 +0100283 unsigned long retval = task_pt_regs(task)->flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284
Roland McGrath06ee1b62008-01-30 13:31:01 +0100285 /*
286 * If the debugger set TF, hide it from the readout.
287 */
288 if (test_tsk_thread_flag(task, TIF_FORCED_TF))
289 retval &= ~X86_EFLAGS_TF;
290
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291 return retval;
292}
293
Roland McGrath06ee1b62008-01-30 13:31:01 +0100294static int set_flags(struct task_struct *task, unsigned long value)
295{
296 struct pt_regs *regs = task_pt_regs(task);
297
298 /*
299 * If the user value contains TF, mark that
300 * it was not "us" (the debugger) that set it.
301 * If not, make sure it stays set if we had.
302 */
303 if (value & X86_EFLAGS_TF)
304 clear_tsk_thread_flag(task, TIF_FORCED_TF);
305 else if (test_tsk_thread_flag(task, TIF_FORCED_TF))
306 value |= X86_EFLAGS_TF;
307
308 regs->flags = (regs->flags & ~FLAG_MASK) | (value & FLAG_MASK);
309
310 return 0;
311}
312
313static int putreg(struct task_struct *child,
314 unsigned long offset, unsigned long value)
315{
316 switch (offset) {
317 case offsetof(struct user_regs_struct, cs):
318 case offsetof(struct user_regs_struct, ds):
319 case offsetof(struct user_regs_struct, es):
320 case offsetof(struct user_regs_struct, fs):
321 case offsetof(struct user_regs_struct, gs):
322 case offsetof(struct user_regs_struct, ss):
323 return set_segment_reg(child, offset, value);
324
325 case offsetof(struct user_regs_struct, flags):
326 return set_flags(child, value);
Roland McGrath2047b082008-01-30 13:31:01 +0100327
328#ifdef CONFIG_X86_64
Roland McGrath84c6f602008-03-07 14:56:02 -0800329 /*
330 * Orig_ax is really just a flag with small positive and
331 * negative values, so make sure to always sign-extend it
332 * from 32 bits so that it works correctly regardless of
333 * whether we come from a 32-bit environment or not.
334 */
335 case offsetof(struct user_regs_struct, orig_ax):
336 value = (long) (s32) value;
337 break;
338
Roland McGrath2047b082008-01-30 13:31:01 +0100339 case offsetof(struct user_regs_struct,fs_base):
340 if (value >= TASK_SIZE_OF(child))
341 return -EIO;
342 /*
343 * When changing the segment base, use do_arch_prctl
344 * to set either thread.fs or thread.fsindex and the
345 * corresponding GDT slot.
346 */
347 if (child->thread.fs != value)
348 return do_arch_prctl(child, ARCH_SET_FS, value);
349 return 0;
350 case offsetof(struct user_regs_struct,gs_base):
351 /*
352 * Exactly the same here as the %fs handling above.
353 */
354 if (value >= TASK_SIZE_OF(child))
355 return -EIO;
356 if (child->thread.gs != value)
357 return do_arch_prctl(child, ARCH_SET_GS, value);
358 return 0;
359#endif
Roland McGrath06ee1b62008-01-30 13:31:01 +0100360 }
361
362 *pt_regs_access(task_pt_regs(child), offset) = value;
363 return 0;
364}
365
366static unsigned long getreg(struct task_struct *task, unsigned long offset)
367{
368 switch (offset) {
369 case offsetof(struct user_regs_struct, cs):
370 case offsetof(struct user_regs_struct, ds):
371 case offsetof(struct user_regs_struct, es):
372 case offsetof(struct user_regs_struct, fs):
373 case offsetof(struct user_regs_struct, gs):
374 case offsetof(struct user_regs_struct, ss):
375 return get_segment_reg(task, offset);
376
377 case offsetof(struct user_regs_struct, flags):
378 return get_flags(task);
Roland McGrath2047b082008-01-30 13:31:01 +0100379
380#ifdef CONFIG_X86_64
381 case offsetof(struct user_regs_struct, fs_base): {
382 /*
383 * do_arch_prctl may have used a GDT slot instead of
384 * the MSR. To userland, it appears the same either
385 * way, except the %fs segment selector might not be 0.
386 */
387 unsigned int seg = task->thread.fsindex;
388 if (task->thread.fs != 0)
389 return task->thread.fs;
390 if (task == current)
391 asm("movl %%fs,%0" : "=r" (seg));
392 if (seg != FS_TLS_SEL)
393 return 0;
394 return get_desc_base(&task->thread.tls_array[FS_TLS]);
395 }
396 case offsetof(struct user_regs_struct, gs_base): {
397 /*
398 * Exactly the same here as the %fs handling above.
399 */
400 unsigned int seg = task->thread.gsindex;
401 if (task->thread.gs != 0)
402 return task->thread.gs;
403 if (task == current)
404 asm("movl %%gs,%0" : "=r" (seg));
405 if (seg != GS_TLS_SEL)
406 return 0;
407 return get_desc_base(&task->thread.tls_array[GS_TLS]);
408 }
409#endif
Roland McGrath06ee1b62008-01-30 13:31:01 +0100410 }
411
412 return *pt_regs_access(task_pt_regs(task), offset);
413}
414
Roland McGrath91e7b702008-01-30 13:31:52 +0100415static int genregs_get(struct task_struct *target,
416 const struct user_regset *regset,
417 unsigned int pos, unsigned int count,
418 void *kbuf, void __user *ubuf)
419{
420 if (kbuf) {
421 unsigned long *k = kbuf;
422 while (count > 0) {
423 *k++ = getreg(target, pos);
424 count -= sizeof(*k);
425 pos += sizeof(*k);
426 }
427 } else {
428 unsigned long __user *u = ubuf;
429 while (count > 0) {
430 if (__put_user(getreg(target, pos), u++))
431 return -EFAULT;
432 count -= sizeof(*u);
433 pos += sizeof(*u);
434 }
435 }
436
437 return 0;
438}
439
440static int genregs_set(struct task_struct *target,
441 const struct user_regset *regset,
442 unsigned int pos, unsigned int count,
443 const void *kbuf, const void __user *ubuf)
444{
445 int ret = 0;
446 if (kbuf) {
447 const unsigned long *k = kbuf;
448 while (count > 0 && !ret) {
449 ret = putreg(target, pos, *k++);
450 count -= sizeof(*k);
451 pos += sizeof(*k);
452 }
453 } else {
454 const unsigned long __user *u = ubuf;
455 while (count > 0 && !ret) {
456 unsigned long word;
457 ret = __get_user(word, u++);
458 if (ret)
459 break;
460 ret = putreg(target, pos, word);
461 count -= sizeof(*u);
462 pos += sizeof(*u);
463 }
464 }
465 return ret;
466}
467
Linus Torvalds1da177e2005-04-16 15:20:36 -0700468/*
Roland McGrathd9771e82008-01-30 13:30:52 +0100469 * This function is trivial and will be inlined by the compiler.
470 * Having it separates the implementation details of debug
471 * registers from the interface details of ptrace.
472 */
473static unsigned long ptrace_get_debugreg(struct task_struct *child, int n)
474{
Roland McGrath0f534092008-01-30 13:30:59 +0100475 switch (n) {
476 case 0: return child->thread.debugreg0;
477 case 1: return child->thread.debugreg1;
478 case 2: return child->thread.debugreg2;
479 case 3: return child->thread.debugreg3;
480 case 6: return child->thread.debugreg6;
481 case 7: return child->thread.debugreg7;
482 }
483 return 0;
Roland McGrathd9771e82008-01-30 13:30:52 +0100484}
485
486static int ptrace_set_debugreg(struct task_struct *child,
487 int n, unsigned long data)
488{
Roland McGrath0f534092008-01-30 13:30:59 +0100489 int i;
490
Roland McGrathd9771e82008-01-30 13:30:52 +0100491 if (unlikely(n == 4 || n == 5))
492 return -EIO;
493
Roland McGrath2047b082008-01-30 13:31:01 +0100494 if (n < 4 && unlikely(data >= debugreg_addr_limit(child)))
Roland McGrathd9771e82008-01-30 13:30:52 +0100495 return -EIO;
496
Roland McGrath0f534092008-01-30 13:30:59 +0100497 switch (n) {
498 case 0: child->thread.debugreg0 = data; break;
499 case 1: child->thread.debugreg1 = data; break;
500 case 2: child->thread.debugreg2 = data; break;
501 case 3: child->thread.debugreg3 = data; break;
502
503 case 6:
Roland McGrath2047b082008-01-30 13:31:01 +0100504 if ((data & ~0xffffffffUL) != 0)
505 return -EIO;
Roland McGrath0f534092008-01-30 13:30:59 +0100506 child->thread.debugreg6 = data;
507 break;
508
509 case 7:
Roland McGrathd9771e82008-01-30 13:30:52 +0100510 /*
511 * Sanity-check data. Take one half-byte at once with
512 * check = (val >> (16 + 4*i)) & 0xf. It contains the
513 * R/Wi and LENi bits; bits 0 and 1 are R/Wi, and bits
514 * 2 and 3 are LENi. Given a list of invalid values,
515 * we do mask |= 1 << invalid_value, so that
516 * (mask >> check) & 1 is a correct test for invalid
517 * values.
518 *
519 * R/Wi contains the type of the breakpoint /
520 * watchpoint, LENi contains the length of the watched
521 * data in the watchpoint case.
522 *
523 * The invalid values are:
Roland McGrath2047b082008-01-30 13:31:01 +0100524 * - LENi == 0x10 (undefined), so mask |= 0x0f00. [32-bit]
Roland McGrathd9771e82008-01-30 13:30:52 +0100525 * - R/Wi == 0x10 (break on I/O reads or writes), so
526 * mask |= 0x4444.
527 * - R/Wi == 0x00 && LENi != 0x00, so we have mask |=
528 * 0x1110.
529 *
530 * Finally, mask = 0x0f00 | 0x4444 | 0x1110 == 0x5f54.
531 *
532 * See the Intel Manual "System Programming Guide",
533 * 15.2.4
534 *
535 * Note that LENi == 0x10 is defined on x86_64 in long
536 * mode (i.e. even for 32-bit userspace software, but
537 * 64-bit kernel), so the x86_64 mask value is 0x5454.
538 * See the AMD manual no. 24593 (AMD64 System Programming)
539 */
Roland McGrath2047b082008-01-30 13:31:01 +0100540#ifdef CONFIG_X86_32
541#define DR7_MASK 0x5f54
542#else
543#define DR7_MASK 0x5554
544#endif
Roland McGrathd9771e82008-01-30 13:30:52 +0100545 data &= ~DR_CONTROL_RESERVED;
546 for (i = 0; i < 4; i++)
Roland McGrath2047b082008-01-30 13:31:01 +0100547 if ((DR7_MASK >> ((data >> (16 + 4*i)) & 0xf)) & 1)
Roland McGrathd9771e82008-01-30 13:30:52 +0100548 return -EIO;
Roland McGrath0f534092008-01-30 13:30:59 +0100549 child->thread.debugreg7 = data;
Roland McGrathd9771e82008-01-30 13:30:52 +0100550 if (data)
551 set_tsk_thread_flag(child, TIF_DEBUG);
552 else
553 clear_tsk_thread_flag(child, TIF_DEBUG);
Roland McGrath0f534092008-01-30 13:30:59 +0100554 break;
Roland McGrathd9771e82008-01-30 13:30:52 +0100555 }
556
Roland McGrathd9771e82008-01-30 13:30:52 +0100557 return 0;
558}
559
Roland McGrath325af5f2008-08-08 15:58:39 -0700560/*
561 * These access the current or another (stopped) task's io permission
562 * bitmap for debugging or core dump.
563 */
564static int ioperm_active(struct task_struct *target,
565 const struct user_regset *regset)
Markus Metzgereee3af42008-01-30 13:31:09 +0100566{
Roland McGrath325af5f2008-08-08 15:58:39 -0700567 return target->thread.io_bitmap_max / regset->size;
Markus Metzgereee3af42008-01-30 13:31:09 +0100568}
569
Roland McGrath325af5f2008-08-08 15:58:39 -0700570static int ioperm_get(struct task_struct *target,
571 const struct user_regset *regset,
572 unsigned int pos, unsigned int count,
573 void *kbuf, void __user *ubuf)
574{
575 if (!target->thread.io_bitmap_ptr)
576 return -ENXIO;
577
578 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
579 target->thread.io_bitmap_ptr,
580 0, IO_BITMAP_BYTES);
581}
582
Markus Metzger93fa7632008-04-08 11:01:58 +0200583#ifdef CONFIG_X86_PTRACE_BTS
584/*
585 * The configuration for a particular BTS hardware implementation.
586 */
587struct bts_configuration {
588 /* the size of a BTS record in bytes; at most BTS_MAX_RECORD_SIZE */
589 unsigned char sizeof_bts;
590 /* the size of a field in the BTS record in bytes */
591 unsigned char sizeof_field;
592 /* a bitmask to enable/disable BTS in DEBUGCTL MSR */
593 unsigned long debugctl_mask;
594};
595static struct bts_configuration bts_cfg;
Markus Metzgereee3af42008-01-30 13:31:09 +0100596
Markus Metzger93fa7632008-04-08 11:01:58 +0200597#define BTS_MAX_RECORD_SIZE (8 * 3)
598
599
600/*
601 * Branch Trace Store (BTS) uses the following format. Different
602 * architectures vary in the size of those fields.
603 * - source linear address
604 * - destination linear address
605 * - flags
606 *
607 * Later architectures use 64bit pointers throughout, whereas earlier
608 * architectures use 32bit pointers in 32bit mode.
609 *
610 * We compute the base address for the first 8 fields based on:
611 * - the field size stored in the DS configuration
612 * - the relative field position
613 *
614 * In order to store additional information in the BTS buffer, we use
615 * a special source address to indicate that the record requires
616 * special interpretation.
617 *
618 * Netburst indicated via a bit in the flags field whether the branch
619 * was predicted; this is ignored.
620 */
621
622enum bts_field {
623 bts_from = 0,
624 bts_to,
625 bts_flags,
626
627 bts_escape = (unsigned long)-1,
628 bts_qual = bts_to,
629 bts_jiffies = bts_flags
630};
631
632static inline unsigned long bts_get(const char *base, enum bts_field field)
Markus Metzgereee3af42008-01-30 13:31:09 +0100633{
Markus Metzger93fa7632008-04-08 11:01:58 +0200634 base += (bts_cfg.sizeof_field * field);
635 return *(unsigned long *)base;
Markus Metzgereee3af42008-01-30 13:31:09 +0100636}
637
Markus Metzger93fa7632008-04-08 11:01:58 +0200638static inline void bts_set(char *base, enum bts_field field, unsigned long val)
639{
640 base += (bts_cfg.sizeof_field * field);;
641 (*(unsigned long *)base) = val;
642}
643
644/*
645 * Translate a BTS record from the raw format into the bts_struct format
646 *
647 * out (out): bts_struct interpretation
648 * raw: raw BTS record
649 */
650static void ptrace_bts_translate_record(struct bts_struct *out, const void *raw)
651{
652 memset(out, 0, sizeof(*out));
653 if (bts_get(raw, bts_from) == bts_escape) {
654 out->qualifier = bts_get(raw, bts_qual);
655 out->variant.jiffies = bts_get(raw, bts_jiffies);
656 } else {
657 out->qualifier = BTS_BRANCH;
658 out->variant.lbr.from_ip = bts_get(raw, bts_from);
659 out->variant.lbr.to_ip = bts_get(raw, bts_to);
660 }
661}
662
663static int ptrace_bts_read_record(struct task_struct *child, size_t index,
Markus Metzgereee3af42008-01-30 13:31:09 +0100664 struct bts_struct __user *out)
665{
666 struct bts_struct ret;
Markus Metzger93fa7632008-04-08 11:01:58 +0200667 const void *bts_record;
668 size_t bts_index, bts_end;
669 int error;
Markus Metzgereee3af42008-01-30 13:31:09 +0100670
Markus Metzgerca0002a2008-11-25 09:01:25 +0100671 error = ds_get_bts_end(child->bts, &bts_end);
Markus Metzger93fa7632008-04-08 11:01:58 +0200672 if (error < 0)
673 return error;
Markus Metzgereee3af42008-01-30 13:31:09 +0100674
Markus Metzgera95d67f2008-01-30 13:31:20 +0100675 if (bts_end <= index)
Markus Metzgere4811f22008-01-30 13:31:20 +0100676 return -EINVAL;
677
Markus Metzgerca0002a2008-11-25 09:01:25 +0100678 error = ds_get_bts_index(child->bts, &bts_index);
Markus Metzger93fa7632008-04-08 11:01:58 +0200679 if (error < 0)
680 return error;
Markus Metzgere4811f22008-01-30 13:31:20 +0100681
Markus Metzger93fa7632008-04-08 11:01:58 +0200682 /* translate the ptrace bts index into the ds bts index */
683 bts_index += bts_end - (index + 1);
684 if (bts_end <= bts_index)
685 bts_index -= bts_end;
686
Markus Metzgerca0002a2008-11-25 09:01:25 +0100687 error = ds_access_bts(child->bts, bts_index, &bts_record);
Markus Metzger93fa7632008-04-08 11:01:58 +0200688 if (error < 0)
689 return error;
690
691 ptrace_bts_translate_record(&ret, bts_record);
Markus Metzgereee3af42008-01-30 13:31:09 +0100692
693 if (copy_to_user(out, &ret, sizeof(ret)))
694 return -EFAULT;
695
696 return sizeof(ret);
697}
698
Markus Metzgera95d67f2008-01-30 13:31:20 +0100699static int ptrace_bts_drain(struct task_struct *child,
Markus Metzgercba4b652008-01-30 13:32:03 +0100700 long size,
Markus Metzgera95d67f2008-01-30 13:31:20 +0100701 struct bts_struct __user *out)
702{
Markus Metzger93fa7632008-04-08 11:01:58 +0200703 struct bts_struct ret;
704 const unsigned char *raw;
705 size_t end, i;
706 int error;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100707
Markus Metzgerca0002a2008-11-25 09:01:25 +0100708 error = ds_get_bts_index(child->bts, &end);
Markus Metzger93fa7632008-04-08 11:01:58 +0200709 if (error < 0)
710 return error;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100711
Markus Metzgercba4b652008-01-30 13:32:03 +0100712 if (size < (end * sizeof(struct bts_struct)))
713 return -EIO;
714
Markus Metzgerca0002a2008-11-25 09:01:25 +0100715 error = ds_access_bts(child->bts, 0, (const void **)&raw);
Markus Metzger93fa7632008-04-08 11:01:58 +0200716 if (error < 0)
717 return error;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100718
Markus Metzger93fa7632008-04-08 11:01:58 +0200719 for (i = 0; i < end; i++, out++, raw += bts_cfg.sizeof_bts) {
720 ptrace_bts_translate_record(&ret, raw);
Markus Metzgera95d67f2008-01-30 13:31:20 +0100721
722 if (copy_to_user(out, &ret, sizeof(ret)))
723 return -EFAULT;
724 }
725
Markus Metzgerca0002a2008-11-25 09:01:25 +0100726 error = ds_clear_bts(child->bts);
Markus Metzger93fa7632008-04-08 11:01:58 +0200727 if (error < 0)
728 return error;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100729
Markus Metzgercba4b652008-01-30 13:32:03 +0100730 return end;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100731}
732
733static int ptrace_bts_config(struct task_struct *child,
Markus Metzgercba4b652008-01-30 13:32:03 +0100734 long cfg_size,
Markus Metzgera95d67f2008-01-30 13:31:20 +0100735 const struct ptrace_bts_config __user *ucfg)
736{
737 struct ptrace_bts_config cfg;
Markus Metzger93fa7632008-04-08 11:01:58 +0200738 int error = 0;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100739
Markus Metzger93fa7632008-04-08 11:01:58 +0200740 error = -EOPNOTSUPP;
741 if (!bts_cfg.sizeof_bts)
742 goto errout;
743
744 error = -EIO;
Markus Metzgercba4b652008-01-30 13:32:03 +0100745 if (cfg_size < sizeof(cfg))
Markus Metzger93fa7632008-04-08 11:01:58 +0200746 goto errout;
Markus Metzgercba4b652008-01-30 13:32:03 +0100747
Markus Metzger93fa7632008-04-08 11:01:58 +0200748 error = -EFAULT;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100749 if (copy_from_user(&cfg, ucfg, sizeof(cfg)))
Markus Metzger93fa7632008-04-08 11:01:58 +0200750 goto errout;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100751
Markus Metzger93fa7632008-04-08 11:01:58 +0200752 error = -EINVAL;
753 if ((cfg.flags & PTRACE_BTS_O_SIGNAL) &&
754 !(cfg.flags & PTRACE_BTS_O_ALLOC))
755 goto errout;
Markus Metzgercba4b652008-01-30 13:32:03 +0100756
Markus Metzger93fa7632008-04-08 11:01:58 +0200757 if (cfg.flags & PTRACE_BTS_O_ALLOC) {
Markus Metzgerca0002a2008-11-25 09:01:25 +0100758 bts_ovfl_callback_t ovfl = NULL;
Markus Metzger93fa7632008-04-08 11:01:58 +0200759 unsigned int sig = 0;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100760
Markus Metzger6abb11a2008-11-25 09:05:27 +0100761 error = -EINVAL;
762 if (cfg.size < (10 * bts_cfg.sizeof_bts))
763 goto errout;
764
Markus Metzger93fa7632008-04-08 11:01:58 +0200765 if (cfg.flags & PTRACE_BTS_O_SIGNAL) {
766 if (!cfg.signal)
767 goto errout;
768
Markus Metzgerca0002a2008-11-25 09:01:25 +0100769 error = -EOPNOTSUPP;
770 goto errout;
771
Markus Metzger93fa7632008-04-08 11:01:58 +0200772 sig = cfg.signal;
Markus Metzger93fa7632008-04-08 11:01:58 +0200773 }
774
Markus Metzger6abb11a2008-11-25 09:05:27 +0100775 if (child->bts) {
Markus Metzgerca0002a2008-11-25 09:01:25 +0100776 (void)ds_release_bts(child->bts);
Markus Metzger6abb11a2008-11-25 09:05:27 +0100777 kfree(child->bts_buffer);
Markus Metzgerca0002a2008-11-25 09:01:25 +0100778
Markus Metzger6abb11a2008-11-25 09:05:27 +0100779 child->bts = NULL;
780 child->bts_buffer = NULL;
781 }
782
783 error = -ENOMEM;
784 child->bts_buffer = kzalloc(cfg.size, GFP_KERNEL);
785 if (!child->bts_buffer)
786 goto errout;
787
788 child->bts = ds_request_bts(child, child->bts_buffer, cfg.size,
Markus Metzgerca0002a2008-11-25 09:01:25 +0100789 ovfl, /* th = */ (size_t)-1);
790 if (IS_ERR(child->bts)) {
791 error = PTR_ERR(child->bts);
Markus Metzger6abb11a2008-11-25 09:05:27 +0100792 kfree(child->bts_buffer);
Markus Metzgerca0002a2008-11-25 09:01:25 +0100793 child->bts = NULL;
Markus Metzger6abb11a2008-11-25 09:05:27 +0100794 child->bts_buffer = NULL;
Markus Metzgerda35c372008-01-30 13:32:03 +0100795 goto errout;
Markus Metzgerca0002a2008-11-25 09:01:25 +0100796 }
Markus Metzgera95d67f2008-01-30 13:31:20 +0100797
Markus Metzger93fa7632008-04-08 11:01:58 +0200798 child->thread.bts_ovfl_signal = sig;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100799 }
800
Markus Metzger93fa7632008-04-08 11:01:58 +0200801 error = -EINVAL;
802 if (!child->thread.ds_ctx && cfg.flags)
Markus Metzgerda35c372008-01-30 13:32:03 +0100803 goto errout;
Markus Metzgera95d67f2008-01-30 13:31:20 +0100804
Markus Metzgerda35c372008-01-30 13:32:03 +0100805 if (cfg.flags & PTRACE_BTS_O_TRACE)
Markus Metzger93fa7632008-04-08 11:01:58 +0200806 child->thread.debugctlmsr |= bts_cfg.debugctl_mask;
Markus Metzgerda35c372008-01-30 13:32:03 +0100807 else
Markus Metzger93fa7632008-04-08 11:01:58 +0200808 child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask;
Markus Metzgereee3af42008-01-30 13:31:09 +0100809
Markus Metzgerda35c372008-01-30 13:32:03 +0100810 if (cfg.flags & PTRACE_BTS_O_SCHED)
Markus Metzgereee3af42008-01-30 13:31:09 +0100811 set_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
812 else
813 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
814
Markus Metzger93fa7632008-04-08 11:01:58 +0200815 error = sizeof(cfg);
Markus Metzgercba4b652008-01-30 13:32:03 +0100816
Markus Metzgerda35c372008-01-30 13:32:03 +0100817out:
818 if (child->thread.debugctlmsr)
819 set_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
820 else
821 clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
822
Markus Metzger93fa7632008-04-08 11:01:58 +0200823 return error;
Markus Metzgerda35c372008-01-30 13:32:03 +0100824
825errout:
Markus Metzger93fa7632008-04-08 11:01:58 +0200826 child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask;
Markus Metzgerda35c372008-01-30 13:32:03 +0100827 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
828 goto out;
Markus Metzgereee3af42008-01-30 13:31:09 +0100829}
830
Markus Metzgera95d67f2008-01-30 13:31:20 +0100831static int ptrace_bts_status(struct task_struct *child,
Markus Metzgercba4b652008-01-30 13:32:03 +0100832 long cfg_size,
Markus Metzgera95d67f2008-01-30 13:31:20 +0100833 struct ptrace_bts_config __user *ucfg)
Markus Metzgereee3af42008-01-30 13:31:09 +0100834{
Markus Metzgera95d67f2008-01-30 13:31:20 +0100835 struct ptrace_bts_config cfg;
Markus Metzger93fa7632008-04-08 11:01:58 +0200836 size_t end;
837 const void *base, *max;
838 int error;
Markus Metzgereee3af42008-01-30 13:31:09 +0100839
Markus Metzgercba4b652008-01-30 13:32:03 +0100840 if (cfg_size < sizeof(cfg))
841 return -EIO;
842
Markus Metzgerca0002a2008-11-25 09:01:25 +0100843 error = ds_get_bts_end(child->bts, &end);
Markus Metzger93fa7632008-04-08 11:01:58 +0200844 if (error < 0)
845 return error;
846
Markus Metzgerca0002a2008-11-25 09:01:25 +0100847 error = ds_access_bts(child->bts, /* index = */ 0, &base);
Markus Metzger93fa7632008-04-08 11:01:58 +0200848 if (error < 0)
849 return error;
850
Markus Metzgerca0002a2008-11-25 09:01:25 +0100851 error = ds_access_bts(child->bts, /* index = */ end, &max);
Markus Metzger93fa7632008-04-08 11:01:58 +0200852 if (error < 0)
853 return error;
854
Markus Metzgera95d67f2008-01-30 13:31:20 +0100855 memset(&cfg, 0, sizeof(cfg));
Markus Metzger93fa7632008-04-08 11:01:58 +0200856 cfg.size = (max - base);
857 cfg.signal = child->thread.bts_ovfl_signal;
Markus Metzger87e84072008-01-30 13:32:54 +0100858 cfg.bts_size = sizeof(struct bts_struct);
859
Markus Metzger93fa7632008-04-08 11:01:58 +0200860 if (cfg.signal)
861 cfg.flags |= PTRACE_BTS_O_SIGNAL;
862
863 if (test_tsk_thread_flag(child, TIF_DEBUGCTLMSR) &&
864 child->thread.debugctlmsr & bts_cfg.debugctl_mask)
865 cfg.flags |= PTRACE_BTS_O_TRACE;
866
867 if (test_tsk_thread_flag(child, TIF_BTS_TRACE_TS))
868 cfg.flags |= PTRACE_BTS_O_SCHED;
869
Markus Metzgera95d67f2008-01-30 13:31:20 +0100870 if (copy_to_user(ucfg, &cfg, sizeof(cfg)))
871 return -EFAULT;
Markus Metzgereee3af42008-01-30 13:31:09 +0100872
Markus Metzgera95d67f2008-01-30 13:31:20 +0100873 return sizeof(cfg);
Markus Metzgereee3af42008-01-30 13:31:09 +0100874}
875
Andrew Mortond8d4f152008-03-04 15:05:39 -0800876static int ptrace_bts_write_record(struct task_struct *child,
877 const struct bts_struct *in)
878{
Markus Metzger93fa7632008-04-08 11:01:58 +0200879 unsigned char bts_record[BTS_MAX_RECORD_SIZE];
Andrew Mortond8d4f152008-03-04 15:05:39 -0800880
Markus Metzger93fa7632008-04-08 11:01:58 +0200881 BUG_ON(BTS_MAX_RECORD_SIZE < bts_cfg.sizeof_bts);
Andrew Mortond8d4f152008-03-04 15:05:39 -0800882
Markus Metzger93fa7632008-04-08 11:01:58 +0200883 memset(bts_record, 0, bts_cfg.sizeof_bts);
884 switch (in->qualifier) {
885 case BTS_INVALID:
886 break;
Andrew Mortond8d4f152008-03-04 15:05:39 -0800887
Markus Metzger93fa7632008-04-08 11:01:58 +0200888 case BTS_BRANCH:
889 bts_set(bts_record, bts_from, in->variant.lbr.from_ip);
890 bts_set(bts_record, bts_to, in->variant.lbr.to_ip);
891 break;
Andrew Mortond8d4f152008-03-04 15:05:39 -0800892
Markus Metzger93fa7632008-04-08 11:01:58 +0200893 case BTS_TASK_ARRIVES:
894 case BTS_TASK_DEPARTS:
895 bts_set(bts_record, bts_from, bts_escape);
896 bts_set(bts_record, bts_qual, in->qualifier);
897 bts_set(bts_record, bts_jiffies, in->variant.jiffies);
898 break;
Andrew Mortond8d4f152008-03-04 15:05:39 -0800899
Markus Metzger93fa7632008-04-08 11:01:58 +0200900 default:
Andrew Mortond8d4f152008-03-04 15:05:39 -0800901 return -EINVAL;
Andrew Mortond8d4f152008-03-04 15:05:39 -0800902 }
903
Markus Metzgerca0002a2008-11-25 09:01:25 +0100904 return ds_write_bts(child->bts, bts_record, bts_cfg.sizeof_bts);
Andrew Mortond8d4f152008-03-04 15:05:39 -0800905}
906
Markus Metzgereee3af42008-01-30 13:31:09 +0100907void ptrace_bts_take_timestamp(struct task_struct *tsk,
908 enum bts_qualifier qualifier)
909{
910 struct bts_struct rec = {
911 .qualifier = qualifier,
Markus Metzgerda35c372008-01-30 13:32:03 +0100912 .variant.jiffies = jiffies_64
Markus Metzgereee3af42008-01-30 13:31:09 +0100913 };
914
Markus Metzgereee3af42008-01-30 13:31:09 +0100915 ptrace_bts_write_record(tsk, &rec);
916}
Markus Metzger93fa7632008-04-08 11:01:58 +0200917
918static const struct bts_configuration bts_cfg_netburst = {
919 .sizeof_bts = sizeof(long) * 3,
920 .sizeof_field = sizeof(long),
921 .debugctl_mask = (1<<2)|(1<<3)|(1<<5)
922};
923
924static const struct bts_configuration bts_cfg_pentium_m = {
925 .sizeof_bts = sizeof(long) * 3,
926 .sizeof_field = sizeof(long),
927 .debugctl_mask = (1<<6)|(1<<7)
928};
929
930static const struct bts_configuration bts_cfg_core2 = {
931 .sizeof_bts = 8 * 3,
932 .sizeof_field = 8,
933 .debugctl_mask = (1<<6)|(1<<7)|(1<<9)
934};
935
936static inline void bts_configure(const struct bts_configuration *cfg)
937{
938 bts_cfg = *cfg;
939}
940
941void __cpuinit ptrace_bts_init_intel(struct cpuinfo_x86 *c)
942{
943 switch (c->x86) {
944 case 0x6:
945 switch (c->x86_model) {
Markus Metzgerf4166c52008-11-09 14:29:21 +0100946 case 0 ... 0xC:
947 /* sorry, don't know about them */
948 break;
Markus Metzger93fa7632008-04-08 11:01:58 +0200949 case 0xD:
950 case 0xE: /* Pentium M */
951 bts_configure(&bts_cfg_pentium_m);
952 break;
Markus Metzgerf4166c52008-11-09 14:29:21 +0100953 default: /* Core2, Atom, ... */
Markus Metzger93fa7632008-04-08 11:01:58 +0200954 bts_configure(&bts_cfg_core2);
955 break;
Markus Metzger93fa7632008-04-08 11:01:58 +0200956 }
957 break;
958 case 0xF:
959 switch (c->x86_model) {
960 case 0x0:
961 case 0x1:
962 case 0x2: /* Netburst */
963 bts_configure(&bts_cfg_netburst);
964 break;
965 default:
966 /* sorry, don't know about them */
967 break;
968 }
969 break;
970 default:
971 /* sorry, don't know about them */
972 break;
973 }
974}
975#endif /* CONFIG_X86_PTRACE_BTS */
Markus Metzgereee3af42008-01-30 13:31:09 +0100976
Roland McGrathd9771e82008-01-30 13:30:52 +0100977/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 * Called by kernel/ptrace.c when detaching..
979 *
980 * Make sure the single step bit is not set.
981 */
982void ptrace_disable(struct task_struct *child)
Roland McGrath9e714be2008-01-30 13:30:58 +0100983{
Roland McGrath7f232342008-01-30 13:30:48 +0100984 user_disable_single_step(child);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100985#ifdef TIF_SYSCALL_EMU
Bodo Stroesserab1c23c2005-09-03 15:57:21 -0700986 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
Roland McGrathe9c86c72008-01-30 13:31:01 +0100987#endif
Markus Metzger93fa7632008-04-08 11:01:58 +0200988#ifdef CONFIG_X86_PTRACE_BTS
Markus Metzgerca0002a2008-11-25 09:01:25 +0100989 if (child->bts) {
990 (void)ds_release_bts(child->bts);
Markus Metzger6abb11a2008-11-25 09:05:27 +0100991 kfree(child->bts_buffer);
992 child->bts_buffer = NULL;
Markus Metzger93fa7632008-04-08 11:01:58 +0200993
Markus Metzgerca0002a2008-11-25 09:01:25 +0100994 child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask;
995 if (!child->thread.debugctlmsr)
996 clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR);
Markus Metzger93fa7632008-04-08 11:01:58 +0200997
Markus Metzgerca0002a2008-11-25 09:01:25 +0100998 clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS);
999 }
Markus Metzger93fa7632008-04-08 11:01:58 +02001000#endif /* CONFIG_X86_PTRACE_BTS */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001001}
1002
Roland McGrath5a4646a2008-01-30 13:31:54 +01001003#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1004static const struct user_regset_view user_x86_32_view; /* Initialized below. */
1005#endif
1006
Christoph Hellwig481bed42005-11-07 00:59:47 -08001007long arch_ptrace(struct task_struct *child, long request, long addr, long data)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001008{
Roland McGrath5a4646a2008-01-30 13:31:54 +01001009 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 unsigned long __user *datap = (unsigned long __user *)data;
1011
Linus Torvalds1da177e2005-04-16 15:20:36 -07001012 switch (request) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001013 /* read the word at location addr in the USER area. */
1014 case PTRACE_PEEKUSR: {
1015 unsigned long tmp;
1016
1017 ret = -EIO;
Roland McGrathe9c86c72008-01-30 13:31:01 +01001018 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
1019 addr >= sizeof(struct user))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020 break;
1021
1022 tmp = 0; /* Default return condition */
Roland McGrathe9c86c72008-01-30 13:31:01 +01001023 if (addr < sizeof(struct user_regs_struct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024 tmp = getreg(child, addr);
Roland McGrathe9c86c72008-01-30 13:31:01 +01001025 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
1026 addr <= offsetof(struct user, u_debugreg[7])) {
1027 addr -= offsetof(struct user, u_debugreg[0]);
1028 tmp = ptrace_get_debugreg(child, addr / sizeof(data));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001029 }
1030 ret = put_user(tmp, datap);
1031 break;
1032 }
1033
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
1035 ret = -EIO;
Roland McGrathe9c86c72008-01-30 13:31:01 +01001036 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
1037 addr >= sizeof(struct user))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 break;
1039
Roland McGrathe9c86c72008-01-30 13:31:01 +01001040 if (addr < sizeof(struct user_regs_struct))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001041 ret = putreg(child, addr, data);
Roland McGrathe9c86c72008-01-30 13:31:01 +01001042 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
1043 addr <= offsetof(struct user, u_debugreg[7])) {
1044 addr -= offsetof(struct user, u_debugreg[0]);
1045 ret = ptrace_set_debugreg(child,
1046 addr / sizeof(data), data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 }
Roland McGrathe9c86c72008-01-30 13:31:01 +01001048 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001049
Roland McGrath5a4646a2008-01-30 13:31:54 +01001050 case PTRACE_GETREGS: /* Get all gp regs from the child. */
1051 return copy_regset_to_user(child,
1052 task_user_regset_view(current),
1053 REGSET_GENERAL,
1054 0, sizeof(struct user_regs_struct),
1055 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056
Roland McGrath5a4646a2008-01-30 13:31:54 +01001057 case PTRACE_SETREGS: /* Set all gp regs in the child. */
1058 return copy_regset_from_user(child,
1059 task_user_regset_view(current),
1060 REGSET_GENERAL,
1061 0, sizeof(struct user_regs_struct),
1062 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063
Roland McGrath5a4646a2008-01-30 13:31:54 +01001064 case PTRACE_GETFPREGS: /* Get the child FPU state. */
1065 return copy_regset_to_user(child,
1066 task_user_regset_view(current),
1067 REGSET_FP,
1068 0, sizeof(struct user_i387_struct),
1069 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Roland McGrath5a4646a2008-01-30 13:31:54 +01001071 case PTRACE_SETFPREGS: /* Set the child FPU state. */
1072 return copy_regset_from_user(child,
1073 task_user_regset_view(current),
1074 REGSET_FP,
1075 0, sizeof(struct user_i387_struct),
1076 datap);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001077
Roland McGrathe9c86c72008-01-30 13:31:01 +01001078#ifdef CONFIG_X86_32
Roland McGrath5a4646a2008-01-30 13:31:54 +01001079 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
1080 return copy_regset_to_user(child, &user_x86_32_view,
1081 REGSET_XFP,
1082 0, sizeof(struct user_fxsr_struct),
Roland McGrath45fdc3a2008-06-30 14:02:41 -07001083 datap) ? -EIO : 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001084
Roland McGrath5a4646a2008-01-30 13:31:54 +01001085 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
1086 return copy_regset_from_user(child, &user_x86_32_view,
1087 REGSET_XFP,
1088 0, sizeof(struct user_fxsr_struct),
Roland McGrath45fdc3a2008-06-30 14:02:41 -07001089 datap) ? -EIO : 0;
Roland McGrathe9c86c72008-01-30 13:31:01 +01001090#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001091
Roland McGrathe9c86c72008-01-30 13:31:01 +01001092#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093 case PTRACE_GET_THREAD_AREA:
Roland McGrathefd1ca52008-01-30 13:30:46 +01001094 if (addr < 0)
1095 return -EIO;
1096 ret = do_get_thread_area(child, addr,
1097 (struct user_desc __user *) data);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001098 break;
1099
1100 case PTRACE_SET_THREAD_AREA:
Roland McGrathefd1ca52008-01-30 13:30:46 +01001101 if (addr < 0)
1102 return -EIO;
1103 ret = do_set_thread_area(child, addr,
1104 (struct user_desc __user *) data, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001105 break;
Roland McGrathe9c86c72008-01-30 13:31:01 +01001106#endif
1107
1108#ifdef CONFIG_X86_64
1109 /* normal 64bit interface to access TLS data.
1110 Works just like arch_prctl, except that the arguments
1111 are reversed. */
1112 case PTRACE_ARCH_PRCTL:
1113 ret = do_arch_prctl(child, data, addr);
1114 break;
1115#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07001116
Ingo Molnarb4ef95d2008-02-26 09:40:27 +01001117 /*
1118 * These bits need more cooking - not enabled yet:
1119 */
Markus Metzger93fa7632008-04-08 11:01:58 +02001120#ifdef CONFIG_X86_PTRACE_BTS
Markus Metzgereee3af42008-01-30 13:31:09 +01001121 case PTRACE_BTS_CONFIG:
Markus Metzgera95d67f2008-01-30 13:31:20 +01001122 ret = ptrace_bts_config
Markus Metzgercba4b652008-01-30 13:32:03 +01001123 (child, data, (struct ptrace_bts_config __user *)addr);
Markus Metzgereee3af42008-01-30 13:31:09 +01001124 break;
1125
1126 case PTRACE_BTS_STATUS:
Markus Metzgera95d67f2008-01-30 13:31:20 +01001127 ret = ptrace_bts_status
Markus Metzgercba4b652008-01-30 13:32:03 +01001128 (child, data, (struct ptrace_bts_config __user *)addr);
Markus Metzgera95d67f2008-01-30 13:31:20 +01001129 break;
1130
Markus Metzgerca0002a2008-11-25 09:01:25 +01001131 case PTRACE_BTS_SIZE: {
1132 size_t size;
1133
1134 ret = ds_get_bts_index(child->bts, &size);
1135 if (ret == 0) {
1136 BUG_ON(size != (int) size);
1137 ret = (int) size;
1138 }
Markus Metzgera95d67f2008-01-30 13:31:20 +01001139 break;
Markus Metzgerca0002a2008-11-25 09:01:25 +01001140 }
Markus Metzgera95d67f2008-01-30 13:31:20 +01001141
1142 case PTRACE_BTS_GET:
1143 ret = ptrace_bts_read_record
1144 (child, data, (struct bts_struct __user *) addr);
1145 break;
1146
1147 case PTRACE_BTS_CLEAR:
Markus Metzgerca0002a2008-11-25 09:01:25 +01001148 ret = ds_clear_bts(child->bts);
Markus Metzgera95d67f2008-01-30 13:31:20 +01001149 break;
1150
1151 case PTRACE_BTS_DRAIN:
1152 ret = ptrace_bts_drain
Markus Metzgercba4b652008-01-30 13:32:03 +01001153 (child, data, (struct bts_struct __user *) addr);
Markus Metzgereee3af42008-01-30 13:31:09 +01001154 break;
Markus Metzger93fa7632008-04-08 11:01:58 +02001155#endif /* CONFIG_X86_PTRACE_BTS */
Markus Metzgereee3af42008-01-30 13:31:09 +01001156
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 default:
1158 ret = ptrace_request(child, request, addr, data);
1159 break;
1160 }
Roland McGrathd9771e82008-01-30 13:30:52 +01001161
Linus Torvalds1da177e2005-04-16 15:20:36 -07001162 return ret;
1163}
1164
Roland McGrathcb757c42008-01-30 13:31:01 +01001165#ifdef CONFIG_IA32_EMULATION
1166
Roland McGrath099cd6e2008-01-30 13:31:01 +01001167#include <linux/compat.h>
1168#include <linux/syscalls.h>
1169#include <asm/ia32.h>
Roland McGrathcb757c42008-01-30 13:31:01 +01001170#include <asm/user32.h>
1171
1172#define R32(l,q) \
1173 case offsetof(struct user32, regs.l): \
1174 regs->q = value; break
1175
1176#define SEG32(rs) \
1177 case offsetof(struct user32, regs.rs): \
1178 return set_segment_reg(child, \
1179 offsetof(struct user_regs_struct, rs), \
1180 value); \
1181 break
1182
1183static int putreg32(struct task_struct *child, unsigned regno, u32 value)
1184{
1185 struct pt_regs *regs = task_pt_regs(child);
1186
1187 switch (regno) {
1188
1189 SEG32(cs);
1190 SEG32(ds);
1191 SEG32(es);
1192 SEG32(fs);
1193 SEG32(gs);
1194 SEG32(ss);
1195
1196 R32(ebx, bx);
1197 R32(ecx, cx);
1198 R32(edx, dx);
1199 R32(edi, di);
1200 R32(esi, si);
1201 R32(ebp, bp);
1202 R32(eax, ax);
Roland McGrathcb757c42008-01-30 13:31:01 +01001203 R32(eip, ip);
1204 R32(esp, sp);
1205
Roland McGrath40f09332008-02-28 19:57:07 -08001206 case offsetof(struct user32, regs.orig_eax):
1207 /*
1208 * Sign-extend the value so that orig_eax = -1
1209 * causes (long)orig_ax < 0 tests to fire correctly.
1210 */
1211 regs->orig_ax = (long) (s32) value;
1212 break;
1213
Roland McGrathcb757c42008-01-30 13:31:01 +01001214 case offsetof(struct user32, regs.eflags):
1215 return set_flags(child, value);
1216
1217 case offsetof(struct user32, u_debugreg[0]) ...
1218 offsetof(struct user32, u_debugreg[7]):
1219 regno -= offsetof(struct user32, u_debugreg[0]);
1220 return ptrace_set_debugreg(child, regno / 4, value);
1221
1222 default:
1223 if (regno > sizeof(struct user32) || (regno & 3))
1224 return -EIO;
1225
1226 /*
1227 * Other dummy fields in the virtual user structure
1228 * are ignored
1229 */
1230 break;
1231 }
1232 return 0;
1233}
1234
1235#undef R32
1236#undef SEG32
1237
1238#define R32(l,q) \
1239 case offsetof(struct user32, regs.l): \
1240 *val = regs->q; break
1241
1242#define SEG32(rs) \
1243 case offsetof(struct user32, regs.rs): \
1244 *val = get_segment_reg(child, \
1245 offsetof(struct user_regs_struct, rs)); \
1246 break
1247
1248static int getreg32(struct task_struct *child, unsigned regno, u32 *val)
1249{
1250 struct pt_regs *regs = task_pt_regs(child);
1251
1252 switch (regno) {
1253
1254 SEG32(ds);
1255 SEG32(es);
1256 SEG32(fs);
1257 SEG32(gs);
1258
1259 R32(cs, cs);
1260 R32(ss, ss);
1261 R32(ebx, bx);
1262 R32(ecx, cx);
1263 R32(edx, dx);
1264 R32(edi, di);
1265 R32(esi, si);
1266 R32(ebp, bp);
1267 R32(eax, ax);
1268 R32(orig_eax, orig_ax);
1269 R32(eip, ip);
1270 R32(esp, sp);
1271
1272 case offsetof(struct user32, regs.eflags):
1273 *val = get_flags(child);
1274 break;
1275
1276 case offsetof(struct user32, u_debugreg[0]) ...
1277 offsetof(struct user32, u_debugreg[7]):
1278 regno -= offsetof(struct user32, u_debugreg[0]);
1279 *val = ptrace_get_debugreg(child, regno / 4);
1280 break;
1281
1282 default:
1283 if (regno > sizeof(struct user32) || (regno & 3))
1284 return -EIO;
1285
1286 /*
1287 * Other dummy fields in the virtual user structure
1288 * are ignored
1289 */
1290 *val = 0;
1291 break;
1292 }
1293 return 0;
1294}
1295
1296#undef R32
1297#undef SEG32
1298
Roland McGrath91e7b702008-01-30 13:31:52 +01001299static int genregs32_get(struct task_struct *target,
1300 const struct user_regset *regset,
1301 unsigned int pos, unsigned int count,
1302 void *kbuf, void __user *ubuf)
1303{
1304 if (kbuf) {
1305 compat_ulong_t *k = kbuf;
1306 while (count > 0) {
1307 getreg32(target, pos, k++);
1308 count -= sizeof(*k);
1309 pos += sizeof(*k);
1310 }
1311 } else {
1312 compat_ulong_t __user *u = ubuf;
1313 while (count > 0) {
1314 compat_ulong_t word;
1315 getreg32(target, pos, &word);
1316 if (__put_user(word, u++))
1317 return -EFAULT;
1318 count -= sizeof(*u);
1319 pos += sizeof(*u);
1320 }
1321 }
1322
1323 return 0;
1324}
1325
1326static int genregs32_set(struct task_struct *target,
1327 const struct user_regset *regset,
1328 unsigned int pos, unsigned int count,
1329 const void *kbuf, const void __user *ubuf)
1330{
1331 int ret = 0;
1332 if (kbuf) {
1333 const compat_ulong_t *k = kbuf;
1334 while (count > 0 && !ret) {
Roland McGrathf9cb02b2008-02-21 20:37:24 -08001335 ret = putreg32(target, pos, *k++);
Roland McGrath91e7b702008-01-30 13:31:52 +01001336 count -= sizeof(*k);
1337 pos += sizeof(*k);
1338 }
1339 } else {
1340 const compat_ulong_t __user *u = ubuf;
1341 while (count > 0 && !ret) {
1342 compat_ulong_t word;
1343 ret = __get_user(word, u++);
1344 if (ret)
1345 break;
Roland McGrathf9cb02b2008-02-21 20:37:24 -08001346 ret = putreg32(target, pos, word);
Roland McGrath91e7b702008-01-30 13:31:52 +01001347 count -= sizeof(*u);
1348 pos += sizeof(*u);
1349 }
1350 }
1351 return ret;
1352}
1353
Roland McGrath562b80b2008-04-22 12:21:25 -07001354long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
1355 compat_ulong_t caddr, compat_ulong_t cdata)
Roland McGrath099cd6e2008-01-30 13:31:01 +01001356{
Roland McGrath562b80b2008-04-22 12:21:25 -07001357 unsigned long addr = caddr;
1358 unsigned long data = cdata;
Roland McGrath099cd6e2008-01-30 13:31:01 +01001359 void __user *datap = compat_ptr(data);
1360 int ret;
1361 __u32 val;
1362
1363 switch (request) {
Roland McGrath099cd6e2008-01-30 13:31:01 +01001364 case PTRACE_PEEKUSR:
1365 ret = getreg32(child, addr, &val);
1366 if (ret == 0)
1367 ret = put_user(val, (__u32 __user *)datap);
1368 break;
1369
1370 case PTRACE_POKEUSR:
1371 ret = putreg32(child, addr, data);
1372 break;
1373
Roland McGrath5a4646a2008-01-30 13:31:54 +01001374 case PTRACE_GETREGS: /* Get all gp regs from the child. */
1375 return copy_regset_to_user(child, &user_x86_32_view,
1376 REGSET_GENERAL,
1377 0, sizeof(struct user_regs_struct32),
1378 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001379
Roland McGrath5a4646a2008-01-30 13:31:54 +01001380 case PTRACE_SETREGS: /* Set all gp regs in the child. */
1381 return copy_regset_from_user(child, &user_x86_32_view,
1382 REGSET_GENERAL, 0,
1383 sizeof(struct user_regs_struct32),
1384 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001385
Roland McGrath5a4646a2008-01-30 13:31:54 +01001386 case PTRACE_GETFPREGS: /* Get the child FPU state. */
1387 return copy_regset_to_user(child, &user_x86_32_view,
1388 REGSET_FP, 0,
1389 sizeof(struct user_i387_ia32_struct),
1390 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001391
Roland McGrath5a4646a2008-01-30 13:31:54 +01001392 case PTRACE_SETFPREGS: /* Set the child FPU state. */
1393 return copy_regset_from_user(
1394 child, &user_x86_32_view, REGSET_FP,
1395 0, sizeof(struct user_i387_ia32_struct), datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001396
Roland McGrath5a4646a2008-01-30 13:31:54 +01001397 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
1398 return copy_regset_to_user(child, &user_x86_32_view,
1399 REGSET_XFP, 0,
1400 sizeof(struct user32_fxsr_struct),
1401 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001402
Roland McGrath5a4646a2008-01-30 13:31:54 +01001403 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
1404 return copy_regset_from_user(child, &user_x86_32_view,
1405 REGSET_XFP, 0,
1406 sizeof(struct user32_fxsr_struct),
1407 datap);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001408
Roland McGrath562b80b2008-04-22 12:21:25 -07001409 case PTRACE_GET_THREAD_AREA:
1410 case PTRACE_SET_THREAD_AREA:
1411 return arch_ptrace(child, request, addr, data);
1412
Roland McGrath099cd6e2008-01-30 13:31:01 +01001413 default:
Roland McGrathfdadd542008-01-30 13:31:56 +01001414 return compat_ptrace_request(child, request, addr, data);
Roland McGrath099cd6e2008-01-30 13:31:01 +01001415 }
1416
Roland McGrath099cd6e2008-01-30 13:31:01 +01001417 return ret;
1418}
1419
Roland McGrathcb757c42008-01-30 13:31:01 +01001420#endif /* CONFIG_IA32_EMULATION */
1421
Roland McGrath070459d2008-01-30 13:31:53 +01001422#ifdef CONFIG_X86_64
1423
1424static const struct user_regset x86_64_regsets[] = {
1425 [REGSET_GENERAL] = {
1426 .core_note_type = NT_PRSTATUS,
1427 .n = sizeof(struct user_regs_struct) / sizeof(long),
1428 .size = sizeof(long), .align = sizeof(long),
1429 .get = genregs_get, .set = genregs_set
1430 },
1431 [REGSET_FP] = {
1432 .core_note_type = NT_PRFPREG,
1433 .n = sizeof(struct user_i387_struct) / sizeof(long),
1434 .size = sizeof(long), .align = sizeof(long),
1435 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1436 },
Roland McGrath325af5f2008-08-08 15:58:39 -07001437 [REGSET_IOPERM64] = {
1438 .core_note_type = NT_386_IOPERM,
1439 .n = IO_BITMAP_LONGS,
1440 .size = sizeof(long), .align = sizeof(long),
1441 .active = ioperm_active, .get = ioperm_get
1442 },
Roland McGrath070459d2008-01-30 13:31:53 +01001443};
1444
1445static const struct user_regset_view user_x86_64_view = {
1446 .name = "x86_64", .e_machine = EM_X86_64,
1447 .regsets = x86_64_regsets, .n = ARRAY_SIZE(x86_64_regsets)
1448};
1449
1450#else /* CONFIG_X86_32 */
1451
1452#define user_regs_struct32 user_regs_struct
1453#define genregs32_get genregs_get
1454#define genregs32_set genregs_set
1455
Roland McGrath1f465f42008-05-09 15:43:44 -07001456#define user_i387_ia32_struct user_i387_struct
1457#define user32_fxsr_struct user_fxsr_struct
1458
Roland McGrath070459d2008-01-30 13:31:53 +01001459#endif /* CONFIG_X86_64 */
1460
1461#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1462static const struct user_regset x86_32_regsets[] = {
1463 [REGSET_GENERAL] = {
1464 .core_note_type = NT_PRSTATUS,
1465 .n = sizeof(struct user_regs_struct32) / sizeof(u32),
1466 .size = sizeof(u32), .align = sizeof(u32),
1467 .get = genregs32_get, .set = genregs32_set
1468 },
1469 [REGSET_FP] = {
1470 .core_note_type = NT_PRFPREG,
Roland McGrath1f465f42008-05-09 15:43:44 -07001471 .n = sizeof(struct user_i387_ia32_struct) / sizeof(u32),
Roland McGrath070459d2008-01-30 13:31:53 +01001472 .size = sizeof(u32), .align = sizeof(u32),
1473 .active = fpregs_active, .get = fpregs_get, .set = fpregs_set
1474 },
1475 [REGSET_XFP] = {
1476 .core_note_type = NT_PRXFPREG,
Roland McGrath1f465f42008-05-09 15:43:44 -07001477 .n = sizeof(struct user32_fxsr_struct) / sizeof(u32),
Roland McGrath070459d2008-01-30 13:31:53 +01001478 .size = sizeof(u32), .align = sizeof(u32),
1479 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1480 },
1481 [REGSET_TLS] = {
Roland McGrathbb616822008-01-30 13:31:56 +01001482 .core_note_type = NT_386_TLS,
Roland McGrath070459d2008-01-30 13:31:53 +01001483 .n = GDT_ENTRY_TLS_ENTRIES, .bias = GDT_ENTRY_TLS_MIN,
1484 .size = sizeof(struct user_desc),
1485 .align = sizeof(struct user_desc),
1486 .active = regset_tls_active,
1487 .get = regset_tls_get, .set = regset_tls_set
1488 },
Roland McGrath325af5f2008-08-08 15:58:39 -07001489 [REGSET_IOPERM32] = {
1490 .core_note_type = NT_386_IOPERM,
1491 .n = IO_BITMAP_BYTES / sizeof(u32),
1492 .size = sizeof(u32), .align = sizeof(u32),
1493 .active = ioperm_active, .get = ioperm_get
1494 },
Roland McGrath070459d2008-01-30 13:31:53 +01001495};
1496
1497static const struct user_regset_view user_x86_32_view = {
1498 .name = "i386", .e_machine = EM_386,
1499 .regsets = x86_32_regsets, .n = ARRAY_SIZE(x86_32_regsets)
1500};
1501#endif
1502
1503const struct user_regset_view *task_user_regset_view(struct task_struct *task)
1504{
1505#ifdef CONFIG_IA32_EMULATION
1506 if (test_tsk_thread_flag(task, TIF_IA32))
1507#endif
1508#if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1509 return &user_x86_32_view;
1510#endif
1511#ifdef CONFIG_X86_64
1512 return &user_x86_64_view;
1513#endif
1514}
1515
Srinivasa Dsda654b72008-09-23 15:23:52 +05301516void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
1517 int error_code, int si_code)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518{
1519 struct siginfo info;
1520
1521 tsk->thread.trap_no = 1;
1522 tsk->thread.error_code = error_code;
1523
1524 memset(&info, 0, sizeof(info));
1525 info.si_signo = SIGTRAP;
Srinivasa Dsda654b72008-09-23 15:23:52 +05301526 info.si_code = si_code;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001527
H. Peter Anvin65ea5b02008-01-30 13:30:56 +01001528 /* User-mode ip? */
1529 info.si_addr = user_mode_vm(regs) ? (void __user *) regs->ip : NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001530
Simon Arlott27b46d72007-10-20 01:13:56 +02001531 /* Send us the fake SIGTRAP */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001532 force_sig_info(SIGTRAP, &info, tsk);
1533}
1534
Roland McGrath86976cd2008-01-30 13:31:01 +01001535
Roland McGrathd4d67152008-07-09 02:38:07 -07001536#ifdef CONFIG_X86_32
1537# define IS_IA32 1
1538#elif defined CONFIG_IA32_EMULATION
1539# define IS_IA32 test_thread_flag(TIF_IA32)
1540#else
1541# define IS_IA32 0
1542#endif
1543
1544/*
1545 * We must return the syscall number to actually look up in the table.
1546 * This can be -1L to skip running any syscall at all.
1547 */
1548asmregparm long syscall_trace_enter(struct pt_regs *regs)
Roland McGrath86976cd2008-01-30 13:31:01 +01001549{
Roland McGrathd4d67152008-07-09 02:38:07 -07001550 long ret = 0;
1551
Roland McGrath380fdd72008-07-09 02:39:29 -07001552 /*
1553 * If we stepped into a sysenter/syscall insn, it trapped in
1554 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
1555 * If user-mode had set TF itself, then it's still clear from
1556 * do_debug() and we need to set it again to restore the user
1557 * state. If we entered on the slow path, TF was already set.
1558 */
1559 if (test_thread_flag(TIF_SINGLESTEP))
1560 regs->flags |= X86_EFLAGS_TF;
1561
Roland McGrath86976cd2008-01-30 13:31:01 +01001562 /* do the secure computing check first */
1563 secure_computing(regs->orig_ax);
1564
Roland McGrathd4d67152008-07-09 02:38:07 -07001565 if (unlikely(test_thread_flag(TIF_SYSCALL_EMU)))
1566 ret = -1L;
1567
Roland McGratheeea3c32008-03-16 23:36:28 -07001568 if ((ret || test_thread_flag(TIF_SYSCALL_TRACE)) &&
1569 tracehook_report_syscall_entry(regs))
1570 ret = -1L;
Roland McGrath86976cd2008-01-30 13:31:01 +01001571
1572 if (unlikely(current->audit_context)) {
Roland McGrathd4d67152008-07-09 02:38:07 -07001573 if (IS_IA32)
Roland McGrath86976cd2008-01-30 13:31:01 +01001574 audit_syscall_entry(AUDIT_ARCH_I386,
1575 regs->orig_ax,
1576 regs->bx, regs->cx,
1577 regs->dx, regs->si);
Roland McGrathd4d67152008-07-09 02:38:07 -07001578#ifdef CONFIG_X86_64
1579 else
Roland McGrath86976cd2008-01-30 13:31:01 +01001580 audit_syscall_entry(AUDIT_ARCH_X86_64,
1581 regs->orig_ax,
1582 regs->di, regs->si,
1583 regs->dx, regs->r10);
Roland McGrathd4d67152008-07-09 02:38:07 -07001584#endif
Roland McGrath86976cd2008-01-30 13:31:01 +01001585 }
Roland McGrathd4d67152008-07-09 02:38:07 -07001586
1587 return ret ?: regs->orig_ax;
Roland McGrath86976cd2008-01-30 13:31:01 +01001588}
1589
Roland McGrathd4d67152008-07-09 02:38:07 -07001590asmregparm void syscall_trace_leave(struct pt_regs *regs)
Roland McGrath86976cd2008-01-30 13:31:01 +01001591{
1592 if (unlikely(current->audit_context))
1593 audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax);
1594
Roland McGrathd4d67152008-07-09 02:38:07 -07001595 if (test_thread_flag(TIF_SYSCALL_TRACE))
Roland McGratheeea3c32008-03-16 23:36:28 -07001596 tracehook_report_syscall_exit(regs, 0);
Roland McGrath86976cd2008-01-30 13:31:01 +01001597
Roland McGrathd4d67152008-07-09 02:38:07 -07001598 /*
1599 * If TIF_SYSCALL_EMU is set, we only get here because of
1600 * TIF_SINGLESTEP (i.e. this is PTRACE_SYSEMU_SINGLESTEP).
1601 * We already reported this syscall instruction in
1602 * syscall_trace_enter(), so don't do any more now.
1603 */
1604 if (unlikely(test_thread_flag(TIF_SYSCALL_EMU)))
1605 return;
1606
1607 /*
1608 * If we are single-stepping, synthesize a trap to follow the
1609 * system call instruction.
1610 */
1611 if (test_thread_flag(TIF_SINGLESTEP) &&
Roland McGratheeea3c32008-03-16 23:36:28 -07001612 tracehook_consider_fatal_signal(current, SIGTRAP, SIG_DFL))
Srinivasa Dsda654b72008-09-23 15:23:52 +05301613 send_sigtrap(current, regs, 0, TRAP_BRKPT);
Roland McGrathd4d67152008-07-09 02:38:07 -07001614}