Whamcloud - gitweb
6a3b9037d92b20d48386c461178d38764bf63cc0
[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:-`dirname $0`/..}
7 . $LUSTRE/tests/test-framework.sh
8 init_test_env $@
9 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
10
11 ostfailover_HOST=${ostfailover_HOST:-$ost_HOST}
12 #failover= must be defined in OST_MKFS_OPTIONS if ostfailover_HOST != ost_HOST
13
14 # Tests that fail on uml
15 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
16 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 6"
17
18 # Skip these tests
19 # BUG NUMBER: 
20 ALWAYS_EXCEPT="$REPLAY_OST_SINGLE_EXCEPT"
21
22 # It is replay-ost-single, after all
23 OSTCOUNT=1
24
25 gen_config() {
26     formatall
27 }
28
29 cleanup() {
30     cleanupall
31 }
32
33 if [ "$ONLY" == "cleanup" ]; then
34     cleanup
35     exit
36 fi
37
38 build_test_filter
39
40 SETUP=${SETUP:-"setup"}
41 CLEANUP=${CLEANUP:-"cleanup"}
42
43 test_0a() {
44     # needs to run during initial client->OST connection
45     #define OBD_FAIL_OST_ALL_REPLY_NET       0x211
46     do_facet ost "sysctl -w lustre.fail_loc=0x80000211"
47     zconf_mount `hostname` $MOUNT && df $MOUNT || error "0a mount fail"
48 }
49
50 setup() {
51     gen_config
52     start mds1 `mdsdevname 1` $MDS_MOUNT_OPTS
53     start ost1 `ostdevname 1` $OST_MOUNT_OPTS
54     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
55
56     # this might not mount if we aren't running test 0a
57     [ -z "`grep " $MOUNT " /proc/mounts`" ] && \
58         run_test 0a "target handle mismatch (bug 5317) `date +%H:%M:%S`" 
59
60     if [ -z "`grep " $MOUNT " /proc/mounts`" ]; then
61         zconf_mount `hostname` $MOUNT || error "mount fail"
62     fi
63     sleep 5
64
65     do_facet ost1 "sysctl -w lustre.fail_loc=0"
66 }
67
68 mkdir -p $DIR
69
70 $SETUP
71
72 test_0b() {
73     fail ost1
74     cp /etc/profile  $DIR/$tfile
75     sync
76     diff /etc/profile $DIR/$tfile
77     rm -f $DIR/$tfile
78 }
79 run_test 0b "empty replay"
80
81 test_1() {
82     date > $DIR/$tfile
83     fail ost1
84     $CHECKSTAT -t file $DIR/$tfile || return 1
85     rm -f $DIR/$tfile
86 }
87 run_test 1 "touch"
88
89 test_2() {
90     for i in `seq 10`; do
91         echo "tag-$i" > $DIR/$tfile-$i
92     done 
93     fail ost1
94     for i in `seq 10`; do
95       grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
96     done 
97     rm -f $DIR/$tfile-*
98 }
99 run_test 2 "|x| 10 open(O_CREAT)s"
100
101 test_3() {
102     verify=$ROOT/tmp/verify-$$
103     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile &
104     ddpid=$!
105     sync &
106     fail ost1
107     wait $ddpid || return 1
108     cmp $verify $DIR/$tfile || return 2
109     rm -f $verify $DIR/$tfile
110 }
111 run_test 3 "Fail OST during write, with verification"
112
113 test_4() {
114     verify=$ROOT/tmp/verify-$$
115     dd if=/dev/urandom bs=4096 count=1280 | tee $verify > $DIR/$tfile
116     # invalidate cache, so that we're reading over the wire
117     for i in /proc/fs/lustre/ldlm/namespaces/*-osc-*; do
118         echo -n clear > $i/lru_size
119     done
120     cmp $verify $DIR/$tfile &
121     cmppid=$!
122     fail ost1
123     wait $cmppid || return 1
124     rm -f $verify $DIR/$tfile
125 }
126 run_test 4 "Fail OST during read, with verification"
127
128 test_5() {
129     [ -z "`which iozone 2> /dev/null`" ] && log "iozone missing" && return
130     FREE=`df -P -h $DIR | tail -n 1 | awk '{ print $3 }'`
131     case $FREE in
132     *T|*G) FREE=1G;;
133     esac
134     IOZONE_OPTS="-i 0 -i 1 -i 2 -+d -r 4 -s $FREE"
135     iozone $IOZONE_OPTS -f $DIR/$tfile &
136     PID=$!
137     
138     sleep 8
139     fail ost1
140     wait $PID
141     RC=$?
142     log "iozone rc=$RC"
143     rm -f $DIR/$tfile
144     [ $RC -ne 0 ] && return $RC || true
145 }
146 run_test 5 "Fail OST during iozone"
147
148 kbytesfree() {
149    awk '{total+=$1} END {print total}' /proc/fs/lustre/osc/*-osc-*/kbytesfree
150 }
151
152 test_6() {
153     f=$DIR/$tfile
154     rm -f $f
155     sync && sleep 2 && sync     # wait for delete thread
156     before=`kbytesfree`
157     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 28
158     lfs getstripe $f
159     sync
160     sleep 2                                     # ensure we have a fresh statfs
161     sync
162 #define OBD_FAIL_MDS_REINT_NET_REP       0x119
163     do_facet mds "sysctl -w lustre.fail_loc=0x80000119"
164     after_dd=`kbytesfree`
165     log "before: $before after_dd: $after_dd"
166     (( $before > $after_dd )) || return 1
167     rm -f $f
168     fail ost1
169     $CHECKSTAT -t file $f && return 2 || true
170     sync
171     # let the delete happen
172     sleep 5
173     after=`kbytesfree`
174     log "before: $before after: $after"
175     (( $before <= $after + 40 )) || return 3    # take OST logs into account
176 }
177 run_test 6 "Fail OST before obd_destroy"
178
179 test_7() {
180     f=$DIR/$tfile
181     rm -f $f
182     sync && sleep 5 && sync     # wait for delete thread
183     before=`kbytesfree`
184     dd if=/dev/urandom bs=4096 count=1280 of=$f || return 4
185     sync
186     sleep 2                                     # ensure we have a fresh statfs
187     sync
188     after_dd=`kbytesfree`
189     log "before: $before after_dd: $after_dd"
190     (( $before > $after_dd )) || return 1
191     replay_barrier ost1
192     rm -f $f
193     fail ost1
194     $CHECKSTAT -t file $f && return 2 || true
195     sync
196     # let the delete happen
197     sleep 5
198     after=`kbytesfree`
199     log "before: $before after: $after"
200     (( $before <= $after + 40 )) || return 3    # take OST logs into account
201 }
202 run_test 7 "Fail OST before obd_destroy"
203
204 equals_msg test complete, cleaning up
205 $CLEANUP