From nobody Sat Feb 7 15:35:08 2026 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=virtuozzo.com ARC-Seal: i=1; a=rsa-sha256; t=1562322192; cv=none; d=zoho.com; s=zohoarc; b=JLCXzJbuItCXv1MKQp/Kda6graa3OOdm8kGvgsVIFBrJ/ENSPUWzHYtrzuGbQpNnEIjV+A7lrYdjI7Mfnrdm55RXKDXzOX9jHCO1tsxdbllNQFFFLBtEVI1LH4ol868SH5gz+YXtq6mV5eD2ztjn6LNUlyVHY9+ybxrjY6W/bZ8= ARC-Message-Signature: i=1; a=rsa-sha256; c=relaxed/relaxed; d=zoho.com; s=zohoarc; t=1562322192; 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=vJSS81u6T6OD4B01ceXdAR0EXBiVB+6aLefaLgTk9wU=; b=ScX8zjReXoMgWXEF4LNbhIzFFGB54wn+Cn/JlKAuINwfNuuQFFy9EMl1WSuz3tqSe4Db1yNDU8AllC8ZU6ukHGHepf26AdbWCDPVg/MZ2S6n6ab6PIbxvKJ5rQLPGg+0SKQCrtB1gd8n3G4kogHYzzwygQdZg5MMGQZHH3+ajRw= 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 156232219230027.76103523292079; Fri, 5 Jul 2019 03:23:12 -0700 (PDT) Received: from localhost ([::1]:51316 helo=lists1p.gnu.org) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hjLN1-00017r-Bj for importer@patchew.org; Fri, 05 Jul 2019 06:23:11 -0400 Received: from eggs.gnu.org ([2001:470:142:3::10]:52337) by lists.gnu.org with esmtp (Exim 4.86_2) (envelope-from ) id 1hjLLD-0008JL-Da for qemu-devel@nongnu.org; Fri, 05 Jul 2019 06:21:20 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1hjLLB-00070J-Az for qemu-devel@nongnu.org; Fri, 05 Jul 2019 06:21:19 -0400 Received: from relay.sw.ru ([185.231.240.75]:37638) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1hjLL3-0006XU-Fy; Fri, 05 Jul 2019 06:21:11 -0400 Received: from [10.94.4.71] (helo=dptest2.qa.sw.ru) by relay.sw.ru with esmtp (Exim 4.92) (envelope-from ) id 1hjLKv-00062j-Oc; Fri, 05 Jul 2019 13:21:01 +0300 From: Denis Plotnikov To: kwolf@redhat.com, mreitz@redhat.com Date: Fri, 5 Jul 2019 13:21:01 +0300 Message-Id: <20190705102101.1114-1-dplotnikov@virtuozzo.com> X-Mailer: git-send-email 2.17.0 X-detected-operating-system: by eggs.gnu.org: GNU/Linux 3.x X-Received-From: 185.231.240.75 Subject: [Qemu-devel] [PATCH v7] qemu-io: add pattern file for write command 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: vsementsov@virtuozzo.com, qemu-devel@nongnu.org, qemu-block@nongnu.org, den@virtuozzo.com 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" The patch allows to provide a pattern file for write command. There was no similar ability before. Signed-off-by: Denis Plotnikov --- v7: * fix variable naming * make code more readable * extend help for write command v6: * the pattern file is read once to reduce io v5: * file name initiated with null to make compilers happy v4: * missing signed-off clause added v3: * missing file closing added * exclusive flags processing changed * buffer void* converted to char* to fix pointer arithmetics * file reading error processing added --- qemu-io-cmds.c | 86 ++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 80 insertions(+), 6 deletions(-) diff --git a/qemu-io-cmds.c b/qemu-io-cmds.c index 09750a23ce..495170380a 100644 --- a/qemu-io-cmds.c +++ b/qemu-io-cmds.c @@ -343,6 +343,66 @@ static void *qemu_io_alloc(BlockBackend *blk, size_t l= en, int pattern) return buf; } =20 +static void *qemu_io_alloc_from_file(BlockBackend *blk, size_t len, + char *file_name) +{ + char *buf, *buf_origin; + FILE *f =3D fopen(file_name, "r"); + int pattern_len; + + if (!f) { + printf("'%s': %s\n", file_name, strerror(errno)); + return NULL; + } + + if (qemuio_misalign) { + len +=3D MISALIGN_OFFSET; + } + + buf_origin =3D buf =3D blk_blockalign(blk, len); + + pattern_len =3D fread(buf, sizeof(char), len, f); + + if (ferror(f)) { + printf("'%s': %s\n", file_name, strerror(errno)); + goto error; + } + + if (pattern_len =3D=3D 0) { + printf("'%s' is empty\n", file_name); + goto error; + } + + fclose(f); + + if (len > pattern_len) { + char *file_buf =3D g_malloc(sizeof(char) * pattern_len); + memcpy(file_buf, buf, pattern_len); + len -=3D pattern_len; + buf +=3D pattern_len; + + while (len > 0) { + size_t len_to_copy =3D MIN(pattern_len, len); + + memcpy(buf, file_buf, len_to_copy); + + len -=3D len_to_copy; + buf +=3D len_to_copy; + } + qemu_vfree(file_buf); + } + + if (qemuio_misalign) { + buf_origin +=3D MISALIGN_OFFSET; + } + + return buf_origin; + +error: + qemu_vfree(buf_origin); + return NULL; +} + static void qemu_io_free(void *p) { if (qemuio_misalign) { @@ -949,6 +1009,7 @@ static void write_help(void) " -n, -- with -z, don't allow slow fallback\n" " -p, -- ignored for backwards compatibility\n" " -P, -- use different pattern to fill file\n" +" -s, -- use a pattern file to fill the write buffer\n" " -C, -- report statistics in a machine parsable format\n" " -q, -- quiet mode, do not show I/O statistics\n" " -u, -- with -z, allow unmapping\n" @@ -965,7 +1026,7 @@ static const cmdinfo_t write_cmd =3D { .perm =3D BLK_PERM_WRITE, .argmin =3D 2, .argmax =3D -1, - .args =3D "[-bcCfnquz] [-P pattern] off len", + .args =3D "[-bcCfnquz] [-P pattern | -s source_file] off len", .oneline =3D "writes a number of bytes at a specified offset", .help =3D write_help, }; @@ -974,7 +1035,7 @@ static int write_f(BlockBackend *blk, int argc, char *= *argv) { struct timeval t1, t2; bool Cflag =3D false, qflag =3D false, bflag =3D false; - bool Pflag =3D false, zflag =3D false, cflag =3D false; + bool Pflag =3D false, zflag =3D false, cflag =3D false, sflag =3D fals= e; int flags =3D 0; int c, cnt, ret; char *buf =3D NULL; @@ -983,8 +1044,9 @@ static int write_f(BlockBackend *blk, int argc, char *= *argv) /* Some compilers get confused and warn if this is not initialized. */ int64_t total =3D 0; int pattern =3D 0xcd; + char *file_name =3D NULL; =20 - while ((c =3D getopt(argc, argv, "bcCfnpP:quz")) !=3D -1) { + while ((c =3D getopt(argc, argv, "bcCfnpP:quzs:")) !=3D -1) { switch (c) { case 'b': bflag =3D true; @@ -1020,6 +1082,10 @@ static int write_f(BlockBackend *blk, int argc, char= **argv) case 'z': zflag =3D true; break; + case 's': + sflag =3D true; + file_name =3D g_strdup(optarg); + break; default: qemuio_command_usage(&write_cmd); return -EINVAL; @@ -1051,8 +1117,9 @@ static int write_f(BlockBackend *blk, int argc, char = **argv) return -EINVAL; } =20 - if (zflag && Pflag) { - printf("-z and -P cannot be specified at the same time\n"); + if ((int)zflag + (int)Pflag + (int)sflag > 1) { + printf("Only one of -z, -P, and -s" + "can be specified at the same time\n"); return -EINVAL; } =20 @@ -1088,7 +1155,14 @@ static int write_f(BlockBackend *blk, int argc, char= **argv) } =20 if (!zflag) { - buf =3D qemu_io_alloc(blk, count, pattern); + if (sflag) { + buf =3D qemu_io_alloc_from_file(blk, count, file_name); + if (!buf) { + return -EINVAL; + } + } else { + buf =3D qemu_io_alloc(blk, count, pattern); + } } =20 gettimeofday(&t1, NULL); --=20 2.17.0