製品・ソフトウェアに関する情報
LinuxのLinux Kernelにおける不特定の脆弱性
Title LinuxのLinux Kernelにおける不特定の脆弱性
Summary

Linuxカーネルにおいて、以下の脆弱性が修正されました。BluetoothのL2CAPサブシステムにおけるl2cap_ecred_reconf_rsp()関数の型の混乱を修正しました。具体的には、l2cap_ecred_reconf_rsp()関数が受信したデータをstruct l2cap_ecred_reconf_rsp(結果はオフセット0、2バイト)ではなく、struct l2cap_ecred_conn_rsp(ECRED接続応答、結果はオフセット6、8バイト)として誤ってキャストしていました。この誤りにより、2つの問題が発生していました。1つ目はsizeof(*rsp)による長さチェックが正しい2バイトではなく8バイトを要求し、有効なL2CAP_ECRED_RECONF_RSPパケットが-EPROTOエラーで拒否されてしまっていたことです。2つ目はrsp-resultをオフセット6から読み取るべきところをオフセット0から読み取ってしまい、パケットのサイズがチェックを通過する十分な大きさであっても誤ったデータが返されていました。今回の修正では正しい型を使用するとともに、生の__le16フィールドではなく、すでにバイトスワップされたresult変数をBT_DBGに渡すように変更しました。

Possible impacts ・当該ソフトウェアが扱う情報について、外部への漏えいは発生しません。 ・当該ソフトウェアが扱う全ての情報が書き換えられる可能性があります。 ・当該ソフトウェアの一部が停止する可能性があります。 
Solution

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

Publication Date May 5, 2026, midnight
Registration Date June 3, 2026, 5:01 p.m.
Last Update June 3, 2026, 5:01 p.m.
CVSS3.0 : 重要
Score 7.1
Vector CVSS:3.0/AV:A/AC:L/PR:N/UI:N/S:U/C:N/I:H/A:L
Affected System
Linux
Linux Kernel 5.11 以上 5.15.203 未満
Linux Kernel 5.16 以上 6.1.167 未満
Linux Kernel 5.7 以上 5.10.253 未満
Linux Kernel 6.13 以上 6.18.20 未満
Linux Kernel 6.19 以上 6.19.10 未満
Linux Kernel 6.2 以上 6.6.130 未満
Linux Kernel 6.7 以上 6.12.78 未満
Linux Kernel 7.0
CVE (情報セキュリティ 共通脆弱性識別子)
CWE (共通脆弱性タイプ一覧)
その他
Change Log
No Changed Details Date of change
1 [2026年06月03日]
  掲載
June 3, 2026, 5:01 p.m.

NVD Vulnerability Information
CVE-2026-43062
Summary

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

Bluetooth: L2CAP: Fix type confusion in l2cap_ecred_reconf_rsp()

l2cap_ecred_reconf_rsp() casts the incoming data to struct
l2cap_ecred_conn_rsp (the ECRED *connection* response, 8 bytes with
result at offset 6) instead of struct l2cap_ecred_reconf_rsp (2 bytes
with result at offset 0).

This causes two problems:

- The sizeof(*rsp) length check requires 8 bytes instead of the
correct 2, so valid L2CAP_ECRED_RECONF_RSP packets are rejected
with -EPROTO.

- rsp->result reads from offset 6 instead of offset 0, returning
wrong data when the packet is large enough to pass the check.

Fix by using the correct type. Also pass the already byte-swapped
result variable to BT_DBG instead of the raw __le16 field.

Publication Date May 6, 2026, 1:16 a.m.
Registration Date May 6, 2026, 4:07 a.m.
Last Update May 8, 2026, 10:16 p.m.
Related information, measures and tools
Common Vulnerabilities List