From: Mukesh Rathor <mukesh.rathor@oracle.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: xen-devel@lists.xenproject.org, keir.xen@gmail.com
Subject: Re: [V1 PATCH] PVH: avoid call to handle_mmio
Date: Fri, 6 Jun 2014 12:42:13 -0700 [thread overview]
Message-ID: <20140606124213.4dd4716b@mantra.us.oracle.com> (raw)
In-Reply-To: <53902A2E02000078000180D9@mail.emea.novell.com>
On Thu, 05 Jun 2014 07:28:30 +0100
"Jan Beulich" <JBeulich@suse.com> wrote:
> >>> On 05.06.14 at 01:52, <mukesh.rathor@oracle.com> wrote:
> > On Wed, 04 Jun 2014 08:24:15 +0100
> > "Jan Beulich" <JBeulich@suse.com> wrote:
> >
> >> >>> On 04.06.14 at 00:00, <mukesh.rathor@oracle.com> wrote:
> >> > handle_mmio() is currently unsafe for pvh guests. A call to it
> >> > would result in call to vioapic_range that will crash xen since
> >> > the vioapic ptr in struct hvm_domain is not initialized for pvh
> >> > guests.
> >> >
> >> > However, one path exists for such a call. If a pvh guest, dom0 or
> >> > domU, unintentionally touches non-existing memory, an EPT
> >> > violation would occur. This would result in unconditional call to
> >> > hvm_hap_nested_page_fault. In that function, because
> >> > get_gfn_type_access returns p2m_mmio_dm for non existing mfns by
> >> > default, handle_mmio() will get called. This would result in xen
> >> > crash instead of the guest crash. This patch addresses that.
> >>
> >> Yes, we definitely want this until being properly handled, no
> >> matter that crashing the guest here doesn't seem to be the right
> >> thing either (normal x86 behavior would be to drop writes and
> >> return all ones for reads).
> >
> > How about doing the same we do for HVM which is inject GP. Then
> > handle_mmio would just return 0 for pvh, and
> > hvm_hap_nested_page_fault would not need to be modified.
>
> The fundamentally wrong thing is that real hardware wouldn't
> surface #GP on any wrong physical address - with one exception,
> the only possibility would be #MC, and I don't think this would
> ever happen for truly unpopulated ranges. (The exception being
> on AMD, where #PF gets surfaced when trying to access a page
> referring to the HT reserved address range.) IOW even on HVM
> it is wrong for us to inject #GP in cases like this.
We, internally here, discussed the idea of injecting #PF instead of #GP. That
makes sense from baremetal perspective. IOW, if we look at it from the
prespective that the guest kernel put a bad pte entry, then on baremetal
it will get a #PF. Moreover, a PV guest returns 0 for mfn if the p2m
lookup fails, and in some paths it appears the code does do_mmu_update
subsequently.... which should result in guest getting a NULL ptr later.
-Mukesh
next prev parent reply other threads:[~2014-06-06 19:42 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-06-03 22:00 [V1 PATCH] PVH: avoid call to handle_mmio Mukesh Rathor
2014-06-03 22:00 ` Mukesh Rathor
2014-06-04 7:24 ` Jan Beulich
2014-06-04 23:52 ` Mukesh Rathor
2014-06-05 6:28 ` Jan Beulich
2014-06-06 19:42 ` Mukesh Rathor [this message]
2014-06-10 7:09 ` Jan Beulich
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=20140606124213.4dd4716b@mantra.us.oracle.com \
--to=mukesh.rathor@oracle.com \
--cc=JBeulich@suse.com \
--cc=keir.xen@gmail.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).