qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: Paolo Bonzini <pbonzini@redhat.com>
To: Emanuele Giuseppe Esposito <eesposit@redhat.com>, qemu-block@nongnu.org
Cc: "Kevin Wolf" <kwolf@redhat.com>, "Fam Zheng" <fam@euphon.net>,
	"Vladimir Sementsov-Ogievskiy" <vsementsov@virtuozzo.com>,
	"Daniel P. Berrangé" <berrange@redhat.com>,
	"Eduardo Habkost" <ehabkost@redhat.com>,
	"Juan Quintela" <quintela@redhat.com>,
	"Eric Blake" <eblake@redhat.com>,
	"Richard Henderson" <richard.henderson@linaro.org>,
	qemu-devel@nongnu.org, "Markus Armbruster" <armbru@redhat.com>,
	"Hanna Reitz" <hreitz@redhat.com>,
	"Stefan Hajnoczi" <stefanha@redhat.com>,
	"John Snow" <jsnow@redhat.com>,
	"Dr. David Alan Gilbert" <dgilbert@redhat.com>
Subject: Re: [RFC PATCH v2 15/25] include/block/snapshot: global state API + assertions
Date: Thu, 7 Oct 2021 14:06:59 +0200	[thread overview]
Message-ID: <05c35f57-ad34-563e-d850-9652735cb23a@redhat.com> (raw)
In-Reply-To: <20211005143215.29500-16-eesposit@redhat.com>

