loop: add sync_blockdev() in __loop_clr_fd() to prevent UAF#865
Open
blktests-ci[bot] wants to merge 1 commit into
Open
loop: add sync_blockdev() in __loop_clr_fd() to prevent UAF#865blktests-ci[bot] wants to merge 1 commit into
blktests-ci[bot] wants to merge 1 commit into
Conversation
Author
|
Upstream branch: 6779b50 |
ea833a1 to
7af85d1
Compare
Author
|
Upstream branch: 79bd2dd |
The syzbot report describes a NULL pointer dereference in lo_rw_aio() caused by a race between lo_release() and loop_queue_rq(). __loop_clr_fd() clears lo->lo_backing_file while an already-scheduled asynchronous I/O work (lo_rw_aio) is about to execute on a kworker. Since the kworker enters lo_rw_aio() after lo->lo_backing_file has been set to NULL, it dereferences the NULL pointer when initializing the kiocb, leading to a general protection fault. Fix this by adding sync_blockdev() in __loop_clr_fd() to flush all pending writeback I/O before clearing lo->lo_backing_file. Since the loop disk is already closed at this point, no new I/O can be submitted — only writeback remains. Reported-by: syzbot+cd8a9a308e879a4e2c28@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=cd8a9a308e879a4e2c28 Reported-by: syzbot+bc273027d5643e48e5b3@syzkaller.appspotmail.com Closes: https://syzkaller.appspot.com/bug?extid=bc273027d5643e48e5b3 Analyzed-by: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Hongling Zeng <zenghongling@kylinos.cn> Cc: Tetsuo Handa <penguin-kernel@I-love.SAKURA.ne.jp> Cc: Bart Van Assche <bvanassche@acm.org> Cc: Andrew Morton <akpm@linux-foundation.org> Link: https://lore.kernel.org/linux-block/9b2032d6-3f36-4d2b-8128-985c08a4fa37@I-love.SAKURA.ne.jp/ Signed-off-by: Ming Lei <tom.leiming@gmail.com>
b6afa86 to
a22d581
Compare
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pull request for series with
subject: loop: add sync_blockdev() in __loop_clr_fd() to prevent UAF
version: 1
url: https://patchwork.kernel.org/project/linux-block/list/?series=1099111