usbip: fix stub_send_ret_submit() vulnerability to null transfer_buffer
authorShuah Khan <shuahkh@osg.samsung.com>
Thu, 7 Dec 2017 21:16:50 +0000 (14:16 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 20 Dec 2017 09:10:19 +0000 (10:10 +0100)
commitd78a5506cf0ea112124c1ffa5c0aae09b579d96d
treea83dab7f7c15efea8e9fdbe7c92b1d2740aa101c
parentb6a2ad646c13bb9d1231bce5599cb3176ff33ca4
usbip: fix stub_send_ret_submit() vulnerability to null transfer_buffer

commit be6123df1ea8f01ee2f896a16c2b7be3e4557a5a upstream.

stub_send_ret_submit() handles urb with a potential null transfer_buffer,
when it replays a packet with potential malicious data that could contain
a null buffer. Add a check for the condition when actual_length > 0 and
transfer_buffer is null.

Reported-by: Secunia Research <vuln@secunia.com>
Signed-off-by: Shuah Khan <shuahkh@osg.samsung.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/usbip/stub_tx.c