public inbox for stable@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] x86/xen: allow userspace access during hypercalls
@ 2017-06-23 12:47 Marek Marczykowski-Górecki
  2017-06-26 12:05 ` Juergen Groß
  0 siblings, 1 reply; 9+ messages in thread
From: Marek Marczykowski-Górecki @ 2017-06-23 12:47 UTC (permalink / raw)
  To: xen-devel
  Cc: Boris Ostrovsky, Juergen Gross, Andrew Cooper, x86, linux-kernel,
	Marek Marczykowski-Górecki, stable

Userspace application can do a hypercall through /dev/xen/privcmd, and
some for some hypercalls argument is a pointers to user-provided
structure. When SMAP is supported and enabled, hypervisor can't access.
So, lets allow it.

Cc: stable@vger.kernel.org
Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
---
 arch/x86/include/asm/xen/hypercall.h | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/arch/x86/include/asm/xen/hypercall.h b/arch/x86/include/asm/xen/hypercall.h
index f6d20f6..a1d2c5d 100644
--- a/arch/x86/include/asm/xen/hypercall.h
+++ b/arch/x86/include/asm/xen/hypercall.h
@@ -43,6 +43,7 @@
 
 #include <asm/page.h>
 #include <asm/pgtable.h>
+#include <asm/smap.h>
 
 #include <xen/interface/xen.h>
 #include <xen/interface/sched.h>
@@ -214,10 +215,12 @@ privcmd_call(unsigned call,
 	__HYPERCALL_DECLS;
 	__HYPERCALL_5ARG(a1, a2, a3, a4, a5);
 
+	stac();
 	asm volatile("call *%[call]"
 		     : __HYPERCALL_5PARAM
 		     : [call] "a" (&hypercall_page[call])
 		     : __HYPERCALL_CLOBBER5);
+	clac();
 
 	return (long)__res;
 }
-- 
2.7.4

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

end of thread, other threads:[~2017-07-03 11:28 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-06-23 12:47 [PATCH] x86/xen: allow userspace access during hypercalls Marek Marczykowski-Górecki
2017-06-26 12:05 ` Juergen Groß
2017-06-26 12:45   ` Marek Marczykowski-Górecki
2017-06-26 12:49     ` [PATCH v2] " Marek Marczykowski-Górecki
2017-06-26 12:54       ` Juergen Groß
2017-07-03 11:28       ` Juergen Gross
2017-06-26 13:09     ` [Xen-devel] [PATCH] " Paul Durrant
2017-06-26 13:21       ` 'Marek Marczykowski-Górecki'
2017-06-26 13:24         ` Paul Durrant

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox