perf/core: Need CAP_SYS_ADMIN to create k/uprobe with perf_event_open()

Non-root user cannot create kprobe or uprobe through the text-based
interface (kprobe_events, uprobe_events),so they should not be able
to create probes via perf_event_open() either.

Reported-by: Vince Weaver <vincent.weaver@maine.edu>
Signed-off-by: Song Liu <songliubraving@fb.com>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Thomas Gleixner <tglx@linutronix.de>
Fixes: 33ea4b24277b ("perf/core: Implement the 'perf_uprobe' PMU")
Fixes: e12f03d7031a ("perf/core: Implement the 'perf_kprobe' PMU")
Link: http://lkml.kernel.org/r/C0B2EFB5-C403-4BDB-9046-C14B3EE66999@fb.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>

authored by Song Liu and committed by Ingo Molnar 32e6e967 50268a3d

+8
+8
kernel/events/core.c
··· 8400 8401 if (event->attr.type != perf_kprobe.type) 8402 return -ENOENT; 8403 /* 8404 * no branch sampling for probe events 8405 */ ··· 8441 8442 if (event->attr.type != perf_uprobe.type) 8443 return -ENOENT; 8444 /* 8445 * no branch sampling for probe events 8446 */
··· 8400 8401 if (event->attr.type != perf_kprobe.type) 8402 return -ENOENT; 8403 + 8404 + if (!capable(CAP_SYS_ADMIN)) 8405 + return -EACCES; 8406 + 8407 /* 8408 * no branch sampling for probe events 8409 */ ··· 8437 8438 if (event->attr.type != perf_uprobe.type) 8439 return -ENOENT; 8440 + 8441 + if (!capable(CAP_SYS_ADMIN)) 8442 + return -EACCES; 8443 + 8444 /* 8445 * no branch sampling for probe events 8446 */