Whamcloud - gitweb
LU-1538 tests: standardize test script init - dne-part-4
[fs/lustre-release.git] / lustre / tests / replay-single.sh
1 #!/bin/bash
2
3 set -e
4
5 LUSTRE=${LUSTRE:-$(dirname $0)/..}
6 . $LUSTRE/tests/test-framework.sh
7 init_test_env $@
8 init_logging
9
10 ALWAYS_EXCEPT="$REPLAY_SINGLE_EXCEPT "
11
12 if [ $(facet_fstype $SINGLEMDS) = "zfs" ]; then
13         # bug number for skipped test: LU-11388
14         ALWAYS_EXCEPT+="               131b"
15         # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
16 fi
17 if $SHARED_KEY; then
18         # bug number for skipped tests: LU-9795 (all below)
19         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   0b      0c      0d      34      45"
20         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   47      58b     58c     71a     85a"
21         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   85b     86      88      89      90"
22         ALWAYS_EXCEPT="$ALWAYS_EXCEPT   93a     100a    100b    120"
23 fi
24
25 # time in minutes:                 7.5 (min)"
26 [ "$SLOW" = "no" ] && EXCEPT_SLOW="44b"
27
28 build_test_filter
29
30 CHECK_GRANT=${CHECK_GRANT:-"yes"}
31 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
32
33 require_dsh_mds || exit 0
34 check_and_setup_lustre
35
36 mkdir -p $DIR
37
38 assert_DIR
39 rm -rf $DIR/[df][0-9]* $DIR/f.$TESTSUITE.*
40
41 # LU-482 Avert LVM and VM inability to flush caches in pre .33 kernels
42 if [ $LINUX_VERSION_CODE -lt $(version_code 2.6.33) ]; then
43     sync
44     do_facet $SINGLEMDS sync
45 fi
46
47 test_0a() {     # was test_0
48         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
49         replay_barrier $SINGLEMDS
50         fail $SINGLEMDS
51         rmdir $DIR/$tdir
52 }
53 run_test 0a "empty replay"
54
55 test_0b() {
56         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
57
58         # this test attempts to trigger a race in the precreation code,
59         # and must run before any other objects are created on the filesystem
60         fail ost1
61         createmany -o $DIR/$tfile 20 || error "createmany -o $DIR/$tfile failed"
62         unlinkmany $DIR/$tfile 20 || error "unlinkmany $DIR/$tfile failed"
63 }
64 run_test 0b "ensure object created after recover exists. (3284)"
65
66 test_0c() {
67         replay_barrier $SINGLEMDS
68         mcreate $DIR/$tfile
69         umount $MOUNT
70         facet_failover $SINGLEMDS
71         zconf_mount $(hostname) $MOUNT || error "mount fails"
72         client_up || error "post-failover df failed"
73         # file shouldn't exist if replay-barrier works as expected
74         rm $DIR/$tfile && error "File exists and it shouldn't"
75         return 0
76 }
77 run_test 0c "check replay-barrier"
78
79 test_0d() {
80         replay_barrier $SINGLEMDS
81         umount $MOUNT
82         facet_failover $SINGLEMDS
83         zconf_mount $(hostname) $MOUNT || error "mount fails"
84         client_up || error "post-failover df failed"
85 }
86 run_test 0d "expired recovery with no clients"
87
88 test_1() {
89         replay_barrier $SINGLEMDS
90         mcreate $DIR/$tfile
91         fail $SINGLEMDS
92         $CHECKSTAT -t file $DIR/$tfile ||
93                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
94         rm $DIR/$tfile
95 }
96 run_test 1 "simple create"
97
98 test_2a() {
99         replay_barrier $SINGLEMDS
100         touch $DIR/$tfile
101         fail $SINGLEMDS
102         $CHECKSTAT -t file $DIR/$tfile ||
103                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
104         rm $DIR/$tfile
105 }
106 run_test 2a "touch"
107
108 test_2b() {
109         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
110         replay_barrier $SINGLEMDS
111         touch $DIR/$tfile
112         fail $SINGLEMDS
113         $CHECKSTAT -t file $DIR/$tfile ||
114                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
115         rm $DIR/$tfile
116 }
117 run_test 2b "touch"
118
119 test_2c() {
120         replay_barrier $SINGLEMDS
121         $LFS setstripe -c $OSTCOUNT $DIR/$tfile
122         fail $SINGLEMDS
123         $CHECKSTAT -t file $DIR/$tfile ||
124                 error "$CHECKSTAT $DIR/$tfile check failed"
125 }
126 run_test 2c "setstripe replay"
127
128 test_2d() {
129         [[ $mds1_FSTYPE = "zfs" ]] &&
130                 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
131                 skip "requires LU-10143 fix on MDS"
132         replay_barrier $SINGLEMDS
133         $LFS setdirstripe -i 0 -c $MDSCOUNT $DIR/$tdir
134         fail $SINGLEMDS
135         $CHECKSTAT -t dir $DIR/$tdir ||
136                 error "$CHECKSTAT $DIR/$tdir check failed"
137 }
138 run_test 2d "setdirstripe replay"
139
140 test_3a() {
141         local file=$DIR/$tfile
142         replay_barrier $SINGLEMDS
143         mcreate $file
144         openfile -f O_DIRECTORY $file
145         fail $SINGLEMDS
146         $CHECKSTAT -t file $file ||
147                 error "$CHECKSTAT $file attribute check failed"
148         rm $file
149 }
150 run_test 3a "replay failed open(O_DIRECTORY)"
151
152 test_3b() {
153         replay_barrier $SINGLEMDS
154         #define OBD_FAIL_MDS_OPEN_PACK | OBD_FAIL_ONCE
155         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000114"
156         touch $DIR/$tfile
157         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
158         fail $SINGLEMDS
159         $CHECKSTAT -t file $DIR/$tfile &&
160                 error "$CHECKSTAT $DIR/$tfile attribute check should fail"
161         return 0
162 }
163 run_test 3b "replay failed open -ENOMEM"
164
165 test_3c() {
166         replay_barrier $SINGLEMDS
167         #define OBD_FAIL_MDS_ALLOC_OBDO | OBD_FAIL_ONCE
168         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000128"
169         touch $DIR/$tfile
170         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
171         fail $SINGLEMDS
172
173         $CHECKSTAT -t file $DIR/$tfile &&
174                 error "$CHECKSTAT $DIR/$tfile attribute check should fail"
175         return 0
176 }
177 run_test 3c "replay failed open -ENOMEM"
178
179 test_4a() {     # was test_4
180         replay_barrier $SINGLEMDS
181         for i in $(seq 10); do
182                 echo "tag-$i" > $DIR/$tfile-$i
183         done
184         fail $SINGLEMDS
185         for i in $(seq 10); do
186                 grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
187         done
188 }
189 run_test 4a "|x| 10 open(O_CREAT)s"
190
191 test_4b() {
192         for i in $(seq 10); do
193                 echo "tag-$i" > $DIR/$tfile-$i
194         done
195         replay_barrier $SINGLEMDS
196         rm -rf $DIR/$tfile-*
197         fail $SINGLEMDS
198         $CHECKSTAT -t file $DIR/$tfile-* &&
199                 error "$CHECKSTAT $DIR/$tfile-* attribute check should fail" ||
200                 true
201 }
202 run_test 4b "|x| rm 10 files"
203
204 # The idea is to get past the first block of precreated files on both
205 # osts, and then replay.
206 test_5() {
207         replay_barrier $SINGLEMDS
208         for i in $(seq 220); do
209                 echo "tag-$i" > $DIR/$tfile-$i
210         done
211         fail $SINGLEMDS
212         for i in $(seq 220); do
213                 grep -q "tag-$i" $DIR/$tfile-$i || error "$tfile-$i"
214         done
215         rm -rf $DIR/$tfile-*
216         sleep 3
217         # waiting for commitment of removal
218 }
219 run_test 5 "|x| 220 open(O_CREAT)"
220
221 test_6a() {     # was test_6
222         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
223         replay_barrier $SINGLEMDS
224         mcreate $DIR/$tdir/$tfile
225         fail $SINGLEMDS
226         $CHECKSTAT -t dir $DIR/$tdir ||
227                 error "$CHECKSTAT $DIR/$tdir attribute check failed"
228         $CHECKSTAT -t file $DIR/$tdir/$tfile ||
229                 error "$CHECKSTAT $DIR/$tdir/$tfile attribute check failed"
230         sleep 2
231         # waiting for log process thread
232 }
233 run_test 6a "mkdir + contained create"
234
235 test_6b() {
236         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
237         replay_barrier $SINGLEMDS
238         rm -rf $DIR/$tdir
239         fail $SINGLEMDS
240         $CHECKSTAT -t dir $DIR/$tdir &&
241                 error "$CHECKSTAT $DIR/$tdir attribute check should fail" ||
242                 true
243 }
244 run_test 6b "|X| rmdir"
245
246 test_7() {
247         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
248         replay_barrier $SINGLEMDS
249         mcreate $DIR/$tdir/$tfile
250         fail $SINGLEMDS
251         $CHECKSTAT -t dir $DIR/$tdir ||
252                 error "$CHECKSTAT $DIR/$tdir attribute check failed"
253         $CHECKSTAT -t file $DIR/$tdir/$tfile ||
254                 error "$CHECKSTAT $DIR/$tdir/$tfile attribute check failed"
255         rm -fr $DIR/$tdir
256 }
257 run_test 7 "mkdir |X| contained create"
258
259 test_8() {
260         replay_barrier $SINGLEMDS
261         multiop_bg_pause $DIR/$tfile mo_c ||
262                 error "multiop mknod $DIR/$tfile failed"
263         MULTIPID=$!
264         fail $SINGLEMDS
265         ls $DIR/$tfile
266         $CHECKSTAT -t file $DIR/$tfile ||
267                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
268         kill -USR1 $MULTIPID || error "multiop mknod $MULTIPID not running"
269         wait $MULTIPID || error "multiop mknod $MULTIPID failed"
270         rm $DIR/$tfile
271 }
272 run_test 8 "creat open |X| close"
273
274 test_9() {
275         replay_barrier $SINGLEMDS
276         mcreate $DIR/$tfile
277         local old_inum=$(ls -i $DIR/$tfile | awk '{print $1}')
278         fail $SINGLEMDS
279         local new_inum=$(ls -i $DIR/$tfile | awk '{print $1}')
280
281         echo " old_inum == $old_inum, new_inum == $new_inum"
282         if [ $old_inum -eq $new_inum  ] ;
283         then
284                 echo "old_inum and new_inum match"
285         else
286                 echo " old_inum and new_inum do not match"
287                 error "old index($old_inum) does not match new index($new_inum)"
288         fi
289         rm $DIR/$tfile
290 }
291 run_test 9 "|X| create (same inum/gen)"
292
293 test_10() {
294         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
295         replay_barrier $SINGLEMDS
296         mv $DIR/$tfile $DIR/$tfile-2
297         rm -f $DIR/$tfile
298         fail $SINGLEMDS
299         $CHECKSTAT $DIR/$tfile &&
300                 error "$CHECKSTAT $DIR/$tfile attribute check should fail"
301         $CHECKSTAT $DIR/$tfile-2 ||
302                 error "$CHECKSTAT $DIR/$tfile-2 attribute check failed"
303         rm $DIR/$tfile-2
304         return 0
305 }
306 run_test 10 "create |X| rename unlink"
307
308 test_11() {
309         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
310         echo "old" > $DIR/$tfile
311         mv $DIR/$tfile $DIR/$tfile-2
312         replay_barrier $SINGLEMDS
313         echo "new" > $DIR/$tfile
314         grep new $DIR/$tfile
315         grep old $DIR/$tfile-2
316         fail $SINGLEMDS
317         grep new $DIR/$tfile || error "grep $DIR/$tfile failed"
318         grep old $DIR/$tfile-2 || error "grep $DIR/$tfile-2 failed"
319 }
320 run_test 11 "create open write rename |X| create-old-name read"
321
322 test_12() {
323         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
324         multiop_bg_pause $DIR/$tfile o_tSc ||
325                 error "multiop_bg_pause $DIR/$tfile failed"
326         pid=$!
327         rm -f $DIR/$tfile
328         replay_barrier $SINGLEMDS
329         kill -USR1 $pid || error "multiop $pid not running"
330         wait $pid || error "multiop $pid failed"
331
332         fail $SINGLEMDS
333         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
334         return 0
335 }
336 run_test 12 "open, unlink |X| close"
337
338 # 1777 - replay open after committed chmod that would make
339 #        a regular open a failure
340 test_13() {
341         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
342         multiop_bg_pause $DIR/$tfile O_wc ||
343                 error "multiop_bg_pause $DIR/$tfile failed"
344         pid=$!
345         chmod 0 $DIR/$tfile
346         $CHECKSTAT -p 0 $DIR/$tfile ||
347                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
348         replay_barrier $SINGLEMDS
349         fail $SINGLEMDS
350         kill -USR1 $pid || error "multiop $pid not running"
351         wait $pid || error "multiop $pid failed"
352
353         $CHECKSTAT -s 1 -p 0 $DIR/$tfile ||
354                 error "second $CHECKSTAT $DIR/$tfile attribute check failed"
355         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
356         return 0
357 }
358 run_test 13 "open chmod 0 |x| write close"
359
360 test_14() {
361         multiop_bg_pause $DIR/$tfile O_tSc ||
362                 error "multiop_bg_pause $DIR/$tfile failed"
363         pid=$!
364         rm -f $DIR/$tfile
365         replay_barrier $SINGLEMDS
366         kill -USR1 $pid || error "multiop $pid not running"
367         wait $pid || error "multiop $pid failed"
368
369         fail $SINGLEMDS
370         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
371         return 0
372 }
373 run_test 14 "open(O_CREAT), unlink |X| close"
374
375 test_15() {
376         multiop_bg_pause $DIR/$tfile O_tSc ||
377                 error "multiop_bg_pause $DIR/$tfile failed"
378         pid=$!
379         rm -f $DIR/$tfile
380         replay_barrier $SINGLEMDS
381         touch $DIR/$tfile-1 || error "touch $DIR/$tfile-1 failed"
382         kill -USR1 $pid || error "multiop $pid not running"
383         wait $pid || error "multiop $pid failed"
384
385         fail $SINGLEMDS
386         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
387         touch $DIR/$tfile-2 || error "touch $DIR/$tfile-2 failed"
388         return 0
389 }
390 run_test 15 "open(O_CREAT), unlink |X|  touch new, close"
391
392 test_16() {
393         replay_barrier $SINGLEMDS
394         mcreate $DIR/$tfile
395         munlink $DIR/$tfile
396         mcreate $DIR/$tfile-2
397         fail $SINGLEMDS
398         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
399         [ -e $DIR/$tfile-2 ] || error "file $DIR/$tfile-2 does not exist"
400         munlink $DIR/$tfile-2 || error "munlink $DIR/$tfile-2 failed"
401 }
402 run_test 16 "|X| open(O_CREAT), unlink, touch new,  unlink new"
403
404 test_17() {
405         replay_barrier $SINGLEMDS
406         multiop_bg_pause $DIR/$tfile O_c ||
407                 error "multiop_bg_pause $DIR/$tfile failed"
408         pid=$!
409         fail $SINGLEMDS
410         kill -USR1 $pid || error "multiop $pid not running"
411         wait $pid || error "multiop $pid failed"
412         $CHECKSTAT -t file $DIR/$tfile ||
413                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
414         rm $DIR/$tfile
415 }
416 run_test 17 "|X| open(O_CREAT), |replay| close"
417
418 test_18() {
419         replay_barrier $SINGLEMDS
420         multiop_bg_pause $DIR/$tfile O_tSc ||
421                 error "multiop_bg_pause $DIR/$tfile failed"
422         pid=$!
423         rm -f $DIR/$tfile
424         touch $DIR/$tfile-2 || error "touch $DIR/$tfile-2 failed"
425         echo "pid: $pid will close"
426         kill -USR1 $pid || error "multiop $pid not running"
427         wait $pid || error "multiop $pid failed"
428
429         fail $SINGLEMDS
430         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
431         [ -e $DIR/$tfile-2 ] || error "file $DIR/$tfile-2 does not exist"
432         # this touch frequently fails
433         touch $DIR/$tfile-3 || error "touch $DIR/$tfile-3 failed"
434         munlink $DIR/$tfile-2 || error "munlink $DIR/$tfile-2 failed"
435         munlink $DIR/$tfile-3 || error "munlink $DIR/$tfile-3 failed"
436         return 0
437 }
438 run_test 18 "open(O_CREAT), unlink, touch new, close, touch, unlink"
439
440 # bug 1855 (a simpler form of test_11 above)
441 test_19() {
442         replay_barrier $SINGLEMDS
443         mcreate $DIR/$tfile
444         echo "old" > $DIR/$tfile
445         mv $DIR/$tfile $DIR/$tfile-2
446         grep old $DIR/$tfile-2
447         fail $SINGLEMDS
448         grep old $DIR/$tfile-2 || error "grep $DIR/$tfile-2 failed"
449 }
450 run_test 19 "mcreate, open, write, rename "
451
452 test_20a() {    # was test_20
453         replay_barrier $SINGLEMDS
454         multiop_bg_pause $DIR/$tfile O_tSc ||
455                 error "multiop_bg_pause $DIR/$tfile failed"
456         pid=$!
457         rm -f $DIR/$tfile
458
459         fail $SINGLEMDS
460         kill -USR1 $pid || error "multiop $pid not running"
461         wait $pid || error "multiop $pid failed"
462         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
463         return 0
464 }
465 run_test 20a "|X| open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
466
467 test_20b() { # bug 10480
468         local wait_timeout=$((TIMEOUT * 4))
469         local extra=$(fs_log_size)
470         local n_attempts=1
471
472         sync_all_data
473         $LFS setstripe -i 0 -c 1 $DIR
474
475         local beforeused=$(df -P $DIR | tail -1 | awk '{ print $3 }')
476
477         dd if=/dev/zero of=$DIR/$tfile bs=4k count=10000 &
478         while [ ! -e $DIR/$tfile ] ; do
479                 usleep 60                       # give dd a chance to start
480         done
481
482         $LFS getstripe $DIR/$tfile || error "$LFS getstripe $DIR/$tfile failed"
483         # make it an orphan
484         rm -f $DIR/$tfile || error "rm -f $DIR/$tfile failed"
485         mds_evict_client
486         client_up || client_up || true          # reconnect
487
488         do_facet $SINGLEMDS "lctl set_param -n osd*.*MDT*.force_sync=1"
489
490         fail $SINGLEMDS                         # start orphan recovery
491         wait_recovery_complete $SINGLEMDS || error "MDS recovery not done"
492         wait_delete_completed $wait_timeout || error "delete did not finish"
493         sync_all_data
494
495         while true; do
496                 local afterused=$(df -P $DIR | tail -1 | awk '{ print $3 }')
497                 log "before $beforeused, after $afterused"
498
499                 (( $beforeused + $extra >= $afterused )) && break
500                 n_attempts=$((n_attempts + 1))
501                 [ $n_attempts -gt 3 ] &&
502                         error "after $afterused > before $beforeused + $extra"
503
504                 wait_zfs_commit $SINGLEMDS 5
505                 sync_all_data
506         done
507 }
508
509 run_test 20b "write, unlink, eviction, replay (test mds_cleanup_orphans)"
510
511 test_20c() { # bug 10480
512         multiop_bg_pause $DIR/$tfile Ow_c ||
513                 error "multiop_bg_pause $DIR/$tfile failed"
514         pid=$!
515
516         ls -la $DIR/$tfile
517
518         mds_evict_client
519         client_up || client_up || true    # reconnect
520
521         kill -USR1 $pid || error "multiop $pid not running"
522         wait $pid || error "multiop $pid failed"
523         [ -s $DIR/$tfile ] || error "File was truncated"
524
525         return 0
526 }
527 run_test 20c "check that client eviction does not affect file content"
528
529 test_21() {
530         replay_barrier $SINGLEMDS
531         multiop_bg_pause $DIR/$tfile O_tSc ||
532                 error "multiop_bg_pause $DIR/$tfile failed"
533         pid=$!
534         rm -f $DIR/$tfile
535         touch $DIR/$tfile-1 || error "touch $DIR/$tfile-1 failed"
536
537         fail $SINGLEMDS
538         kill -USR1 $pid || error "multiop $pid not running"
539         wait $pid || error "multiop $pid failed"
540         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
541         touch $DIR/$tfile-2 || error "touch $DIR/$tfile-2 failed"
542         return 0
543 }
544 run_test 21 "|X| open(O_CREAT), unlink touch new, replay, close (test mds_cleanup_orphans)"
545
546 test_22() {
547         multiop_bg_pause $DIR/$tfile O_tSc ||
548                 error "multiop_bg_pause $DIR/$tfile failed"
549         pid=$!
550
551         replay_barrier $SINGLEMDS
552         rm -f $DIR/$tfile
553
554         fail $SINGLEMDS
555         kill -USR1 $pid || error "multiop $pid not running"
556         wait $pid || error "multiop $pid failed"
557         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
558         return 0
559 }
560 run_test 22 "open(O_CREAT), |X| unlink, replay, close (test mds_cleanup_orphans)"
561
562 test_23() {
563         multiop_bg_pause $DIR/$tfile O_tSc ||
564                 error "multiop_bg_pause $DIR/$tfile failed"
565         pid=$!
566
567         replay_barrier $SINGLEMDS
568         rm -f $DIR/$tfile
569         touch $DIR/$tfile-1 || error "touch $DIR/$tfile-1 failed"
570
571         fail $SINGLEMDS
572         kill -USR1 $pid || error "multiop $pid not running"
573         wait $pid || error "multiop $pid failed"
574         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
575         touch $DIR/$tfile-2 || error "touch $DIR/$tfile-2 failed"
576         return 0
577 }
578 run_test 23 "open(O_CREAT), |X| unlink touch new, replay, close (test mds_cleanup_orphans)"
579
580 test_24() {
581         multiop_bg_pause $DIR/$tfile O_tSc ||
582                 error "multiop_bg_pause $DIR/$tfile failed"
583         pid=$!
584
585         replay_barrier $SINGLEMDS
586         fail $SINGLEMDS
587         rm -f $DIR/$tfile
588         kill -USR1 $pid || error "multiop $pid not running"
589         wait $pid || error "multiop $pid failed"
590         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
591         return 0
592 }
593 run_test 24 "open(O_CREAT), replay, unlink, close (test mds_cleanup_orphans)"
594
595 test_25() {
596         multiop_bg_pause $DIR/$tfile O_tSc ||
597                 error "multiop_bg_pause $DIR/$tfile failed"
598         pid=$!
599         rm -f $DIR/$tfile
600
601         replay_barrier $SINGLEMDS
602         fail $SINGLEMDS
603         kill -USR1 $pid || error "multiop $pid not running"
604         wait $pid || error "multiop $pid failed"
605         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
606         return 0
607 }
608 run_test 25 "open(O_CREAT), unlink, replay, close (test mds_cleanup_orphans)"
609
610 test_26() {
611         replay_barrier $SINGLEMDS
612         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
613                 error "multiop_bg_pause $DIR/$tfile-1 failed"
614         pid1=$!
615         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
616                 error "multiop_bg_pause $DIR/$tfile-2 failed"
617         pid2=$!
618         rm -f $DIR/$tfile-1
619         rm -f $DIR/$tfile-2
620         kill -USR1 $pid2 || error "second multiop $pid2 not running"
621         wait $pid2 || error "second multiop $pid2 failed"
622
623         fail $SINGLEMDS
624         kill -USR1 $pid1 || error "multiop $pid1 not running"
625         wait $pid1 || error "multiop $pid1 failed"
626         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
627         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
628         return 0
629 }
630 run_test 26 "|X| open(O_CREAT), unlink two, close one, replay, close one (test mds_cleanup_orphans)"
631
632 test_27() {
633         replay_barrier $SINGLEMDS
634         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
635                 error "multiop_bg_pause $DIR/$tfile-1 failed"
636         pid1=$!
637         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
638                 error "multiop_bg_pause $DIR/$tfile-2 failed"
639         pid2=$!
640         rm -f $DIR/$tfile-1
641         rm -f $DIR/$tfile-2
642
643         fail $SINGLEMDS
644         kill -USR1 $pid1 || error "multiop $pid1 not running"
645         wait $pid1 || error "multiop $pid1 failed"
646         kill -USR1 $pid2 || error "second multiop $pid2 not running"
647         wait $pid2 || error "second multiop $pid2 failed"
648         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
649         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
650         return 0
651 }
652 run_test 27 "|X| open(O_CREAT), unlink two, replay, close two (test mds_cleanup_orphans)"
653
654 test_28() {
655         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
656                 error "multiop_bg_pause $DIR/$tfile-1 failed"
657         pid1=$!
658         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
659                 error "multiop_bg_pause $DIR/$tfile-2 failed"
660         pid2=$!
661         replay_barrier $SINGLEMDS
662         rm -f $DIR/$tfile-1
663         rm -f $DIR/$tfile-2
664         kill -USR1 $pid2 || error "second multiop $pid2 not running"
665         wait $pid2 || error "second multiop $pid2 failed"
666
667         fail $SINGLEMDS
668         kill -USR1 $pid1 || error "multiop $pid1 not running"
669         wait $pid1 || error "multiop $pid1 failed"
670         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
671         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
672         return 0
673 }
674 run_test 28 "open(O_CREAT), |X| unlink two, close one, replay, close one (test mds_cleanup_orphans)"
675
676 test_29() {
677         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
678                 error "multiop_bg_pause $DIR/$tfile-1 failed"
679         pid1=$!
680         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
681                 error "multiop_bg_pause $DIR/$tfile-2 failed"
682         pid2=$!
683         replay_barrier $SINGLEMDS
684         rm -f $DIR/$tfile-1
685         rm -f $DIR/$tfile-2
686
687         fail $SINGLEMDS
688         kill -USR1 $pid1 || error "multiop $pid1 not running"
689         wait $pid1 || error "multiop $pid1 failed"
690         kill -USR1 $pid2 || error "second multiop $pid2 not running"
691         wait $pid2 || error "second multiop $pid2 failed"
692         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
693         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
694         return 0
695 }
696 run_test 29 "open(O_CREAT), |X| unlink two, replay, close two (test mds_cleanup_orphans)"
697
698 test_30() {
699         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
700                 error "multiop_bg_pause $DIR/$tfile-1 failed"
701         pid1=$!
702         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
703                 error "multiop_bg_pause $DIR/$tfile-2 failed"
704         pid2=$!
705         rm -f $DIR/$tfile-1
706         rm -f $DIR/$tfile-2
707
708         replay_barrier $SINGLEMDS
709         fail $SINGLEMDS
710         kill -USR1 $pid1 || error "multiop $pid1 not running"
711         wait $pid1 || error "multiop $pid1 failed"
712         kill -USR1 $pid2 || error "second multiop $pid2 not running"
713         wait $pid2 || error "second multiop $pid2 failed"
714         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
715         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
716         return 0
717 }
718 run_test 30 "open(O_CREAT) two, unlink two, replay, close two (test mds_cleanup_orphans)"
719
720 test_31() {
721         multiop_bg_pause $DIR/$tfile-1 O_tSc ||
722                 error "multiop_bg_pause $DIR/$tfile-1 failed"
723         pid1=$!
724         multiop_bg_pause $DIR/$tfile-2 O_tSc ||
725                 error "multiop_bg_pause $DIR/$tfile-2 failed"
726         pid2=$!
727         rm -f $DIR/$tfile-1
728
729         replay_barrier $SINGLEMDS
730         rm -f $DIR/$tfile-2
731         fail $SINGLEMDS
732         kill -USR1 $pid1 || error "multiop $pid1 not running"
733         wait $pid1 || error "multiop $pid1 failed"
734         kill -USR1 $pid2 || error "second multiop $pid2 not running"
735         wait $pid2 || error "second multiop $pid2 failed"
736         [ -e $DIR/$tfile-1 ] && error "file $DIR/$tfile-1 should not exist"
737         [ -e $DIR/$tfile-2 ] && error "file $DIR/$tfile-2 should not exist"
738         return 0
739 }
740 run_test 31 "open(O_CREAT) two, unlink one, |X| unlink one, close two (test mds_cleanup_orphans)"
741
742 # tests for bug 2104; completion without crashing is success.  The close is
743 # stale, but we always return 0 for close, so the app never sees it.
744 test_32() {
745         multiop_bg_pause $DIR/$tfile O_c ||
746                 error "multiop_bg_pause $DIR/$tfile failed"
747         pid1=$!
748         multiop_bg_pause $DIR/$tfile O_c ||
749                 error "second multiop_bg_pause $DIR/$tfile failed"
750         pid2=$!
751         mds_evict_client
752         client_up || client_up || error "client_up failed"
753         kill -USR1 $pid1 || error "multiop $pid1 not running"
754         kill -USR1 $pid2 || error "second multiop $pid2 not running"
755         wait $pid1 || error "multiop $pid1 failed"
756         wait $pid2 || error "second multiop $pid2 failed"
757         return 0
758 }
759 run_test 32 "close() notices client eviction; close() after client eviction"
760
761 test_33a() {
762         createmany -o $DIR/$tfile-%d 10 ||
763                 error "createmany create $DIR/$tfile failed"
764         replay_barrier_nosync $SINGLEMDS
765         fail_abort $SINGLEMDS
766         # recreate shouldn't fail
767         createmany -o $DIR/$tfile--%d 10 ||
768                 error "createmany recreate $DIR/$tfile failed"
769         rm $DIR/$tfile-* -f
770         return 0
771 }
772 run_test 33a "fid seq shouldn't be reused after abort recovery"
773
774 test_33b() {
775         #define OBD_FAIL_SEQ_ALLOC                          0x1311
776         do_facet $SINGLEMDS "lctl set_param fail_loc=0x1311"
777
778         createmany -o $DIR/$tfile-%d 10
779         replay_barrier_nosync $SINGLEMDS
780         fail_abort $SINGLEMDS
781         # recreate shouldn't fail
782         createmany -o $DIR/$tfile--%d 10 ||
783                 error "createmany recreate $DIR/$tfile failed"
784         rm $DIR/$tfile-* -f
785         return 0
786 }
787 run_test 33b "test fid seq allocation"
788
789 test_34() {
790         multiop_bg_pause $DIR/$tfile O_c ||
791                 error "multiop_bg_pause $DIR/$tfile failed"
792         pid=$!
793         rm -f $DIR/$tfile
794
795         replay_barrier $SINGLEMDS
796         fail_abort $SINGLEMDS
797         kill -USR1 $pid || error "multiop $pid not running"
798         wait $pid || error "multiop $pid failed"
799         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
800         sync
801         return 0
802 }
803 run_test 34 "abort recovery before client does replay (test mds_cleanup_orphans)"
804
805 # bug 2278 - generate one orphan on OST, then destroy it during recovery from llog
806 test_35() {
807         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
808
809         #define OBD_FAIL_MDS_REINT_NET_REP       0x119
810         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
811         rm -f $DIR/$tfile &
812         sleep 1
813         sync
814         sleep 1
815         # give a chance to remove from MDS
816         fail_abort $SINGLEMDS
817         $CHECKSTAT -t file $DIR/$tfile &&
818                 error "$CHECKSTAT $DIR/$tfile attribute check should fail" ||
819                 true
820 }
821 run_test 35 "test recovery from llog for unlink op"
822
823 # b=2432 resent cancel after replay uses wrong cookie,
824 # so don't resend cancels
825 test_36() {
826         replay_barrier $SINGLEMDS
827         touch $DIR/$tfile
828         checkstat $DIR/$tfile
829         facet_failover $SINGLEMDS
830         cancel_lru_locks mdc
831         if dmesg | grep "unknown lock cookie"; then
832                 error "cancel after replay failed"
833         fi
834 }
835 run_test 36 "don't resend cancel"
836
837 # b=2368
838 # directory orphans can't be unlinked from PENDING directory
839 test_37() {
840         rmdir $DIR/$tfile 2>/dev/null
841         multiop_bg_pause $DIR/$tfile dD_c ||
842                 error "multiop_bg_pause $DIR/$tfile failed"
843         pid=$!
844         rmdir $DIR/$tfile
845
846         replay_barrier $SINGLEMDS
847         # clear the dmesg buffer so we only see errors from this recovery
848         do_facet $SINGLEMDS dmesg -c >/dev/null
849         fail_abort $SINGLEMDS
850         kill -USR1 $pid || error "multiop $pid not running"
851         do_facet $SINGLEMDS dmesg | grep "error .* unlinking .* from PENDING" &&
852                 error "error unlinking files"
853         wait $pid || error "multiop $pid failed"
854         sync
855         return 0
856 }
857 run_test 37 "abort recovery before client does replay (test mds_cleanup_orphans for directories)"
858
859 test_38() {
860         createmany -o $DIR/$tfile-%d 800 ||
861                 error "createmany -o $DIR/$tfile failed"
862         unlinkmany $DIR/$tfile-%d 0 400 || error "unlinkmany $DIR/$tfile failed"
863         replay_barrier $SINGLEMDS
864         fail $SINGLEMDS
865         unlinkmany $DIR/$tfile-%d 400 400 ||
866                 error "unlinkmany $DIR/$tfile 400 failed"
867         sleep 2
868         $CHECKSTAT -t file $DIR/$tfile-* &&
869                 error "$CHECKSTAT $DIR/$tfile-* attribute check should fail" ||
870                 true
871 }
872 run_test 38 "test recovery from unlink llog (test llog_gen_rec) "
873
874 test_39() { # bug 4176
875         createmany -o $DIR/$tfile-%d 800 ||
876                 error "createmany -o $DIR/$tfile failed"
877         replay_barrier $SINGLEMDS
878         unlinkmany $DIR/$tfile-%d 0 400
879         fail $SINGLEMDS
880         unlinkmany $DIR/$tfile-%d 400 400 ||
881                 error "unlinkmany $DIR/$tfile 400 failed"
882         sleep 2
883         $CHECKSTAT -t file $DIR/$tfile-* &&
884                 error "$CHECKSTAT $DIR/$tfile-* attribute check should fail" ||
885                 true
886 }
887 run_test 39 "test recovery from unlink llog (test llog_gen_rec) "
888
889 count_ost_writes() {
890     lctl get_param -n osc.*.stats | awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
891 }
892
893 #b=2477,2532
894 test_40(){
895         # always need connection to MDS to verify layout during IO. LU-2628.
896         lctl get_param mdc.*.connect_flags | grep -q layout_lock &&
897                 skip "layout_lock needs MDS connection for IO" && return 0
898
899         $LCTL mark multiop $MOUNT/$tfile OS_c
900         multiop $MOUNT/$tfile OS_c  &
901         PID=$!
902         writeme -s $MOUNT/${tfile}-2 &
903         WRITE_PID=$!
904         sleep 1
905         facet_failover $SINGLEMDS
906         #define OBD_FAIL_MDS_CONNECT_NET         0x117
907         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000117"
908         kill -USR1 $PID
909         stat1=$(count_ost_writes)
910         sleep $TIMEOUT
911         stat2=$(count_ost_writes)
912         echo "$stat1, $stat2"
913         if [ $stat1 -lt $stat2 ]; then
914                 echo "writes continuing during recovery"
915                 RC=0
916         else
917                 echo "writes not continuing during recovery, bug 2477"
918                 RC=4
919         fi
920         echo "waiting for writeme $WRITE_PID"
921         kill $WRITE_PID
922         wait $WRITE_PID
923
924         echo "waiting for multiop $PID"
925         wait $PID || error "multiop $PID failed"
926         do_facet client munlink $MOUNT/$tfile  ||
927                 error "munlink $MOUNT/$tfile failed"
928         do_facet client munlink $MOUNT/${tfile}-2  ||
929                 error "munlink $MOUNT/$tfile-2 failed"
930         return $RC
931 }
932 run_test 40 "cause recovery in ptlrpc, ensure IO continues"
933
934 #b=2814
935 # make sure that a read to one osc doesn't try to double-unlock its page just
936 # because another osc is invalid.  trigger_group_io used to mistakenly return
937 # an error if any oscs were invalid even after having successfully put rpcs
938 # on valid oscs.  This was fatal if the caller was ll_readpage who unlocked
939 # the page, guarnateeing that the unlock from the RPC completion would
940 # assert on trying to unlock the unlocked page.
941 test_41() {
942         [ $OSTCOUNT -lt 2 ] && skip_env "needs >= 2 OSTs" && return
943
944         local f=$MOUNT/$tfile
945         # make sure the start of the file is ost1
946         $LFS setstripe -S $((128 * 1024)) -i 0 $f
947         do_facet client dd if=/dev/zero of=$f bs=4k count=1 ||
948                 error "dd on client failed"
949         cancel_lru_locks osc
950         # fail ost2 and read from ost1
951         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $ost2_svc)
952         local osc2dev=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
953                 grep $mdtosc | awk '{print $1}')
954         [ -z "$osc2dev" ] && echo "OST: $ost2_svc" &&
955                 lctl get_param -n devices &&
956                 error "OST 2 $osc2dev does not exist"
957         do_facet $SINGLEMDS $LCTL --device $osc2dev deactivate ||
958                 error "deactive device on $SINGLEMDS failed"
959         do_facet client dd if=$f of=/dev/null bs=4k count=1 ||
960                 error "second dd on client failed"
961         do_facet $SINGLEMDS $LCTL --device $osc2dev activate ||
962                 error "active device on $SINGLEMDS failed"
963         return 0
964 }
965 run_test 41 "read from a valid osc while other oscs are invalid"
966
967 # test MDS recovery after ost failure
968 test_42() {
969         blocks=$(df -P $MOUNT | tail -n 1 | awk '{ print $2 }')
970         createmany -o $DIR/$tfile-%d 800 ||
971                 error "createmany -o $DIR/$tfile failed"
972         replay_barrier ost1
973         unlinkmany $DIR/$tfile-%d 0 400
974         debugsave
975         lctl set_param debug=-1
976         facet_failover ost1
977
978         # osc is evicted, fs is smaller (but only with failout OSTs (bug 7287)
979         #blocks_after=`df -P $MOUNT | tail -n 1 | awk '{ print $2 }'`
980         #[ $blocks_after -lt $blocks ] || return 1
981         echo "wait for MDS to timeout and recover"
982         sleep $((TIMEOUT * 2))
983         debugrestore
984         unlinkmany $DIR/$tfile-%d 400 400 ||
985                 error "unlinkmany $DIR/$tfile 400 failed"
986         $CHECKSTAT -t file $DIR/$tfile-* &&
987                 error "$CHECKSTAT $DIR/$tfile-* attribute check should fail" ||
988                 true
989 }
990 run_test 42 "recovery after ost failure"
991
992 # timeout in MDS/OST recovery RPC will LBUG MDS
993 test_43() { # bug 2530
994         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
995
996         replay_barrier $SINGLEMDS
997
998         # OBD_FAIL_OST_CREATE_NET 0x204
999         do_facet ost1 "lctl set_param fail_loc=0x80000204"
1000         fail $SINGLEMDS
1001         sleep 10
1002
1003         return 0
1004 }
1005 run_test 43 "mds osc import failure during recovery; don't LBUG"
1006
1007 test_44a() { # was test_44
1008         local at_max_saved=0
1009
1010         local mdcdev=$($LCTL dl |
1011                 awk "/${FSNAME}-MDT0000-mdc-/ {if (\$2 == \"UP\") {print \$1}}")
1012         [ "$mdcdev" ] || error "${FSNAME}-MDT0000-mdc- not UP"
1013         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
1014                 { $LCTL dl; error "looking for mdcdev=$mdcdev"; }
1015
1016         # adaptive timeouts slow this way down
1017         if at_is_enabled; then
1018                 at_max_saved=$(at_max_get mds)
1019                 at_max_set 40 mds
1020         fi
1021
1022         for i in $(seq 1 10); do
1023                 echo "$i of 10 ($(date +%s))"
1024                 do_facet $SINGLEMDS \
1025                         "lctl get_param -n md[ts].*.mdt.timeouts | grep service"
1026                 #define OBD_FAIL_TGT_CONN_RACE     0x701
1027                 do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000701"
1028                 # lctl below may fail, it is valid case
1029                 $LCTL --device $mdcdev recover
1030                 $LFS df $MOUNT
1031         done
1032         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1033         [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved mds
1034         return 0
1035 }
1036 run_test 44a "race in target handle connect"
1037
1038 test_44b() {
1039         local mdcdev=$($LCTL dl |
1040                 awk "/${FSNAME}-MDT0000-mdc-/ {if (\$2 == \"UP\") {print \$1}}")
1041         [ "$mdcdev" ] || error "${FSNAME}-MDT0000-mdc not up"
1042         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
1043                 { echo mdcdev=$mdcdev; $LCTL dl;
1044                   error "more than one ${FSNAME}-MDT0000-mdc"; }
1045
1046         for i in $(seq 1 10); do
1047                 echo "$i of 10 ($(date +%s))"
1048                 do_facet $SINGLEMDS \
1049                         "lctl get_param -n md[ts].*.mdt.timeouts | grep service"
1050                 #define OBD_FAIL_TGT_DELAY_RECONNECT 0x704
1051                 do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000704"
1052                 # lctl below may fail, it is valid case
1053                 $LCTL --device $mdcdev recover
1054                 df $MOUNT
1055         done
1056         return 0
1057 }
1058 run_test 44b "race in target handle connect"
1059
1060 test_44c() {
1061         replay_barrier $SINGLEMDS
1062         createmany -m $DIR/$tfile-%d 100 || error "failed to create directories"
1063         #define OBD_FAIL_TGT_RCVG_FLAG 0x712
1064         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000712"
1065         fail_abort $SINGLEMDS
1066         unlinkmany $DIR/$tfile-%d 100 && error "unliked after fail abort"
1067         fail $SINGLEMDS
1068         unlinkmany $DIR/$tfile-%d 100 && error "unliked after fail"
1069         return 0
1070 }
1071 run_test 44c "race in target handle connect"
1072
1073 # Handle failed close
1074 test_45() {
1075         local mdcdev=$($LCTL get_param -n devices |
1076                 awk "/ ${FSNAME}-MDT0000-mdc-/ {print \$1}")
1077         [ "$mdcdev" ] || error "${FSNAME}-MDT0000-mdc not up"
1078         [ $(echo $mdcdev | wc -w) -eq 1 ] ||
1079                 { echo mdcdev=$mdcdev; $LCTL dl;
1080                   error "more than one ${FSNAME}-MDT0000-mdc"; }
1081
1082         $LCTL --device $mdcdev recover ||
1083                 error "$LCTL --device $mdcdev recover failed"
1084
1085         multiop_bg_pause $DIR/$tfile O_c ||
1086                 error "multiop_bg_pause $DIR/$tfile failed"
1087         pid=$!
1088
1089         # This will cause the CLOSE to fail before even
1090         # allocating a reply buffer
1091         $LCTL --device $mdcdev deactivate ||
1092                 error "$LCTL --device $mdcdev deactivate failed"
1093
1094         # try the close
1095         kill -USR1 $pid || error "multiop $pid not running"
1096         wait $pid || error "multiop $pid failed"
1097
1098         $LCTL --device $mdcdev activate ||
1099                 error "$LCTL --device $mdcdev activate failed"
1100         sleep 1
1101
1102         $CHECKSTAT -t file $DIR/$tfile ||
1103                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
1104         return 0
1105 }
1106 run_test 45 "Handle failed close"
1107
1108 test_46() {
1109         dmesg -c >/dev/null
1110         drop_reply "touch $DIR/$tfile"
1111         fail $SINGLEMDS
1112         # ironically, the previous test, 45, will cause a real forced close,
1113         # so just look for one for this test
1114         dmesg | grep -i "force closing client file handle for $tfile" &&
1115                 error "found force closing in dmesg"
1116         return 0
1117 }
1118 run_test 46 "Don't leak file handle after open resend (3325)"
1119
1120 test_47() { # bug 2824
1121         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1122
1123         # create some files to make sure precreate has been done on all
1124         # OSTs. (just in case this test is run independently)
1125         createmany -o $DIR/$tfile 20  ||
1126                 error "createmany create $DIR/$tfile failed"
1127
1128         # OBD_FAIL_OST_CREATE_NET 0x204
1129         fail ost1
1130         do_facet ost1 "lctl set_param fail_loc=0x80000204"
1131         client_up || error "client_up failed"
1132
1133         # let the MDS discover the OST failure, attempt to recover, fail
1134         # and recover again.
1135         sleep $((3 * TIMEOUT))
1136
1137         # Without 2824, this createmany would hang
1138         createmany -o $DIR/$tfile 20 ||
1139                 error "createmany recraete $DIR/$tfile failed"
1140         unlinkmany $DIR/$tfile 20 || error "unlinkmany $DIR/$tfile failed"
1141
1142         return 0
1143 }
1144 run_test 47 "MDS->OSC failure during precreate cleanup (2824)"
1145
1146 test_48() {
1147         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1148         [ "$OSTCOUNT" -lt "2" ] && skip_env "needs >= 2 OSTs" && return
1149
1150         replay_barrier $SINGLEMDS
1151         createmany -o $DIR/$tfile 20  ||
1152                 error "createmany -o $DIR/$tfile failed"
1153         # OBD_FAIL_OST_EROFS 0x216
1154         facet_failover $SINGLEMDS
1155         do_facet ost1 "lctl set_param fail_loc=0x80000216"
1156         client_up || error "client_up failed"
1157
1158         # let the MDS discover the OST failure, attempt to recover, fail
1159         # and recover again.
1160         sleep $((3 * TIMEOUT))
1161
1162         createmany -o $DIR/$tfile 20 20 ||
1163                 error "createmany recraete $DIR/$tfile failed"
1164         unlinkmany $DIR/$tfile 40 || error "unlinkmany $DIR/$tfile failed"
1165         return 0
1166 }
1167 run_test 48 "MDS->OSC failure during precreate cleanup (2824)"
1168
1169 test_50() {
1170         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $ost1_svc)
1171         local oscdev=$(do_facet $SINGLEMDS "lctl get_param -n devices" |
1172                 grep $mdtosc | awk '{print $1}')
1173         [ "$oscdev" ] || error "could not find OSC device on MDS"
1174         do_facet $SINGLEMDS $LCTL --device $oscdev recover ||
1175                 error "OSC device $oscdev recovery failed"
1176         do_facet $SINGLEMDS $LCTL --device $oscdev recover ||
1177                 error "second OSC device $oscdev recovery failed"
1178         # give the mds_lov_sync threads a chance to run
1179         sleep 5
1180 }
1181 run_test 50 "Double OSC recovery, don't LASSERT (3812)"
1182
1183 # b3764 timed out lock replay
1184 test_52() {
1185         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.6.90) ] &&
1186                 skip "MDS prior to 2.6.90 handle LDLM_REPLY_NET incorrectly" &&
1187                 return 0
1188
1189         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
1190         cancel_lru_locks mdc
1191
1192         multiop_bg_pause $DIR/$tfile s_s || error "multiop $DIR/$tfile failed"
1193         mpid=$!
1194
1195         #define OBD_FAIL_MDS_LDLM_REPLY_NET     0x157
1196         lctl set_param -n ldlm.cancel_unused_locks_before_replay "0"
1197         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000157"
1198
1199         fail $SINGLEMDS || error "fail $SINGLEMDS failed"
1200         kill -USR1 $mpid
1201         wait $mpid || error "multiop_bg_pause pid failed"
1202
1203         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1204         lctl set_param fail_loc=0x0
1205         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
1206         rm -f $DIR/$tfile
1207 }
1208 run_test 52 "time out lock replay (3764)"
1209
1210 # bug 3462 - simultaneous MDC requests
1211 test_53a() {
1212         [[ $(lctl get_param mdc.*.import |
1213              grep "connect_flags:.*multi_mod_rpc") ]] ||
1214                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
1215
1216         cancel_lru_locks mdc    # cleanup locks from former test cases
1217         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1218         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1219         multiop $DIR/${tdir}-1/f O_c &
1220         close_pid=$!
1221         # give multiop a change to open
1222         sleep 1
1223
1224         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1225         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1226         kill -USR1 $close_pid
1227         cancel_lru_locks mdc    # force the close
1228         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1229
1230         mcreate $DIR/${tdir}-2/f || error "mcreate $DIR/${tdir}-2/f failed"
1231
1232         # close should still be here
1233         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1234
1235         replay_barrier_nodf $SINGLEMDS
1236         fail $SINGLEMDS
1237         wait $close_pid || error "close_pid $close_pid failed"
1238
1239         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1240                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1241         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1242                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1243         rm -rf $DIR/${tdir}-*
1244 }
1245 run_test 53a "|X| close request while two MDC requests in flight"
1246
1247 test_53b() {
1248         cancel_lru_locks mdc    # cleanup locks from former test cases
1249
1250         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1251         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1252         multiop_bg_pause $DIR/${tdir}-1/f O_c ||
1253                 error "multiop_bg_pause $DIR/${tdir}-1/f failed"
1254         close_pid=$!
1255
1256         #define OBD_FAIL_MDS_REINT_NET 0x107
1257         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1258         mcreate $DIR/${tdir}-2/f &
1259         open_pid=$!
1260         sleep 1
1261
1262         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1263         kill -USR1 $close_pid
1264         cancel_lru_locks mdc    # force the close
1265         wait $close_pid || error "close_pid $close_pid failed"
1266         # open should still be here
1267         [ -d /proc/$open_pid ] || error "open_pid doesn't exist"
1268
1269         replay_barrier_nodf $SINGLEMDS
1270         fail $SINGLEMDS
1271         wait $open_pid || error "open_pid failed"
1272
1273         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1274                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1275         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1276                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1277         rm -rf $DIR/${tdir}-*
1278 }
1279 run_test 53b "|X| open request while two MDC requests in flight"
1280
1281 test_53c() {
1282         cancel_lru_locks mdc    # cleanup locks from former test cases
1283
1284         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1285         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1286         multiop $DIR/${tdir}-1/f O_c &
1287         close_pid=$!
1288
1289         #define OBD_FAIL_MDS_REINT_NET 0x107
1290         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1291         mcreate $DIR/${tdir}-2/f &
1292         open_pid=$!
1293         sleep 1
1294
1295         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1296         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1297         kill -USR1 $close_pid
1298         cancel_lru_locks mdc    # force the close
1299
1300         #bz20647: make sure all pids exist before failover
1301         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1302         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1303         replay_barrier_nodf $SINGLEMDS
1304         fail_nodf $SINGLEMDS
1305         wait $open_pid || error "open_pid failed"
1306         sleep 2
1307         # close should be gone
1308         [ -d /proc/$close_pid ] && error "close_pid should not exist"
1309         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1310
1311         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1312                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1313         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1314                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1315         rm -rf $DIR/${tdir}-*
1316 }
1317 run_test 53c "|X| open request and close request while two MDC requests in flight"
1318
1319 test_53d() {
1320         [[ $(lctl get_param mdc.*.import |
1321              grep "connect_flags:.*multi_mod_rpc") ]] ||
1322                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
1323
1324         cancel_lru_locks mdc    # cleanup locks from former test cases
1325
1326         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1327         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1328         multiop $DIR/${tdir}-1/f O_c &
1329         close_pid=$!
1330         # give multiop a chance to open
1331         sleep 1
1332
1333         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1334         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1335         kill -USR1 $close_pid
1336         cancel_lru_locks mdc    # force the close
1337         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1338         mcreate $DIR/${tdir}-2/f || error "mcreate $DIR/${tdir}-2/f failed"
1339
1340         # close should still be here
1341         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1342         fail $SINGLEMDS
1343         wait $close_pid || error "close_pid failed"
1344
1345         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1346                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1347         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1348                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1349         rm -rf $DIR/${tdir}-*
1350 }
1351 run_test 53d "close reply while two MDC requests in flight"
1352
1353 test_53e() {
1354         cancel_lru_locks mdc    # cleanup locks from former test cases
1355
1356         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1357         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1358         multiop $DIR/${tdir}-1/f O_c &
1359         close_pid=$!
1360
1361         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1362         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1363         mcreate $DIR/${tdir}-2/f &
1364         open_pid=$!
1365         sleep 1
1366
1367         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1368         kill -USR1 $close_pid
1369         cancel_lru_locks mdc    # force the close
1370         wait $close_pid || error "close_pid failed"
1371         # open should still be here
1372         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1373
1374         replay_barrier_nodf $SINGLEMDS
1375         fail $SINGLEMDS
1376         wait $open_pid || error "open_pid failed"
1377
1378         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1379                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1380         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1381                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1382         rm -rf $DIR/${tdir}-*
1383 }
1384 run_test 53e "|X| open reply while two MDC requests in flight"
1385
1386 test_53f() {
1387         cancel_lru_locks mdc    # cleanup locks from former test cases
1388
1389         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1390         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1391         multiop $DIR/${tdir}-1/f O_c &
1392         close_pid=$!
1393
1394         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1395         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1396         mcreate $DIR/${tdir}-2/f &
1397         open_pid=$!
1398         sleep 1
1399
1400         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1401         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1402         kill -USR1 $close_pid
1403         cancel_lru_locks mdc    # force the close
1404
1405         #bz20647: make sure all pids are exists before failover
1406         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1407         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1408         replay_barrier_nodf $SINGLEMDS
1409         fail_nodf $SINGLEMDS
1410         wait $open_pid || error "open_pid failed"
1411         sleep 2
1412         # close should be gone
1413         [ -d /proc/$close_pid ] && error "close_pid should not exist"
1414         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1415
1416         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1417                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1418         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1419                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1420         rm -rf $DIR/${tdir}-*
1421 }
1422 run_test 53f "|X| open reply and close reply while two MDC requests in flight"
1423
1424 test_53g() {
1425         cancel_lru_locks mdc    # cleanup locks from former test cases
1426
1427         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1428         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1429         multiop $DIR/${tdir}-1/f O_c &
1430         close_pid=$!
1431
1432         #define OBD_FAIL_MDS_REINT_NET_REP 0x119
1433         do_facet $SINGLEMDS "lctl set_param fail_loc=0x119"
1434         mcreate $DIR/${tdir}-2/f &
1435         open_pid=$!
1436         sleep 1
1437
1438         #define OBD_FAIL_MDS_CLOSE_NET 0x115
1439         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
1440         kill -USR1 $close_pid
1441         cancel_lru_locks mdc    # force the close
1442         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1443
1444         #bz20647: make sure all pids are exists before failover
1445         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1446         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1447         replay_barrier_nodf $SINGLEMDS
1448         fail_nodf $SINGLEMDS
1449         wait $open_pid || error "open_pid failed"
1450         sleep 2
1451         # close should be gone
1452         [ -d /proc/$close_pid ] && error "close_pid should not exist"
1453
1454         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1455                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1456         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1457                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1458         rm -rf $DIR/${tdir}-*
1459 }
1460 run_test 53g "|X| drop open reply and close request while close and open are both in flight"
1461
1462 test_53h() {
1463         cancel_lru_locks mdc    # cleanup locks from former test cases
1464
1465         mkdir $DIR/${tdir}-1 || error "mkdir $DIR/${tdir}-1 failed"
1466         mkdir $DIR/${tdir}-2 || error "mkdir $DIR/${tdir}-2 failed"
1467         multiop $DIR/${tdir}-1/f O_c &
1468         close_pid=$!
1469
1470         #define OBD_FAIL_MDS_REINT_NET 0x107
1471         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
1472         mcreate $DIR/${tdir}-2/f &
1473         open_pid=$!
1474         sleep 1
1475
1476         #define OBD_FAIL_MDS_CLOSE_NET_REP 0x13b
1477         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013b"
1478         kill -USR1 $close_pid
1479         cancel_lru_locks mdc    # force the close
1480         sleep 1
1481
1482         #bz20647: make sure all pids are exists before failover
1483         [ -d /proc/$close_pid ] || error "close_pid doesn't exist"
1484         [ -d /proc/$open_pid ] || error "open_pid doesn't exists"
1485         replay_barrier_nodf $SINGLEMDS
1486         fail_nodf $SINGLEMDS
1487         wait $open_pid || error "open_pid failed"
1488         sleep 2
1489         # close should be gone
1490         [ -d /proc/$close_pid ] && error "close_pid should not exist"
1491         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1492
1493         $CHECKSTAT -t file $DIR/${tdir}-1/f ||
1494                 error "$CHECKSTAT $DIR/${tdir}-1/f attribute check failed"
1495         $CHECKSTAT -t file $DIR/${tdir}-2/f ||
1496                 error "$CHECKSTAT $DIR/${tdir}-2/f attribute check failed"
1497         rm -rf $DIR/${tdir}-*
1498 }
1499 run_test 53h "open request and close reply while two MDC requests in flight"
1500
1501 #b3761 ASSERTION(hash != 0) failed
1502 test_55() {
1503 # OBD_FAIL_MDS_OPEN_CREATE | OBD_FAIL_ONCE
1504     do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012b"
1505     touch $DIR/$tfile &
1506     # give touch a chance to run
1507     sleep 5
1508     do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1509     rm $DIR/$tfile
1510     return 0
1511 }
1512 run_test 55 "let MDS_CHECK_RESENT return the original return code instead of 0"
1513
1514 #b3440 ASSERTION(rec->ur_fid2->id) failed
1515 test_56() {
1516     ln -s foo $DIR/$tfile
1517     replay_barrier $SINGLEMDS
1518     #drop_reply "cat $DIR/$tfile"
1519     fail $SINGLEMDS
1520     sleep 10
1521 }
1522 run_test 56 "don't replay a symlink open request (3440)"
1523
1524 #recovery one mds-ost setattr from llog
1525 test_57() {
1526         #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1527         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1528         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
1529         replay_barrier $SINGLEMDS
1530         fail $SINGLEMDS
1531         wait_recovery_complete $SINGLEMDS || error "MDS recovery is not done"
1532         wait_mds_ost_sync || error "wait_mds_ost_sync failed"
1533         $CHECKSTAT -t file $DIR/$tfile ||
1534                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
1535         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1536         rm $DIR/$tfile
1537 }
1538 run_test 57 "test recovery from llog for setattr op"
1539
1540 cleanup_58() {
1541         zconf_umount $(hostname) $MOUNT2
1542         trap - EXIT
1543 }
1544
1545 #recovery many mds-ost setattr from llog
1546 test_58a() {
1547         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1548         #define OBD_FAIL_MDS_OST_SETATTR       0x12c
1549         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012c"
1550         createmany -o $DIR/$tdir/$tfile-%d 2500
1551         replay_barrier $SINGLEMDS
1552         fail $SINGLEMDS
1553         sleep 2
1554         $CHECKSTAT -t file $DIR/$tdir/$tfile-* >/dev/null ||
1555                 error "$CHECKSTAT $DIR/$tfile-* attribute check failed"
1556         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
1557         unlinkmany $DIR/$tdir/$tfile-%d 2500 ||
1558                 error "unlinkmany $DIR/$tfile failed"
1559         rmdir $DIR/$tdir
1560 }
1561 run_test 58a "test recovery from llog for setattr op (test llog_gen_rec)"
1562
1563 test_58b() {
1564         local orig
1565         local new
1566
1567         trap cleanup_58 EXIT
1568
1569         large_xattr_enabled &&
1570                 orig="$(generate_string $(max_xattr_size))" || orig="bar"
1571         # Original extended attribute can be long. Print a small version of
1572         # attribute if an error occurs
1573         local sm_msg=$(printf "%.9s" $orig)
1574
1575         mount_client $MOUNT2 || error "mount_client on $MOUNT2 failed"
1576         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1577         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
1578         replay_barrier $SINGLEMDS
1579         setfattr -n trusted.foo -v $orig $DIR/$tdir/$tfile
1580         fail $SINGLEMDS
1581         new=$(get_xattr_value trusted.foo $MOUNT2/$tdir/$tfile)
1582         [[ "$new" = "$orig" ]] ||
1583                 error "xattr set ($sm_msg...) differs from xattr get ($new)"
1584         rm -f $DIR/$tdir/$tfile
1585         rmdir $DIR/$tdir
1586         cleanup_58
1587         wait_clients_import_state ${CLIENTS:-$HOSTNAME} "mgs" FULL
1588 }
1589 run_test 58b "test replay of setxattr op"
1590
1591 test_58c() { # bug 16570
1592         local orig
1593         local orig1
1594         local new
1595
1596         trap cleanup_58 EXIT
1597
1598         if large_xattr_enabled; then
1599                 local xattr_size=$(max_xattr_size)
1600                 orig="$(generate_string $((xattr_size / 2)))"
1601                 orig1="$(generate_string $xattr_size)"
1602         else
1603                 orig="bar"
1604                 orig1="bar1"
1605         fi
1606
1607         # PING_INTERVAL max(obd_timeout / 4, 1U)
1608         sleep $((TIMEOUT / 4))
1609
1610         # Original extended attribute can be long. Print a small version of
1611         # attribute if an error occurs
1612         local sm_msg=$(printf "%.9s" $orig)
1613         local sm_msg1=$(printf "%.9s" $orig1)
1614
1615         mount_client $MOUNT2 || error "mount_client on $MOUNT2 failed"
1616         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1617         touch $DIR/$tdir/$tfile || error "touch $DIR/$tdir/$tfile failed"
1618         drop_request "setfattr -n trusted.foo -v $orig $DIR/$tdir/$tfile" ||
1619                 error "drop_request for setfattr failed"
1620         new=$(get_xattr_value trusted.foo $MOUNT2/$tdir/$tfile)
1621         [[ "$new" = "$orig" ]] ||
1622                 error "xattr set ($sm_msg...) differs from xattr get ($new)"
1623         drop_reint_reply "setfattr -n trusted.foo1 \
1624                           -v $orig1 $DIR/$tdir/$tfile" ||
1625                 error "drop_reint_reply for setfattr failed"
1626         new=$(get_xattr_value trusted.foo1 $MOUNT2/$tdir/$tfile)
1627         [[ "$new" = "$orig1" ]] ||
1628                 error "second xattr set ($sm_msg1...) differs xattr get ($new)"
1629         rm -f $DIR/$tdir/$tfile
1630         rmdir $DIR/$tdir
1631         cleanup_58
1632 }
1633 run_test 58c "resend/reconstruct setxattr op"
1634
1635 # log_commit_thread vs filter_destroy race used to lead to import use after free
1636 # bug 11658
1637 test_59() {
1638         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1639
1640         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1641         createmany -o $DIR/$tdir/$tfile-%d 200 ||
1642                 error "createmany create files failed"
1643         sync
1644         unlinkmany $DIR/$tdir/$tfile-%d 200 ||
1645                 error "unlinkmany $DIR/$tdir/$tfile failed"
1646         #define OBD_FAIL_PTLRPC_DELAY_RECOV       0x507
1647         do_facet ost1 "lctl set_param fail_loc=0x507"
1648         fail ost1
1649         fail $SINGLEMDS
1650         do_facet ost1 "lctl set_param fail_loc=0x0"
1651         sleep 20
1652         rmdir $DIR/$tdir
1653 }
1654 run_test 59 "test log_commit_thread vs filter_destroy race"
1655
1656 # race between add unlink llog vs cat log init in post_recovery (only for b1_6)
1657 # bug 12086: should no oops and No ctxt error for this test
1658 test_60() {
1659         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1660         createmany -o $DIR/$tdir/$tfile-%d 200 ||
1661                 error "createmany create files failed"
1662         replay_barrier $SINGLEMDS
1663         unlinkmany $DIR/$tdir/$tfile-%d 0 100
1664         fail $SINGLEMDS
1665         unlinkmany $DIR/$tdir/$tfile-%d 100 100
1666         local no_ctxt=$(dmesg | grep "No ctxt")
1667         [ -z "$no_ctxt" ] || error "ctxt is not initialized in recovery"
1668 }
1669 run_test 60 "test llog post recovery init vs llog unlink"
1670
1671 #test race  llog recovery thread vs llog cleanup
1672 test_61a() {    # was test_61
1673         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1674
1675         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1676         createmany -o $DIR/$tdir/$tfile-%d 800 ||
1677                 error "createmany create files failed"
1678         replay_barrier ost1
1679         unlinkmany $DIR/$tdir/$tfile-%d 800
1680         #   OBD_FAIL_OST_LLOG_RECOVERY_TIMEOUT 0x221
1681         set_nodes_failloc "$(osts_nodes)" 0x80000221
1682         facet_failover ost1
1683         sleep 10
1684         fail ost1
1685         sleep 30
1686         set_nodes_failloc "$(osts_nodes)" 0x0
1687
1688         $CHECKSTAT -t file $DIR/$tdir/$tfile-* &&
1689                 error "$CHECKSTAT $DIR/$tdir/$tfile attribute check should fail"
1690         rmdir $DIR/$tdir
1691 }
1692 run_test 61a "test race llog recovery vs llog cleanup"
1693
1694 #test race  mds llog sync vs llog cleanup
1695 test_61b() {
1696         #   OBD_FAIL_MDS_LLOG_SYNC_TIMEOUT 0x13a
1697         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000013a"
1698         facet_failover $SINGLEMDS
1699         sleep 10
1700         fail $SINGLEMDS
1701         do_facet client dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 ||
1702                 error "dd failed"
1703 }
1704 run_test 61b "test race mds llog sync vs llog cleanup"
1705
1706 #test race  cancel cookie cb vs llog cleanup
1707 test_61c() {
1708         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1709
1710         #   OBD_FAIL_OST_CANCEL_COOKIE_TIMEOUT 0x222
1711         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
1712         set_nodes_failloc "$(osts_nodes)" 0x80000222
1713         rm $DIR/$tfile
1714         sleep 10
1715         fail ost1
1716         set_nodes_failloc "$(osts_nodes)" 0x0
1717 }
1718 run_test 61c "test race mds llog sync vs llog cleanup"
1719
1720 test_61d() { # bug 16002 # bug 17466 # bug 22137
1721 #   OBD_FAIL_OBD_LLOG_SETUP        0x605
1722     stop mgs
1723     do_facet mgs "lctl set_param fail_loc=0x80000605"
1724     start mgs $(mgsdevname) $MGS_MOUNT_OPTS &&
1725         error "mgs start should have failed"
1726     do_facet mgs "lctl set_param fail_loc=0"
1727     start mgs $(mgsdevname) $MGS_MOUNT_OPTS || error "cannot restart mgs"
1728 }
1729 run_test 61d "error in llog_setup should cleanup the llog context correctly"
1730
1731 test_62() { # Bug 15756 - don't mis-drop resent replay
1732         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
1733         replay_barrier $SINGLEMDS
1734         createmany -o $DIR/$tdir/$tfile- 25 ||
1735                 error "createmany create files failed"
1736         #define OBD_FAIL_TGT_REPLAY_DROP         0x707
1737         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000707"
1738         fail $SINGLEMDS
1739         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1740         unlinkmany $DIR/$tdir/$tfile- 25 ||
1741                 error "unlinkmany $DIR/$tdir/$tfile failed"
1742         return 0
1743 }
1744 run_test 62 "don't mis-drop resent replay"
1745
1746 #Adaptive Timeouts (bug 3055)
1747 AT_MAX_SET=0
1748
1749 at_cleanup () {
1750     local var
1751     local facet
1752     local at_new
1753
1754     echo "Cleaning up AT ..."
1755     if [ -n "$ATOLDBASE" ]; then
1756         local at_history=$($LCTL get_param -n at_history)
1757         do_facet $SINGLEMDS "lctl set_param at_history=$at_history" || true
1758         do_facet ost1 "lctl set_param at_history=$at_history" || true
1759     fi
1760
1761         if [ $AT_MAX_SET -ne 0 ]; then
1762                 for facet in mds client ost; do
1763                         var=AT_MAX_SAVE_${facet}
1764                         echo restore AT on $facet to saved value ${!var}
1765                         at_max_set ${!var} $facet
1766                         at_new=$(at_max_get $facet)
1767                         echo Restored AT value on $facet $at_new
1768                         [ $at_new -eq ${!var} ] ||
1769                         error "AT value not restored SAVED ${!var} NEW $at_new"
1770                 done
1771         fi
1772 }
1773
1774 at_start()
1775 {
1776     local at_max_new=600
1777
1778     # Save at_max original values
1779     local facet
1780     if [ $AT_MAX_SET -eq 0 ]; then
1781         # Suppose that all osts have the same at_max
1782         for facet in mds client ost; do
1783             eval AT_MAX_SAVE_${facet}=$(at_max_get $facet)
1784         done
1785     fi
1786     local at_max
1787     for facet in mds client ost; do
1788         at_max=$(at_max_get $facet)
1789         if [ $at_max -ne $at_max_new ]; then
1790             echo "AT value on $facet is $at_max, set it by force temporarily to $at_max_new"
1791             at_max_set $at_max_new $facet
1792             AT_MAX_SET=1
1793         fi
1794     done
1795
1796     if [ -z "$ATOLDBASE" ]; then
1797         ATOLDBASE=$(do_facet $SINGLEMDS "lctl get_param -n at_history")
1798         # speed up the timebase so we can check decreasing AT
1799         do_facet $SINGLEMDS "lctl set_param at_history=8" || true
1800         do_facet ost1 "lctl set_param at_history=8" || true
1801
1802         # sleep for a while to cool down, should be > 8s and also allow
1803         # at least one ping to be sent. simply use TIMEOUT to be safe.
1804         sleep $TIMEOUT
1805     fi
1806 }
1807
1808 test_65a() #bug 3055
1809 {
1810     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1811
1812     at_start || return 0
1813     $LCTL dk > /dev/null
1814     debugsave
1815     $LCTL set_param debug="other"
1816     # Slow down a request to the current service time, this is critical
1817     # because previous tests may have caused this value to increase.
1818     REQ_DELAY=`lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts |
1819                awk '/portal 12/ {print $5}'`
1820     REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1821
1822     do_facet $SINGLEMDS lctl set_param fail_val=$((${REQ_DELAY} * 1000))
1823 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1824     do_facet $SINGLEMDS $LCTL set_param fail_loc=0x8000050a
1825     createmany -o $DIR/$tfile 10 > /dev/null
1826     unlinkmany $DIR/$tfile 10 > /dev/null
1827     # check for log message
1828     $LCTL dk | grep "Early reply #" || error "No early reply"
1829     debugrestore
1830     # client should show REQ_DELAY estimates
1831     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1832     sleep 9
1833     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep portal
1834 }
1835 run_test 65a "AT: verify early replies"
1836
1837 test_65b() #bug 3055
1838 {
1839         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1840
1841         at_start || return 0
1842         # turn on D_ADAPTTO
1843         debugsave
1844         $LCTL set_param debug="other trace"
1845         $LCTL dk > /dev/null
1846         # Slow down a request to the current service time, this is critical
1847         # because previous tests may have caused this value to increase.
1848         $LFS setstripe --stripe-index=0 --stripe-count=1 $DIR/$tfile ||
1849                 error "$LFS setstripe failed for $DIR/$tfile"
1850
1851         multiop $DIR/$tfile Ow1yc
1852         REQ_DELAY=`lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts |
1853                    awk '/portal 6/ {print $5}'`
1854         REQ_DELAY=$((${REQ_DELAY} + ${REQ_DELAY} / 4 + 5))
1855
1856         do_facet ost1 lctl set_param fail_val=${REQ_DELAY}
1857         #define OBD_FAIL_OST_BRW_PAUSE_PACK      0x224
1858         do_facet ost1 $LCTL set_param fail_loc=0x224
1859
1860         rm -f $DIR/$tfile
1861         $LFS setstripe --stripe-index=0 --stripe-count=1 $DIR/$tfile ||
1862                 error "$LFS setstripe failed"
1863         # force some real bulk transfer
1864         multiop $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
1865
1866         do_facet ost1 $LCTL set_param fail_loc=0
1867         # check for log message
1868         $LCTL dk | grep "Early reply #" || error "No early reply"
1869         debugrestore
1870         # client should show REQ_DELAY estimates
1871         lctl get_param -n osc.${FSNAME}-OST0000-osc-*.timeouts | grep portal
1872 }
1873 run_test 65b "AT: verify early replies on packed reply / bulk"
1874
1875 test_66a() #bug 3055
1876 {
1877     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1878
1879     at_start || return 0
1880     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1881     # adjust 5s at a time so no early reply is sent (within deadline)
1882     do_facet $SINGLEMDS "$LCTL set_param fail_val=5000"
1883 #define OBD_FAIL_PTLRPC_PAUSE_REQ        0x50a
1884     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x8000050a"
1885     createmany -o $DIR/$tfile 20 > /dev/null
1886     unlinkmany $DIR/$tfile 20 > /dev/null
1887     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1888     do_facet $SINGLEMDS "$LCTL set_param fail_val=10000"
1889     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x8000050a"
1890     createmany -o $DIR/$tfile 20 > /dev/null
1891     unlinkmany $DIR/$tfile 20 > /dev/null
1892     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1893     do_facet $SINGLEMDS "$LCTL set_param fail_loc=0"
1894     sleep 9
1895     createmany -o $DIR/$tfile 20 > /dev/null
1896     unlinkmany $DIR/$tfile 20 > /dev/null
1897     lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | grep "portal 12"
1898     CUR=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $5}')
1899     WORST=$(lctl get_param -n mdc.${FSNAME}-MDT0000-mdc-*.timeouts | awk '/portal 12/ {print $7}')
1900     echo "Current MDT timeout $CUR, worst $WORST"
1901     [ $CUR -lt $WORST ] || error "Current $CUR should be less than worst $WORST"
1902 }
1903 run_test 66a "AT: verify MDT service time adjusts with no early replies"
1904
1905 test_66b() #bug 3055
1906 {
1907         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1908
1909         at_start || return 0
1910         ORIG=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1911                 awk '/network/ {print $4}')
1912         $LCTL set_param fail_val=$(($ORIG + 5))
1913         #define OBD_FAIL_PTLRPC_PAUSE_REP      0x50c
1914         $LCTL set_param fail_loc=0x50c
1915         touch $DIR/$tfile > /dev/null 2>&1
1916         $LCTL set_param fail_loc=0
1917         CUR=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1918                 awk '/network/ {print $4}')
1919         WORST=$(lctl get_param -n mdc.${FSNAME}-MDT0000*.timeouts |
1920                 awk '/network/ {print $6}')
1921         echo "network timeout orig $ORIG, cur $CUR, worst $WORST"
1922         [ $WORST -gt $ORIG ] ||
1923                 error "Worst $WORST should be worse than orig $ORIG"
1924 }
1925 run_test 66b "AT: verify net latency adjusts"
1926
1927 test_67a() #bug 3055
1928 {
1929     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1930
1931     at_start || return 0
1932     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1933     # sleeping threads may drive values above this
1934     do_facet ost1 "$LCTL set_param fail_val=400"
1935 #define OBD_FAIL_PTLRPC_PAUSE_REQ    0x50a
1936     do_facet ost1 "$LCTL set_param fail_loc=0x50a"
1937     createmany -o $DIR/$tfile 20 > /dev/null
1938     unlinkmany $DIR/$tfile 20 > /dev/null
1939     do_facet ost1 "$LCTL set_param fail_loc=0"
1940     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1941     ATTEMPTS=$(($CONN2 - $CONN1))
1942     echo "$ATTEMPTS osc reconnect attempts on gradual slow"
1943         [ $ATTEMPTS -gt 0 ] &&
1944                 error_ignore bz13721 "AT should have prevented reconnect"
1945         return 0
1946 }
1947 run_test 67a "AT: verify slow request processing doesn't induce reconnects"
1948
1949 test_67b() #bug 3055
1950 {
1951     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1952
1953     at_start || return 0
1954     CONN1=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1955
1956         # exhaust precreations on ost1
1957         local OST=$(ostname_from_index 0)
1958         local mdtosc=$(get_mdtosc_proc_path mds $OST)
1959         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1960                         osp.$mdtosc.prealloc_last_id)
1961         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1962                         osp.$mdtosc.prealloc_next_id)
1963
1964         mkdir -p $DIR/$tdir/${OST} || error "mkdir $DIR/$tdir/${OST} failed"
1965         $LFS setstripe -i 0 -c 1 $DIR/$tdir/${OST} ||
1966                 error "$LFS setstripe failed"
1967         echo "Creating to objid $last_id on ost $OST..."
1968 #define OBD_FAIL_OST_PAUSE_CREATE        0x223
1969     do_facet ost1 "$LCTL set_param fail_val=20000"
1970     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1971     createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1972
1973     client_reconnect
1974     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1975     log "phase 2"
1976     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1977     ATTEMPTS=$(($CONN2 - $CONN1))
1978     echo "$ATTEMPTS osc reconnect attempts on instant slow"
1979     # do it again; should not timeout
1980     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1981     cp /etc/profile $DIR/$tfile || error "cp failed"
1982     do_facet ost1 "$LCTL set_param fail_loc=0"
1983     client_reconnect
1984     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1985     CONN3=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1986     ATTEMPTS=$(($CONN3 - $CONN2))
1987     echo "$ATTEMPTS osc reconnect attempts on 2nd slow"
1988     [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
1989     return 0
1990 }
1991 run_test 67b "AT: verify instant slowdown doesn't induce reconnects"
1992
1993 test_68 () #bug 13813
1994 {
1995     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1996
1997     at_start || return 0
1998     local ldlm_enqueue_min=$(find /sys -name ldlm_enqueue_min)
1999     [ -z "$ldlm_enqueue_min" ] && skip "missing /sys/.../ldlm_enqueue_min" && return 0
2000     local ldlm_enqueue_min_r=$(do_facet ost1 "find /sys -name ldlm_enqueue_min")
2001     [ -z "$ldlm_enqueue_min_r" ] && skip "missing /sys/.../ldlm_enqueue_min in the ost1" && return 0
2002     local ENQ_MIN=$(cat $ldlm_enqueue_min)
2003     local ENQ_MIN_R=$(do_facet ost1 "cat $ldlm_enqueue_min_r")
2004         echo $TIMEOUT >> $ldlm_enqueue_min
2005         do_facet ost1 "echo $TIMEOUT >> $ldlm_enqueue_min_r"
2006
2007         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2008         $LFS setstripe --stripe-index=0 -c 1 $DIR/$tdir ||
2009                 error "$LFS setstripe failed for $DIR/$tdir"
2010         #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
2011         $LCTL set_param fail_val=$(($TIMEOUT - 1))
2012         $LCTL set_param fail_loc=0x80000312
2013         cp /etc/profile $DIR/$tdir/${tfile}_1 || error "1st cp failed $?"
2014         $LCTL set_param fail_val=$((TIMEOUT * 5 / 4))
2015         $LCTL set_param fail_loc=0x80000312
2016         cp /etc/profile $DIR/$tdir/${tfile}_2 || error "2nd cp failed $?"
2017         $LCTL set_param fail_loc=0
2018
2019         echo $ENQ_MIN >> $ldlm_enqueue_min
2020         do_facet ost1 "echo $ENQ_MIN_R >> $ldlm_enqueue_min_r"
2021         rm -rf $DIR/$tdir
2022         return 0
2023 }
2024 run_test 68 "AT: verify slowing locks"
2025
2026 at_cleanup
2027 # end of AT tests includes above lines
2028
2029 # start multi-client tests
2030 test_70a () {
2031         [ -z "$CLIENTS" ] &&
2032                 { skip "Need two or more clients." && return; }
2033         [ $CLIENTCOUNT -lt 2 ] &&
2034                 { skip "Need two or more clients, have $CLIENTCOUNT" && return; }
2035
2036         echo "mount clients $CLIENTS ..."
2037         zconf_mount_clients $CLIENTS $MOUNT
2038
2039         local clients=${CLIENTS//,/ }
2040         echo "Write/read files on $DIR ; clients $CLIENTS ... "
2041         for CLIENT in $clients; do
2042                 do_node $CLIENT dd bs=1M count=10 if=/dev/zero \
2043                         of=$DIR/${tfile}_${CLIENT} 2>/dev/null ||
2044                                 error "dd failed on $CLIENT"
2045         done
2046
2047         local prev_client=$(echo $clients | sed 's/^.* \(.\+\)$/\1/')
2048         for C in ${CLIENTS//,/ }; do
2049                 do_node $prev_client dd if=$DIR/${tfile}_${C} \
2050                         of=/dev/null 2>/dev/null ||
2051                         error "dd if=$DIR/${tfile}_${C} failed on $prev_client"
2052                 prev_client=$C
2053         done
2054
2055         ls $DIR
2056 }
2057 run_test 70a "check multi client t-f"
2058
2059 check_for_process () {
2060         local clients=$1
2061         shift
2062         local prog=$@
2063
2064         killall_process $clients "$prog" -0
2065 }
2066
2067 test_70b () {
2068         local clients=${CLIENTS:-$HOSTNAME}
2069
2070         zconf_mount_clients $clients $MOUNT
2071
2072         local duration=300
2073         [ "$SLOW" = "no" ] && duration=120
2074         # set duration to 900 because it takes some time to boot node
2075         [ "$FAILURE_MODE" = HARD ] && duration=900
2076
2077         local elapsed
2078         local start_ts=$(date +%s)
2079         local cmd="rundbench 1 -t $duration"
2080         local pid=""
2081         if [ $MDSCOUNT -ge 2 ]; then
2082                 test_mkdir -p -c$MDSCOUNT $DIR/$tdir
2083                 $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
2084         fi
2085         do_nodesv $clients "set -x; MISSING_DBENCH_OK=$MISSING_DBENCH_OK \
2086                 PATH=\$PATH:$LUSTRE/utils:$LUSTRE/tests/:$DBENCH_LIB \
2087                 DBENCH_LIB=$DBENCH_LIB TESTSUITE=$TESTSUITE TESTNAME=$TESTNAME \
2088                 MOUNT=$MOUNT DIR=$DIR/$tdir/\\\$(hostname) LCTL=$LCTL $cmd" &
2089         pid=$!
2090
2091         #LU-1897 wait for all dbench copies to start
2092         while ! check_for_process $clients dbench; do
2093                 elapsed=$(($(date +%s) - start_ts))
2094                 if [ $elapsed -gt $duration ]; then
2095                         killall_process $clients dbench
2096                         error "dbench failed to start on $clients!"
2097                 fi
2098                 sleep 1
2099         done
2100
2101         log "Started rundbench load pid=$pid ..."
2102
2103         elapsed=$(($(date +%s) - start_ts))
2104         local num_failovers=0
2105         local fail_index=1
2106         while [ $elapsed -lt $duration ]; do
2107                 if ! check_for_process $clients dbench; then
2108                         error_noexit "dbench stopped on some of $clients!"
2109                         killall_process $clients dbench
2110                         break
2111                 fi
2112                 sleep 1
2113                 replay_barrier mds$fail_index
2114                 sleep 1 # give clients a time to do operations
2115                 # Increment the number of failovers
2116                 num_failovers=$((num_failovers+1))
2117                 log "$TESTNAME fail mds$fail_index $num_failovers times"
2118                 fail mds$fail_index
2119                 elapsed=$(($(date +%s) - start_ts))
2120                 if [ $fail_index -ge $MDSCOUNT ]; then
2121                         fail_index=1
2122                 else
2123                         fail_index=$((fail_index+1))
2124                 fi
2125         done
2126
2127         wait $pid || error "rundbench load on $clients failed!"
2128 }
2129 run_test 70b "dbench ${MDSCOUNT}mdts recovery; $CLIENTCOUNT clients"
2130 # end multi-client tests
2131
2132 random_fail_mdt() {
2133         local max_index=$1
2134         local duration=$2
2135         local monitor_pid=$3
2136         local elapsed
2137         local start_ts=$(date +%s)
2138         local num_failovers=0
2139         local fail_index
2140
2141         elapsed=$(($(date +%s) - start_ts))
2142         while [ $elapsed -lt $duration ]; do
2143                 fail_index=$((RANDOM%max_index+1))
2144                 kill -0 $monitor_pid ||
2145                         error "$monitor_pid stopped"
2146                 sleep 120
2147                 replay_barrier mds$fail_index
2148                 sleep 10
2149                 # Increment the number of failovers
2150                 num_failovers=$((num_failovers+1))
2151                 log "$TESTNAME fail mds$fail_index $num_failovers times"
2152                 fail mds$fail_index
2153                 elapsed=$(($(date +%s) - start_ts))
2154         done
2155 }
2156
2157 cleanup_70c() {
2158         trap 0
2159         rm -f $DIR/replay-single.70c.lck
2160         rm -rf /$DIR/$tdir
2161 }
2162
2163 test_70c () {
2164         local clients=${CLIENTS:-$HOSTNAME}
2165         local rc=0
2166
2167         zconf_mount_clients $clients $MOUNT
2168
2169         local duration=300
2170         [ "$SLOW" = "no" ] && duration=180
2171         # set duration to 900 because it takes some time to boot node
2172         [ "$FAILURE_MODE" = HARD ] && duration=600
2173
2174         local elapsed
2175         local start_ts=$(date +%s)
2176
2177         trap cleanup_70c EXIT
2178         (
2179                 while [ ! -e $DIR/replay-single.70c.lck ]; do
2180                         test_mkdir -p -c$MDSCOUNT $DIR/$tdir || break
2181                         if [ $MDSCOUNT -ge 2 ]; then
2182                                 $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir ||
2183                                 error "set default dirstripe failed"
2184                         fi
2185                         cd $DIR/$tdir || break
2186                         tar cf - /etc | tar xf - || error "tar failed in loop"
2187                 done
2188         )&
2189         tar_70c_pid=$!
2190         echo "Started tar $tar_70c_pid"
2191
2192         random_fail_mdt $MDSCOUNT $duration $tar_70c_pid
2193         kill -0 $tar_70c_pid || error "tar $tar_70c_pid stopped"
2194
2195         touch $DIR/replay-single.70c.lck
2196         wait $tar_70c_pid || error "$?: tar failed"
2197
2198         cleanup_70c
2199         true
2200 }
2201 run_test 70c "tar ${MDSCOUNT}mdts recovery"
2202
2203 cleanup_70d() {
2204         trap 0
2205         kill -9 $mkdir_70d_pid
2206 }
2207
2208 test_70d () {
2209         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2210         local clients=${CLIENTS:-$HOSTNAME}
2211         local rc=0
2212
2213         zconf_mount_clients $clients $MOUNT
2214
2215         local duration=300
2216         [ "$SLOW" = "no" ] && duration=180
2217         # set duration to 900 because it takes some time to boot node
2218         [ "$FAILURE_MODE" = HARD ] && duration=900
2219
2220         mkdir -p $DIR/$tdir
2221
2222         local elapsed
2223         local start_ts=$(date +%s)
2224
2225         trap cleanup_70d EXIT
2226         (
2227                 while true; do
2228                         $LFS mkdir -i0 -c2 $DIR/$tdir/test || {
2229                                 echo "mkdir fails"
2230                                 break
2231                         }
2232                         $LFS mkdir -i1 -c2 $DIR/$tdir/test1 || {
2233                                 echo "mkdir fails"
2234                                 break
2235                         }
2236
2237                         touch $DIR/$tdir/test/a || {
2238                                 echo "touch fails"
2239                                 break;
2240                         }
2241                         mkdir $DIR/$tdir/test/b || {
2242                                 echo "mkdir fails"
2243                                 break;
2244                         }
2245                         rm -rf $DIR/$tdir/test || {
2246                                 echo "rmdir fails"
2247                                 ls -lR $DIR/$tdir
2248                                 break
2249                         }
2250
2251                         touch $DIR/$tdir/test1/a || {
2252                                 echo "touch fails"
2253                                 break;
2254                         }
2255                         mkdir $DIR/$tdir/test1/b || {
2256                                 echo "mkdir fails"
2257                                 break;
2258                         }
2259
2260                         rm -rf $DIR/$tdir/test1 || {
2261                                 echo "rmdir fails"
2262                                 ls -lR $DIR/$tdir/test1
2263                                 break
2264                         }
2265                 done
2266         )&
2267         mkdir_70d_pid=$!
2268         echo "Started  $mkdir_70d_pid"
2269
2270         random_fail_mdt $MDSCOUNT $duration $mkdir_70d_pid
2271         kill -0 $mkdir_70d_pid || error "mkdir/rmdir $mkdir_70d_pid stopped"
2272
2273         cleanup_70d
2274         true
2275 }
2276 run_test 70d "mkdir/rmdir striped dir ${MDSCOUNT}mdts recovery"
2277
2278 test_70e () {
2279         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2280         local clients=${CLIENTS:-$HOSTNAME}
2281         local rc=0
2282
2283         lctl set_param debug=+ha
2284         zconf_mount_clients $clients $MOUNT
2285
2286         local duration=300
2287         [ "$SLOW" = "no" ] && duration=180
2288         # set duration to 900 because it takes some time to boot node
2289         [ "$FAILURE_MODE" = HARD ] && duration=900
2290
2291         mkdir -p $DIR/$tdir
2292         $LFS mkdir -i0 $DIR/$tdir/test_0
2293         $LFS mkdir -i0 $DIR/$tdir/test_1
2294         touch $DIR/$tdir/test_0/a
2295         touch $DIR/$tdir/test_1/b
2296         (
2297         while true; do
2298                 mrename $DIR/$tdir/test_0/a $DIR/$tdir/test_1/b > /dev/null || {
2299                         echo "a->b fails"
2300                         break;
2301                 }
2302
2303                 checkstat $DIR/$tdir/test_0/a && {
2304                         echo "a still exists"
2305                         break
2306                 }
2307
2308                 checkstat $DIR/$tdir/test_1/b || {
2309                         echo "b still  exists"
2310                         break
2311                 }
2312
2313                 touch $DIR/$tdir/test_0/a || {
2314                         echo "touch a fails"
2315                         break
2316                 }
2317
2318                 mrename $DIR/$tdir/test_1/b $DIR/$tdir/test_0/a > /dev/null || {
2319                         echo "a->a fails"
2320                         break;
2321                 }
2322         done
2323         )&
2324         rename_70e_pid=$!
2325         stack_trap "kill -9 $rename_70e_pid" EXIT
2326         echo "Started PID=$rename_70e_pid"
2327
2328         random_fail_mdt 2 $duration $rename_70e_pid
2329         kill -0 $rename_70e_pid || error "rename $rename_70e_pid stopped"
2330 }
2331 run_test 70e "rename cross-MDT with random fails"
2332
2333 test_70f_write_and_read(){
2334         local srcfile=$1
2335         local stopflag=$2
2336         local client
2337
2338         echo "Write/read files in: '$DIR/$tdir', clients: '$CLIENTS' ..."
2339         for client in ${CLIENTS//,/ }; do
2340                 [ -f $stopflag ] || return
2341
2342                 local tgtfile=$DIR/$tdir/$tfile.$client
2343                 do_node $client dd $DD_OPTS bs=1M count=10 if=$srcfile \
2344                         of=$tgtfile 2>/dev/null ||
2345                         error "dd $DD_OPTS bs=1M count=10 if=$srcfile " \
2346                               "of=$tgtfile failed on $client, rc=$?"
2347         done
2348
2349         local prev_client=$(echo ${CLIENTS//,/ } | awk '{ print $NF }')
2350         local index=0
2351
2352         for client in ${CLIENTS//,/ }; do
2353                 [ -f $stopflag ] || return
2354
2355                 # flush client cache in case test is running on only one client
2356                 # do_node $client cancel_lru_locks osc
2357                 do_node $client $LCTL set_param ldlm.namespaces.*.lru_size=clear
2358
2359                 tgtfile=$DIR/$tdir/$tfile.$client
2360                 local md5=$(do_node $prev_client "md5sum $tgtfile")
2361                 [ ${checksum[$index]// */} = ${md5// */} ] ||
2362                         error "$tgtfile: checksum doesn't match on $prev_client"
2363                 index=$((index + 1))
2364                 prev_client=$client
2365         done
2366 }
2367
2368 test_70f_loop(){
2369         local srcfile=$1
2370         local stopflag=$2
2371         DD_OPTS=
2372
2373         mkdir -p $DIR/$tdir || error "cannot create $DIR/$tdir directory"
2374         $LFS setstripe -c -1 $DIR/$tdir ||
2375                 error "cannot $LFS setstripe $DIR/$tdir"
2376
2377         touch $stopflag
2378         while [ -f $stopflag ]; do
2379                 test_70f_write_and_read $srcfile $stopflag
2380                 # use direct IO and buffer cache in turns if loop
2381                 [ -n "$DD_OPTS" ] && DD_OPTS="" || DD_OPTS="oflag=direct"
2382         done
2383 }
2384
2385 test_70f_cleanup() {
2386         trap 0
2387         rm -f $TMP/$tfile.stop
2388         do_nodes $CLIENTS rm -f $TMP/$tfile
2389         rm -f $DIR/$tdir/$tfile.*
2390 }
2391
2392 test_70f() {
2393 #       [ x$ost1failover_HOST = x$ost_HOST ] &&
2394 #               { skip "Failover host not defined" && return; }
2395 #       [ -z "$CLIENTS" ] &&
2396 #               { skip "CLIENTS are not specified." && return; }
2397 #       [ $CLIENTCOUNT -lt 2 ] &&
2398 #               { skip "Need 2 or more clients, have $CLIENTCOUNT" && return; }
2399
2400         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.53) ]] &&
2401                 skip "Need server version at least 2.9.53" && return
2402
2403         echo "mount clients $CLIENTS ..."
2404         zconf_mount_clients $CLIENTS $MOUNT
2405
2406         local srcfile=$TMP/$tfile
2407         local client
2408         local index=0
2409
2410         trap test_70f_cleanup EXIT
2411         # create a different source file local to each client node so we can
2412         # detect if the file wasn't written out properly after failover
2413         do_nodes $CLIENTS dd bs=1M count=10 if=/dev/urandom of=$srcfile \
2414                 2>/dev/null || error "can't create $srcfile on $CLIENTS"
2415         for client in ${CLIENTS//,/ }; do
2416                 checksum[$index]=$(do_node $client "md5sum $srcfile")
2417                 index=$((index + 1))
2418         done
2419
2420         local duration=120
2421         [ "$SLOW" = "no" ] && duration=60
2422         # set duration to 900 because it takes some time to boot node
2423         [ "$FAILURE_MODE" = HARD ] && duration=900
2424
2425         local stopflag=$TMP/$tfile.stop
2426         test_70f_loop $srcfile $stopflag &
2427         local pid=$!
2428
2429         local elapsed=0
2430         local num_failovers=0
2431         local start_ts=$SECONDS
2432         while [ $elapsed -lt $duration ]; do
2433                 sleep 3
2434                 replay_barrier ost1
2435                 sleep 1
2436                 num_failovers=$((num_failovers + 1))
2437                 log "$TESTNAME failing OST $num_failovers times"
2438                 fail ost1
2439                 sleep 2
2440                 elapsed=$((SECONDS - start_ts))
2441         done
2442
2443         rm -f $stopflag
2444         wait $pid
2445         test_70f_cleanup
2446 }
2447 run_test 70f "OSS O_DIRECT recovery with $CLIENTCOUNT clients"
2448
2449 cleanup_71a() {
2450         trap 0
2451         kill -9 $mkdir_71a_pid
2452 }
2453
2454 random_double_fail_mdt() {
2455         local max_index=$1
2456         local duration=$2
2457         local monitor_pid=$3
2458         local elapsed
2459         local start_ts=$(date +%s)
2460         local num_failovers=0
2461         local fail_index
2462         local second_index
2463
2464         elapsed=$(($(date +%s) - start_ts))
2465         while [ $elapsed -lt $duration ]; do
2466                 fail_index=$((RANDOM%max_index + 1))
2467                 if [ $fail_index -eq $max_index ]; then
2468                         second_index=1
2469                 else
2470                         second_index=$((fail_index + 1))
2471                 fi
2472                 kill -0 $monitor_pid ||
2473                         error "$monitor_pid stopped"
2474                 sleep 120
2475                 replay_barrier mds$fail_index
2476                 replay_barrier mds$second_index
2477                 sleep 10
2478                 # Increment the number of failovers
2479                 num_failovers=$((num_failovers+1))
2480                 log "fail mds$fail_index mds$second_index $num_failovers times"
2481                 fail mds${fail_index},mds${second_index}
2482                 elapsed=$(($(date +%s) - start_ts))
2483         done
2484 }
2485
2486 test_71a () {
2487         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2488         local clients=${CLIENTS:-$HOSTNAME}
2489         local rc=0
2490
2491         zconf_mount_clients $clients $MOUNT
2492
2493         local duration=300
2494         [ "$SLOW" = "no" ] && duration=180
2495         # set duration to 900 because it takes some time to boot node
2496         [ "$FAILURE_MODE" = HARD ] && duration=900
2497
2498         mkdir -p $DIR/$tdir
2499
2500         local elapsed
2501         local start_ts=$(date +%s)
2502
2503         trap cleanup_71a EXIT
2504         (
2505                 while true; do
2506                         $LFS mkdir -i0 -c2 $DIR/$tdir/test
2507                         rmdir $DIR/$tdir/test
2508                 done
2509         )&
2510         mkdir_71a_pid=$!
2511         echo "Started  $mkdir_71a_pid"
2512
2513         random_double_fail_mdt 2 $duration $mkdir_71a_pid
2514         kill -0 $mkdir_71a_pid || error "mkdir/rmdir $mkdir_71a_pid stopped"
2515
2516         cleanup_71a
2517         true
2518 }
2519 run_test 71a "mkdir/rmdir striped dir with 2 mdts recovery"
2520
2521 test_73a() {
2522         multiop_bg_pause $DIR/$tfile O_tSc ||
2523                 error "multiop_bg_pause $DIR/$tfile failed"
2524         pid=$!
2525         rm -f $DIR/$tfile
2526
2527         replay_barrier $SINGLEMDS
2528         #define OBD_FAIL_LDLM_ENQUEUE_NET                       0x302
2529         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000302"
2530         fail $SINGLEMDS
2531         kill -USR1 $pid
2532         wait $pid || error "multiop pid failed"
2533         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
2534         return 0
2535 }
2536 run_test 73a "open(O_CREAT), unlink, replay, reconnect before open replay, close"
2537
2538 test_73b() {
2539         multiop_bg_pause $DIR/$tfile O_tSc ||
2540                 error "multiop_bg_pause $DIR/$tfile failed"
2541         pid=$!
2542         rm -f $DIR/$tfile
2543
2544         replay_barrier $SINGLEMDS
2545         #define OBD_FAIL_MDS_LDLM_REPLY_NET       0x157
2546         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000157"
2547         fail $SINGLEMDS
2548         kill -USR1 $pid
2549         wait $pid || error "multiop pid failed"
2550         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
2551         return 0
2552 }
2553 run_test 73b "open(O_CREAT), unlink, replay, reconnect at open_replay reply, close"
2554
2555 # bug 18554
2556 test_74() {
2557         local clients=${CLIENTS:-$HOSTNAME}
2558
2559         zconf_umount_clients $clients $MOUNT
2560         stop ost1
2561         facet_failover $SINGLEMDS
2562         zconf_mount_clients $clients $MOUNT
2563         mount_facet ost1
2564         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2565         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
2566         clients_up || error "client evicted: $?"
2567         return 0
2568 }
2569 run_test 74 "Ensure applications don't fail waiting for OST recovery"
2570
2571 remote_dir_check_80() {
2572         local mdtidx=1
2573         local diridx
2574         local fileidx
2575
2576         diridx=$($LFS getstripe -m $remote_dir) ||
2577                 error "$LFS getstripe -m $remote_dir failed"
2578         [ $diridx -eq $mdtidx ] || error "$diridx != $mdtidx"
2579
2580         createmany -o $remote_dir/f-%d 20 || error "creation failed"
2581         fileidx=$($LFS getstripe -m $remote_dir/f-1) ||
2582                 error "$LFS getstripe -m $remote_dir/f-1 failed"
2583         [ $fileidx -eq $mdtidx ] || error "$fileidx != $mdtidx"
2584
2585         return 0
2586 }
2587
2588 test_80a() {
2589         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2590         ([ $FAILURE_MODE == "HARD" ] &&
2591                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2592                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2593                 return 0
2594
2595         local MDTIDX=1
2596         local remote_dir=$DIR/$tdir/remote_dir
2597
2598         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2599         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2600         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2601         $LFS mkdir -i $MDTIDX $remote_dir &
2602         local CLIENT_PID=$!
2603
2604         replay_barrier mds1
2605         fail mds${MDTIDX}
2606
2607         wait $CLIENT_PID || error "remote creation failed"
2608
2609         remote_dir_check_80 || error "remote dir check failed"
2610         rm -rf $DIR/$tdir || error "rmdir failed"
2611
2612         return 0
2613 }
2614 run_test 80a "DNE: create remote dir, drop update rep from MDT0, fail MDT0"
2615
2616 test_80b() {
2617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2618         ([ $FAILURE_MODE == "HARD" ] &&
2619                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2620                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2621                 return 0
2622
2623         local MDTIDX=1
2624         local remote_dir=$DIR/$tdir/remote_dir
2625
2626         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2627         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2628         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2629         $LFS mkdir -i $MDTIDX $remote_dir &
2630         local CLIENT_PID=$!
2631
2632         replay_barrier mds1
2633         replay_barrier mds2
2634         fail mds$((MDTIDX + 1))
2635
2636         wait $CLIENT_PID || error "remote creation failed"
2637
2638         remote_dir_check_80 || error "remote dir check failed"
2639         rm -rf $DIR/$tdir || error "rmdir failed"
2640
2641         return 0
2642 }
2643 run_test 80b "DNE: create remote dir, drop update rep from MDT0, fail MDT1"
2644
2645 test_80c() {
2646         [[ $mds1_FSTYPE = "zfs" ]] &&
2647                 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
2648                 skip "requires LU-10143 fix on MDS"
2649         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2650         ([ $FAILURE_MODE == "HARD" ] &&
2651                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2652                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2653                 return 0
2654
2655         local MDTIDX=1
2656         local remote_dir=$DIR/$tdir/remote_dir
2657
2658         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2659         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2660         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2661         $LFS mkdir -i $MDTIDX $remote_dir &
2662         local CLIENT_PID=$!
2663
2664         replay_barrier mds1
2665         replay_barrier mds2
2666         fail mds${MDTIDX}
2667         fail mds$((MDTIDX + 1))
2668
2669         wait $CLIENT_PID || error "remote creation failed"
2670
2671         remote_dir_check_80 || error "remote dir check failed"
2672         rm -rf $DIR/$tdir || error "rmdir failed"
2673
2674         return 0
2675 }
2676 run_test 80c "DNE: create remote dir, drop update rep from MDT1, fail MDT[0,1]"
2677
2678 test_80d() {
2679         [[ $mds1_FSTYPE = "zfs" ]] &&
2680                 [[ $MDS1_VERSION -lt $(version_code 2.12.51) ]] &&
2681                 skip "requires LU-10143 fix on MDS"
2682         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2683         local MDTIDX=1
2684         local remote_dir=$DIR/$tdir/remote_dir
2685
2686         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2687         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2688         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2689         $LFS mkdir -i $MDTIDX $remote_dir &
2690         local CLIENT_PID=$!
2691
2692         # sleep 3 seconds to make sure MDTs are failed after
2693         # lfs mkdir -i has finished on all of MDTs.
2694         sleep 3
2695
2696         replay_barrier mds1
2697         replay_barrier mds2
2698         fail mds${MDTIDX},mds$((MDTIDX + 1))
2699
2700         wait $CLIENT_PID || error "remote creation failed"
2701
2702         remote_dir_check_80 || error "remote dir check failed"
2703         rm -rf $DIR/$tdir || error "rmdir failed"
2704
2705         return 0
2706 }
2707 run_test 80d "DNE: create remote dir, drop update rep from MDT1, fail 2 MDTs"
2708
2709 test_80e() {
2710         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2711         ([ $FAILURE_MODE == "HARD" ] &&
2712                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2713                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2714                 return 0
2715
2716         local MDTIDX=1
2717         local remote_dir=$DIR/$tdir/remote_dir
2718
2719         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2720         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2721         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2722         $LFS mkdir -i $MDTIDX $remote_dir &
2723         local CLIENT_PID=$!
2724
2725         # sleep 3 seconds to make sure MDTs are failed after
2726         # lfs mkdir -i has finished on all of MDTs.
2727         sleep 3
2728
2729         replay_barrier mds1
2730         fail mds${MDTIDX}
2731
2732         wait $CLIENT_PID || error "remote creation failed"
2733
2734         remote_dir_check_80 || error "remote dir check failed"
2735         rm -rf $DIR/$tdir || error "rmdir failed"
2736
2737         return 0
2738 }
2739 run_test 80e "DNE: create remote dir, drop MDT1 rep, fail MDT0"
2740
2741 test_80f() {
2742         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2743         ([ $FAILURE_MODE == "HARD" ] &&
2744                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2745                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2746                 return 0
2747         local MDTIDX=1
2748         local remote_dir=$DIR/$tdir/remote_dir
2749
2750         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2751         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2752         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2753         $LFS mkdir -i $MDTIDX $remote_dir &
2754         local CLIENT_PID=$!
2755
2756         replay_barrier mds2
2757         fail mds$((MDTIDX + 1))
2758
2759         wait $CLIENT_PID || error "remote creation failed"
2760
2761         remote_dir_check_80 || error "remote dir check failed"
2762         rm -rf $DIR/$tdir || error "rmdir failed"
2763
2764         return 0
2765 }
2766 run_test 80f "DNE: create remote dir, drop MDT1 rep, fail MDT1"
2767
2768 test_80g() {
2769         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2770         ([ $FAILURE_MODE == "HARD" ] &&
2771                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2772                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2773                 return 0
2774
2775         local MDTIDX=1
2776         local remote_dir=$DIR/$tdir/remote_dir
2777
2778         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2779         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2780         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2781         $LFS mkdir -i $MDTIDX $remote_dir &
2782         local CLIENT_PID=$!
2783
2784         # sleep 3 seconds to make sure MDTs are failed after
2785         # lfs mkdir -i has finished on all of MDTs.
2786         sleep 3
2787
2788         replay_barrier mds1
2789         replay_barrier mds2
2790         fail mds${MDTIDX}
2791         fail mds$((MDTIDX + 1))
2792
2793         wait $CLIENT_PID || error "remote creation failed"
2794
2795         remote_dir_check_80 || error "remote dir check failed"
2796         rm -rf $DIR/$tdir || error "rmdir failed"
2797
2798         return 0
2799 }
2800 run_test 80g "DNE: create remote dir, drop MDT1 rep, fail MDT0, then MDT1"
2801
2802 test_80h() {
2803         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2804         local MDTIDX=1
2805         local remote_dir=$DIR/$tdir/remote_dir
2806
2807         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2808         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2809         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2810         $LFS mkdir -i $MDTIDX $remote_dir &
2811         local CLIENT_PID=$!
2812
2813         # sleep 3 seconds to make sure MDTs are failed after
2814         # lfs mkdir -i has finished on all of MDTs.
2815         sleep 3
2816
2817         replay_barrier mds1
2818         replay_barrier mds2
2819         fail mds${MDTIDX},mds$((MDTIDX + 1))
2820
2821         wait $CLIENT_PID || error "remote dir creation failed"
2822
2823         remote_dir_check_80 || error "remote dir check failed"
2824         rm -rf $DIR/$tdir || error "rmdir failed"
2825
2826         return 0
2827 }
2828 run_test 80h "DNE: create remote dir, drop MDT1 rep, fail 2 MDTs"
2829
2830 test_81a() {
2831         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2832         ([ $FAILURE_MODE == "HARD" ] &&
2833                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2834                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2835                 return 0
2836
2837         local MDTIDX=1
2838         local remote_dir=$DIR/$tdir/remote_dir
2839
2840         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2841         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2842
2843         touch $remote_dir || error "touch $remote_dir failed"
2844         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2845         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2846         rmdir $remote_dir &
2847         local CLIENT_PID=$!
2848
2849         replay_barrier mds2
2850         fail mds$((MDTIDX + 1))
2851
2852         wait $CLIENT_PID || error "rm remote dir failed"
2853
2854         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2855
2856         rm -rf $DIR/$tdir || error "rmdir failed"
2857
2858         return 0
2859 }
2860 run_test 81a "DNE: unlink remote dir, drop MDT0 update rep,  fail MDT1"
2861
2862 test_81b() {
2863         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2864         ([ $FAILURE_MODE == "HARD" ] &&
2865                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2866                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2867                 return 0
2868         local MDTIDX=1
2869         local remote_dir=$DIR/$tdir/remote_dir
2870
2871         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2872         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2873
2874         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2875         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2876         rmdir $remote_dir &
2877         local CLIENT_PID=$!
2878
2879         replay_barrier mds1
2880         fail mds${MDTIDX}
2881
2882         wait $CLIENT_PID || error "rm remote dir failed"
2883
2884         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2885
2886         rm -rf $DIR/$tdir || error "rmdir failed"
2887
2888         return 0
2889 }
2890 run_test 81b "DNE: unlink remote dir, drop MDT0 update reply,  fail MDT0"
2891
2892 test_81c() {
2893         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2894         ([ $FAILURE_MODE == "HARD" ] &&
2895                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2896                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2897                 return 0
2898
2899         local MDTIDX=1
2900         local remote_dir=$DIR/$tdir/remote_dir
2901
2902         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2903         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2904
2905         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2906         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2907         rmdir $remote_dir &
2908         local CLIENT_PID=$!
2909
2910         replay_barrier mds1
2911         replay_barrier mds2
2912         fail mds${MDTIDX}
2913         fail mds$((MDTIDX + 1))
2914
2915         wait $CLIENT_PID || error "rm remote dir failed"
2916
2917         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2918
2919         rm -rf $DIR/$tdir || error "rmdir failed"
2920
2921         return 0
2922 }
2923 run_test 81c "DNE: unlink remote dir, drop MDT0 update reply, fail MDT0,MDT1"
2924
2925 test_81d() {
2926         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2927         local MDTIDX=1
2928         local remote_dir=$DIR/$tdir/remote_dir
2929
2930         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2931         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2932
2933         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2934         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2935         rmdir $remote_dir &
2936         local CLIENT_PID=$!
2937
2938         replay_barrier mds1
2939         replay_barrier mds2
2940         fail mds${MDTIDX},mds$((MDTIDX + 1))
2941
2942         wait $CLIENT_PID || error "rm remote dir failed"
2943
2944         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2945
2946         rm -rf $DIR/$tdir || error "rmdir failed"
2947
2948         return 0
2949 }
2950 run_test 81d "DNE: unlink remote dir, drop MDT0 update reply,  fail 2 MDTs"
2951
2952 test_81e() {
2953         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2954         ([ $FAILURE_MODE == "HARD" ] &&
2955                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2956                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2957                 return 0
2958
2959         local MDTIDX=1
2960         local remote_dir=$DIR/$tdir/remote_dir
2961
2962         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2963         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2964
2965         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2966         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2967         rmdir $remote_dir &
2968         local CLIENT_PID=$!
2969         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0
2970
2971         replay_barrier mds1
2972         fail mds${MDTIDX}
2973
2974         wait $CLIENT_PID || error "rm remote dir failed"
2975
2976         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2977
2978         rm -rf $DIR/$tdir || error "rmdir failed"
2979
2980         return 0
2981 }
2982 run_test 81e "DNE: unlink remote dir, drop MDT1 req reply, fail MDT0"
2983
2984 test_81f() {
2985         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2986         ([ $FAILURE_MODE == "HARD" ] &&
2987                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2988                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2989                 return 0
2990
2991         local MDTIDX=1
2992         local remote_dir=$DIR/$tdir/remote_dir
2993
2994         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2995         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2996
2997         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2998         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2999         rmdir $remote_dir &
3000         local CLIENT_PID=$!
3001
3002         replay_barrier mds2
3003         fail mds$((MDTIDX + 1))
3004
3005         wait $CLIENT_PID || error "rm remote dir failed"
3006
3007         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
3008
3009         rm -rf $DIR/$tdir || error "rmdir failed"
3010
3011         return 0
3012 }
3013 run_test 81f "DNE: unlink remote dir, drop MDT1 req reply, fail MDT1"
3014
3015 test_81g() {
3016         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3017         ([ $FAILURE_MODE == "HARD" ] &&
3018                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3019                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3020                 return 0
3021
3022         local MDTIDX=1
3023         local remote_dir=$DIR/$tdir/remote_dir
3024
3025         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3026         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
3027
3028         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3029         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
3030         rmdir $remote_dir &
3031         local CLIENT_PID=$!
3032
3033         replay_barrier mds1
3034         replay_barrier mds2
3035         fail mds${MDTIDX}
3036         fail mds$((MDTIDX + 1))
3037
3038         wait $CLIENT_PID || error "rm remote dir failed"
3039
3040         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
3041
3042         rm -rf $DIR/$tdir || error "rmdir failed"
3043
3044         return 0
3045 }
3046 run_test 81g "DNE: unlink remote dir, drop req reply, fail M0, then M1"
3047
3048 test_81h() {
3049         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3050         local MDTIDX=1
3051         local remote_dir=$DIR/$tdir/remote_dir
3052
3053         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3054         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
3055
3056         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3057         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
3058         rmdir $remote_dir &
3059         local CLIENT_PID=$!
3060
3061         replay_barrier mds1
3062         replay_barrier mds2
3063         fail mds${MDTIDX},mds$((MDTIDX + 1))
3064
3065         wait $CLIENT_PID || error "rm remote dir failed"
3066
3067         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
3068
3069         rm -rf $DIR/$tdir || error "rmdir failed"
3070
3071         return 0
3072 }
3073 run_test 81h "DNE: unlink remote dir, drop request reply, fail 2 MDTs"
3074
3075 test_84a() {
3076 #define OBD_FAIL_MDS_OPEN_WAIT_CREATE  0x144
3077     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000144"
3078     createmany -o $DIR/$tfile- 1 &
3079     PID=$!
3080     mds_evict_client
3081     wait $PID
3082     client_up || client_up || true    # reconnect
3083 }
3084 run_test 84a "stale open during export disconnect"
3085
3086 test_85a() { #bug 16774
3087         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
3088
3089         for i in $(seq 100); do
3090                 echo "tag-$i" > $DIR/$tfile-$i
3091                 grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
3092         done
3093
3094         lov_id=$(lctl dl | grep "clilov")
3095         addr=$(echo $lov_id | awk '{print $4}' | awk -F '-' '{print $NF}')
3096         count=$(lctl get_param -n \
3097                 ldlm.namespaces.*MDT0000*$addr.lock_unused_count)
3098         echo "before recovery: unused locks count = $count"
3099
3100         fail $SINGLEMDS
3101
3102         count2=$(lctl get_param -n \
3103                  ldlm.namespaces.*MDT0000*$addr.lock_unused_count)
3104         echo "after recovery: unused locks count = $count2"
3105
3106         if [ $count2 -ge $count ]; then
3107                 error "unused locks are not canceled"
3108         fi
3109 }
3110 run_test 85a "check the cancellation of unused locks during recovery(IBITS)"
3111
3112 test_85b() { #bug 16774
3113         rm -rf $DIR/$tdir
3114         mkdir $DIR/$tdir
3115
3116         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
3117
3118         if ! combined_mgs_mds ; then
3119                 mount_mgs_client
3120         fi
3121
3122         $LFS setstripe -c 1 -i 0 $DIR/$tdir
3123
3124         for i in $(seq 100); do
3125                 dd if=/dev/urandom of=$DIR/$tdir/$tfile-$i bs=4096 \
3126                         count=32 >/dev/null 2>&1
3127         done
3128
3129         cancel_lru_locks osc
3130
3131         for i in $(seq 100); do
3132                 dd if=$DIR/$tdir/$tfile-$i of=/dev/null bs=4096 \
3133                         count=32 >/dev/null 2>&1
3134         done
3135
3136         lov_id=$(lctl dl | grep "clilov")
3137         addr=$(echo $lov_id | awk '{print $4}' | awk -F '-' '{print $NF}')
3138         count=$(lctl get_param -n \
3139                           ldlm.namespaces.*OST0000*$addr.lock_unused_count)
3140         echo "before recovery: unused locks count = $count"
3141         [ $count -ne 0 ] || error "unused locks ($count) should be zero"
3142
3143         fail ost1
3144
3145         count2=$(lctl get_param \
3146                  -n ldlm.namespaces.*OST0000*$addr.lock_unused_count)
3147         echo "after recovery: unused locks count = $count2"
3148
3149         if ! combined_mgs_mds ; then
3150                 umount_mgs_client
3151         fi
3152
3153         if [ $count2 -ge $count ]; then
3154                 error "unused locks are not canceled"
3155         fi
3156
3157         rm -rf $DIR/$tdir
3158 }
3159 run_test 85b "check the cancellation of unused locks during recovery(EXTENT)"
3160
3161 test_86() {
3162         local clients=${CLIENTS:-$HOSTNAME}
3163
3164         zconf_umount_clients $clients $MOUNT
3165         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT*.exports.clear=0
3166         remount_facet $SINGLEMDS
3167         zconf_mount_clients $clients $MOUNT
3168 }
3169 run_test 86 "umount server after clear nid_stats should not hit LBUG"
3170
3171 test_87a() {
3172         do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
3173
3174         replay_barrier ost1
3175         $LFS setstripe -i 0 -c 1 $DIR/$tfile
3176         dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 ||
3177                 error "dd to $DIR/$tfile failed"
3178         cksum=$(md5sum $DIR/$tfile | awk '{print $1}')
3179         cancel_lru_locks osc
3180         fail ost1
3181         dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
3182         cksum2=$(md5sum $DIR/$tfile | awk '{print $1}')
3183         if [ $cksum != $cksum2 ] ; then
3184                 error "New checksum $cksum2 does not match original $cksum"
3185         fi
3186 }
3187 run_test 87a "write replay"
3188
3189 test_87b() {
3190         do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
3191
3192         replay_barrier ost1
3193         $LFS setstripe -i 0 -c 1 $DIR/$tfile
3194         dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 ||
3195                 error "dd to $DIR/$tfile failed"
3196         sleep 1 # Give it a chance to flush dirty data
3197         echo TESTTEST | dd of=$DIR/$tfile bs=1 count=8 seek=64
3198         cksum=$(md5sum $DIR/$tfile | awk '{print $1}')
3199         cancel_lru_locks osc
3200         fail ost1
3201         dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
3202         cksum2=$(md5sum $DIR/$tfile | awk '{print $1}')
3203         if [ $cksum != $cksum2 ] ; then
3204                 error "New checksum $cksum2 does not match original $cksum"
3205         fi
3206 }
3207 run_test 87b "write replay with changed data (checksum resend)"
3208
3209 test_88() { #bug 17485
3210         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3211         mkdir -p $TMP/$tdir || error "mkdir $TMP/$tdir failed"
3212
3213         $LFS setstripe -i 0 -c 1 $DIR/$tdir || error "$LFS setstripe failed"
3214
3215         replay_barrier ost1
3216         replay_barrier $SINGLEMDS
3217
3218         # exhaust precreations on ost1
3219         local OST=$(ostname_from_index 0)
3220         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $OST)
3221         local last_id=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_last_id)
3222         local next_id=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_next_id)
3223         echo "before test: last_id = $last_id, next_id = $next_id"
3224
3225         echo "Creating to objid $last_id on ost $OST..."
3226         createmany -o $DIR/$tdir/f-%d $next_id $((last_id - next_id + 2)) ||
3227                 error "createmany create files to last_id failed"
3228
3229         #create some files to use some uncommitted objids
3230         last_id=$(($last_id + 1))
3231         createmany -o $DIR/$tdir/f-%d $last_id 8 ||
3232                 error "createmany create files with uncommitted objids failed"
3233
3234     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_last_id)
3235     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_next_id)
3236     echo "before recovery: last_id = $last_id2, next_id = $next_id2" 
3237
3238     # if test uses shutdown_facet && reboot_facet instead of facet_failover ()
3239     # it has to take care about the affected facets, bug20407
3240     local affected_mds1=$(affected_facets mds1)
3241     local affected_ost1=$(affected_facets ost1)
3242
3243     shutdown_facet $SINGLEMDS
3244     shutdown_facet ost1
3245
3246     reboot_facet $SINGLEMDS
3247     change_active $affected_mds1
3248     wait_for_facet $affected_mds1
3249     mount_facets $affected_mds1 || error "Restart of mds failed"
3250
3251     reboot_facet ost1
3252     change_active $affected_ost1
3253     wait_for_facet $affected_ost1
3254     mount_facets $affected_ost1 || error "Restart of ost1 failed"
3255
3256     clients_up
3257
3258     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_last_id)
3259     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osp.$mdtosc.prealloc_next_id)
3260         echo "after recovery: last_id = $last_id2, next_id = $next_id2"
3261
3262         # create new files, which should use new objids, and ensure the orphan
3263         # cleanup phase for ost1 is completed at the same time
3264         for i in $(seq 8); do
3265                 file_id=$(($last_id + 10 + $i))
3266                 dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
3267         done
3268
3269         # if the objids were not recreated, then "ls" will fail with -ENOENT
3270         ls -l $DIR/$tdir/* || error "can't get the status of precreated files"
3271
3272         local file_id
3273         # write into previously created files
3274         for i in $(seq 8); do
3275                 file_id=$(($last_id + $i))
3276                 dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
3277                 cp -f $DIR/$tdir/f-$file_id $TMP/$tdir/
3278         done
3279
3280         # compare the content
3281         for i in $(seq 8); do
3282                 file_id=$(($last_id + $i))
3283                 cmp $TMP/$tdir/f-$file_id $DIR/$tdir/f-$file_id ||
3284                         error "the content of file is modified!"
3285         done
3286
3287         rm -fr $TMP/$tdir
3288 }
3289 run_test 88 "MDS should not assign same objid to different files "
3290
3291 function calc_osc_kbytes_used() {
3292         local kbtotal=$(calc_osc_kbytes kbytestotal)
3293         local kbfree=$(calc_osc_kbytes kbytesfree)
3294         echo $((kbtotal-kbfree))
3295 }
3296
3297 test_89() {
3298         cancel_lru_locks osc
3299         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3300         rm -f $DIR/$tdir/$tfile
3301         wait_mds_ost_sync || error "initial MDS-OST sync timed out"
3302         wait_delete_completed || error "initial wait delete timed out"
3303         local blocks1=$(calc_osc_kbytes_used)
3304         local write_size=$(fs_log_size)
3305
3306         $LFS setstripe -i 0 -c 1 $DIR/$tdir/$tfile
3307         [ $write_size -lt 1024 ] && write_size=1024
3308         dd if=/dev/zero bs=${write_size}k count=10 of=$DIR/$tdir/$tfile
3309         sync
3310         stop ost1
3311         facet_failover $SINGLEMDS
3312         rm $DIR/$tdir/$tfile
3313         umount $MOUNT
3314         mount_facet ost1
3315         zconf_mount $(hostname) $MOUNT || error "mount fails"
3316         client_up || error "client_up failed"
3317
3318         # wait for the remounted client to connect to ost1
3319         local target=$(get_osc_import_name client ost1)
3320         wait_import_state "FULL" "osc.${target}.ost_server_uuid" \
3321                 $(max_recovery_time)
3322
3323         wait_mds_ost_sync || error "MDS-OST sync timed out"
3324         wait_delete_completed || error "wait delete timed out"
3325         local blocks2=$(calc_osc_kbytes_used)
3326
3327         [ $((blocks2 - blocks1)) -le $(fs_log_size)  ] ||
3328                 error $((blocks2 - blocks1)) blocks leaked
3329 }
3330 run_test 89 "no disk space leak on late ost connection"
3331
3332 cleanup_90 () {
3333         local facet=$1
3334
3335         trap 0
3336         reboot_facet $facet
3337         change_active $facet
3338         wait_for_facet $facet
3339         mount_facet $facet || error "Restart of $facet failed"
3340         clients_up
3341 }
3342
3343 test_90() { # bug 19494
3344     local dir=$DIR/$tdir
3345     local ostfail=$(get_random_entry $(get_facets OST))
3346
3347     if [[ $FAILURE_MODE = HARD ]]; then
3348         local affected=$(affected_facets $ostfail);
3349         if [[ "$affected" != $ostfail ]]; then
3350             skip not functional with FAILURE_MODE=$FAILURE_MODE, affected: $affected
3351             return 0
3352         fi
3353     fi
3354         # ensure all OSTs are active to allow allocations
3355         wait_osts_up
3356
3357         mkdir $dir || error "mkdir $dir failed"
3358
3359         echo "Create the files"
3360
3361         # file "f${index}" striped over 1 OST
3362         # file "all" striped over all OSTs
3363
3364         $LFS setstripe -c $OSTCOUNT $dir/all ||
3365                 error "setstripe failed to create $dir/all"
3366
3367         for ((i = 0; i < $OSTCOUNT; i++)); do
3368                 local f=$dir/f$i
3369
3370                 $LFS setstripe -i $i -c 1 $f ||
3371                         error "$LFS setstripe failed to create $f"
3372
3373                 # confirm setstripe actually created stripe on requested OST
3374                 local uuid=$(ostuuid_from_index $i)
3375
3376                 for file in f$i all; do
3377                         local found=$($LFS find --obd $uuid --name $file $dir)
3378
3379                         if [[ $dir/$file != $found ]]; then
3380                                 $LFS getstripe $dir/$file
3381                                 error "wrong stripe: $file, uuid: $uuid"
3382                         fi
3383                 done
3384         done
3385
3386         # Before failing an OST, get its obd name and index
3387         local varsvc=${ostfail}_svc
3388         local obd=$(do_facet $ostfail lctl get_param \
3389                     -n obdfilter.${!varsvc}.uuid)
3390         local index=$(($(facet_number $ostfail) - 1))
3391
3392         echo "Fail $ostfail $obd, display the list of affected files"
3393         shutdown_facet $ostfail || error "shutdown_facet $ostfail failed"
3394
3395         trap "cleanup_90 $ostfail" EXIT INT
3396         echo "General Query: lfs find $dir"
3397         local list=$($LFS find $dir)
3398         echo "$list"
3399         for (( i=0; i<$OSTCOUNT; i++ )); do
3400                 list_member "$list" $dir/f$i ||
3401                         error_noexit "lfs find $dir: no file f$i"
3402         done
3403         list_member "$list" $dir/all ||
3404                 error_noexit "lfs find $dir: no file all"
3405
3406         # focus on the missing OST,
3407         # we expect to see only two files affected: "f$(index)" and "all"
3408
3409         echo "Querying files on shutdown $ostfail: lfs find --obd $obd"
3410     list=$($LFS find --obd $obd $dir)
3411     echo "$list"
3412     for file in all f$index; do
3413         list_member "$list" $dir/$file ||
3414             error_noexit "lfs find does not report the affected $obd for $file"
3415     done
3416
3417     [[ $(echo $list | wc -w) -eq 2 ]] ||
3418         error_noexit "lfs find reports the wrong list of affected files ${#list[@]}"
3419
3420         echo "Check getstripe: $LFS getstripe -r --obd $obd"
3421         list=$($LFS getstripe -r --obd $obd $dir)
3422         echo "$list"
3423     for file in all f$index; do
3424         echo "$list" | grep $dir/$file ||
3425             error_noexit "lfs getsripe does not report the affected $obd for $file"
3426     done
3427
3428     cleanup_90 $ostfail
3429 }
3430 run_test 90 "lfs find identifies the missing striped file segments"
3431
3432 test_93a() {
3433         local server_version=$(lustre_version_code $SINGLEMDS)
3434                 [[ $server_version -ge $(version_code 2.6.90) ]] ||
3435                 [[ $server_version -ge $(version_code 2.5.4) &&
3436                    $server_version -lt $(version_code 2.5.50) ]] ||
3437                 { skip "Need MDS version 2.5.4+ or 2.6.90+"; return; }
3438
3439         cancel_lru_locks osc
3440
3441         $LFS setstripe -i 0 -c 1 $DIR/$tfile ||
3442                 error "$LFS setstripe  $DIR/$tfile failed"
3443         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 ||
3444                 error "dd to $DIR/$tfile failed"
3445         #define OBD_FAIL_TGT_REPLAY_RECONNECT     0x715
3446         # We need to emulate a state that OST is waiting for other clients
3447         # not completing the recovery. Final ping is queued, but reply will be
3448         # sent on the recovery completion. It is done by sleep before
3449         # processing final pings
3450         do_facet ost1 "$LCTL set_param fail_val=40"
3451         do_facet ost1 "$LCTL set_param fail_loc=0x715"
3452         fail ost1
3453 }
3454 run_test 93a "replay + reconnect"
3455
3456 test_93b() {
3457         local server_version=$(lustre_version_code $SINGLEMDS)
3458                 [[ $server_version -ge $(version_code 2.7.90) ]] ||
3459                 { skip "Need MDS version 2.7.90+"; return; }
3460
3461         cancel_lru_locks mdc
3462
3463         createmany -o $DIR/$tfile 20 ||
3464                         error "createmany -o $DIR/$tfile failed"
3465
3466         #define OBD_FAIL_TGT_REPLAY_RECONNECT     0x715
3467         # We need to emulate a state that MDT is waiting for other clients
3468         # not completing the recovery. Final ping is queued, but reply will be
3469         # sent on the recovery completion. It is done by sleep before
3470         # processing final pings
3471         do_facet mds1 "$LCTL set_param fail_val=80"
3472         do_facet mds1 "$LCTL set_param fail_loc=0x715"
3473         fail mds1
3474 }
3475 run_test 93b "replay + reconnect on mds"
3476
3477 striped_dir_check_100() {
3478         local striped_dir=$DIR/$tdir/striped_dir
3479         local stripe_count=$($LFS getdirstripe -c $striped_dir)
3480
3481         $LFS getdirstripe $striped_dir
3482         [ $stripe_count -eq 2 ] || error "$stripe_count != 2"
3483
3484         createmany -o $striped_dir/f-%d 20 ||
3485                 error "creation failed under striped dir"
3486 }
3487
3488 test_100a() {
3489         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3490         ([ $FAILURE_MODE == "HARD" ] &&
3491                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3492                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3493                 return 0
3494
3495         local striped_dir=$DIR/$tdir/striped_dir
3496         local MDTIDX=1
3497
3498         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3499
3500         #To make sure MDT1 and MDT0 are connected
3501         #otherwise it may create single stripe dir here
3502         $LFS setdirstripe -i1 $DIR/$tdir/remote_dir
3503
3504         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
3505         do_facet mds$((MDTIDX+1)) lctl set_param fail_loc=0x1701
3506         $LFS setdirstripe -i0 -c2 $striped_dir &
3507         local CLIENT_PID=$!
3508
3509         fail mds$((MDTIDX + 1))
3510
3511         wait $CLIENT_PID || error "striped dir creation failed"
3512
3513         striped_dir_check_100 || error "striped dir check failed"
3514         rm -rf $DIR/$tdir || error "rmdir failed"
3515 }
3516 run_test 100a "DNE: create striped dir, drop update rep from MDT1, fail MDT1"
3517
3518 test_100b() {
3519         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3520         ([ $FAILURE_MODE == "HARD" ] &&
3521                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3522                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3523                 return 0
3524
3525         local striped_dir=$DIR/$tdir/striped_dir
3526         local MDTIDX=1
3527
3528         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3529
3530         #To make sure MDT1 and MDT0 are connected
3531         #otherwise it may create single stripe dir here
3532         $LFS setdirstripe -i1 $DIR/$tdir/remote_dir
3533
3534         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3535         do_facet mds$MDTIDX lctl set_param fail_loc=0x119
3536         $LFS mkdir -i0 -c2 $striped_dir &
3537
3538         local CLIENT_PID=$!
3539         fail mds$MDTIDX
3540
3541         wait $CLIENT_PID || error "striped dir creation failed"
3542
3543         striped_dir_check_100 || error "striped dir check failed"
3544         rm -rf $DIR/$tdir || error "rmdir failed"
3545 }
3546 run_test 100b "DNE: create striped dir, fail MDT0"
3547
3548 test_101() { #LU-5648
3549         mkdir -p $DIR/$tdir/d1
3550         mkdir -p $DIR/$tdir/d2
3551         touch $DIR/$tdir/file0
3552         num=1000
3553
3554         replay_barrier $SINGLEMDS
3555         for i in $(seq $num) ; do
3556                 echo test$i > $DIR/$tdir/d1/file$i
3557         done
3558
3559         fail_abort $SINGLEMDS
3560         for i in $(seq $num) ; do
3561                 touch $DIR/$tdir/d2/file$i
3562                 test -s $DIR/$tdir/d2/file$i &&
3563                         ls -al $DIR/$tdir/d2/file$i && error "file$i's size > 0"
3564         done
3565
3566         rm -rf $DIR/$tdir
3567 }
3568 run_test 101 "Shouldn't reassign precreated objs to other files after recovery"
3569
3570 test_102a() {
3571         local idx
3572         local facet
3573         local num
3574         local i
3575         local pids pid
3576
3577         [[ $(lctl get_param mdc.*.import |
3578              grep "connect_flags:.*multi_mod_rpc") ]] ||
3579                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3580
3581         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3582         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3583         facet="mds$((0x$idx + 1))"
3584
3585         # get current value of max_mod_rcps_in_flight
3586         num=$($LCTL get_param -n \
3587                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3588         # set default value if client does not support multi mod RPCs
3589         [ -z "$num" ] && num=1
3590
3591         echo "creating $num files ..."
3592         umask 0022
3593         for i in $(seq $num); do
3594                 touch $DIR/$tdir/file-$i
3595         done
3596
3597         # drop request on MDT to force resend
3598         #define OBD_FAIL_MDS_REINT_MULTI_NET 0x159
3599         do_facet $facet "$LCTL set_param fail_loc=0x159"
3600         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3601         for i in $(seq $num); do
3602                 chmod 0600 $DIR/$tdir/file-$i &
3603                 pids="$pids $!"
3604         done
3605         sleep 1
3606         do_facet $facet "$LCTL set_param fail_loc=0"
3607         for pid in $pids; do
3608                 wait $pid || error "chmod failed"
3609         done
3610         echo "done ($(date +%H:%M:%S))"
3611
3612         # check chmod succeed
3613         for i in $(seq $num); do
3614                 checkstat -vp 0600 $DIR/$tdir/file-$i
3615         done
3616
3617         rm -rf $DIR/$tdir
3618 }
3619 run_test 102a "check resend (request lost) with multiple modify RPCs in flight"
3620
3621 test_102b() {
3622         local idx
3623         local facet
3624         local num
3625         local i
3626         local pids pid
3627
3628         [[ $(lctl get_param mdc.*.import |
3629              grep "connect_flags:.*multi_mod_rpc") ]] ||
3630                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3631
3632         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3633         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3634         facet="mds$((0x$idx + 1))"
3635
3636         # get current value of max_mod_rcps_in_flight
3637         num=$($LCTL get_param -n \
3638                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3639         # set default value if client does not support multi mod RPCs
3640         [ -z "$num" ] && num=1
3641
3642         echo "creating $num files ..."
3643         umask 0022
3644         for i in $(seq $num); do
3645                 touch $DIR/$tdir/file-$i
3646         done
3647
3648         # drop reply on MDT to force reconstruction
3649         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3650         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3651         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3652         for i in $(seq $num); do
3653                 chmod 0600 $DIR/$tdir/file-$i &
3654                 pids="$pids $!"
3655         done
3656         sleep 1
3657         do_facet $facet "$LCTL set_param fail_loc=0"
3658         for pid in $pids; do
3659                 wait $pid || error "chmod failed"
3660         done
3661         echo "done ($(date +%H:%M:%S))"
3662
3663         # check chmod succeed
3664         for i in $(seq $num); do
3665                 checkstat -vp 0600 $DIR/$tdir/file-$i
3666         done
3667
3668         rm -rf $DIR/$tdir
3669 }
3670 run_test 102b "check resend (reply lost) with multiple modify RPCs in flight"
3671
3672 test_102c() {
3673         local idx
3674         local facet
3675         local num
3676         local i
3677         local pids pid
3678
3679         [[ $(lctl get_param mdc.*.import |
3680              grep "connect_flags:.*multi_mod_rpc") ]] ||
3681                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3682
3683         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3684         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3685         facet="mds$((0x$idx + 1))"
3686
3687         # get current value of max_mod_rcps_in_flight
3688         num=$($LCTL get_param -n \
3689                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3690         # set default value if client does not support multi mod RPCs
3691         [ -z "$num" ] && num=1
3692
3693         echo "creating $num files ..."
3694         umask 0022
3695         for i in $(seq $num); do
3696                 touch $DIR/$tdir/file-$i
3697         done
3698
3699         replay_barrier $facet
3700
3701         # drop reply on MDT
3702         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3703         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3704         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3705         for i in $(seq $num); do
3706                 chmod 0600 $DIR/$tdir/file-$i &
3707                 pids="$pids $!"
3708         done
3709         sleep 1
3710         do_facet $facet "$LCTL set_param fail_loc=0"
3711
3712         # fail MDT
3713         fail $facet
3714
3715         for pid in $pids; do
3716                 wait $pid || error "chmod failed"
3717         done
3718         echo "done ($(date +%H:%M:%S))"
3719
3720         # check chmod succeed
3721         for i in $(seq $num); do
3722                 checkstat -vp 0600 $DIR/$tdir/file-$i
3723         done
3724
3725         rm -rf $DIR/$tdir
3726 }
3727 run_test 102c "check replay w/o reconstruction with multiple mod RPCs in flight"
3728
3729 test_102d() {
3730         local idx
3731         local facet
3732         local num
3733         local i
3734         local pids pid
3735
3736         [[ $(lctl get_param mdc.*.import |
3737              grep "connect_flags:.*multi_mod_rpc") ]] ||
3738                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3739
3740         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3741         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3742         facet="mds$((0x$idx + 1))"
3743
3744         # get current value of max_mod_rcps_in_flight
3745         num=$($LCTL get_param -n \
3746                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3747         # set default value if client does not support multi mod RPCs
3748         [ -z "$num" ] && num=1
3749
3750         echo "creating $num files ..."
3751         umask 0022
3752         for i in $(seq $num); do
3753                 touch $DIR/$tdir/file-$i
3754         done
3755
3756         # drop reply on MDT
3757         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3758         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3759         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3760         for i in $(seq $num); do
3761                 chmod 0600 $DIR/$tdir/file-$i &
3762                 pids="$pids $!"
3763         done
3764         sleep 1
3765
3766         # write MDT transactions to disk
3767         do_facet $facet "sync; sync; sync"
3768
3769         do_facet $facet "$LCTL set_param fail_loc=0"
3770
3771         # fail MDT
3772         fail $facet
3773
3774         for pid in $pids; do
3775                 wait $pid || error "chmod failed"
3776         done
3777         echo "done ($(date +%H:%M:%S))"
3778
3779         # check chmod succeed
3780         for i in $(seq $num); do
3781                 checkstat -vp 0600 $DIR/$tdir/file-$i
3782         done
3783
3784         rm -rf $DIR/$tdir
3785 }
3786 run_test 102d "check replay & reconstruction with multiple mod RPCs in flight"
3787
3788 test_103() {
3789         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3790         local mds_version=$(lustre_version_code $SINGLEMDS)
3791         [[ $mds_version -gt $(version_code 2.8.54) ]] ||
3792                 { skip "Need MDS version 2.8.54+"; return; }
3793
3794 #define OBD_FAIL_MDS_TRACK_OVERFLOW 0x162
3795         do_facet mds1 $LCTL set_param fail_loc=0x80000162
3796
3797         mkdir -p $DIR/$tdir
3798         createmany -o $DIR/$tdir/t- 30 ||
3799                 error "create files on remote directory failed"
3800         sync
3801         rm -rf $DIR/$tdir/t-*
3802         sync
3803 #MDS should crash with tr->otr_next_id overflow
3804         fail mds1
3805 }
3806 run_test 103 "Check otr_next_id overflow"
3807
3808
3809 check_striped_dir_110()
3810 {
3811         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
3812                         error "create striped dir failed"
3813         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
3814         [ $stripe_count -eq $MDSCOUNT ] ||
3815                 error "$stripe_count != 2 after recovery"
3816 }
3817
3818 test_110a() {
3819         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3820         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3821                 skip "Need MDS version at least 2.7.56"
3822
3823         ([ $FAILURE_MODE == "HARD" ] &&
3824                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3825                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3826                 return 0
3827
3828         mkdir -p $DIR/$tdir
3829         replay_barrier mds1
3830         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3831         fail mds1
3832
3833         check_striped_dir_110 || error "check striped_dir failed"
3834         rm -rf $DIR/$tdir || error "rmdir failed"
3835
3836         return 0
3837 }
3838 run_test 110a "DNE: create striped dir, fail MDT1"
3839
3840 test_110b() {
3841         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3842         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3843                 skip "Need MDS version at least 2.7.56"
3844
3845         ([ $FAILURE_MODE == "HARD" ] &&
3846                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3847                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3848                 return 0
3849
3850         mkdir -p $DIR/$tdir
3851         replay_barrier mds1
3852         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3853         umount $MOUNT
3854         fail mds1
3855         zconf_mount $(hostname) $MOUNT
3856         client_up || return 1
3857
3858         check_striped_dir_110 || error "check striped_dir failed"
3859
3860         rm -rf $DIR/$tdir || error "rmdir failed"
3861
3862         return 0
3863 }
3864 run_test 110b "DNE: create striped dir, fail MDT1 and client"
3865
3866 test_110c() {
3867         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3868         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3869                 skip "Need MDS version at least 2.7.56"
3870
3871         ([ $FAILURE_MODE == "HARD" ] &&
3872                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3873                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3874                 return 0
3875
3876         mkdir -p $DIR/$tdir
3877         replay_barrier mds2
3878         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3879         fail mds2
3880
3881         check_striped_dir_110 || error "check striped_dir failed"
3882
3883         rm -rf $DIR/$tdir || error "rmdir failed"
3884
3885         return 0
3886 }
3887 run_test 110c "DNE: create striped dir, fail MDT2"
3888
3889 test_110d() {
3890         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3891         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3892                 skip "Need MDS version at least 2.7.56"
3893
3894         ([ $FAILURE_MODE == "HARD" ] &&
3895                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3896                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3897                 return 0
3898
3899         mkdir -p $DIR/$tdir
3900         replay_barrier mds2
3901         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3902         umount $MOUNT
3903         fail mds2
3904         zconf_mount $(hostname) $MOUNT
3905         client_up || return 1
3906
3907         check_striped_dir_110 || error "check striped_dir failed"
3908
3909         rm -rf $DIR/$tdir || error "rmdir failed"
3910
3911         return 0
3912 }
3913 run_test 110d "DNE: create striped dir, fail MDT2 and client"
3914
3915 test_110e() {
3916         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3917         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3918                 skip "Need MDS version at least 2.7.56"
3919
3920         ([ $FAILURE_MODE == "HARD" ] &&
3921                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3922                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3923                 return 0
3924
3925         mkdir -p $DIR/$tdir
3926         replay_barrier mds2
3927         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3928         umount $MOUNT
3929         replay_barrier mds1
3930         fail mds1,mds2
3931         zconf_mount $(hostname) $MOUNT
3932         client_up || return 1
3933
3934         check_striped_dir_110 || error "check striped_dir failed"
3935
3936         rm -rf $DIR/$tdir || error "rmdir failed"
3937
3938         return 0
3939 }
3940 run_test 110e "DNE: create striped dir, uncommit on MDT2, fail client/MDT1/MDT2"
3941
3942 test_110f() {
3943         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3944         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3945                 skip "Need MDS version at least 2.7.56"
3946
3947         ([ $FAILURE_MODE == "HARD" ] &&
3948                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3949                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3950                 return 0
3951
3952         mkdir -p $DIR/$tdir
3953         replay_barrier mds1
3954         replay_barrier mds2
3955         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3956         fail mds2,mds1
3957
3958         check_striped_dir_110 || error "check striped_dir failed"
3959
3960         rm -rf $DIR/$tdir || error "rmdir failed"
3961
3962         return 0
3963 }
3964 run_test 110f "DNE: create striped dir, fail MDT1/MDT2"
3965
3966 test_110g() {
3967         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3968         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3969                 skip "Need MDS version at least 2.7.56"
3970
3971         ([ $FAILURE_MODE == "HARD" ] &&
3972                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3973                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3974                 return 0
3975
3976         mkdir -p $DIR/$tdir
3977         replay_barrier mds1
3978         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3979         umount $MOUNT
3980         replay_barrier mds2
3981         fail mds1,mds2
3982         zconf_mount $(hostname) $MOUNT
3983         client_up || return 1
3984
3985         check_striped_dir_110 || error "check striped_dir failed"
3986
3987         rm -rf $DIR/$tdir || error "rmdir failed"
3988
3989         return 0
3990 }
3991 run_test 110g "DNE: create striped dir, uncommit on MDT1, fail client/MDT1/MDT2"
3992
3993 test_111a() {
3994         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3995         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
3996                 skip "Need MDS version at least 2.7.56"
3997
3998         ([ $FAILURE_MODE == "HARD" ] &&
3999                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4000                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4001                 return 0
4002
4003         mkdir -p $DIR/$tdir
4004         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4005         replay_barrier mds1
4006         rm -rf $DIR/$tdir/striped_dir
4007         fail mds1
4008
4009         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4010                         error "striped dir still exists"
4011         return 0
4012 }
4013 run_test 111a "DNE: unlink striped dir, fail MDT1"
4014
4015 test_111b() {
4016         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4017         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4018                 skip "Need MDS version at least 2.7.56"
4019
4020         ([ $FAILURE_MODE == "HARD" ] &&
4021                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4022                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4023                 return 0
4024
4025         mkdir -p $DIR/$tdir
4026         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4027         replay_barrier mds2
4028         rm -rf $DIR/$tdir/striped_dir
4029         umount $MOUNT
4030         fail mds2
4031         zconf_mount $(hostname) $MOUNT
4032         client_up || return 1
4033
4034         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4035                         error "striped dir still exists"
4036         return 0
4037 }
4038 run_test 111b "DNE: unlink striped dir, fail MDT2"
4039
4040 test_111c() {
4041         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4042         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4043                 skip "Need MDS version at least 2.7.56"
4044
4045         ([ $FAILURE_MODE == "HARD" ] &&
4046                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4047                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4048                 return 0
4049
4050         mkdir -p $DIR/$tdir
4051         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4052         replay_barrier mds1
4053         rm -rf $DIR/$tdir/striped_dir
4054         umount $MOUNT
4055         replay_barrier mds2
4056         fail mds1,mds2
4057         zconf_mount $(hostname) $MOUNT
4058         client_up || return 1
4059         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4060                         error "striped dir still exists"
4061         return 0
4062 }
4063 run_test 111c "DNE: unlink striped dir, uncommit on MDT1, fail client/MDT1/MDT2"
4064
4065 test_111d() {
4066         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4067         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4068                 skip "Need MDS version at least 2.7.56"
4069
4070         ([ $FAILURE_MODE == "HARD" ] &&
4071                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4072                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4073                 return 0
4074
4075         mkdir -p $DIR/$tdir
4076         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4077         replay_barrier mds2
4078         rm -rf $DIR/$tdir/striped_dir
4079         umount $MOUNT
4080         replay_barrier mds1
4081         fail mds1,mds2
4082         zconf_mount $(hostname) $MOUNT
4083         client_up || return 1
4084         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4085                         error "striped dir still exists"
4086
4087         return 0
4088 }
4089 run_test 111d "DNE: unlink striped dir, uncommit on MDT2, fail client/MDT1/MDT2"
4090
4091 test_111e() {
4092         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4093         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4094                 skip "Need MDS version at least 2.7.56"
4095
4096         ([ $FAILURE_MODE == "HARD" ] &&
4097                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4098                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4099                 return 0
4100
4101         mkdir -p $DIR/$tdir
4102         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4103         replay_barrier mds2
4104         rm -rf $DIR/$tdir/striped_dir
4105         replay_barrier mds1
4106         fail mds1,mds2
4107         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4108                         error "striped dir still exists"
4109         return 0
4110 }
4111 run_test 111e "DNE: unlink striped dir, uncommit on MDT2, fail MDT1/MDT2"
4112
4113 test_111f() {
4114         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4115         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4116                 skip "Need MDS version at least 2.7.56"
4117
4118         ([ $FAILURE_MODE == "HARD" ] &&
4119                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4120                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4121                 return 0
4122
4123         mkdir -p $DIR/$tdir
4124         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4125         replay_barrier mds1
4126         rm -rf $DIR/$tdir/striped_dir
4127         replay_barrier mds2
4128         fail mds1,mds2
4129         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4130                         error "striped dir still exists"
4131         return 0
4132 }
4133 run_test 111f "DNE: unlink striped dir, uncommit on MDT1, fail MDT1/MDT2"
4134
4135 test_111g() {
4136         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4137         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4138                 skip "Need MDS version at least 2.7.56"
4139
4140         ([ $FAILURE_MODE == "HARD" ] &&
4141                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4142                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4143                 return 0
4144
4145         mkdir -p $DIR/$tdir
4146         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4147         replay_barrier mds1
4148         replay_barrier mds2
4149         rm -rf $DIR/$tdir/striped_dir
4150         fail mds1,mds2
4151         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4152                         error "striped dir still exists"
4153         return 0
4154 }
4155 run_test 111g "DNE: unlink striped dir, fail MDT1/MDT2"
4156
4157 test_112_rename_prepare() {
4158         mkdir -p $DIR/$tdir/src_dir
4159         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
4160                 error "create remote source failed"
4161
4162         touch $DIR/$tdir/src_dir/src_child/a
4163
4164         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
4165                 error "create remote target dir failed"
4166
4167         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
4168                 error "create remote target child failed"
4169 }
4170
4171 test_112_check() {
4172         find $DIR/$tdir/
4173         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
4174                 error "src_child still exists after rename"
4175
4176         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
4177                 error "missing file(a) after rename"
4178 }
4179
4180 test_112a() {
4181         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4182         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4183                 skip "Need MDS version at least 2.7.56"
4184
4185         ([ $FAILURE_MODE == "HARD" ] &&
4186                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4187                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4188                 return 0
4189
4190         test_112_rename_prepare
4191         replay_barrier mds1
4192
4193         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4194                 error "rename dir cross MDT failed!"
4195         fail mds1
4196
4197         test_112_check
4198         rm -rf $DIR/$tdir || error "rmdir failed"
4199 }
4200 run_test 112a "DNE: cross MDT rename, fail MDT1"
4201
4202 test_112b() {
4203         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4204         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4205                 skip "Need MDS version at least 2.7.56"
4206
4207         ([ $FAILURE_MODE == "HARD" ] &&
4208                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4209                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4210                 return 0
4211
4212         test_112_rename_prepare
4213         replay_barrier mds2
4214
4215         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4216                 error "rename dir cross MDT failed!"
4217
4218         fail mds2
4219
4220         test_112_check
4221         rm -rf $DIR/$tdir || error "rmdir failed"
4222 }
4223 run_test 112b "DNE: cross MDT rename, fail MDT2"
4224
4225 test_112c() {
4226         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4227         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4228                 skip "Need MDS version at least 2.7.56"
4229
4230         ([ $FAILURE_MODE == "HARD" ] &&
4231                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4232                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4233                 return 0
4234
4235         test_112_rename_prepare
4236         replay_barrier mds3
4237
4238         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4239                 error "rename dir cross MDT failed!"
4240
4241         fail mds3
4242
4243         test_112_check
4244         rm -rf $DIR/$tdir || error "rmdir failed"
4245 }
4246 run_test 112c "DNE: cross MDT rename, fail MDT3"
4247
4248 test_112d() {
4249         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4250         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4251                 skip "Need MDS version at least 2.7.56"
4252
4253         ([ $FAILURE_MODE == "HARD" ] &&
4254                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4255                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4256                 return 0
4257
4258         test_112_rename_prepare
4259         replay_barrier mds4
4260
4261         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4262                 error "rename dir cross MDT failed!"
4263
4264         fail mds4
4265
4266         test_112_check
4267         rm -rf $DIR/$tdir || error "rmdir failed"
4268 }
4269 run_test 112d "DNE: cross MDT rename, fail MDT4"
4270
4271 test_112e() {
4272         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4273         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4274                 skip "Need MDS version at least 2.7.56"
4275
4276         ([ $FAILURE_MODE == "HARD" ] &&
4277                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4278                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4279                 return 0
4280
4281         test_112_rename_prepare
4282         replay_barrier mds1
4283         replay_barrier mds2
4284
4285         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4286                 error "rename dir cross MDT failed!"
4287
4288         fail mds1,mds2
4289
4290         test_112_check
4291         rm -rf $DIR/$tdir || error "rmdir failed"
4292 }
4293 run_test 112e "DNE: cross MDT rename, fail MDT1 and MDT2"
4294
4295 test_112f() {
4296         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4297         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4298                 skip "Need MDS version at least 2.7.56"
4299
4300         ([ $FAILURE_MODE == "HARD" ] &&
4301                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4302                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4303                 return 0
4304
4305         test_112_rename_prepare
4306         replay_barrier mds1
4307         replay_barrier mds3
4308
4309         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4310                 error "rename dir cross MDT failed!"
4311
4312         fail mds1,mds3
4313
4314         test_112_check
4315         rm -rf $DIR/$tdir || error "rmdir failed"
4316 }
4317 run_test 112f "DNE: cross MDT rename, fail MDT1 and MDT3"
4318
4319 test_112g() {
4320         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4321         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4322                 skip "Need MDS version at least 2.7.56"
4323
4324         ([ $FAILURE_MODE == "HARD" ] &&
4325                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4326                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4327                 return 0
4328
4329         test_112_rename_prepare
4330         replay_barrier mds1
4331         replay_barrier mds4
4332
4333         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4334                 error "rename dir cross MDT failed!"
4335
4336         fail mds1,mds4
4337
4338         test_112_check
4339         rm -rf $DIR/$tdir || error "rmdir failed"
4340 }
4341 run_test 112g "DNE: cross MDT rename, fail MDT1 and MDT4"
4342
4343 test_112h() {
4344         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4345         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4346                 skip "Need MDS version at least 2.7.56"
4347
4348         ([ $FAILURE_MODE == "HARD" ] &&
4349                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4350                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4351                 return 0
4352
4353         test_112_rename_prepare
4354         replay_barrier mds2
4355         replay_barrier mds3
4356
4357         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4358                 error "rename dir cross MDT failed!"
4359
4360         fail mds2,mds3
4361
4362         test_112_check
4363         rm -rf $DIR/$tdir || error "rmdir failed"
4364 }
4365 run_test 112h "DNE: cross MDT rename, fail MDT2 and MDT3"
4366
4367 test_112i() {
4368         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4369         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4370                 skip "Need MDS version at least 2.7.56"
4371
4372         ([ $FAILURE_MODE == "HARD" ] &&
4373                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4374                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4375                 return 0
4376
4377         test_112_rename_prepare
4378         replay_barrier mds2
4379         replay_barrier mds4
4380
4381         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4382                 error "rename dir cross MDT failed!"
4383
4384         fail mds2,mds4
4385
4386         test_112_check
4387         rm -rf $DIR/$tdir || error "rmdir failed"
4388 }
4389 run_test 112i "DNE: cross MDT rename, fail MDT2 and MDT4"
4390
4391 test_112j() {
4392         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4393         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4394                 skip "Need MDS version at least 2.7.56"
4395
4396         ([ $FAILURE_MODE == "HARD" ] &&
4397                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4398                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4399                 return 0
4400
4401         test_112_rename_prepare
4402         replay_barrier mds3
4403         replay_barrier mds4
4404
4405         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4406                 error "rename dir cross MDT failed!"
4407
4408         fail mds3,mds4
4409
4410         test_112_check
4411         rm -rf $DIR/$tdir || error "rmdir failed"
4412 }
4413 run_test 112j "DNE: cross MDT rename, fail MDT3 and MDT4"
4414
4415 test_112k() {
4416         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4417         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4418                 skip "Need MDS version at least 2.7.56"
4419
4420         ([ $FAILURE_MODE == "HARD" ] &&
4421                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4422                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4423                 return 0
4424
4425         test_112_rename_prepare
4426         replay_barrier mds1
4427         replay_barrier mds2
4428         replay_barrier mds3
4429
4430         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4431                 error "rename dir cross MDT failed!"
4432
4433         fail mds1,mds2,mds3
4434
4435         test_112_check
4436         rm -rf $DIR/$tdir || error "rmdir failed"
4437 }
4438 run_test 112k "DNE: cross MDT rename, fail MDT1,MDT2,MDT3"
4439
4440 test_112l() {
4441         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4442         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4443                 skip "Need MDS version at least 2.7.56"
4444
4445         ([ $FAILURE_MODE == "HARD" ] &&
4446                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4447                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4448                 return 0
4449
4450         test_112_rename_prepare
4451         replay_barrier mds1
4452         replay_barrier mds2
4453         replay_barrier mds4
4454
4455         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4456                 error "rename dir cross MDT failed!"
4457
4458         fail mds1,mds2,mds4
4459
4460         test_112_check
4461         rm -rf $DIR/$tdir || error "rmdir failed"
4462 }
4463 run_test 112l "DNE: cross MDT rename, fail MDT1,MDT2,MDT4"
4464
4465 test_112m() {
4466         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4467         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4468                 skip "Need MDS version at least 2.7.56"
4469
4470         ([ $FAILURE_MODE == "HARD" ] &&
4471                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4472                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4473                 return 0
4474
4475         test_112_rename_prepare
4476         replay_barrier mds1
4477         replay_barrier mds3
4478         replay_barrier mds4
4479
4480         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4481                 error "rename dir cross MDT failed!"
4482
4483         fail mds1,mds3,mds4
4484
4485         test_112_check
4486         rm -rf $DIR/$tdir || error "rmdir failed"
4487 }
4488 run_test 112m "DNE: cross MDT rename, fail MDT1,MDT3,MDT4"
4489
4490 test_112n() {
4491         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4492         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4493                 skip "Need MDS version at least 2.7.56"
4494
4495         ([ $FAILURE_MODE == "HARD" ] &&
4496                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4497                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4498                 return 0
4499
4500         test_112_rename_prepare
4501         replay_barrier mds2
4502         replay_barrier mds3
4503         replay_barrier mds4
4504
4505         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4506                 error "rename dir cross MDT failed!"
4507
4508         fail mds2,mds3,mds4
4509
4510         test_112_check
4511         rm -rf $DIR/$tdir || error "rmdir failed"
4512 }
4513 run_test 112n "DNE: cross MDT rename, fail MDT2,MDT3,MDT4"
4514
4515 test_115() {
4516         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4517         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.7.56) ]] ||
4518                 skip "Need MDS version at least 2.7.56"
4519
4520         ([ $FAILURE_MODE == "HARD" ] &&
4521                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4522                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4523                 return 0
4524         local fail_index=0
4525         local index
4526         local i
4527         local j
4528
4529         mkdir -p $DIR/$tdir
4530         for ((j=0;j<$((MDSCOUNT));j++)); do
4531                 fail_index=$((fail_index+1))
4532                 index=$((fail_index % MDSCOUNT))
4533                 replay_barrier mds$((index + 1))
4534                 for ((i=0;i<5;i++)); do
4535                         test_mkdir -i$index -c$MDSCOUNT $DIR/$tdir/test_$i ||
4536                                 error "create striped dir $DIR/$tdir/test_$i"
4537                 done
4538
4539                 fail mds$((index + 1))
4540                 for ((i=0;i<5;i++)); do
4541                         checkstat -t dir $DIR/$tdir/test_$i ||
4542                                 error "$DIR/$tdir/test_$i does not exist!"
4543                 done
4544                 rm -rf $DIR/$tdir/test_* ||
4545                                 error "rmdir fails"
4546         done
4547 }
4548 run_test 115 "failover for create/unlink striped directory"
4549
4550 test_116a() {
4551         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4552         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
4553                 skip "Do not support large update log before 2.7.55" &&
4554                 return 0
4555         ([ $FAILURE_MODE == "HARD" ] &&
4556                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4557                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4558                 return 0
4559         local fail_index=0
4560
4561         mkdir -p $DIR/$tdir
4562         replay_barrier mds1
4563
4564         # OBD_FAIL_SPLIT_UPDATE_REC       0x1702
4565         do_facet mds1 "lctl set_param fail_loc=0x80001702"
4566         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4567
4568         fail mds1
4569         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
4570                 error "stried_dir does not exists"
4571 }
4572 run_test 116a "large update log master MDT recovery"
4573
4574 test_116b() {
4575         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4576         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
4577                 skip "Do not support large update log before 2.7.55" &&
4578                 return 0
4579
4580         ([ $FAILURE_MODE == "HARD" ] &&
4581                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4582                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4583                 return 0
4584         local fail_index=0
4585
4586         mkdir -p $DIR/$tdir
4587         replay_barrier mds2
4588
4589         # OBD_FAIL_SPLIT_UPDATE_REC       0x1702
4590         do_facet mds2 "lctl set_param fail_loc=0x80001702"
4591         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4592
4593         fail mds2
4594         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
4595                 error "stried_dir does not exists"
4596 }
4597 run_test 116b "large update log slave MDT recovery"
4598
4599 test_117() {
4600         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4601         ([ $FAILURE_MODE == "HARD" ] &&
4602                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4603                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4604                 return 0
4605         local index
4606         local mds_indexs
4607
4608         mkdir -p $DIR/$tdir
4609         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/remote_dir
4610         $LFS setdirstripe -i1 -c$MDSCOUNT $DIR/$tdir/remote_dir_1
4611         sleep 2
4612
4613         # Let's set rdonly on all MDTs, so client will send
4614         # replay requests on all MDTs and replay these requests
4615         # at the same time. This test will verify the recovery
4616         # will not be deadlock in this case, LU-7531.
4617         for ((index = 0; index < $((MDSCOUNT)); index++)); do
4618                 replay_barrier mds$((index + 1))
4619                 if [ -z $mds_indexs ]; then
4620                         mds_indexs="${mds_indexs}mds$((index+1))"
4621                 else
4622                         mds_indexs="${mds_indexs},mds$((index+1))"
4623                 fi
4624         done
4625
4626         rm -rf $DIR/$tdir/remote_dir
4627         rm -rf $DIR/$tdir/remote_dir_1
4628
4629         fail $mds_indexs
4630
4631         rm -rf $DIR/$tdir || error "rmdir failed"
4632 }
4633 run_test 117 "DNE: cross MDT unlink, fail MDT1 and MDT2"
4634
4635 test_118() {
4636         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4637         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4638                 skip "Do not support large update log before 2.7.64" &&
4639                 return 0
4640
4641         mkdir -p $DIR/$tdir
4642
4643         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
4644                 error "setdirstripe fails"
4645         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1 ||
4646                 error "setdirstripe fails 1"
4647         rm -rf $DIR/$tdir/striped_dir* || error "rmdir fails"
4648
4649         # OBD_FAIL_INVALIDATE_UPDATE       0x1705
4650         do_facet mds1 "lctl set_param fail_loc=0x1705"
4651         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir
4652         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1
4653         do_facet mds1 "lctl set_param fail_loc=0x0"
4654
4655         replay_barrier mds1
4656         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir
4657         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1
4658         fail mds1
4659
4660         true
4661 }
4662 run_test 118 "invalidate osp update will not cause update log corruption"
4663
4664 test_119() {
4665         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4666         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4667                 skip "Do not support large update log before 2.7.64" &&
4668                 return 0
4669         local stripe_count
4670         local hard_timeout=$(do_facet mds1 \
4671                 "lctl get_param -n mdt.$FSNAME-MDT0000.recovery_time_hard")
4672
4673         local clients=${CLIENTS:-$HOSTNAME}
4674         local time_min=$(recovery_time_min)
4675
4676         mkdir -p $DIR/$tdir
4677         mkdir $DIR/$tdir/tmp
4678         rmdir $DIR/$tdir/tmp
4679
4680         replay_barrier mds1
4681         mkdir $DIR/$tdir/dir_1
4682         for ((i = 0; i < 20; i++)); do
4683                 $LFS setdirstripe -i0 -c2 $DIR/$tdir/stripe_dir-$i
4684         done
4685
4686         stop mds1
4687         change_active mds1
4688         wait_for_facet mds1
4689
4690         #define OBD_FAIL_TGT_REPLAY_DELAY  0x714
4691         do_facet mds1 $LCTL set_param fail_loc=0x80000714
4692         #sleep (timeout + 5), so mds will evict the client exports,
4693         #but DNE update recovery will keep going.
4694         do_facet mds1 $LCTL set_param fail_val=$((time_min + 5))
4695
4696         mount_facet mds1 "-o recovery_time_hard=$time_min"
4697
4698         wait_clients_import_state "$clients" mds1 FULL
4699
4700         clients_up || clients_up || error "failover df: $?"
4701
4702         #revert back the hard timeout
4703         do_facet mds1 $LCTL set_param \
4704                 mdt.$FSNAME-MDT0000.recovery_time_hard=$hard_timeout
4705
4706         for ((i = 0; i < 20; i++)); do
4707                 stripe_count=$($LFS getdirstripe -c $DIR/$tdir/stripe_dir-$i)
4708                 [ $stripe_count == 2 ] || {
4709                         error "stripe_dir-$i creation replay fails"
4710                         break
4711                 }
4712         done
4713 }
4714 run_test 119 "timeout of normal replay does not cause DNE replay fails  "
4715
4716 test_120() {
4717         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4718         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4719                 skip "Do not support large update log before 2.7.64" &&
4720                 return 0
4721
4722         mkdir $DIR/$tdir
4723         replay_barrier_nosync mds1
4724         for ((i = 0; i < 20; i++)); do
4725                 mkdir $DIR/$tdir/dir-$i || {
4726                         error "create dir-$i fails"
4727                         break
4728                 }
4729                 $LFS setdirstripe -i0 -c2 $DIR/$tdir/stripe_dir-$i || {
4730                         error "create stripe_dir-$i fails"
4731                         break
4732                 }
4733         done
4734
4735         fail_abort mds1
4736
4737         for ((i = 0; i < 20; i++)); do
4738                 [ ! -e "$DIR/$tdir/dir-$i" ] || {
4739                         error "dir-$i still exists"
4740                         break
4741                 }
4742                 [ ! -e "$DIR/$tdir/stripe_dir-$i" ] || {
4743                         error "stripe_dir-$i still exists"
4744                         break
4745                 }
4746         done
4747 }
4748 run_test 120 "DNE fail abort should stop both normal and DNE replay"
4749
4750 test_121() {
4751         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4752                 skip "Don't support it before 2.11" &&
4753                 return 0
4754
4755         local at_max_saved=$(at_max_get mds)
4756
4757         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4758         cancel_lru_locks mdc
4759
4760         multiop_bg_pause $DIR/$tfile s_s || error "multiop $DIR/$tfile failed"
4761         mpid=$!
4762
4763         lctl set_param -n ldlm.cancel_unused_locks_before_replay "0"
4764
4765         stop mds1
4766         change_active mds1
4767         wait_for_facet mds1
4768
4769         #define OBD_FAIL_TGT_RECOVERY_REQ_RACE  0x721
4770         do_facet $SINGLEMDS "lctl set_param fail_loc=0x721 fail_val=0"
4771         at_max_set 0 mds
4772
4773         mount_facet mds1
4774         wait_clients_import_state "$clients" mds1 FULL
4775         clients_up || clients_up || error "failover df: $?"
4776
4777         kill -USR1 $mpid
4778         wait $mpid || error "multiop_bg_pause pid failed"
4779
4780         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
4781         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
4782         at_max_set $at_max_saved mds
4783         rm -f $DIR/$tfile
4784 }
4785 run_test 121 "lock replay timed out and race"
4786
4787 test_130a() {
4788         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4789                 skip "Do not support Data-on-MDT before 2.11"
4790
4791         replay_barrier $SINGLEMDS
4792         $LFS setstripe -E 1M -L mdt -E EOF -c 2 $DIR/$tfile
4793         fail $SINGLEMDS
4794
4795         [ $($LFS getstripe -L $DIR/$tfile) == "mdt" ] ||
4796                 error "Fail to replay DoM file creation"
4797 }
4798 run_test 130a "DoM file create (setstripe) replay"
4799
4800 test_130b() {
4801         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4802                 skip "Do not support Data-on-MDT before 2.11"
4803
4804         mkdir $DIR/$tdir
4805         $LFS setstripe -E 1M -L mdt -E EOF -c 2 $DIR/$tdir
4806         replay_barrier $SINGLEMDS
4807         touch $DIR/$tdir/$tfile
4808         fail $SINGLEMDS
4809
4810         [ $($LFS getstripe -L $DIR/$tdir/$tfile) == "mdt" ] ||
4811                 error "Fail to replay DoM file creation"
4812 }
4813 run_test 130b "DoM file create (inherited) replay"
4814
4815 test_131a() {
4816         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4817                 skip "Do not support Data-on-MDT before 2.11"
4818
4819         $LFS setstripe -E 1M -L mdt -E EOF -c 2 $DIR/$tfile
4820         replay_barrier $SINGLEMDS
4821         echo "dom_data" | dd of=$DIR/$tfile bs=8 count=1
4822         # lock is not canceled and will be replayed
4823         fail $SINGLEMDS
4824
4825         [ $(cat $DIR/$tfile) == "dom_data" ] ||
4826                 error "Wrong file content after failover"
4827 }
4828 run_test 131a "DoM file write lock replay"
4829
4830 test_131b() {
4831         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4832                 skip "Do not support Data-on-MDT before 2.11"
4833
4834         $LFS setstripe -E 1M -L mdt -E EOF -c 2 $DIR/$tfile
4835         replay_barrier $SINGLEMDS
4836         echo "dom_data" | dd of=$DIR/$tfile bs=8 count=1
4837         cancel_lru_locks mdc
4838
4839         fail $SINGLEMDS
4840
4841         [ $(cat $DIR/$tfile) == "dom_data" ] ||
4842                 error "Wrong file content after failover"
4843 }
4844 run_test 131b "DoM file write replay"
4845
4846 test_132a() {
4847         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.9.90) ] &&
4848                 skip "Do not support PFL files before 2.10"
4849
4850         $LFS setstripe -E 1M -c 1 -E EOF -c 2 $DIR/$tfile
4851         replay_barrier $SINGLEMDS
4852         # write over the first component size cause next component instantiation
4853         dd if=/dev/urandom of=$DIR/$tfile bs=1M count=1 seek=1 ||
4854                 error "dd to $DIR/$tfile failed"
4855         lfs getstripe $DIR/$tfile
4856
4857         cksum=$(md5sum $DIR/$tfile | awk '{print $1}')
4858         $LFS getstripe -I2 $DIR/$tfile | grep -q lmm_objects ||
4859                 error "Component #1 was not instantiated"
4860
4861         fail $SINGLEMDS
4862
4863         lfs getstripe $DIR/$tfile
4864         $LFS getstripe -I2 $DIR/$tfile | grep -q lmm_objects ||
4865                 error "Component #1 instantiation was not replayed"
4866         cksum2=$(md5sum $DIR/$tfile | awk '{print $1}')
4867         if [ $cksum != $cksum2 ] ; then
4868                 error_noexit "New cksum $cksum2 does not match original $cksum"
4869         fi
4870 }
4871 run_test 132a "PFL new component instantiate replay"
4872
4873 test_133() {
4874         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4875         ([ $FAILURE_MODE == "HARD" ] &&
4876                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4877                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4878                 return 0
4879
4880         local remote_dir=$DIR/$tdir/remote_dir
4881
4882         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir failed"
4883         $LFS mkdir -i 1 $remote_dir
4884
4885         umount $MOUNT
4886         do_facet mds2 $LCTL set_param seq.srv*MDT0001.space=clear
4887
4888         zconf_mount $(hostname) $MOUNT
4889         client_up || return 1
4890
4891         #define OBD_FAIL_MDS_ALL_REQUEST_NET     0x123
4892         # SEQ_QUERY                       = 700
4893         do_facet mds1 $LCTL set_param fail_val=700 fail_loc=0x80000123
4894         cp /etc/hosts $remote_dir/file &
4895         local pid=$!
4896         sleep 1
4897
4898         fail_nodf mds1
4899
4900         wait $pid || error "cp failed"
4901         rm -rf $DIR/$tdir || error "rmdir failed"
4902
4903         return 0
4904 }
4905 run_test 133 "check resend of ongoing requests for lwp during failover"
4906
4907 test_134() {
4908         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return 0
4909
4910         pool_add pool_134
4911         pool_add_targets pool_134 1 1
4912
4913         mkdir $DIR/$tdir
4914         $LFS setstripe -p pool_134 $DIR/$tdir
4915
4916         replay_barrier mds1
4917
4918         touch $DIR/$tdir/$tfile
4919
4920         fail mds1
4921
4922         [ -f $DIR/$tdir/$tfile ] || error "file does not exist"
4923 }
4924 run_test 134 "replay creation of a file created in a pool"
4925
4926 complete $SECONDS
4927 check_and_cleanup_lustre
4928 exit_status