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