From: "Alejandro Vallejo" <alejandro.vallejo@cloud.com>
To: "Andrew Cooper" <andrew.cooper3@citrix.com>,
<xen-devel@lists.xenproject.org>
Cc: "Jan Beulich" <jbeulich@suse.com>,
"Roger Pau Monné" <roger.pau@citrix.com>
Subject: Re: [PATCH 02/14] x86/xstate: Create map/unmap primitives for xsave areas
Date: Tue, 29 Oct 2024 11:57:43 +0000 [thread overview]
Message-ID: <D589SQ8Y0WGU.2MM4HPFUKJYGT@cloud.com> (raw)
In-Reply-To: <0a644e0d-b7dc-49b5-b4ba-943f809286a8@citrix.com>
Hi,
On Mon Oct 28, 2024 at 5:20 PM GMT, Andrew Cooper wrote:
> On 28/10/2024 3:49 pm, Alejandro Vallejo wrote:
> > diff --git a/xen/arch/x86/include/asm/xstate.h b/xen/arch/x86/include/asm/xstate.h
> > index 07017cc4edfd..36260459667c 100644
> > --- a/xen/arch/x86/include/asm/xstate.h
> > +++ b/xen/arch/x86/include/asm/xstate.h
> > @@ -143,4 +143,24 @@ static inline bool xstate_all(const struct vcpu *v)
> > (v->arch.xcr0_accum & XSTATE_LAZY & ~XSTATE_FP_SSE);
> > }
> >
> > +/*
> > + * Fetch a pointer to the XSAVE area of a vCPU
> > + *
> > + * If ASI is enabled for the domain, this mapping is pCPU-local.
> > + *
> > + * @param v Owner of the XSAVE area
> > + */
> > +#define vcpu_map_xsave_area(v) ((v)->arch.xsave_area)
> > +
> > +/*
> > + * Drops the XSAVE area of a vCPU and nullifies its pointer on exit.
> > + *
> > + * If ASI is enabled and v is not the currently scheduled vCPU then the
> > + * per-pCPU mapping is removed from the address space.
> > + *
> > + * @param v vCPU logically owning xsave_area
> > + * @param xsave_area XSAVE blob of v
> > + */
> > +#define vcpu_unmap_xsave_area(v, x) ({ (x) = NULL; })
> > +
>
> Is there a preview of how these will end up looking with the real ASI
> bits in place?
I expect the contents to be something along these lines (in function form for
clarity):
struct xsave_struct *vcpu_map_xsave_area(struct vcpu *v)
{
if ( !v->domain->asi )
return v->arch.xsave_area;
if ( likely(v == current) )
return percpu_fixmap(v, PCPU_FIX_XSAVE_AREA);
/* Likely some new vmap-like abstraction after AMX */
return map_domain_page(v->arch.xsave_area_pg);
}
Where:
1. v->arch.xsave_area is a pointer to the XSAVE area on non-ASI domains.
2. v->arch.xsave_area_pg an mfn (or a pointer to a page_info, converted)
3. percpu_fixmap(v, PCPU_FIX_XSAVE_AREA) is a slot in a per-vCPU fixmap, that
changes as we context switch from vCPU to vCPU.
/*
* NOTE: Being a function this doesn't nullify the xsave_area pointer, but
* it would in a macro. It's unimportant for the overall logic though.
*/
void vcpu_unmap_xsave_area(struct vcpu *v, struct xsave_struct *xsave_area)
{
/* Catch mismatched areas when ASI is disabled */
ASSERT(v->domain->asi || xsave_area == v->arch.xsave_area);
/* Likely some new vunmap-like abstraction after AMX */
if ( v->domain->asi && v != current )
unmap_domain_page(xsave_area);
}
Of course, many of these details hang in the balance of what happens to the ASI
series from Roger. In any case, the takeaway is that map/unmap must have
fastpaths for "current" that don't involve mapping. The assumption is that
non-current vCPUs are cold paths. In particular, context switches will undergo
some refactoring in order to make save/restore not require additional
map/unmaps besides the page table switch and yet another change to further
align "current" with the currently running page tables. Paths like the
instruction emulator go through these wrappers later on for ease of
auditability, but are early-returns that cause no major overhead.
My expectation is that these macros are general enough to be tweakable in
whatever way is most suitable, thus allowing the refactor of the codebase at
large to make it ASI-friendly before the details of the ASI infra are merged,
or even finalised.
>
> Having a macro-that-reads-like-a-function mutating x by name, rather
> than by pointer, is somewhat rude. This is why we capitalise
> XFREE()/etc which have a similar pattern; to make it clear it's a macro
> and potentially doing weird things with scopes.
>
> ~Andrew
That magic trick on unmap warrants uppercase, agreed. Initially it was all
function calls and after macrofying them I was lazy to change their users.
Cheers,
Alejandro
next prev parent reply other threads:[~2024-10-29 11:58 UTC|newest]
Thread overview: 36+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-10-28 15:49 [PATCH 00/14] x86: Address Space Isolation FPU preparations Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 01/14] x86/xstate: Update stale assertions in fpu_x{rstor,save}() Alejandro Vallejo
2024-10-28 17:16 ` Andrew Cooper
2024-10-29 8:13 ` Jan Beulich
2024-10-29 10:56 ` Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 02/14] x86/xstate: Create map/unmap primitives for xsave areas Alejandro Vallejo
2024-10-28 17:20 ` Andrew Cooper
2024-10-29 11:57 ` Alejandro Vallejo [this message]
2024-10-29 13:24 ` Frediano Ziglio
2024-10-29 14:23 ` Alejandro Vallejo
2024-10-29 13:28 ` Jan Beulich
2024-10-29 14:12 ` Alejandro Vallejo
2024-10-29 8:19 ` Jan Beulich
2024-10-29 10:55 ` Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 03/14] x86/hvm: Map/unmap xsave area in hvm_save_cpu_ctxt() Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 04/14] x86/fpu: Map/umap xsave area in vcpu_{reset,setup}_fpu() Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 05/14] x86/xstate: Map/unmap xsave area in xstate_set_init() and handle_setbv() Alejandro Vallejo
2024-10-29 8:26 ` Jan Beulich
2024-10-29 13:00 ` Alejandro Vallejo
2024-10-29 13:31 ` Jan Beulich
2024-10-29 14:14 ` Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 06/14] x86/hvm: Map/unmap xsave area in hvmemul_{get,put}_fpu() Alejandro Vallejo
2024-10-29 8:30 ` Jan Beulich
2024-10-28 15:49 ` [PATCH 07/14] x86/domctl: Map/unmap xsave area in arch_get_info_guest() Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 08/14] x86/xstate: Map/unmap xsave area in {compress,expand}_xsave_states() Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 09/14] x86/emulator: Refactor FXSAVE_AREA to use wrappers Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 10/14] x86/mpx: Map/unmap xsave area in in read_bndcfgu() Alejandro Vallejo
2024-10-29 8:27 ` Jan Beulich
2024-10-28 15:49 ` [PATCH 11/14] x86/mpx: Adjust read_bndcfgu() to clean after itself Alejandro Vallejo
2024-10-29 8:32 ` Jan Beulich
2024-10-28 15:49 ` [PATCH 12/14] x86/fpu: Pass explicit xsave areas to fpu_(f)xsave() Alejandro Vallejo
2024-10-29 8:37 ` Jan Beulich
2024-10-29 10:59 ` Alejandro Vallejo
2024-10-28 15:49 ` [PATCH 13/14] x86/fpu: Pass explicit xsave areas to fpu_(f)xrstor() Alejandro Vallejo
2024-10-29 8:40 ` Jan Beulich
2024-10-28 15:49 ` [PATCH 14/14] x86/xstate: Make xstate_all() and vcpu_xsave_mask() take explicit xstate 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=D589SQ8Y0WGU.2MM4HPFUKJYGT@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.