From: Soenke Huster Date: Fri, 14 Jan 2022 16:44:02 +0000 (+0100) Subject: Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt X-Git-Tag: baikal/aarch64/sdk5.9~4 X-Git-Url: https://git.baikalelectronics.ru/sdk/?a=commitdiff_plain;h=dfcb1465122fd5397d64e8e05013c8fabeb2d0f7;p=kernel.git Bluetooth: fix null ptr deref on hci_sync_conn_complete_evt commit c1ea0909d5b368a9db53bc1ecb24c918952b6ac0 upstream. This event is just specified for SCO and eSCO link types. On the reception of a HCI_Synchronous_Connection_Complete for a BDADDR of an existing LE connection, LE link type and a status that triggers the second case of the packet processing a NULL pointer dereference happens, as conn->link is NULL. Signed-off-by: Soenke Huster Signed-off-by: Luiz Augusto von Dentz Signed-off-by: Ovidiu Panait Signed-off-by: Greg Kroah-Hartman --- diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c index ff6625493c9f8..84b430986b1de 100644 --- a/net/bluetooth/hci_event.c +++ b/net/bluetooth/hci_event.c @@ -4177,6 +4177,19 @@ static void hci_sync_conn_complete_evt(struct hci_dev *hdev, struct hci_ev_sync_conn_complete *ev = (void *) skb->data; struct hci_conn *conn; + switch (ev->link_type) { + case SCO_LINK: + case ESCO_LINK: + break; + default: + /* As per Core 5.3 Vol 4 Part E 7.7.35 (p.2219), Link_Type + * for HCI_Synchronous_Connection_Complete is limited to + * either SCO or eSCO + */ + bt_dev_err(hdev, "Ignoring connect complete event for invalid link type"); + return; + } + BT_DBG("%s status 0x%2.2x", hdev->name, ev->status); hci_dev_lock(hdev);