diff options
Diffstat (limited to 'arch/x86/kernel/ptrace.c')
-rw-r--r-- | arch/x86/kernel/ptrace.c | 522 |
1 files changed, 316 insertions, 206 deletions
diff --git a/arch/x86/kernel/ptrace.c b/arch/x86/kernel/ptrace.c index e37dccce85d..0a6d8c12e10 100644 --- a/arch/x86/kernel/ptrace.c +++ b/arch/x86/kernel/ptrace.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <linux/errno.h> | 14 | #include <linux/errno.h> |
15 | #include <linux/ptrace.h> | 15 | #include <linux/ptrace.h> |
16 | #include <linux/regset.h> | 16 | #include <linux/regset.h> |
17 | #include <linux/tracehook.h> | ||
17 | #include <linux/user.h> | 18 | #include <linux/user.h> |
18 | #include <linux/elf.h> | 19 | #include <linux/elf.h> |
19 | #include <linux/security.h> | 20 | #include <linux/security.h> |
@@ -39,7 +40,9 @@ enum x86_regset { | |||
39 | REGSET_GENERAL, | 40 | REGSET_GENERAL, |
40 | REGSET_FP, | 41 | REGSET_FP, |
41 | REGSET_XFP, | 42 | REGSET_XFP, |
43 | REGSET_IOPERM64 = REGSET_XFP, | ||
42 | REGSET_TLS, | 44 | REGSET_TLS, |
45 | REGSET_IOPERM32, | ||
43 | }; | 46 | }; |
44 | 47 | ||
45 | /* | 48 | /* |
@@ -69,7 +72,7 @@ static inline bool invalid_selector(u16 value) | |||
69 | 72 | ||
70 | #define FLAG_MASK FLAG_MASK_32 | 73 | #define FLAG_MASK FLAG_MASK_32 |
71 | 74 | ||
72 | static long *pt_regs_access(struct pt_regs *regs, unsigned long regno) | 75 | static unsigned long *pt_regs_access(struct pt_regs *regs, unsigned long regno) |
73 | { | 76 | { |
74 | BUILD_BUG_ON(offsetof(struct pt_regs, bx) != 0); | 77 | BUILD_BUG_ON(offsetof(struct pt_regs, bx) != 0); |
75 | regno >>= 2; | 78 | regno >>= 2; |
@@ -554,45 +557,138 @@ static int ptrace_set_debugreg(struct task_struct *child, | |||
554 | return 0; | 557 | return 0; |
555 | } | 558 | } |
556 | 559 | ||
557 | #ifdef X86_BTS | 560 | /* |
561 | * These access the current or another (stopped) task's io permission | ||
562 | * bitmap for debugging or core dump. | ||
563 | */ | ||
564 | static int ioperm_active(struct task_struct *target, | ||
565 | const struct user_regset *regset) | ||
566 | { | ||
567 | return target->thread.io_bitmap_max / regset->size; | ||
568 | } | ||
558 | 569 | ||
559 | static int ptrace_bts_get_size(struct task_struct *child) | 570 | static 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) | ||
560 | { | 574 | { |
561 | if (!child->thread.ds_area_msr) | 575 | if (!target->thread.io_bitmap_ptr) |
562 | return -ENXIO; | 576 | return -ENXIO; |
563 | 577 | ||
564 | return ds_get_bts_index((void *)child->thread.ds_area_msr); | 578 | return user_regset_copyout(&pos, &count, &kbuf, &ubuf, |
579 | target->thread.io_bitmap_ptr, | ||
580 | 0, IO_BITMAP_BYTES); | ||
581 | } | ||
582 | |||
583 | #ifdef CONFIG_X86_PTRACE_BTS | ||
584 | /* | ||
585 | * The configuration for a particular BTS hardware implementation. | ||
586 | */ | ||
587 | struct 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 | }; | ||
595 | static struct bts_configuration bts_cfg; | ||
596 | |||
597 | #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 | |||
622 | enum 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 | |||
632 | static inline unsigned long bts_get(const char *base, enum bts_field field) | ||
633 | { | ||
634 | base += (bts_cfg.sizeof_field * field); | ||
635 | return *(unsigned long *)base; | ||
636 | } | ||
637 | |||
638 | static 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 | */ | ||
650 | static 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 | } | ||
565 | } | 661 | } |
566 | 662 | ||
567 | static int ptrace_bts_read_record(struct task_struct *child, | 663 | static int ptrace_bts_read_record(struct task_struct *child, size_t index, |
568 | long index, | ||
569 | struct bts_struct __user *out) | 664 | struct bts_struct __user *out) |
570 | { | 665 | { |
571 | struct bts_struct ret; | 666 | struct bts_struct ret; |
572 | int retval; | 667 | const void *bts_record; |
573 | int bts_end; | 668 | size_t bts_index, bts_end; |
574 | int bts_index; | 669 | int error; |
575 | |||
576 | if (!child->thread.ds_area_msr) | ||
577 | return -ENXIO; | ||
578 | 670 | ||
579 | if (index < 0) | 671 | error = ds_get_bts_end(child, &bts_end); |
580 | return -EINVAL; | 672 | if (error < 0) |
673 | return error; | ||
581 | 674 | ||
582 | bts_end = ds_get_bts_end((void *)child->thread.ds_area_msr); | ||
583 | if (bts_end <= index) | 675 | if (bts_end <= index) |
584 | return -EINVAL; | 676 | return -EINVAL; |
585 | 677 | ||
678 | error = ds_get_bts_index(child, &bts_index); | ||
679 | if (error < 0) | ||
680 | return error; | ||
681 | |||
586 | /* translate the ptrace bts index into the ds bts index */ | 682 | /* translate the ptrace bts index into the ds bts index */ |
587 | bts_index = ds_get_bts_index((void *)child->thread.ds_area_msr); | 683 | bts_index += bts_end - (index + 1); |
588 | bts_index -= (index + 1); | 684 | if (bts_end <= bts_index) |
589 | if (bts_index < 0) | 685 | bts_index -= bts_end; |
590 | bts_index += bts_end; | 686 | |
687 | error = ds_access_bts(child, bts_index, &bts_record); | ||
688 | if (error < 0) | ||
689 | return error; | ||
591 | 690 | ||
592 | retval = ds_read_bts((void *)child->thread.ds_area_msr, | 691 | ptrace_bts_translate_record(&ret, bts_record); |
593 | bts_index, &ret); | ||
594 | if (retval < 0) | ||
595 | return retval; | ||
596 | 692 | ||
597 | if (copy_to_user(out, &ret, sizeof(ret))) | 693 | if (copy_to_user(out, &ret, sizeof(ret))) |
598 | return -EFAULT; | 694 | return -EFAULT; |
@@ -600,101 +696,106 @@ static int ptrace_bts_read_record(struct task_struct *child, | |||
600 | return sizeof(ret); | 696 | return sizeof(ret); |
601 | } | 697 | } |
602 | 698 | ||
603 | static int ptrace_bts_clear(struct task_struct *child) | ||
604 | { | ||
605 | if (!child->thread.ds_area_msr) | ||
606 | return -ENXIO; | ||
607 | |||
608 | return ds_clear((void *)child->thread.ds_area_msr); | ||
609 | } | ||
610 | |||
611 | static int ptrace_bts_drain(struct task_struct *child, | 699 | static int ptrace_bts_drain(struct task_struct *child, |
612 | long size, | 700 | long size, |
613 | struct bts_struct __user *out) | 701 | struct bts_struct __user *out) |
614 | { | 702 | { |
615 | int end, i; | 703 | struct bts_struct ret; |
616 | void *ds = (void *)child->thread.ds_area_msr; | 704 | const unsigned char *raw; |
617 | 705 | size_t end, i; | |
618 | if (!ds) | 706 | int error; |
619 | return -ENXIO; | ||
620 | 707 | ||
621 | end = ds_get_bts_index(ds); | 708 | error = ds_get_bts_index(child, &end); |
622 | if (end <= 0) | 709 | if (error < 0) |
623 | return end; | 710 | return error; |
624 | 711 | ||
625 | if (size < (end * sizeof(struct bts_struct))) | 712 | if (size < (end * sizeof(struct bts_struct))) |
626 | return -EIO; | 713 | return -EIO; |
627 | 714 | ||
628 | for (i = 0; i < end; i++, out++) { | 715 | error = ds_access_bts(child, 0, (const void **)&raw); |
629 | struct bts_struct ret; | 716 | if (error < 0) |
630 | int retval; | 717 | return error; |
631 | 718 | ||
632 | retval = ds_read_bts(ds, i, &ret); | 719 | for (i = 0; i < end; i++, out++, raw += bts_cfg.sizeof_bts) { |
633 | if (retval < 0) | 720 | ptrace_bts_translate_record(&ret, raw); |
634 | return retval; | ||
635 | 721 | ||
636 | if (copy_to_user(out, &ret, sizeof(ret))) | 722 | if (copy_to_user(out, &ret, sizeof(ret))) |
637 | return -EFAULT; | 723 | return -EFAULT; |
638 | } | 724 | } |
639 | 725 | ||
640 | ds_clear(ds); | 726 | error = ds_clear_bts(child); |
727 | if (error < 0) | ||
728 | return error; | ||
641 | 729 | ||
642 | return end; | 730 | return end; |
643 | } | 731 | } |
644 | 732 | ||
733 | static void ptrace_bts_ovfl(struct task_struct *child) | ||
734 | { | ||
735 | send_sig(child->thread.bts_ovfl_signal, child, 0); | ||
736 | } | ||
737 | |||
645 | static int ptrace_bts_config(struct task_struct *child, | 738 | static int ptrace_bts_config(struct task_struct *child, |
646 | long cfg_size, | 739 | long cfg_size, |
647 | const struct ptrace_bts_config __user *ucfg) | 740 | const struct ptrace_bts_config __user *ucfg) |
648 | { | 741 | { |
649 | struct ptrace_bts_config cfg; | 742 | struct ptrace_bts_config cfg; |
650 | int bts_size, ret = 0; | 743 | int error = 0; |
651 | void *ds; | ||
652 | 744 | ||
745 | error = -EOPNOTSUPP; | ||
746 | if (!bts_cfg.sizeof_bts) | ||
747 | goto errout; | ||
748 | |||
749 | error = -EIO; | ||
653 | if (cfg_size < sizeof(cfg)) | 750 | if (cfg_size < sizeof(cfg)) |
654 | return -EIO; | 751 | goto errout; |
655 | 752 | ||
753 | error = -EFAULT; | ||
656 | if (copy_from_user(&cfg, ucfg, sizeof(cfg))) | 754 | if (copy_from_user(&cfg, ucfg, sizeof(cfg))) |
657 | return -EFAULT; | 755 | goto errout; |
658 | 756 | ||
659 | if ((int)cfg.size < 0) | 757 | error = -EINVAL; |
660 | return -EINVAL; | 758 | if ((cfg.flags & PTRACE_BTS_O_SIGNAL) && |
759 | !(cfg.flags & PTRACE_BTS_O_ALLOC)) | ||
760 | goto errout; | ||
661 | 761 | ||
662 | bts_size = 0; | 762 | if (cfg.flags & PTRACE_BTS_O_ALLOC) { |
663 | ds = (void *)child->thread.ds_area_msr; | 763 | ds_ovfl_callback_t ovfl = NULL; |
664 | if (ds) { | 764 | unsigned int sig = 0; |
665 | bts_size = ds_get_bts_size(ds); | 765 | |
666 | if (bts_size < 0) | 766 | /* we ignore the error in case we were not tracing child */ |
667 | return bts_size; | 767 | (void)ds_release_bts(child); |
668 | } | 768 | |
669 | cfg.size = PAGE_ALIGN(cfg.size); | 769 | if (cfg.flags & PTRACE_BTS_O_SIGNAL) { |
770 | if (!cfg.signal) | ||
771 | goto errout; | ||
772 | |||
773 | sig = cfg.signal; | ||
774 | ovfl = ptrace_bts_ovfl; | ||
775 | } | ||
670 | 776 | ||
671 | if (bts_size != cfg.size) { | 777 | error = ds_request_bts(child, /* base = */ NULL, cfg.size, ovfl); |
672 | ret = ptrace_bts_realloc(child, cfg.size, | 778 | if (error < 0) |
673 | cfg.flags & PTRACE_BTS_O_CUT_SIZE); | ||
674 | if (ret < 0) | ||
675 | goto errout; | 779 | goto errout; |
676 | 780 | ||
677 | ds = (void *)child->thread.ds_area_msr; | 781 | child->thread.bts_ovfl_signal = sig; |
678 | } | 782 | } |
679 | 783 | ||
680 | if (cfg.flags & PTRACE_BTS_O_SIGNAL) | 784 | error = -EINVAL; |
681 | ret = ds_set_overflow(ds, DS_O_SIGNAL); | 785 | if (!child->thread.ds_ctx && cfg.flags) |
682 | else | ||
683 | ret = ds_set_overflow(ds, DS_O_WRAP); | ||
684 | if (ret < 0) | ||
685 | goto errout; | 786 | goto errout; |
686 | 787 | ||
687 | if (cfg.flags & PTRACE_BTS_O_TRACE) | 788 | if (cfg.flags & PTRACE_BTS_O_TRACE) |
688 | child->thread.debugctlmsr |= ds_debugctl_mask(); | 789 | child->thread.debugctlmsr |= bts_cfg.debugctl_mask; |
689 | else | 790 | else |
690 | child->thread.debugctlmsr &= ~ds_debugctl_mask(); | 791 | child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask; |
691 | 792 | ||
692 | if (cfg.flags & PTRACE_BTS_O_SCHED) | 793 | if (cfg.flags & PTRACE_BTS_O_SCHED) |
693 | set_tsk_thread_flag(child, TIF_BTS_TRACE_TS); | 794 | set_tsk_thread_flag(child, TIF_BTS_TRACE_TS); |
694 | else | 795 | else |
695 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); | 796 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); |
696 | 797 | ||
697 | ret = sizeof(cfg); | 798 | error = sizeof(cfg); |
698 | 799 | ||
699 | out: | 800 | out: |
700 | if (child->thread.debugctlmsr) | 801 | if (child->thread.debugctlmsr) |
@@ -702,10 +803,10 @@ out: | |||
702 | else | 803 | else |
703 | clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR); | 804 | clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR); |
704 | 805 | ||
705 | return ret; | 806 | return error; |
706 | 807 | ||
707 | errout: | 808 | errout: |
708 | child->thread.debugctlmsr &= ~ds_debugctl_mask(); | 809 | child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask; |
709 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); | 810 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); |
710 | goto out; | 811 | goto out; |
711 | } | 812 | } |
@@ -714,29 +815,40 @@ static int ptrace_bts_status(struct task_struct *child, | |||
714 | long cfg_size, | 815 | long cfg_size, |
715 | struct ptrace_bts_config __user *ucfg) | 816 | struct ptrace_bts_config __user *ucfg) |
716 | { | 817 | { |
717 | void *ds = (void *)child->thread.ds_area_msr; | ||
718 | struct ptrace_bts_config cfg; | 818 | struct ptrace_bts_config cfg; |
819 | size_t end; | ||
820 | const void *base, *max; | ||
821 | int error; | ||
719 | 822 | ||
720 | if (cfg_size < sizeof(cfg)) | 823 | if (cfg_size < sizeof(cfg)) |
721 | return -EIO; | 824 | return -EIO; |
722 | 825 | ||
723 | memset(&cfg, 0, sizeof(cfg)); | 826 | error = ds_get_bts_end(child, &end); |
827 | if (error < 0) | ||
828 | return error; | ||
724 | 829 | ||
725 | if (ds) { | 830 | error = ds_access_bts(child, /* index = */ 0, &base); |
726 | cfg.size = ds_get_bts_size(ds); | 831 | if (error < 0) |
832 | return error; | ||
727 | 833 | ||
728 | if (ds_get_overflow(ds) == DS_O_SIGNAL) | 834 | error = ds_access_bts(child, /* index = */ end, &max); |
729 | cfg.flags |= PTRACE_BTS_O_SIGNAL; | 835 | if (error < 0) |
836 | return error; | ||
730 | 837 | ||
731 | if (test_tsk_thread_flag(child, TIF_DEBUGCTLMSR) && | 838 | memset(&cfg, 0, sizeof(cfg)); |
732 | child->thread.debugctlmsr & ds_debugctl_mask()) | 839 | cfg.size = (max - base); |
733 | cfg.flags |= PTRACE_BTS_O_TRACE; | 840 | cfg.signal = child->thread.bts_ovfl_signal; |
841 | cfg.bts_size = sizeof(struct bts_struct); | ||
734 | 842 | ||
735 | if (test_tsk_thread_flag(child, TIF_BTS_TRACE_TS)) | 843 | if (cfg.signal) |
736 | cfg.flags |= PTRACE_BTS_O_SCHED; | 844 | cfg.flags |= PTRACE_BTS_O_SIGNAL; |
737 | } | ||
738 | 845 | ||
739 | cfg.bts_size = sizeof(struct bts_struct); | 846 | if (test_tsk_thread_flag(child, TIF_DEBUGCTLMSR) && |
847 | child->thread.debugctlmsr & bts_cfg.debugctl_mask) | ||
848 | cfg.flags |= PTRACE_BTS_O_TRACE; | ||
849 | |||
850 | if (test_tsk_thread_flag(child, TIF_BTS_TRACE_TS)) | ||
851 | cfg.flags |= PTRACE_BTS_O_SCHED; | ||
740 | 852 | ||
741 | if (copy_to_user(ucfg, &cfg, sizeof(cfg))) | 853 | if (copy_to_user(ucfg, &cfg, sizeof(cfg))) |
742 | return -EFAULT; | 854 | return -EFAULT; |
@@ -744,89 +856,38 @@ static int ptrace_bts_status(struct task_struct *child, | |||
744 | return sizeof(cfg); | 856 | return sizeof(cfg); |
745 | } | 857 | } |
746 | 858 | ||
747 | |||
748 | static int ptrace_bts_write_record(struct task_struct *child, | 859 | static int ptrace_bts_write_record(struct task_struct *child, |
749 | const struct bts_struct *in) | 860 | const struct bts_struct *in) |
750 | { | 861 | { |
751 | int retval; | 862 | unsigned char bts_record[BTS_MAX_RECORD_SIZE]; |
752 | 863 | ||
753 | if (!child->thread.ds_area_msr) | 864 | BUG_ON(BTS_MAX_RECORD_SIZE < bts_cfg.sizeof_bts); |
754 | return -ENXIO; | ||
755 | 865 | ||
756 | retval = ds_write_bts((void *)child->thread.ds_area_msr, in); | 866 | memset(bts_record, 0, bts_cfg.sizeof_bts); |
757 | if (retval) | 867 | switch (in->qualifier) { |
758 | return retval; | 868 | case BTS_INVALID: |
869 | break; | ||
759 | 870 | ||
760 | return sizeof(*in); | 871 | case BTS_BRANCH: |
761 | } | 872 | bts_set(bts_record, bts_from, in->variant.lbr.from_ip); |
873 | bts_set(bts_record, bts_to, in->variant.lbr.to_ip); | ||
874 | break; | ||
762 | 875 | ||
763 | static int ptrace_bts_realloc(struct task_struct *child, | 876 | case BTS_TASK_ARRIVES: |
764 | int size, int reduce_size) | 877 | case BTS_TASK_DEPARTS: |
765 | { | 878 | bts_set(bts_record, bts_from, bts_escape); |
766 | unsigned long rlim, vm; | 879 | bts_set(bts_record, bts_qual, in->qualifier); |
767 | int ret, old_size; | 880 | bts_set(bts_record, bts_jiffies, in->variant.jiffies); |
881 | break; | ||
768 | 882 | ||
769 | if (size < 0) | 883 | default: |
770 | return -EINVAL; | 884 | return -EINVAL; |
771 | |||
772 | old_size = ds_get_bts_size((void *)child->thread.ds_area_msr); | ||
773 | if (old_size < 0) | ||
774 | return old_size; | ||
775 | |||
776 | ret = ds_free((void **)&child->thread.ds_area_msr); | ||
777 | if (ret < 0) | ||
778 | goto out; | ||
779 | |||
780 | size >>= PAGE_SHIFT; | ||
781 | old_size >>= PAGE_SHIFT; | ||
782 | |||
783 | current->mm->total_vm -= old_size; | ||
784 | current->mm->locked_vm -= old_size; | ||
785 | |||
786 | if (size == 0) | ||
787 | goto out; | ||
788 | |||
789 | rlim = current->signal->rlim[RLIMIT_AS].rlim_cur >> PAGE_SHIFT; | ||
790 | vm = current->mm->total_vm + size; | ||
791 | if (rlim < vm) { | ||
792 | ret = -ENOMEM; | ||
793 | |||
794 | if (!reduce_size) | ||
795 | goto out; | ||
796 | |||
797 | size = rlim - current->mm->total_vm; | ||
798 | if (size <= 0) | ||
799 | goto out; | ||
800 | } | ||
801 | |||
802 | rlim = current->signal->rlim[RLIMIT_MEMLOCK].rlim_cur >> PAGE_SHIFT; | ||
803 | vm = current->mm->locked_vm + size; | ||
804 | if (rlim < vm) { | ||
805 | ret = -ENOMEM; | ||
806 | |||
807 | if (!reduce_size) | ||
808 | goto out; | ||
809 | |||
810 | size = rlim - current->mm->locked_vm; | ||
811 | if (size <= 0) | ||
812 | goto out; | ||
813 | } | 885 | } |
814 | 886 | ||
815 | ret = ds_allocate((void **)&child->thread.ds_area_msr, | 887 | /* The writing task will be the switched-to task on a context |
816 | size << PAGE_SHIFT); | 888 | * switch. It needs to write into the switched-from task's BTS |
817 | if (ret < 0) | 889 | * buffer. */ |
818 | goto out; | 890 | return ds_unchecked_write_bts(child, bts_record, bts_cfg.sizeof_bts); |
819 | |||
820 | current->mm->total_vm += size; | ||
821 | current->mm->locked_vm += size; | ||
822 | |||
823 | out: | ||
824 | if (child->thread.ds_area_msr) | ||
825 | set_tsk_thread_flag(child, TIF_DS_AREA_MSR); | ||
826 | else | ||
827 | clear_tsk_thread_flag(child, TIF_DS_AREA_MSR); | ||
828 | |||
829 | return ret; | ||
830 | } | 891 | } |
831 | 892 | ||
832 | void ptrace_bts_take_timestamp(struct task_struct *tsk, | 893 | void ptrace_bts_take_timestamp(struct task_struct *tsk, |
@@ -839,7 +900,66 @@ void ptrace_bts_take_timestamp(struct task_struct *tsk, | |||
839 | 900 | ||
840 | ptrace_bts_write_record(tsk, &rec); | 901 | ptrace_bts_write_record(tsk, &rec); |
841 | } | 902 | } |
842 | #endif /* X86_BTS */ | 903 | |
904 | static const struct bts_configuration bts_cfg_netburst = { | ||
905 | .sizeof_bts = sizeof(long) * 3, | ||
906 | .sizeof_field = sizeof(long), | ||
907 | .debugctl_mask = (1<<2)|(1<<3)|(1<<5) | ||
908 | }; | ||
909 | |||
910 | static const struct bts_configuration bts_cfg_pentium_m = { | ||
911 | .sizeof_bts = sizeof(long) * 3, | ||
912 | .sizeof_field = sizeof(long), | ||
913 | .debugctl_mask = (1<<6)|(1<<7) | ||
914 | }; | ||
915 | |||
916 | static const struct bts_configuration bts_cfg_core2 = { | ||
917 | .sizeof_bts = 8 * 3, | ||
918 | .sizeof_field = 8, | ||
919 | .debugctl_mask = (1<<6)|(1<<7)|(1<<9) | ||
920 | }; | ||
921 | |||
922 | static inline void bts_configure(const struct bts_configuration *cfg) | ||
923 | { | ||
924 | bts_cfg = *cfg; | ||
925 | } | ||
926 | |||
927 | void __cpuinit ptrace_bts_init_intel(struct cpuinfo_x86 *c) | ||
928 | { | ||
929 | switch (c->x86) { | ||
930 | case 0x6: | ||
931 | switch (c->x86_model) { | ||
932 | case 0xD: | ||
933 | case 0xE: /* Pentium M */ | ||
934 | bts_configure(&bts_cfg_pentium_m); | ||
935 | break; | ||
936 | case 0xF: /* Core2 */ | ||
937 | case 0x1C: /* Atom */ | ||
938 | bts_configure(&bts_cfg_core2); | ||
939 | break; | ||
940 | default: | ||
941 | /* sorry, don't know about them */ | ||
942 | break; | ||
943 | } | ||
944 | break; | ||
945 | case 0xF: | ||
946 | switch (c->x86_model) { | ||
947 | case 0x0: | ||
948 | case 0x1: | ||
949 | case 0x2: /* Netburst */ | ||
950 | bts_configure(&bts_cfg_netburst); | ||
951 | break; | ||
952 | default: | ||
953 | /* sorry, don't know about them */ | ||
954 | break; | ||
955 | } | ||
956 | break; | ||
957 | default: | ||
958 | /* sorry, don't know about them */ | ||
959 | break; | ||
960 | } | ||
961 | } | ||
962 | #endif /* CONFIG_X86_PTRACE_BTS */ | ||
843 | 963 | ||
844 | /* | 964 | /* |
845 | * Called by kernel/ptrace.c when detaching.. | 965 | * Called by kernel/ptrace.c when detaching.. |
@@ -852,15 +972,15 @@ void ptrace_disable(struct task_struct *child) | |||
852 | #ifdef TIF_SYSCALL_EMU | 972 | #ifdef TIF_SYSCALL_EMU |
853 | clear_tsk_thread_flag(child, TIF_SYSCALL_EMU); | 973 | clear_tsk_thread_flag(child, TIF_SYSCALL_EMU); |
854 | #endif | 974 | #endif |
855 | if (child->thread.ds_area_msr) { | 975 | #ifdef CONFIG_X86_PTRACE_BTS |
856 | #ifdef X86_BTS | 976 | (void)ds_release_bts(child); |
857 | ptrace_bts_realloc(child, 0, 0); | 977 | |
858 | #endif | 978 | child->thread.debugctlmsr &= ~bts_cfg.debugctl_mask; |
859 | child->thread.debugctlmsr &= ~ds_debugctl_mask(); | 979 | if (!child->thread.debugctlmsr) |
860 | if (!child->thread.debugctlmsr) | 980 | clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR); |
861 | clear_tsk_thread_flag(child, TIF_DEBUGCTLMSR); | 981 | |
862 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); | 982 | clear_tsk_thread_flag(child, TIF_BTS_TRACE_TS); |
863 | } | 983 | #endif /* CONFIG_X86_PTRACE_BTS */ |
864 | } | 984 | } |
865 | 985 | ||
866 | #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION | 986 | #if defined CONFIG_X86_32 || defined CONFIG_IA32_EMULATION |
@@ -980,7 +1100,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
980 | /* | 1100 | /* |
981 | * These bits need more cooking - not enabled yet: | 1101 | * These bits need more cooking - not enabled yet: |
982 | */ | 1102 | */ |
983 | #ifdef X86_BTS | 1103 | #ifdef CONFIG_X86_PTRACE_BTS |
984 | case PTRACE_BTS_CONFIG: | 1104 | case PTRACE_BTS_CONFIG: |
985 | ret = ptrace_bts_config | 1105 | ret = ptrace_bts_config |
986 | (child, data, (struct ptrace_bts_config __user *)addr); | 1106 | (child, data, (struct ptrace_bts_config __user *)addr); |
@@ -992,7 +1112,7 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
992 | break; | 1112 | break; |
993 | 1113 | ||
994 | case PTRACE_BTS_SIZE: | 1114 | case PTRACE_BTS_SIZE: |
995 | ret = ptrace_bts_get_size(child); | 1115 | ret = ds_get_bts_index(child, /* pos = */ NULL); |
996 | break; | 1116 | break; |
997 | 1117 | ||
998 | case PTRACE_BTS_GET: | 1118 | case PTRACE_BTS_GET: |
@@ -1001,14 +1121,14 @@ long arch_ptrace(struct task_struct *child, long request, long addr, long data) | |||
1001 | break; | 1121 | break; |
1002 | 1122 | ||
1003 | case PTRACE_BTS_CLEAR: | 1123 | case PTRACE_BTS_CLEAR: |
1004 | ret = ptrace_bts_clear(child); | 1124 | ret = ds_clear_bts(child); |
1005 | break; | 1125 | break; |
1006 | 1126 | ||
1007 | case PTRACE_BTS_DRAIN: | 1127 | case PTRACE_BTS_DRAIN: |
1008 | ret = ptrace_bts_drain | 1128 | ret = ptrace_bts_drain |
1009 | (child, data, (struct bts_struct __user *) addr); | 1129 | (child, data, (struct bts_struct __user *) addr); |
1010 | break; | 1130 | break; |
1011 | #endif | 1131 | #endif /* CONFIG_X86_PTRACE_BTS */ |
1012 | 1132 | ||
1013 | default: | 1133 | default: |
1014 | ret = ptrace_request(child, request, addr, data); | 1134 | ret = ptrace_request(child, request, addr, data); |
@@ -1290,6 +1410,12 @@ static const struct user_regset x86_64_regsets[] = { | |||
1290 | .size = sizeof(long), .align = sizeof(long), | 1410 | .size = sizeof(long), .align = sizeof(long), |
1291 | .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set | 1411 | .active = xfpregs_active, .get = xfpregs_get, .set = xfpregs_set |
1292 | }, | 1412 | }, |
1413 | [REGSET_IOPERM64] = { | ||
1414 | .core_note_type = NT_386_IOPERM, | ||
1415 | .n = IO_BITMAP_LONGS, | ||
1416 | .size = sizeof(long), .align = sizeof(long), | ||
1417 | .active = ioperm_active, .get = ioperm_get | ||
1418 | }, | ||
1293 | }; | 1419 | }; |
1294 | 1420 | ||
1295 | static const struct user_regset_view user_x86_64_view = { | 1421 | static const struct user_regset_view user_x86_64_view = { |
@@ -1336,6 +1462,12 @@ static const struct user_regset x86_32_regsets[] = { | |||
1336 | .active = regset_tls_active, | 1462 | .active = regset_tls_active, |
1337 | .get = regset_tls_get, .set = regset_tls_set | 1463 | .get = regset_tls_get, .set = regset_tls_set |
1338 | }, | 1464 | }, |
1465 | [REGSET_IOPERM32] = { | ||
1466 | .core_note_type = NT_386_IOPERM, | ||
1467 | .n = IO_BITMAP_BYTES / sizeof(u32), | ||
1468 | .size = sizeof(u32), .align = sizeof(u32), | ||
1469 | .active = ioperm_active, .get = ioperm_get | ||
1470 | }, | ||
1339 | }; | 1471 | }; |
1340 | 1472 | ||
1341 | static const struct user_regset_view user_x86_32_view = { | 1473 | static const struct user_regset_view user_x86_32_view = { |
@@ -1357,7 +1489,8 @@ const struct user_regset_view *task_user_regset_view(struct task_struct *task) | |||
1357 | #endif | 1489 | #endif |
1358 | } | 1490 | } |
1359 | 1491 | ||
1360 | void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code) | 1492 | void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, |
1493 | int error_code, int si_code) | ||
1361 | { | 1494 | { |
1362 | struct siginfo info; | 1495 | struct siginfo info; |
1363 | 1496 | ||
@@ -1366,7 +1499,7 @@ void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code) | |||
1366 | 1499 | ||
1367 | memset(&info, 0, sizeof(info)); | 1500 | memset(&info, 0, sizeof(info)); |
1368 | info.si_signo = SIGTRAP; | 1501 | info.si_signo = SIGTRAP; |
1369 | info.si_code = TRAP_BRKPT; | 1502 | info.si_code = si_code; |
1370 | 1503 | ||
1371 | /* User-mode ip? */ | 1504 | /* User-mode ip? */ |
1372 | info.si_addr = user_mode_vm(regs) ? (void __user *) regs->ip : NULL; | 1505 | info.si_addr = user_mode_vm(regs) ? (void __user *) regs->ip : NULL; |
@@ -1375,30 +1508,6 @@ void send_sigtrap(struct task_struct *tsk, struct pt_regs *regs, int error_code) | |||
1375 | force_sig_info(SIGTRAP, &info, tsk); | 1508 | force_sig_info(SIGTRAP, &info, tsk); |
1376 | } | 1509 | } |
1377 | 1510 | ||
1378 | static void syscall_trace(struct pt_regs *regs) | ||
1379 | { | ||
1380 | if (!(current->ptrace & PT_PTRACED)) | ||
1381 | return; | ||
1382 | |||
1383 | #if 0 | ||
1384 | printk("trace %s ip %lx sp %lx ax %d origrax %d caller %lx tiflags %x ptrace %x\n", | ||
1385 | current->comm, | ||
1386 | regs->ip, regs->sp, regs->ax, regs->orig_ax, __builtin_return_address(0), | ||
1387 | current_thread_info()->flags, current->ptrace); | ||
1388 | #endif | ||
1389 | |||
1390 | ptrace_notify(SIGTRAP | ((current->ptrace & PT_TRACESYSGOOD) | ||
1391 | ? 0x80 : 0)); | ||
1392 | /* | ||
1393 | * this isn't the same as continuing with a signal, but it will do | ||
1394 | * for normal use. strace only continues with a signal if the | ||
1395 | * stopping signal is not SIGTRAP. -brl | ||
1396 | */ | ||
1397 | if (current->exit_code) { | ||
1398 | send_sig(current->exit_code, current, 1); | ||
1399 | current->exit_code = 0; | ||
1400 | } | ||
1401 | } | ||
1402 | 1511 | ||
1403 | #ifdef CONFIG_X86_32 | 1512 | #ifdef CONFIG_X86_32 |
1404 | # define IS_IA32 1 | 1513 | # define IS_IA32 1 |
@@ -1432,8 +1541,9 @@ asmregparm long syscall_trace_enter(struct pt_regs *regs) | |||
1432 | if (unlikely(test_thread_flag(TIF_SYSCALL_EMU))) | 1541 | if (unlikely(test_thread_flag(TIF_SYSCALL_EMU))) |
1433 | ret = -1L; | 1542 | ret = -1L; |
1434 | 1543 | ||
1435 | if (ret || test_thread_flag(TIF_SYSCALL_TRACE)) | 1544 | if ((ret || test_thread_flag(TIF_SYSCALL_TRACE)) && |
1436 | syscall_trace(regs); | 1545 | tracehook_report_syscall_entry(regs)) |
1546 | ret = -1L; | ||
1437 | 1547 | ||
1438 | if (unlikely(current->audit_context)) { | 1548 | if (unlikely(current->audit_context)) { |
1439 | if (IS_IA32) | 1549 | if (IS_IA32) |
@@ -1459,7 +1569,7 @@ asmregparm void syscall_trace_leave(struct pt_regs *regs) | |||
1459 | audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax); | 1569 | audit_syscall_exit(AUDITSC_RESULT(regs->ax), regs->ax); |
1460 | 1570 | ||
1461 | if (test_thread_flag(TIF_SYSCALL_TRACE)) | 1571 | if (test_thread_flag(TIF_SYSCALL_TRACE)) |
1462 | syscall_trace(regs); | 1572 | tracehook_report_syscall_exit(regs, 0); |
1463 | 1573 | ||
1464 | /* | 1574 | /* |
1465 | * If TIF_SYSCALL_EMU is set, we only get here because of | 1575 | * If TIF_SYSCALL_EMU is set, we only get here because of |
@@ -1475,6 +1585,6 @@ asmregparm void syscall_trace_leave(struct pt_regs *regs) | |||
1475 | * system call instruction. | 1585 | * system call instruction. |
1476 | */ | 1586 | */ |
1477 | if (test_thread_flag(TIF_SINGLESTEP) && | 1587 | if (test_thread_flag(TIF_SINGLESTEP) && |
1478 | (current->ptrace & PT_PTRACED)) | 1588 | tracehook_consider_fatal_signal(current, SIGTRAP, SIG_DFL)) |
1479 | send_sigtrap(current, regs, 0); | 1589 | send_sigtrap(current, regs, 0, TRAP_BRKPT); |
1480 | } | 1590 | } |