Whamcloud - gitweb
Land b1_4_smallfix onto b1_4 (20041216_1438)
[fs/lustre-release.git] / lustre / tests / recovery-small.sh
1 #!/bin/sh
2
3 set -e
4
5 #         bug  2986 
6 ALWAYS_EXCEPT="20b"
7
8
9 LUSTRE=${LUSTRE:-`dirname $0`/..}
10
11 . $LUSTRE/tests/test-framework.sh
12
13 init_test_env $@
14
15 . ${CONFIG:=$LUSTRE/tests/cfg/local.sh}
16
17 build_test_filter
18
19
20 # Allow us to override the setup if we already have a mounted system by
21 # setting SETUP=" " and CLEANUP=" "
22 SETUP=${SETUP:-"setup"}
23 CLEANUP=${CLEANUP:-"cleanup"}
24
25
26 make_config() {
27     rm -f $XMLCONFIG
28     add_mds mds --dev $MDSDEV --size $MDSSIZE
29     add_lov lov1 mds --stripe_sz $STRIPE_BYTES \
30         --stripe_cnt $STRIPES_PER_OBJ --stripe_pattern 0
31     add_ost ost --lov lov1 --dev $OSTDEV --size $OSTSIZE
32     add_ost ost2 --lov lov1 --dev ${OSTDEV}-2 --size $OSTSIZE
33     add_client client mds --lov lov1 --path $MOUNT
34 }
35
36 setup() {
37     make_config
38     start ost --reformat $OSTLCONFARGS 
39     start ost2 --reformat $OSTLCONFARGS 
40     [ "$DAEMONFILE" ] && $LCTL debug_daemon start $DAEMONFILE $DAEMONSIZE
41     start mds $MDSLCONFARGS --reformat
42     grep " $MOUNT " /proc/mounts || zconf_mount `hostname`  $MOUNT
43 }
44
45 cleanup() {
46     zconf_umount `hostname` $MOUNT
47     stop mds ${FORCE} $MDSLCONFARGS
48     stop ost2 ${FORCE}
49     stop ost ${FORCE} --dump $TMP/recovery-small-`hostname`.log
50 }
51
52 replay() {
53     do_mds "sync"
54     do_mds 'echo -e "device \$mds1\\nprobe\\nnotransno\\nreadonly" | lctl'
55     do_client "$1" &
56     shutdown_mds -f
57     start_mds
58     wait
59     do_client "df -h $MOUNT" # trigger failover, if we haven't already
60 }
61
62 if [ ! -z "$EVAL" ]; then
63     eval "$EVAL"
64     exit $?
65 fi
66
67 if [ "$ONLY" == "cleanup" ]; then
68     sysctl -w portals.debug=0 || true
69     cleanup
70     exit
71 fi
72
73 REFORMAT=--reformat $SETUP
74 unset REFORMAT
75
76 [ "$ONLY" == "setup" ] && exit
77
78 test_1() {
79     drop_request "mcreate $MOUNT/1"  || return 1
80     drop_reint_reply "mcreate $MOUNT/2"    || return 2
81 }
82 run_test 1 "mcreate: drop req, drop rep"
83
84 test_2() {
85     drop_request "tchmod 111 $MOUNT/2"  || return 1
86     drop_reint_reply "tchmod 666 $MOUNT/2"    || return 2
87 }
88 run_test 2 "chmod: drop req, drop rep"
89
90 test_3() {
91     drop_request "statone $MOUNT/2" || return 1
92     drop_reply "statone $MOUNT/2"   || return 2
93 }
94 run_test 3 "stat: drop req, drop rep"
95
96 test_4() {
97     do_facet client "cp /etc/resolv.conf $MOUNT/resolv.conf" || return 1
98     drop_request "cat $MOUNT/resolv.conf > /dev/null"   || return 2
99     drop_reply "cat $MOUNT/resolv.conf > /dev/null"     || return 3
100 }
101 run_test 4 "open: drop req, drop rep"
102
103 test_5() {
104     drop_request "mv $MOUNT/resolv.conf $MOUNT/renamed" || return 1
105     drop_reint_reply "mv $MOUNT/renamed $MOUNT/renamed-again" || return 2
106     do_facet client "checkstat -v $MOUNT/renamed-again"  || return 3
107 }
108 run_test 5 "rename: drop req, drop rep"
109
110 test_6() {
111     drop_request "mlink $MOUNT/renamed-again $MOUNT/link1" || return 1
112     drop_reint_reply "mlink $MOUNT/renamed-again $MOUNT/link2"   || return 2
113 }
114 run_test 6 "link: drop req, drop rep"
115
116 test_7() {
117     drop_request "munlink $MOUNT/link1"   || return 1
118     drop_reint_reply "munlink $MOUNT/link2"     || return 2
119 }
120 run_test 7 "unlink: drop req, drop rep"
121
122 #bug 1423
123 test_8() {
124     drop_reint_reply "touch $MOUNT/renamed"    || return 1
125 }
126 run_test 8 "touch: drop rep (bug 1423)"
127
128 #bug 1420
129 test_9() {
130     pause_bulk "cp /etc/profile $MOUNT"       || return 1
131     do_facet client "cp /etc/termcap $MOUNT"  || return 2
132     do_facet client "sync"
133     do_facet client "rm $MOUNT/termcap $MOUNT/profile" || return 3
134 }
135 run_test 9 "pause bulk on OST (bug 1420)"
136
137 #bug 1521
138 test_10() {
139     do_facet client mcreate $MOUNT/f10        || return 1
140     drop_bl_callback "chmod 0777 $MOUNT/f10"  || return 2
141     # wait for the mds to evict the client
142     #echo "sleep $(($TIMEOUT*2))"
143     #sleep $(($TIMEOUT*2))
144     do_facet client touch  $MOUNT/f10 || echo "touch failed, evicted"
145     do_facet client checkstat -v -p 0777 $MOUNT/f10  || return 3
146     do_facet client "munlink $MOUNT/f10"
147 }
148 run_test 10 "finish request on server after client eviction (bug 1521)"
149
150 #bug 2460
151 # wake up a thread waiting for completion after eviction
152 test_11(){
153     do_facet client multiop $MOUNT/$tfile Ow  || return 1
154     do_facet client multiop $MOUNT/$tfile or  || return 2
155
156     cancel_lru_locks OSC
157
158     do_facet client multiop $MOUNT/$tfile or  || return 3
159     drop_bl_callback multiop $MOUNT/$tfile Ow  || 
160         echo "client evicted, as expected"
161
162     do_facet client munlink $MOUNT/$tfile  || return 4
163 }
164 run_test 11 "wake up a thread waiting for completion after eviction (b=2460)"
165
166 #b=2494
167 test_12(){
168     $LCTL mark multiop $MOUNT/$tfile OS_c 
169     do_facet mds "sysctl -w lustre.fail_loc=0x115"
170     clear_failloc mds $((TIMEOUT * 2)) &
171     multiop $MOUNT/$tfile OS_c  &
172     PID=$!
173 #define OBD_FAIL_MDS_CLOSE_NET           0x115
174     sleep 2
175     kill -USR1 $PID
176     echo "waiting for multiop $PID"
177     wait $PID || return 2
178     do_facet client munlink $MOUNT/$tfile  || return 3
179 }
180 run_test 12 "recover from timed out resend in ptlrpcd (b=2494)"
181
182 # Bug 113, check that readdir lost recv timeout works.
183 test_13() {
184     mkdir /mnt/lustre/readdir
185     touch /mnt/lustre/readdir/newentry
186 # OBD_FAIL_MDS_READPAGE_NET|OBD_FAIL_ONCE
187     do_facet mds "sysctl -w lustre.fail_loc=0x80000104"
188     ls /mnt/lustre/readdir || return 1
189     do_facet mds "sysctl -w lustre.fail_loc=0"
190     rm -rf /mnt/lustre/readdir
191 }
192 run_test 13 "mdc_readpage restart test (bug 1138)"
193
194 # Bug 113, check that readdir lost send timeout works.
195 test_14() {
196     mkdir /mnt/lustre/readdir
197     touch /mnt/lustre/readdir/newentry
198 # OBD_FAIL_MDS_SENDPAGE|OBD_FAIL_ONCE
199     do_facet mds "sysctl -w lustre.fail_loc=0x80000106"
200     ls /mnt/lustre/readdir || return 1
201     do_facet mds "sysctl -w lustre.fail_loc=0"
202 }
203 run_test 14 "mdc_readpage resend test (bug 1138)"
204
205 test_15() {
206     do_facet mds "sysctl -w lustre.fail_loc=0x80000128"
207     touch $DIR/$tfile && return 1
208     return 0
209 }
210 run_test 15 "failed open (-ENOMEM)"
211
212 READ_AHEAD=`cat /proc/fs/lustre/llite/*/max_read_ahead_mb | head -n 1`
213 stop_read_ahead() {
214    for f in /proc/fs/lustre/llite/*/max_read_ahead_mb; do 
215       echo 0 > $f
216    done
217 }
218
219 start_read_ahead() {
220    for f in /proc/fs/lustre/llite/*/max_read_ahead_mb; do 
221       echo $READ_AHEAD > $f
222    done
223 }
224
225 test_16() {
226     do_facet client cp /etc/termcap $MOUNT
227     sync
228     stop_read_ahead
229
230 #define OBD_FAIL_PTLRPC_BULK_PUT_NET 0x504 | OBD_FAIL_ONCE
231     sysctl -w lustre.fail_loc=0x80000504
232     cancel_lru_locks OSC
233     # will get evicted here
234     do_facet client "cmp /etc/termcap $MOUNT/termcap"  && return 1
235     sysctl -w lustre.fail_loc=0
236     # give recovery a chance to finish (shouldn't take long)
237     sleep $TIMEOUT
238     do_facet client "cmp /etc/termcap $MOUNT/termcap"  || return 2
239     start_read_ahead
240 }
241 run_test 16 "timeout bulk put, evict client (2732)"
242
243 test_17() {
244     # OBD_FAIL_PTLRPC_BULK_GET_NET 0x0503 | OBD_FAIL_ONCE
245     # client will get evicted here
246     sysctl -w lustre.fail_loc=0x80000503
247     do_facet client cp /etc/termcap $DIR/$tfile
248
249     sleep $TIMEOUT
250     sysctl -w lustre.fail_loc=0
251     do_facet client "df $DIR"
252     # expect cmp to fail
253     do_facet client "cmp /etc/termcap $DIR/$tfile"  && return 1
254     do_facet client "rm $DIR/$tfile" || return 2
255     return 0
256 }
257 run_test 17 "timeout bulk get, evict client (2732)"
258
259 test_18a() {
260     do_facet client mkdir -p $MOUNT/$tdir
261     f=$MOUNT/$tdir/$tfile
262
263     cancel_lru_locks OSC
264     pgcache_empty || return 1
265
266     # 1 stripe on ost2
267     lfs setstripe $f $((128 * 1024)) 1 1
268
269     do_facet client cp /etc/termcap $f
270     sync
271     local osc2_dev=`$LCTL device_list | \
272         awk '(/ost2.*client_facet/){print $4}' `
273     $LCTL --device %$osc2_dev deactivate
274     # my understanding is that there should be nothing in the page
275     # cache after the client reconnects?     
276     rc=0
277     pgcache_empty || rc=2
278     $LCTL --device %$osc2_dev activate
279     rm -f $f
280     return $rc
281 }
282 run_test 18a "manual ost invalidate clears page cache immediately"
283
284 test_18b() {
285 # OBD_FAIL_PTLRPC_BULK_PUT_NET|OBD_FAIL_ONCE
286     do_facet client mkdir -p $MOUNT/$tdir
287     f=$MOUNT/$tdir/$tfile
288     f2=$MOUNT/$tdir/${tfile}-2
289
290     cancel_lru_locks OSC
291     pgcache_empty || return 1
292
293     # shouldn't have to set stripe size of count==1
294     lfs setstripe $f $((128 * 1024)) 0 1
295     lfs setstripe $f2 $((128 * 1024)) 0 1
296
297     do_facet client cp /etc/termcap $f
298     sync
299     # just use this write to trigger the client's eviction from the ost
300     sysctl -w lustre.fail_loc=0x80000503
301     do_facet client dd if=/dev/zero of=$f2 bs=4k count=1
302     sync
303     sysctl -w lustre.fail_loc=0
304     # allow recovery to complete
305     sleep $((TIMEOUT + 2))
306     # my understanding is that there should be nothing in the page
307     # cache after the client reconnects?     
308     rc=0
309     pgcache_empty || rc=2
310     rm -f $f $f2
311     return $rc
312 }
313 run_test 18b "eviction and reconnect clears page cache (2766)"
314
315 test_19a() {
316     f=$MOUNT/$tfile
317     do_facet client mcreate $f        || return 1
318     drop_ldlm_cancel "chmod 0777 $f"  || echo evicted
319
320     do_facet client checkstat -v -p 0777 $f  || echo evicted
321     # let the client reconnect
322     sleep 5
323     do_facet client "munlink $f"
324 }
325 run_test 19a "test expired_lock_main on mds (2867)"
326
327 test_19b() {
328     f=$MOUNT/$tfile
329     do_facet client multiop $f Ow  || return 1
330     do_facet client multiop $f or  || return 2
331
332     cancel_lru_locks OSC
333
334     do_facet client multiop $f or  || return 3
335     drop_ldlm_cancel multiop $f Ow  || echo "client evicted, as expected"
336
337     do_facet client munlink $f  || return 4
338 }
339 run_test 19b "test expired_lock_main on ost (2867)"
340
341 test_20a() {    # bug 2983 - ldlm_handle_enqueue cleanup
342         mkdir -p $DIR/$tdir
343         multiop $DIR/$tdir/${tfile} O_wc &
344         MULTI_PID=$!
345         sleep 1
346         cancel_lru_locks OSC
347 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
348         do_facet ost sysctl -w lustre.fail_loc=0x80000308
349         kill -USR1 $MULTI_PID
350         wait $MULTI_PID
351         rc=$?
352         [ $rc -eq 0 ] && error "multiop didn't fail enqueue: rc $rc" || true
353 }
354 run_test 20a "ldlm_handle_enqueue error (should return error)" 
355
356 test_20b() {    # bug 2986 - ldlm_handle_enqueue error during open
357         mkdir -p $DIR/$tdir
358         touch $DIR/$tdir/${tfile}
359         cancel_lru_locks OSC
360 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
361         do_facet ost sysctl -w lustre.fail_loc=0x80000308
362         dd if=/etc/hosts of=$DIR/$tdir/$tfile && \
363                 error "didn't fail open enqueue" || true
364 }
365 run_test 20b "ldlm_handle_enqueue error (should return error)"
366
367 test_21() {     # bug 3267 - eviction fails writeback but app doesn't see it
368         mkdir -p $DIR/$tdir
369         cancel_lru_locks OSC
370         multiop $DIR/$tdir/$tfile Owyw_yc &
371         MULTI_PID=$!
372         usleep 500
373 # OBD_FAIL_PTLRPC_BULK_PUT_NET|OBD_FAIL_ONCE
374         sysctl -w lustre.fail_loc=0x80000503
375         kill -USR1 $MULTI_PID
376         wait $MULTI_PID
377         rc=$?
378         [ $rc -eq 0 ] && error "multiop didn't fail fsync: rc $rc" || true
379 }
380 run_test 21 "fsync error (should return error)" 
381
382 $CLEANUP