]> xenbits.xensource.com Git - xen.git/commitdiff
xen/p2m: Fix p2m_flush_table for non-nested cases
authorGeorge Dunlap <george.dunlap@citrix.com>
Wed, 15 Feb 2017 17:13:22 +0000 (17:13 +0000)
committerGeorge Dunlap <george.dunlap@citrix.com>
Wed, 15 Feb 2017 17:15:56 +0000 (17:15 +0000)
Commit 71bb7304e7a7a35ea6df4b0cedebc35028e4c159 added flushing of
nested p2m tables whenever the host p2m table changed.  Unfortunately
in the process, it added a filter to p2m_flush_table() function so
that the p2m would only be flushed if it was being used as a nested
p2m.  This meant that the p2m was not being flushed at all for altp2m
callers.

Only check np2m_base if p2m_class for nested p2m's.

NB that this is not a security issue: The only time this codepath is
called is in cases where either nestedp2m or altp2m is enabled, and
neither of them are in security support.

Reported-by: Matt Leinhos <matt@starlab.io>
Signed-off-by: George Dunlap <george.dunlap@citrix.com>
Reviewed-by: Tim Deegan <tim@xen.org>
Tested-by: Tamas K Lengyel <tamas@tklengyel.com>
xen/arch/x86/mm/p2m.c

index db331536961dec5c1d7add802f504d18712ef425..0c1820e0e1858f6f600f6fdd83fad76ccfe6a1aa 100644 (file)
@@ -1618,7 +1618,8 @@ p2m_flush_table(struct p2m_domain *p2m)
     ASSERT(page_list_empty(&p2m->pod.super));
     ASSERT(page_list_empty(&p2m->pod.single));
 
-    if ( p2m->np2m_base == P2M_BASE_EADDR )
+    /* No need to flush if it's already empty */
+    if ( p2m_is_nestedp2m(p2m) && p2m->np2m_base == P2M_BASE_EADDR )
     {
         p2m_unlock(p2m);
         return;