From: Josh Poimboeuf <jpoimboe@redhat.com>
To: Kees Cook <keescook@chromium.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
PaX Team <pageexec@freemail.hu>, Jann Horn <jannh@google.com>,
Eric Biggers <ebiggers3@gmail.com>,
Christoph Hellwig <hch@infradead.org>,
"axboe@kernel.dk" <axboe@kernel.dk>,
James Bottomley <James.Bottomley@hansenpartnership.com>,
Elena Reshetova <elena.reshetova@intel.com>,
Hans Liljestrand <ishkamiel@gmail.com>,
David Windsor <dwindsor@gmail.com>,
"x86@kernel.org" <x86@kernel.org>, Ingo Molnar <mingo@kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
"David S. Miller" <davem@davemloft.net>,
Rik van Riel <riel@redhat.com>,
linux-arch <linux-arch@vger.kernel.org>,
"kernel-hardening@lists.openwall.com"
<kernel-hardening@lists.openwal>
Subject: Re: [PATCH v3 2/2] x86/refcount: Implement fast refcount overflow protection
Date: Tue, 9 May 2017 12:44:03 -0500 [thread overview]
Message-ID: <20170509174403.etx64yozb7ctr4ur@treble> (raw)
In-Reply-To: <CAGXu5j+_72Pv6dTZdaYN0N4TZG6G7aB=O+v3fv4xL9jgHHpJkA@mail.gmail.com>
On Tue, May 09, 2017 at 10:29:16AM -0700, Kees Cook wrote:
> On Tue, May 9, 2017 at 10:08 AM, Josh Poimboeuf <jpoimboe@redhat.com> wrote:
> > On Mon, May 08, 2017 at 08:58:29PM -0500, Josh Poimboeuf wrote:
> >> On Mon, May 08, 2017 at 04:31:11PM -0700, Kees Cook wrote:
> >> > On Mon, May 8, 2017 at 3:53 PM, Josh Poimboeuf <jpoimboe@redhat.com> wrote:
> >> > > On Mon, May 08, 2017 at 12:32:52PM -0700, Kees Cook wrote:
> >> > >> +#define REFCOUNT_EXCEPTION \
> >> > >> + "movl $0x7fffffff, %[counter]\n\t" \
> >> > >> + "int $"__stringify(X86_REFCOUNT_VECTOR)"\n" \
> >> > >> + "0:\n\t" \
> >> > >> + _ASM_EXTABLE(0b, 0b)
> >> > >
> >> > > Despite the objtool warnings going away, this still uses the exception
> >> > > table in a new way, which will confuse objtool. I need to do some more
> >> > > thinking about the best way to fix it, either as a change to your patch
> >> > > or a change to objtool.
> >> >
> >> > In that it's not a "true" exception?
> >>
> >> Right. And also that it doesn't need the "fixup" since it would return
> >> to the same address anyway.
> >
> > How about the following on top of your patch? It uses #UD (invalid
> > opcode). Notice it's mostly code deletions :-)
>
> Hah, I wrote this patch almost exactly last night, but hadn't had a
> chance to send it out. :)
>
> I ended up defining a new exception handler, which means nothing
> special in the generic trap code. I didn't send it out because it was
> still using a jns instead of js, and I was pondering if I wanted to
> reintroduce the text section jump just to gain the initial benefit of
> forward-branch-not-taken optimization...
>
> > diff --git a/arch/x86/include/asm/refcount.h b/arch/x86/include/asm/refcount.h
> > index 6e8bbd7..653a985 100644
> > --- a/arch/x86/include/asm/refcount.h
> > +++ b/arch/x86/include/asm/refcount.h
> > @@ -8,15 +8,16 @@
> > */
> > #include <linux/refcount.h>
> > #include <asm/irq_vectors.h>
> > +#include <asm/bug.h>
> >
> > #define REFCOUNT_EXCEPTION \
> > "movl $0x7fffffff, %[counter]\n\t" \
> > - "int $"__stringify(X86_REFCOUNT_VECTOR)"\n" \
> > - "0:\n\t" \
> > - _ASM_EXTABLE(0b, 0b)
> > + "1:\t" ASM_UD0 "\n" \
> > + "2:\n\t" \
> > + _ASM_EXTABLE(1b, 2b)
>
> I used _ASM_EXTABLE_REFCOUNT(1b, 2b) here, with
> arch/x86/include/asm/asm.h adding:
>
> +# define _ASM_EXTABLE_REFCOUNT(from, to) \
> + _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
>
> > diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
> > index 0b2dbcc..7de95b7 100644
> > --- a/arch/x86/kernel/traps.c
> > +++ b/arch/x86/kernel/traps.c
> > @@ -220,8 +220,8 @@ do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
> > if (!user_mode(regs)) {
> > if (fixup_exception(regs, trapnr)) {
> > if (IS_ENABLED(CONFIG_FAST_REFCOUNT) &&
> > - trapnr == X86_REFCOUNT_VECTOR)
> > - refcount_error_report(regs, str);
> > + trapnr == X86_TRAP_UD)
> > + refcount_error_report(regs);
> >
> > return 0;
> > }
>
> And then I could leave out this hunk, instead adding this to
> arch/x86/mm/extable.c:
>
> +bool ex_handler_refcount(const struct exception_table_entry *fixup,
> + struct pt_regs *regs, int trapnr)
> +{
> + regs->ip = ex_fixup_addr(fixup);
> + refcount_error_report(regs, "overflow");
> + return true;
> +}
> +EXPORT_SYMBOL_GPL(ex_handler_refcount);
>
> After looking at the assembly output, the "movl" instructions can be
> various sizes, depending on where %[counter] lives, so I'm also
> considering returning to using PaX's "lea", but I'm not sure the
> benefit would be very large.
Good, your patch sounds better than mine :-)
--
Josh
WARNING: multiple messages have this Message-ID (diff)
From: Josh Poimboeuf <jpoimboe@redhat.com>
To: Kees Cook <keescook@chromium.org>
Cc: LKML <linux-kernel@vger.kernel.org>,
Peter Zijlstra <peterz@infradead.org>,
PaX Team <pageexec@freemail.hu>, Jann Horn <jannh@google.com>,
Eric Biggers <ebiggers3@gmail.com>,
Christoph Hellwig <hch@infradead.org>,
"axboe@kernel.dk" <axboe@kernel.dk>,
James Bottomley <James.Bottomley@hansenpartnership.com>,
Elena Reshetova <elena.reshetova@intel.com>,
Hans Liljestrand <ishkamiel@gmail.com>,
David Windsor <dwindsor@gmail.com>,
"x86@kernel.org" <x86@kernel.org>, Ingo Molnar <mingo@kernel.org>,
Arnd Bergmann <arnd@arndb.de>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
"David S. Miller" <davem@davemloft.net>,
Rik van Riel <riel@redhat.com>,
linux-arch <linux-arch@vger.kernel.org>,
"kernel-hardening@lists.openwall.com"
<kernel-hardening@lists.openwall.com>
Subject: Re: [PATCH v3 2/2] x86/refcount: Implement fast refcount overflow protection
Date: Tue, 9 May 2017 12:44:03 -0500 [thread overview]
Message-ID: <20170509174403.etx64yozb7ctr4ur@treble> (raw)
Message-ID: <20170509174403.aIOESBe55DivJC-43PMZmzdr3BqlT6DeiYAI0qAa-Uc@z> (raw)
In-Reply-To: <CAGXu5j+_72Pv6dTZdaYN0N4TZG6G7aB=O+v3fv4xL9jgHHpJkA@mail.gmail.com>
On Tue, May 09, 2017 at 10:29:16AM -0700, Kees Cook wrote:
> On Tue, May 9, 2017 at 10:08 AM, Josh Poimboeuf <jpoimboe@redhat.com> wrote:
> > On Mon, May 08, 2017 at 08:58:29PM -0500, Josh Poimboeuf wrote:
> >> On Mon, May 08, 2017 at 04:31:11PM -0700, Kees Cook wrote:
> >> > On Mon, May 8, 2017 at 3:53 PM, Josh Poimboeuf <jpoimboe@redhat.com> wrote:
> >> > > On Mon, May 08, 2017 at 12:32:52PM -0700, Kees Cook wrote:
> >> > >> +#define REFCOUNT_EXCEPTION \
> >> > >> + "movl $0x7fffffff, %[counter]\n\t" \
> >> > >> + "int $"__stringify(X86_REFCOUNT_VECTOR)"\n" \
> >> > >> + "0:\n\t" \
> >> > >> + _ASM_EXTABLE(0b, 0b)
> >> > >
> >> > > Despite the objtool warnings going away, this still uses the exception
> >> > > table in a new way, which will confuse objtool. I need to do some more
> >> > > thinking about the best way to fix it, either as a change to your patch
> >> > > or a change to objtool.
> >> >
> >> > In that it's not a "true" exception?
> >>
> >> Right. And also that it doesn't need the "fixup" since it would return
> >> to the same address anyway.
> >
> > How about the following on top of your patch? It uses #UD (invalid
> > opcode). Notice it's mostly code deletions :-)
>
> Hah, I wrote this patch almost exactly last night, but hadn't had a
> chance to send it out. :)
>
> I ended up defining a new exception handler, which means nothing
> special in the generic trap code. I didn't send it out because it was
> still using a jns instead of js, and I was pondering if I wanted to
> reintroduce the text section jump just to gain the initial benefit of
> forward-branch-not-taken optimization...
>
> > diff --git a/arch/x86/include/asm/refcount.h b/arch/x86/include/asm/refcount.h
> > index 6e8bbd7..653a985 100644
> > --- a/arch/x86/include/asm/refcount.h
> > +++ b/arch/x86/include/asm/refcount.h
> > @@ -8,15 +8,16 @@
> > */
> > #include <linux/refcount.h>
> > #include <asm/irq_vectors.h>
> > +#include <asm/bug.h>
> >
> > #define REFCOUNT_EXCEPTION \
> > "movl $0x7fffffff, %[counter]\n\t" \
> > - "int $"__stringify(X86_REFCOUNT_VECTOR)"\n" \
> > - "0:\n\t" \
> > - _ASM_EXTABLE(0b, 0b)
> > + "1:\t" ASM_UD0 "\n" \
> > + "2:\n\t" \
> > + _ASM_EXTABLE(1b, 2b)
>
> I used _ASM_EXTABLE_REFCOUNT(1b, 2b) here, with
> arch/x86/include/asm/asm.h adding:
>
> +# define _ASM_EXTABLE_REFCOUNT(from, to) \
> + _ASM_EXTABLE_HANDLE(from, to, ex_handler_refcount)
>
> > diff --git a/arch/x86/kernel/traps.c b/arch/x86/kernel/traps.c
> > index 0b2dbcc..7de95b7 100644
> > --- a/arch/x86/kernel/traps.c
> > +++ b/arch/x86/kernel/traps.c
> > @@ -220,8 +220,8 @@ do_trap_no_signal(struct task_struct *tsk, int trapnr, char *str,
> > if (!user_mode(regs)) {
> > if (fixup_exception(regs, trapnr)) {
> > if (IS_ENABLED(CONFIG_FAST_REFCOUNT) &&
> > - trapnr == X86_REFCOUNT_VECTOR)
> > - refcount_error_report(regs, str);
> > + trapnr == X86_TRAP_UD)
> > + refcount_error_report(regs);
> >
> > return 0;
> > }
>
> And then I could leave out this hunk, instead adding this to
> arch/x86/mm/extable.c:
>
> +bool ex_handler_refcount(const struct exception_table_entry *fixup,
> + struct pt_regs *regs, int trapnr)
> +{
> + regs->ip = ex_fixup_addr(fixup);
> + refcount_error_report(regs, "overflow");
> + return true;
> +}
> +EXPORT_SYMBOL_GPL(ex_handler_refcount);
>
> After looking at the assembly output, the "movl" instructions can be
> various sizes, depending on where %[counter] lives, so I'm also
> considering returning to using PaX's "lea", but I'm not sure the
> benefit would be very large.
Good, your patch sounds better than mine :-)
--
Josh
next prev parent reply other threads:[~2017-05-09 17:44 UTC|newest]
Thread overview: 17+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-05-08 19:32 [PATCH v3 0/2] x86/refcount: Implement fast refcount overflow protection Kees Cook
2017-05-08 19:32 ` Kees Cook
2017-05-08 19:32 ` [PATCH v3 1/2] x86/asm: Add suffix macro for GEN_*_RMWcc() Kees Cook
2017-05-08 19:32 ` Kees Cook
2017-05-08 19:32 ` [PATCH v3 2/2] x86/refcount: Implement fast refcount overflow protection Kees Cook
2017-05-08 19:32 ` Kees Cook
2017-05-08 22:53 ` Josh Poimboeuf
2017-05-08 23:31 ` Kees Cook
2017-05-08 23:31 ` Kees Cook
2017-05-09 1:58 ` Josh Poimboeuf
2017-05-09 1:58 ` Josh Poimboeuf
2017-05-09 17:08 ` Josh Poimboeuf
2017-05-09 17:08 ` Josh Poimboeuf
2017-05-09 17:29 ` Kees Cook
2017-05-09 17:29 ` Kees Cook
2017-05-09 17:44 ` Josh Poimboeuf [this message]
2017-05-09 17:44 ` Josh Poimboeuf
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=20170509174403.etx64yozb7ctr4ur@treble \
--to=jpoimboe@redhat.com \
--cc=James.Bottomley@hansenpartnership.com \
--cc=arnd@arndb.de \
--cc=axboe@kernel.dk \
--cc=davem@davemloft.net \
--cc=dwindsor@gmail.com \
--cc=ebiggers3@gmail.com \
--cc=elena.reshetova@intel.com \
--cc=gregkh@linuxfoundation.org \
--cc=hch@infradead.org \
--cc=ishkamiel@gmail.com \
--cc=jannh@google.com \
--cc=keescook@chromium.org \
--cc=kernel-hardening@lists.openwal \
--cc=linux-arch@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=pageexec@freemail.hu \
--cc=peterz@infradead.org \
--cc=riel@redhat.com \
--cc=x86@kernel.org \
/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