]> git.baikalelectronics.ru Git - kernel.git/commit
usb: gadget: uvc: Prevent buffer overflow in setup handler
authorSzymon Heidrich <szymon.heidrich@gmail.com>
Tue, 6 Dec 2022 14:13:01 +0000 (15:13 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 18 Jan 2023 10:40:47 +0000 (11:40 +0100)
commitc515303ba57dcd7c8926d5648e3384cb2435c666
tree706a741003b1a8c598c3e51302012363c80ff1ea
parente84f84f780a1eed90934752df72a6b31da2aec36
usb: gadget: uvc: Prevent buffer overflow in setup handler

commit 4c92670b16727365699fe4b19ed32013bab2c107 upstream.

Setup function uvc_function_setup permits control transfer
requests with up to 64 bytes of payload (UVC_MAX_REQUEST_SIZE),
data stage handler for OUT transfer uses memcpy to copy req->actual
bytes to uvc_event->data.data array of size 60. This may result
in an overflow of 4 bytes.

Fixes: 1223a1eb5b1f ("USB gadget: video class function driver")
Cc: stable <stable@kernel.org>
Reviewed-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Reviewed-by: Daniel Scally <dan.scally@ideasonboard.com>
Signed-off-by: Szymon Heidrich <szymon.heidrich@gmail.com>
Link: https://lore.kernel.org/r/20221206141301.51305-1-szymon.heidrich@gmail.com
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/gadget/function/f_uvc.c