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

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