diff options
Diffstat (limited to 'kernel')
| -rw-r--r-- | kernel/perf_counter.c | 95 |
1 files changed, 87 insertions, 8 deletions
diff --git a/kernel/perf_counter.c b/kernel/perf_counter.c index ef5d8a5b2453..29b685f551aa 100644 --- a/kernel/perf_counter.c +++ b/kernel/perf_counter.c | |||
| @@ -3570,12 +3570,8 @@ perf_counter_alloc(struct perf_counter_attr *attr, | |||
| 3570 | if (attr->inherit && (attr->sample_type & PERF_SAMPLE_GROUP)) | 3570 | if (attr->inherit && (attr->sample_type & PERF_SAMPLE_GROUP)) |
| 3571 | goto done; | 3571 | goto done; |
| 3572 | 3572 | ||
| 3573 | if (attr->type == PERF_TYPE_RAW) { | ||
| 3574 | pmu = hw_perf_counter_init(counter); | ||
| 3575 | goto done; | ||
| 3576 | } | ||
| 3577 | |||
| 3578 | switch (attr->type) { | 3573 | switch (attr->type) { |
| 3574 | case PERF_TYPE_RAW: | ||
| 3579 | case PERF_TYPE_HARDWARE: | 3575 | case PERF_TYPE_HARDWARE: |
| 3580 | case PERF_TYPE_HW_CACHE: | 3576 | case PERF_TYPE_HW_CACHE: |
| 3581 | pmu = hw_perf_counter_init(counter); | 3577 | pmu = hw_perf_counter_init(counter); |
| @@ -3588,6 +3584,9 @@ perf_counter_alloc(struct perf_counter_attr *attr, | |||
| 3588 | case PERF_TYPE_TRACEPOINT: | 3584 | case PERF_TYPE_TRACEPOINT: |
| 3589 | pmu = tp_perf_counter_init(counter); | 3585 | pmu = tp_perf_counter_init(counter); |
| 3590 | break; | 3586 | break; |
| 3587 | |||
| 3588 | default: | ||
| 3589 | break; | ||
| 3591 | } | 3590 | } |
| 3592 | done: | 3591 | done: |
| 3593 | err = 0; | 3592 | err = 0; |
| @@ -3614,6 +3613,85 @@ done: | |||
| 3614 | return counter; | 3613 | return counter; |
| 3615 | } | 3614 | } |
| 3616 | 3615 | ||
| 3616 | static int perf_copy_attr(struct perf_counter_attr __user *uattr, | ||
| 3617 | struct perf_counter_attr *attr) | ||
| 3618 | { | ||
| 3619 | int ret; | ||
| 3620 | u32 size; | ||
| 3621 | |||
| 3622 | if (!access_ok(VERIFY_WRITE, uattr, PERF_ATTR_SIZE_VER0)) | ||
| 3623 | return -EFAULT; | ||
| 3624 | |||
| 3625 | /* | ||
| 3626 | * zero the full structure, so that a short copy will be nice. | ||
| 3627 | */ | ||
| 3628 | memset(attr, 0, sizeof(*attr)); | ||
| 3629 | |||
| 3630 | ret = get_user(size, &uattr->size); | ||
| 3631 | if (ret) | ||
| 3632 | return ret; | ||
| 3633 | |||
| 3634 | if (size > PAGE_SIZE) /* silly large */ | ||
| 3635 | goto err_size; | ||
| 3636 | |||
| 3637 | if (!size) /* abi compat */ | ||
| 3638 | size = PERF_ATTR_SIZE_VER0; | ||
| 3639 | |||
| 3640 | if (size < PERF_ATTR_SIZE_VER0) | ||
| 3641 | goto err_size; | ||
| 3642 | |||
| 3643 | /* | ||
| 3644 | * If we're handed a bigger struct than we know of, | ||
| 3645 | * ensure all the unknown bits are 0. | ||
| 3646 | */ | ||
| 3647 | if (size > sizeof(*attr)) { | ||
| 3648 | unsigned long val; | ||
| 3649 | unsigned long __user *addr; | ||
| 3650 | unsigned long __user *end; | ||
| 3651 | |||
| 3652 | addr = PTR_ALIGN((void __user *)uattr + sizeof(*attr), | ||
| 3653 | sizeof(unsigned long)); | ||
| 3654 | end = PTR_ALIGN((void __user *)uattr + size, | ||
| 3655 | sizeof(unsigned long)); | ||
| 3656 | |||
| 3657 | for (; addr < end; addr += sizeof(unsigned long)) { | ||
| 3658 | ret = get_user(val, addr); | ||
| 3659 | if (ret) | ||
| 3660 | return ret; | ||
| 3661 | if (val) | ||
| 3662 | goto err_size; | ||
| 3663 | } | ||
| 3664 | } | ||
| 3665 | |||
| 3666 | ret = copy_from_user(attr, uattr, size); | ||
| 3667 | if (ret) | ||
| 3668 | return -EFAULT; | ||
| 3669 | |||
| 3670 | /* | ||
| 3671 | * If the type exists, the corresponding creation will verify | ||
| 3672 | * the attr->config. | ||
| 3673 | */ | ||
| 3674 | if (attr->type >= PERF_TYPE_MAX) | ||
| 3675 | return -EINVAL; | ||
| 3676 | |||
| 3677 | if (attr->__reserved_1 || attr->__reserved_2 || attr->__reserved_3) | ||
| 3678 | return -EINVAL; | ||
| 3679 | |||
| 3680 | if (attr->sample_type & ~(PERF_SAMPLE_MAX-1)) | ||
| 3681 | return -EINVAL; | ||
| 3682 | |||
| 3683 | if (attr->read_format & ~(PERF_FORMAT_MAX-1)) | ||
| 3684 | return -EINVAL; | ||
| 3685 | |||
| 3686 | out: | ||
| 3687 | return ret; | ||
| 3688 | |||
| 3689 | err_size: | ||
| 3690 | put_user(sizeof(*attr), &uattr->size); | ||
| 3691 | ret = -E2BIG; | ||
| 3692 | goto out; | ||
| 3693 | } | ||
| 3694 | |||
| 3617 | /** | 3695 | /** |
| 3618 | * sys_perf_counter_open - open a performance counter, associate it to a task/cpu | 3696 | * sys_perf_counter_open - open a performance counter, associate it to a task/cpu |
| 3619 | * | 3697 | * |
| @@ -3623,7 +3701,7 @@ done: | |||
| 3623 | * @group_fd: group leader counter fd | 3701 | * @group_fd: group leader counter fd |
| 3624 | */ | 3702 | */ |
| 3625 | SYSCALL_DEFINE5(perf_counter_open, | 3703 | SYSCALL_DEFINE5(perf_counter_open, |
| 3626 | const struct perf_counter_attr __user *, attr_uptr, | 3704 | struct perf_counter_attr __user *, attr_uptr, |
| 3627 | pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) | 3705 | pid_t, pid, int, cpu, int, group_fd, unsigned long, flags) |
| 3628 | { | 3706 | { |
| 3629 | struct perf_counter *counter, *group_leader; | 3707 | struct perf_counter *counter, *group_leader; |
| @@ -3639,8 +3717,9 @@ SYSCALL_DEFINE5(perf_counter_open, | |||
| 3639 | if (flags) | 3717 | if (flags) |
| 3640 | return -EINVAL; | 3718 | return -EINVAL; |
| 3641 | 3719 | ||
| 3642 | if (copy_from_user(&attr, attr_uptr, sizeof(attr)) != 0) | 3720 | ret = perf_copy_attr(attr_uptr, &attr); |
| 3643 | return -EFAULT; | 3721 | if (ret) |
| 3722 | return ret; | ||
| 3644 | 3723 | ||
| 3645 | if (!attr.exclude_kernel) { | 3724 | if (!attr.exclude_kernel) { |
| 3646 | if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) | 3725 | if (perf_paranoid_kernel() && !capable(CAP_SYS_ADMIN)) |
