From: Palmer Dabbelt <palmer@dabbelt.com>
To: linux-riscv@lists.infradead.org
Cc: Paul Walmsley <paul.walmsley@sifive.com>,
Palmer Dabbelt <palmer@dabbelt.com>,
aou@eecs.berkeley.edu, wangkefeng.wang@huawei.com,
akpm@linux-foundation.org, 0x7f454c46@gmail.com,
rostedt@goodmis.org, chenhuang5@huawei.com,
linux-riscv@lists.infradead.org, linux-kernel@vger.kernel.org,
kernel-team@android.com,
Palmer Dabbelt <palmerdabbelt@google.com>,
syzbot+0806291048161061627c@syzkaller.appspotmail.com,
Dmitry Vyukov <dvyukov@google.com>
Subject: [PATCH] RISC-V: Protect reads from other harts stack frames
Date: Wed, 5 May 2021 23:13:52 -0700 [thread overview]
Message-ID: <20210506061352.340752-1-palmer@dabbelt.com> (raw)
From: Palmer Dabbelt <palmerdabbelt@google.com>
The stack walking code wasn't correctly decorated with READ_ONCE_NOCHECK
when reading from other harts stack frames, which can trigger a kasan
failure. This may also manifest as a bug, as without the READ_ONCE we
may get inconsistent results.
Reported-by: syzbot+0806291048161061627c@syzkaller.appspotmail.com
Fixes: 5d8544e2d007 ("RISC-V: Generic library routines and assembly")
Suggested-by: Dmitry Vyukov <dvyukov@google.com>
Signed-off-by: Palmer Dabbelt <palmerdabbelt@google.com>
---
I don't actually have a test for stack walking aside from just crashing
the kernel and making sure things look roughly OK. I haven't gotten
around to that because this got lost in the merge window shuffle, but I
thought I'd send this out in case someone has a better test for stack
walking so I can start running that.
---
arch/riscv/kernel/stacktrace.c | 15 +++++++++------
1 file changed, 9 insertions(+), 6 deletions(-)
diff --git a/arch/riscv/kernel/stacktrace.c b/arch/riscv/kernel/stacktrace.c
index 3f893c9d9d85..7f3914756915 100644
--- a/arch/riscv/kernel/stacktrace.c
+++ b/arch/riscv/kernel/stacktrace.c
@@ -18,6 +18,9 @@ register const unsigned long sp_in_global __asm__("sp");
#ifdef CONFIG_FRAME_POINTER
+#define READ_FRAME(frame, off) \
+ (READ_ONCE_NOCHECK(*(unsigned long *)(frame + offsetof(struct stackframe, off))))
+
void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
bool (*fn)(void *, unsigned long), void *arg)
{
@@ -40,7 +43,7 @@ void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
for (;;) {
unsigned long low, high;
- struct stackframe *frame;
+ unsigned long frame;
if (unlikely(!__kernel_text_address(pc) || !fn(arg, pc)))
break;
@@ -51,14 +54,14 @@ void notrace walk_stackframe(struct task_struct *task, struct pt_regs *regs,
if (unlikely(fp < low || fp > high || fp & 0x7))
break;
/* Unwind stack frame */
- frame = (struct stackframe *)fp - 1;
+ frame = fp - sizeof(struct stackframe);
sp = fp;
- if (regs && (regs->epc == pc) && (frame->fp & 0x7)) {
- fp = frame->ra;
+ if (regs && (regs->epc == pc) && (READ_FRAME(frame, fp) & 0x7)) {
+ fp = READ_FRAME(frame, ra);
pc = regs->ra;
} else {
- fp = frame->fp;
- pc = ftrace_graph_ret_addr(current, NULL, frame->ra,
+ fp = READ_FRAME(frame, fp);
+ pc = ftrace_graph_ret_addr(current, NULL, READ_FRAME(frame, ra),
(unsigned long *)(fp - 8));
}
--
2.31.1.527.g47e6f16901-goog
_______________________________________________
linux-riscv mailing list
linux-riscv@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-riscv
next reply other threads:[~2021-05-06 6:14 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-05-06 6:13 Palmer Dabbelt [this message]
2021-05-06 8:08 ` [PATCH] RISC-V: Protect reads from other harts stack frames Mark Rutland
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20210506061352.340752-1-palmer@dabbelt.com \
--to=palmer@dabbelt.com \
--cc=0x7f454c46@gmail.com \
--cc=akpm@linux-foundation.org \
--cc=aou@eecs.berkeley.edu \
--cc=chenhuang5@huawei.com \
--cc=dvyukov@google.com \
--cc=kernel-team@android.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-riscv@lists.infradead.org \
--cc=palmerdabbelt@google.com \
--cc=paul.walmsley@sifive.com \
--cc=rostedt@goodmis.org \
--cc=syzbot+0806291048161061627c@syzkaller.appspotmail.com \
--cc=wangkefeng.wang@huawei.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox