]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
drm: crtc: integer overflow in drm_property_create_blob()
authorDan Carpenter <dan.carpenter@oracle.com>
Thu, 29 Oct 2015 13:37:54 +0000 (16:37 +0300)
committerDave Airlie <airlied@gmail.com>
Sat, 31 Oct 2015 00:00:05 +0000 (10:00 +1000)
The size here comes from the user via the ioctl, it is a number between
1-u32max so the addition here could overflow on 32 bit systems.

Fixes: f453ba046074 ('DRM: add mode setting support')
Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com>
Reviewed-by: Daniel Stone <daniels@collabora.com>
Cc: stable@kernel.org # v4.2
Signed-off-by: Dave Airlie <airlied@gmail.com>
drivers/gpu/drm/drm_crtc.c

index 33d877c65ced6a3c138af9ab47c824038410be0b..c205f13f93883b910ae47203c55c39521b3f7872 100644 (file)
@@ -4105,7 +4105,7 @@ drm_property_create_blob(struct drm_device *dev, size_t length,
        struct drm_property_blob *blob;
        int ret;
 
-       if (!length)
+       if (!length || length > ULONG_MAX - sizeof(struct drm_property_blob))
                return ERR_PTR(-EINVAL);
 
        blob = kzalloc(sizeof(struct drm_property_blob)+length, GFP_KERNEL);