public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH] Added special upper bound check for the logical block address in mmc_ioctl_cdrom_read_data()
@ 2026-02-22 16:41 Felix Busch
  2026-02-22 19:11 ` Phillip Potter
  0 siblings, 1 reply; 4+ messages in thread
From: Felix Busch @ 2026-02-22 16:41 UTC (permalink / raw)
  To: Phillip Potter; +Cc: linux-kernel, Felix Busch

Signed-off-by: Felix Busch <felixbusch470@gmail.com>
---
This patch contains an extra check on the comment 
for an upper bound check for the logical block address in the 
function mmc_ioctl_cdrom_read_data(). 

This web page: 
http://www.o3one.org/hwdocs/cdrom_formats/scsi_programming.htm 

states that:
"Logical adressing of CD-ROM information may use any logical
block length. When the specified logical block length is an
exact divisor or integral multiple of the selected number 
of bytes per CD-ROM sector, the device shall map (one to one)
the bytes transferred from CD-ROM sectors to the bytes of logical 
blocks. For instance, if 2048 bytes are transferred from each 
CD-ROM sector,.., and the logical block length is 512 bytes, then
each CD-ROM sector shall map to exactly four logical blocks."

If the number of sectors on the CD drive is a multiple of the block
size, then, as I understand, it should be possible to perform a 
simple check on the logical block address in this case.

If the logical block address (lba value) is greater than
 (logical_blocks-1) * blocksize, then it should not be possible 
to read the next block, because if the lba value is greater
than this value, then it might try to read a full next block that 
does not exist.

Please let me know what you think.
Thank you very much.
---
 drivers/cdrom/cdrom.c | 11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/drivers/cdrom/cdrom.c b/drivers/cdrom/cdrom.c
index 31ba1f8c1f78..0149813ef903 100644
--- a/drivers/cdrom/cdrom.c
+++ b/drivers/cdrom/cdrom.c
@@ -2927,6 +2927,7 @@ static noinline int mmc_ioctl_cdrom_read_data(struct cdrom_device_info *cdi,
 	struct scsi_sense_hdr sshdr;
 	struct cdrom_msf msf;
 	int blocksize = 0, format = 0, lba;
+	unsigned int cd_nr_sectors;
 	int ret;
 
 	switch (cmd) {
@@ -2945,9 +2946,19 @@ static noinline int mmc_ioctl_cdrom_read_data(struct cdrom_device_info *cdi,
 		return -EFAULT;
 	lba = msf_to_lba(msf.cdmsf_min0, msf.cdmsf_sec0, msf.cdmsf_frame0);
 	/* FIXME: we need upper bound checking, too!! */
+	/* Lower bound check for logical block address. */
 	if (lba < 0)
 		return -EINVAL;
 
+	cd_nr_sectors = cdi->disk->part0->bd_nr_sectors;
+	/* A special case upper bound check. */
+	if (cd_nr_sectors % blocksize == 0) {
+		unsigned int logical_blocks = cd_nr_sectors / blocksize;
+
+		if (lba > blocksize * (logical_blocks - 1))
+			return -EINVAL;
+	}
+
 	cgc->buffer = kzalloc(blocksize, GFP_KERNEL);
 	if (cgc->buffer == NULL)
 		return -ENOMEM;

---
base-commit: 05f7e89ab9731565d8a62e3b5d1ec206485eeb0b
change-id: 20260222-cdrom-additional-lba-check-2c88d18599d0

Best regards,
-- 
Felix Busch <felixbusch470@gmail.com>


^ permalink raw reply related	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2026-02-26 20:28 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-02-22 16:41 [PATCH] Added special upper bound check for the logical block address in mmc_ioctl_cdrom_read_data() Felix Busch
2026-02-22 19:11 ` Phillip Potter
2026-02-24 16:16   ` [PATCH v2 1/2] [PATCH] cdrom: extra upper bound check for logical block address Felix Busch
2026-02-26 20:28     ` Phillip Potter

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox