OSDN Git Service

drm/i915: fix integer overflow in i915_gem_execbuffer2()
authorXi Wang <xi.wang@gmail.com>
Mon, 23 Apr 2012 08:06:41 +0000 (04:06 -0400)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 7 May 2012 15:56:33 +0000 (08:56 -0700)
commitfb247af4ccc4b082dbba85d90a42d31fd48affb2
treee8332af19731a7a41c93fc84008c1187802aa463
parent8c9def922a843512c403d348dd033aa301e3eefe
drm/i915: fix integer overflow in i915_gem_execbuffer2()

commit ed8cd3b2cd61004cab85380c52b1817aca1ca49b upstream.

On 32-bit systems, a large args->buffer_count from userspace via ioctl
may overflow the allocation size, leading to out-of-bounds access.

This vulnerability was introduced in commit 8408c282 ("drm/i915:
First try a normal large kmalloc for the temporary exec buffers").

Signed-off-by: Xi Wang <xi.wang@gmail.com>
Reviewed-by: Chris Wilson <chris@chris-wilson.co.uk>
Signed-off-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/gpu/drm/i915/i915_gem_execbuffer.c