Merge branch 'tracing/hw-breakpoints' into perf/core
[linux-2.6/linux-2.6-openrd.git] / arch / x86 / kernel / ptrace.c
blobb25f8947ed7aefd4e885d0820daaf764bb19545b
1 /* By Ross Biro 1/23/92 */
2 /*
3 * Pentium III FXSR, SSE support
4 * Gareth Hughes <gareth@valinux.com>, May 2000
6 * BTS tracing
7 * Markus Metzger <markus.t.metzger@intel.com>, Dec 2007
8 */
10 #include <linux/kernel.h>
11 #include <linux/sched.h>
12 #include <linux/mm.h>
13 #include <linux/smp.h>
14 #include <linux/errno.h>
15 #include <linux/ptrace.h>
16 #include <linux/regset.h>
17 #include <linux/tracehook.h>
18 #include <linux/user.h>
19 #include <linux/elf.h>
20 #include <linux/security.h>
21 #include <linux/audit.h>
22 #include <linux/seccomp.h>
23 #include <linux/signal.h>
24 #include <linux/workqueue.h>
25 #include <linux/perf_event.h>
26 #include <linux/hw_breakpoint.h>
28 #include <asm/uaccess.h>
29 #include <asm/pgtable.h>
30 #include <asm/system.h>
31 #include <asm/processor.h>
32 #include <asm/i387.h>
33 #include <asm/debugreg.h>
34 #include <asm/ldt.h>
35 #include <asm/desc.h>
36 #include <asm/prctl.h>
37 #include <asm/proto.h>
38 #include <asm/ds.h>
39 #include <asm/hw_breakpoint.h>
41 #include "tls.h"
43 #define CREATE_TRACE_POINTS
44 #include <trace/events/syscalls.h>
46 enum x86_regset {
47 REGSET_GENERAL,
48 REGSET_FP,
49 REGSET_XFP,
50 REGSET_IOPERM64 = REGSET_XFP,
51 REGSET_TLS,
52 REGSET_IOPERM32,
55 struct pt_regs_offset {
56 const char *name;
57 int offset;
60 #define REG_OFFSET_NAME(r) {.name = #r, .offset = offsetof(struct pt_regs, r)}
61 #define REG_OFFSET_END {.name = NULL, .offset = 0}
63 static const struct pt_regs_offset regoffset_table[] = {
64 #ifdef CONFIG_X86_64
65 REG_OFFSET_NAME(r15),
66 REG_OFFSET_NAME(r14),
67 REG_OFFSET_NAME(r13),
68 REG_OFFSET_NAME(r12),
69 REG_OFFSET_NAME(r11),
70 REG_OFFSET_NAME(r10),
71 REG_OFFSET_NAME(r9),
72 REG_OFFSET_NAME(r8),
73 #endif
74 REG_OFFSET_NAME(bx),
75 REG_OFFSET_NAME(cx),
76 REG_OFFSET_NAME(dx),
77 REG_OFFSET_NAME(si),
78 REG_OFFSET_NAME(di),
79 REG_OFFSET_NAME(bp),
80 REG_OFFSET_NAME(ax),
81 #ifdef CONFIG_X86_32
82 REG_OFFSET_NAME(ds),
83 REG_OFFSET_NAME(es),
84 REG_OFFSET_NAME(fs),
85 REG_OFFSET_NAME(gs),
86 #endif
87 REG_OFFSET_NAME(orig_ax),
88 REG_OFFSET_NAME(ip),
89 REG_OFFSET_NAME(cs),
90 REG_OFFSET_NAME(flags),
91 REG_OFFSET_NAME(sp),
92 REG_OFFSET_NAME(ss),
93 REG_OFFSET_END,
96 /**
97 * regs_query_register_offset() - query register offset from its name
98 * @name: the name of a register
100 * regs_query_register_offset() returns the offset of a register in struct
101 * pt_regs from its name. If the name is invalid, this returns -EINVAL;
103 int regs_query_register_offset(const char *name)
105 const struct pt_regs_offset *roff;
106 for (roff = regoffset_table; roff->name != NULL; roff++)
107 if (!strcmp(roff->name, name))
108 return roff->offset;
109 return -EINVAL;
113 * regs_query_register_name() - query register name from its offset
114 * @offset: the offset of a register in struct pt_regs.
116 * regs_query_register_name() returns the name of a register from its
117 * offset in struct pt_regs. If the @offset is invalid, this returns NULL;
119 const char *regs_query_register_name(unsigned int offset)
121 const struct pt_regs_offset *roff;
122 for (roff = regoffset_table; roff->name != NULL; roff++)
123 if (roff->offset == offset)
124 return roff->name;
125 return NULL;
128 static const int arg_offs_table[] = {
129 #ifdef CONFIG_X86_32
130 [0] = offsetof(struct pt_regs, ax),
131 [1] = offsetof(struct pt_regs, dx),
132 [2] = offsetof(struct pt_regs, cx)
133 #else /* CONFIG_X86_64 */
134 [0] = offsetof(struct pt_regs, di),
135 [1] = offsetof(struct pt_regs, si),
136 [2] = offsetof(struct pt_regs, dx),
137 [3] = offsetof(struct pt_regs, cx),
138 [4] = offsetof(struct pt_regs, r8),
139 [5] = offsetof(struct pt_regs, r9)
140 #endif
144 * regs_get_argument_nth() - get Nth argument at function call
145 * @regs: pt_regs which contains registers at function entry.
146 * @n: argument number.
148 * regs_get_argument_nth() returns @n th argument of a function call.
149 * Since usually the kernel stack will be changed right after function entry,
150 * you must use this at function entry. If the @n th entry is NOT in the
151 * kernel stack or pt_regs, this returns 0.
153 unsigned long regs_get_argument_nth(struct pt_regs *regs, unsigned int n)
155 if (n < ARRAY_SIZE(arg_offs_table))
156 return *(unsigned long *)((char *)regs + arg_offs_table[n]);
157 else {
159 * The typical case: arg n is on the stack.
160 * (Note: stack[0] = return address, so skip it)
162 n -= ARRAY_SIZE(arg_offs_table);
163 return regs_get_kernel_stack_nth(regs, 1 + n);
168 * does not yet catch signals sent when the child dies.
169 * in exit.c or in signal.c.
173 * Determines which flags the user has access to [1 = access, 0 = no access].
175 #define FLAG_MASK_32 ((unsigned long) \
176 (X86_EFLAGS_CF | X86_EFLAGS_PF | \
177 X86_EFLAGS_AF | X86_EFLAGS_ZF | \
178 X86_EFLAGS_SF | X86_EFLAGS_TF | \
179 X86_EFLAGS_DF | X86_EFLAGS_OF | \
180 X86_EFLAGS_RF | X86_EFLAGS_AC))
183 * Determines whether a value may be installed in a segment register.
185 static inline bool invalid_selector(u16 value)
187 return unlikely(value != 0 && (value & SEGMENT_RPL_MASK) != USER_RPL);
190 #ifdef CONFIG_X86_32
192 #define FLAG_MASK FLAG_MASK_32
194 static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long regno)
196 BUILD_BUG_ON(offsetof(struct pt_regs, bx) != 0);
197 return &regs->bx + (regno >> 2);
200 static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
203 * Returning the value truncates it to 16 bits.
205 unsigned int retval;
206 if (offset != offsetof(struct user_regs_struct, gs))
207 retval = *pt_regs_access(task_pt_regs(task), offset);
208 else {
209 if (task == current)
210 retval = get_user_gs(task_pt_regs(task));
211 else
212 retval = task_user_gs(task);
214 return retval;
217 static int set_segment_reg(struct task_struct *task,
218 unsigned long offset, u16 value)
221 * The value argument was already truncated to 16 bits.
223 if (invalid_selector(value))
224 return -EIO;
227 * For %cs and %ss we cannot permit a null selector.
228 * We can permit a bogus selector as long as it has USER_RPL.
229 * Null selectors are fine for other segment registers, but
230 * we will never get back to user mode with invalid %cs or %ss
231 * and will take the trap in iret instead. Much code relies
232 * on user_mode() to distinguish a user trap frame (which can
233 * safely use invalid selectors) from a kernel trap frame.
235 switch (offset) {
236 case offsetof(struct user_regs_struct, cs):
237 case offsetof(struct user_regs_struct, ss):
238 if (unlikely(value == 0))
239 return -EIO;
241 default:
242 *pt_regs_access(task_pt_regs(task), offset) = value;
243 break;
245 case offsetof(struct user_regs_struct, gs):
246 if (task == current)
247 set_user_gs(task_pt_regs(task), value);
248 else
249 task_user_gs(task) = value;
252 return 0;
255 #else /* CONFIG_X86_64 */
257 #define FLAG_MASK (FLAG_MASK_32 | X86_EFLAGS_NT)
259 static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long offset)
261 BUILD_BUG_ON(offsetof(struct pt_regs, r15) != 0);
262 return &regs->r15 + (offset / sizeof(regs->r15));
265 static u16 get_segment_reg(struct task_struct *task, unsigned long offset)
268 * Returning the value truncates it to 16 bits.
270 unsigned int seg;
272 switch (offset) {
273 case offsetof(struct user_regs_struct, fs):
274 if (task == current) {
275 /* Older gas can't assemble movq %?s,%r?? */
276 asm("movl %%fs,%0" : "=r" (seg));
277 return seg;
279 return task->thread.fsindex;
280 case offsetof(struct user_regs_struct, gs):
281 if (task == current) {
282 asm("movl %%gs,%0" : "=r" (seg));
283 return seg;
285 return task->thread.gsindex;
286 case offsetof(struct user_regs_struct, ds):
287 if (task == current) {
288 asm("movl %%ds,%0" : "=r" (seg));
289 return seg;
291 return task->thread.ds;
292 case offsetof(struct user_regs_struct, es):
293 if (task == current) {
294 asm("movl %%es,%0" : "=r" (seg));
295 return seg;
297 return task->thread.es;
299 case offsetof(struct user_regs_struct, cs):
300 case offsetof(struct user_regs_struct, ss):
301 break;
303 return *pt_regs_access(task_pt_regs(task), offset);
306 static int set_segment_reg(struct task_struct *task,
307 unsigned long offset, u16 value)
310 * The value argument was already truncated to 16 bits.
312 if (invalid_selector(value))
313 return -EIO;
315 switch (offset) {
316 case offsetof(struct user_regs_struct,fs):
318 * If this is setting fs as for normal 64-bit use but
319 * setting fs_base has implicitly changed it, leave it.
321 if ((value == FS_TLS_SEL && task->thread.fsindex == 0 &&
322 task->thread.fs != 0) ||
323 (value == 0 && task->thread.fsindex == FS_TLS_SEL &&
324 task->thread.fs == 0))
325 break;
326 task->thread.fsindex = value;
327 if (task == current)
328 loadsegment(fs, task->thread.fsindex);
329 break;
330 case offsetof(struct user_regs_struct,gs):
332 * If this is setting gs as for normal 64-bit use but
333 * setting gs_base has implicitly changed it, leave it.
335 if ((value == GS_TLS_SEL && task->thread.gsindex == 0 &&
336 task->thread.gs != 0) ||
337 (value == 0 && task->thread.gsindex == GS_TLS_SEL &&
338 task->thread.gs == 0))
339 break;
340 task->thread.gsindex = value;
341 if (task == current)
342 load_gs_index(task->thread.gsindex);
343 break;
344 case offsetof(struct user_regs_struct,ds):
345 task->thread.ds = value;
346 if (task == current)
347 loadsegment(ds, task->thread.ds);
348 break;
349 case offsetof(struct user_regs_struct,es):
350 task->thread.es = value;
351 if (task == current)
352 loadsegment(es, task->thread.es);
353 break;
356 * Can't actually change these in 64-bit mode.
358 case offsetof(struct user_regs_struct,cs):
359 if (unlikely(value == 0))
360 return -EIO;
361 #ifdef CONFIG_IA32_EMULATION
362 if (test_tsk_thread_flag(task, TIF_IA32))
363 task_pt_regs(task)->cs = value;
364 #endif
365 break;
366 case offsetof(struct user_regs_struct,ss):
367 if (unlikely(value == 0))
368 return -EIO;
369 #ifdef CONFIG_IA32_EMULATION
370 if (test_tsk_thread_flag(task, TIF_IA32))
371 task_pt_regs(task)->ss = value;
372 #endif
373 break;
376 return 0;
379 #endif /* CONFIG_X86_32 */
381 static unsigned long get_flags(struct task_struct *task)
383 unsigned long retval = task_pt_regs(task)->flags;
386 * If the debugger set TF, hide it from the readout.
388 if (test_tsk_thread_flag(task, TIF_FORCED_TF))
389 retval &= ~X86_EFLAGS_TF;
391 return retval;
394 static int set_flags(struct task_struct *task, unsigned long value)
396 struct pt_regs *regs = task_pt_regs(task);
399 * If the user value contains TF, mark that
400 * it was not "us" (the debugger) that set it.
401 * If not, make sure it stays set if we had.
403 if (value & X86_EFLAGS_TF)
404 clear_tsk_thread_flag(task, TIF_FORCED_TF);
405 else if (test_tsk_thread_flag(task, TIF_FORCED_TF))
406 value |= X86_EFLAGS_TF;
408 regs->flags = (regs->flags & ~FLAG_MASK) | (value & FLAG_MASK);
410 return 0;
413 static int putreg(struct task_struct *child,
414 unsigned long offset, unsigned long value)
416 switch (offset) {
417 case offsetof(struct user_regs_struct, cs):
418 case offsetof(struct user_regs_struct, ds):
419 case offsetof(struct user_regs_struct, es):
420 case offsetof(struct user_regs_struct, fs):
421 case offsetof(struct user_regs_struct, gs):
422 case offsetof(struct user_regs_struct, ss):
423 return set_segment_reg(child, offset, value);
425 case offsetof(struct user_regs_struct, flags):
426 return set_flags(child, value);
428 #ifdef CONFIG_X86_64
429 case offsetof(struct user_regs_struct,fs_base):
430 if (value >= TASK_SIZE_OF(child))
431 return -EIO;
433 * When changing the segment base, use do_arch_prctl
434 * to set either thread.fs or thread.fsindex and the
435 * corresponding GDT slot.
437 if (child->thread.fs != value)
438 return do_arch_prctl(child, ARCH_SET_FS, value);
439 return 0;
440 case offsetof(struct user_regs_struct,gs_base):
442 * Exactly the same here as the %fs handling above.
444 if (value >= TASK_SIZE_OF(child))
445 return -EIO;
446 if (child->thread.gs != value)
447 return do_arch_prctl(child, ARCH_SET_GS, value);
448 return 0;
449 #endif
452 *pt_regs_access(task_pt_regs(child), offset) = value;
453 return 0;
456 static unsigned long getreg(struct task_struct *task, unsigned long offset)
458 switch (offset) {
459 case offsetof(struct user_regs_struct, cs):
460 case offsetof(struct user_regs_struct, ds):
461 case offsetof(struct user_regs_struct, es):
462 case offsetof(struct user_regs_struct, fs):
463 case offsetof(struct user_regs_struct, gs):
464 case offsetof(struct user_regs_struct, ss):
465 return get_segment_reg(task, offset);
467 case offsetof(struct user_regs_struct, flags):
468 return get_flags(task);
470 #ifdef CONFIG_X86_64
471 case offsetof(struct user_regs_struct, fs_base): {
473 * do_arch_prctl may have used a GDT slot instead of
474 * the MSR. To userland, it appears the same either
475 * way, except the %fs segment selector might not be 0.
477 unsigned int seg = task->thread.fsindex;
478 if (task->thread.fs != 0)
479 return task->thread.fs;
480 if (task == current)
481 asm("movl %%fs,%0" : "=r" (seg));
482 if (seg != FS_TLS_SEL)
483 return 0;
484 return get_desc_base(&task->thread.tls_array[FS_TLS]);
486 case offsetof(struct user_regs_struct, gs_base): {
488 * Exactly the same here as the %fs handling above.
490 unsigned int seg = task->thread.gsindex;
491 if (task->thread.gs != 0)
492 return task->thread.gs;
493 if (task == current)
494 asm("movl %%gs,%0" : "=r" (seg));
495 if (seg != GS_TLS_SEL)
496 return 0;
497 return get_desc_base(&task->thread.tls_array[GS_TLS]);
499 #endif
502 return *pt_regs_access(task_pt_regs(task), offset);
505 static int genregs_get(struct task_struct *target,
506 const struct user_regset *regset,
507 unsigned int pos, unsigned int count,
508 void *kbuf, void __user *ubuf)
510 if (kbuf) {
511 unsigned long *k = kbuf;
512 while (count > 0) {
513 *k++ = getreg(target, pos);
514 count -= sizeof(*k);
515 pos += sizeof(*k);
517 } else {
518 unsigned long __user *u = ubuf;
519 while (count > 0) {
520 if (__put_user(getreg(target, pos), u++))
521 return -EFAULT;
522 count -= sizeof(*u);
523 pos += sizeof(*u);
527 return 0;
530 static int genregs_set(struct task_struct *target,
531 const struct user_regset *regset,
532 unsigned int pos, unsigned int count,
533 const void *kbuf, const void __user *ubuf)
535 int ret = 0;
536 if (kbuf) {
537 const unsigned long *k = kbuf;
538 while (count > 0 && !ret) {
539 ret = putreg(target, pos, *k++);
540 count -= sizeof(*k);
541 pos += sizeof(*k);
543 } else {
544 const unsigned long __user *u = ubuf;
545 while (count > 0 && !ret) {
546 unsigned long word;
547 ret = __get_user(word, u++);
548 if (ret)
549 break;
550 ret = putreg(target, pos, word);
551 count -= sizeof(*u);
552 pos += sizeof(*u);
555 return ret;
558 static void ptrace_triggered(struct perf_event *bp, void *data)
560 int i;
561 struct thread_struct *thread = &(current->thread);
564 * Store in the virtual DR6 register the fact that the breakpoint
565 * was hit so the thread's debugger will see it.
567 for (i = 0; i < HBP_NUM; i++) {
568 if (thread->ptrace_bps[i] == bp)
569 break;
572 thread->debugreg6 |= (DR_TRAP0 << i);
576 * Walk through every ptrace breakpoints for this thread and
577 * build the dr7 value on top of their attributes.
580 static unsigned long ptrace_get_dr7(struct perf_event *bp[])
582 int i;
583 int dr7 = 0;
584 struct arch_hw_breakpoint *info;
586 for (i = 0; i < HBP_NUM; i++) {
587 if (bp[i] && !bp[i]->attr.disabled) {
588 info = counter_arch_bp(bp[i]);
589 dr7 |= encode_dr7(i, info->len, info->type);
593 return dr7;
597 * Handle ptrace writes to debug register 7.
599 static int ptrace_write_dr7(struct task_struct *tsk, unsigned long data)
601 struct thread_struct *thread = &(tsk->thread);
602 unsigned long old_dr7;
603 int i, orig_ret = 0, rc = 0;
604 int enabled, second_pass = 0;
605 unsigned len, type;
606 int gen_len, gen_type;
607 struct perf_event *bp;
609 data &= ~DR_CONTROL_RESERVED;
610 old_dr7 = ptrace_get_dr7(thread->ptrace_bps);
611 restore:
613 * Loop through all the hardware breakpoints, making the
614 * appropriate changes to each.
616 for (i = 0; i < HBP_NUM; i++) {
617 enabled = decode_dr7(data, i, &len, &type);
618 bp = thread->ptrace_bps[i];
620 if (!enabled) {
621 if (bp) {
623 * Don't unregister the breakpoints right-away,
624 * unless all register_user_hw_breakpoint()
625 * requests have succeeded. This prevents
626 * any window of opportunity for debug
627 * register grabbing by other users.
629 if (!second_pass)
630 continue;
631 thread->ptrace_bps[i] = NULL;
632 unregister_hw_breakpoint(bp);
634 continue;
638 * We shoud have at least an inactive breakpoint at this
639 * slot. It means the user is writing dr7 without having
640 * written the address register first
642 if (!bp) {
643 rc = -EINVAL;
644 break;
647 rc = arch_bp_generic_fields(len, type, &gen_len, &gen_type);
648 if (rc)
649 break;
652 * This is a temporary thing as bp is unregistered/registered
653 * to simulate modification
655 bp = modify_user_hw_breakpoint(bp, bp->attr.bp_addr, gen_len,
656 gen_type, bp->callback,
657 tsk, true);
658 thread->ptrace_bps[i] = NULL;
660 if (!bp) { /* incorrect bp, or we have a bug in bp API */
661 rc = -EINVAL;
662 break;
664 if (IS_ERR(bp)) {
665 rc = PTR_ERR(bp);
666 bp = NULL;
667 break;
669 thread->ptrace_bps[i] = bp;
672 * Make a second pass to free the remaining unused breakpoints
673 * or to restore the original breakpoints if an error occurred.
675 if (!second_pass) {
676 second_pass = 1;
677 if (rc < 0) {
678 orig_ret = rc;
679 data = old_dr7;
681 goto restore;
683 return ((orig_ret < 0) ? orig_ret : rc);
687 * Handle PTRACE_PEEKUSR calls for the debug register area.
689 static unsigned long ptrace_get_debugreg(struct task_struct *tsk, int n)
691 struct thread_struct *thread = &(tsk->thread);
692 unsigned long val = 0;
694 if (n < HBP_NUM) {
695 struct perf_event *bp;
696 bp = thread->ptrace_bps[n];
697 if (!bp)
698 return 0;
699 val = bp->hw.info.address;
700 } else if (n == 6) {
701 val = thread->debugreg6;
702 } else if (n == 7) {
703 val = ptrace_get_dr7(thread->ptrace_bps);
705 return val;
708 static int ptrace_set_breakpoint_addr(struct task_struct *tsk, int nr,
709 unsigned long addr)
711 struct perf_event *bp;
712 struct thread_struct *t = &tsk->thread;
714 if (!t->ptrace_bps[nr]) {
716 * Put stub len and type to register (reserve) an inactive but
717 * correct bp
719 bp = register_user_hw_breakpoint(addr, HW_BREAKPOINT_LEN_1,
720 HW_BREAKPOINT_W,
721 ptrace_triggered, tsk,
722 false);
723 } else {
724 bp = t->ptrace_bps[nr];
725 t->ptrace_bps[nr] = NULL;
726 bp = modify_user_hw_breakpoint(bp, addr, bp->attr.bp_len,
727 bp->attr.bp_type,
728 bp->callback,
729 tsk,
730 bp->attr.disabled);
733 if (!bp)
734 return -EIO;
736 * CHECKME: the previous code returned -EIO if the addr wasn't a
737 * valid task virtual addr. The new one will return -EINVAL in this
738 * case.
739 * -EINVAL may be what we want for in-kernel breakpoints users, but
740 * -EIO looks better for ptrace, since we refuse a register writing
741 * for the user. And anyway this is the previous behaviour.
743 if (IS_ERR(bp))
744 return PTR_ERR(bp);
746 t->ptrace_bps[nr] = bp;
748 return 0;
752 * Handle PTRACE_POKEUSR calls for the debug register area.
754 int ptrace_set_debugreg(struct task_struct *tsk, int n, unsigned long val)
756 struct thread_struct *thread = &(tsk->thread);
757 int rc = 0;
759 /* There are no DR4 or DR5 registers */
760 if (n == 4 || n == 5)
761 return -EIO;
763 if (n == 6) {
764 thread->debugreg6 = val;
765 goto ret_path;
767 if (n < HBP_NUM) {
768 rc = ptrace_set_breakpoint_addr(tsk, n, val);
769 if (rc)
770 return rc;
772 /* All that's left is DR7 */
773 if (n == 7)
774 rc = ptrace_write_dr7(tsk, val);
776 ret_path:
777 return rc;
781 * These access the current or another (stopped) task's io permission
782 * bitmap for debugging or core dump.
784 static int ioperm_active(struct task_struct *target,
785 const struct user_regset *regset)
787 return target->thread.io_bitmap_max / regset->size;
790 static int ioperm_get(struct task_struct *target,
791 const struct user_regset *regset,
792 unsigned int pos, unsigned int count,
793 void *kbuf, void __user *ubuf)
795 if (!target->thread.io_bitmap_ptr)
796 return -ENXIO;
798 return user_regset_copyout(&pos, &count, &kbuf, &ubuf,
799 target->thread.io_bitmap_ptr,
800 0, IO_BITMAP_BYTES);
803 #ifdef CONFIG_X86_PTRACE_BTS
805 * A branch trace store context.
807 * Contexts may only be installed by ptrace_bts_config() and only for
808 * ptraced tasks.
810 * Contexts are destroyed when the tracee is detached from the tracer.
811 * The actual destruction work requires interrupts enabled, so the
812 * work is deferred and will be scheduled during __ptrace_unlink().
814 * Contexts hold an additional task_struct reference on the traced
815 * task, as well as a reference on the tracer's mm.
817 * Ptrace already holds a task_struct for the duration of ptrace operations,
818 * but since destruction is deferred, it may be executed after both
819 * tracer and tracee exited.
821 struct bts_context {
822 /* The branch trace handle. */
823 struct bts_tracer *tracer;
825 /* The buffer used to store the branch trace and its size. */
826 void *buffer;
827 unsigned int size;
829 /* The mm that paid for the above buffer. */
830 struct mm_struct *mm;
832 /* The task this context belongs to. */
833 struct task_struct *task;
835 /* The signal to send on a bts buffer overflow. */
836 unsigned int bts_ovfl_signal;
838 /* The work struct to destroy a context. */
839 struct work_struct work;
842 static int alloc_bts_buffer(struct bts_context *context, unsigned int size)
844 void *buffer = NULL;
845 int err = -ENOMEM;
847 err = account_locked_memory(current->mm, current->signal->rlim, size);
848 if (err < 0)
849 return err;
851 buffer = kzalloc(size, GFP_KERNEL);
852 if (!buffer)
853 goto out_refund;
855 context->buffer = buffer;
856 context->size = size;
857 context->mm = get_task_mm(current);
859 return 0;
861 out_refund:
862 refund_locked_memory(current->mm, size);
863 return err;
866 static inline void free_bts_buffer(struct bts_context *context)
868 if (!context->buffer)
869 return;
871 kfree(context->buffer);
872 context->buffer = NULL;
874 refund_locked_memory(context->mm, context->size);
875 context->size = 0;
877 mmput(context->mm);
878 context->mm = NULL;
881 static void free_bts_context_work(struct work_struct *w)
883 struct bts_context *context;
885 context = container_of(w, struct bts_context, work);
887 ds_release_bts(context->tracer);
888 put_task_struct(context->task);
889 free_bts_buffer(context);
890 kfree(context);
893 static inline void free_bts_context(struct bts_context *context)
895 INIT_WORK(&context->work, free_bts_context_work);
896 schedule_work(&context->work);
899 static inline struct bts_context *alloc_bts_context(struct task_struct *task)
901 struct bts_context *context = kzalloc(sizeof(*context), GFP_KERNEL);
902 if (context) {
903 context->task = task;
904 task->bts = context;
906 get_task_struct(task);
909 return context;
912 static int ptrace_bts_read_record(struct task_struct *child, size_t index,
913 struct bts_struct __user *out)
915 struct bts_context *context;
916 const struct bts_trace *trace;
917 struct bts_struct bts;
918 const unsigned char *at;
919 int error;
921 context = child->bts;
922 if (!context)
923 return -ESRCH;
925 trace = ds_read_bts(context->tracer);
926 if (!trace)
927 return -ESRCH;
929 at = trace->ds.top - ((index + 1) * trace->ds.size);
930 if ((void *)at < trace->ds.begin)
931 at += (trace->ds.n * trace->ds.size);
933 if (!trace->read)
934 return -EOPNOTSUPP;
936 error = trace->read(context->tracer, at, &bts);
937 if (error < 0)
938 return error;
940 if (copy_to_user(out, &bts, sizeof(bts)))
941 return -EFAULT;
943 return sizeof(bts);
946 static int ptrace_bts_drain(struct task_struct *child,
947 long size,
948 struct bts_struct __user *out)
950 struct bts_context *context;
951 const struct bts_trace *trace;
952 const unsigned char *at;
953 int error, drained = 0;
955 context = child->bts;
956 if (!context)
957 return -ESRCH;
959 trace = ds_read_bts(context->tracer);
960 if (!trace)
961 return -ESRCH;
963 if (!trace->read)
964 return -EOPNOTSUPP;
966 if (size < (trace->ds.top - trace->ds.begin))
967 return -EIO;
969 for (at = trace->ds.begin; (void *)at < trace->ds.top;
970 out++, drained++, at += trace->ds.size) {
971 struct bts_struct bts;
973 error = trace->read(context->tracer, at, &bts);
974 if (error < 0)
975 return error;
977 if (copy_to_user(out, &bts, sizeof(bts)))
978 return -EFAULT;
981 memset(trace->ds.begin, 0, trace->ds.n * trace->ds.size);
983 error = ds_reset_bts(context->tracer);
984 if (error < 0)
985 return error;
987 return drained;
990 static int ptrace_bts_config(struct task_struct *child,
991 long cfg_size,
992 const struct ptrace_bts_config __user *ucfg)
994 struct bts_context *context;
995 struct ptrace_bts_config cfg;
996 unsigned int flags = 0;
998 if (cfg_size < sizeof(cfg))
999 return -EIO;
1001 if (copy_from_user(&cfg, ucfg, sizeof(cfg)))
1002 return -EFAULT;
1004 context = child->bts;
1005 if (!context)
1006 context = alloc_bts_context(child);
1007 if (!context)
1008 return -ENOMEM;
1010 if (cfg.flags & PTRACE_BTS_O_SIGNAL) {
1011 if (!cfg.signal)
1012 return -EINVAL;
1014 return -EOPNOTSUPP;
1015 context->bts_ovfl_signal = cfg.signal;
1018 ds_release_bts(context->tracer);
1019 context->tracer = NULL;
1021 if ((cfg.flags & PTRACE_BTS_O_ALLOC) && (cfg.size != context->size)) {
1022 int err;
1024 free_bts_buffer(context);
1025 if (!cfg.size)
1026 return 0;
1028 err = alloc_bts_buffer(context, cfg.size);
1029 if (err < 0)
1030 return err;
1033 if (cfg.flags & PTRACE_BTS_O_TRACE)
1034 flags |= BTS_USER;
1036 if (cfg.flags & PTRACE_BTS_O_SCHED)
1037 flags |= BTS_TIMESTAMPS;
1039 context->tracer =
1040 ds_request_bts_task(child, context->buffer, context->size,
1041 NULL, (size_t)-1, flags);
1042 if (unlikely(IS_ERR(context->tracer))) {
1043 int error = PTR_ERR(context->tracer);
1045 free_bts_buffer(context);
1046 context->tracer = NULL;
1047 return error;
1050 return sizeof(cfg);
1053 static int ptrace_bts_status(struct task_struct *child,
1054 long cfg_size,
1055 struct ptrace_bts_config __user *ucfg)
1057 struct bts_context *context;
1058 const struct bts_trace *trace;
1059 struct ptrace_bts_config cfg;
1061 context = child->bts;
1062 if (!context)
1063 return -ESRCH;
1065 if (cfg_size < sizeof(cfg))
1066 return -EIO;
1068 trace = ds_read_bts(context->tracer);
1069 if (!trace)
1070 return -ESRCH;
1072 memset(&cfg, 0, sizeof(cfg));
1073 cfg.size = trace->ds.end - trace->ds.begin;
1074 cfg.signal = context->bts_ovfl_signal;
1075 cfg.bts_size = sizeof(struct bts_struct);
1077 if (cfg.signal)
1078 cfg.flags |= PTRACE_BTS_O_SIGNAL;
1080 if (trace->ds.flags & BTS_USER)
1081 cfg.flags |= PTRACE_BTS_O_TRACE;
1083 if (trace->ds.flags & BTS_TIMESTAMPS)
1084 cfg.flags |= PTRACE_BTS_O_SCHED;
1086 if (copy_to_user(ucfg, &cfg, sizeof(cfg)))
1087 return -EFAULT;
1089 return sizeof(cfg);
1092 static int ptrace_bts_clear(struct task_struct *child)
1094 struct bts_context *context;
1095 const struct bts_trace *trace;
1097 context = child->bts;
1098 if (!context)
1099 return -ESRCH;
1101 trace = ds_read_bts(context->tracer);
1102 if (!trace)
1103 return -ESRCH;
1105 memset(trace->ds.begin, 0, trace->ds.n * trace->ds.size);
1107 return ds_reset_bts(context->tracer);
1110 static int ptrace_bts_size(struct task_struct *child)
1112 struct bts_context *context;
1113 const struct bts_trace *trace;
1115 context = child->bts;
1116 if (!context)
1117 return -ESRCH;
1119 trace = ds_read_bts(context->tracer);
1120 if (!trace)
1121 return -ESRCH;
1123 return (trace->ds.top - trace->ds.begin) / trace->ds.size;
1127 * Called from __ptrace_unlink() after the child has been moved back
1128 * to its original parent.
1130 void ptrace_bts_untrace(struct task_struct *child)
1132 if (unlikely(child->bts)) {
1133 free_bts_context(child->bts);
1134 child->bts = NULL;
1137 #endif /* CONFIG_X86_PTRACE_BTS */
1140 * Called by kernel/ptrace.c when detaching..
1142 * Make sure the single step bit is not set.
1144 void ptrace_disable(struct task_struct *child)
1146 user_disable_single_step(child);
1147 #ifdef TIF_SYSCALL_EMU
1148 clear_tsk_thread_flag(child, TIF_SYSCALL_EMU);
1149 #endif
1152 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1153 static const struct user_regset_view user_x86_32_view; /* Initialized below. */
1154 #endif
1156 long arch_ptrace(struct task_struct *child, long request, long addr, long data)
1158 int ret;
1159 unsigned long __user *datap = (unsigned long __user *)data;
1161 switch (request) {
1162 /* read the word at location addr in the USER area. */
1163 case PTRACE_PEEKUSR: {
1164 unsigned long tmp;
1166 ret = -EIO;
1167 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
1168 addr >= sizeof(struct user))
1169 break;
1171 tmp = 0; /* Default return condition */
1172 if (addr < sizeof(struct user_regs_struct))
1173 tmp = getreg(child, addr);
1174 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
1175 addr <= offsetof(struct user, u_debugreg[7])) {
1176 addr -= offsetof(struct user, u_debugreg[0]);
1177 tmp = ptrace_get_debugreg(child, addr / sizeof(data));
1179 ret = put_user(tmp, datap);
1180 break;
1183 case PTRACE_POKEUSR: /* write the word at location addr in the USER area */
1184 ret = -EIO;
1185 if ((addr & (sizeof(data) - 1)) || addr < 0 ||
1186 addr >= sizeof(struct user))
1187 break;
1189 if (addr < sizeof(struct user_regs_struct))
1190 ret = putreg(child, addr, data);
1191 else if (addr >= offsetof(struct user, u_debugreg[0]) &&
1192 addr <= offsetof(struct user, u_debugreg[7])) {
1193 addr -= offsetof(struct user, u_debugreg[0]);
1194 ret = ptrace_set_debugreg(child,
1195 addr / sizeof(data), data);
1197 break;
1199 case PTRACE_GETREGS: /* Get all gp regs from the child. */
1200 return copy_regset_to_user(child,
1201 task_user_regset_view(current),
1202 REGSET_GENERAL,
1203 0, sizeof(struct user_regs_struct),
1204 datap);
1206 case PTRACE_SETREGS: /* Set all gp regs in the child. */
1207 return copy_regset_from_user(child,
1208 task_user_regset_view(current),
1209 REGSET_GENERAL,
1210 0, sizeof(struct user_regs_struct),
1211 datap);
1213 case PTRACE_GETFPREGS: /* Get the child FPU state. */
1214 return copy_regset_to_user(child,
1215 task_user_regset_view(current),
1216 REGSET_FP,
1217 0, sizeof(struct user_i387_struct),
1218 datap);
1220 case PTRACE_SETFPREGS: /* Set the child FPU state. */
1221 return copy_regset_from_user(child,
1222 task_user_regset_view(current),
1223 REGSET_FP,
1224 0, sizeof(struct user_i387_struct),
1225 datap);
1227 #ifdef CONFIG_X86_32
1228 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
1229 return copy_regset_to_user(child, &user_x86_32_view,
1230 REGSET_XFP,
1231 0, sizeof(struct user_fxsr_struct),
1232 datap) ? -EIO : 0;
1234 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
1235 return copy_regset_from_user(child, &user_x86_32_view,
1236 REGSET_XFP,
1237 0, sizeof(struct user_fxsr_struct),
1238 datap) ? -EIO : 0;
1239 #endif
1241 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1242 case PTRACE_GET_THREAD_AREA:
1243 if (addr < 0)
1244 return -EIO;
1245 ret = do_get_thread_area(child, addr,
1246 (struct user_desc __user *) data);
1247 break;
1249 case PTRACE_SET_THREAD_AREA:
1250 if (addr < 0)
1251 return -EIO;
1252 ret = do_set_thread_area(child, addr,
1253 (struct user_desc __user *) data, 0);
1254 break;
1255 #endif
1257 #ifdef CONFIG_X86_64
1258 /* normal 64bit interface to access TLS data.
1259 Works just like arch_prctl, except that the arguments
1260 are reversed. */
1261 case PTRACE_ARCH_PRCTL:
1262 ret = do_arch_prctl(child, data, addr);
1263 break;
1264 #endif
1267 * These bits need more cooking - not enabled yet:
1269 #ifdef CONFIG_X86_PTRACE_BTS
1270 case PTRACE_BTS_CONFIG:
1271 ret = ptrace_bts_config
1272 (child, data, (struct ptrace_bts_config __user *)addr);
1273 break;
1275 case PTRACE_BTS_STATUS:
1276 ret = ptrace_bts_status
1277 (child, data, (struct ptrace_bts_config __user *)addr);
1278 break;
1280 case PTRACE_BTS_SIZE:
1281 ret = ptrace_bts_size(child);
1282 break;
1284 case PTRACE_BTS_GET:
1285 ret = ptrace_bts_read_record
1286 (child, data, (struct bts_struct __user *) addr);
1287 break;
1289 case PTRACE_BTS_CLEAR:
1290 ret = ptrace_bts_clear(child);
1291 break;
1293 case PTRACE_BTS_DRAIN:
1294 ret = ptrace_bts_drain
1295 (child, data, (struct bts_struct __user *) addr);
1296 break;
1297 #endif /* CONFIG_X86_PTRACE_BTS */
1299 default:
1300 ret = ptrace_request(child, request, addr, data);
1301 break;
1304 return ret;
1307 #ifdef CONFIG_IA32_EMULATION
1309 #include <linux/compat.h>
1310 #include <linux/syscalls.h>
1311 #include <asm/ia32.h>
1312 #include <asm/user32.h>
1314 #define R32(l,q) \
1315 case offsetof(struct user32, regs.l): \
1316 regs->q = value; break
1318 #define SEG32(rs) \
1319 case offsetof(struct user32, regs.rs): \
1320 return set_segment_reg(child, \
1321 offsetof(struct user_regs_struct, rs), \
1322 value); \
1323 break
1325 static int putreg32(struct task_struct *child, unsigned regno, u32 value)
1327 struct pt_regs *regs = task_pt_regs(child);
1329 switch (regno) {
1331 SEG32(cs);
1332 SEG32(ds);
1333 SEG32(es);
1334 SEG32(fs);
1335 SEG32(gs);
1336 SEG32(ss);
1338 R32(ebx, bx);
1339 R32(ecx, cx);
1340 R32(edx, dx);
1341 R32(edi, di);
1342 R32(esi, si);
1343 R32(ebp, bp);
1344 R32(eax, ax);
1345 R32(eip, ip);
1346 R32(esp, sp);
1348 case offsetof(struct user32, regs.orig_eax):
1350 * A 32-bit debugger setting orig_eax means to restore
1351 * the state of the task restarting a 32-bit syscall.
1352 * Make sure we interpret the -ERESTART* codes correctly
1353 * in case the task is not actually still sitting at the
1354 * exit from a 32-bit syscall with TS_COMPAT still set.
1356 regs->orig_ax = value;
1357 if (syscall_get_nr(child, regs) >= 0)
1358 task_thread_info(child)->status |= TS_COMPAT;
1359 break;
1361 case offsetof(struct user32, regs.eflags):
1362 return set_flags(child, value);
1364 case offsetof(struct user32, u_debugreg[0]) ...
1365 offsetof(struct user32, u_debugreg[7]):
1366 regno -= offsetof(struct user32, u_debugreg[0]);
1367 return ptrace_set_debugreg(child, regno / 4, value);
1369 default:
1370 if (regno > sizeof(struct user32) || (regno & 3))
1371 return -EIO;
1374 * Other dummy fields in the virtual user structure
1375 * are ignored
1377 break;
1379 return 0;
1382 #undef R32
1383 #undef SEG32
1385 #define R32(l,q) \
1386 case offsetof(struct user32, regs.l): \
1387 *val = regs->q; break
1389 #define SEG32(rs) \
1390 case offsetof(struct user32, regs.rs): \
1391 *val = get_segment_reg(child, \
1392 offsetof(struct user_regs_struct, rs)); \
1393 break
1395 static int getreg32(struct task_struct *child, unsigned regno, u32 *val)
1397 struct pt_regs *regs = task_pt_regs(child);
1399 switch (regno) {
1401 SEG32(ds);
1402 SEG32(es);
1403 SEG32(fs);
1404 SEG32(gs);
1406 R32(cs, cs);
1407 R32(ss, ss);
1408 R32(ebx, bx);
1409 R32(ecx, cx);
1410 R32(edx, dx);
1411 R32(edi, di);
1412 R32(esi, si);
1413 R32(ebp, bp);
1414 R32(eax, ax);
1415 R32(orig_eax, orig_ax);
1416 R32(eip, ip);
1417 R32(esp, sp);
1419 case offsetof(struct user32, regs.eflags):
1420 *val = get_flags(child);
1421 break;
1423 case offsetof(struct user32, u_debugreg[0]) ...
1424 offsetof(struct user32, u_debugreg[7]):
1425 regno -= offsetof(struct user32, u_debugreg[0]);
1426 *val = ptrace_get_debugreg(child, regno / 4);
1427 break;
1429 default:
1430 if (regno > sizeof(struct user32) || (regno & 3))
1431 return -EIO;
1434 * Other dummy fields in the virtual user structure
1435 * are ignored
1437 *val = 0;
1438 break;
1440 return 0;
1443 #undef R32
1444 #undef SEG32
1446 static int genregs32_get(struct task_struct *target,
1447 const struct user_regset *regset,
1448 unsigned int pos, unsigned int count,
1449 void *kbuf, void __user *ubuf)
1451 if (kbuf) {
1452 compat_ulong_t *k = kbuf;
1453 while (count > 0) {
1454 getreg32(target, pos, k++);
1455 count -= sizeof(*k);
1456 pos += sizeof(*k);
1458 } else {
1459 compat_ulong_t __user *u = ubuf;
1460 while (count > 0) {
1461 compat_ulong_t word;
1462 getreg32(target, pos, &word);
1463 if (__put_user(word, u++))
1464 return -EFAULT;
1465 count -= sizeof(*u);
1466 pos += sizeof(*u);
1470 return 0;
1473 static int genregs32_set(struct task_struct *target,
1474 const struct user_regset *regset,
1475 unsigned int pos, unsigned int count,
1476 const void *kbuf, const void __user *ubuf)
1478 int ret = 0;
1479 if (kbuf) {
1480 const compat_ulong_t *k = kbuf;
1481 while (count > 0 && !ret) {
1482 ret = putreg32(target, pos, *k++);
1483 count -= sizeof(*k);
1484 pos += sizeof(*k);
1486 } else {
1487 const compat_ulong_t __user *u = ubuf;
1488 while (count > 0 && !ret) {
1489 compat_ulong_t word;
1490 ret = __get_user(word, u++);
1491 if (ret)
1492 break;
1493 ret = putreg32(target, pos, word);
1494 count -= sizeof(*u);
1495 pos += sizeof(*u);
1498 return ret;
1501 long compat_arch_ptrace(struct task_struct *child, compat_long_t request,
1502 compat_ulong_t caddr, compat_ulong_t cdata)
1504 unsigned long addr = caddr;
1505 unsigned long data = cdata;
1506 void __user *datap = compat_ptr(data);
1507 int ret;
1508 __u32 val;
1510 switch (request) {
1511 case PTRACE_PEEKUSR:
1512 ret = getreg32(child, addr, &val);
1513 if (ret == 0)
1514 ret = put_user(val, (__u32 __user *)datap);
1515 break;
1517 case PTRACE_POKEUSR:
1518 ret = putreg32(child, addr, data);
1519 break;
1521 case PTRACE_GETREGS: /* Get all gp regs from the child. */
1522 return copy_regset_to_user(child, &user_x86_32_view,
1523 REGSET_GENERAL,
1524 0, sizeof(struct user_regs_struct32),
1525 datap);
1527 case PTRACE_SETREGS: /* Set all gp regs in the child. */
1528 return copy_regset_from_user(child, &user_x86_32_view,
1529 REGSET_GENERAL, 0,
1530 sizeof(struct user_regs_struct32),
1531 datap);
1533 case PTRACE_GETFPREGS: /* Get the child FPU state. */
1534 return copy_regset_to_user(child, &user_x86_32_view,
1535 REGSET_FP, 0,
1536 sizeof(struct user_i387_ia32_struct),
1537 datap);
1539 case PTRACE_SETFPREGS: /* Set the child FPU state. */
1540 return copy_regset_from_user(
1541 child, &user_x86_32_view, REGSET_FP,
1542 0, sizeof(struct user_i387_ia32_struct), datap);
1544 case PTRACE_GETFPXREGS: /* Get the child extended FPU state. */
1545 return copy_regset_to_user(child, &user_x86_32_view,
1546 REGSET_XFP, 0,
1547 sizeof(struct user32_fxsr_struct),
1548 datap);
1550 case PTRACE_SETFPXREGS: /* Set the child extended FPU state. */
1551 return copy_regset_from_user(child, &user_x86_32_view,
1552 REGSET_XFP, 0,
1553 sizeof(struct user32_fxsr_struct),
1554 datap);
1556 case PTRACE_GET_THREAD_AREA:
1557 case PTRACE_SET_THREAD_AREA:
1558 #ifdef CONFIG_X86_PTRACE_BTS
1559 case PTRACE_BTS_CONFIG:
1560 case PTRACE_BTS_STATUS:
1561 case PTRACE_BTS_SIZE:
1562 case PTRACE_BTS_GET:
1563 case PTRACE_BTS_CLEAR:
1564 case PTRACE_BTS_DRAIN:
1565 #endif /* CONFIG_X86_PTRACE_BTS */
1566 return arch_ptrace(child, request, addr, data);
1568 default:
1569 return compat_ptrace_request(child, request, addr, data);
1572 return ret;
1575 #endif /* CONFIG_IA32_EMULATION */
1577 #ifdef CONFIG_X86_64
1579 static const struct user_regset x86_64_regsets[] = {
1580 [REGSET_GENERAL] = {
1581 .core_note_type = NT_PRSTATUS,
1582 .n = sizeof(struct user_regs_struct) / sizeof(long),
1583 .size = sizeof(long), .align = sizeof(long),
1584 .get = genregs_get, .set = genregs_set
1586 [REGSET_FP] = {
1587 .core_note_type = NT_PRFPREG,
1588 .n = sizeof(struct user_i387_struct) / sizeof(long),
1589 .size = sizeof(long), .align = sizeof(long),
1590 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1592 [REGSET_IOPERM64] = {
1593 .core_note_type = NT_386_IOPERM,
1594 .n = IO_BITMAP_LONGS,
1595 .size = sizeof(long), .align = sizeof(long),
1596 .active = ioperm_active, .get = ioperm_get
1600 static const struct user_regset_view user_x86_64_view = {
1601 .name = "x86_64", .e_machine = EM_X86_64,
1602 .regsets = x86_64_regsets, .n = ARRAY_SIZE(x86_64_regsets)
1605 #else /* CONFIG_X86_32 */
1607 #define user_regs_struct32 user_regs_struct
1608 #define genregs32_get genregs_get
1609 #define genregs32_set genregs_set
1611 #define user_i387_ia32_struct user_i387_struct
1612 #define user32_fxsr_struct user_fxsr_struct
1614 #endif /* CONFIG_X86_64 */
1616 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1617 static const struct user_regset x86_32_regsets[] = {
1618 [REGSET_GENERAL] = {
1619 .core_note_type = NT_PRSTATUS,
1620 .n = sizeof(struct user_regs_struct32) / sizeof(u32),
1621 .size = sizeof(u32), .align = sizeof(u32),
1622 .get = genregs32_get, .set = genregs32_set
1624 [REGSET_FP] = {
1625 .core_note_type = NT_PRFPREG,
1626 .n = sizeof(struct user_i387_ia32_struct) / sizeof(u32),
1627 .size = sizeof(u32), .align = sizeof(u32),
1628 .active = fpregs_active, .get = fpregs_get, .set = fpregs_set
1630 [REGSET_XFP] = {
1631 .core_note_type = NT_PRXFPREG,
1632 .n = sizeof(struct user32_fxsr_struct) / sizeof(u32),
1633 .size = sizeof(u32), .align = sizeof(u32),
1634 .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set
1636 [REGSET_TLS] = {
1637 .core_note_type = NT_386_TLS,
1638 .n = GDT_ENTRY_TLS_ENTRIES, .bias = GDT_ENTRY_TLS_MIN,
1639 .size = sizeof(struct user_desc),
1640 .align = sizeof(struct user_desc),
1641 .active = regset_tls_active,
1642 .get = regset_tls_get, .set = regset_tls_set
1644 [REGSET_IOPERM32] = {
1645 .core_note_type = NT_386_IOPERM,
1646 .n = IO_BITMAP_BYTES / sizeof(u32),
1647 .size = sizeof(u32), .align = sizeof(u32),
1648 .active = ioperm_active, .get = ioperm_get
1652 static const struct user_regset_view user_x86_32_view = {
1653 .name = "i386", .e_machine = EM_386,
1654 .regsets = x86_32_regsets, .n = ARRAY_SIZE(x86_32_regsets)
1656 #endif
1658 const struct user_regset_view *task_user_regset_view(struct task_struct *task)
1660 #ifdef CONFIG_IA32_EMULATION
1661 if (test_tsk_thread_flag(task, TIF_IA32))
1662 #endif
1663 #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION
1664 return &user_x86_32_view;
1665 #endif
1666 #ifdef CONFIG_X86_64
1667 return &user_x86_64_view;
1668 #endif
1671 void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs,
1672 int error_code, int si_code)
1674 struct siginfo info;
1676 tsk->thread.trap_no = 1;
1677 tsk->thread.error_code = error_code;
1679 memset(&info, 0, sizeof(info));
1680 info.si_signo = SIGTRAP;
1681 info.si_code = si_code;
1683 /* User-mode ip? */
1684 info.si_addr = user_mode_vm(regs) ? (void __user *) regs->ip : NULL;
1686 /* Send us the fake SIGTRAP */
1687 force_sig_info(SIGTRAP, &info, tsk);
1691 #ifdef CONFIG_X86_32
1692 # define IS_IA32 1
1693 #elif defined CONFIG_IA32_EMULATION
1694 # define IS_IA32 is_compat_task()
1695 #else
1696 # define IS_IA32 0
1697 #endif
1700 * We must return the syscall number to actually look up in the table.
1701 * This can be -1L to skip running any syscall at all.
1703 asmregparm long syscall_trace_enter(struct pt_regs *regs)
1705 long ret = 0;
1708 * If we stepped into a sysenter/syscall insn, it trapped in
1709 * kernel mode; do_debug() cleared TF and set TIF_SINGLESTEP.
1710 * If user-mode had set TF itself, then it's still clear from
1711 * do_debug() and we need to set it again to restore the user
1712 * state. If we entered on the slow path, TF was already set.
1714 if (test_thread_flag(TIF_SINGLESTEP))
1715 regs->flags |= X86_EFLAGS_TF;
1717 /* do the secure computing check first */
1718 secure_computing(regs->orig_ax);
1720 if (unlikely(test_thread_flag(TIF_SYSCALL_EMU)))
1721 ret = -1L;
1723 if ((ret || test_thread_flag(TIF_SYSCALL_TRACE)) &&
1724 tracehook_report_syscall_entry(regs))
1725 ret = -1L;
1727 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
1728 trace_sys_enter(regs, regs->orig_ax);
1730 if (unlikely(current->audit_context)) {
1731 if (IS_IA32)
1732 audit_syscall_entry(AUDIT_ARCH_I386,
1733 regs->orig_ax,
1734 regs->bx, regs->cx,
1735 regs->dx, regs->si);
1736 #ifdef CONFIG_X86_64
1737 else
1738 audit_syscall_entry(AUDIT_ARCH_X86_64,
1739 regs->orig_ax,
1740 regs->di, regs->si,
1741 regs->dx, regs->r10);
1742 #endif
1745 return ret ?: regs->orig_ax;
1748 asmregparm void syscall_trace_leave(struct pt_regs *regs)
1750 if (unlikely(current->audit_context))
1751 audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax);
1753 if (unlikely(test_thread_flag(TIF_SYSCALL_TRACEPOINT)))
1754 trace_sys_exit(regs, regs->ax);
1756 if (test_thread_flag(TIF_SYSCALL_TRACE))
1757 tracehook_report_syscall_exit(regs, 0);
1760 * If TIF_SYSCALL_EMU is set, we only get here because of
1761 * TIF_SINGLESTEP (i.e. this is PTRACE_SYSEMU_SINGLESTEP).
1762 * We already reported this syscall instruction in
1763 * syscall_trace_enter(), so don't do any more now.
1765 if (unlikely(test_thread_flag(TIF_SYSCALL_EMU)))
1766 return;
1769 * If we are single-stepping, synthesize a trap to follow the
1770 * system call instruction.
1772 if (test_thread_flag(TIF_SINGLESTEP) &&
1773 tracehook_consider_fatal_signal(current, SIGTRAP))
1774 send_sigtrap(current, regs, 0, TRAP_BRKPT);