Whamcloud - gitweb
8f2c799b3e4aa5781b3ea571112ad374a6d7011c
[fs/lustre-release.git] / lustre / tests / replay-ost-single.sh
1 #!/bin/bash
2
3 set -e
4
5 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
6 SETUP=${SETUP:-""}
7 CLEANUP=${CLEANUP:-""}
8 . $LUSTRE/tests/test-framework.sh
9 init_test_env $@
10 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
11 init_logging
12
13 # While we do not use OSTCOUNT=1 setup anymore,
14 # ost1failover_HOST is used
15 #ostfailover_HOST=${ostfailover_HOST:-$ost_HOST}
16 #failover= must be defined in OST_MKFS_OPTIONS if ostfailover_HOST != ost_HOST
17
18 require_dsh_ost || exit 0
19
20 # Tests that fail on uml
21 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
22 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 6"
23
24 # Skip these tests
25 # BUG NUMBER: 
26 ALWAYS_EXCEPT="$REPLAY_OST_SINGLE_EXCEPT"
27
28 #                                       
29 [ "$SLOW" = "no" ] && EXCEPT_SLOW="5"
30
31 build_test_filter
32
33 check_and_setup_lustre
34 assert_DIR
35 rm -rf $DIR/[df][0-9]*
36
37 TDIR=$DIR/d0.${TESTSUITE}
38 mkdir -p $TDIR
39 $LFS setstripe $TDIR -i 0 -c 1
40 $LFS getstripe $TDIR
41
42 test_0a() {
43     zconf_umount `hostname` $MOUNT -f
44     # needs to run during initial client->OST connection
45     #define OBD_FAIL_OST_ALL_REPLY_NET       0x211
46     do_facet ost1 "lctl set_param fail_loc=0x80000211"
47     zconf_mount `hostname` $MOUNT && df $MOUNT || error "0a mount fail"
48 }
49 run_test 0a "target handle mismatch (bug 5317) `date +%H:%M:%S`"
50
51 test_0b() {
52     fail ost1
53     cp /etc/profile  $TDIR/$tfile
54     sync
55     diff /etc/profile $TDIR/$tfile
56     rm -f $TDIR/$tfile
57 }
58 run_test 0b "empty replay"
59
60 test_1() {
61     date > $TDIR/$tfile || error "error creating $TDIR/$tfile"
62     fail ost1
63     $CHECKSTAT -t file $TDIR/$tfile || return 1
64     rm -f $TDIR/$tfile
65 }
66 run_test 1 "touch"
67
68 test_2() {
69     for i in `seq 10`; do
70         echo "tag-$i" > $TDIR/$tfile-$i || error "create $TDIR/$tfile-$i"
71     done 
72     fail ost1
73     for i in `seq 10`; do
74       grep -q "tag-$i" $TDIR/$tfile-$i || error "grep $TDIR/$tfile-$i"
75     done 
76     rm -f $TDIR/$tfile-*
77 }
78 run_test 2 "|x| 10 open(O_CREAT)s"
79
80 test_3() {
81     verify=$ROOT/tmp/verify-$$
82     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $TDIR/$tfile &
83     ddpid=$!
84     sync &
85     fail ost1
86     wait $ddpid || return 1
87     cmp $verify $TDIR/$tfile || return 2
88     rm -f $verify $TDIR/$tfile
89 }
90 run_test 3 "Fail OST during write, with verification"
91
92 test_4() {
93     verify=$ROOT/tmp/verify-$$
94     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $TDIR/$tfile
95     # invalidate cache, so that we're reading over the wire
96     cancel_lru_locks osc
97     cmp $verify $TDIR/$tfile &
98     cmppid=$!
99     fail ost1
100     wait $cmppid || return 1
101     rm -f $verify $TDIR/$tfile
102 }
103 run_test 4 "Fail OST during read, with verification"
104
105 iozone_bg () {
106     local args=$@
107
108     local tmppipe=$TMP/${TESTSUITE}.${TESTNAME}.pipe
109     mkfifo $tmppipe
110
111     echo "+ iozone $args"
112     iozone $args > $tmppipe &
113
114     local pid=$!
115
116     echo "tmppipe=$tmppipe"
117     echo iozone pid=$pid
118
119     # iozone exit code is 0 even if iozone is not completed
120     # need to check iozone output  on "complete"
121     local iozonelog=$TMP/${TESTSUITE}.iozone.log
122     rm -f $iozonelog
123     cat $tmppipe | while read line ; do
124         echo "$line"
125         echo "$line" >>$iozonelog
126     done;
127
128     local rc=0
129     wait $pid
130     rc=$?
131     if ! $(tail -1 $iozonelog | grep -q complete); then
132         echo iozone failed!
133         rc=1
134     fi
135     rm -f $tmppipe
136     rm -f $iozonelog
137     return $rc
138 }
139
140 test_5() {
141     [ -z "`which iozone 2> /dev/null`" ] && skip_env "iozone missing" && return 0
142
143     # striping is -c 1, get min of available
144     local minavail=$(lctl get_param -n osc.*[oO][sS][cC][-_]*.kbytesavail | sort -n | head -1)
145     local size=$(( minavail * 3/4 ))
146     local GB=1048576  # 1048576KB == 1GB
147
148     if (( size > GB )); then
149         size=$GB
150     fi
151     local iozone_opts="-i 0 -i 1 -i 2 -+d -r 4 -s $size -f $TDIR/$tfile"
152
153     iozone_bg $iozone_opts &
154     local pid=$!
155
156     echo iozone bg pid=$pid
157
158     sleep 8
159     fail ost1
160     local rc=0
161     wait $pid
162     rc=$?
163     log "iozone rc=$rc"
164     rm -f $TDIR/$tfile
165     [ $rc -eq 0 ] || error "iozone failed"
166     return $rc
167 }
168 run_test 5 "Fail OST during iozone"
169
170 kbytesfree() {
171    calc_osc_kbytes kbytesfree
172 }
173
174 test_6() {
175     remote_mds_nodsh && skip "remote MDS with nodsh" && return 0
176
177     f=$TDIR/$tfile
178     rm -f $f
179     sync && sleep 2 && sync     # wait for delete thread
180     before=`kbytesfree`
181     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 28
182     lfs getstripe $f
183     get_stripe_info client $f
184
185     sync
186     sleep 2 # ensure we have a fresh statfs
187     sync
188 #define OBD_FAIL_MDS_REINT_NET_REP       0x119
189     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
190     after_dd=`kbytesfree`
191     log "before: $before after_dd: $after_dd"
192     (( $before > $after_dd )) || return 1
193     rm -f $f
194     fail ost$((stripe_index + 1))
195     wait_recovery_complete ost$((stripe_index + 1)) || error "OST recovery not done"
196     $CHECKSTAT -t file $f && return 2 || true
197     sync
198     # let the delete happen
199     wait_mds_ost_sync || return 4
200     wait_destroy_complete || return 5
201     after=`kbytesfree`
202     log "before: $before after: $after"
203     (( $before <= $after + 40 )) || return 3    # take OST logs into account
204 }
205 run_test 6 "Fail OST before obd_destroy"
206
207 test_7() {
208     f=$TDIR/$tfile
209     rm -f $f
210     sync && sleep 5 && sync     # wait for delete thread
211     before=`kbytesfree`
212     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 4
213     sync
214     sleep 2 # ensure we have a fresh statfs
215     sync
216     after_dd=`kbytesfree`
217     log "before: $before after_dd: $after_dd"
218     (( $before > $after_dd )) || return 1
219     replay_barrier ost1
220     rm -f $f
221     fail ost1
222     wait_recovery_complete ost1 || error "OST recovery not done"
223     $CHECKSTAT -t file $f && return 2 || true
224     sync
225     # let the delete happen
226     wait_mds_ost_sync || return 4
227     wait_destroy_complete || return 5
228     after=`kbytesfree`
229     log "before: $before after: $after"
230     (( $before <= $after + 40 )) || return 3    # take OST logs into account
231 }
232 run_test 7 "Fail OST before obd_destroy"
233
234 equals_msg `basename $0`: test complete, cleaning up
235 check_and_cleanup_lustre
236 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true