]> git.baikalelectronics.ru Git - kernel.git/commit
xfs: fix boundary test in xfs_attr_shortform_verify
authorEric Sandeen <sandeen@redhat.com>
Wed, 26 Aug 2020 21:11:58 +0000 (14:11 -0700)
committerDarrick J. Wong <darrick.wong@oracle.com>
Wed, 26 Aug 2020 21:13:21 +0000 (14:13 -0700)
commit26c808dfb49e871fe9bdb0a42caf10d403c423a8
tree41d1a045a0aad864a63228e69a41b936136fbe08
parent2349b2e0c9d0e50fddf92559ba2fe77eacc18b0b
xfs: fix boundary test in xfs_attr_shortform_verify

The boundary test for the fixed-offset parts of xfs_attr_sf_entry in
xfs_attr_shortform_verify is off by one, because the variable array
at the end is defined as nameval[1] not nameval[].
Hence we need to subtract 1 from the calculation.

This can be shown by:

# touch file
# setfattr -n root.a file

and verifications will fail when it's written to disk.

This only matters for a last attribute which has a single-byte name
and no value, otherwise the combination of namelen & valuelen will
push endp further out and this test won't fail.

Fixes: 1c9365fa77b01 ("xfs: create structure verifier function for shortform xattrs")
Signed-off-by: Eric Sandeen <sandeen@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
fs/xfs/libxfs/xfs_attr_leaf.c