diff mbox

[CVE-2017-7294,Yakkety] drm/vmwgfx: fix integer overflow in vmw_surface_define_ioctl()

Message ID 1494848395-16587-1-git-send-email-po-hsu.lin@canonical.com
State New
Headers show

Commit Message

Po-Hsu Lin May 15, 2017, 11:39 a.m. UTC
From: Li Qiang <liq3ea@gmail.com>

In vmw_surface_define_ioctl(), the 'num_sizes' is the sum of the
'req->mip_levels' array. This array can be assigned any value from
the user space. As both the 'num_sizes' and the array is uint32_t,
it is easy to make 'num_sizes' overflow. The later 'mip_levels' is
used as the loop count. This can lead an oob write. Add the check of
'req->mip_levels' to avoid this.

Cc: <stable@vger.kernel.org>
Signed-off-by: Li Qiang <liqiang6-s@360.cn>
Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
(cherry picked from commit e7e11f99564222d82f0ce84bd521e57d78a6678)
CVE-2017-7294
Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
---
 drivers/gpu/drm/vmwgfx/vmwgfx_surface.c |    5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

Comments

Seth Forshee May 17, 2017, 5:50 p.m. UTC | #1
On Mon, May 15, 2017 at 07:39:53PM +0800, Po-Hsu Lin wrote:
> From: Li Qiang <liq3ea@gmail.com>
> 
> In vmw_surface_define_ioctl(), the 'num_sizes' is the sum of the
> 'req->mip_levels' array. This array can be assigned any value from
> the user space. As both the 'num_sizes' and the array is uint32_t,
> it is easy to make 'num_sizes' overflow. The later 'mip_levels' is
> used as the loop count. This can lead an oob write. Add the check of
> 'req->mip_levels' to avoid this.
> 
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Li Qiang <liqiang6-s@360.cn>
> Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
> (cherry picked from commit e7e11f99564222d82f0ce84bd521e57d78a6678)
> CVE-2017-7294
> Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>

For all 3:

Acked-by: Seth Forshee <seth.forshee@canonical.com>
Colin Ian King May 18, 2017, 9:52 a.m. UTC | #2
On 15/05/17 12:39, Po-Hsu Lin wrote:
> From: Li Qiang <liq3ea@gmail.com>
> 
> In vmw_surface_define_ioctl(), the 'num_sizes' is the sum of the
> 'req->mip_levels' array. This array can be assigned any value from
> the user space. As both the 'num_sizes' and the array is uint32_t,
> it is easy to make 'num_sizes' overflow. The later 'mip_levels' is
> used as the loop count. This can lead an oob write. Add the check of
> 'req->mip_levels' to avoid this.
> 
> Cc: <stable@vger.kernel.org>
> Signed-off-by: Li Qiang <liqiang6-s@360.cn>
> Reviewed-by: Thomas Hellstrom <thellstrom@vmware.com>
> (cherry picked from commit e7e11f99564222d82f0ce84bd521e57d78a6678)
> CVE-2017-7294
> Signed-off-by: Po-Hsu Lin <po-hsu.lin@canonical.com>
> ---
>  drivers/gpu/drm/vmwgfx/vmwgfx_surface.c |    5 ++++-
>  1 file changed, 4 insertions(+), 1 deletion(-)
> 
> diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
> index c2a721a..aa0108d 100644
> --- a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
> +++ b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
> @@ -715,8 +715,11 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
>  			128;
>  
>  	num_sizes = 0;
> -	for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i)
> +	for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i) {
> +		if (req->mip_levels[i] > DRM_VMW_MAX_MIP_LEVELS)
> +			return -EINVAL;
>  		num_sizes += req->mip_levels[i];
> +	}
>  
>  	if (num_sizes > DRM_VMW_MAX_SURFACE_FACES *
>  	    DRM_VMW_MAX_MIP_LEVELS)
> 

Clean upstream cherry pick, looks good to me. For all three patches:

Acked-by: Colin Ian King <colin.king@canonical.com>
Thadeu Lima de Souza Cascardo May 30, 2017, 1:30 p.m. UTC | #3
Applied to trusty, vivid and yakkety master-next branches.

Thanks.
Cascardo.
diff mbox

Patch

diff --git a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
index c2a721a..aa0108d 100644
--- a/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
+++ b/drivers/gpu/drm/vmwgfx/vmwgfx_surface.c
@@ -715,8 +715,11 @@  int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
 			128;
 
 	num_sizes = 0;
-	for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i)
+	for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i) {
+		if (req->mip_levels[i] > DRM_VMW_MAX_MIP_LEVELS)
+			return -EINVAL;
 		num_sizes += req->mip_levels[i];
+	}
 
 	if (num_sizes > DRM_VMW_MAX_SURFACE_FACES *
 	    DRM_VMW_MAX_MIP_LEVELS)