]> git.baikalelectronics.ru Git - kernel.git/commit
perf: Disable monitoring on setuid processes for regular users
authorStephane Eranian <eranian@google.com>
Thu, 20 Jun 2013 09:36:28 +0000 (11:36 +0200)
committerIngo Molnar <mingo@kernel.org>
Wed, 26 Jun 2013 09:40:18 +0000 (11:40 +0200)
commit9e91519c74e44e28d3b561dfd2362f1544a39a76
tree91db780e26c85a060e10db9641f09aecd0cf79d3
parentd2a44028f73f244b40652d68853b5d13b0aa891a
perf: Disable monitoring on setuid processes for regular users

There was a a bug in setup_new_exec(), whereby
the test to disabled perf monitoring was not
correct because the new credentials for the
process were not yet committed and therefore
the get_dumpable() test was never firing.

The patch fixes the problem by moving the
perf_event test until after the credentials
are committed.

Signed-off-by: Stephane Eranian <eranian@google.com>
Tested-by: Jiri Olsa <jolsa@redhat.com>
Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl>
Cc: <stable@kernel.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
fs/exec.c