]> git.hungrycats.org Git - linux/commitdiff
staging: gdm724x: gdm_mux: fix use-after-free on module unload
authorJohan Hovold <johan@kernel.org>
Wed, 26 Apr 2017 10:23:04 +0000 (12:23 +0200)
committerBen Hutchings <ben@decadent.org.uk>
Sat, 26 Aug 2017 01:14:40 +0000 (02:14 +0100)
commit b58f45c8fc301fe83ee28cad3e64686c19e78f1c upstream.

Make sure to deregister the USB driver before releasing the tty driver
to avoid use-after-free in the USB disconnect callback where the tty
devices are deregistered.

Fixes: 61e121047645 ("staging: gdm7240: adding LTE USB driver")
Cc: Won Kang <wkang77@gmail.com>
Signed-off-by: Johan Hovold <johan@kernel.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/staging/gdm724x/gdm_mux.c

index 62f440dc93f7593345bd8bdc01668181df63a46e..629463beaa70019c7587c6a4be3b0dbdf72178d1 100644 (file)
@@ -666,9 +666,8 @@ static int __init gdm_usb_mux_init(void)
 
 static void __exit gdm_usb_mux_exit(void)
 {
-       unregister_lte_tty_driver();
-
        usb_deregister(&gdm_mux_driver);
+       unregister_lte_tty_driver();
 }
 
 module_init(gdm_usb_mux_init);