OSDN Git Service

xfs: fix attr leaf header freemap.size underflow
authorBrian Foster <bfoster@redhat.com>
Sat, 16 Nov 2019 05:15:08 +0000 (21:15 -0800)
committerDarrick J. Wong <darrick.wong@oracle.com>
Sat, 16 Nov 2019 05:15:29 +0000 (21:15 -0800)
commit2a2b5932db67586bacc560cc065d62faece5b996
treeb1a9b4b936d8b80f2a70d0cdbc0ae077eb60ef96
parent050552cbe06a3a9c3f977dcf11ff998ae1d5c2d5
xfs: fix attr leaf header freemap.size underflow

The leaf format xattr addition helper xfs_attr3_leaf_add_work()
adjusts the block freemap in a couple places. The first update drops
the size of the freemap that the caller had already selected to
place the xattr name/value data. Before the function returns, it
also checks whether the entries array has encroached on a freemap
range by virtue of the new entry addition. This is necessary because
the entries array grows from the start of the block (but end of the
block header) towards the end of the block while the name/value data
grows from the end of the block in the opposite direction. If the
associated freemap is already empty, however, size is zero and the
subtraction underflows the field and causes corruption.

This is reproduced rarely by generic/070. The observed behavior is
that a smaller sized freemap is aligned to the end of the entries
list, several subsequent xattr additions land in larger freemaps and
the entries list expands into the smaller freemap until it is fully
consumed and then underflows. Note that it is not otherwise a
corruption for the entries array to consume an empty freemap because
the nameval list (i.e. the firstused pointer in the xattr header)
starts beyond the end of the corrupted freemap.

Update the freemap size modification to account for the fact that
the freemap entry can be empty and thus stale.

Signed-off-by: Brian Foster <bfoster@redhat.com>
Reviewed-by: Darrick J. Wong <darrick.wong@oracle.com>
Signed-off-by: Darrick J. Wong <darrick.wong@oracle.com>
fs/xfs/libxfs/xfs_attr_leaf.c