Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]


Groups > linux.kernel > #1351166

Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling

From Andrew Cooper <andrew.cooper3@citrix.com>
Newsgroups linux.kernel
Subject Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling
Date 2016-03-06 19:30 +0100
Message-ID <r9LBf-hh-1@gated-at.bofh.it> (permalink)
References <r9zTr-Q8-3@gated-at.bofh.it> <r9zTs-Q8-7@gated-at.bofh.it> <r9Kcb-7GF-13@gated-at.bofh.it> <r9KOT-8bE-25@gated-at.bofh.it> <r9KOT-8bE-23@gated-at.bofh.it>
Organization linux.* mail to news gateway

Show all headers | View raw


On 06/03/16 17:36, Andy Lutomirski wrote:
>
>> I haven't read the Xen hypervisor code, but what are those 5 words
>> that were pushed on the stack by the hypervisor?  It suspiciously is
>> the size of an IRET frame.
> I think it is nominally an IRET frame.

It is a notminal IRET frame.  Even to this day, Xen doesn't support
anything other "making it appear as if an interrupt/exception occurred",
even with the syscall/sysenter and artificial entrypoints.

The Xen entrypoint logic predates the introduction of the
syscall/sysenter support in Linux.  At the point where your hammer is
already iret shaped and you have a forked version of Linux for running
as a guest, modifying sysenter to be iret shaped is an easy option.  For
better or worse, this is now the ABI.

> One might wonder what's in it, given that the hypervisor doesn't know what the old IP or SP was.

Looking at the code which synthesizes the iret frame

        pushq $FLAT_USER_SS
        pushq $0
        pushfq
        pushq $3 /* ring 3 null cs */
        pushq $0 /* null rip */

Completely ignoring it definitely the best course of action.

>
>>  Considering that we don't use SYSEXIT on
>> Xen anymore, can we just redirect SYSENTER to the INT80 handler?
>> Perhaps even just disable SYSENTER support in the VDSO on Xen.   I
>> can't imagine SYSENTER is any faster than INT80 on Xen, because it has
>> to trap to the hypervisor first.
>>
> I think we should leave it enabled -- having user programs on Xen PV
> trap into the hypervisor for a system call using SYSENTER will still
> be much faster than using INT $0x80 as long as the hypervisor does
> something reasonable.

The trap into Xen has to happen either way (even for the INT $0x80
path).  There is almost certainly room for improvement in both paths,
but in principle the sysenter path will be faster.

~Andrew

Back to linux.kernel | Previous | NextPrevious in thread | Next in thread | Find similar | Unroll thread


Thread

[PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Andy Lutomirski <luto@kernel.org> - 2016-03-06 07:00 +0100
  Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Borislav Petkov <bp@alien8.de> - 2016-03-06 18:00 +0100
    Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Brian Gerst <brgerst@gmail.com> - 2016-03-06 18:40 +0100
      Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Andy Lutomirski <luto@amacapital.net> - 2016-03-06 18:40 +0100
        Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Borislav Petkov <bp@alien8.de> - 2016-03-06 19:10 +0100
        Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Andrew Cooper <andrew.cooper3@citrix.com> - 2016-03-06 19:30 +0100
  Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Brian Gerst <brgerst@gmail.com> - 2016-03-07 18:20 +0100
    Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Andy Lutomirski <luto@amacapital.net> - 2016-03-07 19:10 +0100
      Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Andy Lutomirski <luto@amacapital.net> - 2016-03-07 19:50 +0100
      Re: [PATCH v2 07/10] x86/entry: Vastly simplify SYSENTER TF handling Brian Gerst <brgerst@gmail.com> - 2016-03-07 19:50 +0100

csiph-web