Whamcloud - gitweb
7412010bf53f4913700a7617b1cef7c8f9f40db3
[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 || return 1
185     touch /mnt/lustre/readdir/newentry || return
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 3
189     do_facet mds "sysctl -w lustre.fail_loc=0"
190     rm -rf /mnt/lustre/readdir || return 4
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     # need to write enough to ensure we send an RPC
248     do_facet client dd if=/dev/zero of=$DIR/$tfile bs=1024k count=2
249
250     sleep $TIMEOUT
251     sysctl -w lustre.fail_loc=0
252     do_facet client "df $DIR"
253     # expect cmp to fail
254     do_facet client "cmp /etc/termcap $DIR/$tfile"  && return 1
255     do_facet client "rm $DIR/$tfile" || return 2
256     return 0
257 }
258 run_test 17 "timeout bulk get, evict client (2732)"
259
260 test_18a() {
261     do_facet client mkdir -p $MOUNT/$tdir
262     f=$MOUNT/$tdir/$tfile
263
264     cancel_lru_locks OSC
265     pgcache_empty || return 1
266
267     # 1 stripe on ost2
268     lfs setstripe $f $((128 * 1024)) 1 1
269
270     do_facet client cp /etc/termcap $f
271     sync
272     local osc2_dev=`$LCTL device_list | \
273         awk '(/ost2.*client_facet/){print $4}' `
274     $LCTL --device %$osc2_dev deactivate
275     # my understanding is that there should be nothing in the page
276     # cache after the client reconnects?     
277     rc=0
278     pgcache_empty || rc=2
279     $LCTL --device %$osc2_dev activate
280     rm -f $f
281     return $rc
282 }
283 run_test 18a "manual ost invalidate clears page cache immediately"
284
285 test_18b() {
286 # OBD_FAIL_PTLRPC_BULK_PUT_NET|OBD_FAIL_ONCE
287     do_facet client mkdir -p $MOUNT/$tdir
288     f=$MOUNT/$tdir/$tfile
289     f2=$MOUNT/$tdir/${tfile}-2
290
291     cancel_lru_locks OSC
292     pgcache_empty || return 1
293
294     # shouldn't have to set stripe size of count==1
295     lfs setstripe $f $((128 * 1024)) 0 1
296     lfs setstripe $f2 $((128 * 1024)) 0 1
297
298     do_facet client cp /etc/termcap $f
299     sync
300     # just use this write to trigger the client's eviction from the ost
301     sysctl -w lustre.fail_loc=0x80000503
302     do_facet client dd if=/dev/zero of=$f2 bs=4k count=1
303     sync
304     sysctl -w lustre.fail_loc=0
305     # allow recovery to complete
306     sleep $((TIMEOUT + 2))
307     # my understanding is that there should be nothing in the page
308     # cache after the client reconnects?     
309     rc=0
310     pgcache_empty || rc=2
311     rm -f $f $f2
312     return $rc
313 }
314 run_test 18b "eviction and reconnect clears page cache (2766)"
315
316 test_19a() {
317     f=$MOUNT/$tfile
318     do_facet client mcreate $f        || return 1
319     drop_ldlm_cancel "chmod 0777 $f"  || echo evicted
320
321     do_facet client checkstat -v -p 0777 $f  || echo evicted
322     # let the client reconnect
323     sleep 5
324     do_facet client "munlink $f"
325 }
326 run_test 19a "test expired_lock_main on mds (2867)"
327
328 test_19b() {
329     f=$MOUNT/$tfile
330     do_facet client multiop $f Ow  || return 1
331     do_facet client multiop $f or  || return 2
332
333     cancel_lru_locks OSC
334
335     do_facet client multiop $f or  || return 3
336     drop_ldlm_cancel multiop $f Ow  || echo "client evicted, as expected"
337
338     do_facet client munlink $f  || return 4
339 }
340 run_test 19b "test expired_lock_main on ost (2867)"
341
342 test_20a() {    # bug 2983 - ldlm_handle_enqueue cleanup
343         mkdir -p $DIR/$tdir
344         multiop $DIR/$tdir/${tfile} O_wc &
345         MULTI_PID=$!
346         sleep 1
347         cancel_lru_locks OSC
348 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
349         do_facet ost sysctl -w lustre.fail_loc=0x80000308
350         kill -USR1 $MULTI_PID
351         wait $MULTI_PID
352         rc=$?
353         [ $rc -eq 0 ] && error "multiop didn't fail enqueue: rc $rc" || true
354 }
355 run_test 20a "ldlm_handle_enqueue error (should return error)" 
356
357 test_20b() {    # bug 2986 - ldlm_handle_enqueue error during open
358         mkdir -p $DIR/$tdir
359         touch $DIR/$tdir/${tfile}
360         cancel_lru_locks OSC
361 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
362         do_facet ost sysctl -w lustre.fail_loc=0x80000308
363         dd if=/etc/hosts of=$DIR/$tdir/$tfile && \
364                 error "didn't fail open enqueue" || true
365 }
366 run_test 20b "ldlm_handle_enqueue error (should return error)"
367
368 #b_cray run_test 21a "drop close request while close and open are both in flight"
369 #b_cray run_test 21b "drop open request while close and open are both in flight"
370 #b_cray run_test 21c "drop both request while close and open are both in flight"
371 #b_cray run_test 21d "drop close reply while close and open are both in flight"
372 #b_cray run_test 21e "drop open reply while close and open are both in flight"
373 #b_cray run_test 21f "drop both reply while close and open are both in flight"
374 #b_cray run_test 21g "drop open reply and close request while close and open are both in flight"
375 #b_cray run_test 21h "drop open request and close reply while close and open are both in flight"
376 #b_cray run_test 22 "drop close request and do mknod"
377 #b_cray run_test 23 "client hang when close a file after mds crash"
378
379 test_24() {     # bug 2248 - eviction fails writeback but app doesn't see it
380         mkdir -p $DIR/$tdir
381         cancel_lru_locks OSC
382         multiop $DIR/$tdir/$tfile Owyw_yc &
383         MULTI_PID=$!
384         usleep 500
385 # OBD_FAIL_PTLRPC_BULK_PUT_NET|OBD_FAIL_ONCE
386         sysctl -w lustre.fail_loc=0x80000503
387         kill -USR1 $MULTI_PID
388         wait $MULTI_PID
389         rc=$?
390         [ $rc -eq 0 ] && error "multiop didn't fail fsync: rc $rc" || true
391 }
392 run_test 24 "fsync error (should return error)" 
393
394 $CLEANUP