This is a note to let you know that I've just added the patch titled USB: mos7840: fix use-after-free in TIOCMIWAIT to the 3.8-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: usb-mos7840-fix-use-after-free-in-tiocmiwait.patch and it can be found in the queue-3.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From a14430db686b8e459e1cf070a6ecf391515c9ab9 Mon Sep 17 00:00:00 2001 From: Johan Hovold <jhovold@xxxxxxxxx> Date: Tue, 19 Mar 2013 09:21:20 +0100 Subject: USB: mos7840: fix use-after-free in TIOCMIWAIT From: Johan Hovold <jhovold@xxxxxxxxx> commit a14430db686b8e459e1cf070a6ecf391515c9ab9 upstream. Use the port wait queue and make sure to check the serial disconnected flag before accessing private port data after waking up. This is is needed as the private port data (including the wait queue itself) can be gone when waking up after a disconnect. Signed-off-by: Johan Hovold <jhovold@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- drivers/usb/serial/mos7840.c | 13 ++++++++----- 1 file changed, 8 insertions(+), 5 deletions(-) --- a/drivers/usb/serial/mos7840.c +++ b/drivers/usb/serial/mos7840.c @@ -219,7 +219,6 @@ struct moschip_port { char open; char open_ports; wait_queue_head_t wait_chase; /* for handling sleeping while waiting for chase to finish */ - wait_queue_head_t delta_msr_wait; /* for handling sleeping while waiting for msr change to happen */ int delta_msr_cond; struct async_icount icount; struct usb_serial_port *port; /* loop back to the owner of this object */ @@ -425,7 +424,7 @@ static void mos7840_handle_new_msr(struc } mos7840_port->delta_msr_cond = 1; - wake_up_interruptible(&mos7840_port->delta_msr_wait); + wake_up_interruptible(&port->port->delta_msr_wait); } } @@ -1134,7 +1133,6 @@ static int mos7840_open(struct tty_struc /* initialize our wait queues */ init_waitqueue_head(&mos7840_port->wait_chase); - init_waitqueue_head(&mos7840_port->delta_msr_wait); /* initialize our icount structure */ memset(&(mos7840_port->icount), 0x00, sizeof(mos7840_port->icount)); @@ -2224,13 +2222,18 @@ static int mos7840_ioctl(struct tty_stru while (1) { /* interruptible_sleep_on(&mos7840_port->delta_msr_wait); */ mos7840_port->delta_msr_cond = 0; - wait_event_interruptible(mos7840_port->delta_msr_wait, - (mos7840_port-> + wait_event_interruptible(port->delta_msr_wait, + (port->serial->disconnected || + mos7840_port-> delta_msr_cond == 1)); /* see if a signal did it */ if (signal_pending(current)) return -ERESTARTSYS; + + if (port->serial->disconnected) + return -EIO; + cnow = mos7840_port->icount; smp_rmb(); if (cnow.rng == cprev.rng && cnow.dsr == cprev.dsr && Patches currently in stable-queue which might be from jhovold@xxxxxxxxx are queue-3.8/usb-quatech2-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-ark3116-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-cypress_m8-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-pl2303-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-io_edgeport-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-ch341-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-mos7840-fix-broken-tiocmiwait.patch queue-3.8/usb-spcp8x5-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-ti_usb_3410_5052-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-serial-fix-hang-when-opening-port.patch queue-3.8/usb-f81232-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-mct_u232-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-oti6858-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-ftdi_sio-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-serial-add-modem-status-change-wait-queue.patch queue-3.8/usb-io_ti-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-ssu100-fix-use-after-free-in-tiocmiwait.patch queue-3.8/usb-mos7840-fix-use-after-free-in-tiocmiwait.patch -- To unsubscribe from this list: send the line "unsubscribe stable" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html