[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] Re: [PATCH] x86/PV32: restore PAE-extended-CR3 logic
On 15/02/2023 2:54 pm, Jan Beulich wrote: > While the PAE-extended-CR3 VM assist is a 32-bit only concept, it still > applies to guests also when run on a 64-bit hypervisor: Is this really true? Even when looking at Xen 4.2, 32bit guests are required to pass a full 4k page, not a 32b quad. Which makes complete sense. It was a hard requirement of 32bit non-PAE guests, so it was a natural restriction to maintain into 32bit PAE guests. This is *only* a 32-on-64 issue, because this is the only case a 32bit guest could in principle use an L3 placed above the 4G boundary. > The "extended > CR3" format has to be used there as well, to fit the address in the only > 32-bit wide register there. As a result it was a mistake that the check > was never enabled for that case, and was then mistakenly deleted in the > course of removal of 32-bit-Xen code (218adf199e68 ["x86: We can assume > CONFIG_PAGING_LEVELS==4"]). > > Similarly during Dom0 construction kernel awareness needs to be taken > into account, and respective code was again mistakenly never enabled for > 32-bit Dom0 when running on 64-bit Xen (and thus wrongly deleted by > 5d1181a5ea5e ["xen: Remove x86_32 build target"]). > > At the same time restrict enabling of the assist for Dom0 to just the > 32-bit case. Furthermore there's no need for an atomic update there. > > Signed-off-by: Jan Beulich <jbeulich@xxxxxxxx> > --- > I was uncertain whether to add a check to the CR3 guest read path, > raising e.g. #GP(0) when the value read wouldn't fit but also may not > be converted to "extended" format (overflow is possible there in > principle because of the control tools "slack" in promote_l3_table()). > > In that context I was puzzled to find no check on the CR3 guest write > path even in 4.2: A guest (bogusly) setting the PCD or PWT bits (or any > of the low reserved ones) could observe anomalous behavior rather than > plain failure. > > As to a Fixes: tag - it's pretty unclear which of the many original > 32-on-64 changes to blame. I don't think the two cited commits should > be referenced there, as they didn't break anything that wasn't already > broken. > > --- a/xen/arch/x86/mm.c > +++ b/xen/arch/x86/mm.c > @@ -1520,6 +1520,23 @@ static int promote_l3_table(struct page_ > unsigned int partial_flags = page->partial_flags; > l3_pgentry_t l3e = l3e_empty(); > > + /* > + * PAE pgdirs above 4GB are unacceptable if a 32-bit guest does not > + * understand the weird 'extended cr3' format for dealing with high-order > + * address bits. We cut some slack for control tools (before vcpu0 is > + * initialised). > + */ > + if ( is_pv_32bit_domain(d) && > + unlikely(!VM_ASSIST(d, pae_extended_cr3)) && > + mfn_x(l3mfn) >= 0x100000 && > + d->vcpu[0] && d->vcpu[0]->is_initialised ) > + { > + gdprintk(XENLOG_WARNING, > + "PAE pgd must be below 4GB (%#lx >= 0x100000)", > + mfn_x(l3mfn)); > + return -ERANGE; > + } Having dug through source history, I see this is largely the form that it used to be. But I'm unconvinced by the "cut control tools some slack". I'm quite tired of different bits of Xen taking on unnecessary complexity because people are unwilling to fix the problem at the correct layer. A toolstack which has non-pae_extended_cr3 guest on its hand will know this before any pagetables get allocated. That said... I don't recall encountering this in migration v2, and looking at the logic now, I'm pretty sure it will malfunction with a non-pae_extended_cr3 guest. When interpreting the guest cr3 value, we blindly make the transform on the save and restore side, and I can't spot anything limiting the L3 tables to below the 4G boundary. So I'm reasonably sure I accidentally broke such guests in Xen 4.6(?) and the absence of complaints in the intervening 8(?) years shows how many are in use in practice. For this check specifically, I'd suggest prohibiting non-32p guests from setting pae_extended_cr3 in the first place (I see no limit currently), and then simplifying the check to just if ( unlikely(!VM_ASSIST(d, pae_extended_cr3)) && mfn_x(l3mfn) >= PFN_DOWN(GB(4)) ) And I suppose I need to make a non-pae_extended_cr3 XTF test which is migrate-capable... ~Andrew
|
Lists.xenproject.org is hosted with RackSpace, monitoring our |