]> git.proxmox.com Git - mirror_ubuntu-jammy-kernel.git/commit
Bluetooth: bfusb: fix division by zero in send path
authorJohan Hovold <johan@kernel.org>
Mon, 25 Oct 2021 11:39:44 +0000 (13:39 +0200)
committerAndrea Righi <andrea.righi@canonical.com>
Fri, 21 Jan 2022 14:49:35 +0000 (15:49 +0100)
commit39b03fea846995a78f401db3590e227a0624bd37
tree68b73fc4df6e0680e35e6b98291cb9c66de7b170
parentb8b831d6b96b89fd278a4e02203c062e8e7b32bc
Bluetooth: bfusb: fix division by zero in send path

BugLink: https://bugs.launchpad.net/bugs/1958418
commit b5e6fa7a12572c82f1e7f2f51fbb02a322291291 upstream.

Add the missing bulk-out endpoint sanity check to probe() to avoid
division by zero in bfusb_send_frame() in case a malicious device has
broken descriptors (or when doing descriptor fuzz testing).

Note that USB core will reject URBs submitted for endpoints with zero
wMaxPacketSize but that drivers doing packet-size calculations still
need to handle this (cf. commit 2548288b4fb0 ("USB: Fix: Don't skip
endpoint descriptors with maxpacket=0")).

Cc: stable@vger.kernel.org
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Marcel Holtmann <marcel@holtmann.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Paolo Pisati <p.pisati@gmail.com>
drivers/bluetooth/bfusb.c