cdrom: information leak in cdrom_ioctl_media_changed()
authorDan Carpenter <[email protected]>
Wed, 18 Apr 2018 09:51:31 +0000 (12:51 +0300)
committerJens Axboe <[email protected]>
Wed, 18 Apr 2018 14:21:32 +0000 (08:21 -0600)
commit9de4ee40547fd315d4a0ed1dd15a2fa3559ad707
treefaa7e99e952977ce648ecf83f27821e456823e53
parent72961c4e6082be79825265d9193272b8a1634dec
cdrom: information leak in cdrom_ioctl_media_changed()

This cast is wrong.  "cdi->capacity" is an int and "arg" is an unsigned
long.  The way the check is written now, if one of the high 32 bits is
set then we could read outside the info->slots[] array.

This bug is pretty old and it predates git.

Reviewed-by: Christoph Hellwig <[email protected]>
Cc: [email protected]
Signed-off-by: Dan Carpenter <[email protected]>
Signed-off-by: Jens Axboe <[email protected]>
drivers/cdrom/cdrom.c