3 # Test old-style block migration (migrate -b)
5 # Copyright (C) 2017 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/>.
22 owner
=kwolf@redhat.com
25 echo "QA output created by $seq"
27 status
=1 # failure is the default!
29 MIG_SOCKET
="${TEST_DIR}/migrate"
34 rm -f "${TEST_IMG}.dest"
38 trap "_cleanup; exit \$status" 0 1 2 3 15
40 # get standard environment, filters and checks
45 _supported_fmt qcow2 raw qed quorum
51 TEST_IMG
="${TEST_IMG}.dest" _make_test_img
$size
54 echo === Starting VMs
===
57 qemu_comm_method
="qmp"
60 -drive file="${TEST_IMG}",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk
62 _send_qemu_cmd
$src "{ 'execute': 'qmp_capabilities' }" 'return'
65 -drive file="${TEST_IMG}.dest",cache
=$CACHEMODE,driver
=$IMGFMT,id
=disk \
66 -incoming "unix:${MIG_SOCKET}"
68 _send_qemu_cmd
$dest "{ 'execute': 'qmp_capabilities' }" 'return'
71 echo === Write something on the
source ===
75 "{ 'execute': 'human-monitor-command',
76 'arguments': { 'command-line':
77 'qemu-io disk \"write -P 0x55 0 64k\"' } }" \
80 "{ 'execute': 'human-monitor-command',
81 'arguments': { 'command-line':
82 'qemu-io disk \"read -P 0x55 0 64k\"' } }" \
86 echo === Do block migration to destination
===
89 reply
="$(_send_qemu_cmd $src \
90 "{ 'execute': 'migrate',
91 'arguments': { 'uri': 'unix:${MIG_SOCKET}', 'blk': true
} }" \
94 if echo "$reply" |
grep "compiled without old-style" > /dev
/null
; then
95 _notrun
"migrate -b support not compiled in"
98 QEMU_COMM_TIMEOUT
=0.1 qemu_cmd_repeat
=50 silent
=yes \
99 _send_qemu_cmd
$src "{ 'execute': 'query-migrate' }" '"status": "completed"'
100 _send_qemu_cmd
$src "{ 'execute': 'query-status' }" "return"
103 echo === Do some I
/O on the destination
===
106 # It is important that we use the BlockBackend of the guest device here instead
107 # of the node name, which would create a new BlockBackend and not test whether
108 # the guest has the necessary permissions to access the image now
109 silent
=yes _send_qemu_cmd
$dest "" "100 %"
110 _send_qemu_cmd
$dest "{ 'execute': 'query-status' }" "return"
111 _send_qemu_cmd
$dest \
112 "{ 'execute': 'human-monitor-command',
113 'arguments': { 'command-line':
114 'qemu-io disk \"read -P 0x55 0 64k\"' } }" \
116 _send_qemu_cmd
$dest \
117 "{ 'execute': 'human-monitor-command',
118 'arguments': { 'command-line':
119 'qemu-io disk \"write -P 0x66 1M 64k\"' } }" \
123 echo === Shut down and check image
===
126 _send_qemu_cmd
$src '{"execute":"quit"}' 'return'
127 _send_qemu_cmd
$dest '{"execute":"quit"}' 'return'
131 TEST_IMG
="${TEST_IMG}.dest" _check_test_img
133 $QEMU_IO -c 'write -P 0x66 1M 64k' "$TEST_IMG" | _filter_qemu_io
134 $QEMU_IMG compare
"$TEST_IMG.dest" "$TEST_IMG"