Blame SOURCES/fs-xfs-fix-boundary-test-in-xfs_attr_shortform_verify.patch

6f99a4
From 4801d9a446569eb73191c8cb3b769aadcd3f0994 Mon Sep 17 00:00:00 2001
6f99a4
From: Julien Thierry <jthierry@redhat.com>
6f99a4
Date: Fri, 30 Oct 2020 09:00:20 +0000
6f99a4
Subject: [PATCH] [fs] xfs: fix boundary test in xfs_attr_shortform_verify
6f99a4
6f99a4
Kernels:
6f99a4
3.10.0-1160.el7
6f99a4
3.10.0-1160.2.1.el7
6f99a4
3.10.0-1160.2.2.el7
6f99a4
3.10.0-1160.6.1.el7
6f99a4
6f99a4
Changes since last build:
6f99a4
arches: x86_64 ppc64le
6f99a4
xfs_attr_leaf.o: changed function: xfs_attr_shortform_verify
6f99a4
---------------------------
6f99a4
6f99a4
Modifications:
6f99a4
None
6f99a4
6f99a4
Testing: tried the commands in the commit message before and after the
6f99a4
kpatch-patch. Without the kpatch-patch, the filesystem dies.
6f99a4
6f99a4
commit b2f2f4aef9d49b0b9fd349f0376f5ffe735e5823
6f99a4
Author: Eric Sandeen <sandeen@redhat.com>
6f99a4
Date:   Wed Sep 9 22:17:43 2020 -0400
6f99a4
6f99a4
    [fs] xfs: fix boundary test in xfs_attr_shortform_verify
6f99a4
6f99a4
    Message-id: <98c52b4e-9e63-55e1-5e8e-4f8d193b3762@redhat.com>
6f99a4
    Patchwork-id: 326026
6f99a4
    Patchwork-instance: patchwork
6f99a4
    O-Subject: [PATCH RHEL7.9.z] xfs: fix boundary test in xfs_attr_shortform_verify
6f99a4
    Bugzilla: 1875317
6f99a4
    CVE: CVE-2020-14385
6f99a4
    RH-Acked-by: Carlos Maiolino <cmaiolino@redhat.com>
6f99a4
    RH-Acked-by: Brian Foster <bfoster@redhat.com>
6f99a4
6f99a4
    Bugzilla: 1875317
6f99a4
    Upstream Status: https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git/
6f99a4
    Build Info: https://brewweb.engineering.redhat.com/brew/taskinfo?taskID=31247080
6f99a4
    Tested: With simple reproducer in commit + xfstests
6f99a4
    CVE: CVE-2020-14385
6f99a4
6f99a4
    The boundary test for the fixed-offset parts of xfs_attr_sf_entry in
6f99a4
    xfs_attr_shortform_verify is off by one, because the variable array
6f99a4
    at the end is defined as nameval[1] not nameval[].
6f99a4
    Hence we need to subtract 1 from the calculation.
6f99a4
6f99a4
    This can be shown by:
6f99a4
6f99a4
    # touch file
6f99a4
    # setfattr -n root.a file
6f99a4
6f99a4
    and verifications will fail when it's written to disk.
6f99a4
6f99a4
    This only matters for a last attribute which has a single-byte name
6f99a4
    and no value, otherwise the combination of namelen & valuelen will
6f99a4
    push endp further out and this test won't fail.
6f99a4
6f99a4
    Fixes: 1e1bbd8e7ee06 ("xfs: create structure verifier function for shortform xattrs")
6f99a4
    Signed-off-by: Eric Sandeen <sandeen@redhat.com>
6f99a4
    Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
6f99a4
    Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
6f99a4
    Reviewed-by: Christoph Hellwig <hch@lst.de>
6f99a4
    (cherry picked from commit f4020438fab05364018c91f7e02ebdd192085933)
6f99a4
    Signed-off-by: Eric Sandeen <sandeen@redhat.com>
6f99a4
    Signed-off-by: Augusto Caringi <acaringi@redhat.com>
6f99a4
6f99a4
Signed-off-by: Julien Thierry <jthierry@redhat.com>
6f99a4
---
6f99a4
 fs/xfs/libxfs/xfs_attr_leaf.c | 4 +++-
6f99a4
 1 file changed, 3 insertions(+), 1 deletion(-)
6f99a4
6f99a4
diff --git a/fs/xfs/libxfs/xfs_attr_leaf.c b/fs/xfs/libxfs/xfs_attr_leaf.c
6f99a4
index 2c892846929..1d2bedd4c1a 100644
6f99a4
--- a/fs/xfs/libxfs/xfs_attr_leaf.c
6f99a4
+++ b/fs/xfs/libxfs/xfs_attr_leaf.c
6f99a4
@@ -923,8 +923,10 @@ xfs_attr_shortform_verify(
6f99a4
 		 * struct xfs_attr_sf_entry has a variable length.
6f99a4
 		 * Check the fixed-offset parts of the structure are
6f99a4
 		 * within the data buffer.
6f99a4
+		 * xfs_attr_sf_entry is defined with a 1-byte variable
6f99a4
+		 * array at the end, so we must subtract that off.
6f99a4
 		 */
6f99a4
-		if (((char *)sfep + sizeof(*sfep)) >= endp)
6f99a4
+		if (((char *)sfep + sizeof(*sfep) - 1) >= endp)
6f99a4
 			return __this_address;
6f99a4
 
6f99a4
 		/* Don't allow names with known bad length. */
6f99a4
-- 
6f99a4
2.25.4
6f99a4