* [PATCH] Access control in Xen privcmd_ioctl_mmap
@ 2012-12-31 20:44 Tamas Lengyel
2013-01-02 15:54 ` Daniel De Graaf
2013-01-11 17:39 ` Konrad Rzeszutek Wilk
0 siblings, 2 replies; 3+ messages in thread
From: Tamas Lengyel @ 2012-12-31 20:44 UTC (permalink / raw)
To: konrad.wilk, jeremy; +Cc: Daniel De Graaf, xen-devel, linux-kernel
In the privcmd Linux driver two checks in the functions
privcmd_ioctl_mmap and privcmd_ioctl_mmap_batch are not needed as they
are trying to enforce hypervisor-level access control. They should be
removed as they break secondary control domains when performing dom0
disaggregation. Xen itself provides adequate security controls around
these hypercalls and these checks prevent those controls from
functioning as intended.
The patch applies to the stable Linux 3.7.1 kernel.
Signed-off-by: Tamas K Lengyel <tamas.lengyel@zentific.com>
Cc: Daniel De Graaf <dgdegra@tycho.nsa.gov>
Cc: xen-devel@lists.xensource.com
Cc: linux-kernel@vger.kernel.org
---
drivers/xen/privcmd.c | 6 ------
1 files changed, 0 insertions(+), 6 deletions(-)
diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
index 71f5c45..adaa260 100644
--- a/drivers/xen/privcmd.c
+++ b/drivers/xen/privcmd.c
@@ -196,9 +196,6 @@ static long privcmd_ioctl_mmap(void __user *udata)
LIST_HEAD(pagelist);
struct mmap_mfn_state state;
- if (!xen_initial_domain())
- return -EPERM;
-
if (copy_from_user(&mmapcmd, udata, sizeof(mmapcmd)))
return -EFAULT;
@@ -316,9 +313,6 @@ static long privcmd_ioctl_mmap_batch(void __user
*udata, int version)
int *err_array = NULL;
struct mmap_batch_state state;
- if (!xen_initial_domain())
- return -EPERM;
-
switch (version) {
case 1:
if (copy_from_user(&m, udata, sizeof(struct privcmd_mmapbatch)))
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] Access control in Xen privcmd_ioctl_mmap
2012-12-31 20:44 [PATCH] Access control in Xen privcmd_ioctl_mmap Tamas Lengyel
@ 2013-01-02 15:54 ` Daniel De Graaf
2013-01-11 17:39 ` Konrad Rzeszutek Wilk
1 sibling, 0 replies; 3+ messages in thread
From: Daniel De Graaf @ 2013-01-02 15:54 UTC (permalink / raw)
To: Tamas Lengyel; +Cc: konrad.wilk, jeremy, xen-devel, linux-kernel
On 12/31/2012 03:44 PM, Tamas Lengyel wrote:
> In the privcmd Linux driver two checks in the functions
> privcmd_ioctl_mmap and privcmd_ioctl_mmap_batch are not needed as they
> are trying to enforce hypervisor-level access control. They should be
> removed as they break secondary control domains when performing dom0
> disaggregation. Xen itself provides adequate security controls around
> these hypercalls and these checks prevent those controls from
> functioning as intended.
>
> The patch applies to the stable Linux 3.7.1 kernel.
It also applies to (and I have tested it on) 3.8-rc1.
> Signed-off-by: Tamas K Lengyel <tamas.lengyel@zentific.com>
> Cc: Daniel De Graaf <dgdegra@tycho.nsa.gov>
> Cc: xen-devel@lists.xensource.com
> Cc: linux-kernel@vger.kernel.org
Acked-by: Daniel De Graaf <dgdegra@tycho.nsa.gov>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] Access control in Xen privcmd_ioctl_mmap
2012-12-31 20:44 [PATCH] Access control in Xen privcmd_ioctl_mmap Tamas Lengyel
2013-01-02 15:54 ` Daniel De Graaf
@ 2013-01-11 17:39 ` Konrad Rzeszutek Wilk
1 sibling, 0 replies; 3+ messages in thread
From: Konrad Rzeszutek Wilk @ 2013-01-11 17:39 UTC (permalink / raw)
To: Tamas Lengyel; +Cc: jeremy, Daniel De Graaf, xen-devel, linux-kernel
On Mon, Dec 31, 2012 at 03:44:30PM -0500, Tamas Lengyel wrote:
> In the privcmd Linux driver two checks in the functions
> privcmd_ioctl_mmap and privcmd_ioctl_mmap_batch are not needed as they
> are trying to enforce hypervisor-level access control. They should be
> removed as they break secondary control domains when performing dom0
> disaggregation. Xen itself provides adequate security controls around
> these hypercalls and these checks prevent those controls from
> functioning as intended.
>
> The patch applies to the stable Linux 3.7.1 kernel.
Hm, I get this:
atching file drivers/xen/privcmd.c
Hunk #1 FAILED at 196.
patch: **** malformed patch at line 91: *udata, int version)
Anyhow I fixed it up.
Should this patch also be back-ported to the stable trees?
>
> Signed-off-by: Tamas K Lengyel <tamas.lengyel@zentific.com>
> Cc: Daniel De Graaf <dgdegra@tycho.nsa.gov>
> Cc: xen-devel@lists.xensource.com
> Cc: linux-kernel@vger.kernel.org
> ---
> drivers/xen/privcmd.c | 6 ------
> 1 files changed, 0 insertions(+), 6 deletions(-)
>
> diff --git a/drivers/xen/privcmd.c b/drivers/xen/privcmd.c
> index 71f5c45..adaa260 100644
> --- a/drivers/xen/privcmd.c
> +++ b/drivers/xen/privcmd.c
> @@ -196,9 +196,6 @@ static long privcmd_ioctl_mmap(void __user *udata)
> LIST_HEAD(pagelist);
> struct mmap_mfn_state state;
>
> - if (!xen_initial_domain())
> - return -EPERM;
> -
> if (copy_from_user(&mmapcmd, udata, sizeof(mmapcmd)))
> return -EFAULT;
>
> @@ -316,9 +313,6 @@ static long privcmd_ioctl_mmap_batch(void __user
> *udata, int version)
> int *err_array = NULL;
> struct mmap_batch_state state;
>
> - if (!xen_initial_domain())
> - return -EPERM;
> -
> switch (version) {
> case 1:
> if (copy_from_user(&m, udata, sizeof(struct privcmd_mmapbatch)))
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2013-01-11 17:40 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-31 20:44 [PATCH] Access control in Xen privcmd_ioctl_mmap Tamas Lengyel
2013-01-02 15:54 ` Daniel De Graaf
2013-01-11 17:39 ` Konrad Rzeszutek Wilk
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox