Commit 09ca6c40 authored by Jens Axboe's avatar Jens Axboe

io-wq: kill hashed waitqueue before manager exits

If we race with shutting down the io-wq context and someone queueing
a hashed entry, then we can exit the manager with it armed. If it then
triggers after the manager has exited, we can have a use-after-free where
io_wqe_hash_wake() attempts to wake a now gone manager process.

Move the killing of the hashed write queue into the manager itself, so
that we know we've killed it before the task exits.

Fixes: e941894e ("io-wq: make buffered file write hashed work map per-ctx")
Signed-off-by: default avatarJens Axboe <axboe@kernel.dk>
parent b5b0ecb7
...@@ -726,6 +726,11 @@ static int io_wq_manager(void *data) ...@@ -726,6 +726,11 @@ static int io_wq_manager(void *data)
if (atomic_read(&wq->worker_refs)) if (atomic_read(&wq->worker_refs))
wait_for_completion(&wq->worker_done); wait_for_completion(&wq->worker_done);
spin_lock_irq(&wq->hash->wait.lock);
for_each_node(node)
list_del_init(&wq->wqes[node]->wait.entry);
spin_unlock_irq(&wq->hash->wait.lock);
io_wq_cancel_pending(wq); io_wq_cancel_pending(wq);
complete(&wq->exited); complete(&wq->exited);
do_exit(0); do_exit(0);
...@@ -1051,15 +1056,11 @@ static void io_wq_destroy(struct io_wq *wq) ...@@ -1051,15 +1056,11 @@ static void io_wq_destroy(struct io_wq *wq)
set_bit(IO_WQ_BIT_EXIT, &wq->state); set_bit(IO_WQ_BIT_EXIT, &wq->state);
io_wq_destroy_manager(wq); io_wq_destroy_manager(wq);
spin_lock_irq(&wq->hash->wait.lock);
for_each_node(node) { for_each_node(node) {
struct io_wqe *wqe = wq->wqes[node]; struct io_wqe *wqe = wq->wqes[node];
list_del_init(&wqe->wait.entry);
WARN_ON_ONCE(!wq_list_empty(&wqe->work_list)); WARN_ON_ONCE(!wq_list_empty(&wqe->work_list));
kfree(wqe); kfree(wqe);
} }
spin_unlock_irq(&wq->hash->wait.lock);
io_wq_put_hash(wq->hash); io_wq_put_hash(wq->hash);
kfree(wq->wqes); kfree(wq->wqes);
kfree(wq); kfree(wq);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment