aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDan Carpenter <dan.carpenter@oracle.com>2015-02-05 02:37:33 -0500
committerNicholas Bellinger <nab@linux-iscsi.org>2015-02-06 01:44:12 -0500
commit59c816c1f24df0204e01851431d3bab3eb76719c (patch)
tree34aaf6575d4b894b4025d535818ae1437bb08401
parent1a1ff8256af679c8a69c438d27644383ddcfcb3b (diff)
vhost/scsi: potential memory corruption
This code in vhost_scsi_make_tpg() is confusing because we limit "tpgt" to UINT_MAX but the data type of "tpg->tport_tpgt" and that is a u16. I looked at the context and it turns out that in vhost_scsi_set_endpoint(), "tpg->tport_tpgt" is used as an offset into the vs_tpg[] array which has VHOST_SCSI_MAX_TARGET (256) elements so anything higher than 255 then it is invalid. I have made that the limit now. In vhost_scsi_send_evt() we mask away values higher than 255, but now that the limit has changed, we don't need the mask. Signed-off-by: Dan Carpenter <dan.carpenter@oracle.com> Signed-off-by: Nicholas Bellinger <nab@linux-iscsi.org>
-rw-r--r--drivers/vhost/scsi.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/drivers/vhost/scsi.c b/drivers/vhost/scsi.c
index daf10b7fa311..ab4811f749f5 100644
--- a/drivers/vhost/scsi.c
+++ b/drivers/vhost/scsi.c
@@ -1249,7 +1249,7 @@ vhost_scsi_send_evt(struct vhost_scsi *vs,
1249 * lun[4-7] need to be zero according to virtio-scsi spec. 1249 * lun[4-7] need to be zero according to virtio-scsi spec.
1250 */ 1250 */
1251 evt->event.lun[0] = 0x01; 1251 evt->event.lun[0] = 0x01;
1252 evt->event.lun[1] = tpg->tport_tpgt & 0xFF; 1252 evt->event.lun[1] = tpg->tport_tpgt;
1253 if (lun->unpacked_lun >= 256) 1253 if (lun->unpacked_lun >= 256)
1254 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ; 1254 evt->event.lun[2] = lun->unpacked_lun >> 8 | 0x40 ;
1255 evt->event.lun[3] = lun->unpacked_lun & 0xFF; 1255 evt->event.lun[3] = lun->unpacked_lun & 0xFF;
@@ -2120,12 +2120,12 @@ vhost_scsi_make_tpg(struct se_wwn *wwn,
2120 struct vhost_scsi_tport, tport_wwn); 2120 struct vhost_scsi_tport, tport_wwn);
2121 2121
2122 struct vhost_scsi_tpg *tpg; 2122 struct vhost_scsi_tpg *tpg;
2123 unsigned long tpgt; 2123 u16 tpgt;
2124 int ret; 2124 int ret;
2125 2125
2126 if (strstr(name, "tpgt_") != name) 2126 if (strstr(name, "tpgt_") != name)
2127 return ERR_PTR(-EINVAL); 2127 return ERR_PTR(-EINVAL);
2128 if (kstrtoul(name + 5, 10, &tpgt) || tpgt > UINT_MAX) 2128 if (kstrtou16(name + 5, 10, &tpgt) || tpgt >= VHOST_SCSI_MAX_TARGET)
2129 return ERR_PTR(-EINVAL); 2129 return ERR_PTR(-EINVAL);
2130 2130
2131 tpg = kzalloc(sizeof(struct vhost_scsi_tpg), GFP_KERNEL); 2131 tpg = kzalloc(sizeof(struct vhost_scsi_tpg), GFP_KERNEL);