From: Jan Beulich <jbeulich@suse.com>
To: Andrew Cooper <andrew.cooper3@citrix.com>
Cc: "Roger Pau Monné" <roger.pau@citrix.com>,
Xen-devel <xen-devel@lists.xenproject.org>
Subject: Re: [PATCH v4 12/14] x86/pv: System call handling in FRED mode
Date: Tue, 10 Mar 2026 08:16:20 +0100 [thread overview]
Message-ID: <fd39ace3-1caa-4869-9733-0cf737aac7f9@suse.com> (raw)
In-Reply-To: <1fc7bde0-dbaa-4daf-b23f-a46b84219278@citrix.com>
On 09.03.2026 23:25, Andrew Cooper wrote:
> On 27/02/2026 11:16 pm, Andrew Cooper wrote:
>> diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
>> index 2f40f628cbff..e2c35a046e6b 100644
>> --- a/xen/arch/x86/traps.c
>> +++ b/xen/arch/x86/traps.c
>> ...
>> + case 2: /* SYSENTER */
>> + {
>> + /*
>> + * FRED delivery preserves the interrupted state, but previously
>> + * SYSENTER discarded almost everything.
>> + *
>> + * The guest isn't aware of FRED, so recreate the legacy
>> + * behaviour.
>> + *
>> + * When setting the selectors, clear all upper metadata. In
>> + * particular fred_ss.swint becomes pend_DB on ERETx.
>> + *
>> + * When converting to a fault, hardware finally gives us enough
>> + * information to account for prefixes, so provide the more
>> + * correct behaviour rather than assuming the instruction was two
>> + * bytes long.
>> + */
>> + unsigned int len = regs->fred_ss.insnlen;
>> +
>> + regs->ssx = FLAT_USER_SS;
>> + regs->rsp = 0;
>> + regs->eflags &= ~(X86_EFLAGS_VM | X86_EFLAGS_IF);
>> + regs->csx = 3;
>> + regs->rip = 0;
>> +
>> + if ( !curr->arch.pv.sysenter_callback_eip )
>> + {
>> + regs->rip -= len;
>> + pv_inject_hw_exception(X86_EXC_GP, 0);
>> + }
>> + else
>> + pv_inject_callback(CALLBACKTYPE_sysenter);
>> + break;
>
> This isn't actually a correct transformation of the IDT code. When the
> SYENTER entrypoint isn't registered, this delivers a #GP at
> 0003:fffffffffffffffe
>
> The simple fix to get back to IDT behaviour is to simply drop the
> subtraction of len.
>
> In FRED mode, we can finally point the #GP at the SYSENTER instruction,
> rather than delivering at 0. We could even provide the success case
> pointing sensibly too.
>
> The question is should we? Until now, the differences between FRED and
> IDT mode are minimal. This would be major difference, and it's for
> SYSENTER which all but unused. I'm erring on the side of "match IDT".
I agree. Down the road we could introduce an opt-in "better behavior" mode
when running under FRED (also covering other aspects previously discussed).
Jan
next prev parent reply other threads:[~2026-03-10 7:16 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2026-02-27 23:16 [PATCH v4 00/14] x86: FRED support Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 01/14] x86/pv: Don't assume that INT $imm8 instructions are two bytes long Andrew Cooper
2026-03-02 11:03 ` Jan Beulich
2026-03-02 11:43 ` Andrew Cooper
2026-03-02 12:57 ` Jan Beulich
2026-03-02 16:39 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 02/14] docs/guest-guide: Describe the PV traps and entrypoints ABI Andrew Cooper
2026-03-02 11:19 ` Jan Beulich
2026-03-02 14:47 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 03/14] x86/boot: Move gdt_l1e caching out of traps_init() Andrew Cooper
2026-03-02 11:33 ` Jan Beulich
2026-02-27 23:16 ` [PATCH v4 04/14] x86/boot: Document the ordering dependency of _svm_cpu_up() Andrew Cooper
2026-03-02 11:35 ` Jan Beulich
2026-03-02 15:20 ` Andrew Cooper
2026-03-02 15:34 ` Jan Beulich
2026-03-02 15:42 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 05/14] x86/traps: Move traps_init() earlier on boot Andrew Cooper
2026-03-02 11:39 ` Jan Beulich
2026-03-02 15:32 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 06/14] x86/traps: Don't configure Supervisor Shadow Stack tokens in FRED mode Andrew Cooper
2026-03-02 14:50 ` Jan Beulich
2026-03-02 15:47 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 07/14] x86/traps: Introduce FRED entrypoints Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 08/14] x86/traps: Enable FRED when requested Andrew Cooper
2026-03-02 16:12 ` Jan Beulich
2026-03-03 13:44 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 09/14] x86/pv: Adjust GS handling for FRED mode Andrew Cooper
2026-03-02 16:24 ` Jan Beulich
2026-03-04 17:18 ` [PATCH v4.1 " Andrew Cooper
2026-03-05 10:00 ` Jan Beulich
2026-02-27 23:16 ` [PATCH v4 10/14] x86/pv: Guest exception handling in " Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 11/14] x86/pv: ERETU error handling Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 12/14] x86/pv: System call handling in FRED mode Andrew Cooper
2026-03-09 22:25 ` Andrew Cooper
2026-03-10 7:16 ` Jan Beulich [this message]
2026-02-27 23:16 ` [PATCH v4 13/14] x86: Clamp reserved bits in eflags more aggressively Andrew Cooper
2026-03-02 16:35 ` Jan Beulich
2026-03-11 17:58 ` [PATCH v4.1 13/14] x86: Clamp " Andrew Cooper
2026-03-12 8:15 ` Jan Beulich
2026-03-12 12:36 ` Andrew Cooper
2026-02-27 23:16 ` [PATCH v4 14/14] x86/traps: Use fatal_trap() for #UD and #GP Andrew Cooper
2026-03-02 16:39 ` Jan Beulich
2026-03-02 16:40 ` Jan Beulich
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=fd39ace3-1caa-4869-9733-0cf737aac7f9@suse.com \
--to=jbeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=roger.pau@citrix.com \
--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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.