Skip to content

Commit 8468f45

Browse files
Coly Liaxboe
authored andcommitted
bcache: fix use-after-free problem in bcache_device_free()
In bcache_device_free(), pointer disk is referenced still in ida_simple_remove() after blk_cleanup_disk() gets called on this pointer. This may cause a potential panic by use-after-free on the disk pointer. This patch fixes the problem by calling blk_cleanup_disk() after ida_simple_remove(). Fixes: bc70852 ("bcache: convert to blk_alloc_disk/blk_cleanup_disk") Signed-off-by: Coly Li <[email protected]> Cc: Christoph Hellwig <[email protected]> Cc: Hannes Reinecke <[email protected]> Cc: Ulf Hansson <[email protected]> Cc: [email protected] # v5.14+ Reviewed-by: Christoph Hellwig <[email protected]> Link: https://lore.kernel.org/r/[email protected] Signed-off-by: Jens Axboe <[email protected]>
1 parent 00c5495 commit 8468f45

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

drivers/md/bcache/super.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -885,9 +885,9 @@ static void bcache_device_free(struct bcache_device *d)
885885
bcache_device_detach(d);
886886

887887
if (disk) {
888-
blk_cleanup_disk(disk);
889888
ida_simple_remove(&bcache_device_idx,
890889
first_minor_to_idx(disk->first_minor));
890+
blk_cleanup_disk(disk);
891891
}
892892

893893
bioset_exit(&d->bio_split);

0 commit comments

Comments
 (0)