lkml.org 
[lkml]   [2023]   [Dec]   [11]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    /
    SubjectRe: [RFC][PATCH] overlayfs: Redirect xattr ops on security.evm to security.evm_overlayfs
    From
    Date
    On Fri, 2023-12-08 at 23:01 +0100, Christian Brauner wrote:
    > On Fri, Dec 08, 2023 at 11:55:19PM +0200, Amir Goldstein wrote:
    > > On Fri, Dec 8, 2023 at 7:25 PM Roberto Sassu
    > > <roberto.sassu@huaweicloud.com> wrote:
    > > >
    > > > From: Roberto Sassu <roberto.sassu@huawei.com>
    > > >
    > > > EVM updates the HMAC in security.evm whenever there is a setxattr or
    > > > removexattr operation on one of its protected xattrs (e.g. security.ima).
    > > >
    > > > Unfortunately, since overlayfs redirects those xattrs operations on the
    > > > lower filesystem, the EVM HMAC cannot be calculated reliably, since lower
    > > > inode attributes on which the HMAC is calculated are different from upper
    > > > inode attributes (for example i_generation and s_uuid).
    > > >
    > > > Although maybe it is possible to align such attributes between the lower
    > > > and the upper inode, another idea is to map security.evm to another name
    > > > (security.evm_overlayfs)
    > >
    > > If we were to accept this solution, this will need to be trusted.overlay.evm
    > > to properly support private overlay xattr escaping.
    > >
    > > > during an xattr operation, so that it does not
    > > > collide with security.evm set by the lower filesystem.
    > >
    > > You are using wrong terminology and it is very confusing to me.
    >
    > Same.

    Argh, sorry...

    > > see the overlay mount command has lowerdir= and upperdir=.
    > > Seems that you are using lower filesystem to refer to the upper fs
    > > and upper filesystem to refer to overlayfs.
    > >
    > > >
    > > > Whenever overlayfs wants to set security.evm, it is actually setting
    > > > security.evm_overlayfs calculated with the upper inode attributes. The
    > > > lower filesystem continues to update security.evm.
    > > >
    > >
    > > I understand why that works, but I am having a hard time swallowing
    > > the solution, mainly because I feel that there are other issues on the
    > > intersection of overlayfs and IMA and I don't feel confident that this
    > > addresses them all.

    This solution is specifically for the collisions on HMACs, nothing
    else. Does not interfere/solve any other problem.

    > > If you want to try to convince me, please try to write a complete
    > > model of how IMA/EVM works with overlayfs, using the section
    > > "Permission model" in Documentation/filesystems/overlayfs.rst
    > > as a reference.

    Ok, I will try.

    I explain first how EVM works in general, and then why EVM does not
    work with overlayfs.

    EVM gets called before there is a set/removexattr operation, and after,
    if that operation is successful. Before the set/removexattr operation
    EVM calculates the HMAC on current inode metadata (i_ino, i_generation,
    i_uid, i_gid, i_mode, POSIX ACLs, protected xattrs). Finally, it
    compares the calculated HMAC with the one in security.evm.

    If the verification and the set/removexattr operation are successful,
    EVM calculates again the HMAC (in the post hooks) based on the updated
    inode metadata, and sets security.evm with the new HMAC.

    The problem is the combination of: overlayfs inodes have different
    metadata than the lower/upper inodes; overlayfs calls the VFS to
    set/remove xattrs.

    The first problem basically means the HMAC on lower/upper inodes and
    overlayfs ones is different.

    The second problem is that one security.evm is not enough. We need two,
    to store the two different HMACs. And we need both at the same time,
    since when overlayfs is mounted the lower/upper directories can be
    still accessible.

    In the example I described, IMA tries to update security.ima, but this
    causes EVM to attempt updating security.evm twice (once after the upper
    filesystem performed the setxattr requested by overlayfs, another after
    overlayfs performed the setxattr requested by IMA; the latter fails
    since EVM does not allow the VFS to directly update the HMAC).

    Remapping security.evm to security.evm_overlayfs (now
    trusted.overlay.evm) allows us to store both HMACs separately and to
    know which one to use.

    I just realized that the new xattr name should be public, because EVM
    rejects HMAC updates, so we should reject HMAC updates based on the new
    xattr name too.

    > I want us to go the other way. Make the overlayfs layer completely
    > irrelevant for EVM and IMA. See a related discussion here:

    Not sure it is possible, as long as overlayfs uses VFS xattr calls.

    > Subject: Re: [PATCH 09/16] fs: add vfs_set_fscaps()
    > https://lore.kernel.org/r/ZXHZ8uNEg1IK5WMW@do-x1extreme

    I will also read this patch, in case I missed something.

    Thanks

    Roberto

    \
     
     \ /
      Last update: 2023-12-11 15:58    [W:7.508 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site