From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([140.186.70.92]:57911) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1RpNzv-00022E-63 for qemu-devel@nongnu.org; Mon, 23 Jan 2012 12:48:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1RpNzu-0004sx-6a for qemu-devel@nongnu.org; Mon, 23 Jan 2012 12:48:03 -0500 Sender: Paolo Bonzini Message-ID: <4F1D9D4A.3000104@redhat.com> Date: Mon, 23 Jan 2012 18:47:54 +0100 From: Paolo Bonzini MIME-Version: 1.0 References: <20120123171525.GM32632@akamai.com> In-Reply-To: <20120123171525.GM32632@akamai.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: [Qemu-devel] [PATCH] scsi: restrict buffer length to req->cmd.xfer for responses to INQUIRY commands. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: thigdon@akamai.com Cc: qemu-trivial , Kevin Wolf , qemu-devel , Paul Brook On 01/23/2012 06:15 PM, Thomas Higdon wrote: > This prevents the emulated SCSI device from trying to DMA more bytes to the > initiator than are expected. Without this, the SCRIPTS code in the emulated LSI > device eventually raises a DMA interrupt for a data overrun when an INQUIRY > command whose buflen exceeds req->cmd.xfer is processed. It's the > responsibility of the client to provide a request buffer and allocation > length that are large enough for the result of the command. > > I'm no expert on SCSI (or qemu), but this appears to be more correct behavior > than before, and makes my SCSI INQUIRY commands more successful. Yes, this is correct. SCSI says "The device server shall terminate transfers to the Data-In Buffer when the number of bytes or blocks specified by the ALLOCATION LENGTH field have been transferred or when all available data have been transferred, whichever is less". The same is already done for example for MODE SENSE commands. Can you please also do the same REPORT LUNS and INQUIRY in hw/scsi-bus.c? Thanks, Paolo