From: alexander.ivanov@virtuozzo.com
To: qemu-devel@nongnu.org
Cc: den@virtuozzo.com, natalia.kuzmina@openvz.org,
stefanha@redhat.com, vsementsov@yandex-team.ru, kwolf@redhat.com,
hreitz@redhat.com, qemu-block@nongnu.org
Subject: [PATCH v2 0/3] Check and repair duplicated clusters in parallels images
Date: Fri, 5 Aug 2022 17:47:49 +0200 [thread overview]
Message-ID: <20220805154752.799395-1-alexander.ivanov@virtuozzo.com> (raw)
From: Alexander Ivanov <alexander.ivanov@virtuozzo.com>
We will add more and more checks of images so we need to reorganize the code.
Put each check to a separate helper function with a separate loop.
Add two helpers: truncate_file() and sync_header(). They will be used
in multiple functions.
Parallels image file can be corrupted this way: two guest memory areas
refer to the same host memory area (duplicated offsets in BAT).
qemu-img check copies data from duplicated cluster to the new cluster and
writes new corresponding offset to BAT instead of duplicated one.
Test 314 uses sample corrupted image parallels-2-duplicated-cluster.bz2.
Reading from duplicated offset and from original offset returns the same
data. After repairing changing either of these blocks of data
does not affect another one.
v2 changes:
* Split parallels_co_check() to separate functions.
* Move buffer allocation outside the loop.
* Replace work with internals by zeroing BAT entries and
allocate_clusters() calling.
* Make reverse table unsigned and replace -1 by 0xFFFFFFFF.
* Some minor fixes.
* Add more detailed comments.
Alexander Ivanov (3):
parallels: Put the image checks in separate functions
parallels: Add checking and repairing duplicate offsets in BAT
iotests, parallels: Add a test for duplicated clusters
block/parallels.c | 315 +++++++++++++++---
tests/qemu-iotests/314 | 89 +++++
tests/qemu-iotests/314.out | 36 ++
.../parallels-2-duplicated-cluster.bz2 | Bin 0 -> 148 bytes
4 files changed, 393 insertions(+), 47 deletions(-)
create mode 100755 tests/qemu-iotests/314
create mode 100644 tests/qemu-iotests/314.out
create mode 100644 tests/qemu-iotests/sample_images/parallels-2-duplicated-cluster.bz2
--
2.34.1
next reply other threads:[~2022-08-05 15:50 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-08-05 15:47 alexander.ivanov [this message]
2022-08-05 15:47 ` [PATCH v2 1/3] parallels: Put the image checks in separate functions alexander.ivanov
2022-08-06 19:00 ` Vladimir Sementsov-Ogievskiy
2022-08-05 15:47 ` [PATCH v2 2/3] parallels: Add checking and repairing duplicate offsets in BAT alexander.ivanov
2022-08-06 20:45 ` Vladimir Sementsov-Ogievskiy
2022-08-06 21:07 ` Denis V. Lunev
2022-08-05 15:47 ` [PATCH v2 3/3] iotests, parallels: Add a test for duplicated clusters alexander.ivanov
2022-08-06 20:56 ` Vladimir Sementsov-Ogievskiy
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=20220805154752.799395-1-alexander.ivanov@virtuozzo.com \
--to=alexander.ivanov@virtuozzo.com \
--cc=den@virtuozzo.com \
--cc=hreitz@redhat.com \
--cc=kwolf@redhat.com \
--cc=natalia.kuzmina@openvz.org \
--cc=qemu-block@nongnu.org \
--cc=qemu-devel@nongnu.org \
--cc=stefanha@redhat.com \
--cc=vsementsov@yandex-team.ru \
/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).