Bug 1220602 (CVE-2021-46942) - VUL-0: CVE-2021-46942: kernel: io_uring: shared sqpoll cancellation hang
Summary: VUL-0: CVE-2021-46942: kernel: io_uring: shared sqpoll cancellation hang
Status: RESOLVED FIXED
Alias: CVE-2021-46942
Product: SUSE Security Incidents
Classification: Novell Products
Component: Incidents (show other bugs)
Version: unspecified
Hardware: Other Other
: P5 - None : Normal
Target Milestone: ---
Assignee: Kernel Bugs
QA Contact: Security Team bot
URL: https://smash.suse.de/issue/395349/
Whiteboard: CVSSv3.1:SUSE:CVE-2021-46942:5.5:(AV:...
Keywords:
Depends on:
Blocks:
 
Reported: 2024-02-29 08:02 UTC by SMASH SMASH
Modified: 2024-02-29 08:03 UTC (History)
1 user (show)

See Also:
Found By: Security Response Team
Services Priority:
Business Priority:
Blocker: ---
Marketing QA Status: ---
IT Deployment: ---


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description SMASH SMASH 2024-02-29 08:02:45 UTC
In the Linux kernel, the following vulnerability has been resolved:

io_uring: fix shared sqpoll cancellation hangs

[  736.982891] INFO: task iou-sqp-4294:4295 blocked for more than 122 seconds.
[  736.982897] Call Trace:
[  736.982901]  schedule+0x68/0xe0
[  736.982903]  io_uring_cancel_sqpoll+0xdb/0x110
[  736.982908]  io_sqpoll_cancel_cb+0x24/0x30
[  736.982911]  io_run_task_work_head+0x28/0x50
[  736.982913]  io_sq_thread+0x4e3/0x720

We call io_uring_cancel_sqpoll() one by one for each ctx either in
sq_thread() itself or via task works, and it's intended to cancel all
requests of a specified context. However the function uses per-task
counters to track the number of inflight requests, so it counts more
requests than available via currect io_uring ctx and goes to sleep for
them to appear (e.g. from IRQ), that will never happen.

Cancel a bit more than before, i.e. all ctxs that share sqpoll
and continue to use shared counters. Don't forget that we should not
remove ctx from the list before running that task_work sqpoll-cancel,
otherwise the function wouldn't be able to find the context and will
hang.

References:
http://web.nvd.nist.gov/view/vuln/detail?vulnId=CVE-2021-46942
https://git.kernel.org/stable/c/cb5e0b3d0f993a6268c1a2c7ede2f9aa0c17ef68
https://www.cve.org/CVERecord?id=CVE-2021-46942
https://git.kernel.org/stable/c/734551df6f9bedfbefcd113ede665945e9de0b99
https://bugzilla.redhat.com/show_bug.cgi?id=2266507
Comment 1 Carlos López 2024-02-29 08:03:25 UTC
Already fixed in affected branches (cve/linux-5.14, SLE15-SP6, stable and master). Closing.