summaryrefslogtreecommitdiff
path: root/scripts/basic/bin2c.c
diff options
context:
space:
mode:
authorWenwen Wang <wang6495@umn.edu>2018-05-08 16:50:28 +0300
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2018-07-03 12:27:12 +0300
commita61b352a7c23191108ae0c747a170f6bce5b154a (patch)
treebeda4ed0c4f3ff4c7e19ef2a449410aafe36505d /scripts/basic/bin2c.c
parentc91aad666676e5e5055a5427815a18f0d3fa6661 (diff)
downloadlinux-a61b352a7c23191108ae0c747a170f6bce5b154a.tar.xz
virt: vbox: Only copy_from_user the request-header once
commit bd23a7269834dc7c1f93e83535d16ebc44b75eba upstream. In vbg_misc_device_ioctl(), the header of the ioctl argument is copied from the userspace pointer 'arg' and saved to the kernel object 'hdr'. Then the 'version', 'size_in', and 'size_out' fields of 'hdr' are verified. Before this commit, after the checks a buffer for the entire request would be allocated and then all data including the verified header would be copied from the userspace 'arg' pointer again. Given that the 'arg' pointer resides in userspace, a malicious userspace process can race to change the data pointed to by 'arg' between the two copies. By doing so, the user can bypass the verifications on the ioctl argument. This commit fixes this by using the already checked copy of the header to fill the header part of the allocated buffer and only copying the remainder of the data from userspace. Signed-off-by: Wenwen Wang <wang6495@umn.edu> Reviewed-by: Hans de Goede <hdegoede@redhat.com> Cc: Justin Forbes <jmforbes@linuxtx.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'scripts/basic/bin2c.c')
0 files changed, 0 insertions, 0 deletions