From: Kevin Wolf <kwolf@redhat.com>
To: Greg Kurz <groug@kaod.org>
Cc: qemu-devel@nongnu.org, Max Reitz <mreitz@redhat.com>,
Stefan Hajnoczi <stefanha@redhat.com>,
Paolo Bonzini <pbonzini@redhat.com>,
qemu-stable@nongnu.org
Subject: Re: [Qemu-devel] [PATCH v3] block: fix QEMU crash with scsi-hd and drive_del
Date: Fri, 25 May 2018 16:02:46 +0200 [thread overview]
Message-ID: <20180525140246.GD5562@localhost.localdomain> (raw)
In-Reply-To: <20180525135303.365775c8@bahia.lan>
Am 25.05.2018 um 13:53 hat Greg Kurz geschrieben:
> On Fri, 25 May 2018 10:37:15 +0200
> Kevin Wolf <kwolf@redhat.com> wrote:
>
> > Am 25.05.2018 um 00:53 hat Greg Kurz geschrieben:
> > > Removing a drive with drive_del while it is being used to run an I/O
> > > intensive workload can cause QEMU to crash.
> > >
> > > An AIO flush can yield at some point:
> > >
> > > blk_aio_flush_entry()
> > > blk_co_flush(blk)
> > > bdrv_co_flush(blk->root->bs)
> > > ...
> > > qemu_coroutine_yield()
> > >
> > > and let the HMP command to run, free blk->root and give control
> > > back to the AIO flush:
> > >
> > > hmp_drive_del()
> > > blk_remove_bs()
> > > bdrv_root_unref_child(blk->root)
> > > child_bs = blk->root->bs
> > > bdrv_detach_child(blk->root)
> > > bdrv_replace_child(blk->root, NULL)
> > > blk->root->bs = NULL
> > > g_free(blk->root) <============== blk->root becomes stale
> > > bdrv_unref(child_bs)
> > > bdrv_delete(child_bs)
> > > bdrv_close()
> > > bdrv_drained_begin()
> > > bdrv_do_drained_begin()
> > > bdrv_drain_recurse()
> > > aio_poll()
> > > ...
> > > qemu_coroutine_switch()
> > >
> > > and the AIO flush completion ends up dereferencing blk->root:
> > >
> > > blk_aio_complete()
> > > scsi_aio_complete()
> > > blk_get_aio_context(blk)
> > > bs = blk_bs(blk)
> > > ie, bs = blk->root ? blk->root->bs : NULL
> > > ^^^^^
> > > stale
> > >
> > > The problem is that we should avoid making block driver graph
> > > changes while we have in-flight requests. This patch hence adds
> > > a drained section to bdrv_detach_child(), so that we're sure
> > > all requests have been drained before blk->root becomes stale.
> > >
> > > Signed-off-by: Greg Kurz <groug@kaod.org>
> > > ---
> > > v3: - start drained section before modifying the graph (Stefan)
> > >
> > > v2: - drain I/O requests when detaching the BDS (Stefan, Paolo)
> > > ---
> > > block.c | 4 ++++
> > > 1 file changed, 4 insertions(+)
> > >
> > > diff --git a/block.c b/block.c
> > > index 501b64c8193f..715c1b56c1e2 100644
> > > --- a/block.c
> > > +++ b/block.c
> > > @@ -2127,12 +2127,16 @@ BdrvChild *bdrv_attach_child(BlockDriverState *parent_bs,
> > >
> > > static void bdrv_detach_child(BdrvChild *child)
> > > {
> > > + BlockDriverState *child_bs = child->bs;
> > > +
> > > + bdrv_drained_begin(child_bs);
> > > if (child->next.le_prev) {
> > > QLIST_REMOVE(child, next);
> > > child->next.le_prev = NULL;
> > > }
> > >
> > > bdrv_replace_child(child, NULL);
> > > + bdrv_drained_end(child_bs);
> > >
> > > g_free(child->name);
> > > g_free(child);
> >
> > I wonder if the better fix would be calling blk_drain() in
> > blk_remove_bs() (which would also better be blk_drained_begin/end...).
> >
>
> Hmm... would blk_drain() in blk_remove_bs() ensure we don't have
> any new activity until the BDS and BB are actually dissociated ?
>
> ie, something like the following ?
>
> + blk_drain(blk);
> bdrv_root_unref_child(blk->root);
> blk->root = NULL;
I think that should be enough, as long as we hold the AioContext lock.
In theory, callers should hold it, but I'm not sure if it's always true.
If we're in a drain_begin/end section (rather than just after a drain),
that might be less important because AioContext events are disabled
then.
Well, actually, if they didn't hold it, any drain would crash, at least
when there still is some activity.
> because we can't do anything like:
>
> + bdrv_drained_begin(blk_bs(blk));
> bdrv_root_unref_child(blk->root);
> + bdrv_drained_begin(blk_bs(blk));
> blk->root = NULL;
>
> since g_free(blk->root) gets called from under bdrv_root_unref_child()
> at some point.
If that's the problem, I guess we could do something like this (even
though it's a bit ugly):
bs = blk_bs(blk);
bdrv_ref(bs);
bdrv_drained_begin(bs);
bdrv_root_unref_child(blk->root)
bdrv_drained_end(bs)
bdrv_unref(bs)
This assumes that we're in the main thread, but that should always be
the case for blk_remove_bs().
> > Doing the proposed change in bdrv_detach_child() should fix the problem
> > that you're seeing, but at first sight it promises that callers don't
> > have to care about shutting down their activity on the child node first.
> > This isn't necessarily correct if the parent may still issue a new
> > request (e.g. in response to the completion of an old one). What really
> > needs to be drained is the parent's use of the child, not the activity
> > of the child.
> >
>
> I was thinking of:
>
> void bdrv_root_unref_child(BdrvChild *child)
> {
> BlockDriverState *child_bs;
>
> child_bs = child->bs;
> + bdrv_drained_begin(child_bs);
> bdrv_detach_child(child);
> + bdrv_drained_end(child_bs);
> bdrv_unref(child_bs);
> }
>
> but both Paolo and Stefan suggested to move it to bdrv_detach_child().
>
> Is this what you're suggesting ?
No, the change in blk_remove_bs() is what I meant. If we can't do that,
I'd agree that bdrv_detach_child() is the second best thing.
> > Another minor problem with your approach: If a child node is used by
> > more than one parent, this patch would unnecessarily quiesce those other
> > parents and wait for the completion of their requests.
> >
>
> Oh... I hadn't realized. Blame my limited knowledge of the block layer :)
I just realised that the way blk_drain* are implemented, you'll do this
either way, so disregard this point for now...
Kevin
next prev parent reply other threads:[~2018-05-25 14:02 UTC|newest]
Thread overview: 5+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-05-24 22:53 [Qemu-devel] [PATCH v3] block: fix QEMU crash with scsi-hd and drive_del Greg Kurz
2018-05-25 8:37 ` Kevin Wolf
2018-05-25 11:53 ` Greg Kurz
2018-05-25 14:02 ` Kevin Wolf [this message]
2018-05-28 11:29 ` Greg Kurz
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=20180525140246.GD5562@localhost.localdomain \
--to=kwolf@redhat.com \
--cc=groug@kaod.org \
--cc=mreitz@redhat.com \
--cc=pbonzini@redhat.com \
--cc=qemu-devel@nongnu.org \
--cc=qemu-stable@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).