提交 ccff286d 编写于 作者: I Ingo Molnar

perf counters: group counter, fixes

Impact: bugfix

Check that a group does not span outside the context of a CPU or a task.

Also, do not allow deep recursive hierarchies.
Signed-off-by: NIngo Molnar <mingo@elte.hu>
上级 04289bb9
...@@ -107,9 +107,6 @@ list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx) ...@@ -107,9 +107,6 @@ list_del_counter(struct perf_counter *counter, struct perf_counter_context *ctx)
list_del_init(&counter->list_entry); list_del_init(&counter->list_entry);
if (list_empty(&counter->sibling_list))
return;
/* /*
* If this was a group counter with sibling counters then * If this was a group counter with sibling counters then
* upgrade the siblings to singleton counters by adding them * upgrade the siblings to singleton counters by adding them
...@@ -395,9 +392,6 @@ counter_sched_in(struct perf_counter *counter, ...@@ -395,9 +392,6 @@ counter_sched_in(struct perf_counter *counter,
struct perf_counter_context *ctx, struct perf_counter_context *ctx,
int cpu) int cpu)
{ {
if (!counter->active)
return;
hw_perf_counter_enable(counter); hw_perf_counter_enable(counter);
counter->active = 1; counter->active = 1;
counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */ counter->oncpu = cpu; /* TODO: put 'cpu' into cpuctx->cpu */
...@@ -876,31 +870,38 @@ asmlinkage int sys_perf_counter_open( ...@@ -876,31 +870,38 @@ asmlinkage int sys_perf_counter_open(
return -EFAULT; return -EFAULT;
/* /*
* Look up the group leader: * Get the target context (task or percpu):
*/
ctx = find_get_context(pid, cpu);
if (IS_ERR(ctx))
return PTR_ERR(ctx);
/*
* Look up the group leader (we will attach this counter to it):
*/ */
group_leader = NULL; group_leader = NULL;
if (group_fd != -1) { if (group_fd != -1) {
ret = -EINVAL; ret = -EINVAL;
group_file = fget_light(group_fd, &fput_needed); group_file = fget_light(group_fd, &fput_needed);
if (!group_file) if (!group_file)
goto out_fput; goto err_put_context;
if (group_file->f_op != &perf_fops) if (group_file->f_op != &perf_fops)
goto out_fput; goto err_put_context;
group_leader = group_file->private_data; group_leader = group_file->private_data;
/* /*
* Do not allow a recursive hierarchy: * Do not allow a recursive hierarchy (this new sibling
* becoming part of another group-sibling):
*/ */
if (group_leader->group_leader) if (group_leader->group_leader != group_leader)
goto out_fput; goto err_put_context;
}
/* /*
* Get the target context (task or percpu): * Do not allow to attach to a group in a different
* task or CPU context:
*/ */
ctx = find_get_context(pid, cpu); if (group_leader->ctx != ctx)
if (IS_ERR(ctx)) goto err_put_context;
return PTR_ERR(ctx); }
ret = -ENOMEM; ret = -ENOMEM;
counter = perf_counter_alloc(&hw_event, cpu, group_leader); counter = perf_counter_alloc(&hw_event, cpu, group_leader);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册