xref: /openbmc/qemu/tests/qemu-iotests/280 (revision 7c477526)
1*7c477526SPhilippe Mathieu-Daudé#!/usr/bin/env python3
2f62f08abSKevin Wolf#
3f62f08abSKevin Wolf# Copyright (C) 2019 Red Hat, Inc.
4f62f08abSKevin Wolf#
5f62f08abSKevin Wolf# This program is free software; you can redistribute it and/or modify
6f62f08abSKevin Wolf# it under the terms of the GNU General Public License as published by
7f62f08abSKevin Wolf# the Free Software Foundation; either version 2 of the License, or
8f62f08abSKevin Wolf# (at your option) any later version.
9f62f08abSKevin Wolf#
10f62f08abSKevin Wolf# This program is distributed in the hope that it will be useful,
11f62f08abSKevin Wolf# but WITHOUT ANY WARRANTY; without even the implied warranty of
12f62f08abSKevin Wolf# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13f62f08abSKevin Wolf# GNU General Public License for more details.
14f62f08abSKevin Wolf#
15f62f08abSKevin Wolf# You should have received a copy of the GNU General Public License
16f62f08abSKevin Wolf# along with this program.  If not, see <http://www.gnu.org/licenses/>.
17f62f08abSKevin Wolf#
18f62f08abSKevin Wolf# Creator/Owner: Kevin Wolf <kwolf@redhat.com>
19f62f08abSKevin Wolf#
20f62f08abSKevin Wolf# Test migration to file for taking an external snapshot with VM state.
21f62f08abSKevin Wolf
22f62f08abSKevin Wolfimport iotests
23f62f08abSKevin Wolfimport os
24f62f08abSKevin Wolf
25f62f08abSKevin Wolfiotests.verify_image_format(supported_fmts=['qcow2'])
26f62f08abSKevin Wolfiotests.verify_protocol(supported=['file'])
27f62f08abSKevin Wolfiotests.verify_platform(['linux'])
28f62f08abSKevin Wolf
29f62f08abSKevin Wolfwith iotests.FilePath('base') as base_path , \
30f62f08abSKevin Wolf     iotests.FilePath('top') as top_path, \
31f62f08abSKevin Wolf     iotests.VM() as vm:
32f62f08abSKevin Wolf
33f62f08abSKevin Wolf    iotests.qemu_img_log('create', '-f', iotests.imgfmt, base_path, '64M')
34f62f08abSKevin Wolf
35f62f08abSKevin Wolf    iotests.log('=== Launch VM ===')
36f62f08abSKevin Wolf    vm.add_object('iothread,id=iothread0')
37f62f08abSKevin Wolf    vm.add_blockdev('file,filename=%s,node-name=base-file' % (base_path))
38f62f08abSKevin Wolf    vm.add_blockdev('%s,file=base-file,node-name=base-fmt' % (iotests.imgfmt))
39f62f08abSKevin Wolf    vm.add_device('virtio-blk,drive=base-fmt,iothread=iothread0,id=vda')
40f62f08abSKevin Wolf    vm.launch()
41f62f08abSKevin Wolf
42f62f08abSKevin Wolf    vm.enable_migration_events('VM')
43f62f08abSKevin Wolf
44f62f08abSKevin Wolf    iotests.log('\n=== Migrate to file ===')
45f62f08abSKevin Wolf    vm.qmp_log('migrate', uri='exec:cat > /dev/null')
46f62f08abSKevin Wolf
47f62f08abSKevin Wolf    with iotests.Timeout(3, 'Migration does not complete'):
488da7969bSMax Reitz        vm.wait_migration('postmigrate')
49f62f08abSKevin Wolf
50f62f08abSKevin Wolf    iotests.log('\nVM is now stopped:')
51f62f08abSKevin Wolf    iotests.log(vm.qmp('query-migrate')['return']['status'])
52f62f08abSKevin Wolf    vm.qmp_log('query-status')
53f62f08abSKevin Wolf
54f62f08abSKevin Wolf    iotests.log('\n=== Create a snapshot of the disk image ===')
55f62f08abSKevin Wolf    vm.blockdev_create({
56f62f08abSKevin Wolf        'driver': 'file',
57f62f08abSKevin Wolf        'filename': top_path,
58f62f08abSKevin Wolf        'size': 0,
59f62f08abSKevin Wolf    })
60f62f08abSKevin Wolf    vm.qmp_log('blockdev-add', node_name='top-file',
61f62f08abSKevin Wolf               driver='file', filename=top_path,
62f62f08abSKevin Wolf               filters=[iotests.filter_qmp_testfiles])
63f62f08abSKevin Wolf
64f62f08abSKevin Wolf    vm.blockdev_create({
65f62f08abSKevin Wolf        'driver': iotests.imgfmt,
66f62f08abSKevin Wolf        'file': 'top-file',
67f62f08abSKevin Wolf        'size': 1024 * 1024,
68f62f08abSKevin Wolf    })
69f62f08abSKevin Wolf    vm.qmp_log('blockdev-add', node_name='top-fmt',
70f62f08abSKevin Wolf               driver=iotests.imgfmt, file='top-file')
71f62f08abSKevin Wolf
72f62f08abSKevin Wolf    vm.qmp_log('blockdev-snapshot', node='base-fmt', overlay='top-fmt')
73f62f08abSKevin Wolf
74f62f08abSKevin Wolf    iotests.log('\n=== Resume the VM and simulate a write request ===')
75f62f08abSKevin Wolf    vm.qmp_log('cont')
76f62f08abSKevin Wolf    iotests.log(vm.hmp_qemu_io('-d vda/virtio-backend', 'write 4k 4k'))
77f62f08abSKevin Wolf
78f62f08abSKevin Wolf    iotests.log('\n=== Commit it to the backing file ===')
79f62f08abSKevin Wolf    result = vm.qmp_log('block-commit', job_id='job0', auto_dismiss=False,
80f62f08abSKevin Wolf                        device='top-fmt', top_node='top-fmt',
81f62f08abSKevin Wolf                        filters=[iotests.filter_qmp_testfiles])
82f62f08abSKevin Wolf    if 'return' in result:
83f62f08abSKevin Wolf        vm.run_job('job0')
84