Skip to content

Commit e7e11f9

Browse files
Li Qiangthomashvmw
authored andcommitted
drm/vmwgfx: fix integer overflow in vmw_surface_define_ioctl()
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: <[email protected]> Signed-off-by: Li Qiang <[email protected]> Reviewed-by: Thomas Hellstrom <[email protected]>
1 parent 53e1679 commit e7e11f9

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

drivers/gpu/drm/vmwgfx/vmwgfx_surface.c

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -713,8 +713,11 @@ int vmw_surface_define_ioctl(struct drm_device *dev, void *data,
713713
128;
714714

715715
num_sizes = 0;
716-
for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i)
716+
for (i = 0; i < DRM_VMW_MAX_SURFACE_FACES; ++i) {
717+
if (req->mip_levels[i] > DRM_VMW_MAX_MIP_LEVELS)
718+
return -EINVAL;
717719
num_sizes += req->mip_levels[i];
720+
}
718721

719722
if (num_sizes > DRM_VMW_MAX_SURFACE_FACES * DRM_VMW_MAX_MIP_LEVELS ||
720723
num_sizes == 0)

0 commit comments

Comments
 (0)