3 # Test NBD TLS certificate / authorization integration
5 # Copyright (C) 2018-2019 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
=berrange@redhat.com
25 echo "QA output created by $seq"
27 status
=1 # failure is the default!
33 # If we aborted early we want to see this log for diagnosis
34 test -f "$TEST_DIR/server.log" && cat "$TEST_DIR/server.log"
35 rm -f "$TEST_DIR/server.log"
38 trap "_cleanup; exit \$status" 0 1 2 3 15
40 # get standard environment, filters and checks
47 _supported_fmt raw qcow2
49 # If porting to non-Linux, consider using socat instead of ss in common.nbd
51 _require_command QEMU_NBD
53 nbd_server_set_tcp_port
57 echo "== preparing TLS creds =="
59 tls_x509_create_root_ca
"ca1"
60 tls_x509_create_root_ca
"ca2"
61 tls_x509_create_server
"ca1" "server1"
62 tls_x509_create_client
"ca1" "client1"
63 tls_x509_create_client
"ca2" "client2"
66 echo "== preparing image =="
68 $QEMU_IO -c 'w -P 0x11 1m 1m' "$TEST_IMG" | _filter_qemu_io
71 echo "== check TLS client to plain server fails =="
72 nbd_server_start_tcp_socket
-f $IMGFMT "$TEST_IMG" 2> "$TEST_DIR/server.log"
74 obj
=tls-creds-x509
,dir
=${tls_dir}/client1
,endpoint
=client
,id
=tls0
75 $QEMU_IMG info
--image-opts --object $obj \
76 driver
=nbd
,host=$nbd_tcp_addr,port
=$nbd_tcp_port,tls-creds
=tls0 \
77 2>&1 |
sed "s/$nbd_tcp_port/PORT/g"
78 $QEMU_NBD_PROG -L -b $nbd_tcp_addr -p $nbd_tcp_port --object $obj \
84 echo "== check plain client to TLS server fails =="
86 nbd_server_start_tcp_socket \
87 --object tls-creds-x509
,dir
=${tls_dir}/server1
,endpoint
=server
,id
=tls0
,verify-peer
=yes \
89 -f $IMGFMT "$TEST_IMG" 2>> "$TEST_DIR/server.log"
91 $QEMU_IMG info nbd
://localhost
:$nbd_tcp_port 2>&1 |
sed "s/$nbd_tcp_port/PORT/g"
92 $QEMU_NBD_PROG -L -b $nbd_tcp_addr -p $nbd_tcp_port
95 echo "== check TLS works =="
96 obj
=tls-creds-x509
,dir
=${tls_dir}/client1
,endpoint
=client
,id
=tls0
97 $QEMU_IMG info
--image-opts --object $obj \
98 driver
=nbd
,host=$nbd_tcp_addr,port
=$nbd_tcp_port,tls-creds
=tls0 \
99 2>&1 |
sed "s/$nbd_tcp_port/PORT/g"
100 $QEMU_NBD_PROG -L -b $nbd_tcp_addr -p $nbd_tcp_port --object $obj \
104 echo "== check TLS with different CA fails =="
105 obj
=tls-creds-x509
,dir
=${tls_dir}/client2
,endpoint
=client
,id
=tls0
106 $QEMU_IMG info
--image-opts --object $obj \
107 driver
=nbd
,host=$nbd_tcp_addr,port
=$nbd_tcp_port,tls-creds
=tls0 \
108 2>&1 |
sed "s/$nbd_tcp_port/PORT/g"
109 $QEMU_NBD_PROG -L -b $nbd_tcp_addr -p $nbd_tcp_port --object $obj \
113 echo "== perform I/O over TLS =="
114 QEMU_IO_OPTIONS
=$QEMU_IO_OPTIONS_NO_FMT
115 $QEMU_IO -c 'r -P 0x11 1m 1m' -c 'w -P 0x22 1m 1m' --image-opts \
116 --object tls-creds-x509
,dir
=${tls_dir}/client1
,endpoint
=client
,id
=tls0 \
117 driver
=nbd
,host=$nbd_tcp_addr,port
=$nbd_tcp_port,tls-creds
=tls0 \
118 2>&1 | _filter_qemu_io
120 $QEMU_IO -f $IMGFMT -r -U -c 'r -P 0x22 1m 1m' "$TEST_IMG" | _filter_qemu_io
123 echo "== final server log =="
124 cat "$TEST_DIR/server.log"
125 rm -f "$TEST_DIR/server.log"