Crash on WRITE SAME

From: Mikulas Patocka
Date: Wed Jul 02 2014 - 14:05:54 EST


Hi Sagi

Your commit d77e65350f2d82dfa0557707d505711f5a43c8fd causes crash on SCSI
WRITE SAME command (it can be triggered by issuing the BLKZEROOUT ioctl).
The crash happens in iscsi_tcp_segment_done because sg_next returns NULL.

Before that commit, there was this code in iscsi_prep_scsi_cmd_pdu:
unsigned out_len = scsi_out(sc)->length;
after the commit, there is this:
transfer_length = scsi_transfer_length(sc);
... scsi_transfer_length(struct scsi_cmnd *scmd) returns
blk_rq_bytes(scmd->request);

The problem is this: suppose that we have WRITE_SAME command that writes
two 512-byte sectors. blk_rq_bytes(scmd->request) returns 1024 (because
1024 bytes are written to the disk), but scsi_out(sc)->length contains the
value 512 (because only 512 bytes are transferred as data for the SCSI
command).

Your patch changes that from 512 to 1024 and it causes the crash in
iscsi_tcp_segment_done due to mismatching size.



I'm not exactly sure how to fix this bug in order to not break something
else.

I'd like to know what was your intention for the function
scsi_transfer_length? Is it supposed to return the size of data
transferred on the SCSI bus? What should it return for bidirectional
commands?

scsi_transfer_length tries to add 8 for each transferred sector depending
on prot_op. What should it do with commands that transfer only part of a
sector? (for example the UNMAP command only transfers 24 bytes of data).
Should it add 8 for a partial sector tranferred or not?

Mikulas
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/