agp: fix arbitrary kernel memory writes
commitff9d004f3b353c6033bba3f273430470ddce9a8b
authorVasiliy Kulikov <segoon@openwall.com>
Thu, 14 Apr 2011 16:55:16 +0000 (14 20:55 +0400)
committerGreg Kroah-Hartman <gregkh@suse.de>
Mon, 9 May 2011 23:04:41 +0000 (9 16:04 -0700)
tree082e7ba5b7f0d908ed56e8a3e3d5565c78326a57
parentf1b83f3837c5d746d6f176562bb6c0e566f1bc6a
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