CVE-2022-50833
Race Condition in Linux Bluetooth Workqueue Causes Potential Deadlock
Publication date: 2025-12-30
Last updated on: 2025-12-30
Assigner: kernel.org
Description
Description
CVSS Scores
EPSS Scores
| Probability: | |
| Percentile: |
Meta Information
Affected Vendors & Products
| Vendor | Product | Version / Range |
|---|---|---|
| linux | linux_kernel | * |
Helpful Resources
Exploitability
| CWE ID | Description |
|---|---|
| CWE-UNKNOWN |
Attack-Flow Graph
AI Powered Q&A
Can you explain this vulnerability to me?
This vulnerability in the Linux kernel's Bluetooth component involves improper handling of workqueue operations. Specifically, there was an attempt to schedule Bluetooth device command work (hdev->cmd_work) from the system workqueue into the device's own workqueue while it was being drained, which is not allowed. The existing check to prevent this was incomplete. The fix involves using the correct workqueue (hdev->workqueue) for queuing command timer works and protecting the queuing operation with an RCU read lock to avoid queuing work after cancellation has completed.
How can this vulnerability impact me? :
This vulnerability could lead to improper scheduling of Bluetooth workqueue tasks, potentially causing system instability or unexpected behavior in Bluetooth operations within the Linux kernel. This might result in crashes or degraded Bluetooth functionality.