* [PATCH 11/11] evm: Don't update hmacs in user ns mounts
[not found] <cover.1512741134.git.dongsu@kinvolk.io>
@ 2017-12-22 14:32 ` Dongsu Park
2017-12-23 4:03 ` Serge E. Hallyn
0 siblings, 1 reply; 4+ messages in thread
From: Dongsu Park @ 2017-12-22 14:32 UTC (permalink / raw)
To: linux-kernel
Cc: containers, Alban Crequy, Eric W . Biederman, Miklos Szeredi,
Seth Forshee, Sargun Dhillon, Dongsu Park, linux-integrity,
linux-security-module, James Morris, Mimi Zohar, Serge E. Hallyn
From: Seth Forshee <seth.forshee@canonical.com>
The kernel should not calculate new hmacs for mounts done by
non-root users. Update evm_calc_hmac_or_hash() to refuse to
calculate new hmacs for mounts for non-init user namespaces.
Cc: linux-integrity@vger.kernel.org
Cc: linux-security-module@vger.kernel.org
Cc: linux-kernel@vger.kernel.org
Cc: James Morris <james.l.morris@oracle.com>
Cc: Mimi Zohar <zohar@linux.vnet.ibm.com>
Cc: "Serge E. Hallyn" <serge@hallyn.com>
Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
Signed-off-by: Dongsu Park <dongsu@kinvolk.io>
---
security/integrity/evm/evm_crypto.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c
index bcd64baf..729f4545 100644
--- a/security/integrity/evm/evm_crypto.c
+++ b/security/integrity/evm/evm_crypto.c
@@ -190,7 +190,8 @@ static int evm_calc_hmac_or_hash(struct dentry *dentry,
int error;
int size;
- if (!(inode->i_opflags & IOP_XATTR))
+ if (!(inode->i_opflags & IOP_XATTR) ||
+ inode->i_sb->s_user_ns != &init_user_ns)
return -EOPNOTSUPP;
desc = init_desc(type);
--
2.13.6
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH 11/11] evm: Don't update hmacs in user ns mounts
2017-12-22 14:32 ` [PATCH 11/11] evm: Don't update hmacs in user ns mounts Dongsu Park
@ 2017-12-23 4:03 ` Serge E. Hallyn
2017-12-24 5:12 ` Mimi Zohar
0 siblings, 1 reply; 4+ messages in thread
From: Serge E. Hallyn @ 2017-12-23 4:03 UTC (permalink / raw)
To: Dongsu Park
Cc: linux-kernel, containers, Alban Crequy, Eric W . Biederman,
Miklos Szeredi, Seth Forshee, Sargun Dhillon, linux-integrity,
linux-security-module, James Morris, Mimi Zohar, Serge E. Hallyn
On Fri, Dec 22, 2017 at 03:32:35PM +0100, Dongsu Park wrote:
> From: Seth Forshee <seth.forshee@canonical.com>
>
> The kernel should not calculate new hmacs for mounts done by
> non-root users. Update evm_calc_hmac_or_hash() to refuse to
> calculate new hmacs for mounts for non-init user namespaces.
>
> Cc: linux-integrity@vger.kernel.org
> Cc: linux-security-module@vger.kernel.org
> Cc: linux-kernel@vger.kernel.org
> Cc: James Morris <james.l.morris@oracle.com>
> Cc: Mimi Zohar <zohar@linux.vnet.ibm.com>
Hi Mimi,
does this change seem sufficient to you?
> Cc: "Serge E. Hallyn" <serge@hallyn.com>
> Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
> Signed-off-by: Dongsu Park <dongsu@kinvolk.io>
> ---
> security/integrity/evm/evm_crypto.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c
> index bcd64baf..729f4545 100644
> --- a/security/integrity/evm/evm_crypto.c
> +++ b/security/integrity/evm/evm_crypto.c
> @@ -190,7 +190,8 @@ static int evm_calc_hmac_or_hash(struct dentry *dentry,
> int error;
> int size;
>
> - if (!(inode->i_opflags & IOP_XATTR))
> + if (!(inode->i_opflags & IOP_XATTR) ||
> + inode->i_sb->s_user_ns != &init_user_ns)
> return -EOPNOTSUPP;
>
> desc = init_desc(type);
> --
> 2.13.6
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 11/11] evm: Don't update hmacs in user ns mounts
2017-12-23 4:03 ` Serge E. Hallyn
@ 2017-12-24 5:12 ` Mimi Zohar
2017-12-24 5:56 ` Mimi Zohar
0 siblings, 1 reply; 4+ messages in thread
From: Mimi Zohar @ 2017-12-24 5:12 UTC (permalink / raw)
To: Serge E. Hallyn, Dongsu Park
Cc: linux-kernel, containers, Alban Crequy, Eric W . Biederman,
Miklos Szeredi, Seth Forshee, Sargun Dhillon, linux-integrity,
linux-security-module, James Morris
Hi Serge,
On Fri, 2017-12-22 at 22:03 -0600, Serge E. Hallyn wrote:
> On Fri, Dec 22, 2017 at 03:32:35PM +0100, Dongsu Park wrote:
> > From: Seth Forshee <seth.forshee@canonical.com>
> >
> > The kernel should not calculate new hmacs for mounts done by
> > non-root users. Update evm_calc_hmac_or_hash() to refuse to
> > calculate new hmacs for mounts for non-init user namespaces.
> >
> > Cc: linux-integrity@vger.kernel.org
> > Cc: linux-security-module@vger.kernel.org
> > Cc: linux-kernel@vger.kernel.org
> > Cc: James Morris <james.l.morris@oracle.com>
> > Cc: Mimi Zohar <zohar@linux.vnet.ibm.com>
>
> Hi Mimi,
>
> does this change seem sufficient to you?
I think this is the correct behavior in the context of fuse file
systems. This patch, the "ima: define a new policy option named
force" patch, and an updated IMA policy should be upstreamed together.
The cover letter should provide the motivation for these patches.
Mimi
>
> > Cc: "Serge E. Hallyn" <serge@hallyn.com>
> > Signed-off-by: Seth Forshee <seth.forshee@canonical.com>
> > Signed-off-by: Dongsu Park <dongsu@kinvolk.io>
> > ---
> > security/integrity/evm/evm_crypto.c | 3 ++-
> > 1 file changed, 2 insertions(+), 1 deletion(-)
> >
> > diff --git a/security/integrity/evm/evm_crypto.c b/security/integrity/evm/evm_crypto.c
> > index bcd64baf..729f4545 100644
> > --- a/security/integrity/evm/evm_crypto.c
> > +++ b/security/integrity/evm/evm_crypto.c
> > @@ -190,7 +190,8 @@ static int evm_calc_hmac_or_hash(struct dentry *dentry,
> > int error;
> > int size;
> >
> > - if (!(inode->i_opflags & IOP_XATTR))
> > + if (!(inode->i_opflags & IOP_XATTR) ||
> > + inode->i_sb->s_user_ns != &init_user_ns)
> > return -EOPNOTSUPP;
> >
> > desc = init_desc(type);
> > --
> > 2.13.6
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH 11/11] evm: Don't update hmacs in user ns mounts
2017-12-24 5:12 ` Mimi Zohar
@ 2017-12-24 5:56 ` Mimi Zohar
0 siblings, 0 replies; 4+ messages in thread
From: Mimi Zohar @ 2017-12-24 5:56 UTC (permalink / raw)
To: Serge E. Hallyn, Dongsu Park
Cc: linux-kernel, containers, Alban Crequy, Eric W . Biederman,
Miklos Szeredi, Seth Forshee, Sargun Dhillon, linux-integrity,
linux-security-module, James Morris
On Sun, 2017-12-24 at 00:12 -0500, Mimi Zohar wrote:
> Hi Serge,
>
> On Fri, 2017-12-22 at 22:03 -0600, Serge E. Hallyn wrote:
> > On Fri, Dec 22, 2017 at 03:32:35PM +0100, Dongsu Park wrote:
> > > From: Seth Forshee <seth.forshee@canonical.com>
> > >
> > > The kernel should not calculate new hmacs for mounts done by
> > > non-root users. Update evm_calc_hmac_or_hash() to refuse to
> > > calculate new hmacs for mounts for non-init user namespaces.
> > >
> > > Cc: linux-integrity@vger.kernel.org
> > > Cc: linux-security-module@vger.kernel.org
> > > Cc: linux-kernel@vger.kernel.org
> > > Cc: James Morris <james.l.morris@oracle.com>
> > > Cc: Mimi Zohar <zohar@linux.vnet.ibm.com>
> >
> > Hi Mimi,
> >
> > does this change seem sufficient to you?
>
> I think this is the correct behavior in the context of fuse file
> systems. This patch, the "ima: define a new policy option named
> force" patch, and an updated IMA policy should be upstreamed together.
> The cover letter should provide the motivation for these patches.
Ah, this patch is being upstreamed with the fuse mounts patches. I
guess Seth is planning on posting the IMA policy changes for fuse
separately.
Mimi
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2017-12-24 5:56 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
[not found] <cover.1512741134.git.dongsu@kinvolk.io>
2017-12-22 14:32 ` [PATCH 11/11] evm: Don't update hmacs in user ns mounts Dongsu Park
2017-12-23 4:03 ` Serge E. Hallyn
2017-12-24 5:12 ` Mimi Zohar
2017-12-24 5:56 ` Mimi Zohar
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox