aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDaniel De Graaf <dgdegra@tycho.nsa.gov>2013-09-26 10:15:47 +0200
committerJan Beulich <jbeulich@suse.com>2013-09-26 10:15:47 +0200
commit07344c0f33be13bf9232a113681ef9087557f706 (patch)
tree8b9d2be49c6e2546eb72e9a5d7de6dc5bc074672
parentf12c1f0b09205cdf18a2c4a615fdc3e7357ce704 (diff)
downloadxen-07344c0f33be13bf9232a113681ef9087557f706.tar.gz
xen-07344c0f33be13bf9232a113681ef9087557f706.tar.bz2
xen-07344c0f33be13bf9232a113681ef9087557f706.zip
fix DOMID_IO mapping permission checks (try 2)
When the permission checks for memory mapping were moved from get_pg_owner to xsm_mmu_update in aaba7a677, the exception for DOMID_IO was not taken into account. This will cause IO memory mappings by PV domains (mini-os in particular) to fail when XSM/FLASK is not being used. This patch reintroduces the exception for DOMID_IO; the actual restrictions on IO memory mappings have always been checked separately using iomem_access_permitted, so this change should not break existing access control. Reported-by: Eduardo Peixoto Macedo <epm@cin.ufpe.br> Signed-off-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
-rw-r--r--xen/include/xsm/dummy.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/xen/include/xsm/dummy.h b/xen/include/xsm/dummy.h
index cc0a5a8301..052f3e0111 100644
--- a/xen/include/xsm/dummy.h
+++ b/xen/include/xsm/dummy.h
@@ -567,9 +567,10 @@ static XSM_INLINE int xsm_domain_memory_map(XSM_DEFAULT_ARG struct domain *d)
static XSM_INLINE int xsm_mmu_update(XSM_DEFAULT_ARG struct domain *d, struct domain *t,
struct domain *f, uint32_t flags)
{
- int rc;
+ int rc = 0;
XSM_ASSERT_ACTION(XSM_TARGET);
- rc = xsm_default_action(action, d, f);
+ if ( f != dom_io )
+ rc = xsm_default_action(action, d, f);
if ( t && !rc )
rc = xsm_default_action(action, d, t);
return rc;