]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
USB: quatech2: fix serial DMA-buffer allocations
authorJohan Hovold <jhovold@gmail.com>
Tue, 13 Aug 2013 11:27:38 +0000 (13:27 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 14 Aug 2013 20:51:02 +0000 (13:51 -0700)
Make sure serial DMA-buffers are allocated separately from containing
structure to prevent potential memory corruption on non-cache-coherent
systems.

Signed-off-by: Johan Hovold <jhovold@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/usb/serial/quatech2.c

index d99743290fc13c2e81feec43c8bcc5623b4c7c11..79c9b2be2edbd42de0161006140bca843abe7fff 100644 (file)
@@ -62,6 +62,7 @@
 #define  MAX_BAUD_RATE              921600
 #define  DEFAULT_BAUD_RATE          9600
 
+#define QT2_READ_BUFFER_SIZE    512  /* size of read buffer */
 #define QT2_WRITE_BUFFER_SIZE   512  /* size of write buffer */
 #define QT2_WRITE_CONTROL_SIZE  5    /* control bytes used for a write */
 
@@ -112,7 +113,7 @@ struct qt2_serial_private {
        unsigned char current_port;  /* current port for incoming data */
 
        struct urb      *read_urb;   /* shared among all ports */
-       char            read_buffer[512];
+       char            *read_buffer;
 };
 
 struct qt2_port_private {
@@ -142,6 +143,7 @@ static void qt2_release(struct usb_serial *serial)
        serial_priv = usb_get_serial_data(serial);
 
        usb_free_urb(serial_priv->read_urb);
+       kfree(serial_priv->read_buffer);
        kfree(serial_priv);
 }
 
@@ -683,7 +685,7 @@ static int qt2_setup_urbs(struct usb_serial *serial)
                          usb_rcvbulkpipe(serial->dev,
                                          port0->bulk_in_endpointAddress),
                          serial_priv->read_buffer,
-                         sizeof(serial_priv->read_buffer),
+                         QT2_READ_BUFFER_SIZE,
                          qt2_read_bulk_callback, serial);
 
        status = usb_submit_urb(serial_priv->read_urb, GFP_KERNEL);
@@ -718,6 +720,12 @@ static int qt2_attach(struct usb_serial *serial)
                return -ENOMEM;
        }
 
+       serial_priv->read_buffer = kmalloc(QT2_READ_BUFFER_SIZE, GFP_KERNEL);
+       if (!serial_priv->read_buffer) {
+               status = -ENOMEM;
+               goto err_buf;
+       }
+
        usb_set_serial_data(serial, serial_priv);
 
        status = qt2_setup_urbs(serial);
@@ -727,6 +735,8 @@ static int qt2_attach(struct usb_serial *serial)
        return 0;
 
 attach_failed:
+       kfree(serial_priv->read_buffer);
+err_buf:
        kfree(serial_priv);
        return status;
 }