1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * HW_breakpoint: a unified kernel/user-space hardware breakpoint facility, 4 * using the CPU's debug registers. Derived from 5 * "arch/x86/kernel/hw_breakpoint.c" 6 * 7 * Copyright 2010 IBM Corporation 8 * Author: K.Prasad <prasad@linux.vnet.ibm.com> 9 */ 10 11 #include <linux/hw_breakpoint.h> 12 #include <linux/notifier.h> 13 #include <linux/kprobes.h> 14 #include <linux/percpu.h> 15 #include <linux/kernel.h> 16 #include <linux/sched.h> 17 #include <linux/smp.h> 18 #include <linux/debugfs.h> 19 #include <linux/init.h> 20 21 #include <asm/hw_breakpoint.h> 22 #include <asm/processor.h> 23 #include <asm/sstep.h> 24 #include <asm/debug.h> 25 #include <asm/debugfs.h> 26 #include <asm/hvcall.h> 27 #include <linux/uaccess.h> 28 29 /* 30 * Stores the breakpoints currently in use on each breakpoint address 31 * register for every cpu 32 */ 33 static DEFINE_PER_CPU(struct perf_event *, bp_per_reg); 34 35 /* 36 * Returns total number of data or instruction breakpoints available. 37 */ 38 int hw_breakpoint_slots(int type) 39 { 40 if (type == TYPE_DATA) 41 return HBP_NUM; 42 return 0; /* no instruction breakpoints available */ 43 } 44 45 /* 46 * Install a perf counter breakpoint. 47 * 48 * We seek a free debug address register and use it for this 49 * breakpoint. 50 * 51 * Atomic: we hold the counter->ctx->lock and we only handle variables 52 * and registers local to this cpu. 53 */ 54 int arch_install_hw_breakpoint(struct perf_event *bp) 55 { 56 struct arch_hw_breakpoint *info = counter_arch_bp(bp); 57 struct perf_event **slot = this_cpu_ptr(&bp_per_reg); 58 59 *slot = bp; 60 61 /* 62 * Do not install DABR values if the instruction must be single-stepped. 63 * If so, DABR will be populated in single_step_dabr_instruction(). 64 */ 65 if (current->thread.last_hit_ubp != bp) 66 __set_breakpoint(info); 67 68 return 0; 69 } 70 71 /* 72 * Uninstall the breakpoint contained in the given counter. 73 * 74 * First we search the debug address register it uses and then we disable 75 * it. 76 * 77 * Atomic: we hold the counter->ctx->lock and we only handle variables 78 * and registers local to this cpu. 79 */ 80 void arch_uninstall_hw_breakpoint(struct perf_event *bp) 81 { 82 struct perf_event **slot = this_cpu_ptr(&bp_per_reg); 83 84 if (*slot != bp) { 85 WARN_ONCE(1, "Can't find the breakpoint"); 86 return; 87 } 88 89 *slot = NULL; 90 hw_breakpoint_disable(); 91 } 92 93 /* 94 * Perform cleanup of arch-specific counters during unregistration 95 * of the perf-event 96 */ 97 void arch_unregister_hw_breakpoint(struct perf_event *bp) 98 { 99 /* 100 * If the breakpoint is unregistered between a hw_breakpoint_handler() 101 * and the single_step_dabr_instruction(), then cleanup the breakpoint 102 * restoration variables to prevent dangling pointers. 103 * FIXME, this should not be using bp->ctx at all! Sayeth peterz. 104 */ 105 if (bp->ctx && bp->ctx->task && bp->ctx->task != ((void *)-1L)) 106 bp->ctx->task->thread.last_hit_ubp = NULL; 107 } 108 109 /* 110 * Check for virtual address in kernel space. 111 */ 112 int arch_check_bp_in_kernelspace(struct arch_hw_breakpoint *hw) 113 { 114 return is_kernel_addr(hw->address); 115 } 116 117 int arch_bp_generic_fields(int type, int *gen_bp_type) 118 { 119 *gen_bp_type = 0; 120 if (type & HW_BRK_TYPE_READ) 121 *gen_bp_type |= HW_BREAKPOINT_R; 122 if (type & HW_BRK_TYPE_WRITE) 123 *gen_bp_type |= HW_BREAKPOINT_W; 124 if (*gen_bp_type == 0) 125 return -EINVAL; 126 return 0; 127 } 128 129 /* 130 * Validate the arch-specific HW Breakpoint register settings 131 */ 132 int hw_breakpoint_arch_parse(struct perf_event *bp, 133 const struct perf_event_attr *attr, 134 struct arch_hw_breakpoint *hw) 135 { 136 int ret = -EINVAL, length_max; 137 138 if (!bp) 139 return ret; 140 141 hw->type = HW_BRK_TYPE_TRANSLATE; 142 if (attr->bp_type & HW_BREAKPOINT_R) 143 hw->type |= HW_BRK_TYPE_READ; 144 if (attr->bp_type & HW_BREAKPOINT_W) 145 hw->type |= HW_BRK_TYPE_WRITE; 146 if (hw->type == HW_BRK_TYPE_TRANSLATE) 147 /* must set alteast read or write */ 148 return ret; 149 if (!attr->exclude_user) 150 hw->type |= HW_BRK_TYPE_USER; 151 if (!attr->exclude_kernel) 152 hw->type |= HW_BRK_TYPE_KERNEL; 153 if (!attr->exclude_hv) 154 hw->type |= HW_BRK_TYPE_HYP; 155 hw->address = attr->bp_addr; 156 hw->len = attr->bp_len; 157 158 /* 159 * Since breakpoint length can be a maximum of HW_BREAKPOINT_LEN(8) 160 * and breakpoint addresses are aligned to nearest double-word 161 * HW_BREAKPOINT_ALIGN by rounding off to the lower address, the 162 * 'symbolsize' should satisfy the check below. 163 */ 164 if (!ppc_breakpoint_available()) 165 return -ENODEV; 166 length_max = 8; /* DABR */ 167 if (dawr_enabled()) { 168 length_max = 512 ; /* 64 doublewords */ 169 /* DAWR region can't cross 512 boundary */ 170 if ((attr->bp_addr >> 9) != 171 ((attr->bp_addr + attr->bp_len - 1) >> 9)) 172 return -EINVAL; 173 } 174 if (hw->len > 175 (length_max - (hw->address & HW_BREAKPOINT_ALIGN))) 176 return -EINVAL; 177 return 0; 178 } 179 180 /* 181 * Restores the breakpoint on the debug registers. 182 * Invoke this function if it is known that the execution context is 183 * about to change to cause loss of MSR_SE settings. 184 */ 185 void thread_change_pc(struct task_struct *tsk, struct pt_regs *regs) 186 { 187 struct arch_hw_breakpoint *info; 188 189 if (likely(!tsk->thread.last_hit_ubp)) 190 return; 191 192 info = counter_arch_bp(tsk->thread.last_hit_ubp); 193 regs->msr &= ~MSR_SE; 194 __set_breakpoint(info); 195 tsk->thread.last_hit_ubp = NULL; 196 } 197 198 /* 199 * Handle debug exception notifications. 200 */ 201 static bool stepping_handler(struct pt_regs *regs, struct perf_event *bp, 202 unsigned long addr) 203 { 204 int stepped; 205 unsigned int instr; 206 207 /* Do not emulate user-space instructions, instead single-step them */ 208 if (user_mode(regs)) { 209 current->thread.last_hit_ubp = bp; 210 regs->msr |= MSR_SE; 211 return false; 212 } 213 214 stepped = 0; 215 instr = 0; 216 if (!__get_user_inatomic(instr, (unsigned int *)regs->nip)) 217 stepped = emulate_step(regs, instr); 218 219 /* 220 * emulate_step() could not execute it. We've failed in reliably 221 * handling the hw-breakpoint. Unregister it and throw a warning 222 * message to let the user know about it. 223 */ 224 if (!stepped) { 225 WARN(1, "Unable to handle hardware breakpoint. Breakpoint at " 226 "0x%lx will be disabled.", addr); 227 perf_event_disable_inatomic(bp); 228 return false; 229 } 230 return true; 231 } 232 233 int hw_breakpoint_handler(struct die_args *args) 234 { 235 int rc = NOTIFY_STOP; 236 struct perf_event *bp; 237 struct pt_regs *regs = args->regs; 238 struct arch_hw_breakpoint *info; 239 unsigned long dar = regs->dar; 240 241 /* Disable breakpoints during exception handling */ 242 hw_breakpoint_disable(); 243 244 /* 245 * The counter may be concurrently released but that can only 246 * occur from a call_rcu() path. We can then safely fetch 247 * the breakpoint, use its callback, touch its counter 248 * while we are in an rcu_read_lock() path. 249 */ 250 rcu_read_lock(); 251 252 bp = __this_cpu_read(bp_per_reg); 253 if (!bp) { 254 rc = NOTIFY_DONE; 255 goto out; 256 } 257 info = counter_arch_bp(bp); 258 259 /* 260 * Return early after invoking user-callback function without restoring 261 * DABR if the breakpoint is from ptrace which always operates in 262 * one-shot mode. The ptrace-ed process will receive the SIGTRAP signal 263 * generated in do_dabr(). 264 */ 265 if (bp->overflow_handler == ptrace_triggered) { 266 perf_bp_event(bp, regs); 267 rc = NOTIFY_DONE; 268 goto out; 269 } 270 271 /* 272 * Verify if dar lies within the address range occupied by the symbol 273 * being watched to filter extraneous exceptions. If it doesn't, 274 * we still need to single-step the instruction, but we don't 275 * generate an event. 276 */ 277 info->type &= ~HW_BRK_TYPE_EXTRANEOUS_IRQ; 278 if (!((bp->attr.bp_addr <= dar) && 279 (dar - bp->attr.bp_addr < bp->attr.bp_len))) 280 info->type |= HW_BRK_TYPE_EXTRANEOUS_IRQ; 281 282 if (!IS_ENABLED(CONFIG_PPC_8xx) && !stepping_handler(regs, bp, info->address)) 283 goto out; 284 285 /* 286 * As a policy, the callback is invoked in a 'trigger-after-execute' 287 * fashion 288 */ 289 if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ)) 290 perf_bp_event(bp, regs); 291 292 __set_breakpoint(info); 293 out: 294 rcu_read_unlock(); 295 return rc; 296 } 297 NOKPROBE_SYMBOL(hw_breakpoint_handler); 298 299 /* 300 * Handle single-step exceptions following a DABR hit. 301 */ 302 static int single_step_dabr_instruction(struct die_args *args) 303 { 304 struct pt_regs *regs = args->regs; 305 struct perf_event *bp = NULL; 306 struct arch_hw_breakpoint *info; 307 308 bp = current->thread.last_hit_ubp; 309 /* 310 * Check if we are single-stepping as a result of a 311 * previous HW Breakpoint exception 312 */ 313 if (!bp) 314 return NOTIFY_DONE; 315 316 info = counter_arch_bp(bp); 317 318 /* 319 * We shall invoke the user-defined callback function in the single 320 * stepping handler to confirm to 'trigger-after-execute' semantics 321 */ 322 if (!(info->type & HW_BRK_TYPE_EXTRANEOUS_IRQ)) 323 perf_bp_event(bp, regs); 324 325 __set_breakpoint(info); 326 current->thread.last_hit_ubp = NULL; 327 328 /* 329 * If the process was being single-stepped by ptrace, let the 330 * other single-step actions occur (e.g. generate SIGTRAP). 331 */ 332 if (test_thread_flag(TIF_SINGLESTEP)) 333 return NOTIFY_DONE; 334 335 return NOTIFY_STOP; 336 } 337 NOKPROBE_SYMBOL(single_step_dabr_instruction); 338 339 /* 340 * Handle debug exception notifications. 341 */ 342 int hw_breakpoint_exceptions_notify( 343 struct notifier_block *unused, unsigned long val, void *data) 344 { 345 int ret = NOTIFY_DONE; 346 347 switch (val) { 348 case DIE_DABR_MATCH: 349 ret = hw_breakpoint_handler(data); 350 break; 351 case DIE_SSTEP: 352 ret = single_step_dabr_instruction(data); 353 break; 354 } 355 356 return ret; 357 } 358 NOKPROBE_SYMBOL(hw_breakpoint_exceptions_notify); 359 360 /* 361 * Release the user breakpoints used by ptrace 362 */ 363 void flush_ptrace_hw_breakpoint(struct task_struct *tsk) 364 { 365 struct thread_struct *t = &tsk->thread; 366 367 unregister_hw_breakpoint(t->ptrace_bps[0]); 368 t->ptrace_bps[0] = NULL; 369 } 370 371 void hw_breakpoint_pmu_read(struct perf_event *bp) 372 { 373 /* TODO */ 374 } 375