Import Source
https://github.com/microsoft/AzureLinuxVulnerabilityData/blob/main/osv/AZL-85914.json
JSON Data
https://api.osv.dev/v1/vulns/AZL-85914
Upstream
Published
2026-05-06T10:16:25Z
Modified
2026-08-30T05:26:50Z
Summary
CVE-2026-43119 affecting package kernel 6.6.150.1-1
Details

In the Linux kernel, the following vulnerability has been resolved:

Bluetooth: hcisync: annotate data-races around hdev->reqstatus

_hcicmdsyncsk() sets hdev->reqstatus under hdev->reqlock:

hdev->req_status = HCI_REQ_PEND;

However, several other functions read or write hdev->req_status without holding any lock:

  • hcisendcmdsync() reads reqstatus in hcicmdwork (workqueue)
  • hcicmdsync_complete() reads/writes from HCI event completion
  • hcicmdsynccancel() / hcicmdsynccancel_sync() read/write
  • hciabortconn() reads in connection abort path

Since _hcicmdsyncsk() runs on hdev->reqworkqueue while hcisendcmdsync() runs on hdev->workqueue, these are different workqueues that can execute concurrently on different CPUs. The plain C accesses constitute a data race.

Add READONCE()/WRITEONCE() annotations on all concurrent accesses to hdev->reqstatus to prevent potential compiler optimizations that could affect correctness (e.g., load fusing in the waitevent condition or store reordering).

References

Affected packages

Azure Linux:3 / kernel

Package

Name
kernel
Purl
pkg:rpm/azure-linux/kernel

Affected ranges

Type
ECOSYSTEM
Events
Introduced
0Unknown introduced version / All previous versions are affected
Last affected
6.6.150.1-1

Database specific

source
"https://github.com/microsoft/AzureLinuxVulnerabilityData/blob/main/osv/AZL-85914.json"