Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target
authorJean Guyader <jean.guyader@eu.citrix.com>
Fri, 11 Nov 2011 09:14:22 +0000 (10:14 +0100)
committerJean Guyader <jean.guyader@eu.citrix.com>
Fri, 11 Nov 2011 09:14:22 +0000 (10:14 +0100)
If copy_to_guest failed in the compat code after a continuation as been
done in the native code we need to cancel it so we won't reexecute the
hypercall but return from the hypercall with the appropriate error.

Signed-off-by: Jean Guyader <jean.guyader@eu.citrix.com>
Acked-by: Jan Beulich <jbeulich@suse.com>
Acked-by: Keir Fraser <keir@xen.org>
Committed-by: Jan Beulich <jbeulich@suse.com>
xen/arch/x86/domain.c
xen/arch/x86/x86_64/compat/mm.c
xen/include/xen/sched.h

index 2e029a8a01c90ff44746f934c874977784e7b42d..40cbea9a0df5cc637723d12368588957b15c3b61 100644 (file)
@@ -1724,6 +1724,24 @@ void sync_vcpu_execstate(struct vcpu *v)
     __arg;                                                                  \
 })
 
+void hypercall_cancel_continuation(void)
+{
+    struct cpu_user_regs *regs = guest_cpu_user_regs();
+    struct mc_state *mcs = &current->mc_state;
+
+    if ( test_bit(_MCSF_in_multicall, &mcs->flags) )
+    {
+        __clear_bit(_MCSF_call_preempted, &mcs->flags);
+    }
+    else
+    {
+        if ( !is_hvm_vcpu(current) )
+            regs->eip += 2; /* skip re-execute 'syscall' / 'int $xx' */
+        else
+            current->arch.hvm_vcpu.hcall_preempted = 0;
+    }
+}
+
 unsigned long hypercall_create_continuation(
     unsigned int op, const char *format, ...)
 {
index 2c050997b687f5fa4c9306986d4fddf5c425264e..3ef08a53cd1104393768b805c64fecd8bb414695 100644 (file)
@@ -133,7 +133,11 @@ int compat_arch_memory_op(int op, XEN_GUEST_HANDLE(void) arg)
         XLAT_pod_target(&cmp, nat);
 
         if ( copy_to_guest(arg, &cmp, 1) )
+        {
+            if ( rc == __HYPERVISOR_memory_op )
+                hypercall_cancel_continuation();
             rc = -EFAULT;
+        }
 
         break;
     }
index 3ba5495d11668adae0984326468949f4ba843251..80d5c4b758aa60d492ccabcd8e14cfb3fee7551a 100644 (file)
@@ -554,6 +554,7 @@ extern void (*dead_idle) (void);
  */
 unsigned long hypercall_create_continuation(
     unsigned int op, const char *format, ...);
+void hypercall_cancel_continuation(void);
 
 #define hypercall_preempt_check() (unlikely(    \
         softirq_pending(smp_processor_id()) |   \