Whamcloud - gitweb
3086976b831e8a27c4442ee9d66e22256426bd32
[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 export MULTIOP=${MULTIOP:-multiop}
11 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
12 SETUP=${SETUP:-}
13 CLEANUP=${CLEANUP:-}
14 . $LUSTRE/tests/test-framework.sh
15 init_test_env $@
16 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
17 init_logging
18 CHECK_GRANT=${CHECK_GRANT:-"yes"}
19 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
20
21 require_dsh_mds || exit 0
22
23 # Skip these tests
24 # bug number:  17466 18857      LU-1867 LU-1473
25 ALWAYS_EXCEPT="61d   33a 33b    89      62      $REPLAY_SINGLE_EXCEPT"
26
27 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
28 # bug number for skipped test:        LU-951
29         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 73a"
30
31 #                                                  63 min  7 min  AT AT AT AT"
32 [ "$SLOW" = "no" ] && EXCEPT_SLOW="1 2 3 4 6 12 16 44a      44b    65 66 67 68"
33
34 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
35 # bug number for skipped test:        LU-3127
36         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 73b"
37
38 build_test_filter
39
40 check_and_setup_lustre
41
42 mkdir -p $DIR
43
44 assert_DIR
45 rm -rf $DIR/[df][0-9]* $DIR/f.$TESTSUITE.*
46
47 # LU-482 Avert LVM and VM inability to flush caches in pre .33 kernels
48 if [ $LINUX_VERSION_CODE -lt $(version_code 2.6.33) ]; then
49     sync
50     do_facet $SINGLEMDS sync
51 fi
52
53 test_0a() {     # was test_0
54     mkdir $DIR/$tfile
55     replay_barrier $SINGLEMDS
56     fail $SINGLEMDS
57     rmdir $DIR/$tfile
58 }
59 run_test 0a "empty replay"
60
61 test_0b() {
62     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
63
64     # this test attempts to trigger a race in the precreation code,
65     # and must run before any other objects are created on the filesystem
66     fail ost1
67     createmany -o $DIR/$tfile 20 || return 1
68     unlinkmany $DIR/$tfile 20 || return 2
69 }
70 run_test 0b "ensure object created after recover exists. (3284)"
71
72 test_0c() {
73         replay_barrier $SINGLEMDS
74         mcreate $DIR/$tfile
75         umount $MOUNT
76         facet_failover $SINGLEMDS
77         zconf_mount `hostname` $MOUNT || error "mount fails"
78         client_up || error "post-failover df failed"
79         # file shouldn't exist if replay-barrier works as expected
80         rm $DIR/$tfile && error "File exists and it shouldn't"
81         return 0
82 }
83 run_test 0c "check replay-barrier"
84
85 test_0d() {
86     replay_barrier $SINGLEMDS
87     umount $MOUNT
88     facet_failover $SINGLEMDS
89     zconf_mount `hostname` $MOUNT || error "mount fails"
90     client_up || error "post-failover df failed"
91 }
92 run_test 0d "expired recovery with no clients"
93
94 test_1() {
95     replay_barrier $SINGLEMDS
96     mcreate $DIR/$tfile
97     fail $SINGLEMDS
98     $CHECKSTAT -t file $DIR/$tfile || return 1
99     rm $DIR/$tfile
100 }
101 run_test 1 "simple create"
102
103 test_2a() {
104     replay_barrier $SINGLEMDS
105     touch $DIR/$tfile
106     fail $SINGLEMDS
107     $CHECKSTAT -t file $DIR/$tfile || return 1
108     rm $DIR/$tfile
109 }
110 run_test 2a "touch"
111
112 test_2b() {
113     mcreate $DIR/$tfile
114     replay_barrier $SINGLEMDS
115     touch $DIR/$tfile
116     fail $SINGLEMDS
117     $CHECKSTAT -t file $DIR/$tfile || return 1
118     rm $DIR/$tfile
119 }
120 run_test 2b "touch"
121
122 test_3a() {
123     local file=$DIR/$tfile
124     replay_barrier $SINGLEMDS
125     mcreate $file
126     openfile -f O_DIRECTORY $file
127     fail $SINGLEMDS
128     $CHECKSTAT -t file $file || return 2
129     rm $file
130 }
131 run_test 3a "replay failed open(O_DIRECTORY)"
132
133 test_3b() {
134     replay_barrier $SINGLEMDS
135 #define OBD_FAIL_MDS_OPEN_PACK | OBD_FAIL_ONCE
136     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000114"
137     touch $DIR/$tfile
138     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
139     fail $SINGLEMDS
140     $CHECKSTAT -t file $DIR/$tfile && return 2
141     return 0
142 }
143 run_test 3b "replay failed open -ENOMEM"
144
145 test_3c() {
146     replay_barrier $SINGLEMDS
147 #define OBD_FAIL_MDS_ALLOC_OBDO | OBD_FAIL_ONCE
148     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000128"
149     touch $DIR/$tfile
150     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
151     fail $SINGLEMDS
152
153     $CHECKSTAT -t file $DIR/$tfile && return 2
154     return 0
155 }
156 run_test 3c "replay failed open -ENOMEM"
157
158 test_4a() {     # was test_4
159     replay_barrier $SINGLEMDS
160     for i in `seq 10`; do
161         echo "tag-$i" > $DIR/$tfile-$i
162     done
163     fail $SINGLEMDS
164     for i in `seq 10`; do
165       grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
166     done
167 }
168 run_test 4a "|x| 10 open(O_CREAT)s"
169
170 test_4b() {
171     replay_barrier $SINGLEMDS
172     rm -rf $DIR/$tfile-*
173     fail $SINGLEMDS
174     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
175 }
176 run_test 4b "|x| rm 10 files"
177
178 # The idea is to get past the first block of precreated files on both
179 # osts, and then replay.
180 test_5() {
181     replay_barrier $SINGLEMDS
182     for i in `seq 220`; do
183         echo "tag-$i" > $DIR/$tfile-$i
184     done
185     fail $SINGLEMDS
186     for i in `seq 220`; do
187       grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
188     done
189     rm -rf $DIR/$tfile-*
190     sleep 3
191     # waiting for commitment of removal
192 }
193 run_test 5 "|x| 220 open(O_CREAT)"
194
195
196 test_6a() {     # was test_6
197     mkdir -p $DIR/$tdir
198     replay_barrier $SINGLEMDS
199     mcreate $DIR/$tdir/$tfile
200     fail $SINGLEMDS
201     $CHECKSTAT -t dir $DIR/$tdir || return 1
202     $CHECKSTAT -t file $DIR/$tdir/$tfile || return 2
203     sleep 2
204     # waiting for log process thread
205 }
206 run_test 6a "mkdir + contained create"
207
208 test_6b() {
209     mkdir -p $DIR/$tdir
210     replay_barrier $SINGLEMDS
211     rm -rf $DIR/$tdir
212     fail $SINGLEMDS
213     $CHECKSTAT -t dir $DIR/$tdir && return 1 || true
214 }
215 run_test 6b "|X| rmdir"
216
217 test_7() {
218     mkdir -p $DIR/$tdir
219     replay_barrier $SINGLEMDS
220     mcreate $DIR/$tdir/$tfile
221     fail $SINGLEMDS
222     $CHECKSTAT -t dir $DIR/$tdir || return 1
223     $CHECKSTAT -t file $DIR/$tdir/$tfile || return 2
224     rm -fr $DIR/$tdir
225 }
226 run_test 7 "mkdir |X| contained create"
227
228 test_8() {
229     # make sure no side-effect from previous test.
230     rm -f $DIR/$tfile
231     replay_barrier $SINGLEMDS
232     multiop_bg_pause $DIR/$tfile mo_c || return 4
233     MULTIPID=$!
234     fail $SINGLEMDS
235     ls $DIR/$tfile
236     $CHECKSTAT -t file $DIR/$tfile || return 1
237     kill -USR1 $MULTIPID || return 2
238     wait $MULTIPID || return 3
239     rm $DIR/$tfile
240 }
241 run_test 8 "creat open |X| close"
242
243 test_9() {
244     replay_barrier $SINGLEMDS
245     mcreate $DIR/$tfile
246     local old_inum=`ls -i $DIR/$tfile | awk '{print $1}'`
247     fail $SINGLEMDS
248     local new_inum=`ls -i $DIR/$tfile | awk '{print $1}'`
249
250     echo " old_inum == $old_inum, new_inum == $new_inum"
251     if [ $old_inum -eq $new_inum  ] ;
252     then
253         echo " old_inum and new_inum match"
254     else
255         echo "!!!! old_inum and new_inum NOT match"
256         return 1
257     fi
258     rm $DIR/$tfile
259 }
260 run_test 9  "|X| create (same inum/gen)"
261
262 test_10() {
263     mcreate $DIR/$tfile
264     replay_barrier $SINGLEMDS
265     mv $DIR/$tfile $DIR/$tfile-2
266     rm -f $DIR/$tfile
267     fail $SINGLEMDS
268     $CHECKSTAT $DIR/$tfile && return 1
269     $CHECKSTAT $DIR/$tfile-2 ||return 2
270     rm $DIR/$tfile-2
271     return 0
272 }
273 run_test 10 "create |X| rename unlink"
274
275 test_11() {
276     mcreate $DIR/$tfile
277     echo "old" > $DIR/$tfile
278     mv $DIR/$tfile $DIR/$tfile-2
279     replay_barrier $SINGLEMDS
280     echo "new" > $DIR/$tfile
281     grep new $DIR/$tfile
282     grep old $DIR/$tfile-2
283     fail $SINGLEMDS
284     grep new $DIR/$tfile || return 1
285     grep old $DIR/$tfile-2 || return 2
286 }
287 run_test 11 "create open write rename |X| create-old-name read"
288
289 test_12() {
290     mcreate $DIR/$tfile
291     multiop_bg_pause $DIR/$tfile o_tSc || return 3
292     pid=$!
293     rm -f $DIR/$tfile
294     replay_barrier $SINGLEMDS
295     kill -USR1 $pid
296     wait $pid || return 1
297
298     fail $SINGLEMDS
299     [ -e $DIR/$tfile ] && return 2
300     return 0
301 }
302 run_test 12 "open, unlink |X| close"
303
304
305 # 1777 - replay open after committed chmod that would make
306 #        a regular open a failure
307 test_13() {
308     mcreate $DIR/$tfile
309     multiop_bg_pause $DIR/$tfile O_wc || return 3
310     pid=$!
311     chmod 0 $DIR/$tfile
312     $CHECKSTAT -p 0 $DIR/$tfile
313     replay_barrier $SINGLEMDS
314     fail $SINGLEMDS
315     kill -USR1 $pid
316     wait $pid || return 1
317
318     $CHECKSTAT -s 1 -p 0 $DIR/$tfile || return 2
319     rm $DIR/$tfile || return 4
320     return 0
321 }
322 run_test 13 "open chmod 0 |x| write close"
323
324 test_14() {
325     multiop_bg_pause $DIR/$tfile O_tSc || return 4
326     pid=$!
327     rm -f $DIR/$tfile
328     replay_barrier $SINGLEMDS
329     kill -USR1 $pid || return 1
330     wait $pid || return 2
331
332     fail $SINGLEMDS
333     [ -e $DIR/$tfile ] && return 3
334     return 0
335 }
336 run_test 14 "open(O_CREAT), unlink |X| close"
337
338 test_15() {
339     multiop_bg_pause $DIR/$tfile O_tSc || return 5
340     pid=$!
341     rm -f $DIR/$tfile
342     replay_barrier $SINGLEMDS
343     touch $DIR/g11 || return 1
344     kill -USR1 $pid
345     wait $pid || return 2
346
347     fail $SINGLEMDS
348     [ -e $DIR/$tfile ] && return 3
349     touch $DIR/h11 || return 4
350     return 0
351 }
352 run_test 15 "open(O_CREAT), unlink |X|  touch new, close"
353
354
355 test_16() {
356     replay_barrier $SINGLEMDS
357     mcreate $DIR/$tfile
358     munlink $DIR/$tfile
359     mcreate $DIR/$tfile-2
360     fail $SINGLEMDS
361     [ -e $DIR/$tfile ] && return 1
362     [ -e $DIR/$tfile-2 ] || return 2
363     munlink $DIR/$tfile-2 || return 3
364 }
365 run_test 16 "|X| open(O_CREAT), unlink, touch new,  unlink new"
366
367 test_17() {
368     replay_barrier $SINGLEMDS
369     multiop_bg_pause $DIR/$tfile O_c || return 4
370     pid=$!
371     fail $SINGLEMDS
372     kill -USR1 $pid || return 1
373     wait $pid || return 2
374     $CHECKSTAT -t file $DIR/$tfile || return 3
375     rm $DIR/$tfile
376 }
377 run_test 17 "|X| open(O_CREAT), |replay| close"
378
379 test_18() {
380     replay_barrier $SINGLEMDS
381     multiop_bg_pause $DIR/$tfile O_tSc || return 8
382     pid=$!
383     rm -f $DIR/$tfile
384     touch $DIR/$tfile-2 || return 1
385     echo "pid: $pid will close"
386     kill -USR1 $pid
387     wait $pid || return 2
388
389     fail $SINGLEMDS
390     [ -e $DIR/$tfile ] && return 3
391     [ -e $DIR/$tfile-2 ] || return 4
392     # this touch frequently fails
393     touch $DIR/$tfile-3 || return 5
394     munlink $DIR/$tfile-2 || return 6
395     munlink $DIR/$tfile-3 || return 7
396     return 0
397 }
398 run_test 18 "|X| open(O_CREAT), unlink, touch new, close, touch, unlink"
399
400 # bug 1855 (a simpler form of test_11 above)
401 test_19() {
402     replay_barrier $SINGLEMDS
403     mcreate $DIR/$tfile
404     echo "old" > $DIR/$tfile
405     mv $DIR/$tfile $DIR/$tfile-2
406     grep old $DIR/$tfile-2
407     fail $SINGLEMDS
408     grep old $DIR/$tfile-2 || return 2
409 }
410 run_test 19 "|X| mcreate, open, write, rename "
411
412 test_20a() {    # was test_20
413     replay_barrier $SINGLEMDS
414     multiop_bg_pause $DIR/$tfile O_tSc || return 3
415     pid=$!
416     rm -f $DIR/$tfile
417
418     fail $SINGLEMDS
419     kill -USR1 $pid
420     wait $pid || return 1
421     [ -e $DIR/$tfile ] && return 2
422     return 0
423 }
424 run_test 20a "|X| open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
425
426 test_20b() { # bug 10480
427         local wait_timeout=$((TIMEOUT * 4))
428         local BEFOREUSED
429         local AFTERUSED
430
431         BEFOREUSED=`df -P $DIR | tail -1 | awk '{ print $3 }'`
432         dd if=/dev/zero of=$DIR/$tfile bs=4k count=10000 &
433         pid=$!
434         while [ ! -e $DIR/$tfile ] ; do
435         usleep 60                           # give dd a chance to start
436         done
437
438         $GETSTRIPE $DIR/$tfile || return 1
439         rm -f $DIR/$tfile || return 2       # make it an orphan
440         mds_evict_client
441         client_up || client_up || true    # reconnect
442
443         fail $SINGLEMDS                            # start orphan recovery
444         wait_recovery_complete $SINGLEMDS || error "MDS recovery not done"
445         wait_delete_completed_mds $wait_timeout || return 3
446         AFTERUSED=$(df -P $DIR | tail -1 | awk '{ print $3 }')
447         log "before $BEFOREUSED, after $AFTERUSED"
448         (( $AFTERUSED > $BEFOREUSED + $(fs_log_size) )) &&
449                 error "after $AFTERUSED > before $BEFOREUSED"
450         return 0
451 }
452 run_test 20b "write, unlink, eviction, replay, (test mds_cleanup_orphans)"
453
454 test_20c() { # bug 10480
455     multiop_bg_pause $DIR/$tfile Ow_c || return 1
456     pid=$!
457
458     ls -la $DIR/$tfile
459
460     mds_evict_client
461     client_up || client_up || true    # reconnect
462
463     kill -USR1 $pid
464     wait $pid || return 1
465     [ -s $DIR/$tfile ] || error "File was truncated"
466
467     return 0
468 }
469 run_test 20c "check that client eviction does not affect file content"
470
471 test_21() {
472     replay_barrier $SINGLEMDS
473     multiop_bg_pause $DIR/$tfile O_tSc || return 5
474     pid=$!
475     rm -f $DIR/$tfile
476     touch $DIR/g11 || return 1
477
478     fail $SINGLEMDS
479     kill -USR1 $pid
480     wait $pid || return 2
481     [ -e $DIR/$tfile ] && return 3
482     touch $DIR/h11 || return 4
483     return 0
484 }
485 run_test 21 "|X| open(O_CREAT), unlink touch new, replay, close (test mds_cleanup_orphans)"
486
487 test_22() {
488     multiop_bg_pause $DIR/$tfile O_tSc || return 3
489     pid=$!
490
491     replay_barrier $SINGLEMDS
492     rm -f $DIR/$tfile
493
494     fail $SINGLEMDS
495     kill -USR1 $pid
496     wait $pid || return 1
497     [ -e $DIR/$tfile ] && return 2
498     return 0
499 }
500 run_test 22 "open(O_CREAT), |X| unlink, replay, close (test mds_cleanup_orphans)"
501
502 test_23() {
503     multiop_bg_pause $DIR/$tfile O_tSc || return 5
504     pid=$!
505
506     replay_barrier $SINGLEMDS
507     rm -f $DIR/$tfile
508     touch $DIR/g11 || return 1
509
510     fail $SINGLEMDS
511     kill -USR1 $pid
512     wait $pid || return 2
513     [ -e $DIR/$tfile ] && return 3
514     touch $DIR/h11 || return 4
515     return 0
516 }
517 run_test 23 "open(O_CREAT), |X| unlink touch new, replay, close (test mds_cleanup_orphans)"
518
519 test_24() {
520     multiop_bg_pause $DIR/$tfile O_tSc || return 3
521     pid=$!
522
523     replay_barrier $SINGLEMDS
524     fail $SINGLEMDS
525     rm -f $DIR/$tfile
526     kill -USR1 $pid
527     wait $pid || return 1
528     [ -e $DIR/$tfile ] && return 2
529     return 0
530 }
531 run_test 24 "open(O_CREAT), replay, unlink, close (test mds_cleanup_orphans)"
532
533 test_25() {
534     multiop_bg_pause $DIR/$tfile O_tSc || return 3
535     pid=$!
536     rm -f $DIR/$tfile
537
538     replay_barrier $SINGLEMDS
539     fail $SINGLEMDS
540     kill -USR1 $pid
541     wait $pid || return 1
542     [ -e $DIR/$tfile ] && return 2
543     return 0
544 }
545 run_test 25 "open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
546
547 test_26() {
548     replay_barrier $SINGLEMDS
549     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
550     pid1=$!
551     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
552     pid2=$!
553     rm -f $DIR/$tfile-1
554     rm -f $DIR/$tfile-2
555     kill -USR1 $pid2
556     wait $pid2 || return 1
557
558     fail $SINGLEMDS
559     kill -USR1 $pid1
560     wait $pid1 || return 2
561     [ -e $DIR/$tfile-1 ] && return 3
562     [ -e $DIR/$tfile-2 ] && return 4
563     return 0
564 }
565 run_test 26 "|X| open(O_CREAT), unlink two, close one, replay, close one (test mds_cleanup_orphans)"
566
567 test_27() {
568     replay_barrier $SINGLEMDS
569     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
570     pid1=$!
571     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
572     pid2=$!
573     rm -f $DIR/$tfile-1
574     rm -f $DIR/$tfile-2
575
576     fail $SINGLEMDS
577     kill -USR1 $pid1
578     wait $pid1 || return 1
579     kill -USR1 $pid2
580     wait $pid2 || return 2
581     [ -e $DIR/$tfile-1 ] && return 3
582     [ -e $DIR/$tfile-2 ] && return 4
583     return 0
584 }
585 run_test 27 "|X| open(O_CREAT), unlink two, replay, close two (test mds_cleanup_orphans)"
586
587 test_28() {
588     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
589     pid1=$!
590     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
591     pid2=$!
592     replay_barrier $SINGLEMDS
593     rm -f $DIR/$tfile-1
594     rm -f $DIR/$tfile-2
595     kill -USR1 $pid2
596     wait $pid2 || return 1
597
598     fail $SINGLEMDS
599     kill -USR1 $pid1
600     wait $pid1 || return 2
601     [ -e $DIR/$tfile-1 ] && return 3
602     [ -e $DIR/$tfile-2 ] && return 4
603     return 0
604 }
605 run_test 28 "open(O_CREAT), |X| unlink two, close one, replay, close one (test mds_cleanup_orphans)"
606
607 test_29() {
608     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
609     pid1=$!
610     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
611     pid2=$!
612     replay_barrier $SINGLEMDS
613     rm -f $DIR/$tfile-1
614     rm -f $DIR/$tfile-2
615
616     fail $SINGLEMDS
617     kill -USR1 $pid1
618     wait $pid1 || return 1
619     kill -USR1 $pid2
620     wait $pid2 || return 2
621     [ -e $DIR/$tfile-1 ] && return 3
622     [ -e $DIR/$tfile-2 ] && return 4
623     return 0
624 }
625 run_test 29 "open(O_CREAT), |X| unlink two, replay, close two (test mds_cleanup_orphans)"
626
627 test_30() {
628     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
629     pid1=$!
630     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
631     pid2=$!
632     rm -f $DIR/$tfile-1
633     rm -f $DIR/$tfile-2
634
635     replay_barrier $SINGLEMDS
636     fail $SINGLEMDS
637     kill -USR1 $pid1
638     wait $pid1 || return 1
639     kill -USR1 $pid2
640     wait $pid2 || return 2
641     [ -e $DIR/$tfile-1 ] && return 3
642     [ -e $DIR/$tfile-2 ] && return 4
643     return 0
644 }
645 run_test 30 "open(O_CREAT) two, unlink two, replay, close two (test mds_cleanup_orphans)"
646
647 test_31() {
648     multiop_bg_pause $DIR/$tfile-1 O_tSc || return 5
649     pid1=$!
650     multiop_bg_pause $DIR/$tfile-2 O_tSc || return 6
651     pid2=$!
652     rm -f $DIR/$tfile-1
653
654     replay_barrier $SINGLEMDS
655     rm -f $DIR/$tfile-2
656     fail $SINGLEMDS
657     kill -USR1 $pid1
658     wait $pid1 || return 1
659     kill -USR1 $pid2
660     wait $pid2 || return 2
661     [ -e $DIR/$tfile-1 ] && return 3
662     [ -e $DIR/$tfile-2 ] && return 4
663     return 0
664 }
665 run_test 31 "open(O_CREAT) two, unlink one, |X| unlink one, close two (test mds_cleanup_orphans)"
666
667 # tests for bug 2104; completion without crashing is success.  The close is
668 # stale, but we always return 0 for close, so the app never sees it.
669 test_32() {
670     multiop_bg_pause $DIR/$tfile O_c || return 2
671     pid1=$!
672     multiop_bg_pause $DIR/$tfile O_c || return 3
673     pid2=$!
674     mds_evict_client
675     client_up || client_up || return 1
676     kill -USR1 $pid1
677     kill -USR1 $pid2
678     wait $pid1 || return 4
679     wait $pid2 || return 5
680     return 0
681 }
682 run_test 32 "close() notices client eviction; close() after client eviction"
683
684 test_33a() {
685     createmany -o $DIR/$tfile-%d 10
686     replay_barrier_nosync $SINGLEMDS
687     fail_abort $SINGLEMDS
688     # recreate shouldn't fail
689     createmany -o $DIR/$tfile--%d 10 || return 1
690     rm $DIR/$tfile-* -f
691     return 0
692 }
693 run_test 33a "fid seq shouldn't be reused after abort recovery"
694
695 test_33b() {
696     #define OBD_FAIL_SEQ_ALLOC                          0x1311
697     do_facet $SINGLEMDS "lctl set_param fail_loc=0x1311"
698
699     createmany -o $DIR/$tfile-%d 10
700     replay_barrier_nosync $SINGLEMDS
701     fail_abort $SINGLEMDS
702     # recreate shouldn't fail
703     createmany -o $DIR/$tfile--%d 10 || return 1
704     rm $DIR/$tfile-* -f
705     return 0
706 }
707 run_test 33b "test fid seq allocation"
708
709 test_34() {
710     multiop_bg_pause $DIR/$tfile O_c || return 2
711     pid=$!
712     rm -f $DIR/$tfile
713
714     replay_barrier $SINGLEMDS
715     fail_abort $SINGLEMDS
716     kill -USR1 $pid
717     wait $pid || return 3
718     [ -e $DIR/$tfile ] && return 1
719     sync
720     return 0
721 }
722 run_test 34 "abort recovery before client does replay (test mds_cleanup_orphans)"
723
724 # bug 2278 - generate one orphan on OST, then destroy it during recovery from llog
725 test_35() {
726     touch $DIR/$tfile
727
728 #define OBD_FAIL_MDS_REINT_NET_REP       0x119
729     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
730     rm -f $DIR/$tfile &
731     sleep 1
732     sync
733     sleep 1
734     # give a chance to remove from MDS
735     fail_abort $SINGLEMDS
736     $CHECKSTAT -t file $DIR/$tfile && return 1 || true
737 }
738 run_test 35 "test recovery from llog for unlink op"
739
740 # b=2432 resent cancel after replay uses wrong cookie,
741 # so don't resend cancels
742 test_36() {
743     replay_barrier $SINGLEMDS
744     touch $DIR/$tfile
745     checkstat $DIR/$tfile
746     facet_failover $SINGLEMDS
747     cancel_lru_locks mdc
748     if dmesg | grep "unknown lock cookie"; then
749         echo "cancel after replay failed"
750         return 1
751     fi
752 }
753 run_test 36 "don't resend cancel"
754
755 # b=2368
756 # directory orphans can't be unlinked from PENDING directory
757 test_37() {
758     rmdir $DIR/$tfile 2>/dev/null
759     multiop_bg_pause $DIR/$tfile dD_c || return 2
760     pid=$!
761     rmdir $DIR/$tfile
762
763     replay_barrier $SINGLEMDS
764     # clear the dmesg buffer so we only see errors from this recovery
765     do_facet $SINGLEMDS dmesg -c >/dev/null
766     fail_abort $SINGLEMDS
767     kill -USR1 $pid
768     do_facet $SINGLEMDS dmesg | grep "error .* unlinking .* from PENDING" &&
769         return 1
770     wait $pid || return 3
771     sync
772     return 0
773 }
774 start_full_debug_logging
775 run_test 37 "abort recovery before client does replay (test mds_cleanup_orphans for directories)"
776 stop_full_debug_logging
777
778 test_38() {
779     createmany -o $DIR/$tfile-%d 800
780     unlinkmany $DIR/$tfile-%d 0 400
781     replay_barrier $SINGLEMDS
782     fail $SINGLEMDS
783     unlinkmany $DIR/$tfile-%d 400 400
784     sleep 2
785     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
786 }
787 run_test 38 "test recovery from unlink llog (test llog_gen_rec) "
788
789 test_39() { # bug 4176
790     createmany -o $DIR/$tfile-%d 800
791     replay_barrier $SINGLEMDS
792     unlinkmany $DIR/$tfile-%d 0 400
793     fail $SINGLEMDS
794     unlinkmany $DIR/$tfile-%d 400 400
795     sleep 2
796     $CHECKSTAT -t file $DIR/$tfile-* && return 1 || true
797 }
798 run_test 39 "test recovery from unlink llog (test llog_gen_rec) "
799
800 count_ost_writes() {
801     lctl get_param -n osc.*.stats | awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
802 }
803
804 #b=2477,2532
805 test_40(){
806         # always need connection to MDS to verify layout during IO. LU-2628.
807         lctl get_param mdc.*.connect_flags | grep -q layout_lock &&
808                 skip "layout_lock needs MDS connection for IO" && return 0
809
810         $LCTL mark multiop $MOUNT/$tfile OS_c
811         multiop $MOUNT/$tfile OS_c  &
812         PID=$!
813         writeme -s $MOUNT/${tfile}-2 &
814         WRITE_PID=$!
815         sleep 1
816         facet_failover $SINGLEMDS
817 #define OBD_FAIL_MDS_CONNECT_NET         0x117
818         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000117"
819         kill -USR1 $PID
820         stat1=`count_ost_writes`
821         sleep $TIMEOUT
822         stat2=`count_ost_writes`
823         echo "$stat1, $stat2"
824         if [ $stat1 -lt $stat2 ]; then
825                 echo "writes continuing during recovery"
826                 RC=0
827         else
828                 echo "writes not continuing during recovery, bug 2477"
829                 RC=4
830         fi
831         echo "waiting for writeme $WRITE_PID"
832         kill $WRITE_PID
833         wait $WRITE_PID
834
835         echo "waiting for multiop $PID"
836         wait $PID || return 2
837         do_facet client munlink $MOUNT/$tfile  || return 3
838         do_facet client munlink $MOUNT/${tfile}-2  || return 3
839         return $RC
840 }
841 run_test 40 "cause recovery in ptlrpc, ensure IO continues"
842
843
844 #b=2814
845 # make sure that a read to one osc doesn't try to double-unlock its page just
846 # because another osc is invalid.  trigger_group_io used to mistakenly return
847 # an error if any oscs were invalid even after having successfully put rpcs
848 # on valid oscs.  This was fatal if the caller was ll_readpage who unlocked
849 # the page, guarnateeing that the unlock from the RPC completion would
850 # assert on trying to unlock the unlocked page.
851 test_41() {
852     [ $OSTCOUNT -lt 2 ] &&
853         skip_env "skipping test 41: we don't have a second OST to test with" &&
854         return
855
856     local f=$MOUNT/$tfile
857     # make sure the start of the file is ost1
858     $SETSTRIPE -S $((128 * 1024)) -i 0 $f
859     do_facet client dd if=/dev/zero of=$f bs=4k count=1 || return 3
860     cancel_lru_locks osc
861     # fail ost2 and read from ost1
862     local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $ost2_svc)
863     local osc2dev=$(do_facet $SINGLEMDS "lctl get_param -n devices" | \
864         grep $mdtosc | awk '{print $1}')
865     [ -z "$osc2dev" ] && echo "OST: $ost2_svc" && lctl get_param -n devices &&
866         return 4
867     do_facet $SINGLEMDS $LCTL --device $osc2dev deactivate || return 1
868     do_facet client dd if=$f of=/dev/null bs=4k count=1 || return 3
869     do_facet $SINGLEMDS $LCTL --device $osc2dev activate || return 2
870     return 0
871 }
872 run_test 41 "read from a valid osc while other oscs are invalid"
873
874 # test MDS recovery after ost failure
875 test_42() {
876     blocks=`df -P $MOUNT | tail -n 1 | awk '{ print $2 }'`
877     createmany -o $DIR/$tfile-%d 800
878     replay_barrier ost1
879     unlinkmany $DIR/$tfile-%d 0 400
880     debugsave
881     lctl set_param debug=-1
882     facet_failover ost1
883
884     # osc is evicted, fs is smaller (but only with failout OSTs (bug 7287)
885     #blocks_after=`df -P $MOUNT | tail -n 1 | awk '{ print $2 }'`
886     #[ $blocks_after -lt $blocks ] || return 1
887     echo wait for MDS to timeout and recover
888     sleep $((TIMEOUT * 2))
889     debugrestore
890     unlinkmany $DIR/$tfile-%d 400 400
891     $CHECKSTAT -t file $DIR/$tfile-* && return 2 || true
892 }
893 run_test 42 "recovery after ost failure"
894
895 # timeout in MDS/OST recovery RPC will LBUG MDS
896 test_43() { # bug 2530
897     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
898
899     replay_barrier $SINGLEMDS
900
901     # OBD_FAIL_OST_CREATE_NET 0x204
902     do_facet ost1 "lctl set_param fail_loc=0x80000204"
903     fail $SINGLEMDS
904     sleep 10
905     do_facet ost1 "lctl set_param fail_loc=0"
906
907     return 0
908 }
909 run_test 43 "mds osc import failure during recovery; don't LBUG"
910
911 test_44a() { # was test_44
912         local at_max_saved=0
913
914         local mdcdev=$($LCTL dl |
915                 awk "/${FSNAME}-MDT0000-mdc-/ {if (\$2 == \"UP\") {print \$1}}")
916         [ "$mdcdev" ] || return 2
917         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
918                 { echo mdcdev=$mdcdev; $LCTL dl; return 3; }
919
920         # adaptive timeouts slow this way down
921         if at_is_enabled; then
922                 at_max_saved=$(at_max_get mds)
923                 at_max_set 40 mds
924         fi
925
926         for i in `seq 1 10`; do
927                 echo "$i of 10 ($(date +%s))"
928                 do_facet $SINGLEMDS \
929                         "lctl get_param -n md[ts].*.mdt.timeouts | grep service"
930 #define OBD_FAIL_TGT_CONN_RACE     0x701
931                 do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000701"
932                 # lctl below may fail, it is valid case
933                 $LCTL --device $mdcdev recover
934                 df $MOUNT
935         done
936         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
937         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds
938         return 0
939 }
940 run_test 44a "race in target handle connect"
941
942 test_44b() {
943         local mdcdev=$($LCTL dl |
944                 awk "/${FSNAME}-MDT0000-mdc-/ {if (\$2 == \"UP\") {print \$1}}")
945         [ "$mdcdev" ] || return 2
946         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
947                 { echo mdcdev=$mdcdev; $LCTL dl; return 3; }
948
949         for i in `seq 1 10`; do
950                 echo "$i of 10 ($(date +%s))"
951                 do_facet $SINGLEMDS \
952                         "lctl get_param -n md[ts].*.mdt.timeouts | grep service"
953         #define OBD_FAIL_TGT_DELAY_RECONNECT 0x704
954                 do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000704"
955         # lctl below may fail, it is valid case
956                 $LCTL --device $mdcdev recover
957                 df $MOUNT
958         done
959         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
960         return 0
961 }
962 run_test 44b "race in target handle connect"
963
964 test_44c() {
965         replay_barrier $SINGLEMDS
966         createmany -m $DIR/$tfile-%d 100 || error "failed to create directories"
967 #define OBD_FAIL_TGT_RCVG_FLAG 0x712
968         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000712"
969         fail_abort $SINGLEMDS
970         unlinkmany $DIR/$tfile-%d 100 && error "unliked after fail abort"
971         fail $SINGLEMDS
972         unlinkmany $DIR/$tfile-%d 100 && error "unliked after fail"
973         return 0
974 }
975 run_test 44c "race in target handle connect"
976
977 # Handle failed close
978 test_45() {
979         local mdcdev=$($LCTL get_param -n devices |
980                 awk "/ ${FSNAME}-MDT0000-mdc-/ {print \$1}")
981         [ "$mdcdev" ] || return 2
982         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
983                 { echo mdcdev=$mdcdev; $LCTL dl; return 3; }
984
985         $LCTL --device $mdcdev recover || return 6
986
987         multiop_bg_pause $DIR/$tfile O_c || return 1
988         pid=$!
989
990         # This will cause the CLOSE to fail before even
991         # allocating a reply buffer
992         $LCTL --device $mdcdev deactivate || return 4
993
994         # try the close
995         kill -USR1 $pid
996         wait $pid || return 1
997
998         $LCTL --device $mdcdev activate || return 5
999         sleep 1
1000
1001         $CHECKSTAT -t file $DIR/$tfile || return 2
1002         return 0
1003 }
1004 run_test 45 "Handle failed close"
1005
1006 test_46() {
1007     dmesg -c >/dev/null
1008     drop_reply "touch $DIR/$tfile"
1009     fail $SINGLEMDS
1010     # ironically, the previous test, 45, will cause a real forced close,
1011     # so just look for one for this test
1012     dmesg | grep -i "force closing client file handle for $tfile" && return 1
1013     return 0
1014 }
1015 run_test 46 "Don't leak file handle after open resend (3325)"
1016
1017 test_47() { # bug 2824
1018     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1019
1020     # create some files to make sure precreate has been done on all
1021     # OSTs. (just in case this test is run independently)
1022     createmany -o $DIR/$tfile 20  || return 1
1023
1024     # OBD_FAIL_OST_CREATE_NET 0x204
1025     fail ost1
1026     do_facet ost1 "lctl set_param fail_loc=0x80000204"
1027     client_up || return 2
1028
1029     # let the MDS discover the OST failure, attempt to recover, fail
1030     # and recover again.
1031     sleep $((3 * TIMEOUT))
1032
1033     # Without 2824, this createmany would hang
1034     createmany -o $DIR/$tfile 20 || return 3
1035     unlinkmany $DIR/$tfile 20 || return 4
1036
1037     do_facet ost1 "lctl set_param fail_loc=0"
1038     return 0
1039 }
1040 run_test 47 "MDS->OSC failure during precreate cleanup (2824)"
1041
1042 test_48() {
1043     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1044     [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1045
1046     replay_barrier $SINGLEMDS
1047     createmany -o $DIR/$tfile 20  || return 1
1048     # OBD_FAIL_OST_EROFS 0x216
1049     facet_failover $SINGLEMDS
1050     do_facet ost1 "lctl set_param fail_loc=0x80000216"
1051     client_up || return 2
1052
1053     createmany -o $DIR/$tfile 20 20 || return 2
1054     unlinkmany $DIR/$tfile 40 || return 3
1055     return 0
1056 }
1057 run_test 48 "MDS->OSC failure during precreate cleanup (2824)"
1058
1059 test_50() {
1060     local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $ost1_svc) 
1061     local oscdev=$(do_facet $SINGLEMDS "lctl get_param -n devices" | \
1062         grep $mdtosc | awk '{print $1}')
1063     [ "$oscdev" ] || return 1
1064     do_facet $SINGLEMDS $LCTL --device $oscdev recover || return 2
1065     do_facet $SINGLEMDS $LCTL --device $oscdev recover || return 3
1066     # give the mds_lov_sync threads a chance to run
1067     sleep 5
1068 }
1069 run_test 50 "Double OSC recovery, don't LASSERT (3812)"
1070
1071 # b3764 timed out lock replay
1072 test_52() {
1073     touch $DIR/$tfile
1074     cancel_lru_locks mdc
1075
1076     multiop $DIR/$tfile s || return 1
1077     replay_barrier $SINGLEMDS
1078 #define OBD_FAIL_LDLM_REPLY              0x30c
1079     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000030c"
1080     fail $SINGLEMDS || return 2
1081     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1082
1083     $CHECKSTAT -t file $DIR/$tfile-* && return 3 || true
1084 }
1085 run_test 52 "time out lock replay (3764)"
1086
1087 # bug 3462 - simultaneous MDC requests
1088 test_53a() {
1089         cancel_lru_locks mdc    # cleanup locks from former test cases
1090         mkdir -p $DIR/${tdir}-1
1091         mkdir -p $DIR/${tdir}-2
1092         multiop $DIR/${tdir}-1/f O_c &
1093         close_pid=$!
1094         # give multiop a change to open
1095         sleep 1
1096
1097         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1098         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1099         kill -USR1 $close_pid
1100         cancel_lru_locks mdc    # force the close
1101         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1102
1103         mcreate $DIR/${tdir}-2/f || return 1
1104
1105         # close should still be here
1106         [ -d /proc/$close_pid ] || return 2
1107
1108         replay_barrier_nodf $SINGLEMDS
1109         fail $SINGLEMDS
1110         wait $close_pid || return 3
1111
1112         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1113         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1114         rm -rf $DIR/${tdir}-*
1115 }
1116 run_test 53a "|X| close request while two MDC requests in flight"
1117
1118 test_53b() {
1119         cancel_lru_locks mdc    # cleanup locks from former test cases
1120         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1121
1122         mkdir -p $DIR/${tdir}-1
1123         mkdir -p $DIR/${tdir}-2
1124         multiop_bg_pause $DIR/${tdir}-1/f O_c || return 6
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         cancel_lru_locks mdc    # cleanup locks from former test cases
1152         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1153
1154         mkdir -p $DIR/${tdir}-1
1155         mkdir -p $DIR/${tdir}-2
1156         multiop $DIR/${tdir}-1/f O_c &
1157         close_pid=$!
1158
1159         #define OBD_FAIL_MDS_REINT_NET 0x107
1160         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1161         mcreate $DIR/${tdir}-2/f &
1162         open_pid=$!
1163         sleep 1
1164
1165         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1166         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1167         kill -USR1 $close_pid
1168         cancel_lru_locks mdc    # force the close
1169
1170         #bz20647: make sure all pids are exists before failover
1171         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1172         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1173         replay_barrier_nodf $SINGLEMDS
1174         fail_nodf $SINGLEMDS
1175         wait $open_pid || return 1
1176         sleep 2
1177         # close should be gone
1178         [ -d /proc/$close_pid ] && return 2
1179         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1180
1181         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1182         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1183         rm -rf $DIR/${tdir}-*
1184 }
1185 run_test 53c "|X| open request and close request while two MDC requests in flight"
1186
1187 test_53d() {
1188         cancel_lru_locks mdc    # cleanup locks from former test cases
1189         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1190
1191         mkdir -p $DIR/${tdir}-1
1192         mkdir -p $DIR/${tdir}-2
1193         multiop $DIR/${tdir}-1/f O_c &
1194         close_pid=$!
1195         # give multiop a chance to open
1196         sleep 1
1197
1198         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1199         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1200         kill -USR1 $close_pid
1201         cancel_lru_locks mdc    # force the close
1202         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1203         mcreate $DIR/${tdir}-2/f || return 1
1204
1205         # close should still be here
1206         [ -d /proc/$close_pid ] || return 2
1207         fail $SINGLEMDS
1208         wait $close_pid || return 3
1209
1210         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1211         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1212         rm -rf $DIR/${tdir}-*
1213 }
1214 run_test 53d "|X| close reply while two MDC requests in flight"
1215
1216 test_53e() {
1217         cancel_lru_locks mdc    # cleanup locks from former test cases
1218         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1219
1220         mkdir -p $DIR/${tdir}-1
1221         mkdir -p $DIR/${tdir}-2
1222         multiop $DIR/${tdir}-1/f O_c &
1223         close_pid=$!
1224
1225         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1226         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1227         mcreate $DIR/${tdir}-2/f &
1228         open_pid=$!
1229         sleep 1
1230
1231         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1232         kill -USR1 $close_pid
1233         cancel_lru_locks mdc    # force the close
1234         wait $close_pid || return 1
1235         # open should still be here
1236         [ -d /proc/$open_pid ] || return 2
1237
1238         replay_barrier_nodf $SINGLEMDS
1239         fail $SINGLEMDS
1240         wait $open_pid || return 3
1241
1242         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 4
1243         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 5
1244         rm -rf $DIR/${tdir}-*
1245 }
1246 run_test 53e "|X| open reply while two MDC requests in flight"
1247
1248 test_53f() {
1249         cancel_lru_locks mdc    # cleanup locks from former test cases
1250         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1251
1252         mkdir -p $DIR/${tdir}-1
1253         mkdir -p $DIR/${tdir}-2
1254         multiop $DIR/${tdir}-1/f O_c &
1255         close_pid=$!
1256
1257         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1258         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1259         mcreate $DIR/${tdir}-2/f &
1260         open_pid=$!
1261         sleep 1
1262
1263         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1264         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1265         kill -USR1 $close_pid
1266         cancel_lru_locks mdc    # force the close
1267
1268         #bz20647: make sure all pids are exists before failover
1269         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1270         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1271         replay_barrier_nodf $SINGLEMDS
1272         fail_nodf $SINGLEMDS
1273         wait $open_pid || return 1
1274         sleep 2
1275         # close should be gone
1276         [ -d /proc/$close_pid ] && return 2
1277         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1278
1279         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1280         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1281         rm -rf $DIR/${tdir}-*
1282 }
1283 run_test 53f "|X| open reply and close reply while two MDC requests in flight"
1284
1285 test_53g() {
1286         cancel_lru_locks mdc    # cleanup locks from former test cases
1287         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1288
1289         mkdir -p $DIR/${tdir}-1
1290         mkdir -p $DIR/${tdir}-2
1291         multiop $DIR/${tdir}-1/f O_c &
1292         close_pid=$!
1293
1294         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1295         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1296         mcreate $DIR/${tdir}-2/f &
1297         open_pid=$!
1298         sleep 1
1299
1300         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1301         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1302         kill -USR1 $close_pid
1303         cancel_lru_locks mdc    # force the close
1304         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1305
1306         #bz20647: make sure all pids are exists before failover
1307         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1308         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1309         replay_barrier_nodf $SINGLEMDS
1310         fail_nodf $SINGLEMDS
1311         wait $open_pid || return 1
1312         sleep 2
1313         # close should be gone
1314         [ -d /proc/$close_pid ] && return 2
1315
1316         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1317         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1318         rm -rf $DIR/${tdir}-*
1319 }
1320 run_test 53g "|X| drop open reply and close request while close and open are both in flight"
1321
1322 test_53h() {
1323         cancel_lru_locks mdc    # cleanup locks from former test cases
1324         rm -rf $DIR/${tdir}-1 $DIR/${tdir}-2
1325
1326         mkdir -p $DIR/${tdir}-1
1327         mkdir -p $DIR/${tdir}-2
1328         multiop $DIR/${tdir}-1/f O_c &
1329         close_pid=$!
1330
1331         #define OBD_FAIL_MDS_REINT_NET 0x107
1332         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1333         mcreate $DIR/${tdir}-2/f &
1334         open_pid=$!
1335         sleep 1
1336
1337         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1338         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1339         kill -USR1 $close_pid
1340         cancel_lru_locks mdc    # force the close
1341         sleep 1
1342
1343         #bz20647: make sure all pids are exists before failover
1344         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1345         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1346         replay_barrier_nodf $SINGLEMDS
1347         fail_nodf $SINGLEMDS
1348         wait $open_pid || return 1
1349         sleep 2
1350         # close should be gone
1351         [ -d /proc/$close_pid ] && return 2
1352         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1353
1354         $CHECKSTAT -t file $DIR/${tdir}-1/f || return 3
1355         $CHECKSTAT -t file $DIR/${tdir}-2/f || return 4
1356         rm -rf $DIR/${tdir}-*
1357 }
1358 run_test 53h "|X| open request and close reply while two MDC requests in flight"
1359
1360 #b_cray 54 "|X| open request and close reply while two MDC requests in flight"
1361
1362 #b3761 ASSERTION(hash != 0) failed
1363 test_55() {
1364 # OBD_FAIL_MDS_OPEN_CREATE | OBD_FAIL_ONCE
1365     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012b"
1366     touch $DIR/$tfile &
1367     # give touch a chance to run
1368     sleep 5
1369     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1370     rm $DIR/$tfile
1371     return 0
1372 }
1373 run_test 55 "let MDS_CHECK_RESENT return the original return code instead of 0"
1374
1375 #b3440 ASSERTION(rec->ur_fid2->id) failed
1376 test_56() {
1377     ln -s foo $DIR/$tfile
1378     replay_barrier $SINGLEMDS
1379     #drop_reply "cat $DIR/$tfile"
1380     fail $SINGLEMDS
1381     sleep 10
1382 }
1383 run_test 56 "don't replay a symlink open request (3440)"
1384
1385 #recovery one mds-ost setattr from llog
1386 test_57() {
1387 #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1388     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1389     touch $DIR/$tfile
1390     replay_barrier $SINGLEMDS
1391     fail $SINGLEMDS
1392     sleep 1
1393     $CHECKSTAT -t file $DIR/$tfile || return 1
1394     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1395     rm $DIR/$tfile
1396 }
1397 run_test 57 "test recovery from llog for setattr op"
1398
1399 cleanup_58() {
1400     zconf_umount `hostname` $MOUNT2
1401     trap - EXIT
1402 }
1403
1404 #recovery many mds-ost setattr from llog
1405 test_58a() {
1406     mkdir -p $DIR/$tdir
1407 #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1408     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1409     createmany -o $DIR/$tdir/$tfile-%d 2500
1410     replay_barrier $SINGLEMDS
1411     fail $SINGLEMDS
1412     sleep 2
1413     $CHECKSTAT -t file $DIR/$tdir/$tfile-* >/dev/null || return 1
1414     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1415     unlinkmany $DIR/$tdir/$tfile-%d 2500
1416     rmdir $DIR/$tdir
1417 }
1418 run_test 58a "test recovery from llog for setattr op (test llog_gen_rec)"
1419
1420 test_58b() {
1421     local orig
1422     local new
1423
1424     trap cleanup_58 EXIT
1425
1426     large_xattr_enabled &&
1427         orig="$(generate_string $(max_xattr_size))" || orig="bar"
1428
1429     mount_client $MOUNT2
1430     mkdir -p $DIR/$tdir
1431     touch $DIR/$tdir/$tfile
1432     replay_barrier $SINGLEMDS
1433     setfattr -n trusted.foo -v $orig $DIR/$tdir/$tfile
1434     fail $SINGLEMDS
1435     new=$(get_xattr_value trusted.foo $MOUNT2/$tdir/$tfile)
1436     [[ "$new" = "$orig" ]] || return 1
1437     rm -f $DIR/$tdir/$tfile
1438     rmdir $DIR/$tdir
1439     cleanup_58
1440 }
1441 run_test 58b "test replay of setxattr op"
1442
1443 test_58c() { # bug 16570
1444     local orig
1445     local orig1
1446     local new
1447
1448     trap cleanup_58 EXIT
1449
1450     if large_xattr_enabled; then
1451         local xattr_size=$(max_xattr_size)
1452         orig="$(generate_string $((xattr_size / 2)))"
1453         orig1="$(generate_string $xattr_size)"
1454     else
1455         orig="bar"
1456         orig1="bar1"
1457     fi
1458
1459     mount_client $MOUNT2
1460     mkdir -p $DIR/$tdir
1461     touch $DIR/$tdir/$tfile
1462     drop_request "setfattr -n trusted.foo -v $orig $DIR/$tdir/$tfile" ||
1463         return 1
1464     new=$(get_xattr_value trusted.foo $MOUNT2/$tdir/$tfile)
1465     [[ "$new" = "$orig" ]] || return 2
1466     drop_reint_reply "setfattr -n trusted.foo1 -v $orig1 $DIR/$tdir/$tfile" ||
1467         return 3
1468     new=$(get_xattr_value trusted.foo1 $MOUNT2/$tdir/$tfile)
1469     [[ "$new" = "$orig1" ]] || return 4
1470     rm -f $DIR/$tdir/$tfile
1471     rmdir $DIR/$tdir
1472     cleanup_58
1473 }
1474 run_test 58c "resend/reconstruct setxattr op"
1475
1476 # log_commit_thread vs filter_destroy race used to lead to import use after free
1477 # bug 11658
1478 test_59() {
1479     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1480
1481     mkdir -p $DIR/$tdir
1482     createmany -o $DIR/$tdir/$tfile-%d 200
1483     sync
1484     unlinkmany $DIR/$tdir/$tfile-%d 200
1485 #define OBD_FAIL_PTLRPC_DELAY_RECOV       0x507
1486     do_facet ost1 "lctl set_param fail_loc=0x507"
1487     fail ost1
1488     fail $SINGLEMDS
1489     do_facet ost1 "lctl set_param fail_loc=0x0"
1490     sleep 20
1491     rmdir $DIR/$tdir
1492 }
1493 run_test 59 "test log_commit_thread vs filter_destroy race"
1494
1495 # race between add unlink llog vs cat log init in post_recovery (only for b1_6)
1496 # bug 12086: should no oops and No ctxt error for this test
1497 test_60() {
1498     mkdir -p $DIR/$tdir
1499     createmany -o $DIR/$tdir/$tfile-%d 200
1500     replay_barrier $SINGLEMDS
1501     unlinkmany $DIR/$tdir/$tfile-%d 0 100
1502     fail $SINGLEMDS
1503     unlinkmany $DIR/$tdir/$tfile-%d 100 100
1504     local no_ctxt=`dmesg | grep "No ctxt"`
1505     [ -z "$no_ctxt" ] || error "ctxt is not initialized in recovery"
1506 }
1507 run_test 60 "test llog post recovery init vs llog unlink"
1508
1509 #test race  llog recovery thread vs llog cleanup
1510 test_61a() {    # was test_61
1511     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1512
1513     mkdir -p $DIR/$tdir
1514     createmany -o $DIR/$tdir/$tfile-%d 800
1515     replay_barrier ost1
1516 #   OBD_FAIL_OST_LLOG_RECOVERY_TIMEOUT 0x221
1517     unlinkmany $DIR/$tdir/$tfile-%d 800
1518     set_nodes_failloc "$(osts_nodes)" 0x80000221
1519     facet_failover ost1
1520     sleep 10
1521     fail ost1
1522     sleep 30
1523     set_nodes_failloc "$(osts_nodes)" 0x0
1524
1525     $CHECKSTAT -t file $DIR/$tdir/$tfile-* && return 1
1526     rmdir $DIR/$tdir
1527 }
1528 run_test 61a "test race llog recovery vs llog cleanup"
1529
1530 #test race  mds llog sync vs llog cleanup
1531 test_61b() {
1532 #   OBD_FAIL_MDS_LLOG_SYNC_TIMEOUT 0x13a
1533     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013a"
1534     facet_failover $SINGLEMDS
1535     sleep 10
1536     fail $SINGLEMDS
1537     do_facet client dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 || return 1
1538 }
1539 run_test 61b "test race mds llog sync vs llog cleanup"
1540
1541 #test race  cancel cookie cb vs llog cleanup
1542 test_61c() {
1543     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1544
1545 #   OBD_FAIL_OST_CANCEL_COOKIE_TIMEOUT 0x222
1546     touch $DIR/$tfile
1547     set_nodes_failloc "$(osts_nodes)" 0x80000222
1548     rm $DIR/$tfile
1549     sleep 10
1550     fail ost1
1551     set_nodes_failloc "$(osts_nodes)" 0x0
1552 }
1553 run_test 61c "test race mds llog sync vs llog cleanup"
1554
1555 test_61d() { # bug 16002 # bug 17466 # bug 22137
1556 #   OBD_FAIL_OBD_LLOG_SETUP        0x605
1557     stop mgs
1558     do_facet mgs "lctl set_param fail_loc=0x80000605"
1559     start mgs $MGSDEV $MGS_MOUNT_OPTS && error "mgs start should have failed"
1560     do_facet mgs "lctl set_param fail_loc=0"
1561     start mgs $MGSDEV $MGS_MOUNT_OPTS || error "cannot restart mgs"
1562 }
1563 run_test 61d "error in llog_setup should cleanup the llog context correctly"
1564
1565 test_62() { # Bug 15756 - don't mis-drop resent replay
1566     mkdir -p $DIR/$tdir
1567     replay_barrier $SINGLEMDS
1568     createmany -o $DIR/$tdir/$tfile- 25
1569 #define OBD_FAIL_TGT_REPLAY_DROP         0x707
1570     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000707"
1571     fail $SINGLEMDS
1572     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1573     unlinkmany $DIR/$tdir/$tfile- 25 || return 2
1574     return 0
1575 }
1576 run_test 62 "don't mis-drop resent replay"
1577
1578 #Adaptive Timeouts (bug 3055)
1579 AT_MAX_SET=0
1580
1581 at_cleanup () {
1582     local var
1583     local facet
1584     local at_new
1585
1586     echo "Cleaning up AT ..."
1587     if [ -n "$ATOLDBASE" ]; then
1588         local at_history=$($LCTL get_param -n at_history)
1589         do_facet $SINGLEMDS "lctl set_param at_history=$at_history" || true
1590         do_facet ost1 "lctl set_param at_history=$at_history" || true
1591     fi
1592
1593     if [ $AT_MAX_SET -ne 0 ]; then
1594         for facet in mds client ost; do
1595             var=AT_MAX_SAVE_${facet}
1596             echo restore AT on $facet to saved value ${!var}
1597             at_max_set ${!var} $facet
1598             at_new=$(at_max_get $facet)
1599             echo Restored AT value on $facet $at_new
1600             [ $at_new -eq ${!var} ] || \
1601             error "$facet : AT value was not restored SAVED ${!var} NEW $at_new"
1602         done
1603     fi
1604 }
1605
1606 at_start()
1607 {
1608     local at_max_new=600
1609
1610     # Save at_max original values
1611     local facet
1612     if [ $AT_MAX_SET -eq 0 ]; then
1613         # Suppose that all osts have the same at_max
1614         for facet in mds client ost; do
1615             eval AT_MAX_SAVE_${facet}=$(at_max_get $facet)
1616         done
1617     fi
1618     local at_max
1619     for facet in mds client ost; do
1620         at_max=$(at_max_get $facet)
1621         if [ $at_max -ne $at_max_new ]; then
1622             echo "AT value on $facet is $at_max, set it by force temporarily to $at_max_new"
1623             at_max_set $at_max_new $facet
1624             AT_MAX_SET=1
1625         fi
1626     done
1627
1628     if [ -z "$ATOLDBASE" ]; then
1629         ATOLDBASE=$(do_facet $SINGLEMDS "lctl get_param -n at_history")
1630         # speed up the timebase so we can check decreasing AT
1631         do_facet $SINGLEMDS "lctl set_param at_history=8" || true
1632         do_facet ost1 "lctl set_param at_history=8" || true
1633
1634         # sleep for a while to cool down, should be > 8s and also allow
1635         # at least one ping to be sent. simply use TIMEOUT to be safe.
1636         sleep $TIMEOUT
1637     fi
1638 }
1639
1640 test_65a() #bug 3055
1641 {
1642     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1643
1644     at_start || return 0
1645     $LCTL dk > /dev/null
1646     debugsave
1647     $LCTL set_param debug="other"
1648     # Slow down a request to the current service time, this is critical
1649     # because previous tests may have caused this value to increase.
1650     REQ_DELAY=`lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts |
1651                awk '/portal 12/ {print $5}'`
1652     REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1653
1654     do_facet $SINGLEMDS lctl set_param fail_val=$((${REQ_DELAY} * 1000))
1655 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1656     do_facet $SINGLEMDS $LCTL set_param fail_loc=0x8000050a
1657     createmany -o $DIR/$tfile 10 > /dev/null
1658     unlinkmany $DIR/$tfile 10 > /dev/null
1659     # check for log message
1660     $LCTL dk | grep "Early reply #" || error "No early reply"
1661     debugrestore
1662     # client should show REQ_DELAY estimates
1663     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1664     sleep 9
1665     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1666 }
1667 run_test 65a "AT: verify early replies"
1668
1669 test_65b() #bug 3055
1670 {
1671     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1672
1673     at_start || return 0
1674     # turn on D_ADAPTTO
1675     debugsave
1676     $LCTL set_param debug="other trace"
1677     $LCTL dk > /dev/null
1678     # Slow down a request to the current service time, this is critical
1679     # because previous tests may have caused this value to increase.
1680     $SETSTRIPE --stripe-index=0 --count=1 $DIR/$tfile
1681     multiop $DIR/$tfile Ow1yc
1682     REQ_DELAY=`lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts |
1683                awk '/portal 6/ {print $5}'`
1684     REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1685
1686     do_facet ost1 lctl set_param fail_val=${REQ_DELAY}
1687 #define OBD_FAIL_OST_BRW_PAUSE_PACK      0x224
1688     do_facet ost1 $LCTL set_param fail_loc=0x224
1689
1690     rm -f $DIR/$tfile
1691     $SETSTRIPE --stripe-index=0 --count=1 $DIR/$tfile
1692     # force some real bulk transfer
1693     multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
1694
1695     do_facet ost1 $LCTL set_param fail_loc=0
1696     # check for log message
1697     $LCTL dk | grep "Early reply #" || error "No early reply"
1698     debugrestore
1699     # client should show REQ_DELAY estimates
1700     lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts | grep portal
1701 }
1702 run_test 65b "AT: verify early replies on packed reply / bulk"
1703
1704 test_66a() #bug 3055
1705 {
1706     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1707
1708     at_start || return 0
1709     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1710     # adjust 5s at a time so no early reply is sent (within deadline)
1711     do_facet $SINGLEMDS "$LCTL set_param fail_val=5000"
1712 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1713     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x8000050a"
1714     createmany -o $DIR/$tfile 20 > /dev/null
1715     unlinkmany $DIR/$tfile 20 > /dev/null
1716     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1717     do_facet $SINGLEMDS "$LCTL set_param fail_val=10000"
1718     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x8000050a"
1719     createmany -o $DIR/$tfile 20 > /dev/null
1720     unlinkmany $DIR/$tfile 20 > /dev/null
1721     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1722     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
1723     sleep 9
1724     createmany -o $DIR/$tfile 20 > /dev/null
1725     unlinkmany $DIR/$tfile 20 > /dev/null
1726     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1727     CUR=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $5}')
1728     WORST=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $7}')
1729     echo "Current MDT timeout $CUR, worst $WORST"
1730     [ $CUR -lt $WORST ] || error "Current $CUR should be less than worst $WORST"
1731 }
1732 run_test 66a "AT: verify MDT service time adjusts with no early replies"
1733
1734 test_66b() #bug 3055
1735 {
1736         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1737
1738         at_start || return 0
1739         ORIG=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1740                         awk '/network/ {print $4}')
1741         $LCTL set_param fail_val=$(($ORIG + 5))
1742         #define OBD_FAIL_PTLRPC_PAUSE_REP      0x50c
1743         $LCTL set_param fail_loc=0x50c
1744         ls $DIR/$tfile > /dev/null 2>&1
1745         $LCTL set_param fail_loc=0
1746         CUR=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1747                                 awk '/network/ {print $4}')
1748         WORST=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1749                                 awk '/network/ {print $6}')
1750         echo "network timeout orig $ORIG, cur $CUR, worst $WORST"
1751         [ $WORST -gt $ORIG ] ||
1752                 error "Worst $WORST should be worse than orig $ORIG"
1753 }
1754 run_test 66b "AT: verify net latency adjusts"
1755
1756 test_67a() #bug 3055
1757 {
1758     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1759
1760     at_start || return 0
1761     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1762     # sleeping threads may drive values above this
1763     do_facet ost1 "$LCTL set_param fail_val=400"
1764 #define OBD_FAIL_PTLRPC_PAUSE_REQ    0x50a
1765     do_facet ost1 "$LCTL set_param fail_loc=0x50a"
1766     createmany -o $DIR/$tfile 20 > /dev/null
1767     unlinkmany $DIR/$tfile 20 > /dev/null
1768     do_facet ost1 "$LCTL set_param fail_loc=0"
1769     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1770     ATTEMPTS=$(($CONN2 - $CONN1))
1771     echo "$ATTEMPTS osc reconnect attempts on gradual slow"
1772     [ $ATTEMPTS -gt 0 ] && error_ignore 13721 "AT should have prevented reconnect"
1773     return 0
1774 }
1775 run_test 67a "AT: verify slow request processing doesn't induce reconnects"
1776
1777 test_67b() #bug 3055
1778 {
1779     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1780
1781     at_start || return 0
1782     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1783
1784     # exhaust precreations on ost1
1785     local OST=$(ostname_from_index 0)
1786     local mdtosc=$(get_mdtosc_proc_path mds $OST)
1787     local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1788         osc.$mdtosc.prealloc_last_id)
1789     local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1790         osc.$mdtosc.prealloc_next_id)
1791
1792     mkdir -p $DIR/$tdir/${OST}
1793     $SETSTRIPE -i 0 -c 1 $DIR/$tdir/${OST} || error "$SETSTRIPE"
1794     echo "Creating to objid $last_id on ost $OST..."
1795 #define OBD_FAIL_OST_PAUSE_CREATE        0x223
1796     do_facet ost1 "$LCTL set_param fail_val=20000"
1797     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1798     createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1799
1800     client_reconnect
1801     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1802     log "phase 2"
1803     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1804     ATTEMPTS=$(($CONN2 - $CONN1))
1805     echo "$ATTEMPTS osc reconnect attempts on instant slow"
1806     # do it again; should not timeout
1807     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1808     cp /etc/profile $DIR/$tfile || error "cp failed"
1809     do_facet ost1 "$LCTL set_param fail_loc=0"
1810     client_reconnect
1811     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1812     CONN3=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1813     ATTEMPTS=$(($CONN3 - $CONN2))
1814     echo "$ATTEMPTS osc reconnect attempts on 2nd slow"
1815     [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
1816     return 0
1817 }
1818 run_test 67b "AT: verify instant slowdown doesn't induce reconnects"
1819
1820 test_68 () #bug 13813
1821 {
1822     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1823
1824     at_start || return 0
1825     local ldlm_enqueue_min=$(find /sys -name ldlm_enqueue_min)
1826     [ -z "$ldlm_enqueue_min" ] && skip "missing /sys/.../ldlm_enqueue_min" && return 0
1827     local ldlm_enqueue_min_r=$(do_facet ost1 "find /sys -name ldlm_enqueue_min")
1828     [ -z "$ldlm_enqueue_min_r" ] && skip "missing /sys/.../ldlm_enqueue_min in the ost1" && return 0
1829     local ENQ_MIN=$(cat $ldlm_enqueue_min)
1830     local ENQ_MIN_R=$(do_facet ost1 "cat $ldlm_enqueue_min_r")
1831     echo $TIMEOUT >> $ldlm_enqueue_min
1832     do_facet ost1 "echo $TIMEOUT >> $ldlm_enqueue_min_r"
1833
1834     rm -rf $DIR/$tdir
1835     mkdir -p $DIR/$tdir
1836     $SETSTRIPE --stripe-index=0 --count=1 $DIR/$tdir
1837 #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
1838     $LCTL set_param fail_val=$(($TIMEOUT - 1))
1839     $LCTL set_param fail_loc=0x80000312
1840     cp /etc/profile $DIR/$tdir/${tfile}_1 || error "1st cp failed $?"
1841     $LCTL set_param fail_val=$((TIMEOUT * 5 / 4))
1842     $LCTL set_param fail_loc=0x80000312
1843     cp /etc/profile $DIR/$tdir/${tfile}_2 || error "2nd cp failed $?"
1844     $LCTL set_param fail_loc=0
1845
1846     echo $ENQ_MIN >> $ldlm_enqueue_min
1847     do_facet ost1 "echo $ENQ_MIN_R >> $ldlm_enqueue_min_r"
1848     rm -rf $DIR/$tdir
1849     return 0
1850 }
1851 run_test 68 "AT: verify slowing locks"
1852
1853 at_cleanup
1854 # end of AT tests includes above lines
1855
1856
1857 # start multi-client tests
1858 test_70a () {
1859         [ -z "$CLIENTS" ] && \
1860                 { skip "Need two or more clients." && return; }
1861         [ $CLIENTCOUNT -lt 2 ] && \
1862                 { skip "Need two or more clients, have $CLIENTCOUNT" && return; }
1863
1864         echo "mount clients $CLIENTS ..."
1865         zconf_mount_clients $CLIENTS $MOUNT
1866
1867         local clients=${CLIENTS//,/ }
1868         echo "Write/read files on $DIR ; clients $CLIENTS ... "
1869         for CLIENT in $clients; do
1870                 do_node $CLIENT dd bs=1M count=10 if=/dev/zero \
1871                         of=$DIR/${tfile}_${CLIENT} 2>/dev/null || \
1872                                 error "dd failed on $CLIENT"
1873         done
1874
1875         local prev_client=$(echo $clients | sed 's/^.* \(.\+\)$/\1/')
1876         for C in ${CLIENTS//,/ }; do
1877                 do_node $prev_client dd if=$DIR/${tfile}_${C} of=/dev/null 2>/dev/null || \
1878                         error "dd if=$DIR/${tfile}_${C} failed on $prev_client"
1879                 prev_client=$C
1880         done
1881         
1882         ls $DIR
1883 }
1884 run_test 70a "check multi client t-f"
1885
1886 check_for_process () {
1887         local clients=$1
1888         shift
1889         local prog=$@
1890
1891         killall_process $clients "$prog" -0
1892 }
1893
1894 killall_process () {
1895         local clients=${1:-$(hostname)}
1896         local name=$2
1897         local signal=$3
1898         local rc=0
1899
1900         do_nodes $clients "killall $signal $name"
1901 }
1902
1903 test_70b () {
1904         local clients=${CLIENTS:-$HOSTNAME}
1905
1906         zconf_mount_clients $clients $MOUNT
1907
1908         local duration=300
1909         [ "$SLOW" = "no" ] && duration=120
1910         # set duration to 900 because it takes some time to boot node
1911         [ "$FAILURE_MODE" = HARD ] && duration=900
1912
1913         local elapsed
1914         local start_ts=$(date +%s)
1915         local cmd="rundbench 1 -t $duration"
1916         local pid=""
1917         do_nodesv $clients "set -x; MISSING_DBENCH_OK=$MISSING_DBENCH_OK \
1918                 PATH=\$PATH:$LUSTRE/utils:$LUSTRE/tests/:$DBENCH_LIB \
1919                 DBENCH_LIB=$DBENCH_LIB TESTSUITE=$TESTSUITE TESTNAME=$TESTNAME \
1920                 MOUNT=$MOUNT DIR=$DIR/$tdir/\\\$(hostname) LCTL=$LCTL $cmd" &
1921         pid=$!
1922
1923         #LU-1897 wait for all dbench copies to start
1924         while ! check_for_process $clients dbench; do
1925                 elapsed=$(($(date +%s) - start_ts))
1926                 if [ $elapsed -gt $duration ]; then
1927                         killall_process $clients dbench
1928                         error "dbench failed to start on $clients!"
1929                 fi
1930                 sleep 1
1931         done
1932
1933         log "Started rundbench load pid=$pid ..."
1934
1935         elapsed=$(($(date +%s) - start_ts))
1936         local num_failovers=0
1937         while [ $elapsed -lt $duration ]; do
1938                 if ! check_for_process $clients dbench; then
1939                         error_noexit "dbench stopped on some of $clients!"
1940                         killall_process $clients dbench
1941                         break
1942                 fi
1943                 sleep 1
1944                 replay_barrier $SINGLEMDS
1945                 sleep 1 # give clients a time to do operations
1946                 # Increment the number of failovers
1947                 num_failovers=$((num_failovers+1))
1948                 log "$TESTNAME fail $SINGLEMDS $num_failovers times"
1949                 fail $SINGLEMDS
1950                 elapsed=$(($(date +%s) - start_ts))
1951         done
1952
1953         wait $pid || error "rundbench load on $clients failed!"
1954 }
1955 run_test 70b "mds recovery; $CLIENTCOUNT clients"
1956 # end multi-client tests
1957
1958 test_73a() {
1959     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1960     pid=$!
1961     rm -f $DIR/$tfile
1962
1963     replay_barrier $SINGLEMDS
1964 #define OBD_FAIL_LDLM_ENQUEUE_NET                       0x302
1965     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000302"
1966     fail $SINGLEMDS
1967     kill -USR1 $pid
1968     wait $pid || return 1
1969     [ -e $DIR/$tfile ] && return 2
1970     return 0
1971 }
1972 run_test 73a "open(O_CREAT), unlink, replay, reconnect before open replay , close"
1973
1974 test_73b() {
1975     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1976     pid=$!
1977     rm -f $DIR/$tfile
1978
1979     replay_barrier $SINGLEMDS
1980 #define OBD_FAIL_LDLM_REPLY       0x30c
1981     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000030c"
1982     fail $SINGLEMDS
1983     kill -USR1 $pid
1984     wait $pid || return 1
1985     [ -e $DIR/$tfile ] && return 2
1986     return 0
1987 }
1988 run_test 73b "open(O_CREAT), unlink, replay, reconnect at open_replay reply, close"
1989
1990 test_73c() {
1991     multiop_bg_pause $DIR/$tfile O_tSc || return 3
1992     pid=$!
1993     rm -f $DIR/$tfile
1994
1995     replay_barrier $SINGLEMDS
1996 #define OBD_FAIL_TGT_LAST_REPLAY       0x710
1997     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000710"
1998     fail $SINGLEMDS
1999     kill -USR1 $pid
2000     wait $pid || return 1
2001     [ -e $DIR/$tfile ] && return 2
2002     return 0
2003 }
2004 run_test 73c "open(O_CREAT), unlink, replay, reconnect at last_replay, close"
2005
2006 # bug 18554
2007 test_74() {
2008     local clients=${CLIENTS:-$HOSTNAME}
2009
2010     zconf_umount_clients $clients $MOUNT
2011     stop ost1
2012     facet_failover $SINGLEMDS
2013     zconf_mount_clients $clients $MOUNT
2014     mount_facet ost1
2015     touch $DIR/$tfile || return 1
2016     rm $DIR/$tfile || return 2
2017     clients_up || error "client evicted: $?"
2018     return 0
2019 }
2020 run_test 74 "Ensure applications don't fail waiting for OST recovery"
2021
2022 remote_dir_check_80() {
2023         local MDTIDX=1
2024         local diridx=$($GETSTRIPE -M $remote_dir)
2025         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
2026
2027         createmany -o $remote_dir/f-%d 20 || error "creation failed"
2028         local fileidx=$($GETSTRIPE -M $remote_dir/f-1)
2029         [ $fileidx -eq $MDTIDX ] || error "$fileidx != $MDTIDX"
2030
2031         return 0
2032 }
2033
2034 test_80a() {
2035         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2036         ([ $FAILURE_MODE == "HARD" ] &&
2037                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2038                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2039                 return 0
2040
2041         local MDTIDX=1
2042         local remote_dir=$DIR/$tdir/remote_dir
2043
2044         mkdir -p $DIR/$tdir
2045         #define OBD_FAIL_UPDATE_OBJ_NET_REP     0x1701
2046         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x1701
2047         $LFS mkdir -i $MDTIDX $remote_dir &
2048         local CLIENT_PID=$!
2049
2050         fail mds$((MDTIDX + 1))
2051
2052         wait $CLIENT_PID || error "remote creation failed"
2053
2054         remote_dir_check_80 || error "remote dir check failed"
2055         rm -rf $DIR/$tdir || error "rmdir failed"
2056
2057         return 0
2058 }
2059 run_test 80a "DNE: create remote dir, drop update rep from MDT1, fail MDT1"
2060
2061 test_80b() {
2062         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2063         ([ $FAILURE_MODE == "HARD" ] &&
2064                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2065                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2066                 return 0
2067
2068         local MDTIDX=1
2069         local remote_dir=$DIR/$tdir/remote_dir
2070
2071         mkdir -p $DIR/$tdir
2072         #define OBD_FAIL_UPDATE_OBJ_NET_REP     0x1701
2073         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x1701
2074         $LFS mkdir -i $MDTIDX $remote_dir &
2075         local CLIENT_PID=$!
2076
2077         fail mds${MDTIDX}
2078
2079         wait $CLIENT_PID || error "remote creation failed"
2080
2081         remote_dir_check_80 || error "remote dir check failed"
2082         rm -rf $DIR/$tdir || error "rmdir failed"
2083
2084         return 0
2085 }
2086 run_test 80b "DNE: create remote dir, drop update rep from MDT1, fail MDT0"
2087
2088 test_80c() {
2089         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2090         ([ $FAILURE_MODE == "HARD" ] &&
2091                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2092                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2093                 return 0
2094
2095         local MDTIDX=1
2096         local remote_dir=$DIR/$tdir/remote_dir
2097
2098         mkdir -p $DIR/$tdir
2099         #define OBD_FAIL_UPDATE_OBJ_NET_REP     0x1701
2100         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x1701
2101         $LFS mkdir -i $MDTIDX $remote_dir &
2102         local CLIENT_PID=$!
2103
2104         fail mds${MDTIDX}
2105         fail mds$((MDTIDX + 1))
2106
2107         wait $CLIENT_PID || error "remote creation failed"
2108
2109         remote_dir_check_80 || error "remote dir check failed"
2110         rm -rf $DIR/$tdir || error "rmdir failed"
2111
2112         return 0
2113 }
2114 run_test 80c "DNE: create remote dir, drop update rep from MDT1, fail MDT[0,1]"
2115
2116 test_80d() {
2117         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2118         local MDTIDX=1
2119         local remote_dir=$DIR/$tdir/remote_dir
2120
2121         mkdir -p $DIR/$tdir
2122         #define OBD_FAIL_UPDATE_OBJ_NET_REP     0x1701
2123         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x1701
2124         $LFS mkdir -i $MDTIDX $remote_dir &
2125         local CLIENT_PID=$!
2126
2127         fail mds${MDTIDX},mds$((MDTIDX + 1))
2128
2129         wait $CLIENT_PID || error "remote creation failed"
2130
2131         remote_dir_check_80 || error "remote dir check failed"
2132         rm -rf $DIR/$tdir || error "rmdir failed"
2133
2134         return 0
2135 }
2136 run_test 80d "DNE: create remote dir, drop update rep from MDT1, fail 2 MDTs"
2137
2138 test_80e() {
2139         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2140         ([ $FAILURE_MODE == "HARD" ] &&
2141                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2142                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2143                 return 0
2144
2145         local MDTIDX=1
2146         local remote_dir=$DIR/$tdir/remote_dir
2147
2148         mkdir -p $DIR/$tdir
2149         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2150         do_facet mds${MDTIDX} lctl set_param fail_loc=0x119
2151         $LFS mkdir -i $MDTIDX $remote_dir &
2152         local CLIENT_PID=$!
2153
2154         fail mds${MDTIDX}
2155
2156         wait $CLIENT_PID || error "remote creation failed"
2157
2158         remote_dir_check_80 || error "remote dir check failed"
2159         rm -rf $DIR/$tdir || error "rmdir failed"
2160
2161         return 0
2162 }
2163 run_test 80e "DNE: create remote dir, drop MDT0 rep, fail MDT0"
2164
2165 test_80f() {
2166         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2167         ([ $FAILURE_MODE == "HARD" ] &&
2168                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2169                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2170                 return 0
2171         local MDTIDX=1
2172         local remote_dir=$DIR/$tdir/remote_dir
2173
2174         mkdir -p $DIR/$tdir
2175         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2176         do_facet mds${MDTIDX} lctl set_param fail_loc=0x119
2177         $LFS mkdir -i $MDTIDX $remote_dir &
2178         local CLIENT_PID=$!
2179
2180         fail mds$((MDTIDX + 1))
2181
2182         wait $CLIENT_PID || error "remote creation failed"
2183
2184         remote_dir_check_80 || error "remote dir check failed"
2185         rm -rf $DIR/$tdir || error "rmdir failed"
2186
2187         return 0
2188 }
2189 run_test 80f "DNE: create remote dir, drop MDT0 rep, fail MDT1"
2190
2191 test_80g() {
2192         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2193         ([ $FAILURE_MODE == "HARD" ] &&
2194                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2195                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2196                 return 0
2197
2198         local MDTIDX=1
2199         local remote_dir=$DIR/$tdir/remote_dir
2200
2201         mkdir -p $DIR/$tdir
2202         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2203         do_facet mds${MDTIDX} lctl set_param fail_loc=0x119
2204         $LFS mkdir -i $MDTIDX $remote_dir &
2205         local CLIENT_PID=$!
2206
2207         fail mds${MDTIDX}
2208         fail mds$((MDTIDX + 1))
2209
2210         wait $CLIENT_PID || error "remote creation failed"
2211
2212         remote_dir_check_80 || error "remote dir check failed"
2213         rm -rf $DIR/$tdir || error "rmdir failed"
2214
2215         return 0
2216 }
2217 run_test 80g "DNE: create remote dir, drop MDT0 rep, fail MDT0, then MDT1"
2218
2219 test_80h() {
2220         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2221         local MDTIDX=1
2222         local remote_dir=$DIR/$tdir/remote_dir
2223
2224         mkdir -p $DIR/$tdir
2225         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2226         do_facet mds${MDTIDX} lctl set_param fail_loc=0x119
2227         $LFS mkdir -i $MDTIDX $remote_dir &
2228         local CLIENT_PID=$!
2229
2230         fail mds${MDTIDX},mds$((MDTIDX + 1))
2231
2232         wait $CLIENT_PID || return 1
2233
2234         remote_dir_check_80 || error "remote dir check failed"
2235         rm -rf $DIR/$tdir || error "rmdir failed"
2236
2237         return 0
2238 }
2239 run_test 80h "DNE: create remote dir, drop MDT0 rep, fail 2 MDTs"
2240
2241 test_81a() {
2242         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2243         ([ $FAILURE_MODE == "HARD" ] &&
2244                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2245                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2246                 return 0
2247
2248         local MDTIDX=1
2249         local remote_dir=$DIR/$tdir/remote_dir
2250
2251         mkdir -p $DIR/$tdir
2252         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2253
2254         touch $remote_dir
2255         # OBD_FAIL_OBJ_UPDATE_NET_REP       0x1701
2256         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2257         rmdir $remote_dir &
2258         local CLIENT_PID=$!
2259
2260         fail mds$((MDTIDX + 1))
2261
2262         wait $CLIENT_PID || error "rm remote dir failed"
2263
2264         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2265
2266         rm -rf $DIR/$tdir || error "rmdir failed"
2267
2268         return 0
2269 }
2270 run_test 81a "DNE: unlink remote dir, drop MDT0 update rep,  fail MDT1"
2271
2272 test_81b() {
2273         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2274         ([ $FAILURE_MODE == "HARD" ] &&
2275                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2276                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2277                 return 0
2278         local MDTIDX=1
2279         local remote_dir=$DIR/$tdir/remote_dir
2280
2281         mkdir -p $DIR/$tdir
2282         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2283
2284         # OBD_FAIL_OBJ_UPDATE_NET_REP       0x1701
2285         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2286         rmdir $remote_dir &
2287         local CLIENT_PID=$!
2288
2289         fail mds${MDTIDX}
2290
2291         wait $CLIENT_PID || error "rm remote dir failed"
2292
2293         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2294
2295         rm -rf $DIR/$tdir || error "rmdir failed"
2296
2297         return 0
2298 }
2299 run_test 81b "DNE: unlink remote dir, drop MDT0 update reply,  fail MDT0"
2300
2301 test_81c() {
2302         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2303         ([ $FAILURE_MODE == "HARD" ] &&
2304                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2305                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2306                 return 0
2307
2308         local MDTIDX=1
2309         local remote_dir=$DIR/$tdir/remote_dir
2310
2311         mkdir -p $DIR/$tdir
2312         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2313
2314         # OBD_FAIL_OBJ_UPDATE_NET_REP       0x1701
2315         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2316         rmdir $remote_dir &
2317         local CLIENT_PID=$!
2318
2319         fail mds${MDTIDX}
2320         fail mds$((MDTIDX + 1))
2321
2322         wait $CLIENT_PID || error "rm remote dir failed"
2323
2324         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2325
2326         rm -rf $DIR/$tdir || error "rmdir failed"
2327
2328         return 0
2329 }
2330 run_test 81c "DNE: unlink remote dir, drop MDT0 update reply, fail MDT0,MDT1"
2331
2332 test_81d() {
2333         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2334         local MDTIDX=1
2335         local remote_dir=$DIR/$tdir/remote_dir
2336
2337         mkdir -p $DIR/$tdir
2338         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2339
2340         # OBD_FAIL_OBJ_UPDATE_NET_REP       0x1701
2341         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2342         rmdir $remote_dir &
2343         local CLIENT_PID=$!
2344
2345         fail mds${MDTIDX},mds$((MDTIDX + 1))
2346
2347         wait $CLIENT_PID || error "rm remote dir failed"
2348
2349         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2350
2351         rm -rf $DIR/$tdir || error "rmdir failed"
2352
2353         return 0
2354 }
2355 run_test 81d "DNE: unlink remote dir, drop MDT0 update reply,  fail 2 MDTs"
2356
2357 test_81e() {
2358         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2359         ([ $FAILURE_MODE == "HARD" ] &&
2360                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2361                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2362                 return 0
2363
2364         local MDTIDX=1
2365         local remote_dir=$DIR/$tdir/remote_dir
2366
2367         mkdir -p $DIR/$tdir
2368         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2369
2370         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2371         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2372         rmdir $remote_dir &
2373         local CLIENT_PID=$!
2374         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0
2375
2376         fail mds${MDTIDX}
2377
2378         wait $CLIENT_PID || error "rm remote dir failed"
2379
2380         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2381
2382         rm -rf $DIR/$tdir || error "rmdir failed"
2383
2384         return 0
2385 }
2386 run_test 81e "DNE: unlink remote dir, drop MDT1 req reply, fail MDT0"
2387
2388 test_81f() {
2389         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2390         ([ $FAILURE_MODE == "HARD" ] &&
2391                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2392                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2393                 return 0
2394
2395         local MDTIDX=1
2396         local remote_dir=$DIR/$tdir/remote_dir
2397
2398         mkdir -p $DIR/$tdir
2399         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2400
2401         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2402         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2403         rmdir $remote_dir &
2404         local CLIENT_PID=$!
2405
2406         fail mds$((MDTIDX + 1))
2407
2408         wait $CLIENT_PID || error "rm remote dir failed"
2409
2410         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2411
2412         rm -rf $DIR/$tdir || error "rmdir failed"
2413
2414         return 0
2415 }
2416 run_test 81f "DNE: unlink remote dir, drop MDT1 req reply, fail MDT1"
2417
2418 test_81g() {
2419         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2420         ([ $FAILURE_MODE == "HARD" ] &&
2421                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2422                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2423                 return 0
2424
2425         local MDTIDX=1
2426         local remote_dir=$DIR/$tdir/remote_dir
2427
2428         mkdir -p $DIR/$tdir
2429         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2430
2431         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2432         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2433         rmdir $remote_dir &
2434         local CLIENT_PID=$!
2435
2436         fail mds${MDTIDX}
2437         fail mds$((MDTIDX + 1))
2438
2439         wait $CLIENT_PID || error "rm remote dir failed"
2440
2441         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2442
2443         rm -rf $DIR/$tdir || error "rmdir failed"
2444
2445         return 0
2446 }
2447 run_test 81g "DNE: unlink remote dir, drop req reply, fail M0, then M1"
2448
2449 test_81h() {
2450         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2451         local MDTIDX=1
2452         local remote_dir=$DIR/$tdir/remote_dir
2453
2454         mkdir -p $DIR/$tdir
2455         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2456
2457         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2458         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2459         rmdir $remote_dir &
2460         local CLIENT_PID=$!
2461
2462         fail mds${MDTIDX},mds$((MDTIDX + 1))
2463
2464         wait $CLIENT_PID || error "rm remote dir failed"
2465
2466         stat $remote_dir 2&>/dev/null && error "$remote_dir still exist!"
2467
2468         rm -rf $DIR/$tdir || error "rmdir failed"
2469
2470         return 0
2471 }
2472 run_test 81h "DNE: unlink remote dir, drop request reply, fail 2 MDTs"
2473
2474 test_83a() {
2475     mkdir -p $DIR/$tdir
2476     createmany -o $DIR/$tdir/$tfile- 10 || return 1
2477 #define OBD_FAIL_MDS_FAIL_LOV_LOG_ADD       0x140
2478     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000140"
2479     unlinkmany $DIR/$tdir/$tfile- 10 || return 2
2480 }
2481 run_test 83a "fail log_add during unlink recovery"
2482
2483 test_83b() {
2484     mkdir -p $DIR/$tdir
2485     createmany -o $DIR/$tdir/$tfile- 10 || return 1
2486     replay_barrier $SINGLEMDS
2487     unlinkmany $DIR/$tdir/$tfile- 10 || return 2
2488 #define OBD_FAIL_MDS_FAIL_LOV_LOG_ADD       0x140
2489     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000140"
2490     fail $SINGLEMDS
2491 }
2492 run_test 83b "fail log_add during unlink recovery"
2493
2494 test_84a() {
2495 #define OBD_FAIL_MDS_OPEN_WAIT_CREATE  0x144
2496     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000144"
2497     createmany -o $DIR/$tfile- 1 &
2498     PID=$!
2499     mds_evict_client
2500     wait $PID
2501     client_up || client_up || true    # reconnect
2502 }
2503 run_test 84a "stale open during export disconnect"
2504
2505 test_85a() { #bug 16774
2506     lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
2507
2508     for i in `seq 100`; do
2509         echo "tag-$i" > $DIR/$tfile-$i
2510         grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
2511     done
2512
2513     lov_id=`lctl dl | grep "clilov"`
2514     addr=`echo $lov_id | awk '{print $4}' | awk -F '-' '{print $3}'`
2515     count=`lctl get_param -n ldlm.namespaces.*MDT0000*$addr.lock_unused_count`
2516     echo "before recovery: unused locks count = $count"
2517
2518     fail $SINGLEMDS
2519
2520     count2=`lctl get_param -n ldlm.namespaces.*MDT0000*$addr.lock_unused_count`
2521     echo "after recovery: unused locks count = $count2"
2522
2523     if [ $count2 -ge $count ]; then
2524         error "unused locks are not canceled"
2525     fi
2526 }
2527 run_test 85a "check the cancellation of unused locks during recovery(IBITS)"
2528
2529 test_85b() { #bug 16774
2530     lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
2531
2532     do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
2533     do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $FSNAME-OST0000 || return 2
2534
2535     $SETSTRIPE -c 1 -p $FSNAME.$TESTNAME $DIR
2536
2537     for i in `seq 100`; do
2538         dd if=/dev/urandom of=$DIR/$tfile-$i bs=4096 count=32 >/dev/null 2>&1
2539     done
2540
2541     cancel_lru_locks osc
2542
2543     for i in `seq 100`; do
2544         dd if=$DIR/$tfile-$i of=/dev/null bs=4096 count=32 >/dev/null 2>&1
2545     done
2546
2547     lov_id=`lctl dl | grep "clilov"`
2548     addr=`echo $lov_id | awk '{print $4}' | awk -F '-' '{print $3}'`
2549     count=`lctl get_param -n ldlm.namespaces.*OST0000*$addr.lock_unused_count`
2550     echo "before recovery: unused locks count = $count"
2551     [ $count != 0 ] || return 3
2552
2553     fail ost1
2554
2555     count2=`lctl get_param -n ldlm.namespaces.*OST0000*$addr.lock_unused_count`
2556     echo "after recovery: unused locks count = $count2"
2557
2558     do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $FSNAME-OST0000 || return 4
2559     do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
2560
2561     if [ $count2 -ge $count ]; then
2562         error "unused locks are not canceled"
2563     fi
2564 }
2565 run_test 85b "check the cancellation of unused locks during recovery(EXTENT)"
2566
2567 test_86() {
2568         local clients=${CLIENTS:-$HOSTNAME}
2569
2570         zconf_umount_clients $clients $MOUNT
2571         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT*.exports.clear=0
2572         remount_facet $SINGLEMDS
2573         zconf_mount_clients $clients $MOUNT
2574 }
2575 run_test 86 "umount server after clear nid_stats should not hit LBUG"
2576
2577 test_87() {
2578     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
2579
2580     replay_barrier ost1
2581     $SETSTRIPE -i 0 -c 1 $DIR/$tfile
2582     dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 || error "Cannot write"
2583     cksum=`md5sum $DIR/$tfile | awk '{print $1}'`
2584     cancel_lru_locks osc
2585     fail ost1
2586     dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
2587     cksum2=`md5sum $DIR/$tfile | awk '{print $1}'`
2588     if [ $cksum != $cksum2 ] ; then
2589         error "New checksum $cksum2 does not match original $cksum"
2590     fi
2591 }
2592 run_test 87 "write replay"
2593
2594 test_87b() {
2595     do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
2596
2597     replay_barrier ost1
2598     $SETSTRIPE -i 0 -c 1 $DIR/$tfile
2599     dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 || error "Cannot write"
2600     sleep 1 # Give it a chance to flush dirty data
2601     echo TESTTEST | dd of=$DIR/$tfile bs=1 count=8 seek=64
2602     cksum=`md5sum $DIR/$tfile | awk '{print $1}'`
2603     cancel_lru_locks osc
2604     fail ost1
2605     dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
2606     cksum2=`md5sum $DIR/$tfile | awk '{print $1}'`
2607     if [ $cksum != $cksum2 ] ; then
2608         error "New checksum $cksum2 does not match original $cksum"
2609     fi
2610 }
2611 run_test 87b "write replay with changed data (checksum resend)"
2612
2613 test_88() { #bug 17485
2614     mkdir -p $DIR/$tdir
2615     mkdir -p $TMP/$tdir
2616
2617     $SETSTRIPE -i 0 -c 1 $DIR/$tdir || error "$SETSTRIPE"
2618
2619     replay_barrier ost1
2620     replay_barrier $SINGLEMDS
2621
2622     # exhaust precreations on ost1
2623     local OST=$(ostname_from_index 0)
2624     local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $OST)
2625     local last_id=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
2626     local next_id=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
2627     echo "before test: last_id = $last_id, next_id = $next_id"
2628
2629     echo "Creating to objid $last_id on ost $OST..."
2630     createmany -o $DIR/$tdir/f-%d $next_id $((last_id - next_id + 2))
2631
2632     #create some files to use some uncommitted objids
2633     last_id=$(($last_id + 1))
2634     createmany -o $DIR/$tdir/f-%d $last_id 8
2635
2636     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
2637     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
2638     echo "before recovery: last_id = $last_id2, next_id = $next_id2" 
2639
2640     # if test uses shutdown_facet && reboot_facet instead of facet_failover ()
2641     # it has to take care about the affected facets, bug20407
2642     local affected_mds1=$(affected_facets mds1)
2643     local affected_ost1=$(affected_facets ost1)
2644
2645     shutdown_facet $SINGLEMDS
2646     shutdown_facet ost1
2647
2648     reboot_facet $SINGLEMDS
2649     change_active $affected_mds1
2650     wait_for_facet $affected_mds1
2651     mount_facets $affected_mds1 || error "Restart of mds failed"
2652
2653     reboot_facet ost1
2654     change_active $affected_ost1
2655     wait_for_facet $affected_ost1
2656     mount_facets $affected_ost1 || error "Restart of ost1 failed"
2657
2658     clients_up
2659
2660     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
2661     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
2662     echo "after recovery: last_id = $last_id2, next_id = $next_id2" 
2663
2664     # create new files, which should use new objids, and ensure the orphan 
2665     # cleanup phase for ost1 is completed at the same time
2666     for i in `seq 8`; do
2667         file_id=$(($last_id + 10 + $i))
2668         dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
2669     done
2670
2671     # if the objids were not recreated, then "ls" will failed for -ENOENT
2672     ls -l $DIR/$tdir/* || error "can't get the status of precreated files"
2673
2674     local file_id
2675     # write into previously created files
2676     for i in `seq 8`; do
2677         file_id=$(($last_id + $i))
2678         dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
2679         cp -f $DIR/$tdir/f-$file_id $TMP/$tdir/
2680     done
2681
2682     # compare the content
2683     for i in `seq 8`; do
2684         file_id=$(($last_id + $i))
2685         cmp $TMP/$tdir/f-$file_id $DIR/$tdir/f-$file_id || error "the content" \
2686         "of file is modified!"
2687     done
2688
2689     rm -fr $TMP/$tdir
2690 }
2691 run_test 88 "MDS should not assign same objid to different files "
2692
2693 test_89() {
2694         cancel_lru_locks osc
2695         mkdir -p $DIR/$tdir
2696         rm -f $DIR/$tdir/$tfile
2697         wait_mds_ost_sync
2698         wait_delete_completed
2699         BLOCKS1=$(df -P $MOUNT | tail -n 1 | awk '{ print $3 }')
2700         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/$tfile
2701         dd if=/dev/zero bs=1M count=10 of=$DIR/$tdir/$tfile
2702         sync
2703         stop ost1
2704         facet_failover $SINGLEMDS
2705         rm $DIR/$tdir/$tfile
2706         umount $MOUNT
2707         mount_facet ost1
2708         zconf_mount $(hostname) $MOUNT
2709         client_up || return 1
2710         wait_mds_ost_sync
2711         wait_delete_completed
2712         BLOCKS2=$(df -P $MOUNT | tail -n 1 | awk '{ print $3 }')
2713         [ $((BLOCKS2 - BLOCKS1)) -le 4  ] || \
2714                 error $((BLOCKS2 - BLOCKS1)) blocks leaked
2715 }
2716
2717 run_test 89 "no disk space leak on late ost connection"
2718
2719 cleanup_90 () {
2720     local facet=$1
2721     trap 0
2722     reboot_facet $facet
2723     change_active $facet
2724     wait_for_facet $facet
2725     mount_facet $facet || error "Restart of $facet failed"
2726     clients_up
2727 }
2728
2729 test_90() { # bug 19494
2730     local dir=$DIR/$tdir
2731     local ostfail=$(get_random_entry $(get_facets OST))
2732
2733     if [[ $FAILURE_MODE = HARD ]]; then
2734         local affected=$(affected_facets $ostfail);
2735         if [[ "$affected" != $ostfail ]]; then
2736             skip not functional with FAILURE_MODE=$FAILURE_MODE, affected: $affected
2737             return 0
2738         fi
2739     fi
2740
2741     mkdir -p $dir
2742
2743     echo "Create the files"
2744
2745     # file "f${index}" striped over 1 OST
2746     # file "all" striped over all OSTs
2747
2748     $SETSTRIPE -c $OSTCOUNT $dir/all ||
2749         error "setstripe failed to create $dir/all"
2750
2751     for (( i=0; i<$OSTCOUNT; i++ )); do
2752         local f=$dir/f$i
2753         $SETSTRIPE -i $i -c 1 $f || error "$SETSTRIPE failed to create $f"
2754
2755         # confirm setstripe actually created the stripe on the requested OST
2756         local uuid=$(ostuuid_from_index $i)
2757         for file in f$i all; do
2758             if [[ $dir/$file != $($LFS find --obd $uuid --name $file $dir) ]]; then
2759                 $GETSTRIPE $dir/$file
2760                 error wrong stripe: $file, uuid: $uuid
2761             fi
2762         done
2763     done
2764
2765     # Before failing an OST, get its obd name and index
2766     local varsvc=${ostfail}_svc
2767     local obd=$(do_facet $ostfail lctl get_param -n obdfilter.${!varsvc}.uuid)
2768         local index=$(($(facet_number $ostfail) - 1))
2769
2770     echo "Fail $ostfail $obd, display the list of affected files"
2771     shutdown_facet $ostfail || return 2
2772
2773     trap "cleanup_90 $ostfail" EXIT INT
2774     echo "General Query: lfs find $dir"
2775     local list=$($LFS find $dir)
2776     echo "$list"
2777     for (( i=0; i<$OSTCOUNT; i++ )); do
2778         list_member "$list" $dir/f$i || error_noexit "lfs find $dir: no file f$i"
2779     done
2780     list_member "$list" $dir/all || error_noexit "lfs find $dir: no file all"
2781
2782     # focus on the missing OST,
2783     # we expect to see only two files affected: "f$(index)" and "all"
2784
2785     echo "Querying files on shutdown $ostfail: lfs find --obd $obd"
2786     list=$($LFS find --obd $obd $dir)
2787     echo "$list"
2788     for file in all f$index; do
2789         list_member "$list" $dir/$file ||
2790             error_noexit "lfs find does not report the affected $obd for $file"
2791     done
2792
2793     [[ $(echo $list | wc -w) -eq 2 ]] ||
2794         error_noexit "lfs find reports the wrong list of affected files ${#list[@]}"
2795
2796     echo "Check getstripe: $GETSTRIPE -r --obd $obd"
2797     list=$($GETSTRIPE -r --obd $obd $dir)
2798     echo "$list"
2799     for file in all f$index; do
2800         echo "$list" | grep $dir/$file ||
2801             error_noexit "lfs getsripe does not report the affected $obd for $file"
2802     done
2803
2804     cleanup_90 $ostfail
2805 }
2806 run_test 90 "lfs find identifies the missing striped file segments"
2807
2808 complete $SECONDS
2809 check_and_cleanup_lustre
2810 exit_status