• Pavel Begunkov's avatar
    io_uring: fix not locked access to fixed buf table · 05b538c1
    Pavel Begunkov authored
    We can look inside the fixed buffer table only while holding
    ->uring_lock, however in some cases we don't do the right async prep for
    IORING_OP_{WRITE,READ}_FIXED ending up with NULL req->imu forcing making
    an io-wq worker to try to resolve the fixed buffer without proper
    locking.
    
    Move req->imu setup into early req init paths, i.e. io_prep_rw(), which
    is called unconditionally for rw requests and under uring_lock.
    
    Fixes: 634d00df ("io_uring: add full-fledged dynamic buffers support")
    Signed-off-by: default avatarPavel Begunkov <asml.silence@gmail.com>
    05b538c1
io_uring.c 327 KB