From nobody Fri May 17 11:58:58 2024 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 ARC-Seal: i=1; a=rsa-sha256; t=1563293970; cv=none; d=zoho.com; s=zohoarc; b=BWlCfH4ggNx+r4lqAO4pjgMsgJVwtehFzb78vyknqLPRqpagt6e9LQN23y8oWJTnxC67hIjR2KHlUghxJjLpW+sQIu+MDcxiKWixqbrSpbeM2P57UpvFkUwPNZfRsqTRkD9efF3OzZcVxqF1W18y0kpBcNX5px17SrgZmTgqbBA= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1563293970; h=Cc:Date:From:List-Subscribe:List-Post:List-Id:List-Archive:List-Help:List-Unsubscribe:Message-ID:Sender:Subject:To:ARC-Authentication-Results; bh=OJqmTh8GXepaoUcsprhjRYEQQdMlCC60gbXZQryMZcw=; b=CBZWY9HGaQ7FKbuM1SZH/mKlH4Z4nEQ1vkNXDtoziFC75lgHXnjYHXHZH1Tpn6SxdmkRNLxy+31Jto4FLup/Nfbf4bfILKy6R5r8czWJhjXD4w1M5dUDsICTlSgaqCAzbipnx0ay4PI7PcFnwuhHfEqReuDY4g/zxJ96rLE4jdE= ARC-Authentication-Results: i=1; mx.zoho.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 header.from= (p=none dis=none) header.from= Return-Path: Received: from lists.gnu.org (lists.gnu.org [209.51.188.17]) by mx.zohomail.com with SMTPS id 1563293970370418.8720417321865; Tue, 16 Jul 2019 09:19:30 -0700 (PDT) Received: from localhost ([::1]:50958 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnQAr-0004Ki-4F for importer@patchew.org; Tue, 16 Jul 2019 12:19:29 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:49442) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hnQAc-0003qj-Tq for qemu-devel@nongnu.org; Tue, 16 Jul 2019 12:19:16 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hnQAa-0002tQ-FL for qemu-devel@nongnu.org; Tue, 16 Jul 2019 12:19:14 -0400 Received: from mx1.redhat.com ([209.132.183.28]:33750) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hnQAW-0002nu-Eu; Tue, 16 Jul 2019 12:19:08 -0400 Received: from smtp.corp.redhat.com (int-mx05.intmail.prod.int.phx2.redhat.com [10.5.11.15]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id B6AB73087930; Tue, 16 Jul 2019 16:19:07 +0000 (UTC) Received: from maximlenovopc.usersys.redhat.com (unknown [10.35.206.67]) by smtp.corp.redhat.com (Postfix) with ESMTP id 7A0D45D71D; Tue, 16 Jul 2019 16:19:03 +0000 (UTC) From: Maxim Levitsky To: qemu-devel@nongnu.org Date: Tue, 16 Jul 2019 19:19:01 +0300 Message-Id: <20190716161901.1430-1-mlevitsk@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.15 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.45]); Tue, 16 Jul 2019 16:19:07 +0000 (UTC) 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 v5] LUKS: support preallocation X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.23 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Cc: Kevin Wolf , qemu-block@nongnu.org, Markus Armbruster , Maxim Levitsky , Max Reitz Errors-To: qemu-devel-bounces+importer=patchew.org@nongnu.org Sender: "Qemu-devel" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Content-Type: text/plain; charset="utf-8" preallocation=3Doff and preallocation=3Dmetadata both allocate luks header only, and preallocation=3Dfalloc/full is passed to underlying file. Fixes: https://bugzilla.redhat.com/show_bug.cgi?id=3D1534951 Signed-off-by: Maxim Levitsky --- This is hopefully a revision without coding style violations. Note that I still haven't tested the blockdev-create code, other that compile testing it. Best regards, Maxim Levitsky block/crypto.c | 30 +++++++++++++++++++++++++++--- qapi/block-core.json | 6 +++++- 2 files changed, 32 insertions(+), 4 deletions(-) diff --git a/block/crypto.c b/block/crypto.c index 8237424ae6..7eb698774e 100644 --- a/block/crypto.c +++ b/block/crypto.c @@ -74,6 +74,7 @@ static ssize_t block_crypto_read_func(QCryptoBlock *block, struct BlockCryptoCreateData { BlockBackend *blk; uint64_t size; + PreallocMode prealloc; }; =20 =20 @@ -112,7 +113,7 @@ static ssize_t block_crypto_init_func(QCryptoBlock *blo= ck, * available to the guest, so we must take account of that * which will be used by the crypto header */ - return blk_truncate(data->blk, data->size + headerlen, PREALLOC_MODE_O= FF, + return blk_truncate(data->blk, data->size + headerlen, data->prealloc, errp); } =20 @@ -251,6 +252,7 @@ static int block_crypto_open_generic(QCryptoBlockFormat= format, static int block_crypto_co_create_generic(BlockDriverState *bs, int64_t size, QCryptoBlockCreateOptions *opts, + PreallocMode prealloc, Error **errp) { int ret; @@ -266,9 +268,14 @@ static int block_crypto_co_create_generic(BlockDriverS= tate *bs, goto cleanup; } =20 + if (prealloc =3D=3D PREALLOC_MODE_METADATA) { + prealloc =3D PREALLOC_MODE_OFF; + } + data =3D (struct BlockCryptoCreateData) { .blk =3D blk, .size =3D size, + .prealloc =3D prealloc, }; =20 crypto =3D qcrypto_block_create(opts, NULL, @@ -500,6 +507,7 @@ block_crypto_co_create_luks(BlockdevCreateOptions *crea= te_options, Error **errp) BlockdevCreateOptionsLUKS *luks_opts; BlockDriverState *bs =3D NULL; QCryptoBlockCreateOptions create_opts; + PreallocMode preallocation =3D PREALLOC_MODE_OFF; int ret; =20 assert(create_options->driver =3D=3D BLOCKDEV_DRIVER_LUKS); @@ -515,8 +523,12 @@ block_crypto_co_create_luks(BlockdevCreateOptions *cre= ate_options, Error **errp) .u.luks =3D *qapi_BlockdevCreateOptionsLUKS_base(luks_opts), }; =20 + if (luks_opts->has_preallocation) { + preallocation =3D luks_opts->preallocation; + } + ret =3D block_crypto_co_create_generic(bs, luks_opts->size, &create_op= ts, - errp); + preallocation, errp); if (ret < 0) { goto fail; } @@ -534,12 +546,24 @@ static int coroutine_fn block_crypto_co_create_opts_l= uks(const char *filename, QCryptoBlockCreateOptions *create_opts =3D NULL; BlockDriverState *bs =3D NULL; QDict *cryptoopts; + PreallocMode prealloc; + char *buf =3D NULL; int64_t size; int ret; + Error *local_err =3D NULL; =20 /* Parse options */ size =3D qemu_opt_get_size_del(opts, BLOCK_OPT_SIZE, 0); =20 + buf =3D qemu_opt_get_del(opts, BLOCK_OPT_PREALLOC); + prealloc =3D qapi_enum_parse(&PreallocMode_lookup, buf, + PREALLOC_MODE_OFF, &local_err); + g_free(buf); + if (local_err) { + error_propagate(errp, local_err); + return -EINVAL; + } + cryptoopts =3D qemu_opts_to_qdict_filtered(opts, NULL, &block_crypto_create_opts_luk= s, true); @@ -565,7 +589,7 @@ static int coroutine_fn block_crypto_co_create_opts_luk= s(const char *filename, } =20 /* Create format layer */ - ret =3D block_crypto_co_create_generic(bs, size, create_opts, errp); + ret =3D block_crypto_co_create_generic(bs, size, create_opts, prealloc= , errp); if (ret < 0) { goto fail; } diff --git a/qapi/block-core.json b/qapi/block-core.json index 0d43d4f37c..3840c99cbe 100644 --- a/qapi/block-core.json +++ b/qapi/block-core.json @@ -4205,13 +4205,17 @@ # # @file Node to create the image format on # @size Size of the virtual disk in bytes +# @preallocation Preallocation mode for the new image +# (since: 4.2) +# (default: off; allowed values: off, metadata, falloc, = full) # # Since: 2.12 ## { 'struct': 'BlockdevCreateOptionsLUKS', 'base': 'QCryptoBlockCreateOptionsLUKS', 'data': { 'file': 'BlockdevRef', - 'size': 'size' } } + 'size': 'size', + '*preallocation': 'PreallocMode' } } =20 ## # @BlockdevCreateOptionsNfs: --=20 2.17.2