From: George Dunlap <george.dunlap@citrix.com>
To: Jan Beulich <JBeulich@suse.com>
Cc: Kevin Tian <kevin.tian@intel.com>, Wei Liu <wei.liu2@citrix.com>,
Razvan Cojocaru <rcojocaru@bitdefender.com>,
Andrew Cooper <andrew.cooper3@citrix.com>,
Jun Nakajima <jun.nakajima@intel.com>,
xen-devel <xen-devel@lists.xenproject.org>
Subject: Re: [PATCH V6 4/4] x86/altp2m: fix display frozen when switching to a new view early
Date: Fri, 16 Nov 2018 15:05:19 +0000 [thread overview]
Message-ID: <b096879e-c2cd-7255-46b5-bcd5ecc5a017@citrix.com> (raw)
In-Reply-To: <5BEEB8B502000078001FCBEF@prv1-mh.provo.novell.com>
On 11/16/18 12:31 PM, Jan Beulich wrote:
>>>> On 16.11.18 at 13:03, <george.dunlap@citrix.com> wrote:
>> So the basic question is, does "max_mapped_pfn" mean, "Maximum pfn _for
>> the domain_", or "Maximum pfn _for this p2m_". When the element was
>> added to the p2m struct those were the same thing. Which do the various
>> use cases expect it to be, and which would be the most robust going forward?
>
> So with the field getting updated right in ept_set_entry(), as long as
> no copying of entries exists which does not go through that function,
> I then agree that it shouldn't really matter whether the field gets
> copied when setting up a new altp2m.
>
> However, fair parts of your further response are confusing to me,
> rather than clarifying. That's for one because you talk about the
> max_remapped_gfn field, but you never mention its
> min_remapped_gfn sibling. The only place I could find where
> current code consumes these two is p2m_altp2m_propagate_change().
> This suggests to me that both fields really only exist for optimization
> purposes.
>
> Furthermore I in particular ...
>
>> I spent a bunch of time going through the code yesterday, and I'm pretty
>> sure that as long as the value in the p2m is one or the other, there
>> will be at the moment no _correctness_ issues. It looked to me like in
>> the case where altp2m->max_mapped_pfn > altp2m->max_remapped_gfn, then
>> the p2m machinery would do a certain amount of unnecessary work, but
>> that's all.
>>
>> It also looked to me like before this patch, the value mostly ends up
>> being "maximum pfn ever mapped in this p2m (even across altp2m
>> desroys)". That's because when the altp2m is allocated, it starts as 0;
>> every time an entry is propagated from the hostp2m to the altp2m,
>> ept_set_entry() updates max_mapped_pfn; but nothing sets it back to zero.
>>
>> Also, hostp2m->max_mapped_pfn is never decreased, only increased.
>>
>> So either before or after this patch, altp2m->max_remapped_gfn <=
>> altp2m->max_mapped_pfn <= hostp2m->max_mapped_pfn.
>>
>> In the vast majority of cases, max_mapped_pfn is explicitly being read
>> from the hostp2m.
>>
>> Below are the cases where it may be read from an altp2m:
>>
>> - ept_get_entry(), ept_walk_tables(): If ==max_remapped_gfn, it will
>> return INVALID_MFN early. If higher than max_remapped_gfn, it falls
>> back to walking the altp2m's ept tables, which will give you the same
>> answer, just a bit more slowly.
>>
>> - ept_dump_p2m_tables(): If ==max_remapped_gfn, it will dump only up to
>> the current map; if >max_remapped_gfn, it will dump a number of
>> unnecessary INVALID_MFN entries, but no more entries than the hostp2m.
>>
>> - p2m.c:change_type_range(): If ==max_remapped_gfn, it will only
>> invalidate entries in the altp2m as high have been currently remapped.
>> If >max_remapped_gfn, it will write invalid ept entries that *haven't*
>> yet been copied over. But I don't think either one should cause a
>> correctness issue: either way, accessing a gfn > max_remapped_gfn will
>> cause a fault, at which point either the correct value will be copied
>> from the hostp2m (perhaps going through resolve_misconfig() on the
>> hostp2m in the process) or the correct value will be calculated via
>> resolve_misconfig().
>
> ... cannot identify any of the three cases above where I understand
> you say a max_mapped_pfn == max_remapped_gfn comparison
> happens. But as you say - the code is complicated enough, so I may
> easily overlook something.
Sorry, it seems I took too many shortcuts explaining things. :-) I was
using max_remapped_gfn as a shorthand for, "the highest gfn mapped in
the altp2m" (since that's what it will be equal to). Not that an actual
comparison will happen there, but we're considering what will happen,
based on various values of altp2m->max_mapped_pfn, when a gfn that is
higher than the highest *remapped* gfn is encountered.
So in the situation we're considering, the following are always true:
- gfn > altp2m->max_remapped_gfn
- altp2m->max_remapped_gfn <= altp2m->max_mapped_pfn <=
hostp2m->max_mapped_pfn
And we're comparing the results in the following cases:
A: altp2m->max_mapped_pfn == alt2m->max_remapped_gfn
B: altp2m->max_mapped_pfn > altp2m->max_remapped_gfn
(Perhaps == hostp2m->max_mapped_pfn, perhaps something in between).
Take ept_get_entry(). At this level, it's below all the mem_access /
mem_sharing / mem_paging / altp2m abstractions. Apart from
resolve_misconfig and pod, it should return the actual contents of the
particular p2m it's given. In the case of an altp2m, any entries above
what's currently been remapped should return empty.
In case A, it will do this, because the first conditional will find that
gfn > altp2m->max_mapped_pfn.
In case B, it will also do this, because although it passes the first
conditional, when it actually reads the table it will find an empty
entry and return that.
Both results are correct, but A is a tiny bit faster.
Now take change_type_range. The global effect of change_type_range
should be that reads of the p2m which happen afterwards should have the
new, changed value.
In case A, change_type_range will write invalid entries up to
max_remapped_pfn, leaving the range between max_remapped_pfn and
hostp2m->max_mapped_pfn invalid. When a gfn in this range is read, an
EPT fault will happen, p2m_altp2m_lazy_copy() will be called, and the
new (correct) value copied from the hostp2m.
In case B, change_type_range will write invalid entries up until
hostp2m->max_mapped_pfn. When a gfn in this range is accessed, a
MISCONFIG fault will happen, and the correct value will be calculated in
resolve_misconfig.
And at this point, I realize that my previous analysis was probably
wrong, because at this point altp2m->max_remapped_gfn will be wrong:
entries above max_remapped_gfn will have become valid without going
through p2m_altp2m_lazy_copy().
-George
_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xenproject.org
https://lists.xenproject.org/mailman/listinfo/xen-devel
next prev parent reply other threads:[~2018-11-16 15:05 UTC|newest]
Thread overview: 31+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-14 20:39 [PATCH V6 0/4] Fix VGA logdirty related display freezes with altp2m Razvan Cojocaru
2018-11-14 20:39 ` [PATCH V6 1/4] x86/altp2m: propagate ept.ad changes to all active altp2ms Razvan Cojocaru
2018-11-14 20:40 ` [PATCH V6 2/4] x86/mm: introduce p2m_{init, free}_logdirty() Razvan Cojocaru
2018-11-15 16:21 ` George Dunlap
2018-11-14 20:40 ` [PATCH V6 3/4] x86/mm: allocate logdirty_ranges for altp2ms Razvan Cojocaru
2018-11-15 10:56 ` Jan Beulich
2018-11-15 12:14 ` Razvan Cojocaru
2018-11-15 15:52 ` George Dunlap
2018-11-15 16:21 ` Razvan Cojocaru
2018-11-14 20:40 ` [PATCH V6 4/4] x86/altp2m: fix display frozen when switching to a new view early Razvan Cojocaru
2018-11-15 17:34 ` George Dunlap
2018-11-15 17:54 ` Razvan Cojocaru
2018-11-16 10:08 ` Jan Beulich
2018-11-16 10:21 ` Razvan Cojocaru
2018-11-16 12:03 ` George Dunlap
2018-11-16 12:26 ` Razvan Cojocaru
2018-11-16 12:31 ` Jan Beulich
2018-11-16 15:05 ` George Dunlap [this message]
2018-11-16 15:52 ` George Dunlap
2018-11-19 12:42 ` Jan Beulich
2018-11-19 13:01 ` Razvan Cojocaru
2018-11-16 14:10 ` Razvan Cojocaru
2018-11-16 17:59 ` George Dunlap
2018-11-16 19:50 ` Razvan Cojocaru
2018-11-17 18:58 ` Razvan Cojocaru
2018-11-19 15:58 ` George Dunlap
2018-11-19 16:17 ` Razvan Cojocaru
2018-11-19 16:49 ` George Dunlap
2018-11-15 20:26 ` George Dunlap
2018-11-15 20:51 ` Razvan Cojocaru
2018-11-16 12:20 ` George Dunlap
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=b096879e-c2cd-7255-46b5-bcd5ecc5a017@citrix.com \
--to=george.dunlap@citrix.com \
--cc=JBeulich@suse.com \
--cc=andrew.cooper3@citrix.com \
--cc=jun.nakajima@intel.com \
--cc=kevin.tian@intel.com \
--cc=rcojocaru@bitdefender.com \
--cc=wei.liu2@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.