aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/scsi
diff options
context:
space:
mode:
authorAlan Stern <stern@rowland.harvard.edu>2013-09-06 11:49:51 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-09-26 20:18:01 -0400
commit13915e203f991e77eb5a52bcd4c61e5f155e3bbc (patch)
tree83975360e6a2ef273787c002282cb3a483a6607d /drivers/scsi
parente7d63334e76b3cbb0ef599fef1643701fdb28aad (diff)
SCSI: sd: Fix potential out-of-bounds access
commit 984f1733fcee3fbc78d47e26c5096921c5d9946a upstream. This patch fixes an out-of-bounds error in sd_read_cache_type(), found by Google's AddressSanitizer tool. When the loop ends, we know that "offset" lies beyond the end of the data in the buffer, so no Caching mode page was found. In theory it may be present, but the buffer size is limited to 512 bytes. Signed-off-by: Alan Stern <stern@rowland.harvard.edu> Reported-by: Dmitry Vyukov <dvyukov@google.com> Signed-off-by: James Bottomley <JBottomley@Parallels.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/scsi')
-rw-r--r--drivers/scsi/sd.c11
1 files changed, 3 insertions, 8 deletions
diff --git a/drivers/scsi/sd.c b/drivers/scsi/sd.c
index 610417ec45af..c39863441337 100644
--- a/drivers/scsi/sd.c
+++ b/drivers/scsi/sd.c
@@ -2409,14 +2409,9 @@ sd_read_cache_type(struct scsi_disk *sdkp, unsigned char *buffer)
2409 } 2409 }
2410 } 2410 }
2411 2411
2412 if (modepage == 0x3F) { 2412 sd_printk(KERN_ERR, sdkp, "No Caching mode page found\n");
2413 sd_printk(KERN_ERR, sdkp, "No Caching mode page " 2413 goto defaults;
2414 "present\n"); 2414
2415 goto defaults;
2416 } else if ((buffer[offset] & 0x3f) != modepage) {
2417 sd_printk(KERN_ERR, sdkp, "Got wrong page\n");
2418 goto defaults;
2419 }
2420 Page_found: 2415 Page_found:
2421 if (modepage == 8) { 2416 if (modepage == 8) {
2422 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0); 2417 sdkp->WCE = ((buffer[offset + 2] & 0x04) != 0);