From: Eric Blake <eblake@redhat.com>
To: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>,
qemu-block@nongnu.org
Cc: kwolf@redhat.com, den@openvz.org, qemu-devel@nongnu.org,
stefanha@redhat.com, mreitz@redhat.com
Subject: Re: [PATCH v2 3/5] nbd: make nbd_export_close_all() synchronous
Date: Mon, 13 Jul 2020 08:03:02 -0500 [thread overview]
Message-ID: <b6866659-ed60-9743-b103-8325aa69fa3e@redhat.com> (raw)
In-Reply-To: <20200701105331.121670-4-vsementsov@virtuozzo.com>
On 7/1/20 5:53 AM, Vladimir Sementsov-Ogievskiy wrote:
> Consider nbd_export_close_all(). The call-stack looks like this:
> nbd_export_close_all() -> nbd_export_close -> call client_close() for
> each client.
>
> client_close() doesn't guarantee that client is closed: nbd_trip()
> keeps reference to it. So, nbd_export_close_all() just reduce
> reference counter on export and removes it from the list, but doesn't
> guarantee that nbd_trip() finished neither export actually removed.
>
> Let's wait for all exports actually removed.
>
> Without this fix, the following crash is possible:
>
> - export bitmap through internal Qemu NBD server
> - connect a client
> - shutdown Qemu
>
> On shutdown nbd_export_close_all is called, but it actually don't wait
> for nbd_trip() to finish and to release its references. So, export is
> not release, and exported bitmap remains busy, and on try to remove the
> bitmap (which is part of bdrv_close()) the assertion fails:
>
> bdrv_release_dirty_bitmap_locked: Assertion `!bdrv_dirty_bitmap_busy(bitmap)' failed
>
> Signed-off-by: Vladimir Sementsov-Ogievskiy <vsementsov@virtuozzo.com>
> ---
>
> v2: rewritten, try to wait exports directly.
>
> Note: I'm not sure in my understanding of AIO_WAIT_WHILE and related things
> and really hope for review.
I'm also a bit weak on whether the AIO_WAIT_WHILE is being used
correctly. But the idea behind the patch makes sense to me, and since
it is a bug fix, it will be okay to apply this for -rc1 or even -rc2 if
needed (I'm not including it in my pull request today, however).
>
>
> nbd/server.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/nbd/server.c b/nbd/server.c
> index 20754e9ebc..9d64b00f4b 100644
> --- a/nbd/server.c
> +++ b/nbd/server.c
> @@ -102,6 +102,8 @@ struct NBDExport {
> };
>
> static QTAILQ_HEAD(, NBDExport) exports = QTAILQ_HEAD_INITIALIZER(exports);
> +static QTAILQ_HEAD(, NBDExport) closed_exports =
> + QTAILQ_HEAD_INITIALIZER(closed_exports);
>
> /* NBDExportMetaContexts represents a list of contexts to be exported,
> * as selected by NBD_OPT_SET_META_CONTEXT. Also used for
> @@ -1655,6 +1657,7 @@ void nbd_export_close(NBDExport *exp)
> g_free(exp->name);
> exp->name = NULL;
> QTAILQ_REMOVE(&exports, exp, next);
> + QTAILQ_INSERT_TAIL(&closed_exports, exp, next);
> }
> g_free(exp->description);
> exp->description = NULL;
> @@ -1717,7 +1720,9 @@ void nbd_export_put(NBDExport *exp)
> g_free(exp->export_bitmap_context);
> }
>
> + QTAILQ_REMOVE(&closed_exports, exp, next);
> g_free(exp);
> + aio_wait_kick();
> }
> }
>
> @@ -1737,6 +1742,9 @@ void nbd_export_close_all(void)
> nbd_export_close(exp);
> aio_context_release(aio_context);
> }
> +
> + AIO_WAIT_WHILE(NULL, !(QTAILQ_EMPTY(&exports) &&
> + QTAILQ_EMPTY(&closed_exports)));
> }
>
> static int coroutine_fn nbd_co_send_iov(NBDClient *client, struct iovec *iov,
>
weak:
Reviewed-by: Eric Blake <eblake@redhat.com>
--
Eric Blake, Principal Software Engineer
Red Hat, Inc. +1-919-301-3226
Virtualization: qemu.org | libvirt.org
next prev parent reply other threads:[~2020-07-13 13:04 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-07-01 10:53 [PATCH v2 0/5] Fix crash due to NBD export leak Vladimir Sementsov-Ogievskiy
2020-07-01 10:53 ` [PATCH v2 1/5] iotests: QemuIoInteractive: use qemu_io_args_no_fmt Vladimir Sementsov-Ogievskiy
2020-07-01 10:53 ` [PATCH v2 2/5] iotests.py: QemuIoInteractive: print output on failure Vladimir Sementsov-Ogievskiy
2020-07-01 10:53 ` [PATCH v2 3/5] nbd: make nbd_export_close_all() synchronous Vladimir Sementsov-Ogievskiy
2020-07-13 13:03 ` Eric Blake [this message]
2020-07-01 10:53 ` [PATCH v2 4/5] iotests.py: filter_testfiles(): filter SOCK_DIR too Vladimir Sementsov-Ogievskiy
2020-07-13 13:07 ` Eric Blake
2020-07-13 14:00 ` Eric Blake
2020-07-13 14:31 ` Vladimir Sementsov-Ogievskiy
2020-07-01 10:53 ` [PATCH v2 5/5] iotests: test shutdown when bitmap is exported through NBD Vladimir Sementsov-Ogievskiy
2020-07-13 13:41 ` Eric Blake
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=b6866659-ed60-9743-b103-8325aa69fa3e@redhat.com \
--to=eblake@redhat.com \
--cc=den@openvz.org \
--cc=kwolf@redhat.com \
--cc=mreitz@redhat.com \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=vsementsov@virtuozzo.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).