2020-01-30 19:32:30 +03:00
|
|
|
#!/usr/bin/env python3
|
2021-01-16 16:44:19 +03:00
|
|
|
# group: rw quick
|
2019-02-08 18:06:08 +03:00
|
|
|
#
|
|
|
|
# Test for qcow2 bitmap printed information
|
|
|
|
#
|
|
|
|
# Copyright (c) 2019 Virtuozzo International GmbH
|
|
|
|
#
|
|
|
|
# This program is free software; you can redistribute it and/or modify
|
|
|
|
# it under the terms of the GNU General Public License as published by
|
|
|
|
# the Free Software Foundation; either version 2 of the License, or
|
|
|
|
# (at your option) any later version.
|
|
|
|
#
|
|
|
|
# This program is distributed in the hope that it will be useful,
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
# GNU General Public License for more details.
|
|
|
|
#
|
|
|
|
# You should have received a copy of the GNU General Public License
|
|
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
#
|
|
|
|
|
|
|
|
import iotests
|
|
|
|
import json
|
2019-02-26 19:11:35 +03:00
|
|
|
import struct
|
2022-04-19 00:14:53 +03:00
|
|
|
from iotests import qemu_img_create, qemu_io_log, qemu_img_info, \
|
|
|
|
file_path, img_info_log, log
|
2019-02-08 18:06:08 +03:00
|
|
|
|
2020-10-27 22:05:53 +03:00
|
|
|
iotests.script_initialize(supported_fmts=['qcow2'],
|
2021-12-23 19:01:28 +03:00
|
|
|
supported_protocols=['file'],
|
|
|
|
unsupported_imgopts=['refcount_bits', 'compat'])
|
2019-02-08 18:06:08 +03:00
|
|
|
|
|
|
|
disk = file_path('disk')
|
|
|
|
chunk = 256 * 1024
|
|
|
|
bitmap_flag_unknown = 1 << 2
|
|
|
|
# flag_offset = 5*cluster_size + flag_offset_in_bitmap_directory_entry
|
|
|
|
flag_offset = 0x5000f
|
|
|
|
|
|
|
|
|
|
|
|
def print_bitmap(extra_args):
|
|
|
|
log('qemu-img info dump:\n')
|
|
|
|
img_info_log(disk, extra_args=extra_args)
|
2022-03-21 23:16:08 +03:00
|
|
|
result = qemu_img_info('--force-share', disk)
|
2019-02-08 18:06:08 +03:00
|
|
|
if 'bitmaps' in result['format-specific']['data']:
|
|
|
|
bitmaps = result['format-specific']['data']['bitmaps']
|
|
|
|
log('The same bitmaps in JSON format:')
|
|
|
|
log(bitmaps, indent=2)
|
|
|
|
else:
|
|
|
|
log('No bitmap in JSON format output')
|
|
|
|
|
|
|
|
|
|
|
|
def add_bitmap(bitmap_number, persistent, disabled):
|
|
|
|
granularity = 1 << (13 + bitmap_number)
|
|
|
|
bitmap_name = 'bitmap-' + str(bitmap_number-1)
|
|
|
|
vm = iotests.VM().add_drive(disk)
|
|
|
|
vm.launch()
|
|
|
|
vm.qmp_log('block-dirty-bitmap-add', node='drive0', name=bitmap_name,
|
|
|
|
granularity=granularity, persistent=persistent,
|
|
|
|
disabled=disabled)
|
|
|
|
vm.shutdown()
|
|
|
|
|
|
|
|
|
|
|
|
def write_to_disk(offset, size):
|
|
|
|
write = 'write {} {}'.format(offset, size)
|
2022-04-19 00:14:53 +03:00
|
|
|
qemu_io_log('-c', write, disk)
|
2019-02-08 18:06:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
def toggle_flag(offset):
|
|
|
|
with open(disk, "r+b") as f:
|
|
|
|
f.seek(offset, 0)
|
2019-02-26 19:11:35 +03:00
|
|
|
# Read one byte in a way compatible with Python 2
|
|
|
|
flags = struct.unpack("B", f.read(1))
|
|
|
|
toggled = flags[0] ^ bitmap_flag_unknown
|
2019-02-08 18:06:08 +03:00
|
|
|
f.seek(-1, 1)
|
2019-02-26 19:11:35 +03:00
|
|
|
f.write(struct.pack("B", toggled))
|
2019-02-08 18:06:08 +03:00
|
|
|
|
|
|
|
|
|
|
|
qemu_img_create('-f', iotests.imgfmt, disk, '1M')
|
|
|
|
|
|
|
|
for num in range(1, 4):
|
|
|
|
disabled = False
|
|
|
|
if num == 2:
|
|
|
|
disabled = True
|
|
|
|
log('Test {}'.format(num))
|
|
|
|
add_bitmap(num, num > 1, disabled)
|
|
|
|
write_to_disk((num-1) * chunk, chunk)
|
|
|
|
print_bitmap([])
|
|
|
|
log('')
|
|
|
|
|
|
|
|
vm = iotests.VM().add_drive(disk)
|
|
|
|
vm.launch()
|
|
|
|
num += 1
|
|
|
|
log('Test {}\nChecking "in-use" flag...'.format(num))
|
|
|
|
print_bitmap(['--force-share'])
|
|
|
|
vm.shutdown()
|
|
|
|
|
|
|
|
num += 1
|
|
|
|
log('\nTest {}'.format(num))
|
|
|
|
qemu_img_create('-f', iotests.imgfmt, disk, '1M')
|
|
|
|
add_bitmap(1, True, False)
|
|
|
|
log('Write an unknown bitmap flag \'{}\' into a new QCOW2 image at offset {}'
|
|
|
|
.format(hex(bitmap_flag_unknown), flag_offset))
|
|
|
|
toggle_flag(flag_offset)
|
iotests: make qemu_img_log and img_info_log raise on error
Add a `check: bool = True` parameter to both functions and make their
qemu_img() invocations raise on error by default.
users of img_info_log:
206, 207, 210, 211, 212, 213, 237, 242, 266, 274, 302
users of qemu_img_log:
044, 209, 274, 302, 304
iotests 242 and 266 need to use check=False for their negative tests.
iotests 206, 210, 211, 212, 213, 237, 274 and 302 continue working
normally.
As of this commit, all calls to QEMU_IMG made from iotests enforce a
return code of zero by default unless explicitly disabled or suppressed
by passing check=False or with an exception handler.
Signed-off-by: John Snow <jsnow@redhat.com>
Message-Id: <20220321201618.903471-19-jsnow@redhat.com>
Reviewed-by: Eric Blake <eblake@redhat.com>
Signed-off-by: Hanna Reitz <hreitz@redhat.com>
2022-03-21 23:16:18 +03:00
|
|
|
img_info_log(disk, check=False)
|
2019-02-08 18:06:08 +03:00
|
|
|
toggle_flag(flag_offset)
|
|
|
|
log('Unset the unknown bitmap flag \'{}\' in the bitmap directory entry:\n'
|
|
|
|
.format(hex(bitmap_flag_unknown)))
|
|
|
|
img_info_log(disk)
|
|
|
|
log('Test complete')
|