lkml.org 
[lkml]   [2017]   [Jun]   [7]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 3.10 084/250] USB: serial: ch341: fix control-message error handling
    Date
    From: Johan Hovold <johan@kernel.org>

    commit 2d5a9c72d0c4ac73cf97f4b7814ed6c44b1e49ae upstream.

    A short control transfer would currently fail to be detected, something
    which could lead to stale buffer data being used as valid input.

    Check for short transfers, and make sure to log any transfer errors.

    Note that this also avoids leaking heap data to user space (TIOCMGET)
    and the remote device (break control).

    Fixes: 6ce76104781a ("USB: Driver for CH341 USB-serial adaptor")
    Signed-off-by: Johan Hovold <johan@kernel.org>
    Signed-off-by: Willy Tarreau <w@1wt.eu>
    ---
    drivers/usb/serial/ch341.c | 34 ++++++++++++++++++++++------------
    1 file changed, 22 insertions(+), 12 deletions(-)

    diff --git a/drivers/usb/serial/ch341.c b/drivers/usb/serial/ch341.c
    index 52ac5fd..db37b16 100644
    --- a/drivers/usb/serial/ch341.c
    +++ b/drivers/usb/serial/ch341.c
    @@ -97,6 +97,8 @@ static int ch341_control_out(struct usb_device *dev, u8 request,
    r = usb_control_msg(dev, usb_sndctrlpipe(dev, 0), request,
    USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_OUT,
    value, index, NULL, 0, DEFAULT_TIMEOUT);
    + if (r < 0)
    + dev_err(&dev->dev, "failed to send control message: %d\n", r);

    return r;
    }
    @@ -114,7 +116,20 @@ static int ch341_control_in(struct usb_device *dev,
    r = usb_control_msg(dev, usb_rcvctrlpipe(dev, 0), request,
    USB_TYPE_VENDOR | USB_RECIP_DEVICE | USB_DIR_IN,
    value, index, buf, bufsize, DEFAULT_TIMEOUT);
    - return r;
    + if (r < bufsize) {
    + if (r >= 0) {
    + dev_err(&dev->dev,
    + "short control message received (%d < %u)\n",
    + r, bufsize);
    + r = -EIO;
    + }
    +
    + dev_err(&dev->dev, "failed to receive control message: %d\n",
    + r);
    + return r;
    + }
    +
    + return 0;
    }

    static int ch341_set_baudrate(struct usb_device *dev,
    @@ -156,9 +171,9 @@ static int ch341_set_handshake(struct usb_device *dev, u8 control)

    static int ch341_get_status(struct usb_device *dev, struct ch341_private *priv)
    {
    + const unsigned int size = 2;
    char *buffer;
    int r;
    - const unsigned size = 8;
    unsigned long flags;

    buffer = kmalloc(size, GFP_KERNEL);
    @@ -169,15 +184,10 @@ static int ch341_get_status(struct usb_device *dev, struct ch341_private *priv)
    if (r < 0)
    goto out;

    - /* setup the private status if available */
    - if (r == 2) {
    - r = 0;
    - spin_lock_irqsave(&priv->lock, flags);
    - priv->line_status = (~(*buffer)) & CH341_BITS_MODEM_STAT;
    - priv->multi_status_change = 0;
    - spin_unlock_irqrestore(&priv->lock, flags);
    - } else
    - r = -EPROTO;
    + spin_lock_irqsave(&priv->lock, flags);
    + priv->line_status = (~(*buffer)) & CH341_BITS_MODEM_STAT;
    + priv->multi_status_change = 0;
    + spin_unlock_irqrestore(&priv->lock, flags);

    out: kfree(buffer);
    return r;
    @@ -187,9 +197,9 @@ out: kfree(buffer);

    static int ch341_configure(struct usb_device *dev, struct ch341_private *priv)
    {
    + const unsigned int size = 2;
    char *buffer;
    int r;
    - const unsigned size = 8;

    buffer = kmalloc(size, GFP_KERNEL);
    if (!buffer)
    --
    2.8.0.rc2.1.gbe9624a
    \
     
     \ /
      Last update: 2017-06-12 01:14    [W:2.617 / U:0.020 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site