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>
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 )
{
/* _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;
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