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