3 # Tests for dirty bitmaps postcopy migration.
5 # Copyright (c) 2016-2017 Virtuozzo International GmbH. All rights reserved.
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/>.
23 from iotests import qemu_img
27 disk_a = os.path.join(iotests.test_dir, 'disk_a')
28 disk_b = os.path.join(iotests.test_dir, 'disk_b')
30 fifo = os.path.join(iotests.test_dir, 'mig_fifo')
35 GiB = 1024 * 1024 * 1024
39 (2 * GiB + 512 * 5, 512),
40 (3 * GiB + 512 * 5, 512),
45 (3 * GiB + 512 * 8, 512),
46 (4 * GiB + 512 * 8, 512),
48 (100 * GiB + GiB // 2, GiB)
52 def apply_discards(vm, discards):
54 vm.hmp_qemu_io('drive0', 'discard {} {}'.format(*d))
57 def event_seconds(event):
58 return event['timestamp']['seconds'] + \
59 event['timestamp']['microseconds'] / 1000000.0
62 def event_dist(e1, e2):
63 return event_seconds(e2) - event_seconds(e1)
66 def check_bitmaps(vm, count):
67 result = vm.qmp('query-block')
70 assert 'dirty-bitmaps' not in result['return'][0]
72 assert len(result['return'][0]['dirty-bitmaps']) == count
75 class TestDirtyBitmapPostcopyMigration(iotests.QMPTestCase):
78 self.vm_a_events += self.vm_a.get_qmp_events()
79 self.vm_b_events += self.vm_b.get_qmp_events()
80 for e in self.vm_a_events:
82 for e in self.vm_b_events:
84 events = (self.vm_a_events + self.vm_b_events)
85 events = [(e['timestamp']['seconds'],
86 e['timestamp']['microseconds'],
89 e.get('data', '')) for e in events]
90 for e in sorted(events):
91 print('{}.{:06} {} {} {}'.format(*e))
101 qemu_img('create', '-f', iotests.imgfmt, disk_a, size)
102 qemu_img('create', '-f', iotests.imgfmt, disk_b, size)
103 self.vm_a = iotests.VM(path_suffix='a').add_drive(disk_a,
105 self.vm_b = iotests.VM(path_suffix='b').add_drive(disk_b,
107 self.vm_b.add_incoming("exec: cat '" + fifo + "'")
111 # collect received events for debug
112 self.vm_a_events = []
113 self.vm_b_events = []
115 def start_postcopy(self):
116 """ Run migration until RESUME event on target. Return this event. """
117 for i in range(nb_bitmaps):
118 result = self.vm_a.qmp('block-dirty-bitmap-add', node='drive0',
119 name='bitmap{}'.format(i),
120 granularity=granularity,
122 self.assert_qmp(result, 'return', {})
124 result = self.vm_a.qmp('x-debug-block-dirty-bitmap-sha256',
125 node='drive0', name='bitmap0')
126 empty_sha256 = result['return']['sha256']
128 apply_discards(self.vm_a, discards1)
130 result = self.vm_a.qmp('x-debug-block-dirty-bitmap-sha256',
131 node='drive0', name='bitmap0')
132 self.discards1_sha256 = result['return']['sha256']
134 # Check, that updating the bitmap by discards works
135 assert self.discards1_sha256 != empty_sha256
137 # We want to calculate resulting sha256. Do it in bitmap0, so, disable
139 for i in range(1, nb_bitmaps):
140 result = self.vm_a.qmp('block-dirty-bitmap-disable', node='drive0',
141 name='bitmap{}'.format(i))
142 self.assert_qmp(result, 'return', {})
144 apply_discards(self.vm_a, discards2)
146 result = self.vm_a.qmp('x-debug-block-dirty-bitmap-sha256',
147 node='drive0', name='bitmap0')
148 self.all_discards_sha256 = result['return']['sha256']
150 # Now, enable some bitmaps, to be updated during migration
151 for i in range(2, nb_bitmaps, 2):
152 result = self.vm_a.qmp('block-dirty-bitmap-enable', node='drive0',
153 name='bitmap{}'.format(i))
154 self.assert_qmp(result, 'return', {})
156 caps = [{'capability': 'dirty-bitmaps', 'state': True},
157 {'capability': 'events', 'state': True}]
159 result = self.vm_a.qmp('migrate-set-capabilities', capabilities=caps)
160 self.assert_qmp(result, 'return', {})
162 result = self.vm_b.qmp('migrate-set-capabilities', capabilities=caps)
163 self.assert_qmp(result, 'return', {})
165 result = self.vm_a.qmp('migrate', uri='exec:cat>' + fifo)
166 self.assert_qmp(result, 'return', {})
168 result = self.vm_a.qmp('migrate-start-postcopy')
169 self.assert_qmp(result, 'return', {})
171 event_resume = self.vm_b.event_wait('RESUME')
172 self.vm_b_events.append(event_resume)
175 def test_postcopy_success(self):
176 event_resume = self.start_postcopy()
178 # enabled bitmaps should be updated
179 apply_discards(self.vm_b, discards2)
181 match = {'data': {'status': 'completed'}}
182 event_complete = self.vm_b.event_wait('MIGRATION', match=match)
183 self.vm_b_events.append(event_complete)
185 # take queued event, should already been happened
186 event_stop = self.vm_a.event_wait('STOP')
187 self.vm_a_events.append(event_stop)
189 downtime = event_dist(event_stop, event_resume)
190 postcopy_time = event_dist(event_resume, event_complete)
192 assert downtime * 10 < postcopy_time
194 print('downtime:', downtime)
195 print('postcopy_time:', postcopy_time)
197 # check that there are no bitmaps stored on source
198 self.vm_a_events += self.vm_a.get_qmp_events()
201 check_bitmaps(self.vm_a, 0)
203 # check that bitmaps are migrated and persistence works
204 check_bitmaps(self.vm_b, nb_bitmaps)
206 # recreate vm_b, so there is no incoming option, which prevents
207 # loading bitmaps from disk
208 self.vm_b = iotests.VM(path_suffix='b').add_drive(disk_b)
210 check_bitmaps(self.vm_b, nb_bitmaps)
212 # Check content of migrated bitmaps. Still, don't waste time checking
214 for i in range(0, nb_bitmaps, 5):
215 result = self.vm_b.qmp('x-debug-block-dirty-bitmap-sha256',
216 node='drive0', name='bitmap{}'.format(i))
217 sha = self.discards1_sha256 if i % 2 else self.all_discards_sha256
218 self.assert_qmp(result, 'return/sha256', sha)
220 def test_early_shutdown_destination(self):
221 self.start_postcopy()
223 self.vm_b_events += self.vm_b.get_qmp_events()
225 # recreate vm_b, so there is no incoming option, which prevents
226 # loading bitmaps from disk
227 self.vm_b = iotests.VM(path_suffix='b').add_drive(disk_b)
229 check_bitmaps(self.vm_b, 0)
231 # Bitmaps will be lost if we just shutdown the vm, as they are marked
232 # to skip storing to disk when prepared for migration. And that's
233 # correct, as actual data may be modified in target vm, so we play
235 # Still, this mark would be taken away if we do 'cont', and bitmaps
236 # become persistent again. (see iotest 169 for such behavior case)
237 result = self.vm_a.qmp('query-status')
238 assert not result['return']['running']
239 self.vm_a_events += self.vm_a.get_qmp_events()
242 check_bitmaps(self.vm_a, 0)
244 def test_early_kill_source(self):
245 self.start_postcopy()
247 self.vm_a_events = self.vm_a.get_qmp_events()
252 match = {'data': {'status': 'completed'}}
253 e_complete = self.vm_b.event_wait('MIGRATION', match=match)
254 self.vm_b_events.append(e_complete)
256 check_bitmaps(self.vm_a, 0)
257 check_bitmaps(self.vm_b, 0)
260 if __name__ == '__main__':
261 iotests.main(supported_fmts=['qcow2'])