]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
cdrom: fix stack out-of-bounds read in CDROMVOLCTRL
authorXu Rao <raoxu@uniontech.com>
Mon, 20 Jul 2026 19:44:21 +0000 (20:44 +0100)
committerJens Axboe <axboe@kernel.dk>
Tue, 21 Jul 2026 03:54:52 +0000 (21:54 -0600)
mmc_ioctl_cdrom_volume() first reads the audio control mode page into a
32-byte stack buffer with cgc->buflen set to 24.  If the device reports a
block descriptor, the function increases cgc->buflen to include that
descriptor and reads the page again.

For CDROMVOLCTRL, the function then builds a MODE SELECT parameter list
by moving cgc->buffer forward by offset - 8 bytes.  This drops the block
descriptor from the outgoing payload and leaves a new 8-byte mode
parameter header in front of the audio control page.  However, cgc->buflen
is left unchanged.

With a standard 8-byte block descriptor, cgc->buffer points at buffer + 8
but cgc->buflen remains 32.  cdrom_mode_select() therefore asks the low
level packet path to write 32 bytes from that adjusted pointer, reading 8
bytes past the end of the 32-byte stack buffer.

This is not hit by CDROMVOLREAD, and CDROMVOLCTRL only triggers it on
drives that return a non-zero block descriptor length, which helps explain
why it has gone unnoticed.  The overread is also sent to the device as
extra MODE SELECT payload, so it may not produce an obvious local failure.

Reduce cgc->buflen by the same amount as the buffer pointer adjustment so
the MODE SELECT transfer covers only the intended parameter list.

Fixes: 1da177e4c3f4 ("Linux-2.6.12-rc2")
Cc: stable@vger.kernel.org
Signed-off-by: Xu Rao <raoxu@uniontech.com>
Signed-off-by: Phillip Potter <phil@philpotter.co.uk>
Link: https://patch.msgid.link/20260720194421.1497-2-phil@philpotter.co.uk
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/cdrom/cdrom.c

index 62934cf4b10de8deede538cf08ad93215cb99454..4f1fd389260f53a8f34c9e1f621e0dd23e31ed72 100644 (file)
@@ -3187,6 +3187,7 @@ static noinline int mmc_ioctl_cdrom_volume(struct cdrom_device_info *cdi,
 
        /* set volume */
        cgc->buffer = buffer + offset - 8;
+       cgc->buflen -= offset - 8;
        memset(cgc->buffer, 0, 8);
        return cdrom_mode_select(cdi, cgc);
 }