3 # Copyright (C) 2018-2020 Red Hat Inc.
5 # Redistribution and use in source and binary forms, with or without
6 # modification, are permitted provided that the following conditions are
9 # * Redistributions of source code must retain the above copyright
10 # notice, this list of conditions and the following disclaimer.
12 # * Redistributions in binary form must reproduce the above copyright
13 # notice, this list of conditions and the following disclaimer in the
14 # documentation and/or other materials provided with the distribution.
16 # * Neither the name of Red Hat nor the names of its contributors may be
17 # used to endorse or promote products derived from this software without
18 # specific prior written permission.
20 # THIS SOFTWARE IS PROVIDED BY RED HAT AND CONTRIBUTORS ''AS IS'' AND
21 # ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO,
22 # THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A
23 # PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL RED HAT OR
24 # CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 # SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 # LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
27 # USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
28 # ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY,
29 # OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT
30 # OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
39 requires nbdsh
-c 'i = nbd.CMD_FLAG_FAST_ZERO'
41 files
="retry-zero-flags-count retry-zero-flags-open-count"
43 cleanup_fn
rm -f $files
45 touch retry-zero-flags-count retry-zero-flags-open-count
48 # Create a custom plugin which will test retrying.
51 --filter=retry retry-delay
=1 \
52 --run 'nbdsh --uri "$uri" -c "
56 nbd.CMD_FLAG_FUA | nbd.CMD_FLAG_NO_HOLE | nbd.CMD_FLAG_FAST_ZERO)
57 except nbd.Error as ex:
58 assert ex.errno == \"ENOTSUP\"
59 h.zero(512, 0, nbd.CMD_FLAG_FUA)
64 # Count how many times the connection is (re-)opened.
65 read i < retry-zero-flags-open-count
66 echo $((i+1)) > retry-zero-flags-open-count
68 can_write | can_zero) exit 0 ;;
70 # Drop FUA support on particular reopens
71 read i < retry-zero-flags-open-count
78 # Drop fast zero support on particular reopens
79 read i < retry-zero-flags-open-count
86 # First zero fails, thereafter it works
87 read i < retry-zero-flags-count
89 echo $i > retry-zero-flags-count
91 echo "EIO zero failed" >&2
101 # In this test we should see the following pattern:
102 # open count 1: both fua and fast_zero supported
104 # retry and wait 1 seconds
105 # only fast_zero supported
106 # first zero succeeds
107 # second zero FAILS due to missing fua support
108 # retry and wait 1 seconds
109 # open count 2: neither fua nor fast_zero supported
110 # second zero FAILS fast due to missing fast_zero support
111 # third zero FAILS due to missing fua support
112 # retry and wait 1 seconds
113 # open count 3: only fua supported
114 # third zero succeeds
116 # The minimum time for the test should be 1+1+1 = 3 seconds.
118 if [ $
((end_t
- start_t
)) -lt 3 ]; then
119 echo "$0: test ran too quickly"
123 # Check the handle was opened 4 times (first open + one reopen for
125 read open_count
< retry-zero-flags-open-count
126 if [ $open_count -ne 4 ]; then
127 echo "$0: open-count ($open_count) != 4"