common: map_vcpu_info() wants to unshare the underlying page
authorJan Beulich <jbeulich@suse.com>
Mon, 31 Oct 2022 12:26:33 +0000 (13:26 +0100)
committerJan Beulich <jbeulich@suse.com>
Mon, 31 Oct 2022 12:26:33 +0000 (13:26 +0100)
Not passing P2M_UNSHARE to get_page_from_gfn() means there won't even be
an attempt to unshare the referenced page, without any indication to the
caller (e.g. -EAGAIN). Note that guests have no direct control over
which of their pages are shared (or paged out), and hence they have no
way to make sure all on their own that the subsequent obtaining of a
writable type reference can actually succeed.

Signed-off-by: Jan Beulich <jbeulich@suse.com>
Reviewed-by: Roger Pau Monné <roger.pau@citrix.com>
Acked-by: Julien Grall <jgrall@amazon.com>
master commit: 48980cf24d5cf41fd644600f99c753419505e735
master date: 2022-10-28 11:38:32 +0200

xen/common/domain.c

index 56d47dd66478ea8949b9bdf6afe58d491aadf6c2..e3afcacb6caefb8b8f3c13f89a430c6577c64568 100644 (file)
@@ -1471,7 +1471,7 @@ int map_vcpu_info(struct vcpu *v, unsigned long gfn, unsigned offset)
     if ( (v != current) && !(v->pause_flags & VPF_down) )
         return -EINVAL;
 
-    page = get_page_from_gfn(d, gfn, NULL, P2M_ALLOC);
+    page = get_page_from_gfn(d, gfn, NULL, P2M_UNSHARE);
     if ( !page )
         return -EINVAL;