4 # Tests for persistent dirty bitmaps.
6 # Copyright: Vladimir Sementsov-Ogievskiy 2015-2017
8 # This program is free software; you can redistribute it and/or modify
9 # it under the terms of the GNU General Public License as published by
10 # the Free Software Foundation; either version 2 of the License, or
11 # (at your option) any later version.
13 # This program is distributed in the hope that it will be useful,
14 # but WITHOUT ANY WARRANTY; without even the implied warranty of
15 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 # GNU General Public License for more details.
18 # You should have received a copy of the GNU General Public License
19 # along with this program. If not, see <http://www.gnu.org/licenses/>.
25 from iotests import qemu_img
27 disk = os.path.join(iotests.test_dir, 'disk')
28 disk_size = 0x40000000 # 1G
30 # regions for qemu_io: (start, count) in bytes
31 regions1 = ((0x0fff00, 0x10000),
34 regions2 = ((0x10000000, 0x20000),
35 (0x3fff0000, 0x10000))
37 class TestPersistentDirtyBitmap(iotests.QMPTestCase):
40 qemu_img('create', '-f', iotests.imgfmt, disk, str(disk_size))
46 return iotests.VM().add_drive(disk, opts='node-name=node0')
49 return iotests.VM().add_drive(disk, opts='readonly=on,node-name=node0')
52 result = self.vm.qmp('x-debug-block-dirty-bitmap-sha256',
53 node='drive0', name='bitmap0')
54 return result['return']['sha256']
56 def checkBitmap(self, sha256):
57 result = self.vm.qmp('x-debug-block-dirty-bitmap-sha256',
58 node='drive0', name='bitmap0')
59 self.assert_qmp(result, 'return/sha256', sha256);
61 def writeRegions(self, regions):
63 self.vm.hmp_qemu_io('drive0',
66 def qmpAddBitmap(self):
67 self.vm.qmp('block-dirty-bitmap-add', node='drive0',
68 name='bitmap0', persistent=True)
70 def test_persistent(self):
75 self.writeRegions(regions1)
76 sha256 = self.getSha256()
80 self.vm = self.mkVmRo()
84 #catch 'Persistent bitmaps are lost' possible error
85 log = self.vm.get_log()
86 log = re.sub(r'^\[I \d+\.\d+\] OPENED\n', '', log)
87 log = re.sub(r'\[I \+\d+\.\d+\] CLOSED\n?$', '', log)
94 self.checkBitmap(sha256)
95 self.writeRegions(regions2)
96 sha256 = self.getSha256()
101 self.checkBitmap(sha256)
105 def test_reopen_rw(self):
106 self.vm = self.mkVm()
112 self.writeRegions(regions1)
113 sha256_1 = self.getSha256()
115 self.writeRegions(regions2)
116 sha256_2 = self.getSha256()
117 assert sha256_1 != sha256_2 # Otherwise, it's not very interesting.
119 self.vm.cmd('block-dirty-bitmap-clear', node='drive0',
122 # Start with regions1
124 self.writeRegions(regions1)
125 assert sha256_1 == self.getSha256()
129 self.vm = self.mkVmRo()
132 assert sha256_1 == self.getSha256()
134 # Check that we are in RO mode and can't modify bitmap.
135 self.writeRegions(regions2)
136 assert sha256_1 == self.getSha256()
139 self.vm.cmd('blockdev-reopen', options=[{
140 'node-name': 'node0',
141 'driver': iotests.imgfmt,
149 # Check that bitmap is reopened to RW and we can write to it.
150 self.writeRegions(regions2)
151 assert sha256_2 == self.getSha256()
156 if __name__ == '__main__':
157 iotests.main(supported_fmts=['qcow2'],
158 supported_protocols=['file'],
159 unsupported_imgopts=['compat'])