The patch titled Subject: Re: [PATCH] Kprobes x86_64 fix for mark ro data has been added to the -mm tree. Its filename is kprobes-x86_64-fix-for-mark-ro-data.patch *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this ------------------------------------------------------ Subject: Subject: Re: [PATCH] Kprobes x86_64 fix for mark ro data From: "S. P. Prasanna" <prasanna@xxxxxxxxxx> Fix the problem of page protection introduced by CONFIG_DEBUG_RODATA for x86_64 architecture. As per Andi Kleen's suggestion, the kernel text pages are marked writeable only for a short duration to insert or remove the breakpoints. Signed-off-by: Prasanna S P<prasanna@xxxxxxxxxx> Acked-by: Jim Keniston <jkenisto@xxxxxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86_64/kernel/kprobes.c | 26 ++++++++++++++++++++++++++ arch/x86_64/mm/init.c | 6 +++++- include/asm-x86_64/kprobes.h | 10 ++++++++++ 3 files changed, 41 insertions(+), 1 deletion(-) diff -puN arch/x86_64/kernel/kprobes.c~kprobes-x86_64-fix-for-mark-ro-data arch/x86_64/kernel/kprobes.c --- a/arch/x86_64/kernel/kprobes.c~kprobes-x86_64-fix-for-mark-ro-data +++ a/arch/x86_64/kernel/kprobes.c @@ -209,16 +209,42 @@ static void __kprobes arch_copy_kprobe(s void __kprobes arch_arm_kprobe(struct kprobe *p) { + unsigned long addr = (unsigned long)p->addr; + int page_readonly = 0; + + if (kernel_readonly_text(addr)) { + change_page_attr_addr(addr, 1, PAGE_KERNEL_EXEC); + global_flush_tlb(); + page_readonly = 1; + } *p->addr = BREAKPOINT_INSTRUCTION; flush_icache_range((unsigned long) p->addr, (unsigned long) p->addr + sizeof(kprobe_opcode_t)); + if (page_readonly) { + change_page_attr_addr(addr, 1, PAGE_KERNEL_RO); + global_flush_tlb(); + } } void __kprobes arch_disarm_kprobe(struct kprobe *p) { + unsigned long addr = (unsigned long)p->addr; + int page_readonly = 0; + + if (kernel_readonly_text(addr)) { + change_page_attr_addr(addr, 1, PAGE_KERNEL_EXEC); + global_flush_tlb(); + page_readonly = 1; + } + *p->addr = p->opcode; flush_icache_range((unsigned long) p->addr, (unsigned long) p->addr + sizeof(kprobe_opcode_t)); + + if (page_readonly) { + change_page_attr_addr(addr, 1, PAGE_KERNEL_RO); + global_flush_tlb(); + } } void __kprobes arch_remove_kprobe(struct kprobe *p) diff -puN arch/x86_64/mm/init.c~kprobes-x86_64-fix-for-mark-ro-data arch/x86_64/mm/init.c --- a/arch/x86_64/mm/init.c~kprobes-x86_64-fix-for-mark-ro-data +++ a/arch/x86_64/mm/init.c @@ -48,6 +48,7 @@ #define Dprintk(x...) #endif +int kernel_text_is_ro; const struct dma_mapping_ops* dma_ops; EXPORT_SYMBOL(dma_ops); @@ -600,10 +601,13 @@ void mark_rodata_ro(void) { unsigned long start = (unsigned long)_stext, end; + kernel_text_is_ro = 1; #ifdef CONFIG_HOTPLUG_CPU /* It must still be possible to apply SMP alternatives. */ - if (num_possible_cpus() > 1) + if (num_possible_cpus() > 1) { start = (unsigned long)_etext; + kernel_text_is_ro = 0; + } #endif end = (unsigned long)__end_rodata; start = (start + PAGE_SIZE - 1) & PAGE_MASK; diff -puN include/asm-x86_64/kprobes.h~kprobes-x86_64-fix-for-mark-ro-data include/asm-x86_64/kprobes.h --- a/include/asm-x86_64/kprobes.h~kprobes-x86_64-fix-for-mark-ro-data +++ a/include/asm-x86_64/kprobes.h @@ -26,6 +26,7 @@ #include <linux/types.h> #include <linux/ptrace.h> #include <linux/percpu.h> +#include <asm-generic/sections.h> #define __ARCH_WANT_KPROBES_INSN_SLOT @@ -88,4 +89,13 @@ extern int kprobe_handler(struct pt_regs extern int kprobe_exceptions_notify(struct notifier_block *self, unsigned long val, void *data); +extern int kernel_text_is_ro; +static inline int kernel_readonly_text(unsigned long address) +{ + if (kernel_text_is_ro && ((address >= (unsigned long)_stext) + && (address < (unsigned long) _etext))) + return 1; + + return 0; +} #endif /* _ASM_KPROBES_H */ _ Patches currently in -mm which might be from prasanna@xxxxxxxxxx are kprobes-x86_64-fix-for-mark-ro-data.patch - To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html