Skip to content

Commit

Permalink
Bluetooth: HCI: Use skb_pull_data to parse Extended Inquiry Result event
Browse files Browse the repository at this point in the history
This uses skb_pull_data to check the Extended Inquiry Result 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 8d08d32 commit 70a6b8d
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 5 deletions.
5 changes: 5 additions & 0 deletions include/net/bluetooth/hci.h
Original file line number Diff line number Diff line change
Expand Up @@ -2273,6 +2273,11 @@ struct extended_inquiry_info {
__u8 data[240];
} __packed;

struct hci_ev_ext_inquiry_result {
__u8 num;
struct extended_inquiry_info info[];
} __packed;

#define HCI_EV_KEY_REFRESH_COMPLETE 0x30
struct hci_ev_key_refresh_complete {
__u8 status;
Expand Down
20 changes: 15 additions & 5 deletions net/bluetooth/hci_event.c
Original file line number Diff line number Diff line change
Expand Up @@ -5186,22 +5186,32 @@ static inline size_t eir_get_length(u8 *eir, size_t eir_len)
static void hci_extended_inquiry_result_evt(struct hci_dev *hdev,
struct sk_buff *skb)
{
struct hci_ev_ext_inquiry_result *ev;
struct inquiry_data data;
struct extended_inquiry_info *info = (void *) (skb->data + 1);
int num_rsp = *((__u8 *) skb->data);
size_t eir_len;
int i;

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

if (!num_rsp || skb->len < num_rsp * sizeof(*info) + 1)
if (!hci_ev_skb_pull(hdev, skb, HCI_EV_EXTENDED_INQUIRY_RESULT,
flex_array_size(ev, info, ev->num)))
return;

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

if (!ev->num)
return;

if (hci_dev_test_flag(hdev, HCI_PERIODIC_INQ))
return;

hci_dev_lock(hdev);

for (; num_rsp; num_rsp--, info++) {
for (i = 0; i < ev->num; i++) {
struct extended_inquiry_info *info = &ev->info[i];
u32 flags;
bool name_known;

Expand Down

0 comments on commit 70a6b8d

Please sign in to comment.