diff options
author | Bob Peterson <rpeterso@redhat.com> | 2013-12-10 12:06:35 -0500 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2013-12-13 21:42:23 +0000 |
commit | 9290a9a7c0bcf5400e8dbfbf9707fa68ea3fb338 (patch) | |
tree | 93b5b33720730b873652bec3ee4b761cfe844845 /fs/sysfs/file.c | |
parent | dfe5b9ad83a63180f358b27d1018649a27b394a9 (diff) | |
download | talos-obmc-linux-9290a9a7c0bcf5400e8dbfbf9707fa68ea3fb338.tar.gz talos-obmc-linux-9290a9a7c0bcf5400e8dbfbf9707fa68ea3fb338.zip |
GFS2: Fix use-after-free race when calling gfs2_remove_from_ail
Function gfs2_remove_from_ail drops the reference on the bh via
brelse. This patch fixes a race condition whereby bh is deferenced
after the brelse when setting bd->bd_blkno = bh->b_blocknr;
Under certain rare circumstances, bh might be gone or reused,
and bd->bd_blkno is set to whatever that memory happens to be,
which is often 0. Later, in gfs2_trans_add_unrevoke, that bd fails
the test "bd->bd_blkno >= blkno" which causes it to never be freed.
The end result is that the bd is never freed from the bufdata cache,
which results in this error:
slab error in kmem_cache_destroy(): cache `gfs2_bufdata': Can't free all objects
Signed-off-by: Bob Peterson <rpeterso@redhat.com>
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs/sysfs/file.c')
0 files changed, 0 insertions, 0 deletions