1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright 2008 Michael Ellerman, IBM Corporation.
6 #include <linux/kprobes.h>
7 #include <linux/mmu_context.h>
8 #include <linux/random.h>
9 #include <linux/vmalloc.h>
10 #include <linux/init.h>
11 #include <linux/cpuhotplug.h>
12 #include <linux/uaccess.h>
13 #include <linux/jump_label.h>
15 #include <asm/debug.h>
16 #include <asm/pgalloc.h>
18 #include <asm/tlbflush.h>
20 #include <asm/code-patching.h>
23 static int __patch_instruction(u32 *exec_addr, ppc_inst_t instr, u32 *patch_addr)
25 if (!ppc_inst_prefixed(instr)) {
26 u32 val = ppc_inst_val(instr);
28 __put_kernel_nofault(patch_addr, &val, u32, failed);
30 u64 val = ppc_inst_as_ulong(instr);
32 __put_kernel_nofault(patch_addr, &val, u64, failed);
35 asm ("dcbst 0, %0; sync; icbi 0,%1; sync; isync" :: "r" (patch_addr),
44 int raw_patch_instruction(u32 *addr, ppc_inst_t instr)
46 return __patch_instruction(addr, instr, addr);
49 #ifdef CONFIG_STRICT_KERNEL_RWX
51 static DEFINE_PER_CPU(struct vm_struct *, text_poke_area);
52 static DEFINE_PER_CPU(struct mm_struct *, cpu_patching_mm);
53 static DEFINE_PER_CPU(unsigned long, cpu_patching_addr);
54 static DEFINE_PER_CPU(pte_t *, cpu_patching_pte);
56 static int map_patch_area(void *addr, unsigned long text_poke_addr);
57 static void unmap_patch_area(unsigned long addr);
59 static bool mm_patch_enabled(void)
61 return IS_ENABLED(CONFIG_SMP) && radix_enabled();
65 * The following applies for Radix MMU. Hash MMU has different requirements,
66 * and so is not supported.
68 * Changing mm requires context synchronising instructions on both sides of
69 * the context switch, as well as a hwsync between the last instruction for
70 * which the address of an associated storage access was translated using
71 * the current context.
73 * switch_mm_irqs_off() performs an isync after the context switch. It is
74 * the responsibility of the caller to perform the CSI and hwsync before
75 * starting/stopping the temp mm.
77 static struct mm_struct *start_using_temp_mm(struct mm_struct *temp_mm)
79 struct mm_struct *orig_mm = current->active_mm;
81 lockdep_assert_irqs_disabled();
82 switch_mm_irqs_off(orig_mm, temp_mm, current);
84 WARN_ON(!mm_is_thread_local(temp_mm));
86 suspend_breakpoints();
90 static void stop_using_temp_mm(struct mm_struct *temp_mm,
91 struct mm_struct *orig_mm)
93 lockdep_assert_irqs_disabled();
94 switch_mm_irqs_off(temp_mm, orig_mm, current);
95 restore_breakpoints();
98 static int text_area_cpu_up(unsigned int cpu)
100 struct vm_struct *area;
104 area = get_vm_area(PAGE_SIZE, VM_ALLOC);
106 WARN_ONCE(1, "Failed to create text area for cpu %d\n",
111 // Map/unmap the area to ensure all page tables are pre-allocated
112 addr = (unsigned long)area->addr;
113 err = map_patch_area(empty_zero_page, addr);
117 unmap_patch_area(addr);
119 this_cpu_write(text_poke_area, area);
124 static int text_area_cpu_down(unsigned int cpu)
126 free_vm_area(this_cpu_read(text_poke_area));
130 static void put_patching_mm(struct mm_struct *mm, unsigned long patching_addr)
132 struct mmu_gather tlb;
134 tlb_gather_mmu(&tlb, mm);
135 free_pgd_range(&tlb, patching_addr, patching_addr + PAGE_SIZE, 0, 0);
139 static int text_area_cpu_up_mm(unsigned int cpu)
141 struct mm_struct *mm;
151 * Choose a random page-aligned address from the interval
152 * [PAGE_SIZE .. DEFAULT_MAP_WINDOW - PAGE_SIZE].
153 * The lower address bound is PAGE_SIZE to avoid the zero-page.
155 addr = (1 + (get_random_long() % (DEFAULT_MAP_WINDOW / PAGE_SIZE - 2))) << PAGE_SHIFT;
158 * PTE allocation uses GFP_KERNEL which means we need to
159 * pre-allocate the PTE here because we cannot do the
160 * allocation during patching when IRQs are disabled.
162 * Using get_locked_pte() to avoid open coding, the lock
165 pte = get_locked_pte(mm, addr, &ptl);
168 pte_unmap_unlock(pte, ptl);
170 this_cpu_write(cpu_patching_mm, mm);
171 this_cpu_write(cpu_patching_addr, addr);
172 this_cpu_write(cpu_patching_pte, pte);
177 put_patching_mm(mm, addr);
182 static int text_area_cpu_down_mm(unsigned int cpu)
184 put_patching_mm(this_cpu_read(cpu_patching_mm),
185 this_cpu_read(cpu_patching_addr));
187 this_cpu_write(cpu_patching_mm, NULL);
188 this_cpu_write(cpu_patching_addr, 0);
189 this_cpu_write(cpu_patching_pte, NULL);
194 static __ro_after_init DEFINE_STATIC_KEY_FALSE(poking_init_done);
196 void __init poking_init(void)
200 if (mm_patch_enabled())
201 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
202 "powerpc/text_poke_mm:online",
204 text_area_cpu_down_mm);
206 ret = cpuhp_setup_state(CPUHP_AP_ONLINE_DYN,
207 "powerpc/text_poke:online",
211 /* cpuhp_setup_state returns >= 0 on success */
212 if (WARN_ON(ret < 0))
215 static_branch_enable(&poking_init_done);
218 static unsigned long get_patch_pfn(void *addr)
220 if (IS_ENABLED(CONFIG_MODULES) && is_vmalloc_or_module_addr(addr))
221 return vmalloc_to_pfn(addr);
223 return __pa_symbol(addr) >> PAGE_SHIFT;
227 * This can be called for kernel text or a module.
229 static int map_patch_area(void *addr, unsigned long text_poke_addr)
231 unsigned long pfn = get_patch_pfn(addr);
233 return map_kernel_page(text_poke_addr, (pfn << PAGE_SHIFT), PAGE_KERNEL);
236 static void unmap_patch_area(unsigned long addr)
244 pgdp = pgd_offset_k(addr);
245 if (WARN_ON(pgd_none(*pgdp)))
248 p4dp = p4d_offset(pgdp, addr);
249 if (WARN_ON(p4d_none(*p4dp)))
252 pudp = pud_offset(p4dp, addr);
253 if (WARN_ON(pud_none(*pudp)))
256 pmdp = pmd_offset(pudp, addr);
257 if (WARN_ON(pmd_none(*pmdp)))
260 ptep = pte_offset_kernel(pmdp, addr);
261 if (WARN_ON(pte_none(*ptep)))
265 * In hash, pte_clear flushes the tlb, in radix, we have to
267 pte_clear(&init_mm, addr, ptep);
268 flush_tlb_kernel_range(addr, addr + PAGE_SIZE);
271 static int __do_patch_instruction_mm(u32 *addr, ppc_inst_t instr)
275 unsigned long text_poke_addr;
277 unsigned long pfn = get_patch_pfn(addr);
278 struct mm_struct *patching_mm;
279 struct mm_struct *orig_mm;
281 patching_mm = __this_cpu_read(cpu_patching_mm);
282 pte = __this_cpu_read(cpu_patching_pte);
283 text_poke_addr = __this_cpu_read(cpu_patching_addr);
284 patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
286 __set_pte_at(patching_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
288 /* order PTE update before use, also serves as the hwsync */
289 asm volatile("ptesync": : :"memory");
291 /* order context switch after arbitrary prior code */
294 orig_mm = start_using_temp_mm(patching_mm);
296 err = __patch_instruction(addr, instr, patch_addr);
298 /* hwsync performed by __patch_instruction (sync) if successful */
302 /* context synchronisation performed by __patch_instruction (isync or exception) */
303 stop_using_temp_mm(patching_mm, orig_mm);
305 pte_clear(patching_mm, text_poke_addr, pte);
307 * ptesync to order PTE update before TLB invalidation done
308 * by radix__local_flush_tlb_page_psize (in _tlbiel_va)
310 local_flush_tlb_page_psize(patching_mm, text_poke_addr, mmu_virtual_psize);
315 static int __do_patch_instruction(u32 *addr, ppc_inst_t instr)
319 unsigned long text_poke_addr;
321 unsigned long pfn = get_patch_pfn(addr);
323 text_poke_addr = (unsigned long)__this_cpu_read(text_poke_area)->addr & PAGE_MASK;
324 patch_addr = (u32 *)(text_poke_addr + offset_in_page(addr));
326 pte = virt_to_kpte(text_poke_addr);
327 __set_pte_at(&init_mm, text_poke_addr, pte, pfn_pte(pfn, PAGE_KERNEL), 0);
328 /* See ptesync comment in radix__set_pte_at() */
330 asm volatile("ptesync": : :"memory");
332 err = __patch_instruction(addr, instr, patch_addr);
334 pte_clear(&init_mm, text_poke_addr, pte);
335 flush_tlb_kernel_range(text_poke_addr, text_poke_addr + PAGE_SIZE);
340 static int do_patch_instruction(u32 *addr, ppc_inst_t instr)
346 * During early early boot patch_instruction is called
347 * when text_poke_area is not ready, but we still need
348 * to allow patching. We just do the plain old patching
350 if (!static_branch_likely(&poking_init_done))
351 return raw_patch_instruction(addr, instr);
353 local_irq_save(flags);
354 if (mm_patch_enabled())
355 err = __do_patch_instruction_mm(addr, instr);
357 err = __do_patch_instruction(addr, instr);
358 local_irq_restore(flags);
362 #else /* !CONFIG_STRICT_KERNEL_RWX */
364 static int do_patch_instruction(u32 *addr, ppc_inst_t instr)
366 return raw_patch_instruction(addr, instr);
369 #endif /* CONFIG_STRICT_KERNEL_RWX */
371 __ro_after_init DEFINE_STATIC_KEY_FALSE(init_mem_is_free);
373 int patch_instruction(u32 *addr, ppc_inst_t instr)
375 /* Make sure we aren't patching a freed init section */
376 if (static_branch_likely(&init_mem_is_free) && init_section_contains(addr, 4))
379 return do_patch_instruction(addr, instr);
381 NOKPROBE_SYMBOL(patch_instruction);
383 int patch_branch(u32 *addr, unsigned long target, int flags)
387 if (create_branch(&instr, addr, target, flags))
390 return patch_instruction(addr, instr);
394 * Helper to check if a given instruction is a conditional branch
395 * Derived from the conditional checks in analyse_instr()
397 bool is_conditional_branch(ppc_inst_t instr)
399 unsigned int opcode = ppc_inst_primary_opcode(instr);
401 if (opcode == 16) /* bc, bca, bcl, bcla */
404 switch ((ppc_inst_val(instr) >> 1) & 0x3ff) {
405 case 16: /* bclr, bclrl */
406 case 528: /* bcctr, bcctrl */
407 case 560: /* bctar, bctarl */
413 NOKPROBE_SYMBOL(is_conditional_branch);
415 int create_cond_branch(ppc_inst_t *instr, const u32 *addr,
416 unsigned long target, int flags)
421 if (! (flags & BRANCH_ABSOLUTE))
422 offset = offset - (unsigned long)addr;
424 /* Check we can represent the target in the instruction format */
425 if (!is_offset_in_cond_branch_range(offset))
428 /* Mask out the flags and target, so they don't step on each other. */
429 *instr = ppc_inst(0x40000000 | (flags & 0x3FF0003) | (offset & 0xFFFC));
434 int instr_is_relative_branch(ppc_inst_t instr)
436 if (ppc_inst_val(instr) & BRANCH_ABSOLUTE)
439 return instr_is_branch_iform(instr) || instr_is_branch_bform(instr);
442 int instr_is_relative_link_branch(ppc_inst_t instr)
444 return instr_is_relative_branch(instr) && (ppc_inst_val(instr) & BRANCH_SET_LINK);
447 static unsigned long branch_iform_target(const u32 *instr)
451 imm = ppc_inst_val(ppc_inst_read(instr)) & 0x3FFFFFC;
453 /* If the top bit of the immediate value is set this is negative */
457 if ((ppc_inst_val(ppc_inst_read(instr)) & BRANCH_ABSOLUTE) == 0)
458 imm += (unsigned long)instr;
460 return (unsigned long)imm;
463 static unsigned long branch_bform_target(const u32 *instr)
467 imm = ppc_inst_val(ppc_inst_read(instr)) & 0xFFFC;
469 /* If the top bit of the immediate value is set this is negative */
473 if ((ppc_inst_val(ppc_inst_read(instr)) & BRANCH_ABSOLUTE) == 0)
474 imm += (unsigned long)instr;
476 return (unsigned long)imm;
479 unsigned long branch_target(const u32 *instr)
481 if (instr_is_branch_iform(ppc_inst_read(instr)))
482 return branch_iform_target(instr);
483 else if (instr_is_branch_bform(ppc_inst_read(instr)))
484 return branch_bform_target(instr);
489 int translate_branch(ppc_inst_t *instr, const u32 *dest, const u32 *src)
491 unsigned long target;
492 target = branch_target(src);
494 if (instr_is_branch_iform(ppc_inst_read(src)))
495 return create_branch(instr, dest, target,
496 ppc_inst_val(ppc_inst_read(src)));
497 else if (instr_is_branch_bform(ppc_inst_read(src)))
498 return create_cond_branch(instr, dest, target,
499 ppc_inst_val(ppc_inst_read(src)));