LinuxのLinux Kernelにおける不特定の脆弱性
タイトル LinuxのLinux Kernelにおける不特定の脆弱性
概要

Linuxカーネルにおいて、以下の脆弱性が修正されました。Bluetoothのhci_syncにおけるhdev-req_status周辺のデータ競合に関する注釈付けです。__hci_cmd_sync_sk()はhdev-req_lockのもとでhdev-req_statusを設定します:hdev-req_status = HCI_REQ_PEND。しかし、複数の他の関数はロックを保持せずにhdev-req_statusを読み書きしています。具体的には、hci_send_cmd_sync()はhci_cmd_work(ワークキュー)内でreq_statusを読み取り、hci_cmd_sync_complete()はHCIイベント完了から読み書きし、hci_cmd_sync_cancel()およびhci_cmd_sync_cancel_sync()は読み書きを行い、hci_abort_conn()は接続中止パスで読み取っています。__hci_cmd_sync_sk()はhdev-req_workqueueで実行される一方、hci_send_cmd_sync()はhdev-workqueueで実行されます。これにより、これらは異なるワークキューであり異なるCPU上で同時に実行され得ます。単純なCアクセスはデータ競合を構成します。したがって、hdev-req_statusへのすべての同時アクセスにREAD_ONCE()およびWRITE_ONCE()の注釈を追加し、wait_event条件での読み込み融合やストア順序変更など、正確性に影響を与える可能性のあるコンパイラ最適化を防止しました。

想定される影響 当該ソフトウェアが扱う情報について、外部への漏えいは発生しません。 また、当該ソフトウェアが扱う情報について、書き換えは発生しません。 さらに、当該ソフトウェアが完全に停止する可能性があります。 そして、この脆弱性を悪用した攻撃の影響は、他のソフトウェアには及びません。 
対策

リリース情報、またはパッチ情報が公開されています。参考情報を参照して適切な対策を実施してください。

公表日 2026年5月6日0:00
登録日 2026年5月14日10:17
最終更新日 2026年5月14日10:17
CVSS3.0 : 警告
スコア 5.5
ベクター CVSS:3.0/AV:L/AC:L/PR:L/UI:N/S:U/C:N/I:N/A:H
影響を受けるシステム
Linux
Linux Kernel 5.2 以上 6.12.83 未満
Linux Kernel 6.13 以上 6.18.24 未満
Linux Kernel 6.19 以上 6.19.14 未満
Linux Kernel 7.0
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
変更履歴
No 変更内容 変更日
1 [2026年05月14日]
  掲載
2026年5月14日10:17

NVD脆弱性情報
CVE-2026-43119
概要

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

Bluetooth: hci_sync: annotate data-races around hdev->req_status

__hci_cmd_sync_sk() sets hdev->req_status under hdev->req_lock:

hdev->req_status = HCI_REQ_PEND;

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

- hci_send_cmd_sync() reads req_status in hci_cmd_work (workqueue)
- hci_cmd_sync_complete() reads/writes from HCI event completion
- hci_cmd_sync_cancel() / hci_cmd_sync_cancel_sync() read/write
- hci_abort_conn() reads in connection abort path

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

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

公表日 2026年5月6日19:16
登録日 2026年5月7日4:08
最終更新日 2026年5月6日22:07
関連情報、対策とツール
共通脆弱性一覧