diff options
author | Frederic Weisbecker <fweisbec@gmail.com> | 2010-04-21 23:05:45 -0400 |
---|---|---|
committer | Frederic Weisbecker <fweisbec@gmail.com> | 2010-04-30 22:32:07 -0400 |
commit | 73266fc1df2f94cf72b3beba3eee3b88ed0b0664 (patch) | |
tree | 876f6ab9c85715665e5c5562d70d9ea2c10facea /include/linux/hw_breakpoint.h | |
parent | d00a47cce569a3e660a8c9de5d57af28d6a9f0f7 (diff) |
hw-breakpoints: Tag ptrace breakpoint as exclude_kernel
Tag ptrace breakpoints with the exclude_kernel attribute set. This
will make it easier to set generic policies on breakpoints, when it
comes to ensure nobody unpriviliged try to breakpoint on the kernel.
Signed-off-by: Frederic Weisbecker <fweisbec@gmail.com>
Acked-by: Paul Mundt <lethal@linux-sh.org>
Cc: Will Deacon <will.deacon@arm.com>
Cc: Mahesh Salgaonkar <mahesh@linux.vnet.ibm.com>
Cc: K. Prasad <prasad@linux.vnet.ibm.com>
Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'include/linux/hw_breakpoint.h')
-rw-r--r-- | include/linux/hw_breakpoint.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/include/linux/hw_breakpoint.h b/include/linux/hw_breakpoint.h index c70d27af03f9..a0aa5a9cfb0e 100644 --- a/include/linux/hw_breakpoint.h +++ b/include/linux/hw_breakpoint.h | |||
@@ -34,6 +34,12 @@ static inline void hw_breakpoint_init(struct perf_event_attr *attr) | |||
34 | attr->sample_period = 1; | 34 | attr->sample_period = 1; |
35 | } | 35 | } |
36 | 36 | ||
37 | static inline void ptrace_breakpoint_init(struct perf_event_attr *attr) | ||
38 | { | ||
39 | hw_breakpoint_init(attr); | ||
40 | attr->exclude_kernel = 1; | ||
41 | } | ||
42 | |||
37 | static inline unsigned long hw_breakpoint_addr(struct perf_event *bp) | 43 | static inline unsigned long hw_breakpoint_addr(struct perf_event *bp) |
38 | { | 44 | { |
39 | return bp->attr.bp_addr; | 45 | return bp->attr.bp_addr; |