Skip to content

Commit 4cdbcc5

Browse files
Zheng Qixingkawasaki
authored andcommitted
blk-cgroup: fix uaf in blkcg_activate_policy() racing with blkg_free_workfn()
When switching IO schedulers on a block device (e.g., loop0), blkcg_activate_policy() is called to allocate blkg_policy_data (pd) for all blkgs associated with that device's request queue. However, a race condition exists between blkcg_activate_policy() and concurrent blkcg deletion that leads to a use-after-free: T1 (blkcg_activate_policy): - Successfully allocates pd for blkg1 (loop0->queue, blkcgA) - Fails to allocate pd for blkg2 (loop0->queue, blkcgB) - Goes to enomem error path to rollback blkg1's resources T2 (blkcg deletion): - blkcgA is being deleted concurrently - blkg1 is freed via blkg_free_workfn() - blkg1->pd is freed T1 (continued): - In the rollback path, accesses pd->online after blkg1->pd has been freed - Triggers use-after-free The issue occurs because blkcg_activate_policy() doesn't hold adequate protection against concurrent blkg freeing during the error rollback path. The call trace is as follows: ================================================================== BUG: KASAN: slab-use-after-free in blkcg_activate_policy+0x516/0x5f0 Read of size 1 at addr ffff88802e1bc00c by task sh/7357 CPU: 1 PID: 7357 Comm: sh Tainted: G OE 6.6.0+ #1 Call Trace: <TASK> blkcg_activate_policy+0x516/0x5f0 bfq_create_group_hierarchy+0x31/0x90 bfq_init_queue+0x6df/0x8e0 blk_mq_init_sched+0x290/0x3a0 elevator_switch+0x8a/0x190 elv_iosched_store+0x1f7/0x2a0 queue_attr_store+0xad/0xf0 kernfs_fop_write_iter+0x1ee/0x2e0 new_sync_write+0x154/0x260 vfs_write+0x313/0x3c0 ksys_write+0xbd/0x160 do_syscall_64+0x55/0x100 entry_SYSCALL_64_after_hwframe+0x78/0xe2 Allocated by task 7357: bfq_pd_alloc+0x6e/0x120 blkcg_activate_policy+0x141/0x5f0 bfq_create_group_hierarchy+0x31/0x90 bfq_init_queue+0x6df/0x8e0 blk_mq_init_sched+0x290/0x3a0 elevator_switch+0x8a/0x190 elv_iosched_store+0x1f7/0x2a0 queue_attr_store+0xad/0xf0 kernfs_fop_write_iter+0x1ee/0x2e0 new_sync_write+0x154/0x260 vfs_write+0x313/0x3c0 ksys_write+0xbd/0x160 do_syscall_64+0x55/0x100 entry_SYSCALL_64_after_hwframe+0x78/0xe2 Freed by task 14318: blkg_free_workfn+0x7f/0x200 process_one_work+0x2ef/0x5d0 worker_thread+0x38d/0x4f0 kthread+0x156/0x190 ret_from_fork+0x2d/0x50 ret_from_fork_asm+0x1b/0x30 Fix this bug by adding q->blkcg_mutex in the enomem branch of blkcg_activate_policy(). Fixes: f1c006f ("blk-cgroup: synchronize pd_free_fn() from blkg_free_workfn() and blkcg_deactivate_policy()") Signed-off-by: Zheng Qixing <[email protected]> Reviewed-by: Christoph Hellwig <[email protected]>
1 parent 6bdfdc6 commit 4cdbcc5

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

block/blk-cgroup.c

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1693,9 +1693,11 @@ int blkcg_activate_policy(struct gendisk *disk, const struct blkcg_policy *pol)
16931693

16941694
enomem:
16951695
/* alloc failed, take down everything */
1696+
mutex_lock(&q->blkcg_mutex);
16961697
spin_lock_irq(&q->queue_lock);
16971698
blkcg_policy_teardown_pds(q, pol);
16981699
spin_unlock_irq(&q->queue_lock);
1700+
mutex_unlock(&q->blkcg_mutex);
16991701
ret = -ENOMEM;
17001702
goto out;
17011703
}

0 commit comments

Comments
 (0)