Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 8321652a authored by Alexey Khoroshilov's avatar Alexey Khoroshilov Committed by Greg Kroah-Hartman
Browse files

USB: omninet: fix potential tty NULL dereference



Add check for return value of tty_port_tty_get,
since it can return NULL after port hangup that may happen anytime.

Found by Linux Driver Verification project (linuxtesting.org).

Signed-off-by: default avatarAlexey Khoroshilov <khoroshilov@ispras.ru>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 17e67910
Loading
Loading
Loading
Loading
+5 −3
Original line number Diff line number Diff line
@@ -185,11 +185,13 @@ static void omninet_read_bulk_callback(struct urb *urb)

	if (urb->actual_length && header->oh_len) {
		struct tty_struct *tty = tty_port_tty_get(&port->port);
		if (tty) {
			tty_insert_flip_string(tty, data + OMNINET_DATAOFFSET,
							header->oh_len);
			tty_flip_buffer_push(tty);
			tty_kref_put(tty);
		}
	}

	/* Continue trying to always read  */
	result = usb_submit_urb(urb, GFP_ATOMIC);