From: "Alejandro Vallejo" <alejandro.vallejo@cloud.com>
To: "Roger Pau Monné" <roger.pau@citrix.com>
Cc: "Xen-devel" <xen-devel@lists.xenproject.org>,
"Jan Beulich" <jbeulich@suse.com>,
"Andrew Cooper" <andrew.cooper3@citrix.com>
Subject: Re: [PATCH v2] x86/traps: Re-enable interrupts after reading cr2 in the #PF handler
Date: Mon, 23 Sep 2024 11:14:56 +0100 [thread overview]
Message-ID: <D4DL2FFRNE6R.XTS6NS9L1PHX@cloud.com> (raw)
In-Reply-To: <Zu2Cyan46VVs2oef@macbook.local>
On Fri Sep 20, 2024 at 3:12 PM BST, Roger Pau Monné wrote:
> On Wed, Sep 18, 2024 at 02:05:54PM +0100, Alejandro Vallejo wrote:
> > Moves sti directly after the cr2 read and immediately after the #PF
> > handler.
>
> I think you need to add some context about why this is needed, iow:
> avoid corrupting %cr2 if a nested 3PF happens.
I can send a v3 with:
```
Hitting a page fault clobbers %cr2, so if a page fault is handled while
handling a previous page fault then %cr2 will hold the address of the latter
fault rather than the former. This patch makes the page fault path delay
re-enabling IRQs until %cr2 has been read in order to ensure it stays
consistent.
Furthermore, the patch preserves the invariant of "IRQs are only re-enabled
if they were enabled in the interrupted context" in order to not break
IRQs-off faulting contexts.
```
>
> > While in the area, remove redundant q suffix to a movq in entry.S
> >
> > Signed-off-by: Alejandro Vallejo <alejandro.vallejo@cloud.com>
>
> Acked-by: Roger Pau Monné <roger.pau@citrix.com>
Thanks
>
> One nit below.
>
> > ---
> > Got lost alongside other patches. Here's the promised v2.
> >
> > pipeline: https://gitlab.com/xen-project/people/agvallejo/xen/-/pipelines/1458699639
> > v1: https://lore.kernel.org/xen-devel/20240911145823.12066-1-alejandro.vallejo@cloud.com/
> >
> > v2:
> > * (cosmetic), add whitespace after comma
> > * Added ASSERT(local_irq_is_enabled()) to do_page_fault()
> > * Only re-enable interrupts if they were enabled in the interrupted
> > context.
> > ---
> > xen/arch/x86/traps.c | 8 ++++++++
> > xen/arch/x86/x86_64/entry.S | 20 ++++++++++++++++----
> > 2 files changed, 24 insertions(+), 4 deletions(-)
> >
> > diff --git a/xen/arch/x86/traps.c b/xen/arch/x86/traps.c
> > index 708136f62558..a9c2c607eb08 100644
> > --- a/xen/arch/x86/traps.c
> > +++ b/xen/arch/x86/traps.c
> > @@ -1600,6 +1600,14 @@ void asmlinkage do_page_fault(struct cpu_user_regs *regs)
> >
> > addr = read_cr2();
> >
> > + /*
> > + * Don't re-enable interrupts if we were running an IRQ-off region when
> > + * we hit the page fault, or we'll break that code.
> > + */
> > + ASSERT(!local_irq_is_enabled());
> > + if ( regs->flags & X86_EFLAGS_IF )
> > + local_irq_enable();
> > +
> > /* fixup_page_fault() might change regs->error_code, so cache it here. */
> > error_code = regs->error_code;
> >
> > diff --git a/xen/arch/x86/x86_64/entry.S b/xen/arch/x86/x86_64/entry.S
> > index b8482de8ee5b..218e5ea85efb 100644
> > --- a/xen/arch/x86/x86_64/entry.S
> > +++ b/xen/arch/x86/x86_64/entry.S
> > @@ -844,9 +844,9 @@ handle_exception_saved:
> > #elif !defined(CONFIG_PV)
> > ASSERT_CONTEXT_IS_XEN
> > #endif /* CONFIG_PV */
> > - sti
> > -1: movq %rsp,%rdi
> > - movzbl UREGS_entry_vector(%rsp),%eax
> > +.Ldispatch_handlers:
>
> Maybe 'dispatch_exception', since it's only exceptions that are
> handled here? dispatch_handlers seems a bit too generic, but no strong
> opinion.
Sure, anything would be better than "1:"
>
> Thanks, Roger.
Cheers,
Alejandro
next prev parent reply other threads:[~2024-09-23 10:15 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-09-18 13:05 [PATCH v2] x86/traps: Re-enable interrupts after reading cr2 in the #PF handler Alejandro Vallejo
2024-09-20 14:12 ` Roger Pau Monné
2024-09-23 10:14 ` Alejandro Vallejo [this message]
2024-09-23 13:03 ` Jan Beulich
2024-09-24 18:36 ` Andrew Cooper
2024-09-25 6:35 ` Jan Beulich
2024-09-25 7:49 ` Andrew Cooper
2024-09-27 14:21 ` Alejandro Vallejo
2024-09-27 13:41 ` Alejandro Vallejo
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=D4DL2FFRNE6R.XTS6NS9L1PHX@cloud.com \
--to=alejandro.vallejo@cloud.com \
--cc=andrew.cooper3@citrix.com \
--cc=jbeulich@suse.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.