87 lines
2.7 KiB
Diff
87 lines
2.7 KiB
Diff
|
# Commit ee75480b3c8856db9ef1aa45418f35ec0d78989d
|
||
|
# Date 2014-07-23 18:07:11 +0200
|
||
|
# Author Andrew Cooper <andrew.cooper3@citrix.com>
|
||
|
# Committer Jan Beulich <jbeulich@suse.com>
|
||
|
x86/mem_event: validate the response vcpu_id before acting on it
|
||
|
|
||
|
Signed-off-by: Andrew Cooper <andrew.cooper3@citrix.com>
|
||
|
Reviewed-by: Tim Deegan <tim@xen.org>
|
||
|
Reviewed-by: Andres Lagar-Cavilla <andres@lagarcavilla.org>
|
||
|
Tested-by: Razvan Cojocaru <rcojocaru@bitdefender.com>
|
||
|
|
||
|
--- a/xen/arch/x86/mm/mem_sharing.c
|
||
|
+++ b/xen/arch/x86/mm/mem_sharing.c
|
||
|
@@ -596,11 +596,20 @@ int mem_sharing_sharing_resume(struct do
|
||
|
/* Get all requests off the ring */
|
||
|
while ( mem_event_get_response(d, &d->mem_event->share, &rsp) )
|
||
|
{
|
||
|
+ struct vcpu *v;
|
||
|
+
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_DUMMY )
|
||
|
continue;
|
||
|
+
|
||
|
+ /* Validate the vcpu_id in the response. */
|
||
|
+ if ( (rsp.vcpu_id >= d->max_vcpus) || !d->vcpu[rsp.vcpu_id] )
|
||
|
+ continue;
|
||
|
+
|
||
|
+ v = d->vcpu[rsp.vcpu_id];
|
||
|
+
|
||
|
/* Unpause domain/vcpu */
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED )
|
||
|
- vcpu_unpause(d->vcpu[rsp.vcpu_id]);
|
||
|
+ vcpu_unpause(v);
|
||
|
}
|
||
|
|
||
|
return 0;
|
||
|
--- a/xen/arch/x86/mm/p2m.c
|
||
|
+++ b/xen/arch/x86/mm/p2m.c
|
||
|
@@ -1228,8 +1228,17 @@ void p2m_mem_paging_resume(struct domain
|
||
|
/* Pull all responses off the ring */
|
||
|
while( mem_event_get_response(d, &d->mem_event->paging, &rsp) )
|
||
|
{
|
||
|
+ struct vcpu *v;
|
||
|
+
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_DUMMY )
|
||
|
continue;
|
||
|
+
|
||
|
+ /* Validate the vcpu_id in the response. */
|
||
|
+ if ( (rsp.vcpu_id >= d->max_vcpus) || !d->vcpu[rsp.vcpu_id] )
|
||
|
+ continue;
|
||
|
+
|
||
|
+ v = d->vcpu[rsp.vcpu_id];
|
||
|
+
|
||
|
/* Fix p2m entry if the page was not dropped */
|
||
|
if ( !(rsp.flags & MEM_EVENT_FLAG_DROP_PAGE) )
|
||
|
{
|
||
|
@@ -1248,7 +1257,7 @@ void p2m_mem_paging_resume(struct domain
|
||
|
}
|
||
|
/* Unpause domain */
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED )
|
||
|
- vcpu_unpause(d->vcpu[rsp.vcpu_id]);
|
||
|
+ vcpu_unpause(v);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
@@ -1356,11 +1365,20 @@ void p2m_mem_access_resume(struct domain
|
||
|
/* Pull all responses off the ring */
|
||
|
while( mem_event_get_response(d, &d->mem_event->access, &rsp) )
|
||
|
{
|
||
|
+ struct vcpu *v;
|
||
|
+
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_DUMMY )
|
||
|
continue;
|
||
|
+
|
||
|
+ /* Validate the vcpu_id in the response. */
|
||
|
+ if ( (rsp.vcpu_id >= d->max_vcpus) || !d->vcpu[rsp.vcpu_id] )
|
||
|
+ continue;
|
||
|
+
|
||
|
+ v = d->vcpu[rsp.vcpu_id];
|
||
|
+
|
||
|
/* Unpause domain */
|
||
|
if ( rsp.flags & MEM_EVENT_FLAG_VCPU_PAUSED )
|
||
|
- vcpu_unpause(d->vcpu[rsp.vcpu_id]);
|
||
|
+ vcpu_unpause(v);
|
||
|
}
|
||
|
}
|
||
|
|