block: ioctl: fix information leak to userland
authorVasiliy Kulikov <segooon@gmail.com>
Mon, 8 Nov 2010 13:42:40 +0000 (14:42 +0100)
committerJens Axboe <jaxboe@fusionio.com>
Wed, 10 Nov 2010 13:40:53 +0000 (14:40 +0100)
Structure hd_geometry is copied to userland with 4 padding bytes
between cylinders and start fields uninitialized on 64-bit platforms.
It leads to leaking of contents of kernel stack memory.

Currently there is no memset() in real implementations of getgeo()
in drivers/block/, so it makes sense to have memset() in blkdev_ioctl().

Signed-off-by: Vasiliy Kulikov <segooon@gmail.com>
Signed-off-by: Jens Axboe <jaxboe@fusionio.com>
block/ioctl.c

diff --cc block/ioctl.c
Simple merge