diff options
author | Johan Hovold <jhovold@gmail.com> | 2014-05-26 13:22:51 -0400 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2014-05-27 18:04:02 -0400 |
commit | 8452727de70f6ad850cd6d0aaa18b5d9050aa63b (patch) | |
tree | 7419d97cde020b99369a2caaf45af4bd4199e493 /drivers/usb/serial/sierra.c | |
parent | 353fe198602e8b4d1c7bdcceb8e60955087201b1 (diff) |
USB: sierra: fix use after free at suspend/resume
Fix use after free or NULL-pointer dereference during suspend and
resume.
The port data may never have been allocated (port probe failed)
or may already have been released by port_remove (e.g. driver is
unloaded) when suspend and resume are called.
Fixes: e6929a9020ac ("USB: support for autosuspend in sierra while
online")
Cc: <stable@vger.kernel.org> # v2.6.32
Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/usb/serial/sierra.c')
-rw-r--r-- | drivers/usb/serial/sierra.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/usb/serial/sierra.c b/drivers/usb/serial/sierra.c index 07cbd985ed65..2c5c5a9330e2 100644 --- a/drivers/usb/serial/sierra.c +++ b/drivers/usb/serial/sierra.c | |||
@@ -933,6 +933,7 @@ static int sierra_port_remove(struct usb_serial_port *port) | |||
933 | struct sierra_port_private *portdata; | 933 | struct sierra_port_private *portdata; |
934 | 934 | ||
935 | portdata = usb_get_serial_port_data(port); | 935 | portdata = usb_get_serial_port_data(port); |
936 | usb_set_serial_port_data(port, NULL); | ||
936 | kfree(portdata); | 937 | kfree(portdata); |
937 | 938 | ||
938 | return 0; | 939 | return 0; |
@@ -949,6 +950,8 @@ static void stop_read_write_urbs(struct usb_serial *serial) | |||
949 | for (i = 0; i < serial->num_ports; ++i) { | 950 | for (i = 0; i < serial->num_ports; ++i) { |
950 | port = serial->port[i]; | 951 | port = serial->port[i]; |
951 | portdata = usb_get_serial_port_data(port); | 952 | portdata = usb_get_serial_port_data(port); |
953 | if (!portdata) | ||
954 | continue; | ||
952 | sierra_stop_rx_urbs(port); | 955 | sierra_stop_rx_urbs(port); |
953 | usb_kill_anchored_urbs(&portdata->active); | 956 | usb_kill_anchored_urbs(&portdata->active); |
954 | } | 957 | } |
@@ -991,6 +994,9 @@ static int sierra_resume(struct usb_serial *serial) | |||
991 | port = serial->port[i]; | 994 | port = serial->port[i]; |
992 | portdata = usb_get_serial_port_data(port); | 995 | portdata = usb_get_serial_port_data(port); |
993 | 996 | ||
997 | if (!portdata) | ||
998 | continue; | ||
999 | |||
994 | while ((urb = usb_get_from_anchor(&portdata->delayed))) { | 1000 | while ((urb = usb_get_from_anchor(&portdata->delayed))) { |
995 | usb_anchor_urb(urb, &portdata->active); | 1001 | usb_anchor_urb(urb, &portdata->active); |
996 | intfdata->in_flight++; | 1002 | intfdata->in_flight++; |