From nobody Sat Nov 8 07:24:02 2025 Delivered-To: importer@patchew.org Received-SPF: pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) client-ip=209.51.188.17; envelope-from=qemu-devel-bounces+importer=patchew.org@nongnu.org; helo=lists.gnu.org; Authentication-Results: mx.zohomail.com; spf=pass (zoho.com: domain of gnu.org designates 209.51.188.17 as permitted sender) smtp.mailfrom=qemu-devel-bounces+importer=patchew.org@nongnu.org; dmarc=fail(p=none dis=none) header.from=redhat.com Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1550098825362825.101649449791; Wed, 13 Feb 2019 15:00:25 -0800 (PST) Received: from localhost ([127.0.0.1]:36206 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gu3Vu-0001B6-9r for importer@patchew.org; Wed, 13 Feb 2019 18:00:22 -0500 Received: from eggs.gnu.org ([209.51.188.92]:37824) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gu3Pt-0004ls-6J for qemu-devel@nongnu.org; Wed, 13 Feb 2019 17:54:10 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gu3P6-0005w4-8K for qemu-devel@nongnu.org; Wed, 13 Feb 2019 17:53:20 -0500 Received: from mx1.redhat.com ([209.132.183.28]:55092) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gu3P5-0005ur-6i; Wed, 13 Feb 2019 17:53:19 -0500 Received: from smtp.corp.redhat.com (int-mx03.intmail.prod.int.phx2.redhat.com [10.5.11.13]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 7E6AC89AC6; Wed, 13 Feb 2019 22:53:18 +0000 (UTC) Received: from localhost (unknown [10.40.205.16]) by smtp.corp.redhat.com (Postfix) with ESMTPS id 0F49960856; Wed, 13 Feb 2019 22:53:17 +0000 (UTC) From: Max Reitz To: qemu-block@nongnu.org Date: Wed, 13 Feb 2019 23:53:01 +0100 Message-Id: <20190213225311.17876-3-mreitz@redhat.com> In-Reply-To: <20190213225311.17876-1-mreitz@redhat.com> References: <20190213225311.17876-1-mreitz@redhat.com> MIME-Version: 1.0 X-Scanned-By: MIMEDefang 2.79 on 10.5.11.13 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.26]); Wed, 13 Feb 2019 22:53:18 +0000 (UTC) Content-Transfer-Encoding: quoted-printable X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.2.x-3.x [generic] X-Received-From: 209.132.183.28 Subject: [Qemu-devel] [PATCH v3 02/12] blockdev: Check @replaces in blockdev_mirror_common X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , qemu-devel@nongnu.org, Max Reitz Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Type: text/plain; charset="utf-8" There is no reason why the constraints we put on @replaces should be limited to drive-mirror. Therefore, move the sanity checks from qmp_drive_mirror() to blockdev_mirror_common() so they apply to blockdev-mirror as well. Signed-off-by: Max Reitz Reviewed-by: Eric Blake Reviewed-by: Alberto Garcia Reviewed-by: Kevin Wolf --- blockdev.c | 55 ++++++++++++++++++++++++++++++++---------------------- 1 file changed, 33 insertions(+), 22 deletions(-) diff --git a/blockdev.c b/blockdev.c index 3bab7e4f5a..22e41fb862 100644 --- a/blockdev.c +++ b/blockdev.c @@ -3771,6 +3771,39 @@ static void blockdev_mirror_common(const char *job_i= d, BlockDriverState *bs, sync =3D MIRROR_SYNC_MODE_FULL; } =20 + if (has_replaces) { + BlockDriverState *to_replace_bs; + AioContext *replace_aio_context; + int64_t bs_size, replace_size; + + bs_size =3D bdrv_getlength(bs); + if (bs_size < 0) { + error_setg_errno(errp, -bs_size, "Failed to query device's siz= e"); + return; + } + + to_replace_bs =3D check_to_replace_node(bs, replaces, errp); + if (!to_replace_bs) { + return; + } + + replace_aio_context =3D bdrv_get_aio_context(to_replace_bs); + aio_context_acquire(replace_aio_context); + replace_size =3D bdrv_getlength(to_replace_bs); + aio_context_release(replace_aio_context); + + if (replace_size < 0) { + error_setg_errno(errp, -replace_size, + "Failed to query the replacement node's size"= ); + return; + } + if (bs_size !=3D replace_size) { + error_setg(errp, "cannot replace image with a mirror image of " + "different size"); + return; + } + } + /* pass the node name to replace to mirror start since it's loose coup= ling * and will allow to check whether the node still exist at mirror comp= letion */ @@ -3831,33 +3864,11 @@ void qmp_drive_mirror(DriveMirror *arg, Error **err= p) } =20 if (arg->has_replaces) { - BlockDriverState *to_replace_bs; - AioContext *replace_aio_context; - int64_t replace_size; - if (!arg->has_node_name) { error_setg(errp, "a node-name must be provided when replacing = a" " named node of the graph"); goto out; } - - to_replace_bs =3D check_to_replace_node(bs, arg->replaces, &local_= err); - - if (!to_replace_bs) { - error_propagate(errp, local_err); - goto out; - } - - replace_aio_context =3D bdrv_get_aio_context(to_replace_bs); - aio_context_acquire(replace_aio_context); - replace_size =3D bdrv_getlength(to_replace_bs); - aio_context_release(replace_aio_context); - - if (size !=3D replace_size) { - error_setg(errp, "cannot replace image with a mirror image of " - "different size"); - goto out; - } } =20 if (arg->mode =3D=3D NEW_IMAGE_MODE_ABSOLUTE_PATHS) { --=20 2.20.1