]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
[media] v4l2-ctrls: fix integer overflow in try_set_ext_ctrls()
authorXi Wang <xi.wang@gmail.com>
Fri, 6 Apr 2012 12:32:37 +0000 (09:32 -0300)
committerMauro Carvalho Chehab <mchehab@redhat.com>
Wed, 18 Apr 2012 14:09:38 +0000 (11:09 -0300)
A large cs->count from userspace may overflow the allocation size,
leading to memory corruption.  try_set_ext_ctrls() can be reached
from subdev_do_ioctl() or __video_do_ioctl().

Use kmalloc_array() to avoid the overflow.

Signed-off-by: Xi Wang <xi.wang@gmail.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@redhat.com>
drivers/media/video/v4l2-ctrls.c

index bf62b105b49d3098fdc233a4912d54d65d0a81a8..1a71aa5fd4584df12331d7082da6422dd17154e4 100644 (file)
@@ -2259,7 +2259,8 @@ static int try_set_ext_ctrls(struct v4l2_fh *fh, struct v4l2_ctrl_handler *hdl,
                return class_check(hdl, cs->ctrl_class);
 
        if (cs->count > ARRAY_SIZE(helper)) {
-               helpers = kmalloc(sizeof(helper[0]) * cs->count, GFP_KERNEL);
+               helpers = kmalloc_array(cs->count, sizeof(helper[0]),
+                                       GFP_KERNEL);
                if (!helpers)
                        return -ENOMEM;
        }