Sign Up
Log In
Log In
or
Sign Up
Places
All Projects
Status Monitor
Collapse sidebar
SUSE:SLE-12-SP1:GA
xen.10697
5bf41f9d-x86-dom0-fix-shadowing-with-2M-pages.p...
Overview
Repositories
Revisions
Requests
Users
Attributes
Meta
File 5bf41f9d-x86-dom0-fix-shadowing-with-2M-pages.patch of Package xen.10697
Subject: x86/dom0: Fix shadowing of PV guests with 2M superpages From: Andrew Cooper andrew.cooper3@citrix.com Tue Nov 20 15:52:13 2018 +0100 Date: Tue Nov 20 15:52:13 2018 +0100: Git: 70294dbe2ad3e50a110b20defe995994976c99c4 This is a minimal backport of pieces of: c/s 28d9a9a2d41759b9e5163037b759ac557aea767c c/s 4c5d78a10dc89427140a50a1df5a0b8e9f073e82 to fix a PV shadowing problem which I hadn't anticipated at the time these fixes were first accepted. Having opt_allow_superpage disabled causes guest_supports_superpages() to return false for PV guests. Returning false causes guest_walk_tables() to ignore L2 superpages, and read under them. This ignoring behaviour is correct for 2-level paging when CR4.PSE is clear, but isn't correct for 3- or 4-level paging. When opt_allow_superpage is clear, PV domU's can't have superpages, but dom0 will still have its initial P2M constructed with 2M superpages. The end result is that, if dom0 becomes shadowed (e.g. PV-L1TF), the next memory access touching a P2M superpage will cause the shadow code to read under the P2M superpage and attempt to shadow junk. Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com> Reviewed-by: Jan Beulich <jbeulich@suse.com> --- a/xen/arch/x86/mm/guest_walk.c +++ b/xen/arch/x86/mm/guest_walk.c @@ -282,9 +282,20 @@ guest_walk_tables(struct vcpu *v, struct rc |= _PAGE_PRESENT; goto out; } + + /* + * In 2-level paging without CR0.PSE, there are no reserved bits, and the + * PAT/PSE bit is ignored. + */ + if ( GUEST_PAGING_LEVELS == 2 && !guest_supports_superpages(v) ) + { + gw->l2e.l2 &= ~_PAGE_PSE; + gflags &= ~_PAGE_PSE; + } + rc |= ((gflags & mflags) ^ mflags); - pse2M = (gflags & _PAGE_PSE) && guest_supports_superpages(v); + pse2M = !!(gflags & _PAGE_PSE); if ( pse2M ) { @@ -306,6 +317,8 @@ guest_walk_tables(struct vcpu *v, struct /* _PAGE_PSE_PAT not set: remove _PAGE_PAT from flags. */ flags &= ~_PAGE_PAT; + if ( !guest_supports_superpages(v) ) + rc |= _PAGE_PSE | _PAGE_INVALID_BIT; if ( gfn_x(start) & GUEST_L2_GFN_MASK & ~0x1 ) rc |= _PAGE_INVALID_BITS; --- a/xen/include/asm-x86/guest_pt.h +++ b/xen/include/asm-x86/guest_pt.h @@ -193,14 +193,18 @@ static inline guest_l4e_t guest_l4e_from static inline int guest_supports_superpages(struct vcpu *v) { - /* The _PAGE_PSE bit must be honoured in HVM guests, whenever - * CR4.PSE is set or the guest is in PAE or long mode. - * It's also used in the dummy PT for vcpus with CR4.PG cleared. */ - return (is_pv_vcpu(v) - ? opt_allow_superpage - : (GUEST_PAGING_LEVELS != 2 - || !hvm_paging_enabled(v) - || (v->arch.hvm_vcpu.guest_cr[4] & X86_CR4_PSE))); + /* + * PV guests use Xen's paging settings. Being 4-level, 2M + * superpages are unconditionally supported. + * + * The L2 _PAGE_PSE bit must be honoured in HVM guests, whenever + * CR4.PSE is set or the guest is in PAE or long mode. + * It's also used in the dummy PT for vcpus with CR0.PG cleared. + */ + return (is_pv_vcpu(v) || + GUEST_PAGING_LEVELS != 2 || + !hvm_paging_enabled(v) || + (v->arch.hvm_vcpu.guest_cr[4] & X86_CR4_PSE)); } static inline int
Locations
Projects
Search
Status Monitor
Help
OpenBuildService.org
Documentation
API Documentation
Code of Conduct
Contact
Support
@OBShq
Terms
openSUSE Build Service is sponsored by
The Open Build Service is an
openSUSE project
.
Sign Up
Log In
Places
Places
All Projects
Status Monitor