* WTF: patch "[PATCH] x86/xen: allow userspace access during hypercalls" was seriously submitted to be applied to the 4.12-stable tree?
@ 2017-07-24 23:45 gregkh
2017-07-25 0:09 ` Marek Marczykowski-Górecki
0 siblings, 1 reply; 3+ messages in thread
From: gregkh @ 2017-07-24 23:45 UTC (permalink / raw)
To: marmarek, jgross; +Cc: stable
The patch below was submitted to be applied to the 4.12-stable tree.
I fail to see how this patch meets the stable kernel rules as found at
Documentation/process/stable_kernel_rules.rst.
I could be totally wrong, and if so, please respond to
<stable@vger.kernel.org> and let me know why this patch should be
applied. Otherwise, it is now dropped from my patch queues, never to be
seen again.
thanks,
greg k-h
------------------ original commit in Linus's tree ------------------
>From c54590cac51db8ab5fd30156bdaba34af915e629 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?=
<marmarek@invisiblethingslab.com>
Date: Mon, 26 Jun 2017 14:49:46 +0200
Subject: [PATCH] x86/xen: allow userspace access during hypercalls
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
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.
The same applies to HYPERVISOR_dm_op, where additionally privcmd driver
carefully verify buffer addresses.
Cc: stable@vger.kernel.org
Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
Reviewed-by: Juergen Gross <jgross@suse.com>
Signed-off-by: Juergen Gross <jgross@suse.com>
diff --git a/arch/x86/include/asm/xen/hypercall.h b/arch/x86/include/asm/xen/hypercall.h
index 7a4db5fefd15..11071fcd630e 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>
@@ -216,10 +217,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;
}
@@ -478,7 +481,11 @@ static inline int
HYPERVISOR_dm_op(
domid_t dom, unsigned int nr_bufs, struct xen_dm_op_buf *bufs)
{
- return _hypercall3(int, dm_op, dom, nr_bufs, bufs);
+ int ret;
+ stac();
+ ret = _hypercall3(int, dm_op, dom, nr_bufs, bufs);
+ clac();
+ return ret;
}
static inline void
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: WTF: patch "[PATCH] x86/xen: allow userspace access during hypercalls" was seriously submitted to be applied to the 4.12-stable tree?
2017-07-24 23:45 WTF: patch "[PATCH] x86/xen: allow userspace access during hypercalls" was seriously submitted to be applied to the 4.12-stable tree? gregkh
@ 2017-07-25 0:09 ` Marek Marczykowski-Górecki
2017-07-25 0:13 ` Greg KH
0 siblings, 1 reply; 3+ messages in thread
From: Marek Marczykowski-Górecki @ 2017-07-25 0:09 UTC (permalink / raw)
To: gregkh; +Cc: jgross, stable
[-- Attachment #1: Type: text/plain, Size: 3026 bytes --]
On Mon, Jul 24, 2017 at 04:45:02PM -0700, gregkh@linuxfoundation.org wrote:
> The patch below was submitted to be applied to the 4.12-stable tree.
>
> I fail to see how this patch meets the stable kernel rules as found at
> Documentation/process/stable_kernel_rules.rst.
>
> I could be totally wrong, and if so, please respond to
> <stable@vger.kernel.org> and let me know why this patch should be
> applied. Otherwise, it is now dropped from my patch queues, never to be
> seen again.
This is a fix for -EFAULT on (any?) usage of /dev/xen/privcmd from
inside of Xen HVM guest with SMAP enabled. Details in this thread:
http://markmail.org/message/b6wxaipxbjyhiueg
> thanks,
>
> greg k-h
>
> ------------------ original commit in Linus's tree ------------------
>
> From c54590cac51db8ab5fd30156bdaba34af915e629 Mon Sep 17 00:00:00 2001
> From: =?UTF-8?q?Marek=20Marczykowski-G=C3=B3recki?=
> <marmarek@invisiblethingslab.com>
> Date: Mon, 26 Jun 2017 14:49:46 +0200
> Subject: [PATCH] x86/xen: allow userspace access during hypercalls
> MIME-Version: 1.0
> Content-Type: text/plain; charset=UTF-8
> Content-Transfer-Encoding: 8bit
>
> 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.
>
> The same applies to HYPERVISOR_dm_op, where additionally privcmd driver
> carefully verify buffer addresses.
>
> Cc: stable@vger.kernel.org
> Signed-off-by: Marek Marczykowski-Górecki <marmarek@invisiblethingslab.com>
> Reviewed-by: Juergen Gross <jgross@suse.com>
> Signed-off-by: Juergen Gross <jgross@suse.com>
>
> diff --git a/arch/x86/include/asm/xen/hypercall.h b/arch/x86/include/asm/xen/hypercall.h
> index 7a4db5fefd15..11071fcd630e 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>
> @@ -216,10 +217,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;
> }
> @@ -478,7 +481,11 @@ static inline int
> HYPERVISOR_dm_op(
> domid_t dom, unsigned int nr_bufs, struct xen_dm_op_buf *bufs)
> {
> - return _hypercall3(int, dm_op, dom, nr_bufs, bufs);
> + int ret;
> + stac();
> + ret = _hypercall3(int, dm_op, dom, nr_bufs, bufs);
> + clac();
> + return ret;
> }
>
> static inline void
>
--
Best Regards,
Marek Marczykowski-Górecki
Invisible Things Lab
A: Because it messes up the order in which people normally read text.
Q: Why is top-posting such a bad thing?
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 473 bytes --]
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: WTF: patch "[PATCH] x86/xen: allow userspace access during hypercalls" was seriously submitted to be applied to the 4.12-stable tree?
2017-07-25 0:09 ` Marek Marczykowski-Górecki
@ 2017-07-25 0:13 ` Greg KH
0 siblings, 0 replies; 3+ messages in thread
From: Greg KH @ 2017-07-25 0:13 UTC (permalink / raw)
To: Marek Marczykowski-Górecki; +Cc: jgross, stable
On Tue, Jul 25, 2017 at 02:09:55AM +0200, Marek Marczykowski-G�recki wrote:
> On Mon, Jul 24, 2017 at 04:45:02PM -0700, gregkh@linuxfoundation.org wrote:
> > The patch below was submitted to be applied to the 4.12-stable tree.
> >
> > I fail to see how this patch meets the stable kernel rules as found at
> > Documentation/process/stable_kernel_rules.rst.
> >
> > I could be totally wrong, and if so, please respond to
> > <stable@vger.kernel.org> and let me know why this patch should be
> > applied. Otherwise, it is now dropped from my patch queues, never to be
> > seen again.
>
> This is a fix for -EFAULT on (any?) usage of /dev/xen/privcmd from
> inside of Xen HVM guest with SMAP enabled. Details in this thread:
> http://markmail.org/message/b6wxaipxbjyhiueg
Why wasn't that information in the changelog itself? As it is it lookes
like a "here's a new feature" type of patch...
I'll go queue this up now, thanks.
greg k-h
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2017-07-25 0:13 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2017-07-24 23:45 WTF: patch "[PATCH] x86/xen: allow userspace access during hypercalls" was seriously submitted to be applied to the 4.12-stable tree? gregkh
2017-07-25 0:09 ` Marek Marczykowski-Górecki
2017-07-25 0:13 ` Greg KH
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).