xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
@ 2011-11-10 17:17 Jean Guyader
  2011-11-11  8:38 ` Jan Beulich
  2011-11-17  6:01 ` Jean Guyader
  0 siblings, 2 replies; 6+ messages in thread
From: Jean Guyader @ 2011-11-10 17:17 UTC (permalink / raw)
  To: xen-devel; +Cc: Jean Guyader, JBeulich

[-- Attachment #1: Type: text/plain, Size: 472 bytes --]


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>
---
 xen/arch/x86/domain.c           |   18 ++++++++++++++++++
 xen/arch/x86/x86_64/compat/mm.c |    4 ++++
 xen/include/xen/sched.h         |    1 +
 3 files changed, 23 insertions(+), 0 deletions(-)


[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #2: 0001-Hypercall-continuation-cancelation-in-compat-mode-fo.patch --]
[-- Type: text/x-patch; name="0001-Hypercall-continuation-cancelation-in-compat-mode-fo.patch", Size: 1854 bytes --]

diff --git a/xen/arch/x86/domain.c b/xen/arch/x86/domain.c
index 52c7f37..acc3241 100644
--- a/xen/arch/x86/domain.c
+++ b/xen/arch/x86/domain.c
@@ -1723,6 +1723,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, ...)
 {
diff --git a/xen/arch/x86/x86_64/compat/mm.c b/xen/arch/x86/x86_64/compat/mm.c
index 2c05099..3ef08a5 100644
--- a/xen/arch/x86/x86_64/compat/mm.c
+++ b/xen/arch/x86/x86_64/compat/mm.c
@@ -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;
     }
diff --git a/xen/include/xen/sched.h b/xen/include/xen/sched.h
index 3ba5495..80d5c4b 100644
--- a/xen/include/xen/sched.h
+++ b/xen/include/xen/sched.h
@@ -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()) |   \

[-- Attachment #3: Type: text/plain, Size: 138 bytes --]

_______________________________________________
Xen-devel mailing list
Xen-devel@lists.xensource.com
http://lists.xensource.com/xen-devel

^ permalink raw reply related	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
  2011-11-10 17:17 [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target Jean Guyader
@ 2011-11-11  8:38 ` Jan Beulich
  2011-11-11  8:54   ` Keir Fraser
  2011-11-17  6:01 ` Jean Guyader
  1 sibling, 1 reply; 6+ messages in thread
From: Jan Beulich @ 2011-11-11  8:38 UTC (permalink / raw)
  To: Jean Guyader, Keir Fraser; +Cc: xen-devel

>>> On 10.11.11 at 18:17, Jean Guyader <jean.guyader@eu.citrix.com> wrote:

> 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>

(But I'd like to be certain that Keir also took a look at this before
committing, not the least because this also should go into 4.1-testing.)

> ---
>  xen/arch/x86/domain.c           |   18 ++++++++++++++++++
>  xen/arch/x86/x86_64/compat/mm.c |    4 ++++
>  xen/include/xen/sched.h         |    1 +
>  3 files changed, 23 insertions(+), 0 deletions(-)

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
  2011-11-11  8:38 ` Jan Beulich
@ 2011-11-11  8:54   ` Keir Fraser
  0 siblings, 0 replies; 6+ messages in thread
From: Keir Fraser @ 2011-11-11  8:54 UTC (permalink / raw)
  To: Jan Beulich, Jean Guyader; +Cc: xen-devel

On 11/11/2011 08:38, "Jan Beulich" <JBeulich@suse.com> wrote:

>>>> On 10.11.11 at 18:17, Jean Guyader <jean.guyader@eu.citrix.com> wrote:
> 
>> 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>
> 
> (But I'd like to be certain that Keir also took a look at this before
> committing, not the least because this also should go into 4.1-testing.)

Looks okay to me.

Acked-by: Keir Fraser <keir@xen.org>

>> ---
>>  xen/arch/x86/domain.c           |   18 ++++++++++++++++++
>>  xen/arch/x86/x86_64/compat/mm.c |    4 ++++
>>  xen/include/xen/sched.h         |    1 +
>>  3 files changed, 23 insertions(+), 0 deletions(-)
> 
> 
> 

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
  2011-11-10 17:17 [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target Jean Guyader
  2011-11-11  8:38 ` Jan Beulich
@ 2011-11-17  6:01 ` Jean Guyader
  2011-11-17  8:02   ` Jan Beulich
  2011-11-17  9:15   ` Keir Fraser
  1 sibling, 2 replies; 6+ messages in thread
From: Jean Guyader @ 2011-11-17  6:01 UTC (permalink / raw)
  To: xen-devel@lists.xensource.com; +Cc: Jean Guyader, JBeulich@suse.com

On 10/11 05:17, Jean Guyader wrote:
> 
> 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>

Did that make it into 4.1?

Jean

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
  2011-11-17  6:01 ` Jean Guyader
@ 2011-11-17  8:02   ` Jan Beulich
  2011-11-17  9:15   ` Keir Fraser
  1 sibling, 0 replies; 6+ messages in thread
From: Jan Beulich @ 2011-11-17  8:02 UTC (permalink / raw)
  To: Jean.Guyader, Jean Guyader, Keir Fraser; +Cc: xen-devel@lists.xensource.com

>>> On 17.11.11 at 07:01, Jean Guyader <jean.guyader@eu.citrix.com> wrote:
> On 10/11 05:17, Jean Guyader wrote:
>> 
>> 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>
> 
> Did that make it into 4.1?
> 
> Jean

Not so far - Keir?

Jan

^ permalink raw reply	[flat|nested] 6+ messages in thread

* Re: Re: [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target.
  2011-11-17  6:01 ` Jean Guyader
  2011-11-17  8:02   ` Jan Beulich
@ 2011-11-17  9:15   ` Keir Fraser
  1 sibling, 0 replies; 6+ messages in thread
From: Keir Fraser @ 2011-11-17  9:15 UTC (permalink / raw)
  To: Jean Guyader, xen-devel@lists.xensource.com
  Cc: JBeulich@suse.com, Jean Guyader

On 17/11/2011 06:01, "Jean Guyader" <jean.guyader@eu.citrix.com> wrote:

> On 10/11 05:17, Jean Guyader wrote:
>> 
>> 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>
> 
> Did that make it into 4.1?

Done.

> Jean
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xensource.com
> http://lists.xensource.com/xen-devel

^ permalink raw reply	[flat|nested] 6+ messages in thread

end of thread, other threads:[~2011-11-17  9:15 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-11-10 17:17 [PATCH] Hypercall continuation cancelation in compat mode for XENMEM_get/set_pod_target Jean Guyader
2011-11-11  8:38 ` Jan Beulich
2011-11-11  8:54   ` Keir Fraser
2011-11-17  6:01 ` Jean Guyader
2011-11-17  8:02   ` Jan Beulich
2011-11-17  9:15   ` Keir Fraser

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).