K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 1 | /* |
| 2 | * This program is free software; you can redistribute it and/or modify |
| 3 | * it under the terms of the GNU General Public License as published by |
| 4 | * the Free Software Foundation; either version 2 of the License, or |
| 5 | * (at your option) any later version. |
| 6 | * |
| 7 | * This program is distributed in the hope that it will be useful, |
| 8 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 9 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 10 | * GNU General Public License for more details. |
| 11 | * |
| 12 | * You should have received a copy of the GNU General Public License |
| 13 | * along with this program; if not, write to the Free Software |
| 14 | * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. |
| 15 | * |
| 16 | * Copyright (C) 2007 Alan Stern |
| 17 | * Copyright (C) 2009 IBM Corporation |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 18 | * Copyright (C) 2009 Frederic Weisbecker <fweisbec@gmail.com> |
K.Prasad | ba6909b | 2009-11-23 21:17:13 +0530 | [diff] [blame] | 19 | * |
| 20 | * Authors: Alan Stern <stern@rowland.harvard.edu> |
| 21 | * K.Prasad <prasad@linux.vnet.ibm.com> |
| 22 | * Frederic Weisbecker <fweisbec@gmail.com> |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 23 | */ |
| 24 | |
| 25 | /* |
| 26 | * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility, |
| 27 | * using the CPU's debug registers. |
| 28 | */ |
| 29 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 30 | #include <linux/perf_event.h> |
| 31 | #include <linux/hw_breakpoint.h> |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 32 | #include <linux/irqflags.h> |
| 33 | #include <linux/notifier.h> |
| 34 | #include <linux/kallsyms.h> |
| 35 | #include <linux/kprobes.h> |
| 36 | #include <linux/percpu.h> |
| 37 | #include <linux/kdebug.h> |
| 38 | #include <linux/kernel.h> |
| 39 | #include <linux/module.h> |
| 40 | #include <linux/sched.h> |
| 41 | #include <linux/init.h> |
| 42 | #include <linux/smp.h> |
| 43 | |
| 44 | #include <asm/hw_breakpoint.h> |
| 45 | #include <asm/processor.h> |
| 46 | #include <asm/debugreg.h> |
| 47 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 48 | /* Per cpu debug control register value */ |
Tejun Heo | 28b4e0d | 2009-11-25 22:24:44 +0900 | [diff] [blame^] | 49 | DEFINE_PER_CPU(unsigned long, cpu_dr7); |
| 50 | EXPORT_PER_CPU_SYMBOL(cpu_dr7); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 51 | |
| 52 | /* Per cpu debug address registers values */ |
| 53 | static DEFINE_PER_CPU(unsigned long, cpu_debugreg[HBP_NUM]); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 54 | |
| 55 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 56 | * Stores the breakpoints currently in use on each breakpoint address |
| 57 | * register for each cpus |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 58 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 59 | static DEFINE_PER_CPU(struct perf_event *, bp_per_reg[HBP_NUM]); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 60 | |
| 61 | |
| 62 | /* |
| 63 | * Encode the length, type, Exact, and Enable bits for a particular breakpoint |
| 64 | * as stored in debug register 7. |
| 65 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 66 | unsigned long encode_dr7(int drnum, unsigned int len, unsigned int type) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 67 | { |
| 68 | unsigned long bp_info; |
| 69 | |
| 70 | bp_info = (len | type) & 0xf; |
| 71 | bp_info <<= (DR_CONTROL_SHIFT + drnum * DR_CONTROL_SIZE); |
| 72 | bp_info |= (DR_GLOBAL_ENABLE << (drnum * DR_ENABLE_SIZE)) | |
| 73 | DR_GLOBAL_SLOWDOWN; |
| 74 | return bp_info; |
| 75 | } |
| 76 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 77 | /* |
| 78 | * Decode the length and type bits for a particular breakpoint as |
| 79 | * stored in debug register 7. Return the "enabled" status. |
| 80 | */ |
| 81 | int decode_dr7(unsigned long dr7, int bpnum, unsigned *len, unsigned *type) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 82 | { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 83 | int bp_info = dr7 >> (DR_CONTROL_SHIFT + bpnum * DR_CONTROL_SIZE); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 84 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 85 | *len = (bp_info & 0xc) | 0x40; |
| 86 | *type = (bp_info & 0x3) | 0x80; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 87 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 88 | return (dr7 >> (bpnum * DR_ENABLE_SIZE)) & 0x3; |
| 89 | } |
| 90 | |
| 91 | /* |
| 92 | * Install a perf counter breakpoint. |
| 93 | * |
| 94 | * We seek a free debug address register and use it for this |
| 95 | * breakpoint. Eventually we enable it in the debug control register. |
| 96 | * |
| 97 | * Atomic: we hold the counter->ctx->lock and we only handle variables |
| 98 | * and registers local to this cpu. |
| 99 | */ |
| 100 | int arch_install_hw_breakpoint(struct perf_event *bp) |
| 101 | { |
| 102 | struct arch_hw_breakpoint *info = counter_arch_bp(bp); |
| 103 | unsigned long *dr7; |
| 104 | int i; |
| 105 | |
| 106 | for (i = 0; i < HBP_NUM; i++) { |
| 107 | struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]); |
| 108 | |
| 109 | if (!*slot) { |
| 110 | *slot = bp; |
| 111 | break; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 112 | } |
| 113 | } |
| 114 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 115 | if (WARN_ONCE(i == HBP_NUM, "Can't find any breakpoint slot")) |
| 116 | return -EBUSY; |
| 117 | |
| 118 | set_debugreg(info->address, i); |
| 119 | __get_cpu_var(cpu_debugreg[i]) = info->address; |
| 120 | |
Tejun Heo | 28b4e0d | 2009-11-25 22:24:44 +0900 | [diff] [blame^] | 121 | dr7 = &__get_cpu_var(cpu_dr7); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 122 | *dr7 |= encode_dr7(i, info->len, info->type); |
| 123 | |
| 124 | set_debugreg(*dr7, 7); |
| 125 | |
| 126 | return 0; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 127 | } |
| 128 | |
| 129 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 130 | * Uninstall the breakpoint contained in the given counter. |
| 131 | * |
| 132 | * First we search the debug address register it uses and then we disable |
| 133 | * it. |
| 134 | * |
| 135 | * Atomic: we hold the counter->ctx->lock and we only handle variables |
| 136 | * and registers local to this cpu. |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 137 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 138 | void arch_uninstall_hw_breakpoint(struct perf_event *bp) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 139 | { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 140 | struct arch_hw_breakpoint *info = counter_arch_bp(bp); |
| 141 | unsigned long *dr7; |
| 142 | int i; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 143 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 144 | for (i = 0; i < HBP_NUM; i++) { |
| 145 | struct perf_event **slot = &__get_cpu_var(bp_per_reg[i]); |
| 146 | |
| 147 | if (*slot == bp) { |
| 148 | *slot = NULL; |
| 149 | break; |
| 150 | } |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 151 | } |
| 152 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 153 | if (WARN_ONCE(i == HBP_NUM, "Can't find any breakpoint slot")) |
| 154 | return; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 155 | |
Tejun Heo | 28b4e0d | 2009-11-25 22:24:44 +0900 | [diff] [blame^] | 156 | dr7 = &__get_cpu_var(cpu_dr7); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 157 | *dr7 &= ~encode_dr7(i, info->len, info->type); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 158 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 159 | set_debugreg(*dr7, 7); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 160 | } |
| 161 | |
| 162 | static int get_hbp_len(u8 hbp_len) |
| 163 | { |
| 164 | unsigned int len_in_bytes = 0; |
| 165 | |
| 166 | switch (hbp_len) { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 167 | case X86_BREAKPOINT_LEN_1: |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 168 | len_in_bytes = 1; |
| 169 | break; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 170 | case X86_BREAKPOINT_LEN_2: |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 171 | len_in_bytes = 2; |
| 172 | break; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 173 | case X86_BREAKPOINT_LEN_4: |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 174 | len_in_bytes = 4; |
| 175 | break; |
| 176 | #ifdef CONFIG_X86_64 |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 177 | case X86_BREAKPOINT_LEN_8: |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 178 | len_in_bytes = 8; |
| 179 | break; |
| 180 | #endif |
| 181 | } |
| 182 | return len_in_bytes; |
| 183 | } |
| 184 | |
| 185 | /* |
| 186 | * Check for virtual address in user space. |
| 187 | */ |
| 188 | int arch_check_va_in_userspace(unsigned long va, u8 hbp_len) |
| 189 | { |
| 190 | unsigned int len; |
| 191 | |
| 192 | len = get_hbp_len(hbp_len); |
| 193 | |
| 194 | return (va <= TASK_SIZE - len); |
| 195 | } |
| 196 | |
| 197 | /* |
| 198 | * Check for virtual address in kernel space. |
| 199 | */ |
Jaswinder Singh Rajput | 4555835 | 2009-06-17 14:44:19 +0530 | [diff] [blame] | 200 | static int arch_check_va_in_kernelspace(unsigned long va, u8 hbp_len) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 201 | { |
| 202 | unsigned int len; |
| 203 | |
| 204 | len = get_hbp_len(hbp_len); |
| 205 | |
| 206 | return (va >= TASK_SIZE) && ((va + len - 1) >= TASK_SIZE); |
| 207 | } |
| 208 | |
| 209 | /* |
| 210 | * Store a breakpoint's encoded address, length, and type. |
| 211 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 212 | static int arch_store_info(struct perf_event *bp) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 213 | { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 214 | struct arch_hw_breakpoint *info = counter_arch_bp(bp); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 215 | /* |
| 216 | * For kernel-addresses, either the address or symbol name can be |
| 217 | * specified. |
| 218 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 219 | if (info->name) |
| 220 | info->address = (unsigned long) |
| 221 | kallsyms_lookup_name(info->name); |
| 222 | if (info->address) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 223 | return 0; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 224 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 225 | return -EINVAL; |
| 226 | } |
| 227 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 228 | int arch_bp_generic_fields(int x86_len, int x86_type, |
| 229 | int *gen_len, int *gen_type) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 230 | { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 231 | /* Len */ |
| 232 | switch (x86_len) { |
| 233 | case X86_BREAKPOINT_LEN_1: |
| 234 | *gen_len = HW_BREAKPOINT_LEN_1; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 235 | break; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 236 | case X86_BREAKPOINT_LEN_2: |
| 237 | *gen_len = HW_BREAKPOINT_LEN_2; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 238 | break; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 239 | case X86_BREAKPOINT_LEN_4: |
| 240 | *gen_len = HW_BREAKPOINT_LEN_4; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 241 | break; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 242 | #ifdef CONFIG_X86_64 |
| 243 | case X86_BREAKPOINT_LEN_8: |
| 244 | *gen_len = HW_BREAKPOINT_LEN_8; |
| 245 | break; |
| 246 | #endif |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 247 | default: |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 248 | return -EINVAL; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 249 | } |
| 250 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 251 | /* Type */ |
| 252 | switch (x86_type) { |
| 253 | case X86_BREAKPOINT_EXECUTE: |
| 254 | *gen_type = HW_BREAKPOINT_X; |
| 255 | break; |
| 256 | case X86_BREAKPOINT_WRITE: |
| 257 | *gen_type = HW_BREAKPOINT_W; |
| 258 | break; |
| 259 | case X86_BREAKPOINT_RW: |
| 260 | *gen_type = HW_BREAKPOINT_W | HW_BREAKPOINT_R; |
| 261 | break; |
| 262 | default: |
| 263 | return -EINVAL; |
| 264 | } |
| 265 | |
| 266 | return 0; |
| 267 | } |
| 268 | |
| 269 | |
| 270 | static int arch_build_bp_info(struct perf_event *bp) |
| 271 | { |
| 272 | struct arch_hw_breakpoint *info = counter_arch_bp(bp); |
| 273 | |
| 274 | info->address = bp->attr.bp_addr; |
| 275 | |
| 276 | /* Len */ |
| 277 | switch (bp->attr.bp_len) { |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 278 | case HW_BREAKPOINT_LEN_1: |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 279 | info->len = X86_BREAKPOINT_LEN_1; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 280 | break; |
| 281 | case HW_BREAKPOINT_LEN_2: |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 282 | info->len = X86_BREAKPOINT_LEN_2; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 283 | break; |
| 284 | case HW_BREAKPOINT_LEN_4: |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 285 | info->len = X86_BREAKPOINT_LEN_4; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 286 | break; |
| 287 | #ifdef CONFIG_X86_64 |
| 288 | case HW_BREAKPOINT_LEN_8: |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 289 | info->len = X86_BREAKPOINT_LEN_8; |
| 290 | break; |
| 291 | #endif |
| 292 | default: |
| 293 | return -EINVAL; |
| 294 | } |
| 295 | |
| 296 | /* Type */ |
| 297 | switch (bp->attr.bp_type) { |
| 298 | case HW_BREAKPOINT_W: |
| 299 | info->type = X86_BREAKPOINT_WRITE; |
| 300 | break; |
| 301 | case HW_BREAKPOINT_W | HW_BREAKPOINT_R: |
| 302 | info->type = X86_BREAKPOINT_RW; |
| 303 | break; |
| 304 | case HW_BREAKPOINT_X: |
| 305 | info->type = X86_BREAKPOINT_EXECUTE; |
| 306 | break; |
| 307 | default: |
| 308 | return -EINVAL; |
| 309 | } |
| 310 | |
| 311 | return 0; |
| 312 | } |
| 313 | /* |
| 314 | * Validate the arch-specific HW Breakpoint register settings |
| 315 | */ |
| 316 | int arch_validate_hwbkpt_settings(struct perf_event *bp, |
| 317 | struct task_struct *tsk) |
| 318 | { |
| 319 | struct arch_hw_breakpoint *info = counter_arch_bp(bp); |
| 320 | unsigned int align; |
| 321 | int ret; |
| 322 | |
| 323 | |
| 324 | ret = arch_build_bp_info(bp); |
| 325 | if (ret) |
| 326 | return ret; |
| 327 | |
| 328 | ret = -EINVAL; |
| 329 | |
| 330 | if (info->type == X86_BREAKPOINT_EXECUTE) |
| 331 | /* |
| 332 | * Ptrace-refactoring code |
| 333 | * For now, we'll allow instruction breakpoint only for user-space |
| 334 | * addresses |
| 335 | */ |
| 336 | if ((!arch_check_va_in_userspace(info->address, info->len)) && |
| 337 | info->len != X86_BREAKPOINT_EXECUTE) |
| 338 | return ret; |
| 339 | |
| 340 | switch (info->len) { |
| 341 | case X86_BREAKPOINT_LEN_1: |
| 342 | align = 0; |
| 343 | break; |
| 344 | case X86_BREAKPOINT_LEN_2: |
| 345 | align = 1; |
| 346 | break; |
| 347 | case X86_BREAKPOINT_LEN_4: |
| 348 | align = 3; |
| 349 | break; |
| 350 | #ifdef CONFIG_X86_64 |
| 351 | case X86_BREAKPOINT_LEN_8: |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 352 | align = 7; |
| 353 | break; |
| 354 | #endif |
| 355 | default: |
| 356 | return ret; |
| 357 | } |
| 358 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 359 | if (bp->callback) |
| 360 | ret = arch_store_info(bp); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 361 | |
| 362 | if (ret < 0) |
| 363 | return ret; |
| 364 | /* |
| 365 | * Check that the low-order bits of the address are appropriate |
| 366 | * for the alignment implied by len. |
| 367 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 368 | if (info->address & align) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 369 | return -EINVAL; |
| 370 | |
| 371 | /* Check that the virtual address is in the proper range */ |
| 372 | if (tsk) { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 373 | if (!arch_check_va_in_userspace(info->address, info->len)) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 374 | return -EFAULT; |
| 375 | } else { |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 376 | if (!arch_check_va_in_kernelspace(info->address, info->len)) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 377 | return -EFAULT; |
| 378 | } |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 379 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 380 | return 0; |
| 381 | } |
| 382 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 383 | /* |
Frederic Weisbecker | 9f6b3c2 | 2009-11-09 21:03:43 +0100 | [diff] [blame] | 384 | * Dump the debug register contents to the user. |
| 385 | * We can't dump our per cpu values because it |
| 386 | * may contain cpu wide breakpoint, something that |
| 387 | * doesn't belong to the current task. |
| 388 | * |
| 389 | * TODO: include non-ptrace user breakpoints (perf) |
| 390 | */ |
| 391 | void aout_dump_debugregs(struct user *dump) |
| 392 | { |
| 393 | int i; |
| 394 | int dr7 = 0; |
| 395 | struct perf_event *bp; |
| 396 | struct arch_hw_breakpoint *info; |
| 397 | struct thread_struct *thread = ¤t->thread; |
| 398 | |
| 399 | for (i = 0; i < HBP_NUM; i++) { |
| 400 | bp = thread->ptrace_bps[i]; |
| 401 | |
| 402 | if (bp && !bp->attr.disabled) { |
| 403 | dump->u_debugreg[i] = bp->attr.bp_addr; |
| 404 | info = counter_arch_bp(bp); |
| 405 | dr7 |= encode_dr7(i, info->len, info->type); |
| 406 | } else { |
| 407 | dump->u_debugreg[i] = 0; |
| 408 | } |
| 409 | } |
| 410 | |
| 411 | dump->u_debugreg[4] = 0; |
| 412 | dump->u_debugreg[5] = 0; |
| 413 | dump->u_debugreg[6] = current->thread.debugreg6; |
| 414 | |
| 415 | dump->u_debugreg[7] = dr7; |
| 416 | } |
Ingo Molnar | 68efa37 | 2009-11-14 01:35:29 +0100 | [diff] [blame] | 417 | EXPORT_SYMBOL_GPL(aout_dump_debugregs); |
Frederic Weisbecker | 9f6b3c2 | 2009-11-09 21:03:43 +0100 | [diff] [blame] | 418 | |
| 419 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 420 | * Release the user breakpoints used by ptrace |
| 421 | */ |
| 422 | void flush_ptrace_hw_breakpoint(struct task_struct *tsk) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 423 | { |
| 424 | int i; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 425 | struct thread_struct *t = &tsk->thread; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 426 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 427 | for (i = 0; i < HBP_NUM; i++) { |
| 428 | unregister_hw_breakpoint(t->ptrace_bps[i]); |
| 429 | t->ptrace_bps[i] = NULL; |
| 430 | } |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 431 | } |
| 432 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 433 | void hw_breakpoint_restore(void) |
| 434 | { |
| 435 | set_debugreg(__get_cpu_var(cpu_debugreg[0]), 0); |
| 436 | set_debugreg(__get_cpu_var(cpu_debugreg[1]), 1); |
| 437 | set_debugreg(__get_cpu_var(cpu_debugreg[2]), 2); |
| 438 | set_debugreg(__get_cpu_var(cpu_debugreg[3]), 3); |
| 439 | set_debugreg(current->thread.debugreg6, 6); |
Tejun Heo | 28b4e0d | 2009-11-25 22:24:44 +0900 | [diff] [blame^] | 440 | set_debugreg(__get_cpu_var(cpu_dr7), 7); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 441 | } |
| 442 | EXPORT_SYMBOL_GPL(hw_breakpoint_restore); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 443 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 444 | /* |
| 445 | * Handle debug exception notifications. |
| 446 | * |
| 447 | * Return value is either NOTIFY_STOP or NOTIFY_DONE as explained below. |
| 448 | * |
| 449 | * NOTIFY_DONE returned if one of the following conditions is true. |
| 450 | * i) When the causative address is from user-space and the exception |
| 451 | * is a valid one, i.e. not triggered as a result of lazy debug register |
| 452 | * switching |
| 453 | * ii) When there are more bits than trap<n> set in DR6 register (such |
| 454 | * as BD, BS or BT) indicating that more than one debug condition is |
| 455 | * met and requires some more action in do_debug(). |
| 456 | * |
| 457 | * NOTIFY_STOP returned for all other cases |
| 458 | * |
| 459 | */ |
Jaswinder Singh Rajput | 4555835 | 2009-06-17 14:44:19 +0530 | [diff] [blame] | 460 | static int __kprobes hw_breakpoint_handler(struct die_args *args) |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 461 | { |
| 462 | int i, cpu, rc = NOTIFY_STOP; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 463 | struct perf_event *bp; |
K.Prasad | 62edab9 | 2009-06-01 23:47:06 +0530 | [diff] [blame] | 464 | unsigned long dr7, dr6; |
| 465 | unsigned long *dr6_p; |
| 466 | |
| 467 | /* The DR6 value is pointed by args->err */ |
| 468 | dr6_p = (unsigned long *)ERR_PTR(args->err); |
| 469 | dr6 = *dr6_p; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 470 | |
| 471 | /* Do an early return if no trap bits are set in DR6 */ |
| 472 | if ((dr6 & DR_TRAP_BITS) == 0) |
| 473 | return NOTIFY_DONE; |
| 474 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 475 | get_debugreg(dr7, 7); |
| 476 | /* Disable breakpoints during exception handling */ |
| 477 | set_debugreg(0UL, 7); |
| 478 | /* |
| 479 | * Assert that local interrupts are disabled |
| 480 | * Reset the DRn bits in the virtualized register value. |
| 481 | * The ptrace trigger routine will add in whatever is needed. |
| 482 | */ |
| 483 | current->thread.debugreg6 &= ~DR_TRAP_BITS; |
| 484 | cpu = get_cpu(); |
| 485 | |
| 486 | /* Handle all the breakpoints that were triggered */ |
| 487 | for (i = 0; i < HBP_NUM; ++i) { |
| 488 | if (likely(!(dr6 & (DR_TRAP0 << i)))) |
| 489 | continue; |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 490 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 491 | /* |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 492 | * The counter may be concurrently released but that can only |
| 493 | * occur from a call_rcu() path. We can then safely fetch |
| 494 | * the breakpoint, use its callback, touch its counter |
| 495 | * while we are in an rcu_read_lock() path. |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 496 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 497 | rcu_read_lock(); |
| 498 | |
| 499 | bp = per_cpu(bp_per_reg[i], cpu); |
| 500 | if (bp) |
| 501 | rc = NOTIFY_DONE; |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 502 | /* |
K.Prasad | 62edab9 | 2009-06-01 23:47:06 +0530 | [diff] [blame] | 503 | * Reset the 'i'th TRAP bit in dr6 to denote completion of |
| 504 | * exception handling |
| 505 | */ |
| 506 | (*dr6_p) &= ~(DR_TRAP0 << i); |
| 507 | /* |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 508 | * bp can be NULL due to lazy debug register switching |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 509 | * or due to concurrent perf counter removing. |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 510 | */ |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 511 | if (!bp) { |
| 512 | rcu_read_unlock(); |
| 513 | break; |
| 514 | } |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 515 | |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 516 | (bp->callback)(bp, args->regs); |
| 517 | |
| 518 | rcu_read_unlock(); |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 519 | } |
| 520 | if (dr6 & (~DR_TRAP_BITS)) |
| 521 | rc = NOTIFY_DONE; |
| 522 | |
| 523 | set_debugreg(dr7, 7); |
Ingo Molnar | eadb8a0 | 2009-06-17 12:52:15 +0200 | [diff] [blame] | 524 | put_cpu(); |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 525 | |
K.Prasad | 0067f12 | 2009-06-01 23:43:57 +0530 | [diff] [blame] | 526 | return rc; |
| 527 | } |
| 528 | |
| 529 | /* |
| 530 | * Handle debug exception notifications. |
| 531 | */ |
| 532 | int __kprobes hw_breakpoint_exceptions_notify( |
| 533 | struct notifier_block *unused, unsigned long val, void *data) |
| 534 | { |
| 535 | if (val != DIE_DEBUG) |
| 536 | return NOTIFY_DONE; |
| 537 | |
| 538 | return hw_breakpoint_handler(data); |
| 539 | } |
Frederic Weisbecker | 24f1e32c | 2009-09-09 19:22:48 +0200 | [diff] [blame] | 540 | |
| 541 | void hw_breakpoint_pmu_read(struct perf_event *bp) |
| 542 | { |
| 543 | /* TODO */ |
| 544 | } |
| 545 | |
| 546 | void hw_breakpoint_pmu_unthrottle(struct perf_event *bp) |
| 547 | { |
| 548 | /* TODO */ |
| 549 | } |