3 # Test case for ejecting a BlockBackend with an NBD server attached to it
5 # Verify that the NBD server stops offering the drive when ejecting a
6 # BlockDriverState tree from a BlockBackend (that is, a medium from a
7 # drive) exposed via an NBD server.
9 # Copyright (C) 2016 Red Hat, Inc.
11 # This program is free software; you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation; either version 2 of the License, or
14 # (at your option) any later version.
16 # This program is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
21 # You should have received a copy of the GNU General Public License
22 # along with this program. If not, see <http://www.gnu.org/licenses/>.
26 owner
=mreitz@redhat.com
29 echo "QA output created by $seq"
31 status
=1 # failure is the default!
39 trap "_cleanup; exit \$status" 0 1 2 3 15
41 # get standard environment, filters and checks
46 _supported_fmt generic
52 $QEMU_IO -c 'write -P 42 0 64k' "$TEST_IMG" | _filter_qemu_io
54 if test "$IMGOPTSSYNTAX" = "true"
56 SYSEMU_DRIVE_ARG
=if=none
,media
=cdrom
,id
=drv
,"$TEST_IMG"
58 SYSEMU_DRIVE_ARG
=if=none
,media
=cdrom
,id
=drv
,file="$TEST_IMG",driver
=$IMGFMT
62 _launch_qemu
-drive $SYSEMU_DRIVE_ARG \
65 _send_qemu_cmd
$QEMU_HANDLE \
66 "{ 'execute': 'qmp_capabilities' }" \
69 _send_qemu_cmd
$QEMU_HANDLE \
70 "{ 'execute': 'nbd-server-start',
71 'arguments': { 'addr': { 'type': 'unix',
72 'data': { 'path': '$SOCK_DIR/nbd' }}}}" \
75 _send_qemu_cmd
$QEMU_HANDLE \
76 "{ 'execute': 'nbd-server-add',
77 'arguments': { 'device': 'drv' }}" \
80 $QEMU_IO_PROG -f raw
-r -c 'read -P 42 0 64k' \
81 "nbd+unix:///drv?socket=$SOCK_DIR/nbd" 2>&1 \
82 | _filter_qemu_io | _filter_nbd
84 # The order of 'return' and the BLOCK_EXPORT_DELETED event is undefined. Just
85 # wait until we've twice seen one of them. Filter the 'return' line out so that
86 # the output is defined.
87 _send_qemu_cmd
$QEMU_HANDLE \
88 "{ 'execute': 'eject',
89 'arguments': { 'device': 'drv' }}" \
90 'return\|BLOCK_EXPORT_DELETED' |
93 _send_qemu_cmd
$QEMU_HANDLE '' 'return\|BLOCK_EXPORT_DELETED' |
96 $QEMU_IO_PROG -f raw
-r -c close \
97 "nbd+unix:///drv?socket=$SOCK_DIR/nbd" 2>&1 \
98 | _filter_qemu_io | _filter_nbd
100 _send_qemu_cmd
$QEMU_HANDLE \
101 "{ 'execute': 'quit' }" \