]> git.hungrycats.org Git - linux/commitdiff
cdrom: Fix info leak/OOB read in cdrom_ioctl_drive_status
authorScott Bauer <scott.bauer@intel.com>
Thu, 26 Apr 2018 17:51:08 +0000 (11:51 -0600)
committerBen Hutchings <ben@decadent.org.uk>
Tue, 25 Sep 2018 22:47:31 +0000 (23:47 +0100)
commit 8f3fafc9c2f0ece10832c25f7ffcb07c97a32ad4 upstream.

Like d88b6d04: "cdrom: information leak in cdrom_ioctl_media_changed()"

There is another cast from unsigned long to int which causes
a bounds check to fail with specially crafted input. The value is
then used as an index in the slot array in cdrom_slot_status().

Signed-off-by: Scott Bauer <scott.bauer@intel.com>
Signed-off-by: Scott Bauer <sbauer@plzdonthack.me>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Signed-off-by: Ben Hutchings <ben@decadent.org.uk>
drivers/cdrom/cdrom.c

index aac259d6e2485ffafab1fddd0d1405620ce5d57d..c61de6df44b023d9030f6af4aedd03b42132ba66 100644 (file)
@@ -2528,7 +2528,7 @@ static int cdrom_ioctl_drive_status(struct cdrom_device_info *cdi,
        if (!CDROM_CAN(CDC_SELECT_DISC) ||
            (arg == CDSL_CURRENT || arg == CDSL_NONE))
                return cdi->ops->drive_status(cdi, CDSL_CURRENT);
-       if (((int)arg >= cdi->capacity))
+       if (arg >= cdi->capacity)
                return -EINVAL;
        return cdrom_slot_status(cdi, arg);
 }