aboutsummaryrefslogtreecommitdiffstats
path: root/include/net/bluetooth/hci_core.h
diff options
context:
space:
mode:
authorSoenke Huster <soenke.huster@eknoes.de>2022-01-23 15:06:24 +0100
committerLuiz Augusto von Dentz <luiz.von.dentz@intel.com>2022-01-24 18:38:14 -0800
commitd5ebaa7c5f6f688959e8d40840b2249ede63b8ed (patch)
tree070e0ba892719aa7921ba90d864ade2eb59a6812 /include/net/bluetooth/hci_core.h
parentBluetooth: msft: fix null pointer deref on msft_monitor_device_evt (diff)
downloadlinux-dev-d5ebaa7c5f6f688959e8d40840b2249ede63b8ed.tar.xz
linux-dev-d5ebaa7c5f6f688959e8d40840b2249ede63b8ed.zip
Bluetooth: hci_event: Ignore multiple conn complete events
When one of the three connection complete events is received multiple times for the same handle, the device is registered multiple times which leads to memory corruptions. Therefore, consequent events for a single connection are ignored. The conn->state can hold different values, therefore HCI_CONN_HANDLE_UNSET is introduced to identify new connections. To make sure the events do not contain this or another invalid handle HCI_CONN_HANDLE_MAX and checks are introduced. Buglink: https://bugzilla.kernel.org/show_bug.cgi?id=215497 Signed-off-by: Soenke Huster <soenke.huster@eknoes.de> Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Diffstat (limited to 'include/net/bluetooth/hci_core.h')
-rw-r--r--include/net/bluetooth/hci_core.h3
1 files changed, 3 insertions, 0 deletions
diff --git a/include/net/bluetooth/hci_core.h b/include/net/bluetooth/hci_core.h
index 21eadb113a31..f5caff1ddb29 100644
--- a/include/net/bluetooth/hci_core.h
+++ b/include/net/bluetooth/hci_core.h
@@ -303,6 +303,9 @@ struct adv_monitor {
#define HCI_MAX_SHORT_NAME_LENGTH 10
+#define HCI_CONN_HANDLE_UNSET 0xffff
+#define HCI_CONN_HANDLE_MAX 0x0eff
+
/* Min encryption key size to match with SMP */
#define HCI_MIN_ENC_KEY_SIZE 7