Whamcloud - gitweb
Branch HEAD
[fs/lustre-release.git] / lustre / tests / replay-single.sh
1 #!/bin/bash
2
3 set -e
4 #set -v
5
6 #
7 # This test needs to be run on the client
8 #
9 SAVE_PWD=$PWD
10 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
11 SETUP=${SETUP:-}
12 CLEANUP=${CLEANUP:-}
13 . $LUSTRE/tests/test-framework.sh
14 init_test_env $@
15 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
16 CHECK_GRANT=${CHECK_GRANT:-"yes"}
17 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
18
19 remote_mds_nodsh && log "SKIP: remote MDS with nodsh" && exit 0
20
21 # Skip these tests
22 # bug number:  17466 15962
23 ALWAYS_EXCEPT="61d   33b $REPLAY_SINGLE_EXCEPT"
24
25 if [ "$FAILURE_MODE" = "HARD" ] && mixed_ost_devs; then
26     CONFIG_EXCEPTIONS="0b 42 47 61a 61c"
27     echo -n "Several ost services on one ost node are used with FAILURE_MODE=$FAILURE_MODE. "
28     echo "Except the tests: $CONFIG_EXCEPTIONS"
29     ALWAYS_EXCEPT="$ALWAYS_EXCEPT $CONFIG_EXCEPTIONS"
30 fi
31
32 #                                                  63 min  7 min  AT AT AT AT"
33 [ "$SLOW" = "no" ] && EXCEPT_SLOW="1 2 3 4 6 12 16 44a      44b    65 66 67 68"
34
35 build_test_filter
36
37 check_and_setup_lustre
38
39 mkdir -p $DIR
40
41 assert_DIR
42 rm -rf $DIR/[df][0-9]*
43
44 test_0a() {     # was test_0
45     sleep 10
46     mkdir $DIR/$tfile
47     replay_barrier $SINGLEMDS
48     fail $SINGLEMDS
49     rmdir $DIR/$tfile
50 }
51 run_test 0a "empty replay"
52
53 test_0b() {
54     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
55
56     # this test attempts to trigger a race in the precreation code,
57     # and must run before any other objects are created on the filesystem
58     fail ost1
59     createmany -o $DIR/$tfile 20 || return 1
60     unlinkmany $DIR/$tfile 20 || return 2
61 }
62 run_test 0b "ensure object created after recover exists. (3284)"
63
64 seq_set_width()
65 {
66     local mds=$1
67     local width=$2
68     lctl set_param -n seq.cli-srv-$mds-mdc-*.width=$width
69 }
70
71 seq_get_width()
72 {
73     local mds=$1
74     lctl get_param -n seq.cli-srv-$mds-mdc-*.width
75 }
76
77 # This test should pass for single-mds and multi-mds configs.
78 # But for different configurations it tests different things.
79 #
80 # single-mds
81 # ----------
82 # (1) fld_create replay should happen;
83 #
84 # (2) fld_create replay should not return -EEXISTS, if it does
85 # this means sequence manager recovery code is buggy and allocated
86 # same sequence two times after recovery.
87 #
88 # multi-mds
89 # ---------
90 # (1) fld_create replay may not happen, because its home MDS is
91 # MDS2 which is not involved to revovery;
92 #
93 # (2) as fld_create does not happen on MDS1, it does not make any
94 # problem.
95 test_0c() {
96     local label=`mdsdevlabel 1`
97     [ -z "$label" ] && echo "No label for mds1" && return 1
98
99     replay_barrier $SINGLEMDS
100     local sw=`seq_get_width $label`
101
102     # make seq manager switch to next sequence each
103     # time as new fid is needed.
104     seq_set_width $label 1
105
106     # make sure that fld has created at least one new
107     # entry on server
108     touch $DIR/$tfile || return 2
109     seq_set_width $label $sw
110
111     # fail $SINGLEMDS and start recovery, replay RPCs, etc.
112     fail $SINGLEMDS
113
114     # wait for recovery finish
115     sleep 10
116     df $MOUNT
117
118     # flush fld cache and dentry cache to make it lookup
119     # created entry instead of revalidating existent one
120     umount $MOUNT
121     zconf_mount `hostname` $MOUNT
122
123     # issue lookup which should call fld lookup which
124     # should fail if client did not replay fld create
125     # correctly and server has no fld entry
126     touch $DIR/$tfile || return 3
127     rm $DIR/$tfile || return 4
128 }
129 run_test 0c "fld create"
130
131 test_1() {
132     replay_barrier $SINGLEMDS
133     mcreate $DIR/$tfile
134     fail $SINGLEMDS
135     $CHECKSTAT -t file $DIR/$tfile || return 1
136     rm $DIR/$tfile
137 }
138 run_test 1 "simple create"
139
140 test_2a() {
141     replay_barrier $SINGLEMDS
142     touch $DIR/$tfile
143     fail $SINGLEMDS
144     $CHECKSTAT -t file $DIR/$tfile || return 1
145     rm $DIR/$tfile
146 }
147 run_test 2a "touch"
148
149 test_2b() {
150     mcreate $DIR/$tfile
151     replay_barrier $SINGLEMDS
152     touch $DIR/$tfile
153     fail $SINGLEMDS
154     $CHECKSTAT -t file $DIR/$tfile || return 1
155     rm $DIR/$tfile
156 }
157 run_test 2b "touch"
158
159 test_3a() {
160     local file=$DIR/$tfile
161     replay_barrier $SINGLEMDS
162     mcreate $file
163     openfile -f O_DIRECTORY $file
164     fail $SINGLEMDS
165     $CHECKSTAT -t file $file || return 2
166     rm $file
167 }
168 run_test 3a "replay failed open(O_DIRECTORY)"
169
170 test_3b() {
171     replay_barrier $SINGLEMDS
172 #define OBD_FAIL_MDS_OPEN_PACK | OBD_FAIL_ONCE
173     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000114"
174     touch $DIR/$tfile
175     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
176     fail $SINGLEMDS
177     $CHECKSTAT -t file $DIR/$tfile && return 2
178     return 0
179 }
180 run_test 3b "replay failed open -ENOMEM"
181
182 test_3c() {
183     replay_barrier $SINGLEMDS
184 #define OBD_FAIL_MDS_ALLOC_OBDO | OBD_FAIL_ONCE
185     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000128"
186     touch $DIR/$tfile
187     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
188     fail $SINGLEMDS
189
190     $CHECKSTAT -t file $DIR/$tfile && return 2
191     return 0
192 }
193 run_test 3c "replay failed open -ENOMEM"
194
195 test_4a() {     # was test_4
196     replay_barrier $SINGLEMDS
197     for i in `seq 10`; do
198         echo "tag-$i" > $DIR/$tfile-$i
199     done
200     fail $SINGLEMDS
201     for i in `seq 10`; do
202       grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
203     done
204 }
205 run_test 4a "|x| 10 open(O_CREAT)s"
206
207 test_4b() {
208     replay_barrier $SINGLEMDS
209     rm -rf $DIR/$tfile-*
210     fail $SINGLEMDS
211     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
212 }
213 run_test 4b "|x| rm 10 files"
214
215 # The idea is to get past the first block of precreated files on both
216 # osts, and then replay.
217 test_5() {
218     replay_barrier $SINGLEMDS
219     for i in `seq 220`; do
220         echo "tag-$i" > $DIR/$tfile-$i
221     done
222     fail $SINGLEMDS
223     for i in `seq 220`; do
224       grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
225     done
226     rm -rf $DIR/$tfile-*
227     sleep 3
228     # waiting for commitment of removal
229 }
230 run_test 5 "|x| 220 open(O_CREAT)"
231
232
233 test_6a() {     # was test_6
234     mkdir -p $DIR/$tdir
235     replay_barrier $SINGLEMDS
236     mcreate $DIR/$tdir/$tfile
237     fail $SINGLEMDS
238     $CHECKSTAT -t dir $DIR/$tdir || return 1
239     $CHECKSTAT -t file $DIR/$tdir/$tfile || return 2
240     sleep 2
241     # waiting for log process thread
242 }
243 run_test 6a "mkdir + contained create"
244
245 test_6b() {
246     mkdir -p $DIR/$tdir
247     replay_barrier $SINGLEMDS
248     rm -rf $DIR/$tdir
249     fail $SINGLEMDS
250     $CHECKSTAT -t dir $DIR/$tdir && return 1 || true
251 }
252 run_test 6b "|X| rmdir"
253
254 test_7() {
255     mkdir -p $DIR/$tdir
256     replay_barrier $SINGLEMDS
257     mcreate $DIR/$tdir/$tfile
258     fail $SINGLEMDS
259     $CHECKSTAT -t dir $DIR/$tdir || return 1
260     $CHECKSTAT -t file $DIR/$tdir/$tfile || return 2
261     rm -fr $DIR/$tdir
262 }
263 run_test 7 "mkdir |X| contained create"
264
265 test_8() {
266     # make sure no side-effect from previous test.
267     rm -f $DIR/$tfile
268     replay_barrier $SINGLEMDS
269     multiop_bg_pause $DIR/$tfile mo_c || return 4
270     MULTIPID=$!
271     fail $SINGLEMDS
272     ls $DIR/$tfile
273     $CHECKSTAT -t file $DIR/$tfile || return 1
274     kill -USR1 $MULTIPID || return 2
275     wait $MULTIPID || return 3
276     rm $DIR/$tfile
277 }
278 run_test 8 "creat open |X| close"
279
280 test_9() {
281     replay_barrier $SINGLEMDS
282     mcreate $DIR/$tfile
283     local old_inum=`ls -i $DIR/$tfile | awk '{print $1}'`
284     fail $SINGLEMDS
285     local new_inum=`ls -i $DIR/$tfile | awk '{print $1}'`
286
287     echo " old_inum == $old_inum, new_inum == $new_inum"
288     if [ $old_inum -eq $new_inum  ] ;
289     then
290         echo " old_inum and new_inum match"
291     else
292         echo "!!!! old_inum and new_inum NOT match"
293         return 1
294     fi
295     rm $DIR/$tfile
296 }
297 run_test 9  "|X| create (same inum/gen)"
298
299 test_10() {
300     mcreate $DIR/$tfile
301     replay_barrier $SINGLEMDS
302     mv $DIR/$tfile $DIR/$tfile-2
303     rm -f $DIR/$tfile
304     fail $SINGLEMDS
305     $CHECKSTAT $DIR/$tfile && return 1
306     $CHECKSTAT $DIR/$tfile-2 ||return 2
307     rm $DIR/$tfile-2
308     return 0
309 }
310 run_test 10 "create |X| rename unlink"
311
312 test_11() {
313     mcreate $DIR/$tfile
314     echo "old" > $DIR/$tfile
315     mv $DIR/$tfile $DIR/$tfile-2
316     replay_barrier $SINGLEMDS
317     echo "new" > $DIR/$tfile
318     grep new $DIR/$tfile
319     grep old $DIR/$tfile-2
320     fail $SINGLEMDS
321     grep new $DIR/$tfile || return 1
322     grep old $DIR/$tfile-2 || return 2
323 }
324 run_test 11 "create open write rename |X| create-old-name read"
325
326 test_12() {
327     mcreate $DIR/$tfile
328     multiop_bg_pause $DIR/$tfile o_tSc || return 3
329     pid=$!
330     rm -f $DIR/$tfile
331     replay_barrier $SINGLEMDS
332     kill -USR1 $pid
333     wait $pid || return 1
334
335     fail $SINGLEMDS
336     [ -e $DIR/$tfile ] && return 2
337     return 0
338 }
339 run_test 12 "open, unlink |X| close"
340
341
342 # 1777 - replay open after committed chmod that would make
343 #        a regular open a failure
344 test_13() {
345     mcreate $DIR/$tfile
346     multiop_bg_pause $DIR/$tfile O_wc || return 3
347     pid=$!
348     chmod 0 $DIR/$tfile
349     $CHECKSTAT -p 0 $DIR/$tfile
350     replay_barrier $SINGLEMDS
351     fail $SINGLEMDS
352     kill -USR1 $pid
353     wait $pid || return 1
354
355     $CHECKSTAT -s 1 -p 0 $DIR/$tfile || return 2
356     return 0
357 }
358 run_test 13 "open chmod 0 |x| write close"
359
360 test_14() {
361     multiop_bg_pause $DIR/$tfile O_tSc || return 4
362     pid=$!
363     rm -f $DIR/$tfile
364     replay_barrier $SINGLEMDS
365     kill -USR1 $pid || return 1
366     wait $pid || return 2
367
368     fail $SINGLEMDS
369     [ -e $DIR/$tfile ] && return 3
370     return 0
371 }
372 run_test 14 "open(O_CREAT), unlink |X| close"
373
374 test_15() {
375     multiop_bg_pause $DIR/$tfile O_tSc || return 5
376     pid=$!
377     rm -f $DIR/$tfile
378     replay_barrier $SINGLEMDS
379     touch $DIR/g11 || return 1
380     kill -USR1 $pid
381     wait $pid || return 2
382
383     fail $SINGLEMDS
384     [ -e $DIR/$tfile ] && return 3
385     touch $DIR/h11 || return 4
386     return 0
387 }
388 run_test 15 "open(O_CREAT), unlink |X|  touch new, close"
389
390
391 test_16() {
392     replay_barrier $SINGLEMDS
393     mcreate $DIR/$tfile
394     munlink $DIR/$tfile
395     mcreate $DIR/$tfile-2
396     fail $SINGLEMDS
397     [ -e $DIR/$tfile ] && return 1
398     [ -e $DIR/$tfile-2 ] || return 2
399     munlink $DIR/$tfile-2 || return 3
400 }
401 run_test 16 "|X| open(O_CREAT), unlink, touch new,  unlink new"
402
403 test_17() {
404     replay_barrier $SINGLEMDS
405     multiop_bg_pause $DIR/$tfile O_c || return 4
406     pid=$!
407     fail $SINGLEMDS
408     kill -USR1 $pid || return 1
409     wait $pid || return 2
410     $CHECKSTAT -t file $DIR/$tfile || return 3
411     rm $DIR/$tfile
412 }
413 run_test 17 "|X| open(O_CREAT), |replay| close"
414
415 test_18() {
416     replay_barrier $SINGLEMDS
417     multiop_bg_pause $DIR/$tfile O_tSc || return 8
418     pid=$!
419     rm -f $DIR/$tfile
420     touch $DIR/$tfile-2 || return 1
421     echo "pid: $pid will close"
422     kill -USR1 $pid
423     wait $pid || return 2
424
425     fail $SINGLEMDS
426     [ -e $DIR/$tfile ] && return 3
427     [ -e $DIR/$tfile-2 ] || return 4
428     # this touch frequently fails
429     touch $DIR/$tfile-3 || return 5
430     munlink $DIR/$tfile-2 || return 6
431     munlink $DIR/$tfile-3 || return 7
432     return 0
433 }
434 run_test 18 "|X| open(O_CREAT), unlink, touch new, close, touch, unlink"
435
436 # bug 1855 (a simpler form of test_11 above)
437 test_19() {
438     replay_barrier $SINGLEMDS
439     mcreate $DIR/$tfile
440     echo "old" > $DIR/$tfile
441     mv $DIR/$tfile $DIR/$tfile-2
442     grep old $DIR/$tfile-2
443     fail $SINGLEMDS
444     grep old $DIR/$tfile-2 || return 2
445 }
446 run_test 19 "|X| mcreate, open, write, rename "
447
448 test_20a() {    # was test_20
449     replay_barrier $SINGLEMDS
450     multiop_bg_pause $DIR/$tfile O_tSc || return 3
451     pid=$!
452     rm -f $DIR/$tfile
453
454     fail $SINGLEMDS
455     kill -USR1 $pid
456     wait $pid || return 1
457     [ -e $DIR/$tfile ] && return 2
458     return 0
459 }
460 run_test 20a "|X| open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
461
462 test_20b() { # bug 10480
463     # XXX increase the debug level temporary 
464     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=0x33f0406; $LCTL set_param debug_mb=150"
465     BEFOREUSED=`df -P $DIR | tail -1 | awk '{ print $3 }'`
466
467     dd if=/dev/zero of=$DIR/$tfile bs=4k count=10000 &
468     pid=$!
469     while [ ! -e $DIR/$tfile ] ; do
470         usleep 60                           # give dd a chance to start
471     done
472
473     lfs getstripe $DIR/$tfile || return 1
474     rm -f $DIR/$tfile || return 2       # make it an orphan
475     mds_evict_client
476     df -P $DIR || df -P $DIR || true    # reconnect
477
478     fail $SINGLEMDS                            # start orphan recovery
479     df -P $DIR || df -P $DIR || true    # reconnect
480     wait_recovery_complete $SINGLEMDS || error "MDS recovery not done"
481
482     # FIXME just because recovery is done doesn't mean we've finished
483     # orphan cleanup.  Fake it with a sleep for now...
484     sleep 10
485     AFTERUSED=`df -P $DIR | tail -1 | awk '{ print $3 }'`
486     log "before $BEFOREUSED, after $AFTERUSED"
487     [ $AFTERUSED -gt $((BEFOREUSED + 20)) ] && \
488         error "after $AFTERUSED > before $BEFOREUSED"
489     # XXX decrease it back
490     do_nodes $(comma_list $(nodes_list)) "$LCTL set_param debug=$PTLDEBUG; $LCTL set_param debug_mb=$DEBUG_SIZE"
491     return 0
492 }
493 run_test 20b "write, unlink, eviction, replay, (test mds_cleanup_orphans)"
494
495 test_20c() { # bug 10480
496     multiop_bg_pause $DIR/$tfile Ow_c || return 1
497     pid=$!
498
499     ls -la $DIR/$tfile
500
501     mds_evict_client
502
503     df -P $DIR || df -P $DIR || true    # reconnect
504
505     kill -USR1 $pid
506     test -s $DIR/$tfile || error "File was truncated"
507
508     wait $pid || return 1
509     return 0
510 }
511 run_test 20c "check that client eviction does not affect file content"
512
513 test_21() {
514     replay_barrier $SINGLEMDS
515     multiop_bg_pause $DIR/$tfile O_tSc || return 5
516     pid=$!
517     rm -f $DIR/$tfile
518     touch $DIR/g11 || return 1
519
520     fail $SINGLEMDS
521     kill -USR1 $pid
522     wait $pid || return 2
523     [ -e $DIR/$tfile ] && return 3
524     touch $DIR/h11 || return 4
525     return 0
526 }
527 run_test 21 "|X| open(O_CREAT), unlink touch new, replay, close (test mds_cleanup_orphans)"
528
529 test_22() {
530     multiop_bg_pause $DIR/$tfile O_tSc || return 3
531     pid=$!
532
533     replay_barrier $SINGLEMDS
534     rm -f $DIR/$tfile
535
536     fail $SINGLEMDS
537     kill -USR1 $pid
538     wait $pid || return 1
539     [ -e $DIR/$tfile ] && return 2
540     return 0
541 }
542 run_test 22 "open(O_CREAT), |X| unlink, replay, close (test mds_cleanup_orphans)"
543
544 test_23() {
545     multiop_bg_pause $DIR/$tfile O_tSc || return 5
546     pid=$!
547
548     replay_barrier $SINGLEMDS
549     rm -f $DIR/$tfile
550     touch $DIR/g11 || return 1
551
552     fail $SINGLEMDS
553     kill -USR1 $pid
554     wait $pid || return 2
555     [ -e $DIR/$tfile ] && return 3
556     touch $DIR/h11 || return 4
557     return 0
558 }
559 run_test 23 "open(O_CREAT), |X| unlink touch new, replay, close (test mds_cleanup_orphans)"
560
561 test_24() {
562     multiop_bg_pause $DIR/$tfile O_tSc || return 3
563     pid=$!
564
565     replay_barrier $SINGLEMDS
566     fail $SINGLEMDS
567     rm -f $DIR/$tfile
568     kill -USR1 $pid
569     wait $pid || return 1
570     [ -e $DIR/$tfile ] && return 2
571     return 0
572 }
573 run_test 24 "open(O_CREAT), replay, unlink, close (test mds_cleanup_orphans)"
574
575 test_25() {
576     multiop_bg_pause $DIR/$tfile O_tSc || return 3
577     pid=$!
578     rm -f $DIR/$tfile
579
580     replay_barrier $SINGLEMDS
581     fail $SINGLEMDS
582     kill -USR1 $pid
583     wait $pid || return 1
584     [ -e $DIR/$tfile ] && return 2
585     return 0
586 }
587 run_test 25 "open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
588
589 test_26() {
590     replay_barrier $SINGLEMDS
591     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
592     pid1=$!
593     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
594     pid2=$!
595     rm -f $DIR/$tfile-1
596     rm -f $DIR/$tfile-2
597     kill -USR1 $pid2
598     wait $pid2 || return 1
599
600     fail $SINGLEMDS
601     kill -USR1 $pid1
602     wait $pid1 || return 2
603     [ -e $DIR/$tfile-1 ] && return 3
604     [ -e $DIR/$tfile-2 ] && return 4
605     return 0
606 }
607 run_test 26 "|X| open(O_CREAT), unlink two, close one, replay, close one (test mds_cleanup_orphans)"
608
609 test_27() {
610     replay_barrier $SINGLEMDS
611     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
612     pid1=$!
613     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
614     pid2=$!
615     rm -f $DIR/$tfile-1
616     rm -f $DIR/$tfile-2
617
618     fail $SINGLEMDS
619     kill -USR1 $pid1
620     wait $pid1 || return 1
621     kill -USR1 $pid2
622     wait $pid2 || return 2
623     [ -e $DIR/$tfile-1 ] && return 3
624     [ -e $DIR/$tfile-2 ] && return 4
625     return 0
626 }
627 run_test 27 "|X| open(O_CREAT), unlink two, replay, close two (test mds_cleanup_orphans)"
628
629 test_28() {
630     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
631     pid1=$!
632     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
633     pid2=$!
634     replay_barrier $SINGLEMDS
635     rm -f $DIR/$tfile-1
636     rm -f $DIR/$tfile-2
637     kill -USR1 $pid2
638     wait $pid2 || return 1
639
640     fail $SINGLEMDS
641     kill -USR1 $pid1
642     wait $pid1 || return 2
643     [ -e $DIR/$tfile-1 ] && return 3
644     [ -e $DIR/$tfile-2 ] && return 4
645     return 0
646 }
647 run_test 28 "open(O_CREAT), |X| unlink two, close one, replay, close one (test mds_cleanup_orphans)"
648
649 test_29() {
650     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
651     pid1=$!
652     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
653     pid2=$!
654     replay_barrier $SINGLEMDS
655     rm -f $DIR/$tfile-1
656     rm -f $DIR/$tfile-2
657
658     fail $SINGLEMDS
659     kill -USR1 $pid1
660     wait $pid1 || return 1
661     kill -USR1 $pid2
662     wait $pid2 || return 2
663     [ -e $DIR/$tfile-1 ] && return 3
664     [ -e $DIR/$tfile-2 ] && return 4
665     return 0
666 }
667 run_test 29 "open(O_CREAT), |X| unlink two, replay, close two (test mds_cleanup_orphans)"
668
669 test_30() {
670     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
671     pid1=$!
672     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
673     pid2=$!
674     rm -f $DIR/$tfile-1
675     rm -f $DIR/$tfile-2
676
677     replay_barrier $SINGLEMDS
678     fail $SINGLEMDS
679     kill -USR1 $pid1
680     wait $pid1 || return 1
681     kill -USR1 $pid2
682     wait $pid2 || return 2
683     [ -e $DIR/$tfile-1 ] && return 3
684     [ -e $DIR/$tfile-2 ] && return 4
685     return 0
686 }
687 run_test 30 "open(O_CREAT) two, unlink two, replay, close two (test mds_cleanup_orphans)"
688
689 test_31() {
690     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
691     pid1=$!
692     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
693     pid2=$!
694     rm -f $DIR/$tfile-1
695
696     replay_barrier $SINGLEMDS
697     rm -f $DIR/$tfile-2
698     fail $SINGLEMDS
699     kill -USR1 $pid1
700     wait $pid1 || return 1
701     kill -USR1 $pid2
702     wait $pid2 || return 2
703     [ -e $DIR/$tfile-1 ] && return 3
704     [ -e $DIR/$tfile-2 ] && return 4
705     return 0
706 }
707 run_test 31 "open(O_CREAT) two, unlink one, |X| unlink one, close two (test mds_cleanup_orphans)"
708
709 # tests for bug 2104; completion without crashing is success.  The close is
710 # stale, but we always return 0 for close, so the app never sees it.
711 test_32() {
712     multiop_bg_pause $DIR/$tfile O_c || return 2
713     pid1=$!
714     multiop_bg_pause $DIR/$tfile O_c || return 3
715     pid2=$!
716     mds_evict_client
717     df $MOUNT || sleep 1 && df $MOUNT || return 1
718     kill -USR1 $pid1
719     kill -USR1 $pid2
720     wait $pid1 || return 4
721     wait $pid2 || return 5
722     return 0
723 }
724 run_test 32 "close() notices client eviction; close() after client eviction"
725
726 # Abort recovery before client complete
727 test_33a() {    # was test_33
728     replay_barrier $SINGLEMDS
729     createmany -o $DIR/$tfile-%d 100
730     fail_abort $SINGLEMDS
731     # this file should be gone, because the replay was aborted
732     $CHECKSTAT -t file $DIR/$tfile-* && return 3
733     unlinkmany $DIR/$tfile-%d 0 100
734     return 0
735 }
736 run_test 33a "abort recovery before client does replay"
737
738 # Stale FID sequence bug 15962
739 test_33b() {    # was test_33a
740     replay_barrier $SINGLEMDS
741     createmany -o $DIR/$tfile-%d 10
742     fail_abort $SINGLEMDS
743     unlinkmany $DIR/$tfile-%d 0 10
744     # recreate shouldn't fail
745     createmany -o $DIR/$tfile-%d 10 || return 3
746     unlinkmany $DIR/$tfile-%d 0 10
747     return 0
748 }
749 run_test 33b "fid shouldn't be reused after abort recovery"
750
751 test_34() {
752     multiop_bg_pause $DIR/$tfile O_c || return 2
753     pid=$!
754     rm -f $DIR/$tfile
755
756     replay_barrier $SINGLEMDS
757     fail_abort $SINGLEMDS
758     kill -USR1 $pid
759     wait $pid || return 3
760     [ -e $DIR/$tfile ] && return 1
761     sync
762     return 0
763 }
764 run_test 34 "abort recovery before client does replay (test mds_cleanup_orphans)"
765
766 # bug 2278 - generate one orphan on OST, then destroy it during recovery from llog
767 test_35() {
768     touch $DIR/$tfile
769
770 #define OBD_FAIL_MDS_REINT_NET_REP       0x119
771     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
772     rm -f $DIR/$tfile &
773     sleep 1
774     sync
775     sleep 1
776     # give a chance to remove from MDS
777     fail_abort $SINGLEMDS
778     $CHECKSTAT -t file $DIR/$tfile && return 1 || true
779 }
780 run_test 35 "test recovery from llog for unlink op"
781
782 # b=2432 resent cancel after replay uses wrong cookie,
783 # so don't resend cancels
784 test_36() {
785     replay_barrier $SINGLEMDS
786     touch $DIR/$tfile
787     checkstat $DIR/$tfile
788     facet_failover $SINGLEMDS
789     cancel_lru_locks mdc
790     if dmesg | grep "unknown lock cookie"; then
791         echo "cancel after replay failed"
792         return 1
793     fi
794 }
795 run_test 36 "don't resend cancel"
796
797 # b=2368
798 # directory orphans can't be unlinked from PENDING directory
799 test_37() {
800     rmdir $DIR/$tfile 2>/dev/null
801     multiop_bg_pause $DIR/$tfile dD_c || return 2
802     pid=$!
803     rmdir $DIR/$tfile
804
805     replay_barrier $SINGLEMDS
806     # clear the dmesg buffer so we only see errors from this recovery
807     dmesg -c >/dev/null
808     fail_abort $SINGLEMDS
809     kill -USR1 $pid
810     dmesg | grep  "mds_unlink_orphan.*error .* unlinking orphan" && return 1
811     wait $pid || return 3
812     sync
813     return 0
814 }
815 run_test 37 "abort recovery before client does replay (test mds_cleanup_orphans for directories)"
816
817 test_38() {
818     createmany -o $DIR/$tfile-%d 800
819     unlinkmany $DIR/$tfile-%d 0 400
820     replay_barrier $SINGLEMDS
821     fail $SINGLEMDS
822     unlinkmany $DIR/$tfile-%d 400 400
823     sleep 2
824     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
825 }
826 run_test 38 "test recovery from unlink llog (test llog_gen_rec) "
827
828 test_39() { # bug 4176
829     createmany -o $DIR/$tfile-%d 800
830     replay_barrier $SINGLEMDS
831     unlinkmany $DIR/$tfile-%d 0 400
832     fail $SINGLEMDS
833     unlinkmany $DIR/$tfile-%d 400 400
834     sleep 2
835     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
836 }
837 run_test 39 "test recovery from unlink llog (test llog_gen_rec) "
838
839 count_ost_writes() {
840     lctl get_param -n osc.*.stats | awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
841 }
842
843 #b=2477,2532
844 test_40(){
845     $LCTL mark multiop $MOUNT/$tfile OS_c
846     multiop $MOUNT/$tfile OS_c  &
847     PID=$!
848     writeme -s $MOUNT/${tfile}-2 &
849     WRITE_PID=$!
850     sleep 1
851     facet_failover $SINGLEMDS
852 #define OBD_FAIL_MDS_CONNECT_NET         0x117
853     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000117"
854     kill -USR1 $PID
855     stat1=`count_ost_writes`
856     sleep $TIMEOUT
857     stat2=`count_ost_writes`
858     echo "$stat1, $stat2"
859     if [ $stat1 -lt $stat2 ]; then
860        echo "writes continuing during recovery"
861        RC=0
862     else
863        echo "writes not continuing during recovery, bug 2477"
864        RC=4
865     fi
866     echo "waiting for writeme $WRITE_PID"
867     kill $WRITE_PID
868     wait $WRITE_PID
869
870     echo "waiting for multiop $PID"
871     wait $PID || return 2
872     do_facet client munlink $MOUNT/$tfile  || return 3
873     do_facet client munlink $MOUNT/${tfile}-2  || return 3
874     return $RC
875 }
876 run_test 40 "cause recovery in ptlrpc, ensure IO continues"
877
878
879 #b=2814
880 # make sure that a read to one osc doesn't try to double-unlock its page just
881 # because another osc is invalid.  trigger_group_io used to mistakenly return
882 # an error if any oscs were invalid even after having successfully put rpcs
883 # on valid oscs.  This was fatal if the caller was ll_readpage who unlocked
884 # the page, guarnateeing that the unlock from the RPC completion would
885 # assert on trying to unlock the unlocked page.
886 test_41() {
887     [ $OSTCOUNT -lt 2 ] && \
888         skip "skipping test 41: we don't have a second OST to test with" && \
889         return
890
891     local f=$MOUNT/$tfile
892     # make sure the start of the file is ost1
893     lfs setstripe $f -s $((128 * 1024)) -i 0
894     do_facet client dd if=/dev/zero of=$f bs=4k count=1 || return 3
895     cancel_lru_locks osc
896     # fail ost2 and read from ost1
897     local osc2dev=`do_facet $SINGLEMDS "lctl get_param -n devices | grep ${ost2_svc}-osc-MDT0000" | awk '{print $1}'`
898     [ -z "$osc2dev" ] && echo "OST: $ost2_svc" && lctl get_param -n devices && return 4
899     do_facet $SINGLEMDS $LCTL --device $osc2dev deactivate || return 1
900     do_facet client dd if=$f of=/dev/null bs=4k count=1 || return 3
901     do_facet $SINGLEMDS $LCTL --device $osc2dev activate || return 2
902     return 0
903 }
904 run_test 41 "read from a valid osc while other oscs are invalid"
905
906 # test MDS recovery after ost failure
907 test_42() {
908     blocks=`df -P $MOUNT | tail -n 1 | awk '{ print $2 }'`
909     createmany -o $DIR/$tfile-%d 800
910     replay_barrier ost1
911     unlinkmany $DIR/$tfile-%d 0 400
912     debugsave
913     lctl set_param debug=-1
914     facet_failover ost1
915
916     # osc is evicted, fs is smaller (but only with failout OSTs (bug 7287)
917     #blocks_after=`df -P $MOUNT | tail -n 1 | awk '{ print $2 }'`
918     #[ $blocks_after -lt $blocks ] || return 1
919     echo wait for MDS to timeout and recover
920     sleep $((TIMEOUT * 2))
921     debugrestore
922     unlinkmany $DIR/$tfile-%d 400 400
923     $CHECKSTAT -t file $DIR/$tfile-* && return 2 || true
924 }
925 run_test 42 "recovery after ost failure"
926
927 # timeout in MDS/OST recovery RPC will LBUG MDS
928 test_43() { # bug 2530
929     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
930
931     replay_barrier $SINGLEMDS
932
933     # OBD_FAIL_OST_CREATE_NET 0x204
934     do_facet ost1 "lctl set_param fail_loc=0x80000204"
935     fail $SINGLEMDS
936     sleep 10
937     do_facet ost1 "lctl set_param fail_loc=0"
938
939     return 0
940 }
941 run_test 43 "mds osc import failure during recovery; don't LBUG"
942
943 test_44a() {    # was test_44
944     local at_max_saved=0
945
946     mdcdev=`lctl get_param -n devices | awk '/MDT0000-mdc-/ {print $1}'`
947     [ "$mdcdev" ] || exit 2
948
949     # adaptive timeouts slow this way down
950     if at_is_valid && at_is_enabled; then
951         at_max_saved=$(at_max_get mds)
952         at_max_set 40 mds
953     fi
954
955     for i in `seq 1 10`; do
956         echo "$i of 10 ($(date +%s))"
957         do_facet $SINGLEMDS "lctl get_param -n mdt.*.mdt.timeouts | grep service"
958         #define OBD_FAIL_TGT_CONN_RACE     0x701
959         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000701"
960         $LCTL --device $mdcdev recover
961         df $MOUNT
962     done
963     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
964     [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds
965     return 0
966 }
967 run_test 44a "race in target handle connect"
968
969 test_44b() {
970     mdcdev=`lctl get_param -n devices | awk '/MDT0000-mdc-/ {print $1}'`
971     [ "$mdcdev" ] || exit 2
972     for i in `seq 1 10`; do
973         echo "$i of 10 ($(date +%s))"
974         do_facet $SINGLEMDS "lctl get_param -n mdt.*.mdt.timeouts | grep service"
975         #define OBD_FAIL_TGT_DELAY_RECONNECT 0x704
976         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000704"
977         $LCTL --device $mdcdev recover
978         df $MOUNT
979     done
980     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
981     return 0
982 }
983 run_test 44b "race in target handle connect"
984
985 # Handle failed close
986 test_45() {
987     mdcdev=`lctl get_param -n devices | awk '/MDT0000-mdc-/ {print $1}'`
988     [ "$mdcdev" ] || exit 2
989     $LCTL --device $mdcdev recover
990
991     multiop_bg_pause $DIR/$tfile O_c || return 1
992     pid=$!
993
994     # This will cause the CLOSE to fail before even
995     # allocating a reply buffer
996     $LCTL --device $mdcdev deactivate || return 4
997
998     # try the close
999     kill -USR1 $pid
1000     wait $pid || return 1
1001
1002     $LCTL --device $mdcdev activate || return 5
1003     sleep 1
1004
1005     $CHECKSTAT -t file $DIR/$tfile || return 2
1006     return 0
1007 }
1008 run_test 45 "Handle failed close"
1009
1010 test_46() {
1011     dmesg -c >/dev/null
1012     drop_reply "touch $DIR/$tfile"
1013     fail $SINGLEMDS
1014     # ironically, the previous test, 45, will cause a real forced close,
1015     # so just look for one for this test
1016     dmesg | grep -i "force closing client file handle for $tfile" && return 1
1017     return 0
1018 }
1019 run_test 46 "Don't leak file handle after open resend (3325)"
1020
1021 test_47() { # bug 2824
1022     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1023
1024     # create some files to make sure precreate has been done on all
1025     # OSTs. (just in case this test is run independently)
1026     createmany -o $DIR/$tfile 20  || return 1
1027
1028     # OBD_FAIL_OST_CREATE_NET 0x204
1029     fail ost1
1030     do_facet ost1 "lctl set_param fail_loc=0x80000204"
1031     df $MOUNT || return 2
1032
1033     # let the MDS discover the OST failure, attempt to recover, fail
1034     # and recover again.
1035     sleep $((3 * TIMEOUT))
1036
1037     # Without 2824, this createmany would hang
1038     createmany -o $DIR/$tfile 20 || return 3
1039     unlinkmany $DIR/$tfile 20 || return 4
1040
1041     do_facet ost1 "lctl set_param fail_loc=0"
1042     return 0
1043 }
1044 run_test 47 "MDS->OSC failure during precreate cleanup (2824)"
1045
1046 test_48() {
1047     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1048     [ "$OSTCOUNT" -lt "2" ] && skip "$OSTCOUNT < 2 OSTs -- skipping" && return
1049
1050     replay_barrier $SINGLEMDS
1051     createmany -o $DIR/$tfile 20  || return 1
1052     # OBD_FAIL_OST_EROFS 0x216
1053     facet_failover $SINGLEMDS
1054     do_facet ost1 "lctl set_param fail_loc=0x80000216"
1055     df $MOUNT || return 2
1056
1057     createmany -o $DIR/$tfile 20 20 || return 2
1058     unlinkmany $DIR/$tfile 40 || return 3
1059     return 0
1060 }
1061 run_test 48 "MDS->OSC failure during precreate cleanup (2824)"
1062
1063 test_50() {
1064     local oscdev=`do_facet $SINGLEMDS lctl get_param -n devices | grep ${ost1_svc}-osc-MDT0000 | awk '{print $1}'`
1065     [ "$oscdev" ] || return 1
1066     do_facet $SINGLEMDS $LCTL --device $oscdev recover || return 2
1067     do_facet $SINGLEMDS $LCTL --device $oscdev recover || return 3
1068     # give the mds_lov_sync threads a chance to run
1069     sleep 5
1070 }
1071 run_test 50 "Double OSC recovery, don't LASSERT (3812)"
1072
1073 # b3764 timed out lock replay
1074 test_52() {
1075     touch $DIR/$tfile
1076     cancel_lru_locks mdc
1077
1078     multiop $DIR/$tfile s || return 1
1079     replay_barrier $SINGLEMDS
1080 #define OBD_FAIL_LDLM_REPLY              0x30c
1081     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000030c"
1082     fail $SINGLEMDS || return 2
1083     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1084
1085     $CHECKSTAT -t file $DIR/$tfile-* && return 3 || true
1086 }
1087 run_test 52 "time out lock replay (3764)"
1088
1089 # bug 3462 - simultaneous MDC requests
1090 test_53a() {
1091         mkdir -p $DIR/${tdir}-1
1092         mkdir -p $DIR/${tdir}-2
1093         multiop $DIR/${tdir}-1/f O_c &
1094         close_pid=$!
1095         # give multiop a change to open
1096         sleep 1
1097
1098         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1099         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1100         kill -USR1 $close_pid
1101         cancel_lru_locks mdc    # force the close
1102         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1103
1104         mcreate $DIR/${tdir}-2/f || return 1
1105
1106         # close should still be here
1107         [ -d /proc/$close_pid ] || return 2
1108
1109         replay_barrier_nodf $SINGLEMDS
1110         fail $SINGLEMDS
1111         wait $close_pid || return 3
1112
1113         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1114         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1115         rm -rf $DIR/${tdir}-*
1116 }
1117 run_test 53a "|X| close request while two MDC requests in flight"
1118
1119 test_53b() {
1120         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1121
1122         mkdir -p $DIR/${tdir}-1
1123         mkdir -p $DIR/${tdir}-2
1124         multiop $DIR/${tdir}-1/f O_c &
1125         close_pid=$!
1126
1127         #define OBD_FAIL_MDS_REINT_NET 0x107
1128         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1129         mcreate $DIR/${tdir}-2/f &
1130         open_pid=$!
1131         sleep 1
1132
1133         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1134         kill -USR1 $close_pid
1135         cancel_lru_locks mdc    # force the close
1136         wait $close_pid || return 1
1137         # open should still be here
1138         [ -d /proc/$open_pid ] || return 2
1139
1140         replay_barrier_nodf $SINGLEMDS
1141         fail $SINGLEMDS
1142         wait $open_pid || return 3
1143
1144         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1145         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1146         rm -rf $DIR/${tdir}-*
1147 }
1148 run_test 53b "|X| open request while two MDC requests in flight"
1149
1150 test_53c() {
1151         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1152
1153         mkdir -p $DIR/${tdir}-1
1154         mkdir -p $DIR/${tdir}-2
1155         multiop $DIR/${tdir}-1/f O_c &
1156         close_pid=$!
1157
1158         #define OBD_FAIL_MDS_REINT_NET 0x107
1159         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1160         mcreate $DIR/${tdir}-2/f &
1161         open_pid=$!
1162         sleep 1
1163
1164         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1165         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1166         kill -USR1 $close_pid
1167         cancel_lru_locks mdc    # force the close
1168
1169         replay_barrier_nodf $SINGLEMDS
1170         fail_nodf $SINGLEMDS
1171         wait $open_pid || return 1
1172         sleep 2
1173         # close should be gone
1174         [ -d /proc/$close_pid ] && return 2
1175         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1176
1177         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1178         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1179         rm -rf $DIR/${tdir}-*
1180 }
1181 run_test 53c "|X| open request and close request while two MDC requests in flight"
1182
1183 test_53d() {
1184         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1185
1186         mkdir -p $DIR/${tdir}-1
1187         mkdir -p $DIR/${tdir}-2
1188         multiop $DIR/${tdir}-1/f O_c &
1189         close_pid=$!
1190         # give multiop a chance to open
1191         sleep 1
1192
1193         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1194         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1195         kill -USR1 $close_pid
1196         cancel_lru_locks mdc    # force the close
1197         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1198         mcreate $DIR/${tdir}-2/f || return 1
1199
1200         # close should still be here
1201         [ -d /proc/$close_pid ] || return 2
1202         fail $SINGLEMDS
1203         wait $close_pid || return 3
1204
1205         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1206         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1207         rm -rf $DIR/${tdir}-*
1208 }
1209 run_test 53d "|X| close reply while two MDC requests in flight"
1210
1211 test_53e() {
1212         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1213
1214         mkdir -p $DIR/${tdir}-1
1215         mkdir -p $DIR/${tdir}-2
1216         multiop $DIR/${tdir}-1/f O_c &
1217         close_pid=$!
1218
1219         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1220         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1221         mcreate $DIR/${tdir}-2/f &
1222         open_pid=$!
1223         sleep 1
1224
1225         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1226         kill -USR1 $close_pid
1227         cancel_lru_locks mdc    # force the close
1228         wait $close_pid || return 1
1229         # open should still be here
1230         [ -d /proc/$open_pid ] || return 2
1231
1232         replay_barrier_nodf $SINGLEMDS
1233         fail $SINGLEMDS
1234         wait $open_pid || return 3
1235
1236         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1237         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1238         rm -rf $DIR/${tdir}-*
1239 }
1240 run_test 53e "|X| open reply while two MDC requests in flight"
1241
1242 test_53f() {
1243         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1244
1245         mkdir -p $DIR/${tdir}-1
1246         mkdir -p $DIR/${tdir}-2
1247         multiop $DIR/${tdir}-1/f O_c &
1248         close_pid=$!
1249
1250         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1251         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1252         mcreate $DIR/${tdir}-2/f &
1253         open_pid=$!
1254         sleep 1
1255
1256         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1257         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1258         kill -USR1 $close_pid
1259         cancel_lru_locks mdc    # force the close
1260
1261         replay_barrier_nodf $SINGLEMDS
1262         fail_nodf $SINGLEMDS
1263         wait $open_pid || return 1
1264         sleep 2
1265         # close should be gone
1266         [ -d /proc/$close_pid ] && return 2
1267         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1268
1269         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1270         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1271         rm -rf $DIR/${tdir}-*
1272 }
1273 run_test 53f "|X| open reply and close reply while two MDC requests in flight"
1274
1275 test_53g() {
1276         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1277
1278         mkdir -p $DIR/${tdir}-1
1279         mkdir -p $DIR/${tdir}-2
1280         multiop $DIR/${tdir}-1/f O_c &
1281         close_pid=$!
1282
1283         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1284         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1285         mcreate $DIR/${tdir}-2/f &
1286         open_pid=$!
1287         sleep 1
1288
1289         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1290         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1291         kill -USR1 $close_pid
1292         cancel_lru_locks mdc    # force the close
1293
1294         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1295         replay_barrier_nodf $SINGLEMDS
1296         fail_nodf $SINGLEMDS
1297         wait $open_pid || return 1
1298         sleep 2
1299         # close should be gone
1300         [ -d /proc/$close_pid ] && return 2
1301
1302         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1303         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1304         rm -rf $DIR/${tdir}-*
1305 }
1306 run_test 53g "|X| drop open reply and close request while close and open are both in flight"
1307
1308 test_53h() {
1309         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1310
1311         mkdir -p $DIR/${tdir}-1
1312         mkdir -p $DIR/${tdir}-2
1313         multiop $DIR/${tdir}-1/f O_c &
1314         close_pid=$!
1315
1316         #define OBD_FAIL_MDS_REINT_NET 0x107
1317         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1318         mcreate $DIR/${tdir}-2/f &
1319         open_pid=$!
1320         sleep 1
1321
1322         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1323         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1324         kill -USR1 $close_pid
1325         cancel_lru_locks mdc    # force the close
1326         sleep 1
1327
1328         replay_barrier_nodf $SINGLEMDS
1329         fail_nodf $SINGLEMDS
1330         wait $open_pid || return 1
1331         sleep 2
1332         # close should be gone
1333         [ -d /proc/$close_pid ] && return 2
1334         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1335
1336         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1337         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1338         rm -rf $DIR/${tdir}-*
1339 }
1340 run_test 53h "|X| open request and close reply while two MDC requests in flight"
1341
1342 #b_cray 54 "|X| open request and close reply while two MDC requests in flight"
1343
1344 #b3761 ASSERTION(hash != 0) failed
1345 test_55() {
1346 # OBD_FAIL_MDS_OPEN_CREATE | OBD_FAIL_ONCE
1347     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012b"
1348     touch $DIR/$tfile &
1349     # give touch a chance to run
1350     sleep 5
1351     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1352     rm $DIR/$tfile
1353     return 0
1354 }
1355 run_test 55 "let MDS_CHECK_RESENT return the original return code instead of 0"
1356
1357 #b3440 ASSERTION(rec->ur_fid2->id) failed
1358 test_56() {
1359     ln -s foo $DIR/$tfile
1360     replay_barrier $SINGLEMDS
1361     #drop_reply "cat $DIR/$tfile"
1362     fail $SINGLEMDS
1363     sleep 10
1364 }
1365 run_test 56 "don't replay a symlink open request (3440)"
1366
1367 #recovery one mds-ost setattr from llog
1368 test_57() {
1369 #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1370     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1371     touch $DIR/$tfile
1372     replay_barrier $SINGLEMDS
1373     fail $SINGLEMDS
1374     sleep 1
1375     $CHECKSTAT -t file $DIR/$tfile || return 1
1376     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1377     rm $DIR/$tfile
1378 }
1379 run_test 57 "test recovery from llog for setattr op"
1380
1381 #recovery many mds-ost setattr from llog
1382 test_58a() {
1383     mkdir -p $DIR/$tdir
1384 #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1385     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1386     createmany -o $DIR/$tdir/$tfile-%d 2500
1387     replay_barrier $SINGLEMDS
1388     fail $SINGLEMDS
1389     sleep 2
1390     $CHECKSTAT -t file $DIR/$tdir/$tfile-* >/dev/null || return 1
1391     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1392     unlinkmany $DIR/$tdir/$tfile-%d 2500
1393     rmdir $DIR/$tdir
1394 }
1395 run_test 58a "test recovery from llog for setattr op (test llog_gen_rec)"
1396
1397 test_58b() {
1398     mount_client $MOUNT2
1399     mkdir -p $DIR/$tdir
1400     touch $DIR/$tdir/$tfile
1401     replay_barrier $SINGLEMDS
1402     setfattr -n trusted.foo -v bar $DIR/$tdir/$tfile
1403     fail $SINGLEMDS
1404     VAL=`getfattr --absolute-names --only-value -n trusted.foo $MOUNT2/$tdir/$tfile`
1405     [ x$VAL = x"bar" ] || return 1
1406     rm -f $DIR/$tdir/$tfile
1407     rmdir $DIR/$tdir
1408     zconf_umount `hostname` $MOUNT2
1409 }
1410 run_test 58b "test replay of setxattr op"
1411
1412 test_58c() { # bug 16570
1413         mount_client $MOUNT2
1414         mkdir -p $DIR/$tdir
1415         touch $DIR/$tdir/$tfile
1416         drop_request "setfattr -n trusted.foo -v bar $DIR/$tdir/$tfile" || \
1417                 return 1
1418         VAL=`getfattr --absolute-names --only-value -n trusted.foo $MOUNT2/$tdir/$tfile`
1419         [ x$VAL = x"bar" ] || return 2
1420         drop_reint_reply "setfattr -n trusted.foo1 -v bar1 $DIR/$tdir/$tfile" || \
1421                 return 3
1422         VAL=`getfattr --absolute-names --only-value -n trusted.foo1 $MOUNT2/$tdir/$tfile`
1423         [ x$VAL = x"bar1" ] || return 4
1424         rm -f $DIR/$tdir/$tfile
1425         rmdir $DIR/$tdir
1426         zconf_umount `hostname` $MOUNT2
1427 }
1428 run_test 58c "resend/reconstruct setxattr op"
1429
1430 # log_commit_thread vs filter_destroy race used to lead to import use after free
1431 # bug 11658
1432 test_59() {
1433     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1434
1435     mkdir -p $DIR/$tdir
1436     createmany -o $DIR/$tdir/$tfile-%d 200
1437     sync
1438     unlinkmany $DIR/$tdir/$tfile-%d 200
1439 #define OBD_FAIL_PTLRPC_DELAY_RECOV       0x507
1440     do_facet ost1 "lctl set_param fail_loc=0x507"
1441     fail ost1
1442     fail $SINGLEMDS
1443     do_facet ost1 "lctl set_param fail_loc=0x0"
1444     sleep 20
1445     rmdir $DIR/$tdir
1446 }
1447 run_test 59 "test log_commit_thread vs filter_destroy race"
1448
1449 # race between add unlink llog vs cat log init in post_recovery (only for b1_6)
1450 # bug 12086: should no oops and No ctxt error for this test
1451 test_60() {
1452     mkdir -p $DIR/$tdir
1453     createmany -o $DIR/$tdir/$tfile-%d 200
1454     replay_barrier $SINGLEMDS
1455     unlinkmany $DIR/$tdir/$tfile-%d 0 100
1456     fail $SINGLEMDS
1457     unlinkmany $DIR/$tdir/$tfile-%d 100 100
1458     local no_ctxt=`dmesg | grep "No ctxt"`
1459     [ -z "$no_ctxt" ] || error "ctxt is not initialized in recovery"
1460 }
1461 run_test 60 "test llog post recovery init vs llog unlink"
1462
1463 #test race  llog recovery thread vs llog cleanup
1464 test_61a() {    # was test_61
1465     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1466
1467     mkdir -p $DIR/$tdir
1468     createmany -o $DIR/$tdir/$tfile-%d 800
1469     replay_barrier ost1
1470 #   OBD_FAIL_OST_LLOG_RECOVERY_TIMEOUT 0x221
1471     unlinkmany $DIR/$tdir/$tfile-%d 800
1472     set_nodes_failloc "$(osts_nodes)" 0x80000221
1473     facet_failover ost1
1474     sleep 10
1475     fail ost1
1476     sleep 30
1477     set_nodes_failloc "$(osts_nodes)" 0x0
1478
1479     $CHECKSTAT -t file $DIR/$tdir/$tfile-* && return 1
1480     rmdir $DIR/$tdir
1481 }
1482 run_test 61a "test race llog recovery vs llog cleanup"
1483
1484 #test race  mds llog sync vs llog cleanup
1485 test_61b() {
1486 #   OBD_FAIL_MDS_LLOG_SYNC_TIMEOUT 0x13a
1487     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013a"
1488     facet_failover $SINGLEMDS
1489     sleep 10
1490     fail $SINGLEMDS
1491     do_facet client dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 || return 1
1492 }
1493 run_test 61b "test race mds llog sync vs llog cleanup"
1494
1495 #test race  cancel cookie cb vs llog cleanup
1496 test_61c() {
1497     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1498
1499 #   OBD_FAIL_OST_CANCEL_COOKIE_TIMEOUT 0x222
1500     touch $DIR/$tfile
1501     set_nodes_failloc "$(osts_nodes)" 0x80000222
1502     rm $DIR/$tfile
1503     sleep 10
1504     fail ost1
1505     set_nodes_failloc "$(osts_nodes)" 0x0
1506 }
1507 run_test 61c "test race mds llog sync vs llog cleanup"
1508
1509 test_61d() { # bug 16002 # bug 17466
1510     shutdown_facet $SINGLEMDS
1511 #define OBD_FAIL_OBD_LLOG_SETUP        0x605
1512     do_facet $SINGLEMDS "lctl set_param fail_loc=0x605"
1513     start $SINGLEMDS `mdsdevname 1` $MDS_MOUNT_OPTS && error "mds start should have failed"
1514     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1515     start $SINGLEMDS `mdsdevname 1` $MDS_MOUNT_OPTS || error "cannot restart mds"
1516 }
1517 run_test 61d "error in llog_setup should cleanup the llog context correctly"
1518
1519 test_62() { # Bug 15756 - don't mis-drop resent replay
1520     mkdir -p $DIR/$tdir
1521     replay_barrier $SINGLEMDS
1522     createmany -o $DIR/$tdir/$tfile- 25
1523 #define OBD_FAIL_TGT_REPLAY_DROP         0x707
1524     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000707"
1525     facet_failover $SINGLEMDS
1526     df $MOUNT || return 1
1527     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1528     unlinkmany $DIR/$tdir/$tfile- 25 || return 2
1529     return 0
1530 }
1531 run_test 62 "don't mis-drop resent replay"
1532
1533 #Adaptive Timeouts (bug 3055)
1534 AT_MAX_SET=0
1535
1536 at_cleanup () {
1537     local var
1538     local facet
1539     local at_new
1540
1541     echo "Cleaning up AT ..."
1542     if [ -n "$ATOLDBASE" ]; then
1543         local at_history=$(do_facet mds "find /sys/ -name at_history")
1544         do_facet mds "echo $ATOLDBASE >> $at_history" || true
1545         do_facet ost1 "echo $ATOLDBASE >> $at_history" || true
1546     fi
1547
1548     if [ $AT_MAX_SET -ne 0 ]; then
1549         for facet in mds client ost; do
1550             var=AT_MAX_SAVE_${facet}
1551             echo restore AT on $facet to saved value ${!var}
1552             at_max_set ${!var} $facet
1553             at_new=$(at_max_get $facet)
1554             echo Restored AT value on $facet $at_new
1555             [ $at_new -eq ${!var} ] || \
1556             error "$facet : AT value was not restored SAVED ${!var} NEW $at_new"
1557         done
1558     fi
1559 }
1560
1561 at_start()
1562 {
1563     local at_max_new=600
1564     if ! at_is_valid; then
1565         skip "AT env is invalid"
1566         return 1
1567     fi
1568
1569     # Save at_max original values
1570     local facet
1571     if [ $AT_MAX_SET -eq 0 ]; then
1572         # Suppose that all osts have the same at_max
1573         for facet in mds client ost; do
1574             eval AT_MAX_SAVE_${facet}=$(at_max_get $facet)
1575         done
1576     fi
1577     local at_max
1578     for facet in mds client ost; do
1579         at_max=$(at_max_get $facet)
1580         if [ $at_max -ne $at_max_new ]; then
1581             echo "AT value on $facet is $at_max, set it by force temporarily to $at_max_new"
1582             at_max_set $at_max_new $facet
1583             AT_MAX_SET=1
1584         fi
1585     done
1586
1587     if [ -z "$ATOLDBASE" ]; then
1588         local at_history=$(do_facet mds "find /sys/ -name at_history")
1589         [ -z "$at_history" ] && skip "missing /sys/.../at_history " && return 1
1590         ATOLDBASE=$(do_facet mds "cat $at_history")
1591         # speed up the timebase so we can check decreasing AT
1592         do_facet mds "echo 8 >> $at_history"
1593         do_facet ost1 "echo 8 >> $at_history"
1594
1595         # sleep for a while to cool down, should be > 8s and also allow
1596         # at least one ping to be sent. simply use TIMEOUT to be safe.
1597         sleep $TIMEOUT
1598     fi
1599 }
1600
1601 test_65a() #bug 3055
1602 {
1603     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1604
1605     at_start || return 0
1606     $LCTL dk > /dev/null
1607     debugsave
1608     sysctl -w lnet.debug="+other"
1609     # Slow down a request to the current service time, this is critical
1610     # because previous tests may have caused this value to increase.
1611     REQ_DELAY=`lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts |
1612                awk '/portal 12/ {print $5}'`
1613     REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1614
1615     do_facet mds lctl set_param fail_val=$((${REQ_DELAY} * 1000))
1616 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1617     do_facet mds sysctl -w lustre.fail_loc=0x8000050a
1618     createmany -o $DIR/$tfile 10 > /dev/null
1619     unlinkmany $DIR/$tfile 10 > /dev/null
1620     # check for log message
1621     $LCTL dk | grep "Early reply #" || error "No early reply"
1622     debugrestore
1623     # client should show REQ_DELAY estimates
1624     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1625     sleep 9
1626     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1627 }
1628 run_test 65a "AT: verify early replies"
1629
1630 test_65b() #bug 3055
1631 {
1632     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1633
1634     at_start || return 0
1635     # turn on D_ADAPTTO
1636     debugsave
1637     sysctl -w lnet.debug="other trace"
1638     $LCTL dk > /dev/null
1639     # Slow down a request to the current service time, this is critical
1640     # because previous tests may have caused this value to increase.
1641     REQ_DELAY=`lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts |
1642                awk '/portal 6/ {print $5}'`
1643     REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1644
1645     do_facet ost1 lctl set_param fail_val=${REQ_DELAY}
1646 #define OBD_FAIL_OST_BRW_PAUSE_PACK      0x224
1647     do_facet ost1 sysctl -w lustre.fail_loc=0x224
1648
1649     rm -f $DIR/$tfile
1650     lfs setstripe $DIR/$tfile --index=0 --count=1
1651     # force some real bulk transfer
1652     multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
1653
1654     do_facet ost1 sysctl -w lustre.fail_loc=0
1655     # check for log message
1656     $LCTL dk | grep "Early reply #" || error "No early reply"
1657     debugrestore
1658     # client should show REQ_DELAY estimates
1659     lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts | grep portal
1660 }
1661 run_test 65b "AT: verify early replies on packed reply / bulk"
1662
1663 test_66a() #bug 3055
1664 {
1665     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1666
1667     at_start || return 0
1668     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1669     # adjust 5s at a time so no early reply is sent (within deadline)
1670     do_facet mds "sysctl -w lustre.fail_val=5000"
1671 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1672     do_facet mds "sysctl -w lustre.fail_loc=0x8000050a"
1673     createmany -o $DIR/$tfile 20 > /dev/null
1674     unlinkmany $DIR/$tfile 20 > /dev/null
1675     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1676     do_facet mds "sysctl -w lustre.fail_val=10000"
1677     do_facet mds "sysctl -w lustre.fail_loc=0x8000050a"
1678     createmany -o $DIR/$tfile 20 > /dev/null
1679     unlinkmany $DIR/$tfile 20 > /dev/null
1680     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1681     do_facet mds "sysctl -w lustre.fail_loc=0"
1682     sleep 9
1683     createmany -o $DIR/$tfile 20 > /dev/null
1684     unlinkmany $DIR/$tfile 20 > /dev/null
1685     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1686     CUR=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $5}')
1687     WORST=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $7}')
1688     echo "Current MDT timeout $CUR, worst $WORST"
1689     [ $CUR -lt $WORST ] || error "Current $CUR should be less than worst $WORST"
1690 }
1691 run_test 66a "AT: verify MDT service time adjusts with no early replies"
1692
1693 test_66b() #bug 3055
1694 {
1695     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1696
1697     at_start || return 0
1698     ORIG=$(lctl get_param -n mdc.${FSNAME}-*.timeouts | awk '/network/ {print $4}')
1699     sysctl -w lustre.fail_val=$(($ORIG + 5))
1700 #define OBD_FAIL_PTLRPC_PAUSE_REP      0x50c
1701     sysctl -w lustre.fail_loc=0x50c
1702     ls $DIR/$tfile > /dev/null 2>&1
1703     sysctl -w lustre.fail_loc=0
1704     CUR=$(lctl get_param -n mdc.${FSNAME}-*.timeouts | awk '/network/ {print $4}')
1705     WORST=$(lctl get_param -n mdc.${FSNAME}-*.timeouts | awk '/network/ {print $6}')
1706     echo "network timeout orig $ORIG, cur $CUR, worst $WORST"
1707     [ $WORST -gt $ORIG ] || error "Worst $WORST should be worse than orig $ORIG"
1708 }
1709 run_test 66b "AT: verify net latency adjusts"
1710
1711 test_67a() #bug 3055
1712 {
1713     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1714
1715     at_start || return 0
1716     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1717     # sleeping threads may drive values above this
1718     do_facet ost1 "sysctl -w lustre.fail_val=400"
1719 #define OBD_FAIL_PTLRPC_PAUSE_REQ    0x50a
1720     do_facet ost1 "sysctl -w lustre.fail_loc=0x50a"
1721     createmany -o $DIR/$tfile 20 > /dev/null
1722     unlinkmany $DIR/$tfile 20 > /dev/null
1723     do_facet ost1 "sysctl -w lustre.fail_loc=0"
1724     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1725     ATTEMPTS=$(($CONN2 - $CONN1))
1726     echo "$ATTEMPTS osc reconnect attemps on gradual slow"
1727     [ $ATTEMPTS -gt 0 ] && error_ignore 13721 "AT should have prevented reconnect"
1728     return 0
1729 }
1730 run_test 67a "AT: verify slow request processing doesn't induce reconnects"
1731
1732 test_67b() #bug 3055
1733 {
1734     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1735
1736     at_start || return 0
1737     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1738 #define OBD_FAIL_OST_PAUSE_CREATE        0x223
1739     do_facet ost1 "sysctl -w lustre.fail_val=20000"
1740     do_facet ost1 "sysctl -w lustre.fail_loc=0x80000223"
1741     cp /etc/profile $DIR/$tfile || error "cp failed"
1742     client_reconnect
1743     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1744     log "phase 2"
1745     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1746     ATTEMPTS=$(($CONN2 - $CONN1))
1747     echo "$ATTEMPTS osc reconnect attemps on instant slow"
1748     # do it again; should not timeout
1749     do_facet ost1 "sysctl -w lustre.fail_loc=0x80000223"
1750     cp /etc/profile $DIR/$tfile || error "cp failed"
1751     do_facet ost1 "sysctl -w lustre.fail_loc=0"
1752     client_reconnect
1753     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1754     CONN3=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1755     ATTEMPTS=$(($CONN3 - $CONN2))
1756     echo "$ATTEMPTS osc reconnect attemps on 2nd slow"
1757     [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
1758     return 0
1759 }
1760 run_test 67b "AT: verify instant slowdown doesn't induce reconnects"
1761
1762 test_68 () #bug 13813
1763 {
1764     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1765
1766     at_start || return 0
1767     local ldlm_enqueue_min=$(find /sys -name ldlm_enqueue_min)
1768     [ -z "$ldlm_enqueue_min" ] && skip "missing /sys/.../ldlm_enqueue_min" && return 0
1769     local ldlm_enqueue_min_r=$(do_facet ost1 "find /sys -name ldlm_enqueue_min")
1770     [ -z "$ldlm_enqueue_min_r" ] && skip "missing /sys/.../ldlm_enqueue_min in the ost1" && return 0
1771     local ENQ_MIN=$(cat $ldlm_enqueue_min)
1772     local ENQ_MIN_R=$(do_facet ost1 "cat $ldlm_enqueue_min_r")
1773     echo $TIMEOUT >> $ldlm_enqueue_min
1774     do_facet ost1 "echo $TIMEOUT >> $ldlm_enqueue_min_r"
1775
1776     rm -rf $DIR/$tdir
1777     mkdir -p $DIR/$tdir
1778     lfs setstripe $DIR/$tdir --index=0 --count=1
1779 #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
1780     sysctl -w lustre.fail_val=$(($TIMEOUT - 1))
1781     sysctl -w lustre.fail_loc=0x80000312
1782     cp /etc/profile $DIR/$tdir/${tfile}_1 || error "1st cp failed $?"
1783     sysctl -w lustre.fail_val=$((TIMEOUT * 5 / 4))
1784     sysctl -w lustre.fail_loc=0x80000312
1785     cp /etc/profile $DIR/$tdir/${tfile}_2 || error "2nd cp failed $?"
1786     sysctl -w lustre.fail_loc=0
1787
1788     echo $ENQ_MIN >> $ldlm_enqueue_min
1789     do_facet ost1 "echo $ENQ_MIN_R >> $ldlm_enqueue_min_r"
1790     rm -rf $DIR/$tdir
1791     return 0
1792 }
1793 run_test 68 "AT: verify slowing locks"
1794
1795 at_cleanup
1796 # end of AT tests includes above lines
1797
1798
1799 # start multi-client tests
1800 test_70a () {
1801         [ -z "$CLIENTS" ] && \
1802                 { skip "Need two or more clients." && return; }
1803         [ $CLIENTCOUNT -lt 2 ] && \
1804                 { skip "Need two or more clients, have $CLIENTCOUNT" && return; }
1805
1806         echo "mount clients $CLIENTS ..."
1807         zconf_mount_clients $CLIENTS $DIR
1808
1809         local clients=${CLIENTS//,/ }
1810         echo "Write/read files on $DIR ; clients $CLIENTS ... "
1811         for CLIENT in $clients; do
1812                 do_node $CLIENT dd bs=1M count=10 if=/dev/zero \
1813                         of=$DIR/${tfile}_${CLIENT} 2>/dev/null || \
1814                                 error "dd failed on $CLIENT"
1815         done
1816
1817         local prev_client=$(echo $clients | sed 's/^.* \(.\+\)$/\1/')
1818         for C in ${CLIENTS//,/ }; do
1819                 do_node $prev_client dd if=$DIR/${tfile}_${C} of=/dev/null 2>/dev/null || \
1820                         error "dd if=$DIR/${tfile}_${C} failed on $prev_client"
1821                 prev_client=$C
1822         done
1823         
1824         ls $DIR
1825 }
1826 run_test 70a "check multi client t-f"
1827
1828 test_70b () {
1829         local clients=${CLIENTS:-$HOSTNAME}
1830
1831         zconf_mount_clients $clients $DIR
1832         
1833         local duration=300
1834         [ "$SLOW" = "no" ] && duration=60
1835         local cmd="rundbench 1 -t $duration"
1836         local PID=""
1837         do_nodes $clients "set -x; MISSING_DBENCH_OK=$MISSING_DBENCH_OK \
1838                 PATH=:$PATH:$LUSTRE/utils:$LUSTRE/tests/:$DBENCH_LIB \
1839                 DBENCH_LIB=$DBENCH_LIB TESTSUITE=$TESTSUITE TESTNAME=$TESTNAME \
1840                 LCTL=$LCTL $cmd" &
1841         PID=$!
1842         log "Started rundbench load PID=$PID ..."
1843         ELAPSED=0
1844         NUM_FAILOVERS=0
1845         START_TS=$(date +%s)
1846         CURRENT_TS=$START_TS
1847         while [ $ELAPSED -lt $duration ]; do
1848                 sleep 1
1849                 replay_barrier $SINGLEMDS
1850                 sleep 1 # give clients a time to do operations
1851                 # Increment the number of failovers
1852                 NUM_FAILOVERS=$((NUM_FAILOVERS+1))
1853                 log "$TESTNAME fail mds1 $NUM_FAILOVERS times"
1854                 facet_failover $SINGLEMDS
1855                 CURRENT_TS=$(date +%s)
1856                 ELAPSED=$((CURRENT_TS - START_TS))
1857         done
1858         wait $PID || error "rundbench load on $CLIENTS failed!"
1859 }
1860 run_test 70b "mds recovery; $CLIENTCOUNT clients"
1861 # end multi-client tests
1862
1863 test_73a() {
1864     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1865     pid=$!
1866     rm -f $DIR/$tfile
1867
1868     replay_barrier $SINGLEMDS
1869 #define OBD_FAIL_LDLM_ENQUEUE       0x302
1870     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000302"
1871     fail $SINGLEMDS
1872     kill -USR1 $pid
1873     wait $pid || return 1
1874     [ -e $DIR/$tfile ] && return 2
1875     return 0
1876 }
1877 run_test 73a "open(O_CREAT), unlink, replay, reconnect before open replay , close"
1878
1879 test_73b() {
1880     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1881     pid=$!
1882     rm -f $DIR/$tfile
1883
1884     replay_barrier $SINGLEMDS
1885 #define OBD_FAIL_LDLM_REPLY       0x30c
1886     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000030c"
1887     fail $SINGLEMDS
1888     kill -USR1 $pid
1889     wait $pid || return 1
1890     [ -e $DIR/$tfile ] && return 2
1891     return 0
1892 }
1893 run_test 73b "open(O_CREAT), unlink, replay, reconnect at open_replay reply, close"
1894
1895 test_73c() {
1896     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1897     pid=$!
1898     rm -f $DIR/$tfile
1899
1900     replay_barrier $SINGLEMDS
1901 #define OBD_FAIL_TGT_LAST_REPLAY       0x710
1902     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000710"
1903     fail $SINGLEMDS
1904     kill -USR1 $pid
1905     wait $pid || return 1
1906     [ -e $DIR/$tfile ] && return 2
1907     return 0
1908 }
1909 run_test 73c "open(O_CREAT), unlink, replay, reconnect at last_replay, close"
1910
1911 # bug 18554
1912 test_74() {
1913     stop ost1
1914     zconf_umount $(hostname) $MOUNT
1915     fail $SINGLEMDS
1916     zconf_mount $(hostname) $MOUNT
1917     mount_facet ost1
1918     touch $DIR/$tfile || return 1
1919     rm $DIR/$tfile || return 2
1920     df $MOUNT || error "df failed: $?"
1921     return 0
1922 }
1923 run_test 74 "Ensure applications don't fail waiting for OST reocvery"
1924
1925 test_80a() {
1926     [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1927
1928     mkdir -p $DIR/$tdir
1929     replay_barrier mds2
1930     $CHECKSTAT -t dir $DIR/$tdir || error "$CHECKSTAT -t dir $DIR/$tdir failed"
1931     rmdir $DIR/$tdir || error "rmdir $DIR/$tdir failed"
1932     fail mds2
1933     stat $DIR/$tdir 2&>/dev/null && error "$DIR/$tdir still exist after recovery!"
1934     return 0
1935 }
1936 run_test 80a "CMD: unlink cross-node dir (fail mds with inode)"
1937
1938 test_80b() {
1939     [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1940
1941     mkdir -p $DIR/$tdir
1942     replay_barrier mds1
1943     $CHECKSTAT -t dir $DIR/$tdir || error "$CHECKSTAT -t dir $DIR/$tdir failed"
1944     rmdir $DIR/$tdir || error "rmdir $DIR/$tdir failed"
1945     fail mds1
1946     stat $DIR/$tdir 2&>/dev/null && error "$DIR/$tdir still exist after recovery!"
1947     return 0
1948 }
1949 run_test 80b "CMD: unlink cross-node dir (fail mds with name)"
1950
1951 test_81a() {
1952     [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1953
1954     mkdir -p $DIR/$tdir
1955     createmany -o $DIR/$tdir/f 3000 || error "createmany failed"
1956     sleep 10
1957     $CHECKSTAT -t dir $DIR/$tdir || error "$CHECKSTAT -t dir failed"
1958     $CHECKSTAT -t file $DIR/$tdir/f1002 || error "$CHECKSTAT -t file failed"
1959     replay_barrier mds1
1960     rm $DIR/$tdir/f1002 || error "rm $DIR/$tdir/f1002 failed"
1961     fail mds1
1962     stat $DIR/$tdir/f1002
1963 }
1964 run_test 81a "CMD: unlink cross-node file (fail mds with name)"
1965
1966 test_82a() {
1967     [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1968
1969     local dir=$DIR/d82a
1970     replay_barrier mds2
1971     mkdir $dir || error "mkdir $dir failed"
1972     log "FAILOVER mds2"
1973     fail mds2
1974     stat $DIR
1975     $CHECKSTAT -t dir $dir || error "$CHECKSTAT -t dir $dir failed"
1976 }
1977 run_test 82a "CMD: mkdir cross-node dir (fail mds with inode)"
1978
1979 test_82b() {
1980     [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1981
1982     local dir=$DIR/d82b
1983     replay_barrier mds1
1984     mkdir $dir || error "mkdir $dir failed"
1985     log "FAILOVER mds1"
1986     fail mds1
1987     stat $DIR
1988     $CHECKSTAT -t dir $dir || error "$CHECKSTAT -t dir $dir failed"
1989 }
1990 run_test 82b "CMD: mkdir cross-node dir (fail mds with name)"
1991
1992 equals_msg `basename $0`: test complete, cleaning up
1993 check_and_cleanup_lustre
1994 [ -f "$TESTSUITELOG" ] && cat $TESTSUITELOG && grep -q FAIL $TESTSUITELOG && exit 1 || true