From: Julien Grall <julien.grall@linaro.org>
To: Ian Campbell <Ian.Campbell@citrix.com>
Cc: xen-devel@lists.xenproject.org, patches@linaro.org,
stefano.stabellini@citrix.com, tim@xen.org
Subject: Re: [PATCH v2] xen/arm: p2m: Correctly flush TLB in create_p2m_entries
Date: Mon, 13 Jan 2014 17:37:49 +0000 [thread overview]
Message-ID: <52D4246D.1050400@linaro.org> (raw)
In-Reply-To: <1389633015.13654.109.camel@kazak.uk.xensource.com>
On 01/13/2014 05:10 PM, Ian Campbell wrote:
> Hrm, our TLB flush discipline is horribly confused isn't it...
>
> On Thu, 2014-01-09 at 16:34 +0000, Julien Grall wrote:
>> The p2m is shared between VCPUs for each domain. Currently Xen only flush
>> TLB on the local PCPU. This could result to mismatch between the mapping in the
>> p2m and TLBs.
>>
>> Flush TLB entries used by this domain on every PCPU. The flush can also be
>> moved out of the loop because:
>> - ALLOCATE: only called for dom0 RAM allocation, so the flush is never called
>
> OK.
>
> An ASSERT(!third[third_table_offset(addr)].p2m.valid) might be
> worthwhile if that is the case.
Will add it.
>
> (I'm not sure why ALLOCATE can't be replaced by allocation followed by
> an INSERT, it's seems very special case)
>
>> - INSERT: if valid = 1 that would means with have replaced a
>> page that already belongs to the domain. A VCPU can write on the wrong page.
>> This can append for dom0 with the 1:1 mapping because the mapping is not
>> removed from the p2m.
>
> "append"? Do you mean "happen"?
I meant "happen".
>
> In the non-dom0 1:1 case eventually the page will be freed, I guess by a
> subsequent put_page elsewhere -- do they all contain the correct
> flushing? Or do we just leak?
As for foreign mapping the INSERT function should be hardened. We don't
have a protection against the guest is replacing a current valid mapping.
> What happens if the page being replaced is foreign? Do we leak a
> reference to another domain's page? (This is probably a separate issue
> though, I suspect the put_page needs pulling out of the switch(op)
> statement).
Right we leak a reference to another domain.
>
>> - REMOVE: except for grant-table (replace_grant_host_mapping),
>
> What about this case? What makes it safe?
As specified a bit later, I can't say if it's safe or not. I was unabled
to find a proof in the code.
>> each
>> call to guest_physmap_remove_page are protected by the callers via a
>> get_page -> .... -> guest_physmap_remove_page -> ... -> put_page. So
>> the page can't be allocated for another domain until the last put_page.
>
> I have confirmed this is the case for guest_remove_page, memory_exchange
> and XENMEM_remove_from_physmap.
>
> There is one case I saw where this isn't true which is gnttab_transfer,
> AFAICT that will fail because steal_page unconditionally returns an
> error on arm. There is also a flush_tlb_mask there, FWIW.
hmmm... I forgot this one... why don't we have a {get,put}_page in this
function?
>
>> - RELINQUISH : the domain is not running anymore so we don't care...
>
> At some point this page will be reused, as will the VMID, where/how is
> it ensured that a flush will happen before that point?
When the VMID is reused, Xen will flush everything TLBs associated to
this VMID (see p2m_alloc_table);
--
Julien Grall
next prev parent reply other threads:[~2014-01-13 17:37 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-09 16:34 [PATCH v2] xen/arm: p2m: Correctly flush TLB in create_p2m_entries Julien Grall
2014-01-13 17:10 ` Ian Campbell
2014-01-13 17:37 ` Julien Grall [this message]
2014-01-13 17:57 ` Ian Campbell
2014-01-14 12:41 ` Julien Grall
2014-01-14 12:54 ` Ian Campbell
2014-01-14 13:20 ` Julien Grall
2014-01-14 15:28 ` Ian Campbell
2014-01-16 10:10 ` Tim Deegan
2014-01-16 10:46 ` Ian Campbell
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=52D4246D.1050400@linaro.org \
--to=julien.grall@linaro.org \
--cc=Ian.Campbell@citrix.com \
--cc=patches@linaro.org \
--cc=stefano.stabellini@citrix.com \
--cc=tim@xen.org \
--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.