lkml.org 
[lkml]   [2013]   [Jul]   [3]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    Date
    From
    Subject[008/141] USB: cxacru: potential underflow in cxacru_cm_get_array()
    3.6.11.6 stable review patch.
    If anyone has any objections, please let me know.

    ------------------

    From: Dan Carpenter <dan.carpenter@oracle.com>

    [ Upstream commit 2a0ebf80aa95cc758d4725f74a7016e992606a39 ]

    The value of "offd" comes off the instance->rcv_buf[] and we used it as
    the offset into an array. The problem is that we check the upper bound
    but not for negative values.

    Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
    Cc: stable <stable@vger.kernel.org>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
    Signed-off-by: Steven Rostedt <rostedt@goodmis.org>
    ---
    drivers/usb/atm/cxacru.c | 3 ++-
    1 file changed, 2 insertions(+), 1 deletion(-)

    diff --git a/drivers/usb/atm/cxacru.c b/drivers/usb/atm/cxacru.c
    index b7eb86a..8a7eb77 100644
    --- a/drivers/usb/atm/cxacru.c
    +++ b/drivers/usb/atm/cxacru.c
    @@ -686,7 +686,8 @@ static int cxacru_cm_get_array(struct cxacru_data *instance, enum cxacru_cm_requ
    {
    int ret, len;
    __le32 *buf;
    - int offb, offd;
    + int offb;
    + unsigned int offd;
    const int stride = CMD_PACKET_SIZE / (4 * 2) - 1;
    int buflen = ((size - 1) / stride + 1 + size * 2) * 4;

    --
    1.7.10.4



    \
     
     \ /
      Last update: 2013-07-03 22:01    [W:4.256 / U:0.048 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site