From: Stefan Hajnoczi <stefanha@redhat.com>
To: Greg Kurz <groug@kaod.org>
Cc: qemu-devel@nongnu.org, Kevin Wolf <kwolf@redhat.com>,
"Michael S. Tsirkin" <mst@redhat.com>,
Jason Wang <jasowang@redhat.com>, Max Reitz <mreitz@redhat.com>,
"Aneesh Kumar K.V" <aneesh.kumar@linux.vnet.ibm.com>,
Cornelia Huck <cornelia.huck@de.ibm.com>,
Paolo Bonzini <pbonzini@redhat.com>
Subject: Re: [Qemu-devel] [PATCH v4 8/9] virtio-scsi: convert virtio_scsi_bad_req() to use virtio_error()
Date: Tue, 4 Oct 2016 16:59:57 +0100 [thread overview]
Message-ID: <20161004155957.GD28028@stefanha-x1.localdomain> (raw)
In-Reply-To: <147524842061.953.1383418396572489697.stgit@bahia>
[-- Attachment #1: Type: text/plain, Size: 2112 bytes --]
On Fri, Sep 30, 2016 at 05:13:40PM +0200, Greg Kurz wrote:
> The virtio_scsi_bad_req() function is called when a guest sends a
> request with missing or ill-sized headers. This generally happens
> when the virtio_scsi_parse_req() function returns an error.
>
> With this patch, virtio_scsi_bad_req() will mark the device as broken,
> detach the request from the virtqueue and free it, instead of forcing
> QEMU to exit.
>
> In nearly all locations where virtio_scsi_bad_req() is called, the only
> thing to do next is to return to the caller.
>
> The virtio_scsi_handle_cmd_req_prepare() function is an exception though.
>
> It is called in a loop by virtio_scsi_handle_cmd_vq() and passed requests
> freshly popped from a cmd virtqueue; virtio_scsi_handle_cmd_req_prepare()
> does some sanity checks on the request and returns a boolean flag to
> indicate whether the request should be queued or not. In the latter case,
> virtio_scsi_handle_cmd_req_prepare() has detected a non-fatal error and
> sent a response back to the guest.
>
> We have now a new condition to take into account: the device is broken
> and should stop all processing.
>
> The return value of virtio_scsi_handle_cmd_req_prepare() is hence changed
> to an int. A return value of zero means that the request should be queued.
> Other non-fatal error cases where the request shoudn't be queued return
> a negative errno (values are vaguely inspired by the error condition, but
> the only goal here is to discriminate the case we're interested in).
>
> And finally, if virtio_scsi_bad_req() was called, -EINVAL is returned. In
> this case, virtio_scsi_handle_cmd_vq() detaches and frees already queued
> requests, instead of submitting them.
>
> Signed-off-by: Greg Kurz <groug@kaod.org>
> ---
> v4: - fixed success return value in virtio_scsi_handle_cmd_req_prepare()
> - fixed typo in changelog
> ---
> hw/scsi/virtio-scsi.c | 46 ++++++++++++++++++++++++++++++++--------------
> 1 file changed, 32 insertions(+), 14 deletions(-)
Reviewed-by: Stefan Hajnoczi <stefanha@redhat.com>
[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 455 bytes --]
next prev parent reply other threads:[~2016-10-04 16:00 UTC|newest]
Thread overview: 12+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-09-30 15:12 [Qemu-devel] [PATCH v4 0/9] virtio: avoid inappropriate QEMU termination in device code Greg Kurz
2016-09-30 15:12 ` [Qemu-devel] [PATCH v4 1/9] virtio-9p: add parentheses to sizeof operator Greg Kurz
2016-09-30 15:12 ` [Qemu-devel] [PATCH v4 2/9] virtio-blk: make some functions static Greg Kurz
2016-09-30 15:12 ` [Qemu-devel] [PATCH v4 3/9] virtio-9p: handle handle_9p_output() error Greg Kurz
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 4/9] virtio-blk: handle virtio_blk_handle_request() errors Greg Kurz
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 5/9] virtio-net: handle virtio_net_handle_ctrl() error Greg Kurz
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 6/9] virtio-net: handle virtio_net_receive() errors Greg Kurz
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 7/9] virtio-net: handle virtio_net_flush_tx() errors Greg Kurz
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 8/9] virtio-scsi: convert virtio_scsi_bad_req() to use virtio_error() Greg Kurz
2016-10-04 15:59 ` Stefan Hajnoczi [this message]
2016-09-30 15:13 ` [Qemu-devel] [PATCH v4 9/9] virtio-scsi: handle virtio_scsi_set_config() error Greg Kurz
2016-09-30 15:51 ` [Qemu-devel] [PATCH v4 0/9] virtio: avoid inappropriate QEMU termination in device code no-reply
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20161004155957.GD28028@stefanha-x1.localdomain \
--to=stefanha@redhat.com \
--cc=aneesh.kumar@linux.vnet.ibm.com \
--cc=cornelia.huck@de.ibm.com \
--cc=groug@kaod.org \
--cc=jasowang@redhat.com \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=mst@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).