3 # Tests growing a large refcount table.
5 # Copyright (C) 2012 Red Hat, Inc.
7 # This program is free software; you can redistribute it and/or modify
8 # it under the terms of the GNU General Public License as published by
9 # the Free Software Foundation; either version 2 of the License, or
10 # (at your option) any later version.
12 # This program is distributed in the hope that it will be useful,
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 # GNU General Public License for more details.
17 # You should have received a copy of the GNU General Public License
18 # along with this program. If not, see <http://www.gnu.org/licenses/>.
24 from qcow2 import QcowHeader
26 from iotests import qemu_img, qemu_img_verbose, qemu_io
31 if sys.version_info.major == 2:
34 test_img = os.path.join(iotests.test_dir, 'test.img')
36 class TestRefcountTableGrowth(iotests.QMPTestCase):
37 '''Abstract base class for image mirroring test cases'''
39 def preallocate(self, name):
40 fd = open(name, "r+b")
43 off_refblock = off_reftable + (512 * 512)
44 off_l1 = off_refblock + (512 * 512 * 64)
45 off_l2 = off_l1 + (512 * 512 * 4 * 8)
46 off_data = off_l2 + (512 * 512 * 4 * 512)
50 h.refcount_table_offset = off_reftable
51 h.refcount_table_clusters = 512
52 h.l1_table_offset = off_l1
53 h.l1_size = 512 * 512 * 4
56 # Write a refcount table
59 for i in range(0, h.refcount_table_clusters):
60 sector = b''.join(struct.pack('>Q',
61 off_refblock + i * 64 * 512 + j * 512)
62 for j in range(0, 64))
65 # Write the refcount blocks
66 assert(fd.tell() == off_refblock)
67 sector = b''.join(struct.pack('>H', 1) for j in range(0, 64 * 256))
68 for block in range(0, h.refcount_table_clusters):
72 assert(fd.tell() == off_l1)
73 assert(off_l2 + 512 * h.l1_size == off_data)
74 table = b''.join(struct.pack('>Q', (1 << 63) | off_l2 + 512 * j)
75 for j in range(0, h.l1_size))
79 assert(fd.tell() == off_l2)
80 img_file_size = h.refcount_table_clusters * 64 * 256 * 512
81 remaining = img_file_size - off_data
84 while remaining > 1024 * 512:
85 pytable = list((1 << 63) | off + 512 * j
86 for j in range(0, 1024))
87 table = struct.pack('>1024Q', *pytable)
89 remaining = remaining - 1024 * 512
90 off = off + 1024 * 512
92 table = b''.join(struct.pack('>Q', (1 << 63) | off + 512 * j)
93 for j in range(0, remaining // 512))
98 fd.truncate(img_file_size)
106 qemu_img('create', '-f', iotests.imgfmt, '-o', 'cluster_size=512', test_img, '16G')
107 self.preallocate(test_img)
115 def test_grow_refcount_table(self):
116 qemu_io('-c', 'write 3800M 1M', test_img)
117 qemu_img_verbose('check' , test_img)
120 if __name__ == '__main__':
121 iotests.main(supported_fmts=['qcow2'],
122 supported_protocols=['file'])