diff options
author | Kees Cook <keescook@chromium.org> | 2018-05-11 18:24:12 +1000 |
---|---|---|
committer | Kees Cook <keescook@chromium.org> | 2018-06-12 16:19:22 -0700 |
commit | 9f645bcc566a1e9f921bdae7528a01ced5bc3713 (patch) | |
tree | 6a89ba3f5af7cb4c8415a8dd2589146b3018bed7 | |
parent | 353748a359f1821ee934afc579cf04572406b420 (diff) | |
download | linux-stable-9f645bcc566a1e9f921bdae7528a01ced5bc3713.tar.gz linux-stable-9f645bcc566a1e9f921bdae7528a01ced5bc3713.tar.bz2 linux-stable-9f645bcc566a1e9f921bdae7528a01ced5bc3713.zip |
video: uvesafb: Fix integer overflow in allocation
cmap->len can get close to INT_MAX/2, allowing for an integer overflow in
allocation. This uses kmalloc_array() instead to catch the condition.
Reported-by: Dr Silvio Cesare of InfoSect <silvio.cesare@gmail.com>
Fixes: 8bdb3a2d7df48 ("uvesafb: the driver core")
Cc: stable@vger.kernel.org
Signed-off-by: Kees Cook <keescook@chromium.org>
-rw-r--r-- | drivers/video/fbdev/uvesafb.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/video/fbdev/uvesafb.c b/drivers/video/fbdev/uvesafb.c index 73676eb0244a..c592ca513115 100644 --- a/drivers/video/fbdev/uvesafb.c +++ b/drivers/video/fbdev/uvesafb.c @@ -1044,7 +1044,8 @@ static int uvesafb_setcmap(struct fb_cmap *cmap, struct fb_info *info) info->cmap.len || cmap->start < info->cmap.start) return -EINVAL; - entries = kmalloc(sizeof(*entries) * cmap->len, GFP_KERNEL); + entries = kmalloc_array(cmap->len, sizeof(*entries), + GFP_KERNEL); if (!entries) return -ENOMEM; |