linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH] ARM: unwind: improve unwinders for noreturn case
           [not found] <1709516385-7778-1-git-send-email-xiaojiangfeng@huawei.com>
           [not found] ` <CAG48ez1h9X7Qv-5OR6hAhwnSOng6_PSXBaR6cT7xrk2Wzu39Yg@mail.gmail.com>
    @ 2024-03-20  2:19 ` Jiangfeng Xiao
      2024-03-20  2:46   ` Kees Cook
      2024-03-20  3:44 ` [PATCH v2] " Jiangfeng Xiao
      2024-03-20 15:41 ` [PATCH v3] " Jiangfeng Xiao
      3 siblings, 1 reply; 34+ messages in thread
    From: Jiangfeng Xiao @ 2024-03-20  2:19 UTC (permalink / raw)
      To: linux, arnd, keescook, rmk+kernel, haibo.li,
    	angelogioacchino.delregno, amergnat, xiaojiangfeng
      Cc: akpm, dave.hansen, douzhaolei, gustavoars, jpoimboe,
    	kepler.chenxin, kirill.shutemov, linux-hardening, linux-kernel,
    	linux-mm, linux-arm-kernel, nixiaoming, peterz, wangbing6,
    	wangfangpeng1, jannh, David.Laight
    
    This is an off-by-one bug which is common in unwinders,
    due to the fact that the address on the stack points
    to the return address rather than the call address.
    
    So, for example, when the last instruction of a function
    is a function call (e.g., to a noreturn function), it can
    cause the unwinder to incorrectly try to unwind from
    the function after the callee.
    
    foo:
    ...
    	bl	bar
    ... end of function and thus next function ...
    
    which results in LR pointing into the next function.
    
    Fixed this by subtracting 1 from frmae->pc in the call frame
    (but not exception frames) like ORC on x86 does.
    
    Refer to the unwind_next_frame function in the unwind_orc.c
    
    Suggested-by: Josh Poimboeuf <jpoimboe@kernel.org>
    Link: https://lkml.kernel.org/lkml/20240305175846.qnyiru7uaa7itqba@treble/
    Signed-off-by: Jiangfeng Xiao <xiaojiangfeng@huawei.com>
    ---
     arch/arm/include/asm/stacktrace.h |  4 ----
     arch/arm/kernel/stacktrace.c      |  2 --
     arch/arm/kernel/traps.c           |  4 ++--
     arch/arm/kernel/unwind.c          | 18 +++++++++++++++---
     4 files changed, 17 insertions(+), 11 deletions(-)
    
    diff --git a/arch/arm/include/asm/stacktrace.h b/arch/arm/include/asm/stacktrace.h
    index 360f0d2..07e4c16 100644
    --- a/arch/arm/include/asm/stacktrace.h
    +++ b/arch/arm/include/asm/stacktrace.h
    @@ -21,9 +21,7 @@ struct stackframe {
     	struct llist_node *kr_cur;
     	struct task_struct *tsk;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     	bool ex_frame;
    -#endif
     };
     
     static __always_inline
    @@ -37,9 +35,7 @@ void arm_get_current_stackframe(struct pt_regs *regs, struct stackframe *frame)
     		frame->kr_cur = NULL;
     		frame->tsk = current;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     		frame->ex_frame = in_entry_text(frame->pc);
    -#endif
     }
     
     extern int unwind_frame(struct stackframe *frame);
    diff --git a/arch/arm/kernel/stacktrace.c b/arch/arm/kernel/stacktrace.c
    index 620aa82..1abd4f9 100644
    --- a/arch/arm/kernel/stacktrace.c
    +++ b/arch/arm/kernel/stacktrace.c
    @@ -154,9 +154,7 @@ static void start_stack_trace(struct stackframe *frame, struct task_struct *task
     	frame->kr_cur = NULL;
     	frame->tsk = task;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     	frame->ex_frame = in_entry_text(frame->pc);
    -#endif
     }
     
     void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
    diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c
    index 3bad79d..b64e442 100644
    --- a/arch/arm/kernel/traps.c
    +++ b/arch/arm/kernel/traps.c
    @@ -84,10 +84,10 @@ void dump_backtrace_entry(unsigned long where, unsigned long from,
     	printk("%sFunction entered at [<%08lx>] from [<%08lx>]\n",
     		loglvl, where, from);
     #elif defined CONFIG_BACKTRACE_VERBOSE
    -	printk("%s[<%08lx>] (%ps) from [<%08lx>] (%pS)\n",
    +	pr_warn("%s[<%08lx>] (%ps) from [<%08lx>] (%pB)\n",
     		loglvl, where, (void *)where, from, (void *)from);
     #else
    -	printk("%s %ps from %pS\n", loglvl, (void *)where, (void *)from);
    +	pr_warn("%s %ps from %pB\n", loglvl, (void *)where, (void *)from);
     #endif
     
     	if (in_entry_text(from) && end <= ALIGN(frame, THREAD_SIZE))
    diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c
    index 9d21921..f2baf92 100644
    --- a/arch/arm/kernel/unwind.c
    +++ b/arch/arm/kernel/unwind.c
    @@ -30,6 +30,7 @@
     #include <linux/list.h>
     #include <linux/module.h>
     
    +#include <asm/sections.h>
     #include <asm/stacktrace.h>
     #include <asm/traps.h>
     #include <asm/unwind.h>
    @@ -416,8 +417,14 @@ int unwind_frame(struct stackframe *frame)
     
     	pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__,
     		 frame->pc, frame->lr, frame->sp);
    -
    -	idx = unwind_find_idx(frame->pc);
    +	/*
    +	 * For a call frame (as opposed to a exception frame), when the last
    +	 * instruction of a function is a function call (e.g., to a noreturn
    +	 * function), it can cause the unwinder incorrectly try to unwind
    +	 * from the function after the callee, fixed this by subtracting 1
    +	 * from frame->pc in the call frame like ORC on x86 does.
    +	 */
    +	idx = unwind_find_idx(frame->ex_frame ? frame->pc : frame->pc - 1);
     	if (!idx) {
     		if (frame->pc && kernel_text_address(frame->pc)) {
     			if (in_module_plt(frame->pc) && frame->pc != frame->lr) {
    @@ -427,6 +434,7 @@ int unwind_frame(struct stackframe *frame)
     				 * the state of the stack or the register file
     				 */
     				frame->pc = frame->lr;
    +				frame->ex_frame = in_entry_text(frame->pc);
     				return URC_OK;
     			}
     			pr_warn("unwind: Index not found %08lx\n", frame->pc);
    @@ -454,6 +462,7 @@ int unwind_frame(struct stackframe *frame)
     		if (frame->pc == frame->lr)
     			return -URC_FAILURE;
     		frame->pc = frame->lr;
    +		frame->ex_frame = in_entry_text(frame->pc);
     		return URC_OK;
     	} else if ((idx->insn & 0x80000000) == 0)
     		/* prel31 to the unwind table */
    @@ -515,6 +524,7 @@ int unwind_frame(struct stackframe *frame)
     	frame->lr = ctrl.vrs[LR];
     	frame->pc = ctrl.vrs[PC];
     	frame->lr_addr = ctrl.lr_addr;
    +	frame->ex_frame = in_entry_text(frame->pc);
     
     	return URC_OK;
     }
    @@ -544,6 +554,7 @@ void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk,
     		 */
     here:
     		frame.pc = (unsigned long)&&here;
    +		frame.ex_frame = false;
     	} else {
     		/* task blocked in __switch_to */
     		frame.fp = thread_saved_fp(tsk);
    @@ -554,11 +565,12 @@ void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk,
     		 */
     		frame.lr = 0;
     		frame.pc = thread_saved_pc(tsk);
    +		frame.ex_frame = false;
     	}
     
     	while (1) {
     		int urc;
    -		unsigned long where = frame.pc;
    +		unsigned long where = frame.ex_frame ? frame.pc : frame.pc - 1;
     
     		urc = unwind_frame(&frame);
     		if (urc < 0)
    -- 
    1.8.5.6
    
    
    _______________________________________________
    linux-arm-kernel mailing list
    linux-arm-kernel@lists.infradead.org
    http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
    
    ^ permalink raw reply related	[flat|nested] 34+ messages in thread
  • * [PATCH v2] ARM: unwind: improve unwinders for noreturn case
           [not found] <1709516385-7778-1-git-send-email-xiaojiangfeng@huawei.com>
           [not found] ` <CAG48ez1h9X7Qv-5OR6hAhwnSOng6_PSXBaR6cT7xrk2Wzu39Yg@mail.gmail.com>
      2024-03-20  2:19 ` [PATCH] ARM: unwind: improve unwinders for noreturn case Jiangfeng Xiao
    @ 2024-03-20  3:44 ` Jiangfeng Xiao
      2024-03-20  8:45   ` Russell King (Oracle)
      2024-03-20 15:41 ` [PATCH v3] " Jiangfeng Xiao
      3 siblings, 1 reply; 34+ messages in thread
    From: Jiangfeng Xiao @ 2024-03-20  3:44 UTC (permalink / raw)
      To: linux, arnd, keescook, rmk+kernel, haibo.li,
    	angelogioacchino.delregno, amergnat, xiaojiangfeng
      Cc: akpm, dave.hansen, douzhaolei, gustavoars, jpoimboe,
    	kepler.chenxin, kirill.shutemov, linux-hardening, linux-kernel,
    	linux-mm, linux-arm-kernel, nixiaoming, peterz, wangbing6,
    	wangfangpeng1, jannh, willy, David.Laight
    
    This is an off-by-one bug which is common in unwinders,
    due to the fact that the address on the stack points
    to the return address rather than the call address.
    
    So, for example, when the last instruction of a function
    is a function call (e.g., to a noreturn function), it can
    cause the unwinder to incorrectly try to unwind from
    the function after the callee.
    
    foo:
    ...
    	bl	bar
    ... end of function and thus next function ...
    
    which results in LR pointing into the next function.
    
    Fixed this by subtracting 1 from frmae->pc in the call frame
    (but not exception frames) like ORC on x86 does.
    
    Refer to the unwind_next_frame function in the unwind_orc.c
    
    Suggested-by: Josh Poimboeuf <jpoimboe@kernel.org>
    Link: https://lkml.kernel.org/lkml/20240305175846.qnyiru7uaa7itqba@treble/
    Signed-off-by: Jiangfeng Xiao <xiaojiangfeng@huawei.com>
    ---
    ChangeLog v1->v2
    - stay printk("%s...", loglvl, ...)
    ---
     arch/arm/include/asm/stacktrace.h |  4 ----
     arch/arm/kernel/stacktrace.c      |  2 --
     arch/arm/kernel/traps.c           |  4 ++--
     arch/arm/kernel/unwind.c          | 18 +++++++++++++++---
     4 files changed, 17 insertions(+), 11 deletions(-)
    
    diff --git a/arch/arm/include/asm/stacktrace.h b/arch/arm/include/asm/stacktrace.h
    index 360f0d2..07e4c16 100644
    --- a/arch/arm/include/asm/stacktrace.h
    +++ b/arch/arm/include/asm/stacktrace.h
    @@ -21,9 +21,7 @@ struct stackframe {
     	struct llist_node *kr_cur;
     	struct task_struct *tsk;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     	bool ex_frame;
    -#endif
     };
     
     static __always_inline
    @@ -37,9 +35,7 @@ void arm_get_current_stackframe(struct pt_regs *regs, struct stackframe *frame)
     		frame->kr_cur = NULL;
     		frame->tsk = current;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     		frame->ex_frame = in_entry_text(frame->pc);
    -#endif
     }
     
     extern int unwind_frame(struct stackframe *frame);
    diff --git a/arch/arm/kernel/stacktrace.c b/arch/arm/kernel/stacktrace.c
    index 620aa82..1abd4f9 100644
    --- a/arch/arm/kernel/stacktrace.c
    +++ b/arch/arm/kernel/stacktrace.c
    @@ -154,9 +154,7 @@ static void start_stack_trace(struct stackframe *frame, struct task_struct *task
     	frame->kr_cur = NULL;
     	frame->tsk = task;
     #endif
    -#ifdef CONFIG_UNWINDER_FRAME_POINTER
     	frame->ex_frame = in_entry_text(frame->pc);
    -#endif
     }
     
     void arch_stack_walk(stack_trace_consume_fn consume_entry, void *cookie,
    diff --git a/arch/arm/kernel/traps.c b/arch/arm/kernel/traps.c
    index 3bad79d..46a5b1e 100644
    --- a/arch/arm/kernel/traps.c
    +++ b/arch/arm/kernel/traps.c
    @@ -84,10 +84,10 @@ void dump_backtrace_entry(unsigned long where, unsigned long from,
     	printk("%sFunction entered at [<%08lx>] from [<%08lx>]\n",
     		loglvl, where, from);
     #elif defined CONFIG_BACKTRACE_VERBOSE
    -	printk("%s[<%08lx>] (%ps) from [<%08lx>] (%pS)\n",
    +	printk("%s[<%08lx>] (%ps) from [<%08lx>] (%pB)\n",
     		loglvl, where, (void *)where, from, (void *)from);
     #else
    -	printk("%s %ps from %pS\n", loglvl, (void *)where, (void *)from);
    +	printk("%s %ps from %pB\n", loglvl, (void *)where, (void *)from);
     #endif
     
     	if (in_entry_text(from) && end <= ALIGN(frame, THREAD_SIZE))
    diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c
    index 9d21921..f2baf92 100644
    --- a/arch/arm/kernel/unwind.c
    +++ b/arch/arm/kernel/unwind.c
    @@ -30,6 +30,7 @@
     #include <linux/list.h>
     #include <linux/module.h>
     
    +#include <asm/sections.h>
     #include <asm/stacktrace.h>
     #include <asm/traps.h>
     #include <asm/unwind.h>
    @@ -416,8 +417,14 @@ int unwind_frame(struct stackframe *frame)
     
     	pr_debug("%s(pc = %08lx lr = %08lx sp = %08lx)\n", __func__,
     		 frame->pc, frame->lr, frame->sp);
    -
    -	idx = unwind_find_idx(frame->pc);
    +	/*
    +	 * For a call frame (as opposed to a exception frame), when the last
    +	 * instruction of a function is a function call (e.g., to a noreturn
    +	 * function), it can cause the unwinder incorrectly try to unwind
    +	 * from the function after the callee, fixed this by subtracting 1
    +	 * from frame->pc in the call frame like ORC on x86 does.
    +	 */
    +	idx = unwind_find_idx(frame->ex_frame ? frame->pc : frame->pc - 1);
     	if (!idx) {
     		if (frame->pc && kernel_text_address(frame->pc)) {
     			if (in_module_plt(frame->pc) && frame->pc != frame->lr) {
    @@ -427,6 +434,7 @@ int unwind_frame(struct stackframe *frame)
     				 * the state of the stack or the register file
     				 */
     				frame->pc = frame->lr;
    +				frame->ex_frame = in_entry_text(frame->pc);
     				return URC_OK;
     			}
     			pr_warn("unwind: Index not found %08lx\n", frame->pc);
    @@ -454,6 +462,7 @@ int unwind_frame(struct stackframe *frame)
     		if (frame->pc == frame->lr)
     			return -URC_FAILURE;
     		frame->pc = frame->lr;
    +		frame->ex_frame = in_entry_text(frame->pc);
     		return URC_OK;
     	} else if ((idx->insn & 0x80000000) == 0)
     		/* prel31 to the unwind table */
    @@ -515,6 +524,7 @@ int unwind_frame(struct stackframe *frame)
     	frame->lr = ctrl.vrs[LR];
     	frame->pc = ctrl.vrs[PC];
     	frame->lr_addr = ctrl.lr_addr;
    +	frame->ex_frame = in_entry_text(frame->pc);
     
     	return URC_OK;
     }
    @@ -544,6 +554,7 @@ void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk,
     		 */
     here:
     		frame.pc = (unsigned long)&&here;
    +		frame.ex_frame = false;
     	} else {
     		/* task blocked in __switch_to */
     		frame.fp = thread_saved_fp(tsk);
    @@ -554,11 +565,12 @@ void unwind_backtrace(struct pt_regs *regs, struct task_struct *tsk,
     		 */
     		frame.lr = 0;
     		frame.pc = thread_saved_pc(tsk);
    +		frame.ex_frame = false;
     	}
     
     	while (1) {
     		int urc;
    -		unsigned long where = frame.pc;
    +		unsigned long where = frame.ex_frame ? frame.pc : frame.pc - 1;
     
     		urc = unwind_frame(&frame);
     		if (urc < 0)
    -- 
    1.8.5.6
    
    
    _______________________________________________
    linux-arm-kernel mailing list
    linux-arm-kernel@lists.infradead.org
    http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
    
    ^ permalink raw reply related	[flat|nested] 34+ messages in thread
  • * [PATCH v3] ARM: unwind: improve unwinders for noreturn case
           [not found] <1709516385-7778-1-git-send-email-xiaojiangfeng@huawei.com>
                       ` (2 preceding siblings ...)
      2024-03-20  3:44 ` [PATCH v2] " Jiangfeng Xiao
    @ 2024-03-20 15:41 ` Jiangfeng Xiao
      2024-03-20 19:42   ` Russell King (Oracle)
      3 siblings, 1 reply; 34+ messages in thread
    From: Jiangfeng Xiao @ 2024-03-20 15:41 UTC (permalink / raw)
      To: linux, linus.walleij, arnd, keescook, rmk+kernel, haibo.li,
    	angelogioacchino.delregno, amergnat, xiaojiangfeng
      Cc: akpm, dave.hansen, douzhaolei, gustavoars, jpoimboe,
    	kepler.chenxin, kirill.shutemov, linux-hardening, linux-kernel,
    	linux-mm, linux-arm-kernel, nixiaoming, peterz, wangbing6,
    	wangfangpeng1, jannh, willy, David.Laight
    
    This is an off-by-one bug which is common in unwinders,
    due to the fact that the address on the stack points
    to the return address rather than the call address.
    
    So, for example, when the last instruction of a function
    is a function call (e.g., to a noreturn function), it can
    cause the unwinder to incorrectly try to unwind from
    the function after the callee.
    
    foo:
    ...
        bl      bar
    ... end of function and thus next function ...
    
    which results in LR pointing into the next function.
    
    Fixed this by subtracting 1 from frmae->pc in the call frame
    like ORC on x86 does.
    
    Refer to the unwind_next_frame function in the unwind_orc.c
    
    Suggested-by: Josh Poimboeuf <jpoimboe@kernel.org>
    Link: https://lkml.kernel.org/lkml/20240305175846.qnyiru7uaa7itqba@treble/
    Suggested-by: "Russell King (Oracle)" <linux@armlinux.org.uk>
    Link: https://lkml.kernel.org/lkml/Zeg8wRYFemMjcCxG@shell.armlinux.org.uk/
    Signed-off-by: Jiangfeng Xiao <xiaojiangfeng@huawei.com>
    ---
    ChangeLog v1->v2
    - stay printk("%s...", loglvl, ...)
    ChangeLog v2->v3
    - Redundant code is deleted to simplify the code
    ---
     arch/arm/kernel/unwind.c | 8 ++++++++
     1 file changed, 8 insertions(+)
    
    diff --git a/arch/arm/kernel/unwind.c b/arch/arm/kernel/unwind.c
    index 9d21921..abfa8e9 100644
    --- a/arch/arm/kernel/unwind.c
    +++ b/arch/arm/kernel/unwind.c
    @@ -514,6 +514,14 @@ int unwind_frame(struct stackframe *frame)
     	frame->sp = ctrl.vrs[SP];
     	frame->lr = ctrl.vrs[LR];
     	frame->pc = ctrl.vrs[PC];
    +	/*
    +	 * When the last instruction of a function is a function call
    +	 * (e.g., to a noreturn function), it can cause the unwinder
    +	 * incorrectly try to unwind from the function after the callee,
    +	 * fixed this by subtracting 1 from frame->pc in the call frame
    +	 * like ORC on x86 does.
    +	 */
    +	frame->pc = frame->pc - 1;
     	frame->lr_addr = ctrl.lr_addr;
     
     	return URC_OK;
    -- 
    1.8.5.6
    
    
    _______________________________________________
    linux-arm-kernel mailing list
    linux-arm-kernel@lists.infradead.org
    http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
    
    ^ permalink raw reply related	[flat|nested] 34+ messages in thread

  • end of thread, other threads:[~2024-03-22 14:17 UTC | newest]
    
    Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1709516385-7778-1-git-send-email-xiaojiangfeng@huawei.com>
         [not found] ` <CAG48ez1h9X7Qv-5OR6hAhwnSOng6_PSXBaR6cT7xrk2Wzu39Yg@mail.gmail.com>
         [not found]   ` <202403040938.D770633@keescook>
         [not found]     ` <77bb0d81-f496-7726-9495-57088a4c0bfc@huawei.com>
         [not found]       ` <202403050129.5B72ACAA0D@keescook>
         [not found]         ` <b274b545-9439-7ff8-e3ed-604a9ac81f65@huawei.com>
    2024-03-05 17:58           ` [PATCH] usercopy: delete __noreturn from usercopy_abort Josh Poimboeuf
    2024-03-06  4:00             ` Jiangfeng Xiao
    2024-03-06  9:52             ` Russell King (Oracle)
    2024-03-06 16:02               ` Josh Poimboeuf
    2024-03-09 14:58               ` David Laight
    2024-03-18  4:01             ` Jiangfeng Xiao
    2024-03-20  2:19 ` [PATCH] ARM: unwind: improve unwinders for noreturn case Jiangfeng Xiao
    2024-03-20  2:46   ` Kees Cook
    2024-03-20  3:30     ` Jiangfeng Xiao
    2024-03-20  3:34       ` Matthew Wilcox
    2024-03-20  3:46         ` Jiangfeng Xiao
    2024-03-20  3:44 ` [PATCH v2] " Jiangfeng Xiao
    2024-03-20  8:45   ` Russell King (Oracle)
    2024-03-20 15:30     ` Jiangfeng Xiao
    2024-03-20 19:40       ` Russell King (Oracle)
    2024-03-21  9:44         ` Jiangfeng Xiao
    2024-03-21 10:22           ` David Laight
    2024-03-21 11:23             ` Russell King (Oracle)
    2024-03-21 12:07               ` David Laight
    2024-03-21 12:22                 ` Russell King (Oracle)
    2024-03-21 12:57                   ` David Laight
    2024-03-21 13:08                     ` Russell King (Oracle)
    2024-03-21 14:37                       ` David Laight
    2024-03-21 14:56                         ` Russell King (Oracle)
    2024-03-21 15:20                           ` David Laight
    2024-03-21 15:33                             ` Russell King (Oracle)
    2024-03-21 22:43               ` Ard Biesheuvel
    2024-03-22  0:08                 ` Russell King (Oracle)
    2024-03-22  9:24                   ` David Laight
    2024-03-22  9:52                     ` Russell King (Oracle)
    2024-03-22 12:54                       ` Jiangfeng Xiao
    2024-03-22 14:16                       ` David Laight
    2024-03-20 15:41 ` [PATCH v3] " Jiangfeng Xiao
    2024-03-20 19:42   ` Russell King (Oracle)
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).