1 /* 2 * Kernel Probes Jump Optimization (Optprobes) 3 * 4 * This program is free software; you can redistribute it and/or modify 5 * it under the terms of the GNU General Public License as published by 6 * the Free Software Foundation; either version 2 of the License, or 7 * (at your option) any later version. 8 * 9 * This program is distributed in the hope that it will be useful, 10 * but WITHOUT ANY WARRANTY; without even the implied warranty of 11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 12 * GNU General Public License for more details. 13 * 14 * You should have received a copy of the GNU General Public License 15 * along with this program; if not, write to the Free Software 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. 17 * 18 * Copyright (C) IBM Corporation, 2002, 2004 19 * Copyright (C) Hitachi Ltd., 2012 20 */ 21 #include <linux/kprobes.h> 22 #include <linux/ptrace.h> 23 #include <linux/string.h> 24 #include <linux/slab.h> 25 #include <linux/hardirq.h> 26 #include <linux/preempt.h> 27 #include <linux/extable.h> 28 #include <linux/kdebug.h> 29 #include <linux/kallsyms.h> 30 #include <linux/ftrace.h> 31 #include <linux/frame.h> 32 33 #include <asm/text-patching.h> 34 #include <asm/cacheflush.h> 35 #include <asm/desc.h> 36 #include <asm/pgtable.h> 37 #include <linux/uaccess.h> 38 #include <asm/alternative.h> 39 #include <asm/insn.h> 40 #include <asm/debugreg.h> 41 #include <asm/set_memory.h> 42 43 #include "common.h" 44 45 unsigned long __recover_optprobed_insn(kprobe_opcode_t *buf, unsigned long addr) 46 { 47 struct optimized_kprobe *op; 48 struct kprobe *kp; 49 long offs; 50 int i; 51 52 for (i = 0; i < RELATIVEJUMP_SIZE; i++) { 53 kp = get_kprobe((void *)addr - i); 54 /* This function only handles jump-optimized kprobe */ 55 if (kp && kprobe_optimized(kp)) { 56 op = container_of(kp, struct optimized_kprobe, kp); 57 /* If op->list is not empty, op is under optimizing */ 58 if (list_empty(&op->list)) 59 goto found; 60 } 61 } 62 63 return addr; 64 found: 65 /* 66 * If the kprobe can be optimized, original bytes which can be 67 * overwritten by jump destination address. In this case, original 68 * bytes must be recovered from op->optinsn.copied_insn buffer. 69 */ 70 if (probe_kernel_read(buf, (void *)addr, 71 MAX_INSN_SIZE * sizeof(kprobe_opcode_t))) 72 return 0UL; 73 74 if (addr == (unsigned long)kp->addr) { 75 buf[0] = kp->opcode; 76 memcpy(buf + 1, op->optinsn.copied_insn, RELATIVE_ADDR_SIZE); 77 } else { 78 offs = addr - (unsigned long)kp->addr - 1; 79 memcpy(buf, op->optinsn.copied_insn + offs, RELATIVE_ADDR_SIZE - offs); 80 } 81 82 return (unsigned long)buf; 83 } 84 85 /* Insert a move instruction which sets a pointer to eax/rdi (1st arg). */ 86 static void synthesize_set_arg1(kprobe_opcode_t *addr, unsigned long val) 87 { 88 #ifdef CONFIG_X86_64 89 *addr++ = 0x48; 90 *addr++ = 0xbf; 91 #else 92 *addr++ = 0xb8; 93 #endif 94 *(unsigned long *)addr = val; 95 } 96 97 asm ( 98 "optprobe_template_func:\n" 99 ".global optprobe_template_entry\n" 100 "optprobe_template_entry:\n" 101 #ifdef CONFIG_X86_64 102 /* We don't bother saving the ss register */ 103 " pushq %rsp\n" 104 " pushfq\n" 105 SAVE_REGS_STRING 106 " movq %rsp, %rsi\n" 107 ".global optprobe_template_val\n" 108 "optprobe_template_val:\n" 109 ASM_NOP5 110 ASM_NOP5 111 ".global optprobe_template_call\n" 112 "optprobe_template_call:\n" 113 ASM_NOP5 114 /* Move flags to rsp */ 115 " movq 144(%rsp), %rdx\n" 116 " movq %rdx, 152(%rsp)\n" 117 RESTORE_REGS_STRING 118 /* Skip flags entry */ 119 " addq $8, %rsp\n" 120 " popfq\n" 121 #else /* CONFIG_X86_32 */ 122 " pushf\n" 123 SAVE_REGS_STRING 124 " movl %esp, %edx\n" 125 ".global optprobe_template_val\n" 126 "optprobe_template_val:\n" 127 ASM_NOP5 128 ".global optprobe_template_call\n" 129 "optprobe_template_call:\n" 130 ASM_NOP5 131 RESTORE_REGS_STRING 132 " addl $4, %esp\n" /* skip cs */ 133 " popf\n" 134 #endif 135 ".global optprobe_template_end\n" 136 "optprobe_template_end:\n" 137 ".type optprobe_template_func, @function\n" 138 ".size optprobe_template_func, .-optprobe_template_func\n"); 139 140 void optprobe_template_func(void); 141 STACK_FRAME_NON_STANDARD(optprobe_template_func); 142 143 #define TMPL_MOVE_IDX \ 144 ((long)&optprobe_template_val - (long)&optprobe_template_entry) 145 #define TMPL_CALL_IDX \ 146 ((long)&optprobe_template_call - (long)&optprobe_template_entry) 147 #define TMPL_END_IDX \ 148 ((long)&optprobe_template_end - (long)&optprobe_template_entry) 149 150 #define INT3_SIZE sizeof(kprobe_opcode_t) 151 152 /* Optimized kprobe call back function: called from optinsn */ 153 static void 154 optimized_callback(struct optimized_kprobe *op, struct pt_regs *regs) 155 { 156 struct kprobe_ctlblk *kcb = get_kprobe_ctlblk(); 157 unsigned long flags; 158 159 /* This is possible if op is under delayed unoptimizing */ 160 if (kprobe_disabled(&op->kp)) 161 return; 162 163 local_irq_save(flags); 164 if (kprobe_running()) { 165 kprobes_inc_nmissed_count(&op->kp); 166 } else { 167 /* Save skipped registers */ 168 #ifdef CONFIG_X86_64 169 regs->cs = __KERNEL_CS; 170 #else 171 regs->cs = __KERNEL_CS | get_kernel_rpl(); 172 regs->gs = 0; 173 #endif 174 regs->ip = (unsigned long)op->kp.addr + INT3_SIZE; 175 regs->orig_ax = ~0UL; 176 177 __this_cpu_write(current_kprobe, &op->kp); 178 kcb->kprobe_status = KPROBE_HIT_ACTIVE; 179 opt_pre_handler(&op->kp, regs); 180 __this_cpu_write(current_kprobe, NULL); 181 } 182 local_irq_restore(flags); 183 } 184 NOKPROBE_SYMBOL(optimized_callback); 185 186 static int copy_optimized_instructions(u8 *dest, u8 *src) 187 { 188 struct insn insn; 189 int len = 0, ret; 190 191 while (len < RELATIVEJUMP_SIZE) { 192 ret = __copy_instruction(dest + len, src + len, &insn); 193 if (!ret || !can_boost(&insn, src + len)) 194 return -EINVAL; 195 len += ret; 196 } 197 /* Check whether the address range is reserved */ 198 if (ftrace_text_reserved(src, src + len - 1) || 199 alternatives_text_reserved(src, src + len - 1) || 200 jump_label_text_reserved(src, src + len - 1)) 201 return -EBUSY; 202 203 return len; 204 } 205 206 /* Check whether insn is indirect jump */ 207 static int insn_is_indirect_jump(struct insn *insn) 208 { 209 return ((insn->opcode.bytes[0] == 0xff && 210 (X86_MODRM_REG(insn->modrm.value) & 6) == 4) || /* Jump */ 211 insn->opcode.bytes[0] == 0xea); /* Segment based jump */ 212 } 213 214 /* Check whether insn jumps into specified address range */ 215 static int insn_jump_into_range(struct insn *insn, unsigned long start, int len) 216 { 217 unsigned long target = 0; 218 219 switch (insn->opcode.bytes[0]) { 220 case 0xe0: /* loopne */ 221 case 0xe1: /* loope */ 222 case 0xe2: /* loop */ 223 case 0xe3: /* jcxz */ 224 case 0xe9: /* near relative jump */ 225 case 0xeb: /* short relative jump */ 226 break; 227 case 0x0f: 228 if ((insn->opcode.bytes[1] & 0xf0) == 0x80) /* jcc near */ 229 break; 230 return 0; 231 default: 232 if ((insn->opcode.bytes[0] & 0xf0) == 0x70) /* jcc short */ 233 break; 234 return 0; 235 } 236 target = (unsigned long)insn->next_byte + insn->immediate.value; 237 238 return (start <= target && target <= start + len); 239 } 240 241 /* Decode whole function to ensure any instructions don't jump into target */ 242 static int can_optimize(unsigned long paddr) 243 { 244 unsigned long addr, size = 0, offset = 0; 245 struct insn insn; 246 kprobe_opcode_t buf[MAX_INSN_SIZE]; 247 248 /* Lookup symbol including addr */ 249 if (!kallsyms_lookup_size_offset(paddr, &size, &offset)) 250 return 0; 251 252 /* 253 * Do not optimize in the entry code due to the unstable 254 * stack handling. 255 */ 256 if ((paddr >= (unsigned long)__entry_text_start) && 257 (paddr < (unsigned long)__entry_text_end)) 258 return 0; 259 260 /* Check there is enough space for a relative jump. */ 261 if (size - offset < RELATIVEJUMP_SIZE) 262 return 0; 263 264 /* Decode instructions */ 265 addr = paddr - offset; 266 while (addr < paddr - offset + size) { /* Decode until function end */ 267 unsigned long recovered_insn; 268 if (search_exception_tables(addr)) 269 /* 270 * Since some fixup code will jumps into this function, 271 * we can't optimize kprobe in this function. 272 */ 273 return 0; 274 recovered_insn = recover_probed_instruction(buf, addr); 275 if (!recovered_insn) 276 return 0; 277 kernel_insn_init(&insn, (void *)recovered_insn, MAX_INSN_SIZE); 278 insn_get_length(&insn); 279 /* Another subsystem puts a breakpoint */ 280 if (insn.opcode.bytes[0] == BREAKPOINT_INSTRUCTION) 281 return 0; 282 /* Recover address */ 283 insn.kaddr = (void *)addr; 284 insn.next_byte = (void *)(addr + insn.length); 285 /* Check any instructions don't jump into target */ 286 if (insn_is_indirect_jump(&insn) || 287 insn_jump_into_range(&insn, paddr + INT3_SIZE, 288 RELATIVE_ADDR_SIZE)) 289 return 0; 290 addr += insn.length; 291 } 292 293 return 1; 294 } 295 296 /* Check optimized_kprobe can actually be optimized. */ 297 int arch_check_optimized_kprobe(struct optimized_kprobe *op) 298 { 299 int i; 300 struct kprobe *p; 301 302 for (i = 1; i < op->optinsn.size; i++) { 303 p = get_kprobe(op->kp.addr + i); 304 if (p && !kprobe_disabled(p)) 305 return -EEXIST; 306 } 307 308 return 0; 309 } 310 311 /* Check the addr is within the optimized instructions. */ 312 int arch_within_optimized_kprobe(struct optimized_kprobe *op, 313 unsigned long addr) 314 { 315 return ((unsigned long)op->kp.addr <= addr && 316 (unsigned long)op->kp.addr + op->optinsn.size > addr); 317 } 318 319 /* Free optimized instruction slot */ 320 static 321 void __arch_remove_optimized_kprobe(struct optimized_kprobe *op, int dirty) 322 { 323 if (op->optinsn.insn) { 324 free_optinsn_slot(op->optinsn.insn, dirty); 325 op->optinsn.insn = NULL; 326 op->optinsn.size = 0; 327 } 328 } 329 330 void arch_remove_optimized_kprobe(struct optimized_kprobe *op) 331 { 332 __arch_remove_optimized_kprobe(op, 1); 333 } 334 335 /* 336 * Copy replacing target instructions 337 * Target instructions MUST be relocatable (checked inside) 338 * This is called when new aggr(opt)probe is allocated or reused. 339 */ 340 int arch_prepare_optimized_kprobe(struct optimized_kprobe *op, 341 struct kprobe *__unused) 342 { 343 u8 *buf; 344 int ret; 345 long rel; 346 347 if (!can_optimize((unsigned long)op->kp.addr)) 348 return -EILSEQ; 349 350 op->optinsn.insn = get_optinsn_slot(); 351 if (!op->optinsn.insn) 352 return -ENOMEM; 353 354 /* 355 * Verify if the address gap is in 2GB range, because this uses 356 * a relative jump. 357 */ 358 rel = (long)op->optinsn.insn - (long)op->kp.addr + RELATIVEJUMP_SIZE; 359 if (abs(rel) > 0x7fffffff) { 360 __arch_remove_optimized_kprobe(op, 0); 361 return -ERANGE; 362 } 363 364 buf = (u8 *)op->optinsn.insn; 365 set_memory_rw((unsigned long)buf & PAGE_MASK, 1); 366 367 /* Copy instructions into the out-of-line buffer */ 368 ret = copy_optimized_instructions(buf + TMPL_END_IDX, op->kp.addr); 369 if (ret < 0) { 370 __arch_remove_optimized_kprobe(op, 0); 371 return ret; 372 } 373 op->optinsn.size = ret; 374 375 /* Copy arch-dep-instance from template */ 376 memcpy(buf, &optprobe_template_entry, TMPL_END_IDX); 377 378 /* Set probe information */ 379 synthesize_set_arg1(buf + TMPL_MOVE_IDX, (unsigned long)op); 380 381 /* Set probe function call */ 382 synthesize_relcall(buf + TMPL_CALL_IDX, optimized_callback); 383 384 /* Set returning jmp instruction at the tail of out-of-line buffer */ 385 synthesize_reljump(buf + TMPL_END_IDX + op->optinsn.size, 386 (u8 *)op->kp.addr + op->optinsn.size); 387 388 set_memory_ro((unsigned long)buf & PAGE_MASK, 1); 389 390 flush_icache_range((unsigned long) buf, 391 (unsigned long) buf + TMPL_END_IDX + 392 op->optinsn.size + RELATIVEJUMP_SIZE); 393 return 0; 394 } 395 396 /* 397 * Replace breakpoints (int3) with relative jumps. 398 * Caller must call with locking kprobe_mutex and text_mutex. 399 */ 400 void arch_optimize_kprobes(struct list_head *oplist) 401 { 402 struct optimized_kprobe *op, *tmp; 403 u8 insn_buf[RELATIVEJUMP_SIZE]; 404 405 list_for_each_entry_safe(op, tmp, oplist, list) { 406 s32 rel = (s32)((long)op->optinsn.insn - 407 ((long)op->kp.addr + RELATIVEJUMP_SIZE)); 408 409 WARN_ON(kprobe_disabled(&op->kp)); 410 411 /* Backup instructions which will be replaced by jump address */ 412 memcpy(op->optinsn.copied_insn, op->kp.addr + INT3_SIZE, 413 RELATIVE_ADDR_SIZE); 414 415 insn_buf[0] = RELATIVEJUMP_OPCODE; 416 *(s32 *)(&insn_buf[1]) = rel; 417 418 text_poke_bp(op->kp.addr, insn_buf, RELATIVEJUMP_SIZE, 419 op->optinsn.insn); 420 421 list_del_init(&op->list); 422 } 423 } 424 425 /* Replace a relative jump with a breakpoint (int3). */ 426 void arch_unoptimize_kprobe(struct optimized_kprobe *op) 427 { 428 u8 insn_buf[RELATIVEJUMP_SIZE]; 429 430 /* Set int3 to first byte for kprobes */ 431 insn_buf[0] = BREAKPOINT_INSTRUCTION; 432 memcpy(insn_buf + 1, op->optinsn.copied_insn, RELATIVE_ADDR_SIZE); 433 text_poke_bp(op->kp.addr, insn_buf, RELATIVEJUMP_SIZE, 434 op->optinsn.insn); 435 } 436 437 /* 438 * Recover original instructions and breakpoints from relative jumps. 439 * Caller must call with locking kprobe_mutex. 440 */ 441 extern void arch_unoptimize_kprobes(struct list_head *oplist, 442 struct list_head *done_list) 443 { 444 struct optimized_kprobe *op, *tmp; 445 446 list_for_each_entry_safe(op, tmp, oplist, list) { 447 arch_unoptimize_kprobe(op); 448 list_move(&op->list, done_list); 449 } 450 } 451 452 int setup_detour_execution(struct kprobe *p, struct pt_regs *regs, int reenter) 453 { 454 struct optimized_kprobe *op; 455 456 if (p->flags & KPROBE_FLAG_OPTIMIZED) { 457 /* This kprobe is really able to run optimized path. */ 458 op = container_of(p, struct optimized_kprobe, kp); 459 /* Detour through copied instructions */ 460 regs->ip = (unsigned long)op->optinsn.insn + TMPL_END_IDX; 461 if (!reenter) 462 reset_current_kprobe(); 463 preempt_enable_no_resched(); 464 return 1; 465 } 466 return 0; 467 } 468 NOKPROBE_SYMBOL(setup_detour_execution); 469