blob: 92a081b79e959e396bc20cdaa88fb2e1a8614639 [file] [log] [blame]
Philippe Mathieu-Daudé11a82d12019-03-07 15:58:38 +01001#!/usr/bin/env bash
Vladimir Sementsov-Ogievskiy9dd003a2021-01-16 16:44:19 +03002# group: auto quick
Max Reitz34250392016-01-25 19:41:15 +01003#
4# Test case for connecting to a non-existing NBD export name
5#
6# Copyright (C) 2016 Red Hat, Inc.
7#
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.
12#
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.
17#
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/>.
20#
21
22# creator
John Snow42a50092022-03-22 13:42:12 -040023owner=hreitz@redhat.com
Max Reitz34250392016-01-25 19:41:15 +010024
25seq="$(basename $0)"
26echo "QA output created by $seq"
27
Max Reitz34250392016-01-25 19:41:15 +010028status=1 # failure is the default!
29
30_cleanup()
31{
Jeff Codyecfa1852017-04-18 15:42:41 -040032 _cleanup_qemu
Max Reitz9a9c7c82019-10-17 15:31:40 +020033 rm -f "$SOCK_DIR/nbd"
Max Reitz34250392016-01-25 19:41:15 +010034}
35trap "_cleanup; exit \$status" 0 1 2 3 15
36
37# get standard environment, filters and checks
38. ./common.rc
39. ./common.filter
40. ./common.qemu
41
42_supported_fmt generic
43_supported_proto generic
Max Reitz34250392016-01-25 19:41:15 +010044
45keep_stderr=y \
46_launch_qemu 2> >(_filter_nbd)
47
48_send_qemu_cmd $QEMU_HANDLE \
49 "{ 'execute': 'qmp_capabilities' }" \
50 'return'
51
52_send_qemu_cmd $QEMU_HANDLE \
53 "{ 'execute': 'nbd-server-start',
54 'arguments': { 'addr': { 'type': 'unix',
Max Reitz9a9c7c82019-10-17 15:31:40 +020055 'data': { 'path': '$SOCK_DIR/nbd' }}}}" \
Max Reitz34250392016-01-25 19:41:15 +010056 'return'
57
58# This should just result in a client error, not in the server crashing
59$QEMU_IO_PROG -f raw -c quit \
Max Reitz9a9c7c82019-10-17 15:31:40 +020060 "nbd+unix:///no_such_export?socket=$SOCK_DIR/nbd" 2>&1 \
Max Reitz34250392016-01-25 19:41:15 +010061 | _filter_qemu_io | _filter_nbd
Eric Blake5c4fe012020-06-08 13:26:37 -050062# Likewise, with longest possible name permitted in NBD protocol
63$QEMU_IO_PROG -f raw -c quit \
64 "nbd+unix:///$(printf %4096d 1 | tr ' ' a)?socket=$SOCK_DIR/nbd" 2>&1 \
65 | _filter_qemu_io | _filter_nbd | sed 's/aaaa*aa/aa--aa/'
Max Reitz34250392016-01-25 19:41:15 +010066
67_send_qemu_cmd $QEMU_HANDLE \
68 "{ 'execute': 'quit' }" \
69 'return'
70
71wait=1 _cleanup_qemu
72
73# success, all done
74echo '*** done'
75rm -f $seq.full
76status=0