Skip to content

Commit

Permalink
Bluetooth: HCI: Use skb_pull_data to parse Inquiry Result with RSSI e…
Browse files Browse the repository at this point in the history
…vent

This uses skb_pull_data to check the Inquiry Result with RSSI events
received have the minimum required length.

Signed-off-by: Luiz Augusto von Dentz <luiz.von.dentz@intel.com>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
  • Loading branch information
Luiz Augusto von Dentz authored and Marcel Holtmann committed Dec 7, 2021
1 parent 27d9eb4 commit 8d08d32
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 19 deletions.
12 changes: 10 additions & 2 deletions include/net/bluetooth/hci.h
Original file line number Diff line number Diff line change
Expand Up @@ -2194,15 +2194,15 @@ struct hci_ev_pscan_rep_mode {
} __packed;

#define HCI_EV_INQUIRY_RESULT_WITH_RSSI 0x22
struct inquiry_info_with_rssi {
struct inquiry_info_rssi {
bdaddr_t bdaddr;
__u8 pscan_rep_mode;
__u8 pscan_period_mode;
__u8 dev_class[3];
__le16 clock_offset;
__s8 rssi;
} __packed;
struct inquiry_info_with_rssi_and_pscan_mode {
struct inquiry_info_rssi_pscan {
bdaddr_t bdaddr;
__u8 pscan_rep_mode;
__u8 pscan_period_mode;
Expand All @@ -2211,6 +2211,14 @@ struct inquiry_info_with_rssi_and_pscan_mode {
__le16 clock_offset;
__s8 rssi;
} __packed;
struct hci_ev_inquiry_result_rssi {
__u8 num;
struct inquiry_info_rssi info[];
} __packed;
struct hci_ev_inquiry_result_rssi_pscan {
__u8 num;
struct inquiry_info_rssi_pscan info[];
} __packed;

#define HCI_EV_REMOTE_EXT_FEATURES 0x23
struct hci_ev_remote_ext_features {
Expand Down
40 changes: 23 additions & 17 deletions net/bluetooth/hci_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -4921,29 +4921,35 @@ static void hci_pscan_rep_mode_evt(struct hci_dev *hdev, struct sk_buff *skb)
static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
struct sk_buff *skb)
{
union {
struct hci_ev_inquiry_result_rssi *res1;
struct hci_ev_inquiry_result_rssi_pscan *res2;
} *ev;
struct inquiry_data data;
int num_rsp = *((__u8 *) skb->data);
int i;

BT_DBG("%s num_rsp %d", hdev->name, num_rsp);
ev = hci_ev_skb_pull(hdev, skb, HCI_EV_INQUIRY_RESULT_WITH_RSSI,
sizeof(*ev));
if (!ev)
return;

BT_DBG("%s num_rsp %d", hdev->name, ev->res1->num);

if (!num_rsp)
if (!ev->res1->num)
return;

if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))
return;

hci_dev_lock(hdev);

if ((skb->len - 1) / num_rsp != sizeof(struct inquiry_info_with_rssi)) {
struct inquiry_info_with_rssi_and_pscan_mode *info;
info = (void *) (skb->data + 1);
if (skb->len == flex_array_size(ev, res2->info, ev->res2->num)) {
struct inquiry_info_rssi_pscan *info;

if (skb->len < num_rsp * sizeof(*info) + 1)
goto unlock;

for (; num_rsp; num_rsp--, info++) {
for (i = 0; i < ev->res2->num; i++) {
u32 flags;

info = &ev->res2->info[i];
bacpy(&data.bdaddr, &info->bdaddr);
data.pscan_rep_mode = info->pscan_rep_mode;
data.pscan_period_mode = info->pscan_period_mode;
Expand All @@ -4959,15 +4965,13 @@ static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
info->dev_class, info->rssi,
flags, NULL, 0, NULL, 0);
}
} else {
struct inquiry_info_with_rssi *info = (void *) (skb->data + 1);
} else if (skb->len == flex_array_size(ev, res1->info, ev->res1->num)) {
struct inquiry_info_rssi *info;

if (skb->len < num_rsp * sizeof(*info) + 1)
goto unlock;

for (; num_rsp; num_rsp--, info++) {
for (i = 0; i < ev->res1->num; i++) {
u32 flags;

info = &ev->res1->info[i];
bacpy(&data.bdaddr, &info->bdaddr);
data.pscan_rep_mode = info->pscan_rep_mode;
data.pscan_period_mode = info->pscan_period_mode;
Expand All @@ -4983,9 +4987,11 @@ static void hci_inquiry_result_with_rssi_evt(struct hci_dev *hdev,
info->dev_class, info->rssi,
flags, NULL, 0, NULL, 0);
}
} else {
bt_dev_err(hdev, "Malformed HCI Event: 0x%2.2x",
HCI_EV_INQUIRY_RESULT_WITH_RSSI);
}

unlock:
hci_dev_unlock(hdev);
}

Expand Down

0 comments on commit 8d08d32

Please sign in to comment.