From: Mark Kanda <mark.kanda@oracle.com>
To: Kevin Wolf <kwolf@redhat.com>, Stefan Hajnoczi <stefanha@redhat.com>
Cc: Markus Armbruster <armbru@redhat.com>,
ameya.more@oracle.com, pbonzini@redhat.com,
qemu-devel@nongnu.org, qemu-block@nongnu.org
Subject: Re: [Qemu-devel] [Qemu-block] [PATCH] virtio-blk: check for NULL BlockDriverState
Date: Mon, 29 Jan 2018 10:13:02 -0600 [thread overview]
Message-ID: <302cdbe4-e363-b9ee-f40a-cafb080a7a2a@oracle.com> (raw)
In-Reply-To: <20180129154107.GI6141@localhost.localdomain>
On 1/29/2018 9:41 AM, Kevin Wolf wrote:
> Am 24.01.2018 um 12:31 hat Stefan Hajnoczi geschrieben:
>> On Mon, Jan 22, 2018 at 09:01:49AM -0600, Mark Kanda wrote:
>>> Add a BlockDriverState NULL check to virtio_blk_handle_request()
>>> to prevent a segfault if the drive is forcibly removed using HMP
>>> 'drive_del' (without performing a hotplug 'device_del' first).
>>>
>>> Signed-off-by: Mark Kanda <mark.kanda@oracle.com>
>>> Reviewed-by: Karl Heubaum <karl.heubaum@oracle.com>
>>> Reviewed-by: Ameya More <ameya.more@oracle.com>
>>> ---
>>> hw/block/virtio-blk.c | 7 +++++++
>>> 1 file changed, 7 insertions(+)
>>>
>>> diff --git a/hw/block/virtio-blk.c b/hw/block/virtio-blk.c
>>> index b1532e4..76ddbbf 100644
>>> --- a/hw/block/virtio-blk.c
>>> +++ b/hw/block/virtio-blk.c
>>> @@ -507,6 +507,13 @@ static int virtio_blk_handle_request(VirtIOBlockReq *req, MultiReqBuffer *mrb)
>>> return -1;
>>> }
>>>
>>> + /* If the drive was forcibly removed (e.g. HMP 'drive_del'), the block
>>> + * driver state may be NULL and there is nothing left to do. */
>>> + if (!blk_bs(req->dev->blk)) {
>>
>> Adding Markus Armbruster to check my understanding of drive_del:
>>
>> 1. If id is a node name (e.g. created via blockdev-add) then attempting
>> to remove the root node produces the "Node %s is in use" error. In
>> that case this patch isn't needed.
>>
>> 2. If id is a BlockBackend (e.g. created via -drive) then removing the
>> root node is allowed. The BlockBackend stays in place but blk->root
>> becomes NULL, hence this patch is needed.
>>
>> Markus: What are the valid use cases for #2? If blk->bs becomes NULL I
>> would think a lot more code beyond virtio-blk can segfault.
>
> blk->root = NULL is completely normal, it is what happens with removable
> media when the drive is empty.
>
> The problem, which was first reported during the 2.10 RC phase and was
> worked around in IDE code then, is that Paolo's commit 99723548561 added
> unconditional bdrv_inc/dec_in_flight() calls. I am pretty sure that any
> segfaults that Mark is seeing have the same cause.
That's correct. The segfault I encountered was the bdrv_inc_in_flight()
call in blk_aio_prwv().
Thanks,
-Mark
> We do need an in-flight counter even for those requests so that
> blk_drain() works correctly, so just making the calls condition wouldn't
> be right. However, this needs to become a separate counter in
> BlockBackend, and the drain functions must be changed to make use of it.
>
> I did post rough patches back then, but they weren't quite ready, and
> since then they have fallen through the cracks.
>
> Kevin
>
next prev parent reply other threads:[~2018-01-29 16:14 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-01-22 15:01 [Qemu-devel] [PATCH] virtio-blk: check for NULL BlockDriverState Mark Kanda
2018-01-24 11:31 ` Stefan Hajnoczi
2018-01-29 15:41 ` [Qemu-devel] [Qemu-block] " Kevin Wolf
2018-01-29 16:13 ` Mark Kanda [this message]
2018-02-01 17:58 ` Stefan Hajnoczi
2018-01-30 12:38 ` Stefan Hajnoczi
2018-01-30 15:56 ` Kevin Wolf
2018-01-30 19:04 ` John Snow
2018-02-01 18:00 ` Stefan Hajnoczi
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=302cdbe4-e363-b9ee-f40a-cafb080a7a2a@oracle.com \
--to=mark.kanda@oracle.com \
--cc=ameya.more@oracle.com \
--cc=armbru@redhat.com \
--cc=kwolf@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
/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).