]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
Staging: bcm: Add min/max restrictions for IOCTL_BCM_REGISTER_READ_PRIVATE
authorKevin McKinney <klmckinney1@gmail.com>
Tue, 27 Sep 2011 02:03:59 +0000 (22:03 -0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 30 Sep 2011 00:34:51 +0000 (17:34 -0700)
This patch fixes two issues within bcm/Bcmchar.c. The
first condition in the or statement checks if variable
IoBuffer.OutputLength, defined from user space, is
greater than the maximum value allowed for an
unsigned short. IoBuffer.OutputLength is then used
in a kmalloc call to return a pointer to memory. If
this size is greater than an unsigned short, it
becomes useless. The second condition in the or statement
checks if the same variable, IoBuffer.OutputLength is
equal to zero before invoking the kmalloc call. In
this case, if a zero size is sent to kmalloc, a valid
pointer to memory is returned instead of the expected NULL.

Signed-off-by: Kevin McKinney <klmckinney1@gmail.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/staging/bcm/Bcmchar.c

index 4c433538397780f66a2343dea9afa0918987177b..867c65c4375dd3bfed6195c2731991c295f09271 100644 (file)
@@ -216,7 +216,11 @@ static long bcm_char_ioctl(struct file *filp, UINT cmd, ULONG arg)
                if (copy_from_user(&sRdmBuffer, IoBuffer.InputBuffer, IoBuffer.InputLength))
                        return -EFAULT;
 
-               /* FIXME: need to restrict BuffLen */
+               if (IoBuffer.OutputLength > USHRT_MAX ||
+                       IoBuffer.OutputLength == 0) {
+                       return -EINVAL;
+               }
+
                Bufflen = IoBuffer.OutputLength + (4 - IoBuffer.OutputLength%4)%4;
                temp_buff = kmalloc(Bufflen, GFP_KERNEL);
                if (!temp_buff)