]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
USB: ldusb: fix NULL-derefs on driver unbind
authorJohan Hovold <johan@kernel.org>
Wed, 9 Oct 2019 15:38:46 +0000 (17:38 +0200)
committerStefan Bader <stefan.bader@canonical.com>
Tue, 12 Nov 2019 18:04:33 +0000 (19:04 +0100)
commitb5016c129b704967904b3917acaa8d69232de156
tree2971faefa724a054d3077880eff75708b7b387d7
parent3d92066bf0afd58c2a2e99a619d71c2b3d45760a
USB: ldusb: fix NULL-derefs on driver unbind

BugLink: https://bugs.launchpad.net/bugs/1850541
commit 58ecf131e74620305175a7aa103f81350bb37570 upstream.

The driver was using its struct usb_interface pointer as an inverted
disconnected flag, but was setting it to NULL before making sure all
completion handlers had run. This could lead to a NULL-pointer
dereference in a number of dev_dbg, dev_warn and dev_err statements in
the completion handlers which relies on said pointer.

Fix this by unconditionally stopping all I/O and preventing
resubmissions by poisoning the interrupt URBs at disconnect and using a
dedicated disconnected flag.

This also makes sure that all I/O has completed by the time the
disconnect callback returns.

Fixes: 2824bd250f0b ("[PATCH] USB: add ldusb driver")
Cc: stable <stable@vger.kernel.org> # 2.6.13
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20191009153848.8664-4-johan@kernel.org
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Kamal Mostafa <kamal@canonical.com>
Signed-off-by: Kleber Sacilotto de Souza <kleber.souza@canonical.com>
drivers/usb/misc/ldusb.c