]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
riscv: Fix early ftrace nop patching
authorAlexandre Ghiti <alexghiti@rivosinc.com>
Thu, 23 May 2024 11:51:34 +0000 (13:51 +0200)
committerPalmer Dabbelt <palmer@rivosinc.com>
Thu, 23 May 2024 15:22:17 +0000 (08:22 -0700)
Commit c97bf629963e ("riscv: Fix text patching when IPI are used")
converted ftrace_make_nop() to use patch_insn_write() which does not
emit any icache flush relying entirely on __ftrace_modify_code() to do
that.

But we missed that ftrace_make_nop() was called very early directly when
converting mcount calls into nops (actually on riscv it converts 2B nops
emitted by the compiler into 4B nops).

This caused crashes on multiple HW as reported by Conor and Björn since
the booting core could have half-patched instructions in its icache
which would trigger an illegal instruction trap: fix this by emitting a
local flush icache when early patching nops.

Fixes: c97bf629963e ("riscv: Fix text patching when IPI are used")
Signed-off-by: Alexandre Ghiti <alexghiti@rivosinc.com>
Reported-by: Conor Dooley <conor.dooley@microchip.com>
Tested-by: Conor Dooley <conor.dooley@microchip.com>
Reviewed-by: Björn Töpel <bjorn@rivosinc.com>
Tested-by: Björn Töpel <bjorn@rivosinc.com>
Link: https://lore.kernel.org/r/20240523115134.70380-1-alexghiti@rivosinc.com
Signed-off-by: Palmer Dabbelt <palmer@rivosinc.com>
arch/riscv/include/asm/cacheflush.h
arch/riscv/kernel/ftrace.c

index dd8d07146116c8c4629c850b71049053094a92d8..ce79c558a4c85a41f708b8351e898e91b938fc6e 100644 (file)
@@ -13,6 +13,12 @@ static inline void local_flush_icache_all(void)
        asm volatile ("fence.i" ::: "memory");
 }
 
+static inline void local_flush_icache_range(unsigned long start,
+                                           unsigned long end)
+{
+       local_flush_icache_all();
+}
+
 #define PG_dcache_clean PG_arch_1
 
 static inline void flush_dcache_folio(struct folio *folio)
index 4d14eadcd76513677556cbaa29613a1d0ccdcdf5..87cbd86576b281706e46b5778e6593498d095120 100644 (file)
@@ -120,6 +120,9 @@ int ftrace_init_nop(struct module *mod, struct dyn_ftrace *rec)
        out = ftrace_make_nop(mod, rec, MCOUNT_ADDR);
        mutex_unlock(&text_mutex);
 
+       if (!mod)
+               local_flush_icache_range(rec->ip, rec->ip + MCOUNT_INSN_SIZE);
+
        return out;
 }