[<prev] [next>] [<thread-prev] [day] [month] [year] [list]
Message-ID: <20210204202210.4awpfn2ckdv7h5cf@treble>
Date: Thu, 4 Feb 2021 14:22:10 -0600
From: Josh Poimboeuf <jpoimboe@...hat.com>
To: Ivan Babrou <ivan@...udflare.com>
Cc: kernel-team <kernel-team@...udflare.com>,
Ignat Korchagin <ignat@...udflare.com>,
Hailong liu <liu.hailong6@....com.cn>,
Andrey Ryabinin <aryabinin@...tuozzo.com>,
Alexander Potapenko <glider@...gle.com>,
Dmitry Vyukov <dvyukov@...gle.com>,
Andrew Morton <akpm@...ux-foundation.org>,
Thomas Gleixner <tglx@...utronix.de>,
Ingo Molnar <mingo@...hat.com>, Borislav Petkov <bp@...en8.de>,
x86@...nel.org, "H. Peter Anvin" <hpa@...or.com>,
Miroslav Benes <mbenes@...e.cz>,
Julien Thierry <jthierry@...hat.com>,
Jiri Slaby <jirislaby@...nel.org>, kasan-dev@...glegroups.com,
linux-mm@...ck.org, linux-kernel <linux-kernel@...r.kernel.org>,
Alasdair Kergon <agk@...hat.com>,
Mike Snitzer <snitzer@...hat.com>, dm-devel@...hat.com,
"Steven Rostedt (VMware)" <rostedt@...dmis.org>,
Alexei Starovoitov <ast@...nel.org>,
Daniel Borkmann <daniel@...earbox.net>,
Martin KaFai Lau <kafai@...com>,
Song Liu <songliubraving@...com>, Yonghong Song <yhs@...com>,
Andrii Nakryiko <andriin@...com>,
John Fastabend <john.fastabend@...il.com>,
KP Singh <kpsingh@...omium.org>,
Robert Richter <rric@...nel.org>,
"Joel Fernandes (Google)" <joel@...lfernandes.org>,
Mathieu Desnoyers <mathieu.desnoyers@...icios.com>,
Linux Kernel Network Developers <netdev@...r.kernel.org>,
bpf@...r.kernel.org, Alexey Kardashevskiy <aik@...abs.ru>
Subject: Re: BUG: KASAN: stack-out-of-bounds in
unwind_next_frame+0x1df5/0x2650
On Thu, Feb 04, 2021 at 11:51:44AM -0800, Ivan Babrou wrote:
> > .macro FUNC_SAVE
> > #the number of pushes must equal STACK_OFFSET
> > + push %rbp
> > + mov %rsp, %rbp
> > push %r12
> > push %r13
> > push %r14
> > @@ -271,12 +273,14 @@ VARIABLE_OFFSET = 16*8
> > .endm
> >
> > .macro FUNC_RESTORE
> > + add $VARIABLE_OFFSET, %rsp
> > mov %r14, %rsp
> >
> > pop %r15
> > pop %r14
> > pop %r13
> > pop %r12
> > + pop %rbp
> > .endm
> >
> > # Encryption of a single block
> >
>
> This patch seems to fix the following warning:
>
> [ 147.995699][ C0] WARNING: stack going in the wrong direction? at
> glue_xts_req_128bit+0x21f/0x6f0 [glue_helper]
>
> Or at least I cannot see it anymore when combined with your other
> patch, not sure if it did the trick by itself.
>
> This sounds like a good reason to send them both.
Ok, that's what I expected.
The other patch fixed the unwinder failure mode to be the above
(harmless) unwinder warning, instead of a disruptive KASAN failure.
This patch fixes the specific underlying crypto unwinding metadata
issue.
I'll definitely be sending both fixes. The improved failure mode patch
will come first because it's more urgent and lower risk.
--
Josh
Powered by blists - more mailing lists