USB: devio: Properly do access_ok() checks
authorMichael Buesch <mb@bu3sch.de>
Wed, 29 Jul 2009 09:39:03 +0000 (11:39 +0200)
committerGreg Kroah-Hartman <gregkh@suse.de>
Fri, 7 Aug 2009 23:05:12 +0000 (16:05 -0700)
commit18753ebc8a98efe0e8ff6167afb31cef220c8e50
tree7c2d95b3758acf4cf3b42aec04d284ae67de1647
parent49276560c9004fce24c42e3c0ad75f34d956fc63
USB: devio: Properly do access_ok() checks

access_ok() checks must be done on every part of the userspace structure
that is accessed. If access_ok() on one part of the struct succeeded, it
does not imply it will succeed on other parts of the struct. (Does
depend on the architecture implementation of access_ok()).

This changes the __get_user() users to first check access_ok() on the
data structure.

Signed-off-by: Michael Buesch <mb@bu3sch.de>
Cc: stable <stable@kernel.org>
Cc: Pete Zaitcev <zaitcev@redhat.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
drivers/usb/core/devio.c