From: Luiz Capitulino <lcapitulino@redhat.com>
To: Kevin Wolf <kwolf@redhat.com>
Cc: qemu-devel@nongnu.org
Subject: [Qemu-devel] Re: [PATCH] virtio-blk: Fix use after free in error case
Date: Wed, 31 Mar 2010 14:28:41 -0300 [thread overview]
Message-ID: <20100331142841.6dab1816@redhat.com> (raw)
In-Reply-To: <1270050419-16425-1-git-send-email-kwolf@redhat.com>
On Wed, 31 Mar 2010 17:46:59 +0200
Kevin Wolf <kwolf@redhat.com> wrote:
> virtio_blk_req_complete frees the request, so we can't access it any more when
> calling bdrv_mon_event. Use the pointer that was copied earlier.
Urgh, of course that I assume that by freeing 'req' we don't free 'req->dev'.
To make this an oneliner we could just call bdrv_mon_event() before calling
virtio_blk_req_complete() (shouldn't matter for clients), but seems safer to
use 's' instead.
Acked-by: Luiz Capitulino <lcapitulino@redhat.com>
>
> Signed-off-by: Kevin Wolf <kwolf@redhat.com>
> ---
> hw/virtio-blk.c | 6 +++---
> 1 files changed, 3 insertions(+), 3 deletions(-)
>
> diff --git a/hw/virtio-blk.c b/hw/virtio-blk.c
> index 9915840..01d77b8 100644
> --- a/hw/virtio-blk.c
> +++ b/hw/virtio-blk.c
> @@ -65,7 +65,7 @@ static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
> VirtIOBlock *s = req->dev;
>
> if (action == BLOCK_ERR_IGNORE) {
> - bdrv_mon_event(req->dev->bs, BDRV_ACTION_IGNORE, is_read);
> + bdrv_mon_event(s->bs, BDRV_ACTION_IGNORE, is_read);
> return 0;
> }
>
> @@ -73,11 +73,11 @@ static int virtio_blk_handle_rw_error(VirtIOBlockReq *req, int error,
> || action == BLOCK_ERR_STOP_ANY) {
> req->next = s->rq;
> s->rq = req;
> - bdrv_mon_event(req->dev->bs, BDRV_ACTION_STOP, is_read);
> + bdrv_mon_event(s->bs, BDRV_ACTION_STOP, is_read);
> vm_stop(0);
> } else {
> virtio_blk_req_complete(req, VIRTIO_BLK_S_IOERR);
> - bdrv_mon_event(req->dev->bs, BDRV_ACTION_REPORT, is_read);
> + bdrv_mon_event(s->bs, BDRV_ACTION_REPORT, is_read);
> }
>
> return 1;
prev parent reply other threads:[~2010-03-31 17:28 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-31 15:46 [Qemu-devel] [PATCH] virtio-blk: Fix use after free in error case Kevin Wolf
2010-03-31 17:28 ` Luiz Capitulino [this message]
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=20100331142841.6dab1816@redhat.com \
--to=lcapitulino@redhat.com \
--cc=kwolf@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.