]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/commit
USB: usb-skeleton: fix NULL-deref on disconnect
authorJohan Hovold <johan@kernel.org>
Wed, 9 Oct 2019 17:09:42 +0000 (19:09 +0200)
committerStefan Bader <stefan.bader@canonical.com>
Tue, 12 Nov 2019 18:04:31 +0000 (19:04 +0100)
commita724a1e2a43ee78fded5137ad72d690ff884fd8d
tree2f2da6dc0d1e4a2d9ae448322b3b53c3ec32b68a
parent936af43d2850bdd213cabd1c1fd5664b71aeca6f
USB: usb-skeleton: fix NULL-deref on disconnect

BugLink: https://bugs.launchpad.net/bugs/1850541
commit bed5ef230943863b9abf5eae226a20fad9a8ff71 upstream.

The driver was using its struct usb_interface pointer as an inverted
disconnected flag and was setting it to NULL before making sure all
completion handlers had run. This could lead to NULL-pointer
dereferences in the dev_err() statements in the completion handlers
which relies on said pointer.

Fix this by using a dedicated disconnected flag.

Note that this is also addresses a NULL-pointer dereference at release()
and a struct usb_interface reference leak introduced by a recent runtime
PM fix, which depends on and should have been submitted together with
this patch.

Fixes: 4212cd74ca6f ("USB: usb-skeleton.c: remove err() usage")
Fixes: 5c290a5e42c3 ("USB: usb-skeleton: fix runtime PM after driver unbind")
Cc: stable <stable@vger.kernel.org>
Signed-off-by: Johan Hovold <johan@kernel.org>
Link: https://lore.kernel.org/r/20191009170944.30057-2-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/usb-skeleton.c