On 05/10/21 16:32, Emanuele Giuseppe Esposito wrote:
> Snapshots run also under the BQL lock, so they all are
> in the global state API. The aiocontext lock that they hold
> is currently an overkill and in future could be removed.
> 
> Signed-off-by: Emanuele Giuseppe Esposito <eesposit@redhat.com>
> ---
>   block/snapshot.c         | 28 ++++++++++++++++++++++++++++
>   include/block/snapshot.h | 21 +++++++++++++++++++++
>   migration/savevm.c       |  2 ++
>   3 files changed, 51 insertions(+)
> 
> diff --git a/block/snapshot.c b/block/snapshot.c
> index ccacda8bd5..e8756f7f90 100644
> --- a/block/snapshot.c
> +++ b/block/snapshot.c
> @@ -57,6 +57,8 @@ int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
>       QEMUSnapshotInfo *sn_tab, *sn;
>       int nb_sns, i, ret;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       ret = -ENOENT;
>       nb_sns = bdrv_snapshot_list(bs, &sn_tab);
>       if (nb_sns < 0) {
> @@ -105,6 +107,7 @@ bool bdrv_snapshot_find_by_id_and_name(BlockDriverState *bs,
>       bool ret = false;
>   
>       assert(id || name);
> +    g_assert(qemu_in_main_thread());
>   
>       nb_sns = bdrv_snapshot_list(bs, &sn_tab);
>       if (nb_sns < 0) {
> @@ -200,6 +203,7 @@ static BlockDriverState *bdrv_snapshot_fallback(BlockDriverState *bs)
>   int bdrv_can_snapshot(BlockDriverState *bs)
>   {
>       BlockDriver *drv = bs->drv;
> +    g_assert(qemu_in_main_thread());
>       if (!drv || !bdrv_is_inserted(bs) || bdrv_is_read_only(bs)) {
>           return 0;
>       }
> @@ -220,6 +224,9 @@ int bdrv_snapshot_create(BlockDriverState *bs,
>   {
>       BlockDriver *drv = bs->drv;
>       BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs);
> +
> +    g_assert(qemu_in_main_thread());
> +
>       if (!drv) {
>           return -ENOMEDIUM;
>       }
> @@ -240,6 +247,8 @@ int bdrv_snapshot_goto(BlockDriverState *bs,
>       BdrvChild **fallback_ptr;
>       int ret, open_ret;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (!drv) {
>           error_setg(errp, "Block driver is closed");
>           return -ENOMEDIUM;
> @@ -348,6 +357,8 @@ int bdrv_snapshot_delete(BlockDriverState *bs,
>       BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs);
>       int ret;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (!drv) {
>           error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs));
>           return -ENOMEDIUM;
> @@ -380,6 +391,8 @@ int bdrv_snapshot_list(BlockDriverState *bs,
>   {
>       BlockDriver *drv = bs->drv;
>       BlockDriverState *fallback_bs = bdrv_snapshot_fallback(bs);
> +
> +    g_assert(qemu_in_main_thread());
>       if (!drv) {
>           return -ENOMEDIUM;
>       }
> @@ -419,6 +432,8 @@ int bdrv_snapshot_load_tmp(BlockDriverState *bs,
>   {
>       BlockDriver *drv = bs->drv;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (!drv) {
>           error_setg(errp, QERR_DEVICE_HAS_NO_MEDIUM, bdrv_get_device_name(bs));
>           return -ENOMEDIUM;
> @@ -447,6 +462,8 @@ int bdrv_snapshot_load_tmp_by_id_or_name(BlockDriverState *bs,
>       int ret;
>       Error *local_err = NULL;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       ret = bdrv_snapshot_load_tmp(bs, id_or_name, NULL, &local_err);
>       if (ret == -ENOENT || ret == -EINVAL) {
>           error_free(local_err);
> @@ -515,6 +532,8 @@ bool bdrv_all_can_snapshot(bool has_devices, strList *devices,
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return false;
>       }
> @@ -549,6 +568,8 @@ int bdrv_all_delete_snapshot(const char *name,
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return -1;
>       }
> @@ -588,6 +609,8 @@ int bdrv_all_goto_snapshot(const char *name,
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return -1;
>       }
> @@ -622,6 +645,8 @@ int bdrv_all_has_snapshot(const char *name,
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return -1;
>       }
> @@ -663,6 +688,7 @@ int bdrv_all_create_snapshot(QEMUSnapshotInfo *sn,
>   {
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
> +    g_assert(qemu_in_main_thread());
>   
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return -1;
> @@ -703,6 +729,8 @@ BlockDriverState *bdrv_all_find_vmstate_bs(const char *vmstate_bs,
>       g_autoptr(GList) bdrvs = NULL;
>       GList *iterbdrvs;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (bdrv_all_get_snapshot_devices(has_devices, devices, &bdrvs, errp) < 0) {
>           return NULL;
>       }
> diff --git a/include/block/snapshot.h b/include/block/snapshot.h
> index 940345692f..3a84849388 100644
> --- a/include/block/snapshot.h
> +++ b/include/block/snapshot.h
> @@ -45,6 +45,27 @@ typedef struct QEMUSnapshotInfo {
>       uint64_t icount; /* record/replay step */
>   } QEMUSnapshotInfo;
>   
> +/*
> + * Global state (GS) API. These functions run under the BQL lock.
> + *
> + * If a function modifies the graph, it also uses drain and/or
> + * aio_context_acquire/release to be sure it has unique access.
> + * aio_context locking is needed together with BQL because of
> + * the thread-safe I/O API that concurrently runs and accesses
> + * the graph without the BQL.
> + *
> + * It is important to note that not all of these functions are
> + * necessarily limited to running under the BQL, but they would
> + * require additional auditing and may small thread-safety changes

Apart from the usual comment about s/may/many/,

Reviewed-by: Paolo Bonzini <pbonzini@redhat.com>

> + * to move them into the I/O API. Often it's not worth doing that
> + * work since the APIs are only used with the BQL held at the
> + * moment, so they have been placed in the GS API (for now).
> + *
> + * All functions in this header must use this assertion:
> + * g_assert(qemu_in_main_thread());
> + * to catch when they are accidentally called without the BQL.
> + */
> +
>   int bdrv_snapshot_find(BlockDriverState *bs, QEMUSnapshotInfo *sn_info,
>                          const char *name);
>   bool bdrv_snapshot_find_by_id_and_name(BlockDriverState *bs,
> diff --git a/migration/savevm.c b/migration/savevm.c
> index 7b7b64bd13..439f736ad5 100644
> --- a/migration/savevm.c
> +++ b/migration/savevm.c
> @@ -2785,6 +2785,8 @@ bool save_snapshot(const char *name, bool overwrite, const char *vmstate,
>       g_autoptr(GDateTime) now = g_date_time_new_now_local();
>       AioContext *aio_context;
>   
> +    g_assert(qemu_in_main_thread());
> +
>       if (migration_is_blocked(errp)) {
>           return false;
>       }
> 



  reply	other threads:[~2021-10-07 12:09 UTC|newest]

Thread overview: 74+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-10-05 14:31 [RFC PATCH v2 00/25] block layer: split block APIs in global state and I/O Emanuele Giuseppe Esposito
2021-10-05 14:31 ` [RFC PATCH v2 01/25] main-loop.h: introduce qemu_in_main_thread() Emanuele Giuseppe Esposito
2021-10-07  9:05   ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 02/25] include/sysemu/block-backend: split header into I/O and global state (GS) API Emanuele Giuseppe Esposito
2021-10-07  9:13   ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 03/25] block/block-backend.c: assertions for block-backend Emanuele Giuseppe Esposito
2021-10-05 16:29   ` Eric Blake
2021-10-06  9:36     ` Emanuele Giuseppe Esposito
2021-10-07 10:48   ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 04/25] include/block/block: split header into I/O and global state API Emanuele Giuseppe Esposito
2021-10-07  9:33   ` Stefan Hajnoczi
2021-10-07 10:54     ` Emanuele Giuseppe Esposito
2021-10-07 11:51       ` Paolo Bonzini
2021-10-07 13:18         ` Eric Blake
2021-10-07 11:43   ` Daniel P. Berrangé
2021-10-07 13:01     ` Stefan Hajnoczi
2021-10-08  7:26       ` Emanuele Giuseppe Esposito
2021-10-05 14:31 ` [RFC PATCH v2 05/25] assertions for block " Emanuele Giuseppe Esposito
2021-10-07 10:44   ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 06/25] include/block/block_int: split header into I/O and " Emanuele Giuseppe Esposito
2021-10-07 10:52   ` Stefan Hajnoczi
2021-10-07 11:30     ` Emanuele Giuseppe Esposito
2021-10-07 13:38       ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 07/25] assertions for block_int " Emanuele Giuseppe Esposito
2021-10-07 14:19   ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 08/25] block: introduce assert_bdrv_graph_writable Emanuele Giuseppe Esposito
2021-10-07 12:01   ` Paolo Bonzini
2021-10-07 12:02   ` Paolo Bonzini
2021-10-07 13:47     ` Emanuele Giuseppe Esposito
2021-10-07 14:18       ` Stefan Hajnoczi
2021-10-05 14:31 ` [RFC PATCH v2 09/25] include/block/blockjob_int.h: split header into I/O and GS API Emanuele Giuseppe Esposito
2021-10-07 14:21   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 10/25] assertions for blockjob_int.h Emanuele Giuseppe Esposito
2021-10-07 14:21   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 11/25] include/block/blockjob.h: global state API Emanuele Giuseppe Esposito
2021-10-07 14:23   ` Stefan Hajnoczi
2021-10-08  7:20     ` Emanuele Giuseppe Esposito
2021-10-11 11:10       ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 12/25] assertions for blockob.h " Emanuele Giuseppe Esposito
2021-10-07 14:25   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 13/25] include/systemu/blockdev.h: " Emanuele Giuseppe Esposito
2021-10-07 12:00   ` Paolo Bonzini
2021-10-07 14:28   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 14/25] assertions for blockdev.h " Emanuele Giuseppe Esposito
2021-10-07 12:04   ` Paolo Bonzini
2021-10-07 14:29   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 15/25] include/block/snapshot: global state API + assertions Emanuele Giuseppe Esposito
2021-10-07 12:06   ` Paolo Bonzini [this message]
2021-10-07 14:31   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 16/25] block/backup-top.h: " Emanuele Giuseppe Esposito
2021-10-07 12:08   ` Paolo Bonzini
2021-10-07 14:32   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 17/25] include/block/transactions: " Emanuele Giuseppe Esposito
2021-10-07 14:47   ` Stefan Hajnoczi
2021-10-08  7:18     ` Emanuele Giuseppe Esposito
2021-10-05 14:32 ` [RFC PATCH v2 18/25] block/coroutines: I/O API Emanuele Giuseppe Esposito
2021-10-07 11:52   ` Paolo Bonzini
2021-10-07 14:47   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 19/25] block_int-common.h: split function pointers in BlockDriver Emanuele Giuseppe Esposito
2021-10-07 14:49   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 20/25] block_int-common.h: assertion in the callers of BlockDriver function pointers Emanuele Giuseppe Esposito
2021-10-07 14:50   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 21/25] block_int-common.h: split function pointers in BdrvChildClass Emanuele Giuseppe Esposito
2021-10-07 14:51   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 22/25] block_int-common.h: assertions in the callers of BdrvChildClass function pointers Emanuele Giuseppe Esposito
2021-10-07 14:51   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 23/25] block-backend-common.h: split function pointers in BlockDevOps Emanuele Giuseppe Esposito
2021-10-07 14:52   ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 24/25] job.h: split function pointers in JobDriver Emanuele Giuseppe Esposito
2021-10-07 14:54   ` Stefan Hajnoczi
2021-10-08 10:48     ` Emanuele Giuseppe Esposito
2021-10-11 11:12       ` Stefan Hajnoczi
2021-10-05 14:32 ` [RFC PATCH v2 25/25] job.h: assertions in the callers of JobDriver funcion pointers Emanuele Giuseppe Esposito
2021-10-07 14:54   ` 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=05c35f57-ad34-563e-d850-9652735cb23a@redhat.com \
    --to=pbonzini@redhat.com \
    --cc=armbru@redhat.com \
    --cc=berrange@redhat.com \
    --cc=dgilbert@redhat.com \
    --cc=eblake@redhat.com \
    --cc=eesposit@redhat.com \
    --cc=ehabkost@redhat.com \
    --cc=fam@euphon.net \
    --cc=hreitz@redhat.com \
    --cc=jsnow@redhat.com \
    --cc=kwolf@redhat.com \
    --cc=qemu-block@nongnu.org \
    --cc=qemu-devel@nongnu.org \
    --cc=quintela@redhat.com \
    --cc=richard.henderson@linaro.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).