The Linux Kernel Mailing List
 help / color / mirror / Atom feed
From: Josh Poimboeuf <jpoimboe@redhat.com>
To: Andy Lutomirski <luto@amacapital.net>
Cc: Borislav Petkov <bp@alien8.de>, x86-ml <x86@kernel.org>,
	lkml <linux-kernel@vger.kernel.org>,
	Andy Lutomirski <luto@kernel.org>
Subject: Re: WARNING: kernel stack frame pointer at ffffffff82e03f40 in swapper:0 has bad value (null)
Date: Tue, 13 Dec 2016 11:26:57 -0600	[thread overview]
Message-ID: <20161213172657.e4rhehdmmup3amii@treble> (raw)
In-Reply-To: <CALCETrVtjqXNCr22fGsmdg8ZyGSo=KO4uPMcfQNjdKr8ss5ykQ@mail.gmail.com>

On Tue, Dec 13, 2016 at 08:55:53AM -0800, Andy Lutomirski wrote:
> On Tue, Dec 13, 2016 at 6:34 AM, Josh Poimboeuf <jpoimboe@redhat.com> wrote:
> > On Mon, Dec 12, 2016 at 05:05:11PM -0600, Josh Poimboeuf wrote:
> >> On Mon, Dec 12, 2016 at 11:33:54PM +0100, Borislav Petkov wrote:
> >> > On Mon, Dec 12, 2016 at 04:11:47PM -0600, Josh Poimboeuf wrote:
> >> > > Yes, please.
> >> >
> >> > Attached.
> >>
> >> Thanks, I was able to recreate.  Will take a look tomorrow.
> >
> > Figured it out.  Your config has CONFIG_PARAVIRT=n, which convinces gcc
> > to create the following preamble for x86_64_start_kernel():
> >
> >   0000000000000124 <x86_64_start_kernel>:
> >    124: 4c 8d 54 24 08          lea    0x8(%rsp),%r10
> >    129: 48 83 e4 f0             and    $0xfffffffffffffff0,%rsp
> >    12d: 41 ff 72 f8             pushq  -0x8(%r10)
> >    131: 55                      push   %rbp
> >    132: 48 89 e5                mov    %rsp,%rbp
> >
> > It's an unusual pattern which aligns rsp (though in this case it's
> > already aligned) and saves the start_cpu() return address again on the
> > stack before storing the frame pointer.
> 
> Um, what?  I can reproduce it -- I get:
> 
> 0000000000000124 <x86_64_start_kernel>:
>  124:   4c 8d 54 24 08          lea    0x8(%rsp),%r10
>  129:   48 83 e4 f0             and    $0xfffffffffffffff0,%rsp
>  12d:   41 ff 72 f8             pushq  -0x8(%r10)
>  131:   55                      push   %rbp
>  132:   48 89 e5                mov    %rsp,%rbp
>  135:   41 57                   push   %r15
>  137:   41 56                   push   %r14
>  139:   41 55                   push   %r13
>  13b:   41 54                   push   %r12
>  13d:   41 52                   push   %r10
>  13f:   53                      push   %rbx
>  140:   48 83 ec 10             sub    $0x10,%rsp
> 
> ...
> 
> and the epilog looks like:
> 
>  29c:   58                      pop    %rax
>  29d:   5a                      pop    %rdx
>  29e:   5b                      pop    %rbx
>  29f:   41 5a                   pop    %r10
>  2a1:   41 5c                   pop    %r12
>  2a3:   41 5d                   pop    %r13
>  2a5:   41 5e                   pop    %r14
>  2a7:   41 5f                   pop    %r15
>  2a9:   5d                      pop    %rbp
>  2aa:   49 8d 62 f8             lea    -0x8(%r10),%rsp
>  2ae:   c3                      retq
> 
> This is, I think, *terrible* code.  It makes it entirely impossible
> for the CPU to look through the retq until the instruction right
> before it finishes because there's no way the CPU can tell what rsp is
> until the instruction right before the retq.  And it's saving and
> restoring an entire extra register (r10) instead of just using rbp for
> this purpose.  *And* the extra copy of the return address seems
> totally useless except for unwinding.
> 
> This does indeed depend on CONFIG_PARAVIRT, but I'm not seeing what
> changes.  Presumably something related to what happens in the
> function?
> 
> I want to file a GCC bug, though.  This code sucks.

Yeah, I can't figure out why it's doing that.  I've seen it align the
stack before, but it was always *after* setting up the frame pointer and
pushing the registers on the stack.  I have no idea what triggered it to
do it this way, but it would interesting to know if we can turn it off
somehow.

> > The unwinder assumes the last stack frame header is at a certain offset,
> > but the above code breaks that assumption.  I still need to think about
> > the best way to fix it.
> 
> Have a dummy written-in-asm top-of-the-stack function?  Or recognize
> the end by the final saved RBP?

Assuming this issue could theoretically show up in *any* function called
by entry or head code, I think the least pervasive change would be to
just adjust the "last frame" check in the unwinder, aka
is_last_task_frame()), to check at the "aligned" off-by-one-word offset
in addition to the normal offset.

-- 
Josh

  reply	other threads:[~2016-12-13 17:27 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2016-12-10 16:17 WARNING: kernel stack frame pointer at ffffffff82e03f40 in swapper:0 has bad value (null) Borislav Petkov
2016-12-10 17:04 ` Josh Poimboeuf
2016-12-10 17:28   ` Borislav Petkov
2016-12-12 15:45     ` Josh Poimboeuf
2016-12-12 17:50       ` Borislav Petkov
2016-12-12 18:10         ` Josh Poimboeuf
2016-12-12 21:16           ` Josh Poimboeuf
2016-12-12 21:34             ` Borislav Petkov
2016-12-12 22:11               ` Josh Poimboeuf
2016-12-12 22:33                 ` Borislav Petkov
2016-12-12 23:05                   ` Josh Poimboeuf
2016-12-13 14:34                     ` Josh Poimboeuf
2016-12-13 16:55                       ` Andy Lutomirski
2016-12-13 17:26                         ` Josh Poimboeuf [this message]
2016-12-13 17:51                         ` Borislav Petkov

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=20161213172657.e4rhehdmmup3amii@treble \
    --to=jpoimboe@redhat.com \
    --cc=bp@alien8.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=luto@amacapital.net \
    --cc=luto@kernel.org \
    --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