]> xenbits.xensource.com Git - xen.git/commitdiff
x86/pv-shim: fix grant table operations for 32-bit guests
authorDavid Woodhouse <dwmw@amazon.co.uk>
Tue, 14 Nov 2023 13:00:37 +0000 (14:00 +0100)
committerJan Beulich <jbeulich@suse.com>
Tue, 14 Nov 2023 13:00:37 +0000 (14:00 +0100)
When switching to call the shim functions from the normal handlers, the
compat_grant_table_op() function was omitted, leaving it calling the
real grant table operations in !PV_SHIM_EXCLUSIVE builds. This leaves a
32-bit shim guest failing to set up its real grant table with the parent
hypervisor.

Fixes: e7db635f4428 ("x86/pv-shim: Don't modify the hypercall table")
Signed-off-by: David Woodhouse <dwmw@amazon.co.uk>
Reviewed-by: Andrew Cooper <andrew.cooper3@citrix.com>
master commit: 93ec30bc545f15760039c23ee4b97b80c0b3b3b3
master date: 2023-10-31 16:10:14 +0000

xen/common/compat/grant_table.c

index 4705ee5f768c51701b2f7e0bac47318ca41a0627..2e159d6666254bffa3289cfd8f4298ec71a2bf0f 100644 (file)
@@ -63,6 +63,11 @@ int compat_grant_table_op(
     unsigned int i, cmd_op;
     XEN_GUEST_HANDLE_PARAM(void) cnt_uop;
 
+#ifdef CONFIG_PV_SHIM
+    if ( unlikely(pv_shim) )
+        return pv_shim_grant_table_op(cmd, uop, count);
+#endif
+
     set_xen_guest_handle(cnt_uop, NULL);
     cmd_op = cmd & GNTTABOP_CMD_MASK;
     if ( cmd_op != GNTTABOP_cache_flush )