CVE-2026-11893
The Bluetooth HCI driver for Bouffalo Lab on-chip BLE controllers (BL60x/BL70x/BL61x), bt_bflb_send() in drivers/bluetooth/hci/hci_bflb.c, violates the bt_hci_driver_api.send() buffer-ownership contract. That contract (documented at include/zephyr/drivers/bluetooth.h) requires the buffer reference to be consumed only on success; on error the caller still owns the reference and unrefs it. The driver instead routed all error paths through a shared label that unconditionally called net_buf_unref(buf) before returning the error code, consuming the buffer on failure as well. When send() returns an error, the host TX path (send_buf() in subsys/bluetooth/host/conn.c) unrefs the same buffer again, believing it still owns it. This double-unref over-decrements the net_buf reference count. Because the buffer is a TX fragment whose destroy callback also decrements its still-queued parent buffer, the parent is freed prematurely while reachable on the connection TX queue, producing a use-after-free and corruption of the shared net_buf pool rather than a benign leak. The error conditions are on the host-to-controller transmit path (controller send failure, or an unsupported H:4 packet type), so they are not driven directly by attacker-supplied radio bytes; a remote/adjacent peer can influence them only indirectly, e.g. by inducing controller TX failures under heavy link load. The consequence when reached is BLE-stack denial of service (crash / pool corruption) with possible further memory corruption, bounded to devices using one of these Bouffalo Lab on-chip controllers.
Scoring
- Severity
- MEDIUM
- CVSS base score
- 5.9
- CVSS vector
- CVSS:3.1/AV:A/AC:H/PR:N/UI:N/S:U/C:N/I:L/A:H
- EPSS probability
- 0.16%
- CWE
- CWE-415
- Published
- 2026-08-11
- Last modified
- 2026-08-11
Affected products
- zephyrproject zephyr
Weakness type
Related vulnerabilities
- CVE-2026-87585 — Double free in PDFium in Google Chrome on on Windows prior to 153.0.8010.36 allowed a remote...
- CVE-2026-61915 — An issue was discovered in Cyrus IMAP before 3.12.4. There is a VPATCH BYPARAM double-free. An...
- CVE-2026-79907 — Acrobat Reader | Double Free (CWE-415)
- CVE-2026-81950 — Microsoft Excel Remote Code Execution Vulnerability
- CVE-2026-80080 — Microsoft Office Word Remote Code Execution Vulnerability
- CVE-2026-69309 — Windows Print Spooler Components Elevation of Privilege Vulnerability
- CVE-2026-70567 — Windows Display Enhancement Service Elevation of Privilege Vulnerability
- CVE-2026-69725 — Windows Hello Elevation of Privilege Vulnerability