Re: [PATCH] Bluetooth: Prevent buffer overflow for large advertisement data

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



Hi Chriz,

On Thursday, 19 April 2018 13:03:09 CEST Chriz Chow wrote:
> In the Bluetooth Core Specifications 5.0 it has no limitation of
> the length of Advertising or Scan Response Data. Therefore,
> there are some devices sending out advertising data longer than
> HCI_MAX_AD_LENGTH, causing the buffer last_adv_data overflows.
> 
> It prevents the issue by checking the data length before copying.
> 
> Signed-off-by: Chriz Chow <chriz.chow@xxxxxxxxxxxx>
> ---
>  net/bluetooth/hci_event.c | 3 +++
>  1 file changed, 3 insertions(+)
> 
> diff --git a/net/bluetooth/hci_event.c b/net/bluetooth/hci_event.c
> index 139707c..1300bb0 100644
> --- a/net/bluetooth/hci_event.c
> +++ b/net/bluetooth/hci_event.c
> @@ -1118,6 +1118,9 @@ static void store_pending_adv_report(struct hci_dev
> *hdev, bdaddr_t *bdaddr, {
>  	struct discovery_state *d = &hdev->discovery;
> 
> +	if (len > HCI_MAX_AD_LENGTH)
> +		return;
> +
>  	bacpy(&d->last_adv_addr, bdaddr);
>  	d->last_adv_addr_type = bdaddr_type;
>  	d->last_adv_rssi = rssi;

This would indicate that controller is sending LE Advertising Report Event 
with illegal length value (valid range is 0x00-0x1f). If there are such broken 
controllers around we could check those but I think this should be done as 
soon as possible ie. in hci_le_adv_report_evt() function.

Also, >31 bytes of advertising data is only for Extended Advertising which 
would require using LE Set Extended Scan commands and would result in LE 
Extended Advertising Reports being generated instead (none of those are yet 
supported in kernel).

-- 
pozdrawiam
Szymon Janc


--
To unsubscribe from this list: send the line "unsubscribe linux-bluetooth" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at  http://vger.kernel.org/majordomo-info.html



[Index of Archives]     [Bluez Devel]     [Linux Wireless Networking]     [Linux Wireless Personal Area Networking]     [Linux ATH6KL]     [Linux USB Devel]     [Linux Media Drivers]     [Linux Audio Users]     [Linux Kernel]     [Linux SCSI]     [Big List of Linux Books]

  Powered by Linux