From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:40611) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TdjT3-0001HI-Dm for qemu-devel@nongnu.org; Wed, 28 Nov 2012 10:22:35 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TdjSt-0000qf-Mp for qemu-devel@nongnu.org; Wed, 28 Nov 2012 10:22:29 -0500 Received: from mail-pa0-f45.google.com ([209.85.220.45]:54940) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TdjSt-0000qB-HV for qemu-devel@nongnu.org; Wed, 28 Nov 2012 10:22:19 -0500 Received: by mail-pa0-f45.google.com with SMTP id bg2so6911923pad.4 for ; Wed, 28 Nov 2012 07:22:19 -0800 (PST) Sender: Paolo Bonzini From: Paolo Bonzini Date: Wed, 28 Nov 2012 16:21:49 +0100 Message-Id: <1354116110-28651-5-git-send-email-pbonzini@redhat.com> In-Reply-To: <1354116110-28651-1-git-send-email-pbonzini@redhat.com> References: <1354116110-28651-1-git-send-email-pbonzini@redhat.com> Subject: [Qemu-devel] [PATCH 4/5] virtio-scsi: Fix some endian bugs with virtio-scsi List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: aliguori@us.ibm.com, Paul 'Rusty' Russell , David Gibson From: David Gibson The virtio-scsi specification does not specify the correct endianness for fields in the request structure. It's therefore best to assume that it is "guest native" endian since that's the (stupid and poorly defined) norm in virtio. However, the qemu device for virtio-scsi has no byteswaps at all, and so will break if the guest has different endianness from the host. This patch fixes it by adding tswap() calls for the sense_len and resid fields in the request structure. In theory status_qualifier needs swaps as well, but that field is never actually touched. The tag field is a uint64_t, but since its value is completely arbitrary, it might as well be uint8_t[8] and so it does not need swapping. Cc: Paolo Bonzini Cc: Paul 'Rusty' Russell Signed-off-by: David Gibson Signed-off-by: Paolo Bonzini --- hw/virtio-scsi.c | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/hw/virtio-scsi.c b/hw/virtio-scsi.c index 7d546f6..924fc69 100644 --- a/hw/virtio-scsi.c +++ b/hw/virtio-scsi.c @@ -424,15 +424,17 @@ static void virtio_scsi_command_complete(SCSIRequest *r, uint32_t status, size_t resid) { VirtIOSCSIReq *req = r->hba_private; + uint32_t sense_len; req->resp.cmd->response = VIRTIO_SCSI_S_OK; req->resp.cmd->status = status; if (req->resp.cmd->status == GOOD) { - req->resp.cmd->resid = resid; + req->resp.cmd->resid = tswap32(resid); } else { req->resp.cmd->resid = 0; - req->resp.cmd->sense_len = - scsi_req_get_sense(r, req->resp.cmd->sense, VIRTIO_SCSI_SENSE_SIZE); + sense_len = scsi_req_get_sense(r, req->resp.cmd->sense, + VIRTIO_SCSI_SENSE_SIZE); + req->resp.cmd->sense_len = tswap32(sense_len); } virtio_scsi_complete_req(req); } -- 1.8.0