agp: fix arbitrary kernel memory writes
authorVasiliy Kulikov <segoon@openwall.com>
Thu, 14 Apr 2011 16:55:16 +0000 (20:55 +0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 2 May 2011 16:19:47 +0000 (09:19 -0700)
commit0b7c6323a28f3fde67a26bc6b2a889d3f23b12c3
treec1e0298db6917791d769c2cf72d7a89f3f900321
parentf0578c398d86a9d69ef59765e55b9b56cbafb93e
agp: fix arbitrary kernel memory writes

commit 194b3da873fd334ef183806db751473512af29ce upstream.

pg_start is copied from userspace on AGPIOC_BIND and AGPIOC_UNBIND ioctl
cmds of agp_ioctl() and passed to agpioc_bind_wrap().  As said in the
comment, (pg_start + mem->page_count) may wrap in case of AGPIOC_BIND,
and it is not checked at all in case of AGPIOC_UNBIND.  As a result, user
with sufficient privileges (usually "video" group) may generate either
local DoS or privilege escalation.

Signed-off-by: Vasiliy Kulikov <segoon@openwall.com>
Signed-off-by: Dave Airlie <airlied@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/char/agp/generic.c