linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Andy Lutomirski <luto@kernel.org>
To: "M. Vefa Bicakci" <m.v.b@runbox.com>
Cc: LKML <linux-kernel@vger.kernel.org>,
	Dominik Brodowski <linux@dominikbrodowski.net>,
	Andy Lutomirski <luto@kernel.org>, Ingo Molnar <mingo@redhat.com>,
	"H. Peter Anvin" <hpa@zytor.com>,
	Thomas Gleixner <tglx@linutronix.de>,
	Boris Ostrovsky <boris.ostrovsky@oracle.com>,
	Juergen Gross <jgross@suse.com>,
	xen-devel@lists.xenproject.org, X86 ML <x86@kernel.org>,
	stable <stable@vger.kernel.org>
Subject: Re: [PATCH 1/2] x86/entry/64: Do not clear %rbx under Xen
Date: Sat, 21 Jul 2018 14:45:38 -0700	[thread overview]
Message-ID: <CALCETrX435cC7Hi2aTLVrBecZEEeJ3_TgQnTwbObNrt9MKvFzg@mail.gmail.com> (raw)
In-Reply-To: <20180721194909.23903-1-m.v.b@runbox.com>

On Sat, Jul 21, 2018 at 12:49 PM, M. Vefa Bicakci <m.v.b@runbox.com> wrote:
> Commit 3ac6d8c787b8 ("x86/entry/64: Clear registers for
> exceptions/interrupts, to reduce speculation attack surface") unintendedly
> broke Xen PV virtual machines by clearing the %rbx register at the end of
> xen_failsafe_callback before the latter jumps to error_exit.
> error_exit expects the %rbx register to be a flag indicating whether
> there should be a return to kernel mode.
>
> This commit makes sure that the %rbx register is not cleared by
> the PUSH_AND_CLEAR_REGS macro, when the macro in question is instantiated
> by xen_failsafe_callback, to avoid the issue.

Seems like a genuine problem, but:

> diff --git a/arch/x86/entry/entry_64.S b/arch/x86/entry/entry_64.S
> index c7449f377a77..96e8ff34129e 100644
> --- a/arch/x86/entry/entry_64.S
> +++ b/arch/x86/entry/entry_64.S
> @@ -1129,7 +1129,7 @@ ENTRY(xen_failsafe_callback)
>         addq    $0x30, %rsp
>         UNWIND_HINT_IRET_REGS
>         pushq   $-1 /* orig_ax = -1 => not a system call */
> -       PUSH_AND_CLEAR_REGS
> +       PUSH_AND_CLEAR_REGS clear_rbx=0
>         ENCODE_FRAME_POINTER
>         jmp     error_exit

The old code first set RBX to zero then, if frame pointers are on,
sets it to some special non-zero value, then crosses its fingers and
hopes for the best.  Your patched code just skips the zeroing part, so
RBX either contains the ENCODE_FRAME_POINTER result or is
uninitialized.

How about actually initializing rbx to something sensible like, say, 1?

  parent reply	other threads:[~2018-07-21 21:46 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-07-21 19:49 [PATCH 1/2] x86/entry/64: Do not clear %rbx under Xen M. Vefa Bicakci
2018-07-21 19:49 ` [PATCH 2/2] xen/pv: Call get_cpu_address_sizes to set x86_virt/phys_bits M. Vefa Bicakci
2018-07-21 21:25   ` Boris Ostrovsky
2018-07-21 23:17     ` M. Vefa Bicakci
2018-07-22 15:57       ` M. Vefa Bicakci
2018-07-23 15:04         ` Boris Ostrovsky
2018-07-24 12:42           ` M. Vefa Bicakci
2018-07-24 12:45   ` [PATCH v2] " M. Vefa Bicakci
2018-07-24 14:08     ` Boris Ostrovsky
2018-07-26  3:56     ` [PATCH v3] " M. Vefa Bicakci
2018-08-06 20:15     ` [PATCH v2] " Boris Ostrovsky
2018-08-06 20:16       ` Thomas Gleixner
2018-08-06 21:27         ` Boris Ostrovsky
2018-08-07  9:50       ` Ingo Molnar
2018-07-21 21:19 ` [PATCH 1/2] x86/entry/64: Do not clear %rbx under Xen Boris Ostrovsky
2018-07-21 23:18   ` M. Vefa Bicakci
2018-07-23 14:56     ` Boris Ostrovsky
2018-07-21 21:45 ` Andy Lutomirski [this message]
2018-07-21 23:19   ` M. Vefa Bicakci
2018-07-21 23:30     ` Andy Lutomirski
2018-07-21 23:37       ` M. Vefa Bicakci
2018-07-22  1:20         ` M. Vefa Bicakci
2018-07-22 17:56           ` Andy Lutomirski
2018-07-22 18:32             ` [Xen-devel] " Andrew Cooper

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=CALCETrX435cC7Hi2aTLVrBecZEEeJ3_TgQnTwbObNrt9MKvFzg@mail.gmail.com \
    --to=luto@kernel.org \
    --cc=boris.ostrovsky@oracle.com \
    --cc=hpa@zytor.com \
    --cc=jgross@suse.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@dominikbrodowski.net \
    --cc=m.v.b@runbox.com \
    --cc=mingo@redhat.com \
    --cc=stable@vger.kernel.org \
    --cc=tglx@linutronix.de \
    --cc=x86@kernel.org \
    --cc=xen-devel@lists.xenproject.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;
as well as URLs for NNTP newsgroup(s).