Whamcloud - gitweb
LU-2844 mdd: mdt prepare failure should not oops
[fs/lustre-release.git] / lustre / tests / recovery-small.sh
1 #!/bin/bash
2
3 set -e
4
5 #         bug  5493  LU2034
6 ALWAYS_EXCEPT="52    60      $RECOVERY_SMALL_EXCEPT"
7
8 export MULTIOP=${MULTIOP:-multiop}
9 PTLDEBUG=${PTLDEBUG:--1}
10 LUSTRE=${LUSTRE:-`dirname $0`/..}
11 . $LUSTRE/tests/test-framework.sh
12 init_test_env $@
13 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
14 init_logging
15
16 require_dsh_mds || exit 0
17
18 # also long tests: 19, 21a, 21e, 21f, 23, 27
19 #                                   1  2.5  2.5    4    4          (min)"
20 [ "$SLOW" = "no" ] && EXCEPT_SLOW="17  26a  26b    50   51     57"
21
22 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
23 # bug number for skipped test:        LU-2194
24         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 19b"
25
26 build_test_filter
27
28 # Allow us to override the setup if we already have a mounted system by
29 # setting SETUP=" " and CLEANUP=" "
30 SETUP=${SETUP:-""}
31 CLEANUP=${CLEANUP:-""}
32
33 check_and_setup_lustre
34
35 assert_DIR
36 rm -rf $DIR/d[0-9]* $DIR/f.${TESTSUITE}*
37
38 test_1() {
39         local f1="$DIR/$tfile"
40         local f2="$DIR/$tfile.2"
41
42         drop_request "mcreate $f1" ||
43                 error_noexit "create '$f1': drop req"
44
45         drop_reint_reply "mcreate $f2" ||
46                 error_noexit "create '$f2': drop rep"
47
48         drop_request "tchmod 111 $f2" ||
49                 error_noexit "chmod '$f2': drop req"
50
51         drop_reint_reply "tchmod 666 $f2" ||
52                 error_noexit "chmod '$f2': drop rep"
53
54         drop_request "statone $f2" ||
55                 error_noexit "stat '$f2': drop req"
56
57         drop_reply  "statone $f2" ||
58                 error_noexit "stat '$f2': drop rep"
59 }
60 run_test 1 "create, chmod, stat: drop req, drop rep"
61
62 test_4() {
63         local t=$DIR/$tfile
64         do_facet_create_file client $t 10K ||
65                 error_noexit "Create file $t"
66
67         drop_request "cat $t > /dev/null" ||
68                 error_noexit "Open request for $t file"
69
70         drop_reply "cat $t > /dev/null" ||
71                 error_noexit "Open replay for $t file"
72 }
73 run_test 4 "open: drop req, drop rep"
74
75 test_5() {
76         local T=$DIR/$tfile
77         local R="$T-renamed"
78         local RR="$T-renamed-again"
79         do_facet_create_file client $T 10K ||
80                 error_noexit "Create file $T"
81
82         drop_request "mv $T $R" ||
83                 error_noexit "Rename $T"
84
85         drop_reint_reply "mv $R $RR" ||
86                 error_noexit "Failed rename replay on $R"
87
88         do_facet client "checkstat -v $RR" ||
89                 error_noexit "checkstat error on $RR"
90
91         do_facet client "rm $RR" ||
92                 error_noexit "Can't remove file $RR"
93 }
94 run_test 5 "rename: drop req, drop rep"
95
96 test_6() {
97         local T=$DIR/$tfile
98         local LINK1=$DIR/$tfile.link1
99         local LINK2=$DIR/$tfile.link2
100
101         do_facet_create_file client $T 10K ||
102                 error_noexit "Create file $T"
103
104         drop_request "mlink $T $LINK1" ||
105                 error_noexit "mlink request for $T"
106
107         drop_reint_reply "mlink $T $LINK2" ||
108                 error_noexit "mlink reply for $T"
109
110         drop_request "munlink $LINK1" ||
111                 error_noexit "munlink request for $T"
112
113         drop_reint_reply "munlink $LINK2" ||
114                 error_noexit "munlink reply for $T"
115
116         do_facet client "rm $T" ||
117                 error_noexit "Can't remove file $T"
118 }
119 run_test 6 "link, unlink: drop req, drop rep"
120
121 #bug 1423
122 test_8() {
123     drop_reint_reply "touch $DIR/$tfile"    || return 1
124 }
125 run_test 8 "touch: drop rep (bug 1423)"
126
127 #bug 1420
128 test_9() {
129         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
130
131         local t1=${tfile}.1
132         local t2=${tfile}.2
133         do_facet_random_file client $TMP/$tfile 1K ||
134                 error_noexit "Create random file $TMP/$tfile"
135         # make this big, else test 9 doesn't wait for bulk -- bz 5595
136         do_facet_create_file client $TMP/$t1 4M ||
137                 error_noexit "Create file $TMP/$t1"
138         do_facet client "cp $TMP/$t1 $DIR/$t1" ||
139                 error_noexit "Can't copy to $DIR/$t1 file"
140         pause_bulk "cp $TMP/$tfile $DIR/$tfile" ||
141                 error_noexit "Can't pause_bulk copy"
142         do_facet client "cp $TMP/$t1 $DIR/$t2" ||
143                 error_noexit "Can't copy file"
144         do_facet client "sync"
145         do_facet client "rm $DIR/$tfile $DIR/$t2 $DIR/$t1" ||
146                 error_noexit "Can't remove files"
147         do_facet client "rm $TMP/$t1 $TMP/$tfile"
148 }
149 run_test 9 "pause bulk on OST (bug 1420)"
150
151 #bug 1521
152 test_10() {
153         do_facet client mcreate $DIR/$tfile ||
154                 { error "mcreate failed: $?"; return 1; }
155         drop_bl_callback "chmod 0777 $DIR/$tfile"  || echo "evicted as expected"
156         # wait for the mds to evict the client
157         #echo "sleep $(($TIMEOUT*2))"
158         #sleep $(($TIMEOUT*2))
159         do_facet client touch $DIR/$tfile || echo "touch failed, evicted"
160         do_facet client checkstat -v -p 0777 $DIR/$tfile ||
161                 { error "client checkstat failed: $?"; return 3; }
162         do_facet client "munlink $DIR/$tfile"
163         # allow recovery to complete
164         client_up || client_up || sleep $TIMEOUT
165 }
166 run_test 10 "finish request on server after client eviction (bug 1521)"
167
168 #bug 2460
169 # wake up a thread waiting for completion after eviction
170 test_11(){
171         do_facet client $MULTIOP $DIR/$tfile Ow  ||
172                 { error "multiop write failed: $?"; return 1; }
173         do_facet client $MULTIOP $DIR/$tfile or  ||
174                 { error "multiop read failed: $?"; return 2; }
175
176         cancel_lru_locks osc
177
178         do_facet client $MULTIOP $DIR/$tfile or  ||
179                 { error "multiop read failed: $?"; return 3; }
180         drop_bl_callback $MULTIOP $DIR/$tfile Ow || echo "evicted as expected"
181
182         do_facet client munlink $DIR/$tfile ||
183                 { error "munlink failed: $?"; return 4; }
184         # allow recovery to complete
185         client_up || client_up || sleep $TIMEOUT
186 }
187 run_test 11 "wake up a thread waiting for completion after eviction (b=2460)"
188
189 #b=2494
190 test_12(){
191         $LCTL mark $MULTIOP $DIR/$tfile OS_c
192         do_facet $SINGLEMDS "lctl set_param fail_loc=0x115"
193         clear_failloc $SINGLEMDS $((TIMEOUT * 2)) &
194         multiop_bg_pause $DIR/$tfile OS_c ||
195                 { error "multiop failed: $?"; return 1; }
196         PID=$!
197 #define OBD_FAIL_MDS_CLOSE_NET           0x115
198         kill -USR1 $PID
199         echo "waiting for multiop $PID"
200         wait $PID || { error "wait for multiop faile: $?"; return 2; }
201         do_facet client munlink $DIR/$tfile ||
202                 { error "client munlink failed: $?"; return 3; }
203         # allow recovery to complete
204         client_up || client_up || sleep $TIMEOUT
205 }
206 run_test 12 "recover from timed out resend in ptlrpcd (b=2494)"
207
208 # Bug 113, check that readdir lost recv timeout works.
209 test_13() {
210         mkdir -p $DIR/$tdir || { error "mkdir failed: $?"; return 1; }
211         touch $DIR/$tdir/newentry || { error "touch failed: $?"; return 2; }
212 # OBD_FAIL_MDS_READPAGE_NET|OBD_FAIL_ONCE
213         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000104"
214         ls $DIR/$tdir || { error "ls failed: $?"; return 3; }
215         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
216         rm -rf $DIR/$tdir || { error "remove test dir failed: $?"; return 4; }
217 }
218 run_test 13 "mdc_readpage restart test (bug 1138)"
219
220 # Bug 113, check that readdir lost send timeout works.
221 test_14() {
222     mkdir -p $DIR/$tdir
223     touch $DIR/$tdir/newentry
224 # OBD_FAIL_MDS_SENDPAGE|OBD_FAIL_ONCE
225     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000106"
226     ls $DIR/$tdir || return 1
227     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
228 }
229 run_test 14 "mdc_readpage resend test (bug 1138)"
230
231 test_15() {
232     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000128"
233     touch $DIR/$tfile && return 1
234     return 0
235 }
236 run_test 15 "failed open (-ENOMEM)"
237
238 READ_AHEAD=`lctl get_param -n llite.*.max_read_ahead_mb | head -n 1`
239 stop_read_ahead() {
240    lctl set_param -n llite.*.max_read_ahead_mb 0
241 }
242
243 start_read_ahead() {
244    lctl set_param -n llite.*.max_read_ahead_mb $READ_AHEAD
245 }
246
247 test_16() {
248         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
249
250         do_facet_random_file client $TMP/$tfile 100K ||
251                 { error_noexit "Create random file $TMP/$T" ; return 0; }
252         do_facet client "cp $TMP/$tfile $DIR/$tfile" ||
253                 { error_noexit "Copy to $DIR/$tfile file" ; return 0; }
254         sync
255         stop_read_ahead
256
257 #define OBD_FAIL_PTLRPC_BULK_PUT_NET 0x504 | OBD_FAIL_ONCE
258         do_facet ost1 "lctl set_param fail_loc=0x80000504"
259         cancel_lru_locks osc
260         # OST bulk will time out here, client resends
261         do_facet client "cmp $TMP/$tfile $DIR/$tfile" || return 1
262         do_facet ost1 lctl set_param fail_loc=0
263         # give recovery a chance to finish (shouldn't take long)
264         sleep $TIMEOUT
265         do_facet client "cmp $TMP/$tfile $DIR/$tfile" || return 2
266         start_read_ahead
267 }
268 run_test 16 "timeout bulk put, don't evict client (2732)"
269
270 test_17() {
271     local at_max_saved=0
272
273     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
274
275         local SAMPLE_FILE=$TMP/$tfile
276         do_facet_random_file client $SAMPLE_FILE 20K ||
277                 { error_noexit "Create random file $SAMPLE_FILE" ; return 0; }
278
279     # With adaptive timeouts, bulk_get won't expire until adaptive_timeout_max
280     if at_is_enabled; then
281         at_max_saved=$(at_max_get ost1)
282         at_max_set $TIMEOUT ost1
283     fi
284
285     # OBD_FAIL_PTLRPC_BULK_GET_NET 0x0503 | OBD_FAIL_ONCE
286     # OST bulk will time out here, client retries
287     do_facet ost1 lctl set_param fail_loc=0x80000503
288     # need to ensure we send an RPC
289     do_facet client cp $SAMPLE_FILE $DIR/$tfile
290     sync
291
292     # with AT, client will wait adaptive_max*factor+net_latency before
293     # expiring the req, hopefully timeout*2 is enough
294     sleep $(($TIMEOUT*2))
295
296     do_facet ost1 lctl set_param fail_loc=0
297     do_facet client "df $DIR"
298     # expect cmp to succeed, client resent bulk
299     do_facet client "cmp $SAMPLE_FILE $DIR/$tfile" || return 3
300     do_facet client "rm $DIR/$tfile" || return 4
301     [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved ost1
302     return 0
303 }
304 run_test 17 "timeout bulk get, don't evict client (2732)"
305
306 test_18a() {
307     [ -z ${ost2_svc} ] && skip_env "needs 2 osts" && return 0
308
309         do_facet_create_file client $TMP/$tfile 20K ||
310                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
311
312     do_facet client mkdir -p $DIR/$tdir
313     f=$DIR/$tdir/$tfile
314
315     cancel_lru_locks osc
316     pgcache_empty || return 1
317
318     # 1 stripe on ost2
319     $LFS setstripe -i 1 -c 1 $f
320     stripe_index=$($LFS getstripe -i $f)
321     if [ $stripe_index -ne 1 ]; then
322         $LFS getstripe $f
323         error "$f: stripe_index $stripe_index != 1" && return
324     fi
325
326     do_facet client cp $TMP/$tfile $f
327     sync
328     local osc2dev=`lctl get_param -n devices | grep ${ost2_svc}-osc- | egrep -v 'MDT' | awk '{print $1}'`
329     $LCTL --device $osc2dev deactivate || return 3
330     # my understanding is that there should be nothing in the page
331     # cache after the client reconnects?     
332     rc=0
333     pgcache_empty || rc=2
334     $LCTL --device $osc2dev activate
335     rm -f $f
336     return $rc
337 }
338 run_test 18a "manual ost invalidate clears page cache immediately"
339
340 test_18b() {
341     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
342
343         do_facet_create_file client $TMP/$tfile 20K ||
344                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
345
346     do_facet client mkdir -p $DIR/$tdir
347     f=$DIR/$tdir/$tfile
348
349     cancel_lru_locks osc
350     pgcache_empty || return 1
351
352     $LFS setstripe -i 0 -c 1 $f
353     stripe_index=$($LFS getstripe -i $f)
354     if [ $stripe_index -ne 0 ]; then
355         $LFS getstripe $f
356         error "$f: stripe_index $stripe_index != 0" && return
357     fi
358
359     do_facet client cp $TMP/$tfile $f
360     sync
361     ost_evict_client
362     # allow recovery to complete
363     sleep $((TIMEOUT + 2))
364     # my understanding is that there should be nothing in the page
365     # cache after the client reconnects?     
366     rc=0
367     pgcache_empty || rc=2
368     rm -f $f
369     return $rc
370 }
371 run_test 18b "eviction and reconnect clears page cache (2766)"
372
373 test_18c() {
374     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
375
376         do_facet_create_file client $TMP/$tfile 20K ||
377                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
378
379     do_facet client mkdir -p $DIR/$tdir
380     f=$DIR/$tdir/$tfile
381
382     cancel_lru_locks osc
383     pgcache_empty || return 1
384
385     $LFS setstripe -i 0 -c 1 $f
386     stripe_index=$($LFS getstripe -i $f)
387     if [ $stripe_index -ne 0 ]; then
388         $LFS getstripe $f
389         error "$f: stripe_index $stripe_index != 0" && return
390     fi
391
392     do_facet client cp $TMP/$tfile $f
393     sync
394     ost_evict_client
395
396     # OBD_FAIL_OST_CONNECT_NET2
397     # lost reply to connect request
398     do_facet ost1 lctl set_param fail_loc=0x80000225
399     # force reconnect
400     sleep 1
401     df $MOUNT > /dev/null 2>&1
402     sleep 2
403     # my understanding is that there should be nothing in the page
404     # cache after the client reconnects?     
405     rc=0
406     pgcache_empty || rc=2
407     rm -f $f
408     return $rc
409 }
410 run_test 18c "Dropped connect reply after eviction handing (14755)"
411
412 test_19a() {
413         local BEFORE=`date +%s`
414         local EVICT
415
416         mount_client $DIR2 || error "failed to mount $DIR2"
417
418         do_facet client "stat $DIR > /dev/null"  ||
419                 error "failed to stat $DIR: $?"
420         drop_ldlm_cancel "chmod 0777 $DIR2" ||
421                 error "failed to chmod $DIR2"
422
423         umount_client $DIR2
424
425         # let the client reconnect
426         client_reconnect
427         EVICT=$(do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state | \
428             awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
429
430         [ ! -z "$EVICT" ] && [[ $EVICT -gt $BEFORE ]] ||
431                 (do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state;
432                     error "no eviction: $EVICT before:$BEFORE")
433 }
434 run_test 19a "test expired_lock_main on mds (2867)"
435
436 test_19b() {
437         local BEFORE=`date +%s`
438         local EVICT
439
440         mount_client $DIR2 || error "failed to mount $DIR2: $?"
441
442         do_facet client $MULTIOP $DIR/$tfile Ow ||
443                 error "failed to run multiop: $?"
444         drop_ldlm_cancel $MULTIOP $DIR2/$tfile Ow ||
445                 error "failed to ldlm_cancel: $?"
446
447         umount_client $DIR2 || error "failed to unmount $DIR2: $?"
448         do_facet client munlink $DIR/$tfile ||
449                 error "failed to unlink $DIR/$tfile: $?"
450
451         # let the client reconnect
452         client_reconnect
453         EVICT=$(do_facet client $LCTL get_param osc.$FSNAME-OST*.state | \
454             awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
455
456         [ ! -z "$EVICT" ] && [[ $EVICT -gt $BEFORE ]] ||
457                 (do_facet client $LCTL get_param osc.$FSNAME-OST*.state;
458                     error "no eviction: $EVICT before:$BEFORE")
459 }
460 run_test 19b "test expired_lock_main on ost (2867)"
461
462 test_19c() {
463         local BEFORE=`date +%s`
464
465         mount_client $DIR2
466         $LCTL set_param ldlm.namespaces.*.early_lock_cancel=0
467
468         mkdir -p $DIR1/$tfile
469         stat $DIR1/$tfile
470
471 #define OBD_FAIL_PTLRPC_CANCEL_RESEND 0x516
472         do_facet mds $LCTL set_param fail_loc=0x80000516
473
474         touch $DIR2/$tfile/file1 &
475         PID1=$!
476         # let touch to get blocked on the server
477         sleep 2
478
479         wait $PID1
480         $LCTL set_param ldlm.namespaces.*.early_lock_cancel=1
481         umount_client $DIR2
482
483         # let the client reconnect
484         sleep 5
485         EVICT=$(do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state |
486            awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
487
488         [ -z "$EVICT" ] || [[ $EVICT -le $BEFORE ]] || error "eviction happened"
489 }
490 run_test 19c "check reconnect and lock resend do not trigger expired_lock_main"
491
492 test_20a() {    # bug 2983 - ldlm_handle_enqueue cleanup
493         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
494
495         mkdir -p $DIR/$tdir
496         $LFS setstripe -i 0 -c 1 $DIR/$tdir/${tfile}
497         multiop_bg_pause $DIR/$tdir/${tfile} O_wc || return 1
498         MULTI_PID=$!
499         cancel_lru_locks osc
500 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
501         do_facet ost1 lctl set_param fail_loc=0x80000308
502         kill -USR1 $MULTI_PID
503         wait $MULTI_PID
504         rc=$?
505         [ $rc -eq 0 ] && error "multiop didn't fail enqueue: rc $rc" || true
506 }
507 run_test 20a "ldlm_handle_enqueue error (should return error)" 
508
509 test_20b() {    # bug 2986 - ldlm_handle_enqueue error during open
510         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
511
512         mkdir -p $DIR/$tdir
513         $LFS setstripe -i 0 -c 1 $DIR/$tdir/${tfile}
514         cancel_lru_locks osc
515 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
516         do_facet ost1 lctl set_param fail_loc=0x80000308
517         dd if=/etc/hosts of=$DIR/$tdir/$tfile && \
518                 error "didn't fail open enqueue" || true
519 }
520 run_test 20b "ldlm_handle_enqueue error (should return error)"
521
522 test_21a() {
523        mkdir -p $DIR/$tdir-1
524        mkdir -p $DIR/$tdir-2
525        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
526        close_pid=$!
527
528        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000129"
529        $MULTIOP $DIR/$tdir-2/f Oc &
530        open_pid=$!
531        sleep 1
532        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
533
534        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
535        kill -USR1 $close_pid
536        cancel_lru_locks mdc
537        wait $close_pid || return 1
538        wait $open_pid || return 2
539        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
540
541        $CHECKSTAT -t file $DIR/$tdir-1/f || return 3
542        $CHECKSTAT -t file $DIR/$tdir-2/f || return 4
543
544        rm -rf $DIR/$tdir-*
545 }
546 run_test 21a "drop close request while close and open are both in flight"
547
548 test_21b() {
549        mkdir -p $DIR/$tdir-1
550        mkdir -p $DIR/$tdir-2
551        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
552        close_pid=$!
553
554        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
555        mcreate $DIR/$tdir-2/f &
556        open_pid=$!
557        sleep 1
558        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
559
560        kill -USR1 $close_pid
561        cancel_lru_locks mdc
562        wait $close_pid || return 1
563        wait $open_pid || return 3
564
565        $CHECKSTAT -t file $DIR/$tdir-1/f || return 4
566        $CHECKSTAT -t file $DIR/$tdir-2/f || return 5
567        rm -rf $DIR/$tdir-*
568 }
569 run_test 21b "drop open request while close and open are both in flight"
570
571 test_21c() {
572        mkdir -p $DIR/$tdir-1
573        mkdir -p $DIR/$tdir-2
574        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
575        close_pid=$!
576
577        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
578        mcreate $DIR/$tdir-2/f &
579        open_pid=$!
580        sleep 3
581        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
582
583        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
584        kill -USR1 $close_pid
585        cancel_lru_locks mdc
586        wait $close_pid || return 1
587        wait $open_pid || return 2
588
589        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
590
591        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
592        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
593        rm -rf $DIR/$tdir-*
594 }
595 run_test 21c "drop both request while close and open are both in flight"
596
597 test_21d() {
598        mkdir -p $DIR/$tdir-1
599        mkdir -p $DIR/$tdir-2
600        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
601        pid=$!
602
603        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000129"
604        $MULTIOP $DIR/$tdir-2/f Oc &
605        sleep 1
606        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
607
608        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
609        kill -USR1 $pid
610        cancel_lru_locks mdc
611        wait $pid || return 1
612        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
613
614        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
615        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
616
617        rm -rf $DIR/$tdir-*
618 }
619 run_test 21d "drop close reply while close and open are both in flight"
620
621 test_21e() {
622        mkdir -p $DIR/$tdir-1
623        mkdir -p $DIR/$tdir-2
624        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
625        pid=$!
626
627        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
628        touch $DIR/$tdir-2/f &
629        sleep 1
630        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
631
632        kill -USR1 $pid
633        cancel_lru_locks mdc
634        wait $pid || return 1
635
636        sleep $TIMEOUT
637        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
638        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
639        rm -rf $DIR/$tdir-*
640 }
641 run_test 21e "drop open reply while close and open are both in flight"
642
643 test_21f() {
644        mkdir -p $DIR/$tdir-1
645        mkdir -p $DIR/$tdir-2
646        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
647        pid=$!
648
649        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
650        touch $DIR/$tdir-2/f &
651        sleep 1
652        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
653
654        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
655        kill -USR1 $pid
656        cancel_lru_locks mdc
657        wait $pid || return 1
658        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
659
660        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
661        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
662        rm -rf $DIR/$tdir-*
663 }
664 run_test 21f "drop both reply while close and open are both in flight"
665
666 test_21g() {
667        mkdir -p $DIR/$tdir-1
668        mkdir -p $DIR/$tdir-2
669        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
670        pid=$!
671
672        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
673        touch $DIR/$tdir-2/f &
674        sleep 1
675        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
676
677        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
678        kill -USR1 $pid
679        cancel_lru_locks mdc
680        wait $pid || return 1
681        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
682
683        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
684        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
685        rm -rf $DIR/$tdir-*
686 }
687 run_test 21g "drop open reply and close request while close and open are both in flight"
688
689 test_21h() {
690        mkdir -p $DIR/$tdir-1
691        mkdir -p $DIR/$tdir-2
692        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
693        pid=$!
694
695        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
696        touch $DIR/$tdir-2/f &
697        touch_pid=$!
698        sleep 1
699        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
700
701        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
702        cancel_lru_locks mdc
703        kill -USR1 $pid
704        wait $pid || return 1
705        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
706
707        wait $touch_pid || return 2
708
709        $CHECKSTAT -t file $DIR/$tdir-1/f || return 3
710        $CHECKSTAT -t file $DIR/$tdir-2/f || return 4
711        rm -rf $DIR/$tdir-*
712 }
713 run_test 21h "drop open request and close reply while close and open are both in flight"
714
715 # bug 3462 - multiple MDC requests
716 test_22() {
717     f1=$DIR/${tfile}-1
718     f2=$DIR/${tfile}-2
719     
720     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
721     $MULTIOP $f2 Oc &
722     close_pid=$!
723
724     sleep 1
725     $MULTIOP $f1 msu || return 1
726
727     cancel_lru_locks mdc
728     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
729
730     wait $close_pid || return 2
731     rm -rf $f2 || return 4
732 }
733 run_test 22 "drop close request and do mknod"
734
735 test_23() { #b=4561
736     multiop_bg_pause $DIR/$tfile O_c || return 1
737     pid=$!
738     # give a chance for open
739     sleep 5
740
741     # try the close
742     drop_request "kill -USR1 $pid"
743
744     fail $SINGLEMDS
745     wait $pid || return 1
746     return 0
747 }
748 run_test 23 "client hang when close a file after mds crash"
749
750 test_24a() { # bug 11710 details correct fsync() behavior
751         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
752
753         mkdir -p $DIR/$tdir
754         $LFS setstripe -i 0 -c 1 $DIR/$tdir
755         cancel_lru_locks osc
756         multiop_bg_pause $DIR/$tdir/$tfile Owy_wyc || return 1
757         MULTI_PID=$!
758         ost_evict_client
759         kill -USR1 $MULTI_PID
760         wait $MULTI_PID
761         rc=$?
762         lctl set_param fail_loc=0x0
763         client_reconnect
764         [ $rc -eq 0 ] && error_ignore 5494 "multiop didn't fail fsync: rc $rc" || true
765 }
766 run_test 24a "fsync error (should return error)"
767
768 wait_client_evicted () {
769         local facet=$1
770         local exports=$2
771         local varsvc=${facet}_svc
772
773         wait_update $(facet_active_host $facet) \
774                 "lctl get_param -n *.${!varsvc}.num_exports | cut -d' ' -f2" \
775                 $((exports - 1)) $3
776 }
777
778 test_24b() {
779         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
780
781         dmesg -c > /dev/null
782         mkdir -p $DIR/$tdir
783         lfs setstripe $DIR/$tdir -s 0 -i 0 -c 1
784         cancel_lru_locks osc
785         multiop_bg_pause $DIR/$tdir/$tfile-1 Ow8192_yc ||
786                 error "mulitop Ow8192_yc failed"
787
788         MULTI_PID1=$!
789         multiop_bg_pause $DIR/$tdir/$tfile-2 Ow8192_c ||
790                 error "mulitop Ow8192_c failed"
791
792         MULTI_PID2=$!
793         ost_evict_client
794
795         kill -USR1 $MULTI_PID1
796         wait $MULTI_PID1
797         rc1=$?
798         kill -USR1 $MULTI_PID2
799         wait $MULTI_PID2
800         rc2=$?
801         lctl set_param fail_loc=0x0
802         client_reconnect
803         [ $rc1 -eq 0 -o $rc2 -eq 0 ] &&
804         error_ignore 5494 "multiop didn't fail fsync: $rc1 or close: $rc2" ||
805                 true
806
807         dmesg | grep "dirty page discard:" || \
808                 error "no discarded dirty page found!"
809 }
810 run_test 24b "test dirty page discard due to client eviction"
811
812 test_26a() {      # was test_26 bug 5921 - evict dead exports by pinger
813 # this test can only run from a client on a separate node.
814         remote_ost || { skip "local OST" && return 0; }
815         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
816         remote_mds || { skip "local MDS" && return 0; }
817
818         if [ $(facet_host mgs) = $(facet_host ost1) ]; then
819                 skip "msg and ost1 are at the same node"
820                 return 0
821         fi
822
823         check_timeout || return 1
824
825         local OST_NEXP=$(do_facet ost1 lctl get_param -n obdfilter.${ost1_svc}.num_exports | cut -d' ' -f2)
826
827         echo starting with $OST_NEXP OST exports
828 # OBD_FAIL_PTLRPC_DROP_RPC 0x505
829         do_facet client lctl set_param fail_loc=0x505
830         # evictor takes PING_EVICT_TIMEOUT + 3 * PING_INTERVAL to evict.
831         # But if there's a race to start the evictor from various obds,
832         # the loser might have to wait for the next ping.
833
834         local rc=0
835         wait_client_evicted ost1 $OST_NEXP $((TIMEOUT * 2 + TIMEOUT * 3 / 4))
836         rc=$?
837         do_facet client lctl set_param fail_loc=0x0
838         [ $rc -eq 0 ] || error "client not evicted from OST"
839 }
840 run_test 26a "evict dead exports"
841
842 test_26b() {      # bug 10140 - evict dead exports by pinger
843         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
844
845         if [ $(facet_host mgs) = $(facet_host ost1) ]; then
846                 skip "msg and ost1 are at the same node"
847                 return 0
848         fi
849
850         check_timeout || return 1
851         clients_up
852         zconf_mount `hostname` $MOUNT2 ||
853                 { error "Failed to mount $MOUNT2"; return 2; }
854         sleep 1 # wait connections being established
855
856         local MDS_NEXP=$(do_facet $SINGLEMDS lctl get_param -n mdt.${mds1_svc}.num_exports | cut -d' ' -f2)
857         local OST_NEXP=$(do_facet ost1 lctl get_param -n obdfilter.${ost1_svc}.num_exports | cut -d' ' -f2)
858
859         echo starting with $OST_NEXP OST and $MDS_NEXP MDS exports
860
861         zconf_umount `hostname` $MOUNT2 -f
862
863         # PING_INTERVAL max(obd_timeout / 4, 1U)
864         # PING_EVICT_TIMEOUT (PING_INTERVAL * 6)
865
866         # evictor takes PING_EVICT_TIMEOUT + 3 * PING_INTERVAL to evict.  
867         # But if there's a race to start the evictor from various obds, 
868         # the loser might have to wait for the next ping.
869         # = 9 * PING_INTERVAL + PING_INTERVAL
870         # = 10 PING_INTERVAL = 10 obd_timeout / 4 = 2.5 obd_timeout
871         # let's wait $((TIMEOUT * 3)) # bug 19887
872         local rc=0
873         wait_client_evicted ost1 $OST_NEXP $((TIMEOUT * 3)) || \
874                 error "Client was not evicted by ost" rc=1
875         wait_client_evicted $SINGLEMDS $MDS_NEXP $((TIMEOUT * 3)) || \
876                 error "Client was not evicted by mds"
877 }
878 run_test 26b "evict dead exports"
879
880 test_27() {
881         mkdir -p $DIR/$tdir
882         writemany -q -a $DIR/$tdir/$tfile 0 5 &
883         CLIENT_PID=$!
884         sleep 1
885         local save_FAILURE_MODE=$FAILURE_MODE
886         FAILURE_MODE="SOFT"
887         facet_failover $SINGLEMDS
888 #define OBD_FAIL_OSC_SHUTDOWN            0x407
889         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000407
890         # need to wait for reconnect
891         echo waiting for fail_loc
892         wait_update_facet $SINGLEMDS "lctl get_param -n fail_loc" "-2147482617"
893         facet_failover $SINGLEMDS
894         #no crashes allowed!
895         kill -USR1 $CLIENT_PID
896         wait $CLIENT_PID 
897         true
898         FAILURE_MODE=$save_FAILURE_MODE
899 }
900 run_test 27 "fail LOV while using OSC's"
901
902 test_28() {      # bug 6086 - error adding new clients
903         do_facet client mcreate $DIR/$tfile       || return 1
904         drop_bl_callback "chmod 0777 $DIR/$tfile" ||echo "evicted as expected"
905         #define OBD_FAIL_MDS_CLIENT_ADD 0x12f
906         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012f"
907         # fail once (evicted), reconnect fail (fail_loc), ok
908         client_up || (sleep 10; client_up) || (sleep 10; client_up) || error "reconnect failed"
909         rm -f $DIR/$tfile
910         fail $SINGLEMDS         # verify MDS last_rcvd can be loaded
911 }
912 run_test 28 "handle error adding new clients (bug 6086)"
913
914 test_29a() { # bug 22273 - error adding new clients
915         #define OBD_FAIL_TGT_CLIENT_ADD 0x711
916         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000711"
917         # fail abort so client will be new again
918         fail_abort $SINGLEMDS
919         client_up || error "reconnect failed"
920         wait_osc_import_state mds ost FULL
921         return 0
922 }
923 run_test 29a "error adding new clients doesn't cause LBUG (bug 22273)"
924
925 test_29b() { # bug 22273 - error adding new clients
926         #define OBD_FAIL_TGT_CLIENT_ADD 0x711
927         do_facet ost1 "lctl set_param fail_loc=0x80000711"
928         # fail abort so client will be new again
929         fail_abort ost1
930         client_up || error "reconnect failed"
931         return 0
932 }
933 run_test 29b "error adding new clients doesn't cause LBUG (bug 22273)"
934
935 test_50() {
936         mkdir -p $DIR/$tdir
937         # put a load of file creates/writes/deletes
938         writemany -q $DIR/$tdir/$tfile 0 5 &
939         CLIENT_PID=$!
940         echo writemany pid $CLIENT_PID
941         sleep 10
942         FAILURE_MODE="SOFT"
943         fail $SINGLEMDS
944         # wait for client to reconnect to MDS
945         sleep 60
946         fail $SINGLEMDS
947         sleep 60
948         fail $SINGLEMDS
949         # client process should see no problems even though MDS went down
950         sleep $TIMEOUT
951         kill -USR1 $CLIENT_PID
952         wait $CLIENT_PID 
953         rc=$?
954         echo writemany returned $rc
955         #these may fail because of eviction due to slow AST response.
956         [ $rc -eq 0 ] || error_ignore 13652 "writemany returned rc $rc" || true
957 }
958 run_test 50 "failover MDS under load"
959
960 test_51() {
961         #define OBD_FAIL_MDS_SYNC_CAPA_SL                    0x1310
962         do_facet ost1 lctl set_param fail_loc=0x00001310
963
964         mkdir -p $DIR/$tdir
965         # put a load of file creates/writes/deletes
966         writemany -q $DIR/$tdir/$tfile 0 5 &
967         CLIENT_PID=$!
968         sleep 1
969         FAILURE_MODE="SOFT"
970         facet_failover $SINGLEMDS
971         # failover at various points during recovery
972         SEQ="1 5 10 $(seq $TIMEOUT 5 $(($TIMEOUT+10)))"
973         echo will failover at $SEQ
974         for i in $SEQ
975         do
976                 #echo failover in $i sec
977                 log "test_$testnum: failover in $i sec"
978                 sleep $i
979                 facet_failover $SINGLEMDS
980         done
981         # client process should see no problems even though MDS went down
982         # and recovery was interrupted
983         sleep $TIMEOUT
984         kill -USR1 $CLIENT_PID
985         wait $CLIENT_PID 
986         rc=$?
987         echo writemany returned $rc
988         [ $rc -eq 0 ] || error_ignore 13652 "writemany returned rc $rc" || true
989 }
990 run_test 51 "failover MDS during recovery"
991
992 test_52_guts() {
993         do_facet client "mkdir -p $DIR/$tdir"
994         do_facet client "writemany -q -a $DIR/$tdir/$tfile 300 5" &
995         CLIENT_PID=$!
996         echo writemany pid $CLIENT_PID
997         sleep 10
998         FAILURE_MODE="SOFT"
999         fail ost1
1000         rc=0
1001         wait $CLIENT_PID || rc=$?
1002         # active client process should see an EIO for down OST
1003         [ $rc -eq 5 ] && { echo "writemany correctly failed $rc" && return 0; }
1004         # but timing or failover setup may allow success
1005         [ $rc -eq 0 ] && { echo "writemany succeeded" && return 0; }
1006         echo "writemany returned $rc"
1007         return $rc
1008 }
1009
1010 test_52() {
1011         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1012
1013         mkdir -p $DIR/$tdir
1014         test_52_guts
1015         rc=$?
1016         [ $rc -ne 0 ] && { return $rc; }
1017         # wait for client to reconnect to OST
1018         sleep 30
1019         test_52_guts
1020         rc=$?
1021         [ $rc -ne 0 ] && { return $rc; }
1022         sleep 30
1023         test_52_guts
1024         rc=$?
1025         client_reconnect
1026         #return $rc
1027 }
1028 run_test 52 "failover OST under load"
1029
1030 # test of open reconstruct
1031 test_53() {
1032         touch $DIR/$tfile
1033         drop_ldlm_reply "openfile -f O_RDWR:O_CREAT -m 0755 $DIR/$tfile" ||\
1034                 return 2
1035 }
1036 run_test 53 "touch: drop rep"
1037
1038 test_54() {
1039         zconf_mount `hostname` $MOUNT2
1040         touch $DIR/$tfile
1041         touch $DIR2/$tfile.1
1042         sleep 10
1043         cat $DIR2/$tfile.missing # save transno = 0, rc != 0 into last_rcvd
1044         fail $SINGLEMDS
1045         umount $MOUNT2
1046         ERROR=`dmesg | egrep "(test 54|went back in time)" | tail -n1 | grep "went back in time"`
1047         [ x"$ERROR" == x ] || error "back in time occured"
1048 }
1049 run_test 54 "back in time"
1050
1051 # bug 11330 - liblustre application death during I/O locks up OST
1052 test_55() {
1053         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1054
1055         mkdir -p $DIR/$tdir
1056
1057         # first dd should be finished quickly
1058         $LFS setstripe -c 1 -i 0 $DIR/$tdir/$tfile-1
1059         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=32M count=4  &
1060         DDPID=$!
1061         count=0
1062         echo  "step1: testing ......"
1063         while [ true ]; do
1064             if [ -z `ps x | awk '$1 == '$DDPID' { print $5 }'` ]; then break; fi
1065             count=$[count+1]
1066             if [ $count -gt 64 ]; then
1067                 error "dd should be finished!"
1068             fi
1069             sleep 1
1070         done    
1071         echo "(dd_pid=$DDPID, time=$count)successful"
1072
1073         $LFS setstripe -c 1 -i 0 $DIR/$tdir/$tfile-2
1074         #define OBD_FAIL_OST_DROP_REQ            0x21d
1075         do_facet ost1 lctl set_param fail_loc=0x0000021d
1076         # second dd will be never finished
1077         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=32M count=4  &        
1078         DDPID=$!
1079         count=0
1080         echo  "step2: testing ......"
1081         while [ $count -le 64 ]; do
1082             dd_name="`ps x | awk '$1 == '$DDPID' { print $5 }'`"            
1083             if [ -z  $dd_name ]; then 
1084                 ls -l $DIR/$tdir
1085                 echo  "debug: (dd_name=$dd_name, dd_pid=$DDPID, time=$count)"
1086                 error "dd shouldn't be finished!"
1087             fi
1088             count=$[count+1]
1089             sleep 1
1090         done    
1091         echo "(dd_pid=$DDPID, time=$count)successful"
1092
1093         #Recover fail_loc and dd will finish soon
1094         do_facet ost1 lctl set_param fail_loc=0
1095         count=0
1096         echo  "step3: testing ......"
1097         while [ true ]; do
1098             if [ -z `ps x | awk '$1 == '$DDPID' { print $5 }'` ]; then break; fi
1099             count=$[count+1]
1100             if [ $count -gt 500 ]; then
1101                 error "dd should be finished!"
1102             fi
1103             sleep 1
1104         done    
1105         echo "(dd_pid=$DDPID, time=$count)successful"
1106
1107         rm -rf $DIR/$tdir
1108 }
1109 run_test 55 "ost_brw_read/write drops timed-out read/write request"
1110
1111 test_56() { # b=11277
1112 #define OBD_FAIL_MDS_RESEND      0x136
1113         touch $DIR/$tfile
1114         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000136"
1115         stat $DIR/$tfile
1116         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1117         rm -f $DIR/$tfile
1118 }
1119 run_test 56 "do not allow reconnect to busy exports"
1120
1121 test_57_helper() {
1122         # no oscs means no client or mdt 
1123         while lctl get_param osc.*.* > /dev/null 2>&1; do
1124                 : # loop until proc file is removed
1125         done
1126 }
1127
1128 test_57() { # bug 10866
1129         test_57_helper &
1130         pid=$!
1131         sleep 1
1132 #define OBD_FAIL_LPROC_REMOVE            0xB00
1133         lctl set_param fail_loc=0x80000B00
1134         zconf_umount `hostname` $DIR
1135         lctl set_param fail_loc=0x80000B00
1136         fail_abort $SINGLEMDS
1137         kill -9 $pid
1138         lctl set_param fail_loc=0
1139         mount_client $DIR
1140         do_facet client "df $DIR"
1141 }
1142 run_test 57 "read procfs entries causes kernel crash"
1143
1144 test_58() { # bug 11546
1145 #define OBD_FAIL_MDC_ENQUEUE_PAUSE        0x801
1146         touch $DIR/$tfile
1147         ls -la $DIR/$tfile
1148         lctl set_param fail_loc=0x80000801
1149         cp $DIR/$tfile /dev/null &
1150         pid=$!
1151         sleep 1
1152         lctl set_param fail_loc=0
1153         drop_bl_callback rm -f $DIR/$tfile
1154         wait $pid
1155         # the first 'df' could tigger the eviction caused by
1156         # 'drop_bl_callback', and it's normal case.
1157         # but the next 'df' should return successfully.
1158         do_facet client "df $DIR" || do_facet client "df $DIR"
1159 }
1160 run_test 58 "Eviction in the middle of open RPC reply processing"
1161
1162 test_59() { # bug 10589
1163         zconf_mount `hostname` $MOUNT2 || error "Failed to mount $MOUNT2"
1164         echo $DIR2 | grep -q $MOUNT2 || error "DIR2 is not set properly: $DIR2"
1165 #define OBD_FAIL_LDLM_CANCEL_EVICT_RACE  0x311
1166         lctl set_param fail_loc=0x311
1167         writes=$(LANG=C dd if=/dev/zero of=$DIR2/$tfile count=1 2>&1)
1168         [ $? = 0 ] || error "dd write failed"
1169         writes=$(echo $writes | awk  -F '+' '/out/ {print $1}')
1170         lctl set_param fail_loc=0
1171         sync
1172         zconf_umount `hostname` $MOUNT2 -f
1173         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1)
1174         [ $? = 0 ] || error "dd read failed"
1175         reads=$(echo $reads | awk -F '+' '/in/ {print $1}')
1176         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
1177 }
1178 run_test 59 "Read cancel race on client eviction"
1179
1180 err17935 () {
1181     # we assume that all md changes are in the MDT0 changelog
1182     if [ $MDSCOUNT -gt 1 ]; then
1183         error_ignore 17935 $*
1184     else
1185         error $*
1186     fi
1187 }
1188
1189 test_60() {
1190         MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
1191             awk '{gsub(/_UUID/,""); print $1}' | head -1)
1192
1193         NUM_FILES=15000
1194         mkdir -p $DIR/$tdir
1195
1196         # Register (and start) changelog
1197         USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
1198         echo "Registered as $MDT0 changelog user $USER"
1199
1200         # Generate a large number of changelog entries
1201         createmany -o $DIR/$tdir/$tfile $NUM_FILES
1202         sync
1203         sleep 5
1204
1205         # Unlink files in the background
1206         unlinkmany $DIR/$tdir/$tfile $NUM_FILES &
1207         CLIENT_PID=$!
1208         sleep 1
1209
1210         # Failover the MDS while unlinks are happening
1211         facet_failover $SINGLEMDS
1212
1213         # Wait for unlinkmany to finish
1214         wait $CLIENT_PID
1215
1216         # Check if all the create/unlink events were recorded
1217         # in the changelog
1218         $LFS changelog $MDT0 >> $DIR/$tdir/changelog
1219         local cl_count=$(grep UNLNK $DIR/$tdir/changelog | wc -l)
1220         echo "$cl_count unlinks in $MDT0 changelog"
1221
1222         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $USER
1223         USERS=$(( $(do_facet $SINGLEMDS lctl get_param -n \
1224             mdd.$MDT0.changelog_users | wc -l) - 2 ))
1225         if [ $USERS -eq 0 ]; then
1226             [ $cl_count -eq $NUM_FILES ] || \
1227                 err17935 "Recorded ${cl_count} unlinks out of $NUM_FILES"
1228             # Also make sure we can clear large changelogs
1229             cl_count=$($LFS changelog $FSNAME | wc -l)
1230             [ $cl_count -le 2 ] || \
1231                 error "Changelog not empty: $cl_count entries"
1232         else
1233             # If there are other users, there may be other unlinks in the log
1234             [ $cl_count -ge $NUM_FILES ] || \
1235                 err17935 "Recorded ${cl_count} unlinks out of $NUM_FILES"
1236             echo "$USERS other changelog users; can't verify clear"
1237         fi
1238 }
1239 run_test 60 "Add Changelog entries during MDS failover"
1240
1241 test_61()
1242 {
1243         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1244         mdtosc=${mdtosc/-MDT*/-MDT\*}
1245         local cflags="osc.$mdtosc.connect_flags"
1246         do_facet $SINGLEMDS "lctl get_param -n $cflags" |grep -q skip_orphan
1247         [ $? -ne 0 ] && skip "don't have skip orphan feature" && return
1248
1249         mkdir -p $DIR/$tdir || error "mkdir dir $DIR/$tdir failed"
1250         # Set the default stripe of $DIR/$tdir to put the files to ost1
1251         $LFS setstripe -c 1 -i 0 $DIR/$tdir
1252
1253         replay_barrier $SINGLEMDS
1254         createmany -o $DIR/$tdir/$tfile-%d 10 
1255         local oid=`do_facet ost1 "lctl get_param -n obdfilter.${ost1_svc}.last_id"`
1256
1257         fail_abort $SINGLEMDS
1258         
1259         touch $DIR/$tdir/$tfile
1260         local id=`$LFS getstripe $DIR/$tdir/$tfile | awk '$1 == 0 { print $2 }'`
1261         [ $id -le $oid ] && error "the orphan objid was reused, failed"
1262
1263         # Cleanup
1264         rm -rf $DIR/$tdir
1265 }
1266 run_test 61 "Verify to not reuse orphan objects - bug 17025"
1267
1268 # test_62 as seen it b2_1 please do not reuse test_62
1269 #test_62()
1270 #{
1271 #       zconf_umount `hostname` $DIR
1272 #       #define OBD_FAIL_PTLRPC_DELAY_IMP_FULL   0x516
1273 #       lctl set_param fail_loc=0x516
1274 #       mount_client $DIR
1275 #}
1276 #run_test 62 "Verify connection flags race - bug LU-1716"
1277
1278 check_cli_ir_state()
1279 {
1280         local NODE=${1:-$HOSTNAME}
1281         local st
1282         st=$(do_node $NODE "lctl get_param mgc.*.ir_state |
1283                             awk '/imperative_recovery:/ { print \\\$2}'")
1284         [ $st != ON -o $st != OFF -o $st != ENABLED -o $st != DISABLED ] ||
1285                 error "Error state $st, must be ENABLED or DISABLED"
1286         echo -n $st
1287 }
1288
1289 check_target_ir_state()
1290 {
1291         local target=${1}
1292         local name=${target}_svc
1293         local recovery_proc=obdfilter.${!name}.recovery_status
1294         local st
1295
1296         st=$(do_facet $target "lctl get_param -n $recovery_proc |
1297                                awk '/IR:/{ print \\\$2}'")
1298         [ $st != ON -o $st != OFF -o $st != ENABLED -o $st != DISABLED ] ||
1299                 error "Error state $st, must be ENABLED or DISABLED"
1300         echo -n $st
1301 }
1302
1303 set_ir_status()
1304 {
1305         do_facet mgs lctl set_param -n mgs.MGS.live.$FSNAME="state=$1"
1306 }
1307
1308 get_ir_status()
1309 {
1310         local state=$(do_facet mgs "lctl get_param -n mgs.MGS.live.$FSNAME |
1311                                     awk '/state:/{ print \\\$2 }'")
1312         echo -n ${state/,/}
1313 }
1314
1315 nidtbl_version_mgs()
1316 {
1317         local ver=$(do_facet mgs "lctl get_param -n mgs.MGS.live.$FSNAME |
1318                                   awk '/nidtbl_version:/{ print \\\$2 }'")
1319         echo -n $ver
1320 }
1321
1322 # nidtbl_version_client <mds1|client> [node]
1323 nidtbl_version_client()
1324 {
1325         local cli=$1
1326         local node=${2:-$HOSTNAME}
1327
1328         if [ X$cli = Xclient ]; then
1329                 cli=$FSNAME-client
1330         else
1331                 local obdtype=${cli/%[0-9]*/}
1332                 [ $obdtype != mds ] && error "wrong parameters $cli"
1333
1334                 node=$(facet_active_host $cli)
1335                 local t=${cli}_svc
1336                 cli=${!t}
1337         fi
1338
1339         local vers=$(do_node $node "lctl get_param -n mgc.*.ir_state" |
1340                      awk "/$cli/{print \$6}" |sort -u)
1341
1342         # in case there are multiple mounts on the client node
1343         local arr=($vers)
1344         [ ${#arr[@]} -ne 1 ] && error "versions on client node mismatch"
1345         echo -n $vers
1346 }
1347
1348 nidtbl_versions_match()
1349 {
1350         [ $(nidtbl_version_mgs) -eq $(nidtbl_version_client ${1:-client}) ]
1351 }
1352
1353 target_instance_match()
1354 {
1355         local srv=$1
1356         local obdtype
1357         local cliname
1358
1359         obdtype=${srv/%[0-9]*/}
1360         case $obdtype in
1361         mds)
1362                 obdname="mdt"
1363                 cliname="mdc"
1364                 ;;
1365         ost)
1366                 obdname="obdfilter"
1367                 cliname="osc"
1368                 ;;
1369         *)
1370                 error "invalid target type" $srv
1371                 return 1
1372                 ;;
1373         esac
1374
1375         local target=${srv}_svc
1376         local si=$(do_facet $srv lctl get_param -n $obdname.${!target}.instance)
1377         local ci=$(lctl get_param -n $cliname.${!target}-${cliname}-*.import | \
1378                   awk '/instance/{ print $2 }' |head -1)
1379
1380         return $([ $si -eq $ci ])
1381 }
1382
1383 test_100()
1384 {
1385         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1386                 { skip "MGS without IR support"; return 0; }
1387
1388         # MDT was just restarted in the previous test, make sure everything
1389         # is all set.
1390         local cnt=30
1391         while [ $cnt -gt 0 ]; do
1392                 nidtbl_versions_match && break
1393                 sleep 1
1394                 cnt=$((cnt - 1))
1395         done
1396
1397         # disable IR
1398         set_ir_status disabled
1399
1400         local prev_ver=$(nidtbl_version_client client)
1401
1402         local saved_FAILURE_MODE=$FAILURE_MODE
1403         [ $(facet_host mgs) = $(facet_host ost1) ] && FAILURE_MODE="SOFT"
1404         fail ost1
1405
1406         # valid check
1407         [ $(nidtbl_version_client client) -eq $prev_ver ] ||
1408                 error "version must not change due to IR disabled"
1409         target_instance_match ost1 || error "instance mismatch"
1410
1411         # restore env
1412         set_ir_status full
1413         FAILURE_MODE=$saved_FAILURE_MODE
1414 }
1415 run_test 100 "IR: Make sure normal recovery still works w/o IR"
1416
1417 test_101()
1418 {
1419         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1420                 { skip "MGS without IR support"; return 0; }
1421
1422         set_ir_status full
1423
1424         local OST1_IMP=$(get_osc_import_name client ost1)
1425
1426         # disable pinger recovery
1427         lctl set_param -n osc.$OST1_IMP.pinger_recov=0
1428
1429         fail ost1
1430
1431         target_instance_match ost1 || error "instance mismatch"
1432         nidtbl_versions_match || error "version must match"
1433
1434         lctl set_param -n osc.$OST1_IMP.pinger_recov=1
1435 }
1436 run_test 101 "IR: Make sure IR works w/o normal recovery"
1437
1438 test_102()
1439 {
1440         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1441                 { skip "MGS without IR support"; return 0; }
1442
1443         local clients=${CLIENTS:-$HOSTNAME}
1444         local old_version
1445         local new_version
1446         local mgsdev=mgs
1447
1448         set_ir_status full
1449
1450         # let's have a new nidtbl version
1451         fail ost1
1452
1453         # sleep for a while so that clients can see the failure of ost
1454         # it must be MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC.
1455         # int mgc_request.c:
1456         # define MGC_TIMEOUT_MIN_SECONDS   5
1457         # define MGC_TIMEOUT_RAND_CENTISEC 0x1ff /* ~500 *
1458         local count=30  # 20 seconds at most
1459         while [ $count -gt 0 ]; do
1460                 nidtbl_versions_match && break
1461                 sleep 1
1462                 count=$((count-1))
1463         done
1464
1465         nidtbl_versions_match || error "nidtbl mismatch"
1466
1467         # get the version #
1468         old_version=$(nidtbl_version_client client)
1469
1470         zconf_umount_clients $clients $MOUNT || error "Cannot umount client"
1471
1472         # restart mgs
1473         combined_mgs_mds && mgsdev=mds1
1474         remount_facet $mgsdev
1475         fail ost1
1476
1477         zconf_mount_clients $clients $MOUNT || error "Cannot mount client"
1478
1479         # check new version
1480         new_version=$(nidtbl_version_client client)
1481         [ $new_version -lt $old_version ] &&
1482                 error "nidtbl version wrong after mgs restarts"
1483         return 0
1484 }
1485 run_test 102 "IR: New client gets updated nidtbl after MGS restart"
1486
1487 test_103()
1488 {
1489         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1490                 { skip "MGS without IR support"; return 0; }
1491
1492         combined_mgs_mds && skip "mgs and mds on the same target" && return 0
1493
1494         # workaround solution to generate config log on the mds
1495         remount_facet mds1
1496
1497         stop mgs
1498         stop mds1
1499
1500         # We need this test because mds is like a client in IR context.
1501         start mds1 $MDSDEV1 || error "MDS should start w/o mgs"
1502
1503         # start mgs and remount mds w/ ir
1504         start mgs $MGSDEV
1505         clients_up
1506
1507         # remount client so that fsdb will be created on the MGS
1508         umount_client $MOUNT || error "umount failed"
1509         mount_client $MOUNT || error "mount failed"
1510
1511         # sleep 30 seconds so the MDS has a chance to detect MGS restarting
1512         local count=30
1513         while [ $count -gt 0 ]; do
1514                 [ $(nidtbl_version_client mds1) -ne 0 ] && break
1515                 sleep 1
1516                 count=$((count-1))
1517         done
1518
1519         # after a while, mds should be able to reconnect to mgs and fetch
1520         # up-to-date nidtbl version
1521         nidtbl_versions_match mds1 || error "mds nidtbl mismatch"
1522
1523         # reset everything
1524         set_ir_status full
1525 }
1526 run_test 103 "IR: MDS can start w/o MGS and get updated nidtbl later"
1527
1528 test_104()
1529 {
1530         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1531                 { skip "MGS without IR support"; return 0; }
1532
1533         set_ir_status full
1534
1535         stop ost1
1536         start ost1 $(ostdevname 1) "$OST_MOUNT_OPTS -onoir" ||
1537                 error "OST1 cannot start"
1538         clients_up
1539
1540         local ir_state=$(check_target_ir_state ost1)
1541         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1542                 error "ir status on ost1 should be DISABLED"
1543 }
1544 run_test 104 "IR: ost can disable IR voluntarily"
1545
1546 test_105()
1547 {
1548         [ -z "$RCLIENTS" ] && skip "Needs multiple clients" && return 0
1549         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1550                 { skip "MGS without IR support"; return 0; }
1551
1552         set_ir_status full
1553
1554         # get one of the clients from client list
1555         local rcli=$(echo $RCLIENTS |cut -d' ' -f 1)
1556
1557         local old_MOUNTOPT=$MOUNTOPT
1558         MOUNTOPT=${MOUNTOPT},noir
1559         zconf_umount $rcli $MOUNT || error "umount failed"
1560         zconf_mount $rcli $MOUNT || error "mount failed"
1561
1562         # make sure lustre mount at $rcli disabling IR
1563         local ir_state=$(check_cli_ir_state $rcli)
1564         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1565                 error "IR state must be DISABLED at $rcli"
1566
1567         # Since the client just mounted, its last_rcvd entry is not on disk.
1568         # Send an RPC so exp_need_sync forces last_rcvd to commit this export
1569         # so the client can reconnect during OST recovery (LU-924, LU-1582)
1570         $SETSTRIPE -i 0 $DIR/$tfile
1571         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 conv=sync
1572
1573         # make sure MGS's state is Partial
1574         [ $(get_ir_status) = "partial" ] || error "MGS IR state must be partial"
1575
1576         fail ost1
1577         # make sure IR on ost1 is DISABLED
1578         local ir_state=$(check_target_ir_state ost1)
1579         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1580                 error "IR status on ost1 should be DISABLED"
1581
1582         # restore it
1583         MOUNTOPT=$old_MOUNTOPT
1584         zconf_umount $rcli $MOUNT || error "umount failed"
1585         zconf_mount $rcli $MOUNT || error "mount failed"
1586
1587         # make sure MGS's state is full
1588         [ $(get_ir_status) = "full" ] || error "MGS IR status must be full"
1589
1590         fail ost1
1591         # make sure IR on ost1 is ENABLED
1592         local ir_state=$(check_target_ir_state ost1)
1593         [ $ir_state = "ENABLED" -o $ir_state = "ON" ] ||
1594                 error "IR status on ost1 should be ENABLED"
1595
1596         return 0
1597 }
1598 run_test 105 "IR: NON IR clients support"
1599
1600 cleanup_106() {
1601         trap 0
1602         umount_client $DIR2
1603         debugrestore
1604 }
1605
1606 test_106() { # LU-1789
1607         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.50) ]] ||
1608                 { skip "Need MDS version at least 2.3.50"; return 0; }
1609
1610 #define OBD_FAIL_MDC_LIGHTWEIGHT         0x805
1611         $LCTL set_param fail_loc=0x805
1612
1613         debugsave
1614         trap cleanup_106 EXIT
1615
1616         # enable lightweight flag on mdc connection
1617         mount_client $DIR2
1618
1619         local MDS_NEXP=$(do_facet $SINGLEMDS \
1620                          lctl get_param -n mdt.${mds1_svc}.num_exports |
1621                          cut -d' ' -f2)
1622         $LCTL set_param fail_loc=0
1623
1624         touch $DIR2/$tfile || error "failed to create empty file"
1625         replay_barrier $SINGLEMDS
1626
1627         $LCTL set_param debug=console
1628         $LCTL clear
1629         facet_failover $SINGLEMDS
1630
1631         # lightweight connection must be evicted
1632         touch -c $DIR2/$tfile || true
1633         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1634         evicted=`awk '/This client was evicted by .*MDT0000/ {
1635                                       print;
1636                       }' $TMP/lustre-log-$TESTNAME.log`
1637         [ -z "$evicted" ] && error "lightweight client not evicted by mds"
1638
1639         # and all operations performed by lightweight client should be
1640         # synchronous, so the file created before mds restart should be there
1641         $CHECKSTAT -t file $DIR/$tfile || error "file not present"
1642         rm -f $DIR/$tfile
1643
1644         cleanup_106
1645 }
1646 run_test 106 "lightweight connection support"
1647
1648 test_107 () {
1649         local CLIENT_PID
1650         local close_pid
1651
1652         mkdir -p $DIR/$tdir
1653         # OBD_FAIL_MDS_REINT_NET_REP   0x119
1654         do_facet $SINGLEMDS lctl set_param fail_loc=0x119
1655         multiop $DIR/$tdir D_c &
1656         close_pid=$!
1657         mkdir $DIR/$tdir/dir_106 &
1658         CLIENT_PID=$!
1659         do_facet $SINGLEMDS lctl set_param fail_loc=0
1660         fail $SINGLEMDS
1661
1662         wait $CLIENT_PID || rc=$?
1663         checkstat -t dir $DIR/$tdir/dir_106 || return 1
1664
1665         kill -USR1 $close_pid
1666         wait $close_pid || return 2
1667
1668         return $rc
1669 }
1670 run_test 107 "drop reint reply, then restart MDT"
1671
1672 test_110a () {
1673         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1674         local remote_dir=$DIR/$tdir/remote_dir
1675         local MDTIDX=1
1676
1677         mkdir -p $DIR/$tdir
1678         drop_request "$LFS mkdir -i $MDTIDX $remote_dir" ||
1679                                         error "lfs mkdir failed"
1680         local diridx=$($GETSTRIPE -M $remote_dir)
1681         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1682
1683         rm -rf $DIR/$tdir || error "rmdir failed"
1684 }
1685 run_test 110a "create remote directory: drop client req"
1686
1687 test_110b () {
1688         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1689         local remote_dir=$DIR/$tdir/remote_dir
1690         local MDTIDX=1
1691
1692         mkdir -p $DIR/$tdir
1693         drop_reint_reply "$LFS mkdir -i $MDTIDX $remote_dir" ||
1694                                         error "lfs mkdir failed"
1695
1696         diridx=$($GETSTRIPE -M $remote_dir)
1697         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1698
1699         rm -rf $DIR/$tdir || error "rmdir failed"
1700 }
1701 run_test 110b "create remote directory: drop Master rep"
1702
1703 test_110c () {
1704         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1705         local remote_dir=$DIR/$tdir/remote_dir
1706         local MDTIDX=1
1707
1708         mkdir -p $DIR/$tdir
1709         drop_update_reply $((MDTIDX + 1)) "$LFS mkdir -i $MDTIDX $remote_dir" ||
1710                                                 error "lfs mkdir failed"
1711
1712         diridx=$($GETSTRIPE -M $remote_dir)
1713         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1714
1715         rm -rf $DIR/$tdir || error "rmdir failed"
1716 }
1717 run_test 110c "create remote directory: drop update rep on slave MDT"
1718
1719 test_110d () {
1720         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1721         local remote_dir=$DIR/$tdir/remote_dir
1722         local MDTIDX=1
1723
1724         mkdir -p $DIR/$tdir
1725         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
1726
1727         drop_request "rm -rf $remote_dir" || error "rm remote dir failed"
1728
1729         rm -rf $DIR/$tdir || error "rmdir failed"
1730
1731         return 0
1732 }
1733 run_test 110d "remove remote directory: drop client req"
1734
1735 test_110e () {
1736         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1737         local remote_dir=$DIR/$tdir/remote_dir
1738         local MDTIDX=1
1739
1740         mkdir -p $DIR/$tdir
1741         $LFS mkdir -i $MDTIDX $remote_dir  || error "lfs mkdir failed"
1742         drop_reint_reply "rm -rf $remote_dir" || error "rm remote dir failed"
1743
1744         rm -rf $DIR/$tdir || error "rmdir failed"
1745
1746         return 0
1747 }
1748 run_test 110e "remove remote directory: drop master rep"
1749
1750 test_110f () {
1751         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1752         local remote_dir=$DIR/$tdir/remote_dir
1753         local MDTIDX=1
1754
1755         mkdir -p $DIR/$tdir
1756         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
1757         drop_update_reply $MDTIDX "rm -rf $remote_dir" ||
1758                                         error "rm remote dir failed"
1759
1760         rm -rf $DIR/$tdir || error "rmdir failed"
1761 }
1762 run_test 110f "remove remote directory: drop slave rep"
1763
1764 # LU-2844 mdt prepare fail should not cause umount oops
1765 test_111 () {
1766         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
1767 #define OBD_FAIL_MDS_CHANGELOG_INIT 0x151
1768         do_facet $SINGLEMDS lctl set_param fail_loc=0x151
1769         stop $SINGLEMDS || error "stop MDS failed"
1770         start $SINGLEMDS $mdsdev && error "start MDS should fail"
1771         do_facet $SINGLEMDS lctl set_param fail_loc=0
1772         start $SINGLEMDS $mdsdev || error "start MDS failed"
1773 }
1774 run_test 111 "mdd setup fail should not cause umount oops"
1775
1776 complete $SECONDS
1777 check_and_cleanup_lustre
1778 exit_status