[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <C1108AB0-9156-426F-A933-486B4F5C91CF@unisoc.com> (raw)
Date: Tue, 12 Nov 2019 23:20:51 +0800
From: Mark-PK Tsai <mark-pk.tsai@...iatek.com>
To: <lvqiang.huang@...soc.com>
CC: <alix.wu@...iatek.com>, <allison@...utok.net>,
<eddy.lin@...iatek.com>, <enlai.chu@...soc.com>,
<gregkh@...uxfoundation.org>, <info@...ux.net>,
<kstewart@...uxfoundation.org>,
<linux-arm-kernel@...ts.infradead.org>,
<linux-kernel@...r.kernel.org>,
<linux-mediatek@...ts.infradead.org>, <linux@...linux.org.uk>,
<mark-pk.tsai@...iatek.com>, <matthias.bgg@...il.com>,
<mike-sl.lin@...iatek.com>, <phil.chang@...iatek.com>,
<tglx@...utronix.de>, <yj.chiang@...iatek.com>
Subject: Re: [PATCH] ARM: fix race in for_each_frame
> . 2019.11.12..21:31.Mark-PK Tsai <mark-pk.tsai@...iatek.com> ...
>
> The sv_pc, which is saved in the stack, may be an invalid address
> if the target thread is running on another processor in the meantime.
> It will cause kernel crash at `ldr r2, [sv_pc, #-4]`.
>
> Check if sv_pc is valid before use it like unwind_frame in
> arch/arm/kernel/unwind.c.
>
> Signed-off-by: Mike-SL Lin <mike-sl.lin@...iatek.com>
> Signed-off-by: Mark-PK Tsai <mark-pk.tsai@...iatek.com>
> ---
> arch/arm/lib/backtrace.S | 5 +++++
> 1 file changed, 5 insertions(+)
>
> diff --git a/arch/arm/lib/backtrace.S b/arch/arm/lib/backtrace.S
> index 582925238d65..84f06381bbfb 100644
> --- a/arch/arm/lib/backtrace.S
> +++ b/arch/arm/lib/backtrace.S
> @@ -64,6 +64,11 @@ for_each_frame: tst frame, mask @ Check for address exceptions
> sub sv_pc, sv_pc, offset @ Correct PC for prefetching
> bic sv_pc, sv_pc, mask @ mask PC/LR for the mode
>
> + mov r0, sv_pc
> + bl kernel_text_address @ check if sv_pc is valid
> + cmp r0, #0 @ if sv_pc is not kernel text
> + beq 1006f @ address, abort backtrace
> +
The sv_pc can be a kernel module text.
The module text area is ok for kernel_text_address().
> 1003: ldr r2, [sv_pc, #-4] @ if stmfd sp!, {args} exists,
> ldr r3, .Ldsi+4 @ adjust saved 'pc' back one
> teq r3, r2, lsr #11 @ instruction
> --
> 2.18.0
Powered by blists - more mailing lists