iio: adis_buffer: Fix out-of-bounds memory access
authorLars-Peter Clausen <lars@metafoo.de>
Fri, 27 Nov 2015 13:55:56 +0000 (14:55 +0100)
committerSasha Levin <sasha.levin@oracle.com>
Tue, 12 Apr 2016 02:07:36 +0000 (22:07 -0400)
commit3e77cb858ce67861e142186e3b131c04ddbc6edd
tree3cccb60a7c45af0245d39d209918eefe4ff455e0
parentab88ce5feca4204ecf4e7ef6c6693ff67edc2169
iio: adis_buffer: Fix out-of-bounds memory access

[ Upstream commit d590faf9e8f8509a0a0aa79c38e87fcc6b913248 ]

The SPI tx and rx buffers are both supposed to be scan_bytes amount of
bytes large and a common allocation is used to allocate both buffers. This
puts the beginning of the tx buffer scan_bytes bytes after the rx buffer.
The initialization of the tx buffer pointer is done adding scan_bytes to
the beginning of the rx buffer, but since the rx buffer is of type __be16
this will actually add two times as much and the tx buffer ends up pointing
after the allocated buffer.

Fix this by using scan_count, which is scan_bytes / 2, instead of
scan_bytes when initializing the tx buffer pointer.

Fixes: aacff892cbd5 ("staging:iio:adis: Preallocate transfer message")
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
Cc: <Stable@vger.kernel.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
Signed-off-by: Sasha Levin <sasha.levin@oracle.com>
drivers/iio/imu/adis_buffer.c