---
id: CVE-2026-90087
title: |-
  In the Linux kernel, the following vulnerability has been resolved:

  Bluetooth: do not leak an hci_conn when a second LE connect is rejected

  create_le_conn_complete() decides whether the failed connection is
  still pending by comparing i…
summary: |-
  In the Linux kernel, the following vulnerability has been resolved:

  Bluetooth: do not leak an hci_conn when a second LE connect is rejected

  create_le_conn_complete() decides whether the failed connection is
  still pending by comparing i…
severity: none
vendor: Linux
product: Linux
affected:
  - >-
    Linux >= c9f73a2178c12fb24d2807634209559d6a836e08 <
    2eafcf310f4e0ad4f387881db01116bbe3cc0b39
  - >-
    Linux >= c9f73a2178c12fb24d2807634209559d6a836e08 <
    7e1e4047200fd7519f9bdfe8a001437715e618b4
  - Linux ee23bb0e4315476413e4e1ed9c486d6f9472294d
  - Linux da499d598cb84b45a2aa930dc9213dc9a746a81d
  - Linux >= 5.17.14 < 5.18
  - Linux >= 5.18.3 < 5.19
  - Linux 5.19
published: '2026-09-17'
updated: '2026-09-17'
sourceUpdated: '2026-09-17T17:16:59.117'
source: NVD
sourceUrl: 'https://nvd.nist.gov/vuln/detail/CVE-2026-90087'
references:
  - url: 'https://git.kernel.org/stable/c/2eafcf310f4e0ad4f387881db01116bbe3cc0b39'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
  - url: 'https://git.kernel.org/stable/c/7e1e4047200fd7519f9bdfe8a001437715e618b4'
    label: 416baaa9-dc9f-4396-8d5f-8c081fb06d67
tags:
  - nvd
  - cve.org
ingestedAt: '2026-09-17T16:21:47.893Z'
epss: 0.00189
epssPercentile: 0.08816
---

## Overview

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

Bluetooth: do not leak an hci_conn when a second LE connect is rejected

create_le_conn_complete() decides whether the failed connection is
still pending by comparing it against hci_lookup_le_connect(), which
returns the first LE connection in BT_CONNECT. That is the same
connection only while at most one is pending.

Two can be pending. Connections created on the passive scan path sit
in BT_CONNECT with HCI_CONN_SCANNING set and are invisible to
hci_lookup_le_connect() until hci_le_create_conn_sync() clears the
flag when their command is issued, so the -EBUSY guard in
hci_connect_le() does not prevent a second connection from being
queued while the first is still on the scan path. Whenever two
connections are in BT_CONNECT at once, the lookup may return one
connection while create_le_conn_complete() is reporting the failure
of the other; the early exit then drops the error and hci_conn_failed()
never runs on the connection that failed.

The controller also rejects a second HCI_OP_LE_CREATE_CONN issued
while another connection creation is still outstanding, per Core Spec
Vol 4, Part E. The spec calls for Command Disallowed there; the
bcm43438 observed here answers with an LMP/LL error code instead,
which bt_to_errno() maps to the -EPROTO (-71) in the log below.

The leaked connection stays in BT_CONNECT forever, and because
hci_connect_le() refuses to dial while hci_lookup_le_connect() finds
anything, every subsequent attempt to reach any peer fails with
-EBUSY and no command reaches the controller at all.

Seen on a bcm43438 with two BLE peers polled on the same interval
(state 5 is BT_CONNECT; both handles are UNSET ones, allocated from
the ida above HCI_CONN_HANDLE_MAX):

  Bluetooth: hci1: Opcode 0x2013 failed: -71

  # hcitool con
          < LE 14:9C:EF:03:68:81 handle 3840 state 5 lm CENTRAL
          < LE C4:D3:6A:8C:B5:38 handle 3841 state 5 lm CENTRAL

A btmon capture across the next ten minutes of connect attempts
contains no HCI_OP_LE_CREATE_CONN at all; outgoing LE connections
do not recover until the adapter is reset. With this change the same
scenario fails the rejected connection cleanly and further connects
to both peers go through.

Ask about the connection itself instead of about the device.

## Remediation

Refer to the linked advisories for vendor-supplied fixes and affected version ranges.
