]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
Bluetooth: hci_event: Mask data status from LE ext adv reports
authorChris Down <chris@chrisdown.name>
Mon, 21 Jul 2025 15:30:23 +0000 (16:30 +0100)
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>
Wed, 23 Jul 2025 14:34:47 +0000 (10:34 -0400)
The Event_Type field in an LE Extended Advertising Report uses bits 5
and 6 for data status (e.g. truncation or fragmentation), not the PDU
type itself.

The ext_evt_type_to_legacy() function fails to mask these status bits
before evaluation. This causes valid advertisements with status bits set
(e.g. a truncated non-connectable advertisement, which ends up showing
as PDU type 0x40) to be misclassified as unknown and subsequently
dropped. This is okay for most checks which use bitwise AND on the
relevant event type bits, but it doesn't work for non-connectable types,
which are checked with '== LE_EXT_ADV_NON_CONN_IND' (that is, zero).

In terms of behaviour, first the device sends a truncated report:

> HCI Event: LE Meta Event (0x3e) plen 26
      LE Extended Advertising Report (0x0d)
        Entry 0
          Event type: 0x0040
            Data status: Incomplete, data truncated, no more to come
          Address type: Random (0x01)
          Address: 1D:12:46:FA:F8:6E (Non-Resolvable)
          SID: 0x03
          RSSI: -98 dBm (0x9e)
          Data length: 0x00

Then, a few seconds later, it sends the subsequent complete report:

> HCI Event: LE Meta Event (0x3e) plen 122
      LE Extended Advertising Report (0x0d)
        Entry 0
          Event type: 0x0000
            Data status: Complete
          Address type: Random (0x01)
          Address: 1D:12:46:FA:F8:6E (Non-Resolvable)
          SID: 0x03
          RSSI: -97 dBm (0x9f)
          Data length: 0x60
          Service Data: Google (0xfef3)
            Data[92]: ...

These devices often send multiple truncated reports per second.

This patch introduces a PDU type mask to ensure only the relevant bits
are evaluated, allowing for the correct translation of all valid
extended advertising packets.

Fixes: b2cc9761f144 ("Bluetooth: Handle extended ADV PDU types")
Signed-off-by: Chris Down <chris@chrisdown.name>
Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
include/net/bluetooth/hci.h
net/bluetooth/hci_event.c

index 94f365b751664a7095ccc0beaf9deb0c804d475e..e90a7b753926636a7d310c9d76a2115d35c6b4da 100644 (file)
@@ -2634,6 +2634,7 @@ struct hci_ev_le_conn_complete {
 #define LE_EXT_ADV_DIRECT_IND          0x0004
 #define LE_EXT_ADV_SCAN_RSP            0x0008
 #define LE_EXT_ADV_LEGACY_PDU          0x0010
+#define LE_EXT_ADV_DATA_STATUS_MASK    0x0060
 #define LE_EXT_ADV_EVT_TYPE_MASK       0x007f
 
 #define ADDR_LE_DEV_PUBLIC             0x00
index c0eb03e5cbf8ddf1a2d6a1b5395c74fe278c8344..b7b473473b70abdadee0b65eebd9b755f90922f9 100644 (file)
@@ -6239,6 +6239,11 @@ static void hci_le_adv_report_evt(struct hci_dev *hdev, void *data,
 
 static u8 ext_evt_type_to_legacy(struct hci_dev *hdev, u16 evt_type)
 {
+       u16 pdu_type = evt_type & ~LE_EXT_ADV_DATA_STATUS_MASK;
+
+       if (!pdu_type)
+               return LE_ADV_NONCONN_IND;
+
        if (evt_type & LE_EXT_ADV_LEGACY_PDU) {
                switch (evt_type) {
                case LE_LEGACY_ADV_IND:
@@ -6270,8 +6275,7 @@ static u8 ext_evt_type_to_legacy(struct hci_dev *hdev, u16 evt_type)
        if (evt_type & LE_EXT_ADV_SCAN_IND)
                return LE_ADV_SCAN_IND;
 
-       if (evt_type == LE_EXT_ADV_NON_CONN_IND ||
-           evt_type & LE_EXT_ADV_DIRECT_IND)
+       if (evt_type & LE_EXT_ADV_DIRECT_IND)
                return LE_ADV_NONCONN_IND;
 
 invalid: