|
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [Xen-changelog] [xen stable-4.9] xen/arm: p2m: Check for p2m->domain to be initialized before releasing resources
commit 4d190d79b48b75f612d664dca0b7036fc5304c6d
Author: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx>
AuthorDate: Mon Aug 28 20:32:26 2017 +0300
Commit: Stefano Stabellini <sstabellini@xxxxxxxxxx>
CommitDate: Thu Jan 11 12:22:14 2018 -0800
xen/arm: p2m: Check for p2m->domain to be initialized before releasing
resources
Since p2m_teardown() can be called when p2m_init() haven't executed yet
we might deal with unitialized list "p2m->pages" which leads to crash.
To avoid this use back pointer to domain as end-of-initialization indicator.
Signed-off-by: Oleksandr Tyshchenko <oleksandr_tyshchenko@xxxxxxxx>
Signed-off-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>
Reviewed-by: Stefano Stabellini <sstabellini@xxxxxxxxxx>
(cherry picked from commit abd91b2a2bcd05618a71f7e5fe571dd10a5727bc)
---
xen/arch/arm/p2m.c | 14 +++++++++++++-
1 file changed, 13 insertions(+), 1 deletion(-)
diff --git a/xen/arch/arm/p2m.c b/xen/arch/arm/p2m.c
index 795e579..ee7f102 100644
--- a/xen/arch/arm/p2m.c
+++ b/xen/arch/arm/p2m.c
@@ -1239,6 +1239,10 @@ void p2m_teardown(struct domain *d)
struct p2m_domain *p2m = &d->arch.p2m;
struct page_info *pg;
+ /* p2m not actually initialized */
+ if ( !p2m->domain )
+ return;
+
while ( (pg = page_list_remove_head(&p2m->pages)) )
free_domheap_page(pg);
@@ -1250,6 +1254,8 @@ void p2m_teardown(struct domain *d)
p2m_free_vmid(d);
radix_tree_destroy(&p2m->mem_access_settings, NULL);
+
+ p2m->domain = NULL;
}
int p2m_init(struct domain *d)
@@ -1267,7 +1273,6 @@ int p2m_init(struct domain *d)
if ( rc != 0 )
return rc;
- p2m->domain = d;
p2m->max_mapped_gfn = _gfn(0);
p2m->lowest_mapped_gfn = _gfn(ULONG_MAX);
@@ -1296,6 +1301,13 @@ int p2m_init(struct domain *d)
for_each_possible_cpu(cpu)
p2m->last_vcpu_ran[cpu] = INVALID_VCPU_ID;
+ /*
+ * Besides getting a domain when we only have the p2m in hand,
+ * the back pointer to domain is also used in p2m_teardown()
+ * as an end-of-initialization indicator.
+ */
+ p2m->domain = d;
+
return rc;
}
--
generated by git-patchbot for /home/xen/git/xen.git#stable-4.9
_______________________________________________
Xen-changelog mailing list
Xen-changelog@xxxxxxxxxxxxxxxxxxxx
https://lists.xenproject.org/xen-changelog
|
![]() |
Lists.xenproject.org is hosted with RackSpace, monitoring our |