xfs: add selinux labels to whiteout inodes
authorEric Sandeen <sandeen@redhat.com>
Sat, 9 Jul 2022 17:56:02 +0000 (10:56 -0700)
committerDarrick J. Wong <djwong@kernel.org>
Sat, 9 Jul 2022 17:56:02 +0000 (10:56 -0700)
We got a report that "renameat2() with flags=RENAME_WHITEOUT doesn't
apply an SELinux label on xfs" as it does on other filesystems
(for example, ext4 and tmpfs.)  While I'm not quite sure how labels
may interact w/ whiteout files, leaving them as unlabeled seems
inconsistent at best. Now that xfs_init_security is not static,
rename it to xfs_inode_init_security per dchinner's suggestion.

Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Dave Chinner <dchinner@redhat.com>
Reviewed-by: Darrick J. Wong <djwong@kernel.org>
Signed-off-by: Darrick J. Wong <djwong@kernel.org>
fs/xfs/xfs_inode.c
fs/xfs/xfs_iops.c
fs/xfs/xfs_iops.h

index 482e1ee2d6691d1c8715f128964492d0dcfa3cfa..296e253bcfcdc2b26c32e432c989fd5dd4eff71e 100644 (file)
@@ -3032,10 +3032,12 @@ out_trans_abort:
 static int
 xfs_rename_alloc_whiteout(
        struct user_namespace   *mnt_userns,
+       struct xfs_name         *src_name,
        struct xfs_inode        *dp,
        struct xfs_inode        **wip)
 {
        struct xfs_inode        *tmpfile;
+       struct qstr             name;
        int                     error;
 
        error = xfs_create_tmpfile(mnt_userns, dp, S_IFCHR | WHITEOUT_MODE,
@@ -3043,6 +3045,15 @@ xfs_rename_alloc_whiteout(
        if (error)
                return error;
 
+       name.name = src_name->name;
+       name.len = src_name->len;
+       error = xfs_inode_init_security(VFS_I(tmpfile), VFS_I(dp), &name);
+       if (error) {
+               xfs_finish_inode_setup(tmpfile);
+               xfs_irele(tmpfile);
+               return error;
+       }
+
        /*
         * Prepare the tmpfile inode as if it were created through the VFS.
         * Complete the inode setup and flag it as linkable.  nlink is already
@@ -3093,7 +3104,8 @@ xfs_rename(
         * appropriately.
         */
        if (flags & RENAME_WHITEOUT) {
-               error = xfs_rename_alloc_whiteout(mnt_userns, target_dp, &wip);
+               error = xfs_rename_alloc_whiteout(mnt_userns, src_name,
+                                                 target_dp, &wip);
                if (error)
                        return error;
 
index 29f5b8b8aca69a0887fae8f961b208fcf308638e..6720b60f88cfcbaf3f3c0595992e97d3a7228ea9 100644 (file)
@@ -75,9 +75,8 @@ xfs_initxattrs(
  * these attrs can be journalled at inode creation time (along with the
  * inode, of course, such that log replay can't cause these to be lost).
  */
-
-STATIC int
-xfs_init_security(
+int
+xfs_inode_init_security(
        struct inode    *inode,
        struct inode    *dir,
        const struct qstr *qstr)
@@ -122,7 +121,7 @@ xfs_cleanup_inode(
 
        /* Oh, the horror.
         * If we can't add the ACL or we fail in
-        * xfs_init_security we must back out.
+        * xfs_inode_init_security we must back out.
         * ENOSPC can hit here, among other things.
         */
        xfs_dentry_to_name(&teardown, dentry);
@@ -208,7 +207,7 @@ xfs_generic_create(
 
        inode = VFS_I(ip);
 
-       error = xfs_init_security(inode, dir, &dentry->d_name);
+       error = xfs_inode_init_security(inode, dir, &dentry->d_name);
        if (unlikely(error))
                goto out_cleanup_inode;
 
@@ -424,7 +423,7 @@ xfs_vn_symlink(
 
        inode = VFS_I(cip);
 
-       error = xfs_init_security(inode, dir, &dentry->d_name);
+       error = xfs_inode_init_security(inode, dir, &dentry->d_name);
        if (unlikely(error))
                goto out_cleanup_inode;
 
index 2789490560482a23cbaa04ffbe7788db0a867a6b..cb5fc68c9ea00e75a890ae37dafb03ab217a8afc 100644 (file)
@@ -17,4 +17,7 @@ extern void xfs_setattr_time(struct xfs_inode *ip, struct iattr *iattr);
 int xfs_vn_setattr_size(struct user_namespace *mnt_userns,
                struct dentry *dentry, struct iattr *vap);
 
+int xfs_inode_init_security(struct inode *inode, struct inode *dir,
+               const struct qstr *qstr);
+
 #endif /* __XFS_IOPS_H__ */