Whamcloud - gitweb
LU-10018 protocol: MDT as a statfs proxy
[fs/lustre-release.git] / lustre / tests / replay-single.sh
1 #!/bin/bash
2
3 set -e
4 #set -v
5
6 #
7 # This test needs to be run on the client
8 #
9 SAVE_PWD=$PWD
10 export MULTIOP=${MULTIOP:-multiop}
11 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
12 SETUP=${SETUP:-}
13 CLEANUP=${CLEANUP:-}
14 . $LUSTRE/tests/test-framework.sh
15 init_test_env $@
16 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
17 init_logging
18 CHECK_GRANT=${CHECK_GRANT:-"yes"}
19 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
20
21 require_dsh_mds || exit 0
22
23 # Skip these tests
24 # bug number for skipped tests:
25 ALWAYS_EXCEPT="$REPLAY_SINGLE_EXCEPT "
26 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
27
28 #                                  7.5  (min)"
29 [ "$SLOW" = "no" ] && EXCEPT_SLOW="44b"
30
31 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
32 # bug number for skipped test:
33         ALWAYS_EXCEPT="$ALWAYS_EXCEPT "
34
35 build_test_filter
36
37 check_and_setup_lustre
38
39 mkdir -p $DIR
40
41 assert_DIR
42 rm -rf $DIR/[df][0-9]* $DIR/f.$TESTSUITE.*
43
44 # LU-482 Avert LVM and VM inability to flush caches in pre .33 kernels
45 if [ $LINUX_VERSION_CODE -lt $(version_code 2.6.33) ]; then
46     sync
47     do_facet $SINGLEMDS sync
48 fi
49
50 test_0a() {     # was test_0
51         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
52         replay_barrier $SINGLEMDS
53         fail $SINGLEMDS
54         rmdir $DIR/$tdir
55 }
56 run_test 0a "empty replay"
57
58 test_0b() {
59         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
60
61         # this test attempts to trigger a race in the precreation code,
62         # and must run before any other objects are created on the filesystem
63         fail ost1
64         createmany -o $DIR/$tfile 20 || error "createmany -o $DIR/$tfile failed"
65         unlinkmany $DIR/$tfile 20 || error "unlinkmany $DIR/$tfile failed"
66 }
67 run_test 0b "ensure object created after recover exists. (3284)"
68
69 test_0c() {
70         replay_barrier $SINGLEMDS
71         mcreate $DIR/$tfile
72         umount $MOUNT
73         facet_failover $SINGLEMDS
74         zconf_mount $(hostname) $MOUNT || error "mount fails"
75         client_up || error "post-failover df failed"
76         # file shouldn't exist if replay-barrier works as expected
77         rm $DIR/$tfile && error "File exists and it shouldn't"
78         return 0
79 }
80 run_test 0c "check replay-barrier"
81
82 test_0d() {
83         replay_barrier $SINGLEMDS
84         umount $MOUNT
85         facet_failover $SINGLEMDS
86         zconf_mount $(hostname) $MOUNT || error "mount fails"
87         client_up || error "post-failover df failed"
88 }
89 run_test 0d "expired recovery with no clients"
90
91 test_1() {
92         replay_barrier $SINGLEMDS
93         mcreate $DIR/$tfile
94         fail $SINGLEMDS
95         $CHECKSTAT -t file $DIR/$tfile ||
96                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
97         rm $DIR/$tfile
98 }
99 run_test 1 "simple create"
100
101 test_2a() {
102         replay_barrier $SINGLEMDS
103         touch $DIR/$tfile
104         fail $SINGLEMDS
105         $CHECKSTAT -t file $DIR/$tfile ||
106                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
107         rm $DIR/$tfile
108 }
109 run_test 2a "touch"
110
111 test_2b() {
112         mcreate $DIR/$tfile || error "mcreate $DIR/$tfile failed"
113         replay_barrier $SINGLEMDS
114         touch $DIR/$tfile
115         fail $SINGLEMDS
116         $CHECKSTAT -t file $DIR/$tfile ||
117                 error "$CHECKSTAT $DIR/$tfile attribute check failed"
118         rm $DIR/$tfile
119 }
120 run_test 2b "touch"
121
122 test_2c() {
123         replay_barrier $SINGLEMDS
124         $LFS setstripe -c $OSTCOUNT $DIR/$tfile
125         fail $SINGLEMDS
126         $CHECKSTAT -t file $DIR/$tfile ||
127                 error "$CHECKSTAT $DIR/$tfile check failed"
128 }
129 run_test 2c "setstripe replay"
130
131 test_2d() {
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         $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         $SETSTRIPE --stripe-index=0 --stripe-count=1 $DIR/$tfile ||
1849                 error "$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         $SETSTRIPE --stripe-index=0 --stripe-count=1 $DIR/$tfile ||
1862                 error "$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         osc.$mdtosc.prealloc_last_id)
1961     local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1962         osc.$mdtosc.prealloc_next_id)
1963
1964         mkdir -p $DIR/$tdir/${OST} || error "mkdir $DIR/$tdir/${OST} failed"
1965         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/${OST} || error "$SETSTRIPE failed"
1966         echo "Creating to objid $last_id on ost $OST..."
1967 #define OBD_FAIL_OST_PAUSE_CREATE        0x223
1968     do_facet ost1 "$LCTL set_param fail_val=20000"
1969     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1970     createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1971
1972     client_reconnect
1973     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1974     log "phase 2"
1975     CONN2=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1976     ATTEMPTS=$(($CONN2 - $CONN1))
1977     echo "$ATTEMPTS osc reconnect attempts on instant slow"
1978     # do it again; should not timeout
1979     do_facet ost1 "$LCTL set_param fail_loc=0x80000223"
1980     cp /etc/profile $DIR/$tfile || error "cp failed"
1981     do_facet ost1 "$LCTL set_param fail_loc=0"
1982     client_reconnect
1983     do_facet ost1 "lctl get_param -n ost.OSS.ost_create.timeouts"
1984     CONN3=$(lctl get_param -n osc.*.stats | awk '/_connect/ {total+=$2} END {print total}')
1985     ATTEMPTS=$(($CONN3 - $CONN2))
1986     echo "$ATTEMPTS osc reconnect attempts on 2nd slow"
1987     [ $ATTEMPTS -gt 0 ] && error "AT should have prevented reconnect"
1988     return 0
1989 }
1990 run_test 67b "AT: verify instant slowdown doesn't induce reconnects"
1991
1992 test_68 () #bug 13813
1993 {
1994     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1995
1996     at_start || return 0
1997     local ldlm_enqueue_min=$(find /sys -name ldlm_enqueue_min)
1998     [ -z "$ldlm_enqueue_min" ] && skip "missing /sys/.../ldlm_enqueue_min" && return 0
1999     local ldlm_enqueue_min_r=$(do_facet ost1 "find /sys -name ldlm_enqueue_min")
2000     [ -z "$ldlm_enqueue_min_r" ] && skip "missing /sys/.../ldlm_enqueue_min in the ost1" && return 0
2001     local ENQ_MIN=$(cat $ldlm_enqueue_min)
2002     local ENQ_MIN_R=$(do_facet ost1 "cat $ldlm_enqueue_min_r")
2003         echo $TIMEOUT >> $ldlm_enqueue_min
2004         do_facet ost1 "echo $TIMEOUT >> $ldlm_enqueue_min_r"
2005
2006         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2007         $SETSTRIPE --stripe-index=0 -c 1 $DIR/$tdir ||
2008                 error "$SETSTRIPE failed for $DIR/$tdir"
2009         #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
2010         $LCTL set_param fail_val=$(($TIMEOUT - 1))
2011         $LCTL set_param fail_loc=0x80000312
2012         cp /etc/profile $DIR/$tdir/${tfile}_1 || error "1st cp failed $?"
2013         $LCTL set_param fail_val=$((TIMEOUT * 5 / 4))
2014         $LCTL set_param fail_loc=0x80000312
2015         cp /etc/profile $DIR/$tdir/${tfile}_2 || error "2nd cp failed $?"
2016         $LCTL set_param fail_loc=0
2017
2018         echo $ENQ_MIN >> $ldlm_enqueue_min
2019         do_facet ost1 "echo $ENQ_MIN_R >> $ldlm_enqueue_min_r"
2020         rm -rf $DIR/$tdir
2021         return 0
2022 }
2023 run_test 68 "AT: verify slowing locks"
2024
2025 at_cleanup
2026 # end of AT tests includes above lines
2027
2028 # start multi-client tests
2029 test_70a () {
2030         [ -z "$CLIENTS" ] &&
2031                 { skip "Need two or more clients." && return; }
2032         [ $CLIENTCOUNT -lt 2 ] &&
2033                 { skip "Need two or more clients, have $CLIENTCOUNT" && return; }
2034
2035         echo "mount clients $CLIENTS ..."
2036         zconf_mount_clients $CLIENTS $MOUNT
2037
2038         local clients=${CLIENTS//,/ }
2039         echo "Write/read files on $DIR ; clients $CLIENTS ... "
2040         for CLIENT in $clients; do
2041                 do_node $CLIENT dd bs=1M count=10 if=/dev/zero \
2042                         of=$DIR/${tfile}_${CLIENT} 2>/dev/null ||
2043                                 error "dd failed on $CLIENT"
2044         done
2045
2046         local prev_client=$(echo $clients | sed 's/^.* \(.\+\)$/\1/')
2047         for C in ${CLIENTS//,/ }; do
2048                 do_node $prev_client dd if=$DIR/${tfile}_${C} \
2049                         of=/dev/null 2>/dev/null ||
2050                         error "dd if=$DIR/${tfile}_${C} failed on $prev_client"
2051                 prev_client=$C
2052         done
2053
2054         ls $DIR
2055 }
2056 run_test 70a "check multi client t-f"
2057
2058 check_for_process () {
2059         local clients=$1
2060         shift
2061         local prog=$@
2062
2063         killall_process $clients "$prog" -0
2064 }
2065
2066 test_70b () {
2067         local clients=${CLIENTS:-$HOSTNAME}
2068
2069         zconf_mount_clients $clients $MOUNT
2070
2071         local duration=300
2072         [ "$SLOW" = "no" ] && duration=120
2073         # set duration to 900 because it takes some time to boot node
2074         [ "$FAILURE_MODE" = HARD ] && duration=900
2075
2076         local elapsed
2077         local start_ts=$(date +%s)
2078         local cmd="rundbench 1 -t $duration"
2079         local pid=""
2080         if [ $MDSCOUNT -ge 2 ]; then
2081                 test_mkdir -p -c$MDSCOUNT $DIR/$tdir
2082                 $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir
2083         fi
2084         do_nodesv $clients "set -x; MISSING_DBENCH_OK=$MISSING_DBENCH_OK \
2085                 PATH=\$PATH:$LUSTRE/utils:$LUSTRE/tests/:$DBENCH_LIB \
2086                 DBENCH_LIB=$DBENCH_LIB TESTSUITE=$TESTSUITE TESTNAME=$TESTNAME \
2087                 MOUNT=$MOUNT DIR=$DIR/$tdir/\\\$(hostname) LCTL=$LCTL $cmd" &
2088         pid=$!
2089
2090         #LU-1897 wait for all dbench copies to start
2091         while ! check_for_process $clients dbench; do
2092                 elapsed=$(($(date +%s) - start_ts))
2093                 if [ $elapsed -gt $duration ]; then
2094                         killall_process $clients dbench
2095                         error "dbench failed to start on $clients!"
2096                 fi
2097                 sleep 1
2098         done
2099
2100         log "Started rundbench load pid=$pid ..."
2101
2102         elapsed=$(($(date +%s) - start_ts))
2103         local num_failovers=0
2104         local fail_index=1
2105         while [ $elapsed -lt $duration ]; do
2106                 if ! check_for_process $clients dbench; then
2107                         error_noexit "dbench stopped on some of $clients!"
2108                         killall_process $clients dbench
2109                         break
2110                 fi
2111                 sleep 1
2112                 replay_barrier mds$fail_index
2113                 sleep 1 # give clients a time to do operations
2114                 # Increment the number of failovers
2115                 num_failovers=$((num_failovers+1))
2116                 log "$TESTNAME fail mds$fail_index $num_failovers times"
2117                 fail mds$fail_index
2118                 elapsed=$(($(date +%s) - start_ts))
2119                 if [ $fail_index -ge $MDSCOUNT ]; then
2120                         fail_index=1
2121                 else
2122                         fail_index=$((fail_index+1))
2123                 fi
2124         done
2125
2126         wait $pid || error "rundbench load on $clients failed!"
2127 }
2128 run_test 70b "dbench ${MDSCOUNT}mdts recovery; $CLIENTCOUNT clients"
2129 # end multi-client tests
2130
2131 random_fail_mdt() {
2132         local max_index=$1
2133         local duration=$2
2134         local monitor_pid=$3
2135         local elapsed
2136         local start_ts=$(date +%s)
2137         local num_failovers=0
2138         local fail_index
2139
2140         elapsed=$(($(date +%s) - start_ts))
2141         while [ $elapsed -lt $duration ]; do
2142                 fail_index=$((RANDOM%max_index+1))
2143                 kill -0 $monitor_pid ||
2144                         error "$monitor_pid stopped"
2145                 sleep 120
2146                 replay_barrier mds$fail_index
2147                 sleep 10
2148                 # Increment the number of failovers
2149                 num_failovers=$((num_failovers+1))
2150                 log "$TESTNAME fail mds$fail_index $num_failovers times"
2151                 fail mds$fail_index
2152                 elapsed=$(($(date +%s) - start_ts))
2153         done
2154 }
2155
2156 cleanup_70c() {
2157         trap 0
2158         rm -f $DIR/replay-single.70c.lck
2159         rm -rf /$DIR/$tdir
2160 }
2161
2162 test_70c () {
2163         local clients=${CLIENTS:-$HOSTNAME}
2164         local rc=0
2165
2166         zconf_mount_clients $clients $MOUNT
2167
2168         local duration=300
2169         [ "$SLOW" = "no" ] && duration=180
2170         # set duration to 900 because it takes some time to boot node
2171         [ "$FAILURE_MODE" = HARD ] && duration=600
2172
2173         local elapsed
2174         local start_ts=$(date +%s)
2175
2176         trap cleanup_70c EXIT
2177         (
2178                 while [ ! -e $DIR/replay-single.70c.lck ]; do
2179                         test_mkdir -p -c$MDSCOUNT $DIR/$tdir || break
2180                         if [ $MDSCOUNT -ge 2 ]; then
2181                                 $LFS setdirstripe -D -c$MDSCOUNT $DIR/$tdir ||
2182                                 error "set default dirstripe failed"
2183                         fi
2184                         cd $DIR/$tdir || break
2185                         tar cf - /etc | tar xf - || error "tar failed in loop"
2186                 done
2187         )&
2188         tar_70c_pid=$!
2189         echo "Started tar $tar_70c_pid"
2190
2191         random_fail_mdt $MDSCOUNT $duration $tar_70c_pid
2192         kill -0 $tar_70c_pid || error "tar $tar_70c_pid stopped"
2193
2194         touch $DIR/replay-single.70c.lck
2195         wait $tar_70c_pid || error "$?: tar failed"
2196
2197         cleanup_70c
2198         true
2199 }
2200 run_test 70c "tar ${MDSCOUNT}mdts recovery"
2201
2202 cleanup_70d() {
2203         trap 0
2204         kill -9 $mkdir_70d_pid
2205 }
2206
2207 test_70d () {
2208         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2209         local clients=${CLIENTS:-$HOSTNAME}
2210         local rc=0
2211
2212         zconf_mount_clients $clients $MOUNT
2213
2214         local duration=300
2215         [ "$SLOW" = "no" ] && duration=180
2216         # set duration to 900 because it takes some time to boot node
2217         [ "$FAILURE_MODE" = HARD ] && duration=900
2218
2219         mkdir -p $DIR/$tdir
2220
2221         local elapsed
2222         local start_ts=$(date +%s)
2223
2224         trap cleanup_70d EXIT
2225         (
2226                 while true; do
2227                         $LFS mkdir -i0 -c2 $DIR/$tdir/test || {
2228                                 echo "mkdir fails"
2229                                 break
2230                         }
2231                         $LFS mkdir -i1 -c2 $DIR/$tdir/test1 || {
2232                                 echo "mkdir fails"
2233                                 break
2234                         }
2235
2236                         touch $DIR/$tdir/test/a || {
2237                                 echo "touch fails"
2238                                 break;
2239                         }
2240                         mkdir $DIR/$tdir/test/b || {
2241                                 echo "mkdir fails"
2242                                 break;
2243                         }
2244                         rm -rf $DIR/$tdir/test || {
2245                                 echo "rmdir fails"
2246                                 break
2247                         }
2248
2249                         touch $DIR/$tdir/test1/a || {
2250                                 echo "touch fails"
2251                                 break;
2252                         }
2253                         mkdir $DIR/$tdir/test1/b || {
2254                                 echo "mkdir fails"
2255                                 break;
2256                         }
2257
2258                         rm -rf $DIR/$tdir/test1 || {
2259                                 echo "rmdir fails"
2260                                 break
2261                         }
2262                 done
2263         )&
2264         mkdir_70d_pid=$!
2265         echo "Started  $mkdir_70d_pid"
2266
2267         random_fail_mdt $MDSCOUNT $duration $mkdir_70d_pid
2268         kill -0 $mkdir_70d_pid || error "mkdir/rmdir $mkdir_70d_pid stopped"
2269
2270         cleanup_70d
2271         true
2272 }
2273 run_test 70d "mkdir/rmdir striped dir ${MDSCOUNT}mdts recovery"
2274
2275 test_70e () {
2276         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2277         local clients=${CLIENTS:-$HOSTNAME}
2278         local rc=0
2279
2280         lctl set_param debug=+ha
2281         zconf_mount_clients $clients $MOUNT
2282
2283         local duration=300
2284         [ "$SLOW" = "no" ] && duration=180
2285         # set duration to 900 because it takes some time to boot node
2286         [ "$FAILURE_MODE" = HARD ] && duration=900
2287
2288         mkdir -p $DIR/$tdir
2289         $LFS mkdir -i0 $DIR/$tdir/test_0
2290         $LFS mkdir -i0 $DIR/$tdir/test_1
2291         touch $DIR/$tdir/test_0/a
2292         touch $DIR/$tdir/test_1/b
2293         (
2294         while true; do
2295                 mrename $DIR/$tdir/test_0/a $DIR/$tdir/test_1/b > /dev/null || {
2296                         echo "a->b fails"
2297                         break;
2298                 }
2299
2300                 checkstat $DIR/$tdir/test_0/a && {
2301                         echo "a still exists"
2302                         break
2303                 }
2304
2305                 checkstat $DIR/$tdir/test_1/b || {
2306                         echo "b still  exists"
2307                         break
2308                 }
2309
2310                 touch $DIR/$tdir/test_0/a || {
2311                         echo "touch a fails"
2312                         break
2313                 }
2314
2315                 mrename $DIR/$tdir/test_1/b $DIR/$tdir/test_0/a > /dev/null || {
2316                         echo "a->a fails"
2317                         break;
2318                 }
2319         done
2320         )&
2321         rename_70e_pid=$!
2322         stack_trap "kill -9 $rename_70e_pid" EXIT
2323         echo "Started PID=$rename_70e_pid"
2324
2325         random_fail_mdt 2 $duration $rename_70e_pid
2326         kill -0 $rename_70e_pid || error "rename $rename_70e_pid stopped"
2327 }
2328 run_test 70e "rename cross-MDT with random fails"
2329
2330 test_70f_write_and_read(){
2331         local srcfile=$1
2332         local stopflag=$2
2333         local client
2334
2335         echo "Write/read files in: '$DIR/$tdir', clients: '$CLIENTS' ..."
2336         for client in ${CLIENTS//,/ }; do
2337                 [ -f $stopflag ] || return
2338
2339                 local tgtfile=$DIR/$tdir/$tfile.$client
2340                 do_node $client dd $DD_OPTS bs=1M count=10 if=$srcfile \
2341                         of=$tgtfile 2>/dev/null ||
2342                         error "dd $DD_OPTS bs=1M count=10 if=$srcfile " \
2343                               "of=$tgtfile failed on $client, rc=$?"
2344         done
2345
2346         local prev_client=$(echo ${CLIENTS//,/ } | awk '{ print $NF }')
2347         local index=0
2348
2349         for client in ${CLIENTS//,/ }; do
2350                 [ -f $stopflag ] || return
2351
2352                 # flush client cache in case test is running on only one client
2353                 # do_node $client cancel_lru_locks osc
2354                 do_node $client $LCTL set_param ldlm.namespaces.*.lru_size=clear
2355
2356                 tgtfile=$DIR/$tdir/$tfile.$client
2357                 local md5=$(do_node $prev_client "md5sum $tgtfile")
2358                 [ ${checksum[$index]// */} = ${md5// */} ] ||
2359                         error "$tgtfile: checksum doesn't match on $prev_client"
2360                 index=$((index + 1))
2361                 prev_client=$client
2362         done
2363 }
2364
2365 test_70f_loop(){
2366         local srcfile=$1
2367         local stopflag=$2
2368         DD_OPTS=
2369
2370         mkdir -p $DIR/$tdir || error "cannot create $DIR/$tdir directory"
2371         $SETSTRIPE -c -1 $DIR/$tdir || error "cannot $SETSTRIPE $DIR/$tdir"
2372
2373         touch $stopflag
2374         while [ -f $stopflag ]; do
2375                 test_70f_write_and_read $srcfile $stopflag
2376                 # use direct IO and buffer cache in turns if loop
2377                 [ -n "$DD_OPTS" ] && DD_OPTS="" || DD_OPTS="oflag=direct"
2378         done
2379 }
2380
2381 test_70f_cleanup() {
2382         trap 0
2383         rm -f $TMP/$tfile.stop
2384         do_nodes $CLIENTS rm -f $TMP/$tfile
2385         rm -f $DIR/$tdir/$tfile.*
2386 }
2387
2388 test_70f() {
2389 #       [ x$ost1failover_HOST = x$ost_HOST ] &&
2390 #               { skip "Failover host not defined" && return; }
2391 #       [ -z "$CLIENTS" ] &&
2392 #               { skip "CLIENTS are not specified." && return; }
2393 #       [ $CLIENTCOUNT -lt 2 ] &&
2394 #               { skip "Need 2 or more clients, have $CLIENTCOUNT" && return; }
2395
2396         [[ $(lustre_version_code ost1) -lt $(version_code 2.9.53) ]] &&
2397                 skip "Need server version at least 2.9.53" && return
2398
2399         echo "mount clients $CLIENTS ..."
2400         zconf_mount_clients $CLIENTS $MOUNT
2401
2402         local srcfile=$TMP/$tfile
2403         local client
2404         local index=0
2405
2406         trap test_70f_cleanup EXIT
2407         # create a different source file local to each client node so we can
2408         # detect if the file wasn't written out properly after failover
2409         do_nodes $CLIENTS dd bs=1M count=10 if=/dev/urandom of=$srcfile \
2410                 2>/dev/null || error "can't create $srcfile on $CLIENTS"
2411         for client in ${CLIENTS//,/ }; do
2412                 checksum[$index]=$(do_node $client "md5sum $srcfile")
2413                 index=$((index + 1))
2414         done
2415
2416         local duration=120
2417         [ "$SLOW" = "no" ] && duration=60
2418         # set duration to 900 because it takes some time to boot node
2419         [ "$FAILURE_MODE" = HARD ] && duration=900
2420
2421         local stopflag=$TMP/$tfile.stop
2422         test_70f_loop $srcfile $stopflag &
2423         local pid=$!
2424
2425         local elapsed=0
2426         local num_failovers=0
2427         local start_ts=$SECONDS
2428         while [ $elapsed -lt $duration ]; do
2429                 sleep 3
2430                 replay_barrier ost1
2431                 sleep 1
2432                 num_failovers=$((num_failovers + 1))
2433                 log "$TESTNAME failing OST $num_failovers times"
2434                 fail ost1
2435                 sleep 2
2436                 elapsed=$((SECONDS - start_ts))
2437         done
2438
2439         rm -f $stopflag
2440         wait $pid
2441         test_70f_cleanup
2442 }
2443 run_test 70f "OSS O_DIRECT recovery with $CLIENTCOUNT clients"
2444
2445 cleanup_71a() {
2446         trap 0
2447         kill -9 $mkdir_71a_pid
2448 }
2449
2450 random_double_fail_mdt() {
2451         local max_index=$1
2452         local duration=$2
2453         local monitor_pid=$3
2454         local elapsed
2455         local start_ts=$(date +%s)
2456         local num_failovers=0
2457         local fail_index
2458         local second_index
2459
2460         elapsed=$(($(date +%s) - start_ts))
2461         while [ $elapsed -lt $duration ]; do
2462                 fail_index=$((RANDOM%max_index + 1))
2463                 if [ $fail_index -eq $max_index ]; then
2464                         second_index=1
2465                 else
2466                         second_index=$((fail_index + 1))
2467                 fi
2468                 kill -0 $monitor_pid ||
2469                         error "$monitor_pid stopped"
2470                 sleep 120
2471                 replay_barrier mds$fail_index
2472                 replay_barrier mds$second_index
2473                 sleep 10
2474                 # Increment the number of failovers
2475                 num_failovers=$((num_failovers+1))
2476                 log "fail mds$fail_index mds$second_index $num_failovers times"
2477                 fail mds${fail_index},mds${second_index}
2478                 elapsed=$(($(date +%s) - start_ts))
2479         done
2480 }
2481
2482 test_71a () {
2483         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2484         local clients=${CLIENTS:-$HOSTNAME}
2485         local rc=0
2486
2487         zconf_mount_clients $clients $MOUNT
2488
2489         local duration=300
2490         [ "$SLOW" = "no" ] && duration=180
2491         # set duration to 900 because it takes some time to boot node
2492         [ "$FAILURE_MODE" = HARD ] && duration=900
2493
2494         mkdir -p $DIR/$tdir
2495
2496         local elapsed
2497         local start_ts=$(date +%s)
2498
2499         trap cleanup_71a EXIT
2500         (
2501                 while true; do
2502                         $LFS mkdir -i0 -c2 $DIR/$tdir/test
2503                         rmdir $DIR/$tdir/test
2504                 done
2505         )&
2506         mkdir_71a_pid=$!
2507         echo "Started  $mkdir_71a_pid"
2508
2509         random_double_fail_mdt 2 $duration $mkdir_71a_pid
2510         kill -0 $mkdir_71a_pid || error "mkdir/rmdir $mkdir_71a_pid stopped"
2511
2512         cleanup_71a
2513         true
2514 }
2515 run_test 71a "mkdir/rmdir striped dir with 2 mdts recovery"
2516
2517 test_73a() {
2518         multiop_bg_pause $DIR/$tfile O_tSc ||
2519                 error "multiop_bg_pause $DIR/$tfile failed"
2520         pid=$!
2521         rm -f $DIR/$tfile
2522
2523         replay_barrier $SINGLEMDS
2524         #define OBD_FAIL_LDLM_ENQUEUE_NET                       0x302
2525         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000302"
2526         fail $SINGLEMDS
2527         kill -USR1 $pid
2528         wait $pid || error "multiop pid failed"
2529         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
2530         return 0
2531 }
2532 run_test 73a "open(O_CREAT), unlink, replay, reconnect before open replay, close"
2533
2534 test_73b() {
2535         multiop_bg_pause $DIR/$tfile O_tSc ||
2536                 error "multiop_bg_pause $DIR/$tfile failed"
2537         pid=$!
2538         rm -f $DIR/$tfile
2539
2540         replay_barrier $SINGLEMDS
2541         #define OBD_FAIL_LDLM_REPLY       0x30c
2542         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000030c"
2543         fail $SINGLEMDS
2544         kill -USR1 $pid
2545         wait $pid || error "multiop pid failed"
2546         [ -e $DIR/$tfile ] && error "file $DIR/$tfile should not exist"
2547         return 0
2548 }
2549 run_test 73b "open(O_CREAT), unlink, replay, reconnect at open_replay reply, close"
2550
2551 # bug 18554
2552 test_74() {
2553         local clients=${CLIENTS:-$HOSTNAME}
2554
2555         zconf_umount_clients $clients $MOUNT
2556         stop ost1
2557         facet_failover $SINGLEMDS
2558         zconf_mount_clients $clients $MOUNT
2559         mount_facet ost1
2560         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
2561         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
2562         clients_up || error "client evicted: $?"
2563         return 0
2564 }
2565 run_test 74 "Ensure applications don't fail waiting for OST recovery"
2566
2567 remote_dir_check_80() {
2568         local mdtidx=1
2569         local diridx
2570         local fileidx
2571
2572         diridx=$($LFS getstripe -m $remote_dir) ||
2573                 error "$LFS getstripe -m $remote_dir failed"
2574         [ $diridx -eq $mdtidx ] || error "$diridx != $mdtidx"
2575
2576         createmany -o $remote_dir/f-%d 20 || error "creation failed"
2577         fileidx=$($LFS getstripe -m $remote_dir/f-1) ||
2578                 error "$LFS getstripe -m $remote_dir/f-1 failed"
2579         [ $fileidx -eq $mdtidx ] || error "$fileidx != $mdtidx"
2580
2581         return 0
2582 }
2583
2584 test_80a() {
2585         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2586         ([ $FAILURE_MODE == "HARD" ] &&
2587                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2588                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2589                 return 0
2590
2591         local MDTIDX=1
2592         local remote_dir=$DIR/$tdir/remote_dir
2593
2594         mkdir -p $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2595         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2596         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2597         $LFS mkdir -i $MDTIDX $remote_dir &
2598         local CLIENT_PID=$!
2599
2600         replay_barrier mds1
2601         fail mds${MDTIDX}
2602
2603         wait $CLIENT_PID || error "remote creation failed"
2604
2605         remote_dir_check_80 || error "remote dir check failed"
2606         rm -rf $DIR/$tdir || error "rmdir failed"
2607
2608         return 0
2609 }
2610 run_test 80a "DNE: create remote dir, drop update rep from MDT0, fail MDT0"
2611
2612 test_80b() {
2613         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2614         ([ $FAILURE_MODE == "HARD" ] &&
2615                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2616                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2617                 return 0
2618
2619         local MDTIDX=1
2620         local remote_dir=$DIR/$tdir/remote_dir
2621
2622         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2623         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2624         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2625         $LFS mkdir -i $MDTIDX $remote_dir &
2626         local CLIENT_PID=$!
2627
2628         replay_barrier mds1
2629         replay_barrier mds2
2630         fail mds$((MDTIDX + 1))
2631
2632         wait $CLIENT_PID || error "remote creation failed"
2633
2634         remote_dir_check_80 || error "remote dir check failed"
2635         rm -rf $DIR/$tdir || error "rmdir failed"
2636
2637         return 0
2638 }
2639 run_test 80b "DNE: create remote dir, drop update rep from MDT0, fail MDT1"
2640
2641 test_80c() {
2642         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2643         ([ $FAILURE_MODE == "HARD" ] &&
2644                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2645                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2646                 return 0
2647
2648         local MDTIDX=1
2649         local remote_dir=$DIR/$tdir/remote_dir
2650
2651         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2652         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2653         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2654         $LFS mkdir -i $MDTIDX $remote_dir &
2655         local CLIENT_PID=$!
2656
2657         replay_barrier mds1
2658         replay_barrier mds2
2659         fail mds${MDTIDX}
2660         fail mds$((MDTIDX + 1))
2661
2662         wait $CLIENT_PID || error "remote creation failed"
2663
2664         remote_dir_check_80 || error "remote dir check failed"
2665         rm -rf $DIR/$tdir || error "rmdir failed"
2666
2667         return 0
2668 }
2669 run_test 80c "DNE: create remote dir, drop update rep from MDT1, fail MDT[0,1]"
2670
2671 test_80d() {
2672         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2673         local MDTIDX=1
2674         local remote_dir=$DIR/$tdir/remote_dir
2675
2676         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2677         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
2678         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2679         $LFS mkdir -i $MDTIDX $remote_dir &
2680         local CLIENT_PID=$!
2681
2682         # sleep 3 seconds to make sure MDTs are failed after
2683         # lfs mkdir -i has finished on all of MDTs.
2684         sleep 3
2685
2686         replay_barrier mds1
2687         replay_barrier mds2
2688         fail mds${MDTIDX},mds$((MDTIDX + 1))
2689
2690         wait $CLIENT_PID || error "remote creation failed"
2691
2692         remote_dir_check_80 || error "remote dir check failed"
2693         rm -rf $DIR/$tdir || error "rmdir failed"
2694
2695         return 0
2696 }
2697 run_test 80d "DNE: create remote dir, drop update rep from MDT1, fail 2 MDTs"
2698
2699 test_80e() {
2700         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2701         ([ $FAILURE_MODE == "HARD" ] &&
2702                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2703                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2704                 return 0
2705
2706         local MDTIDX=1
2707         local remote_dir=$DIR/$tdir/remote_dir
2708
2709         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2710         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2711         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2712         $LFS mkdir -i $MDTIDX $remote_dir &
2713         local CLIENT_PID=$!
2714
2715         # sleep 3 seconds to make sure MDTs are failed after
2716         # lfs mkdir -i has finished on all of MDTs.
2717         sleep 3
2718
2719         replay_barrier mds1
2720         fail mds${MDTIDX}
2721
2722         wait $CLIENT_PID || error "remote creation failed"
2723
2724         remote_dir_check_80 || error "remote dir check failed"
2725         rm -rf $DIR/$tdir || error "rmdir failed"
2726
2727         return 0
2728 }
2729 run_test 80e "DNE: create remote dir, drop MDT1 rep, fail MDT0"
2730
2731 test_80f() {
2732         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2733         ([ $FAILURE_MODE == "HARD" ] &&
2734                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2735                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2736                 return 0
2737         local MDTIDX=1
2738         local remote_dir=$DIR/$tdir/remote_dir
2739
2740         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2741         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2742         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2743         $LFS mkdir -i $MDTIDX $remote_dir &
2744         local CLIENT_PID=$!
2745
2746         replay_barrier mds2
2747         fail mds$((MDTIDX + 1))
2748
2749         wait $CLIENT_PID || error "remote creation failed"
2750
2751         remote_dir_check_80 || error "remote dir check failed"
2752         rm -rf $DIR/$tdir || error "rmdir failed"
2753
2754         return 0
2755 }
2756 run_test 80f "DNE: create remote dir, drop MDT1 rep, fail MDT1"
2757
2758 test_80g() {
2759         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2760         ([ $FAILURE_MODE == "HARD" ] &&
2761                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2762                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2763                 return 0
2764
2765         local MDTIDX=1
2766         local remote_dir=$DIR/$tdir/remote_dir
2767
2768         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2769         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2770         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2771         $LFS mkdir -i $MDTIDX $remote_dir &
2772         local CLIENT_PID=$!
2773
2774         # sleep 3 seconds to make sure MDTs are failed after
2775         # lfs mkdir -i has finished on all of MDTs.
2776         sleep 3
2777
2778         replay_barrier mds1
2779         replay_barrier mds2
2780         fail mds${MDTIDX}
2781         fail mds$((MDTIDX + 1))
2782
2783         wait $CLIENT_PID || error "remote creation failed"
2784
2785         remote_dir_check_80 || error "remote dir check failed"
2786         rm -rf $DIR/$tdir || error "rmdir failed"
2787
2788         return 0
2789 }
2790 run_test 80g "DNE: create remote dir, drop MDT1 rep, fail MDT0, then MDT1"
2791
2792 test_80h() {
2793         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2794         local MDTIDX=1
2795         local remote_dir=$DIR/$tdir/remote_dir
2796
2797         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2798         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2799         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2800         $LFS mkdir -i $MDTIDX $remote_dir &
2801         local CLIENT_PID=$!
2802
2803         # sleep 3 seconds to make sure MDTs are failed after
2804         # lfs mkdir -i has finished on all of MDTs.
2805         sleep 3
2806
2807         replay_barrier mds1
2808         replay_barrier mds2
2809         fail mds${MDTIDX},mds$((MDTIDX + 1))
2810
2811         wait $CLIENT_PID || error "remote dir creation failed"
2812
2813         remote_dir_check_80 || error "remote dir check failed"
2814         rm -rf $DIR/$tdir || error "rmdir failed"
2815
2816         return 0
2817 }
2818 run_test 80h "DNE: create remote dir, drop MDT1 rep, fail 2 MDTs"
2819
2820 test_81a() {
2821         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2822         ([ $FAILURE_MODE == "HARD" ] &&
2823                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2824                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2825                 return 0
2826
2827         local MDTIDX=1
2828         local remote_dir=$DIR/$tdir/remote_dir
2829
2830         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2831         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2832
2833         touch $remote_dir || error "touch $remote_dir failed"
2834         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2835         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2836         rmdir $remote_dir &
2837         local CLIENT_PID=$!
2838
2839         replay_barrier mds2
2840         fail mds$((MDTIDX + 1))
2841
2842         wait $CLIENT_PID || error "rm remote dir failed"
2843
2844         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2845
2846         rm -rf $DIR/$tdir || error "rmdir failed"
2847
2848         return 0
2849 }
2850 run_test 81a "DNE: unlink remote dir, drop MDT0 update rep,  fail MDT1"
2851
2852 test_81b() {
2853         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2854         ([ $FAILURE_MODE == "HARD" ] &&
2855                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2856                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2857                 return 0
2858         local MDTIDX=1
2859         local remote_dir=$DIR/$tdir/remote_dir
2860
2861         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2862         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2863
2864         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2865         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2866         rmdir $remote_dir &
2867         local CLIENT_PID=$!
2868
2869         replay_barrier mds1
2870         fail mds${MDTIDX}
2871
2872         wait $CLIENT_PID || error "rm remote dir failed"
2873
2874         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2875
2876         rm -rf $DIR/$tdir || error "rmdir failed"
2877
2878         return 0
2879 }
2880 run_test 81b "DNE: unlink remote dir, drop MDT0 update reply,  fail MDT0"
2881
2882 test_81c() {
2883         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2884         ([ $FAILURE_MODE == "HARD" ] &&
2885                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2886                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2887                 return 0
2888
2889         local MDTIDX=1
2890         local remote_dir=$DIR/$tdir/remote_dir
2891
2892         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2893         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2894
2895         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2896         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2897         rmdir $remote_dir &
2898         local CLIENT_PID=$!
2899
2900         replay_barrier mds1
2901         replay_barrier mds2
2902         fail mds${MDTIDX}
2903         fail mds$((MDTIDX + 1))
2904
2905         wait $CLIENT_PID || error "rm remote dir failed"
2906
2907         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2908
2909         rm -rf $DIR/$tdir || error "rmdir failed"
2910
2911         return 0
2912 }
2913 run_test 81c "DNE: unlink remote dir, drop MDT0 update reply, fail MDT0,MDT1"
2914
2915 test_81d() {
2916         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2917         local MDTIDX=1
2918         local remote_dir=$DIR/$tdir/remote_dir
2919
2920         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2921         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2922
2923         # OBD_FAIL_OUT_UPDATE_NET_REP       0x1701
2924         do_facet mds${MDTIDX} lctl set_param fail_loc=0x1701
2925         rmdir $remote_dir &
2926         local CLIENT_PID=$!
2927
2928         replay_barrier mds1
2929         replay_barrier mds2
2930         fail mds${MDTIDX},mds$((MDTIDX + 1))
2931
2932         wait $CLIENT_PID || error "rm remote dir failed"
2933
2934         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2935
2936         rm -rf $DIR/$tdir || error "rmdir failed"
2937
2938         return 0
2939 }
2940 run_test 81d "DNE: unlink remote dir, drop MDT0 update reply,  fail 2 MDTs"
2941
2942 test_81e() {
2943         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2944         ([ $FAILURE_MODE == "HARD" ] &&
2945                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2946                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2947                 return 0
2948
2949         local MDTIDX=1
2950         local remote_dir=$DIR/$tdir/remote_dir
2951
2952         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2953         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2954
2955         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2956         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2957         rmdir $remote_dir &
2958         local CLIENT_PID=$!
2959         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0
2960
2961         replay_barrier mds1
2962         fail mds${MDTIDX}
2963
2964         wait $CLIENT_PID || error "rm remote dir failed"
2965
2966         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2967
2968         rm -rf $DIR/$tdir || error "rmdir failed"
2969
2970         return 0
2971 }
2972 run_test 81e "DNE: unlink remote dir, drop MDT1 req reply, fail MDT0"
2973
2974 test_81f() {
2975         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
2976         ([ $FAILURE_MODE == "HARD" ] &&
2977                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
2978                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
2979                 return 0
2980
2981         local MDTIDX=1
2982         local remote_dir=$DIR/$tdir/remote_dir
2983
2984         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
2985         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
2986
2987         # OBD_FAIL_MDS_REINT_NET_REP       0x119
2988         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
2989         rmdir $remote_dir &
2990         local CLIENT_PID=$!
2991
2992         replay_barrier mds2
2993         fail mds$((MDTIDX + 1))
2994
2995         wait $CLIENT_PID || error "rm remote dir failed"
2996
2997         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
2998
2999         rm -rf $DIR/$tdir || error "rmdir failed"
3000
3001         return 0
3002 }
3003 run_test 81f "DNE: unlink remote dir, drop MDT1 req reply, fail MDT1"
3004
3005 test_81g() {
3006         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3007         ([ $FAILURE_MODE == "HARD" ] &&
3008                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3009                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3010                 return 0
3011
3012         local MDTIDX=1
3013         local remote_dir=$DIR/$tdir/remote_dir
3014
3015         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3016         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
3017
3018         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3019         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
3020         rmdir $remote_dir &
3021         local CLIENT_PID=$!
3022
3023         replay_barrier mds1
3024         replay_barrier mds2
3025         fail mds${MDTIDX}
3026         fail mds$((MDTIDX + 1))
3027
3028         wait $CLIENT_PID || error "rm remote dir failed"
3029
3030         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
3031
3032         rm -rf $DIR/$tdir || error "rmdir failed"
3033
3034         return 0
3035 }
3036 run_test 81g "DNE: unlink remote dir, drop req reply, fail M0, then M1"
3037
3038 test_81h() {
3039         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3040         local MDTIDX=1
3041         local remote_dir=$DIR/$tdir/remote_dir
3042
3043         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3044         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
3045
3046         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3047         do_facet mds$((MDTIDX + 1)) lctl set_param fail_loc=0x119
3048         rmdir $remote_dir &
3049         local CLIENT_PID=$!
3050
3051         replay_barrier mds1
3052         replay_barrier mds2
3053         fail mds${MDTIDX},mds$((MDTIDX + 1))
3054
3055         wait $CLIENT_PID || error "rm remote dir failed"
3056
3057         stat $remote_dir &>/dev/null && error "$remote_dir still exist!"
3058
3059         rm -rf $DIR/$tdir || error "rmdir failed"
3060
3061         return 0
3062 }
3063 run_test 81h "DNE: unlink remote dir, drop request reply, fail 2 MDTs"
3064
3065 test_84a() {
3066 #define OBD_FAIL_MDS_OPEN_WAIT_CREATE  0x144
3067     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000144"
3068     createmany -o $DIR/$tfile- 1 &
3069     PID=$!
3070     mds_evict_client
3071     wait $PID
3072     client_up || client_up || true    # reconnect
3073 }
3074 run_test 84a "stale open during export disconnect"
3075
3076 test_85a() { #bug 16774
3077         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
3078
3079         for i in $(seq 100); do
3080                 echo "tag-$i" > $DIR/$tfile-$i
3081                 grep -q "tag-$i" $DIR/$tfile-$i || error "f2-$i"
3082         done
3083
3084         lov_id=$(lctl dl | grep "clilov")
3085         addr=$(echo $lov_id | awk '{print $4}' | awk -F '-' '{print $NF}')
3086         count=$(lctl get_param -n \
3087                 ldlm.namespaces.*MDT0000*$addr.lock_unused_count)
3088         echo "before recovery: unused locks count = $count"
3089
3090         fail $SINGLEMDS
3091
3092         count2=$(lctl get_param -n \
3093                  ldlm.namespaces.*MDT0000*$addr.lock_unused_count)
3094         echo "after recovery: unused locks count = $count2"
3095
3096         if [ $count2 -ge $count ]; then
3097                 error "unused locks are not canceled"
3098         fi
3099 }
3100 run_test 85a "check the cancellation of unused locks during recovery(IBITS)"
3101
3102 test_85b() { #bug 16774
3103         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
3104
3105         if ! combined_mgs_mds ; then
3106                 mount_mgs_client
3107         fi
3108
3109         create_pool $FSNAME.$TESTNAME ||
3110                 error "unable to create pool $TESTNAME"
3111         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $FSNAME-OST0000 ||
3112                 error "unable to add pool $TESTNAME"
3113
3114         $SETSTRIPE -c 1 -p $FSNAME.$TESTNAME $DIR
3115
3116         for i in $(seq 100); do
3117                 dd if=/dev/urandom of=$DIR/$tfile-$i bs=4096 \
3118                         count=32 >/dev/null 2>&1
3119         done
3120
3121         cancel_lru_locks osc
3122
3123         for i in $(seq 100); do
3124                 dd if=$DIR/$tfile-$i of=/dev/null bs=4096 \
3125                         count=32 >/dev/null 2>&1
3126         done
3127
3128         lov_id=$(lctl dl | grep "clilov")
3129         addr=$(echo $lov_id | awk '{print $4}' | awk -F '-' '{print $NF}')
3130         count=$(lctl get_param -n \
3131                           ldlm.namespaces.*OST0000*$addr.lock_unused_count)
3132         echo "before recovery: unused locks count = $count"
3133         [ $count -ne 0 ] || error "unused locks ($count) should be zero"
3134
3135         fail ost1
3136
3137         count2=$(lctl get_param \
3138                  -n ldlm.namespaces.*OST0000*$addr.lock_unused_count)
3139         echo "after recovery: unused locks count = $count2"
3140
3141         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $FSNAME-OST0000 ||
3142                 error "unable to remove pool $TESTNAME"
3143         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME ||
3144                 error "unable to destroy the pool $TESTNAME"
3145
3146         if ! combined_mgs_mds ; then
3147                 umount_mgs_client
3148         fi
3149
3150         if [ $count2 -ge $count ]; then
3151                 error "unused locks are not canceled"
3152         fi
3153 }
3154 run_test 85b "check the cancellation of unused locks during recovery(EXTENT)"
3155
3156 test_86() {
3157         local clients=${CLIENTS:-$HOSTNAME}
3158
3159         zconf_umount_clients $clients $MOUNT
3160         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT*.exports.clear=0
3161         remount_facet $SINGLEMDS
3162         zconf_mount_clients $clients $MOUNT
3163 }
3164 run_test 86 "umount server after clear nid_stats should not hit LBUG"
3165
3166 test_87a() {
3167         do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
3168
3169         replay_barrier ost1
3170         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
3171         dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 ||
3172                 error "dd to $DIR/$tfile failed"
3173         cksum=$(md5sum $DIR/$tfile | awk '{print $1}')
3174         cancel_lru_locks osc
3175         fail ost1
3176         dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
3177         cksum2=$(md5sum $DIR/$tfile | awk '{print $1}')
3178         if [ $cksum != $cksum2 ] ; then
3179                 error "New checksum $cksum2 does not match original $cksum"
3180         fi
3181 }
3182 run_test 87a "write replay"
3183
3184 test_87b() {
3185         do_facet ost1 "lctl set_param -n obdfilter.${ost1_svc}.sync_journal 0"
3186
3187         replay_barrier ost1
3188         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
3189         dd if=/dev/urandom of=$DIR/$tfile bs=1024k count=8 ||
3190                 error "dd to $DIR/$tfile failed"
3191         sleep 1 # Give it a chance to flush dirty data
3192         echo TESTTEST | dd of=$DIR/$tfile bs=1 count=8 seek=64
3193         cksum=$(md5sum $DIR/$tfile | awk '{print $1}')
3194         cancel_lru_locks osc
3195         fail ost1
3196         dd if=$DIR/$tfile of=/dev/null bs=1024k count=8 || error "Cannot read"
3197         cksum2=$(md5sum $DIR/$tfile | awk '{print $1}')
3198         if [ $cksum != $cksum2 ] ; then
3199                 error "New checksum $cksum2 does not match original $cksum"
3200         fi
3201 }
3202 run_test 87b "write replay with changed data (checksum resend)"
3203
3204 test_88() { #bug 17485
3205         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3206         mkdir -p $TMP/$tdir || error "mkdir $TMP/$tdir failed"
3207
3208         $SETSTRIPE -i 0 -c 1 $DIR/$tdir || error "$SETSTRIPE"
3209
3210         replay_barrier ost1
3211         replay_barrier $SINGLEMDS
3212
3213     # exhaust precreations on ost1
3214     local OST=$(ostname_from_index 0)
3215     local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $OST)
3216     local last_id=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
3217     local next_id=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
3218         echo "before test: last_id = $last_id, next_id = $next_id"
3219
3220         echo "Creating to objid $last_id on ost $OST..."
3221         createmany -o $DIR/$tdir/f-%d $next_id $((last_id - next_id + 2)) ||
3222                 error "createmany create files to last_id failed"
3223
3224         #create some files to use some uncommitted objids
3225         last_id=$(($last_id + 1))
3226         createmany -o $DIR/$tdir/f-%d $last_id 8 ||
3227                 error "createmany create files with uncommitted objids failed"
3228
3229     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
3230     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
3231     echo "before recovery: last_id = $last_id2, next_id = $next_id2" 
3232
3233     # if test uses shutdown_facet && reboot_facet instead of facet_failover ()
3234     # it has to take care about the affected facets, bug20407
3235     local affected_mds1=$(affected_facets mds1)
3236     local affected_ost1=$(affected_facets ost1)
3237
3238     shutdown_facet $SINGLEMDS
3239     shutdown_facet ost1
3240
3241     reboot_facet $SINGLEMDS
3242     change_active $affected_mds1
3243     wait_for_facet $affected_mds1
3244     mount_facets $affected_mds1 || error "Restart of mds failed"
3245
3246     reboot_facet ost1
3247     change_active $affected_ost1
3248     wait_for_facet $affected_ost1
3249     mount_facets $affected_ost1 || error "Restart of ost1 failed"
3250
3251     clients_up
3252
3253     last_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_last_id)
3254     next_id2=$(do_facet $SINGLEMDS lctl get_param -n osc.$mdtosc.prealloc_next_id)
3255         echo "after recovery: last_id = $last_id2, next_id = $next_id2"
3256
3257         # create new files, which should use new objids, and ensure the orphan
3258         # cleanup phase for ost1 is completed at the same time
3259         for i in $(seq 8); do
3260                 file_id=$(($last_id + 10 + $i))
3261                 dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
3262         done
3263
3264         # if the objids were not recreated, then "ls" will fail with -ENOENT
3265         ls -l $DIR/$tdir/* || error "can't get the status of precreated files"
3266
3267         local file_id
3268         # write into previously created files
3269         for i in $(seq 8); do
3270                 file_id=$(($last_id + $i))
3271                 dd if=/dev/urandom of=$DIR/$tdir/f-$file_id bs=4096 count=128
3272                 cp -f $DIR/$tdir/f-$file_id $TMP/$tdir/
3273         done
3274
3275         # compare the content
3276         for i in $(seq 8); do
3277                 file_id=$(($last_id + $i))
3278                 cmp $TMP/$tdir/f-$file_id $DIR/$tdir/f-$file_id ||
3279                         error "the content of file is modified!"
3280         done
3281
3282         rm -fr $TMP/$tdir
3283 }
3284 run_test 88 "MDS should not assign same objid to different files "
3285
3286 function calc_osc_kbytes_used() {
3287         local kbtotal=$(calc_osc_kbytes kbytestotal)
3288         local kbfree=$(calc_osc_kbytes kbytesfree)
3289         echo $((kbtotal-kbfree))
3290 }
3291
3292 test_89() {
3293         cancel_lru_locks osc
3294         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3295         rm -f $DIR/$tdir/$tfile
3296         wait_mds_ost_sync || error "initial MDS-OST sync timed out"
3297         wait_delete_completed || error "initial wait delete timed out"
3298         local blocks1=$(calc_osc_kbytes_used)
3299         local write_size=$(fs_log_size)
3300
3301         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/$tfile
3302         [ $write_size -lt 1024 ] && write_size=1024
3303         dd if=/dev/zero bs=${write_size}k count=10 of=$DIR/$tdir/$tfile
3304         sync
3305         stop ost1
3306         facet_failover $SINGLEMDS
3307         rm $DIR/$tdir/$tfile
3308         umount $MOUNT
3309         mount_facet ost1
3310         zconf_mount $(hostname) $MOUNT || error "mount fails"
3311         client_up || error "client_up failed"
3312
3313         # wait for the remounted client to connect to ost1
3314         local target=$(get_osc_import_name client ost1)
3315         wait_import_state "FULL" "osc.${target}.ost_server_uuid" \
3316                 $(max_recovery_time)
3317
3318         wait_mds_ost_sync || error "MDS-OST sync timed out"
3319         wait_delete_completed || error "wait delete timed out"
3320         local blocks2=$(calc_osc_kbytes_used)
3321
3322         [ $((blocks2 - blocks1)) -le $(fs_log_size)  ] ||
3323                 error $((blocks2 - blocks1)) blocks leaked
3324 }
3325 run_test 89 "no disk space leak on late ost connection"
3326
3327 cleanup_90 () {
3328         local facet=$1
3329
3330         trap 0
3331         reboot_facet $facet
3332         change_active $facet
3333         wait_for_facet $facet
3334         mount_facet $facet || error "Restart of $facet failed"
3335         clients_up
3336 }
3337
3338 test_90() { # bug 19494
3339     local dir=$DIR/$tdir
3340     local ostfail=$(get_random_entry $(get_facets OST))
3341
3342     if [[ $FAILURE_MODE = HARD ]]; then
3343         local affected=$(affected_facets $ostfail);
3344         if [[ "$affected" != $ostfail ]]; then
3345             skip not functional with FAILURE_MODE=$FAILURE_MODE, affected: $affected
3346             return 0
3347         fi
3348     fi
3349         # ensure all OSTs are active to allow allocations
3350         wait_osts_up
3351
3352         mkdir $dir || error "mkdir $dir failed"
3353
3354         echo "Create the files"
3355
3356         # file "f${index}" striped over 1 OST
3357         # file "all" striped over all OSTs
3358
3359         $LFS setstripe -c $OSTCOUNT $dir/all ||
3360                 error "setstripe failed to create $dir/all"
3361
3362         for ((i = 0; i < $OSTCOUNT; i++)); do
3363                 local f=$dir/f$i
3364
3365                 $LFS setstripe -i $i -c 1 $f ||
3366                         error "$LFS setstripe failed to create $f"
3367
3368                 # confirm setstripe actually created stripe on requested OST
3369                 local uuid=$(ostuuid_from_index $i)
3370
3371                 for file in f$i all; do
3372                         local found=$($LFS find --obd $uuid --name $file $dir)
3373
3374                         if [[ $dir/$file != $found ]]; then
3375                                 $LFS getstripe $dir/$file
3376                                 error "wrong stripe: $file, uuid: $uuid"
3377                         fi
3378                 done
3379         done
3380
3381         # Before failing an OST, get its obd name and index
3382         local varsvc=${ostfail}_svc
3383         local obd=$(do_facet $ostfail lctl get_param \
3384                     -n obdfilter.${!varsvc}.uuid)
3385         local index=$(($(facet_number $ostfail) - 1))
3386
3387         echo "Fail $ostfail $obd, display the list of affected files"
3388         shutdown_facet $ostfail || error "shutdown_facet $ostfail failed"
3389
3390         trap "cleanup_90 $ostfail" EXIT INT
3391         echo "General Query: lfs find $dir"
3392         local list=$($LFS find $dir)
3393         echo "$list"
3394         for (( i=0; i<$OSTCOUNT; i++ )); do
3395                 list_member "$list" $dir/f$i ||
3396                         error_noexit "lfs find $dir: no file f$i"
3397         done
3398         list_member "$list" $dir/all ||
3399                 error_noexit "lfs find $dir: no file all"
3400
3401         # focus on the missing OST,
3402         # we expect to see only two files affected: "f$(index)" and "all"
3403
3404         echo "Querying files on shutdown $ostfail: lfs find --obd $obd"
3405     list=$($LFS find --obd $obd $dir)
3406     echo "$list"
3407     for file in all f$index; do
3408         list_member "$list" $dir/$file ||
3409             error_noexit "lfs find does not report the affected $obd for $file"
3410     done
3411
3412     [[ $(echo $list | wc -w) -eq 2 ]] ||
3413         error_noexit "lfs find reports the wrong list of affected files ${#list[@]}"
3414
3415     echo "Check getstripe: $GETSTRIPE -r --obd $obd"
3416     list=$($GETSTRIPE -r --obd $obd $dir)
3417     echo "$list"
3418     for file in all f$index; do
3419         echo "$list" | grep $dir/$file ||
3420             error_noexit "lfs getsripe does not report the affected $obd for $file"
3421     done
3422
3423     cleanup_90 $ostfail
3424 }
3425 run_test 90 "lfs find identifies the missing striped file segments"
3426
3427 test_93a() {
3428         local server_version=$(lustre_version_code $SINGLEMDS)
3429                 [[ $server_version -ge $(version_code 2.6.90) ]] ||
3430                 [[ $server_version -ge $(version_code 2.5.4) &&
3431                    $server_version -lt $(version_code 2.5.50) ]] ||
3432                 { skip "Need MDS version 2.5.4+ or 2.6.90+"; return; }
3433
3434         cancel_lru_locks osc
3435
3436         $SETSTRIPE -i 0 -c 1 $DIR/$tfile ||
3437                 error "$SETSTRIPE  $DIR/$tfile failed"
3438         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 ||
3439                 error "dd to $DIR/$tfile failed"
3440         #define OBD_FAIL_TGT_REPLAY_RECONNECT     0x715
3441         # We need to emulate a state that OST is waiting for other clients
3442         # not completing the recovery. Final ping is queued, but reply will be
3443         # sent on the recovery completion. It is done by sleep before
3444         # processing final pings
3445         do_facet ost1 "$LCTL set_param fail_val=40"
3446         do_facet ost1 "$LCTL set_param fail_loc=0x715"
3447         fail ost1
3448 }
3449 run_test 93a "replay + reconnect"
3450
3451 test_93b() {
3452         local server_version=$(lustre_version_code $SINGLEMDS)
3453                 [[ $server_version -ge $(version_code 2.7.90) ]] ||
3454                 { skip "Need MDS version 2.7.90+"; return; }
3455
3456         cancel_lru_locks mdc
3457
3458         createmany -o $DIR/$tfile 20 ||
3459                         error "createmany -o $DIR/$tfile failed"
3460
3461         #define OBD_FAIL_TGT_REPLAY_RECONNECT     0x715
3462         # We need to emulate a state that MDT is waiting for other clients
3463         # not completing the recovery. Final ping is queued, but reply will be
3464         # sent on the recovery completion. It is done by sleep before
3465         # processing final pings
3466         do_facet mds1 "$LCTL set_param fail_val=80"
3467         do_facet mds1 "$LCTL set_param fail_loc=0x715"
3468         fail mds1
3469 }
3470 run_test 93b "replay + reconnect on mds"
3471
3472 striped_dir_check_100() {
3473         local striped_dir=$DIR/$tdir/striped_dir
3474         local stripe_count=$($LFS getdirstripe -c $striped_dir)
3475
3476         $LFS getdirstripe $striped_dir
3477         [ $stripe_count -eq 2 ] || error "$stripe_count != 2"
3478
3479         createmany -o $striped_dir/f-%d 20 ||
3480                 error "creation failed under striped dir"
3481 }
3482
3483 test_100a() {
3484         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3485         ([ $FAILURE_MODE == "HARD" ] &&
3486                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3487                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3488                 return 0
3489
3490         local striped_dir=$DIR/$tdir/striped_dir
3491         local MDTIDX=1
3492
3493         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3494
3495         #To make sure MDT1 and MDT0 are connected
3496         #otherwise it may create single stripe dir here
3497         $LFS setdirstripe -i1 $DIR/$tdir/remote_dir
3498
3499         #define OBD_FAIL_OUT_UPDATE_NET_REP     0x1701
3500         do_facet mds$((MDTIDX+1)) lctl set_param fail_loc=0x1701
3501         $LFS setdirstripe -i0 -c2 $striped_dir &
3502         local CLIENT_PID=$!
3503
3504         fail mds$((MDTIDX + 1))
3505
3506         wait $CLIENT_PID || error "striped dir creation failed"
3507
3508         striped_dir_check_100 || error "striped dir check failed"
3509         rm -rf $DIR/$tdir || error "rmdir failed"
3510 }
3511 run_test 100a "DNE: create striped dir, drop update rep from MDT1, fail MDT1"
3512
3513 test_100b() {
3514         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3515         ([ $FAILURE_MODE == "HARD" ] &&
3516                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3517                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3518                 return 0
3519
3520         local striped_dir=$DIR/$tdir/striped_dir
3521         local MDTIDX=1
3522
3523         mkdir $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3524
3525         #To make sure MDT1 and MDT0 are connected
3526         #otherwise it may create single stripe dir here
3527         $LFS setdirstripe -i1 $DIR/$tdir/remote_dir
3528
3529         # OBD_FAIL_MDS_REINT_NET_REP       0x119
3530         do_facet mds$MDTIDX lctl set_param fail_loc=0x119
3531         $LFS mkdir -i0 -c2 $striped_dir &
3532
3533         local CLIENT_PID=$!
3534         fail mds$MDTIDX
3535
3536         wait $CLIENT_PID || error "striped dir creation failed"
3537
3538         striped_dir_check_100 || error "striped dir check failed"
3539         rm -rf $DIR/$tdir || error "rmdir failed"
3540 }
3541 run_test 100b "DNE: create striped dir, fail MDT0"
3542
3543 test_101() { #LU-5648
3544         mkdir -p $DIR/$tdir/d1
3545         mkdir -p $DIR/$tdir/d2
3546         touch $DIR/$tdir/file0
3547         num=1000
3548
3549         replay_barrier $SINGLEMDS
3550         for i in $(seq $num) ; do
3551                 echo test$i > $DIR/$tdir/d1/file$i
3552         done
3553
3554         fail_abort $SINGLEMDS
3555         for i in $(seq $num) ; do
3556                 touch $DIR/$tdir/d2/file$i
3557                 test -s $DIR/$tdir/d2/file$i &&
3558                         ls -al $DIR/$tdir/d2/file$i && error "file$i's size > 0"
3559         done
3560
3561         rm -rf $DIR/$tdir
3562 }
3563 run_test 101 "Shouldn't reassign precreated objs to other files after recovery"
3564
3565 test_102a() {
3566         local idx
3567         local facet
3568         local num
3569         local i
3570         local pids pid
3571
3572         [[ $(lctl get_param mdc.*.import |
3573              grep "connect_flags:.*multi_mod_rpc") ]] ||
3574                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3575
3576         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3577         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3578         facet="mds$((0x$idx + 1))"
3579
3580         # get current value of max_mod_rcps_in_flight
3581         num=$($LCTL get_param -n \
3582                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3583         # set default value if client does not support multi mod RPCs
3584         [ -z "$num" ] && num=1
3585
3586         echo "creating $num files ..."
3587         umask 0022
3588         for i in $(seq $num); do
3589                 touch $DIR/$tdir/file-$i
3590         done
3591
3592         # drop request on MDT to force resend
3593         #define OBD_FAIL_MDS_REINT_MULTI_NET 0x159
3594         do_facet $facet "$LCTL set_param fail_loc=0x159"
3595         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3596         for i in $(seq $num); do
3597                 chmod 0600 $DIR/$tdir/file-$i &
3598                 pids="$pids $!"
3599         done
3600         sleep 1
3601         do_facet $facet "$LCTL set_param fail_loc=0"
3602         for pid in $pids; do
3603                 wait $pid || error "chmod failed"
3604         done
3605         echo "done ($(date +%H:%M:%S))"
3606
3607         # check chmod succeed
3608         for i in $(seq $num); do
3609                 checkstat -vp 0600 $DIR/$tdir/file-$i
3610         done
3611
3612         rm -rf $DIR/$tdir
3613 }
3614 run_test 102a "check resend (request lost) with multiple modify RPCs in flight"
3615
3616 test_102b() {
3617         local idx
3618         local facet
3619         local num
3620         local i
3621         local pids pid
3622
3623         [[ $(lctl get_param mdc.*.import |
3624              grep "connect_flags:.*multi_mod_rpc") ]] ||
3625                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3626
3627         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3628         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3629         facet="mds$((0x$idx + 1))"
3630
3631         # get current value of max_mod_rcps_in_flight
3632         num=$($LCTL get_param -n \
3633                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3634         # set default value if client does not support multi mod RPCs
3635         [ -z "$num" ] && num=1
3636
3637         echo "creating $num files ..."
3638         umask 0022
3639         for i in $(seq $num); do
3640                 touch $DIR/$tdir/file-$i
3641         done
3642
3643         # drop reply on MDT to force reconstruction
3644         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3645         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3646         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3647         for i in $(seq $num); do
3648                 chmod 0600 $DIR/$tdir/file-$i &
3649                 pids="$pids $!"
3650         done
3651         sleep 1
3652         do_facet $facet "$LCTL set_param fail_loc=0"
3653         for pid in $pids; do
3654                 wait $pid || error "chmod failed"
3655         done
3656         echo "done ($(date +%H:%M:%S))"
3657
3658         # check chmod succeed
3659         for i in $(seq $num); do
3660                 checkstat -vp 0600 $DIR/$tdir/file-$i
3661         done
3662
3663         rm -rf $DIR/$tdir
3664 }
3665 run_test 102b "check resend (reply lost) with multiple modify RPCs in flight"
3666
3667 test_102c() {
3668         local idx
3669         local facet
3670         local num
3671         local i
3672         local pids pid
3673
3674         [[ $(lctl get_param mdc.*.import |
3675              grep "connect_flags:.*multi_mod_rpc") ]] ||
3676                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3677
3678         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3679         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3680         facet="mds$((0x$idx + 1))"
3681
3682         # get current value of max_mod_rcps_in_flight
3683         num=$($LCTL get_param -n \
3684                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3685         # set default value if client does not support multi mod RPCs
3686         [ -z "$num" ] && num=1
3687
3688         echo "creating $num files ..."
3689         umask 0022
3690         for i in $(seq $num); do
3691                 touch $DIR/$tdir/file-$i
3692         done
3693
3694         replay_barrier $facet
3695
3696         # drop reply on MDT
3697         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3698         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3699         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3700         for i in $(seq $num); do
3701                 chmod 0600 $DIR/$tdir/file-$i &
3702                 pids="$pids $!"
3703         done
3704         sleep 1
3705         do_facet $facet "$LCTL set_param fail_loc=0"
3706
3707         # fail MDT
3708         fail $facet
3709
3710         for pid in $pids; do
3711                 wait $pid || error "chmod failed"
3712         done
3713         echo "done ($(date +%H:%M:%S))"
3714
3715         # check chmod succeed
3716         for i in $(seq $num); do
3717                 checkstat -vp 0600 $DIR/$tdir/file-$i
3718         done
3719
3720         rm -rf $DIR/$tdir
3721 }
3722 run_test 102c "check replay w/o reconstruction with multiple mod RPCs in flight"
3723
3724 test_102d() {
3725         local idx
3726         local facet
3727         local num
3728         local i
3729         local pids pid
3730
3731         [[ $(lctl get_param mdc.*.import |
3732              grep "connect_flags:.*multi_mod_rpc") ]] ||
3733                 { skip "Need MDC with 'multi_mod_rpcs' feature"; return 0; }
3734
3735         $LFS mkdir -c1 $DIR/$tdir || error "mkdir $DIR/$tdir failed"
3736         idx=$(printf "%04x" $($LFS getdirstripe -i $DIR/$tdir))
3737         facet="mds$((0x$idx + 1))"
3738
3739         # get current value of max_mod_rcps_in_flight
3740         num=$($LCTL get_param -n \
3741                 mdc.$FSNAME-MDT$idx-mdc-*.max_mod_rpcs_in_flight)
3742         # set default value if client does not support multi mod RPCs
3743         [ -z "$num" ] && num=1
3744
3745         echo "creating $num files ..."
3746         umask 0022
3747         for i in $(seq $num); do
3748                 touch $DIR/$tdir/file-$i
3749         done
3750
3751         # drop reply on MDT
3752         #define OBD_FAIL_MDS_REINT_MULTI_NET_REP 0x15a
3753         do_facet $facet "$LCTL set_param fail_loc=0x15a"
3754         echo "launch $num chmod in parallel ($(date +%H:%M:%S)) ..."
3755         for i in $(seq $num); do
3756                 chmod 0600 $DIR/$tdir/file-$i &
3757                 pids="$pids $!"
3758         done
3759         sleep 1
3760
3761         # write MDT transactions to disk
3762         do_facet $facet "sync; sync; sync"
3763
3764         do_facet $facet "$LCTL set_param fail_loc=0"
3765
3766         # fail MDT
3767         fail $facet
3768
3769         for pid in $pids; do
3770                 wait $pid || error "chmod failed"
3771         done
3772         echo "done ($(date +%H:%M:%S))"
3773
3774         # check chmod succeed
3775         for i in $(seq $num); do
3776                 checkstat -vp 0600 $DIR/$tdir/file-$i
3777         done
3778
3779         rm -rf $DIR/$tdir
3780 }
3781 run_test 102d "check replay & reconstruction with multiple mod RPCs in flight"
3782
3783 test_103() {
3784         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3785         local mds_version=$(lustre_version_code $SINGLEMDS)
3786         [[ $mds_version -gt $(version_code 2.8.54) ]] ||
3787                 { skip "Need MDS version 2.8.54+"; return; }
3788
3789 #define OBD_FAIL_MDS_TRACK_OVERFLOW 0x162
3790         do_facet mds1 $LCTL set_param fail_loc=0x80000162
3791
3792         mkdir -p $DIR/$tdir
3793         createmany -o $DIR/$tdir/t- 30 ||
3794                 error "create files on remote directory failed"
3795         sync
3796         rm -rf $DIR/$tdir/t-*
3797         sync
3798 #MDS should crash with tr->otr_next_id overflow
3799         fail mds1
3800 }
3801 run_test 103 "Check otr_next_id overflow"
3802
3803
3804 check_striped_dir_110()
3805 {
3806         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
3807                         error "create striped dir failed"
3808         local stripe_count=$($LFS getdirstripe -c $DIR/$tdir/striped_dir)
3809         [ $stripe_count -eq $MDSCOUNT ] ||
3810                 error "$stripe_count != 2 after recovery"
3811 }
3812
3813 test_110a() {
3814         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3815         ([ $FAILURE_MODE == "HARD" ] &&
3816                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3817                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3818                 return 0
3819
3820         mkdir -p $DIR/$tdir
3821         replay_barrier mds1
3822         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3823         fail mds1
3824
3825         check_striped_dir_110 || error "check striped_dir failed"
3826         rm -rf $DIR/$tdir || error "rmdir failed"
3827
3828         return 0
3829 }
3830 run_test 110a "DNE: create striped dir, fail MDT1"
3831
3832 test_110b() {
3833         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3834         ([ $FAILURE_MODE == "HARD" ] &&
3835                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3836                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3837                 return 0
3838
3839         mkdir -p $DIR/$tdir
3840         replay_barrier mds1
3841         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3842         umount $MOUNT
3843         fail mds1
3844         zconf_mount $(hostname) $MOUNT
3845         client_up || return 1
3846
3847         check_striped_dir_110 || error "check striped_dir failed"
3848
3849         rm -rf $DIR/$tdir || error "rmdir failed"
3850
3851         return 0
3852 }
3853 run_test 110b "DNE: create striped dir, fail MDT1 and client"
3854
3855 test_110c() {
3856         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3857         ([ $FAILURE_MODE == "HARD" ] &&
3858                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3859                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3860                 return 0
3861
3862         mkdir -p $DIR/$tdir
3863         replay_barrier mds2
3864         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3865         fail mds2
3866
3867         check_striped_dir_110 || error "check striped_dir failed"
3868
3869         rm -rf $DIR/$tdir || error "rmdir failed"
3870
3871         return 0
3872 }
3873 run_test 110c "DNE: create striped dir, fail MDT2"
3874
3875 test_110d() {
3876         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3877         ([ $FAILURE_MODE == "HARD" ] &&
3878                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3879                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3880                 return 0
3881
3882         mkdir -p $DIR/$tdir
3883         replay_barrier mds2
3884         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3885         umount $MOUNT
3886         fail mds2
3887         zconf_mount $(hostname) $MOUNT
3888         client_up || return 1
3889
3890         check_striped_dir_110 || error "check striped_dir failed"
3891
3892         rm -rf $DIR/$tdir || error "rmdir failed"
3893
3894         return 0
3895 }
3896 run_test 110d "DNE: create striped dir, fail MDT2 and client"
3897
3898 test_110e() {
3899         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3900         ([ $FAILURE_MODE == "HARD" ] &&
3901                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3902                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3903                 return 0
3904
3905         mkdir -p $DIR/$tdir
3906         replay_barrier mds2
3907         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3908         umount $MOUNT
3909         replay_barrier mds1
3910         fail mds1,mds2
3911         zconf_mount $(hostname) $MOUNT
3912         client_up || return 1
3913
3914         check_striped_dir_110 || error "check striped_dir failed"
3915
3916         rm -rf $DIR/$tdir || error "rmdir failed"
3917
3918         return 0
3919 }
3920 run_test 110e "DNE: create striped dir, uncommit on MDT2, fail client/MDT1/MDT2"
3921
3922 test_110f() {
3923         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3924         ([ $FAILURE_MODE == "HARD" ] &&
3925                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3926                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3927                 return 0
3928
3929         mkdir -p $DIR/$tdir
3930         replay_barrier mds1
3931         replay_barrier mds2
3932         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3933         fail mds2,mds1
3934
3935         check_striped_dir_110 || error "check striped_dir failed"
3936
3937         rm -rf $DIR/$tdir || error "rmdir failed"
3938
3939         return 0
3940 }
3941 run_test 110f "DNE: create striped dir, fail MDT1/MDT2"
3942
3943 test_110g() {
3944         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3945         ([ $FAILURE_MODE == "HARD" ] &&
3946                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3947                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3948                 return 0
3949
3950         mkdir -p $DIR/$tdir
3951         replay_barrier mds1
3952         $LFS mkdir -i1 -c$MDSCOUNT $DIR/$tdir/striped_dir
3953         umount $MOUNT
3954         replay_barrier mds2
3955         fail mds1,mds2
3956         zconf_mount $(hostname) $MOUNT
3957         client_up || return 1
3958
3959         check_striped_dir_110 || error "check striped_dir failed"
3960
3961         rm -rf $DIR/$tdir || error "rmdir failed"
3962
3963         return 0
3964 }
3965 run_test 110g "DNE: create striped dir, uncommit on MDT1, fail client/MDT1/MDT2"
3966
3967 test_111a() {
3968         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3969         ([ $FAILURE_MODE == "HARD" ] &&
3970                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3971                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3972                 return 0
3973
3974         mkdir -p $DIR/$tdir
3975         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
3976         replay_barrier mds1
3977         rm -rf $DIR/$tdir/striped_dir
3978         fail mds1
3979
3980         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
3981                         error "striped dir still exists"
3982         return 0
3983 }
3984 run_test 111a "DNE: unlink striped dir, fail MDT1"
3985
3986 test_111b() {
3987         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
3988         ([ $FAILURE_MODE == "HARD" ] &&
3989                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
3990                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
3991                 return 0
3992
3993         mkdir -p $DIR/$tdir
3994         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
3995         replay_barrier mds2
3996         rm -rf $DIR/$tdir/striped_dir
3997         umount $MOUNT
3998         fail mds2
3999         zconf_mount $(hostname) $MOUNT
4000         client_up || return 1
4001
4002         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4003                         error "striped dir still exists"
4004         return 0
4005 }
4006 run_test 111b "DNE: unlink striped dir, fail MDT2"
4007
4008 test_111c() {
4009         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4010         ([ $FAILURE_MODE == "HARD" ] &&
4011                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4012                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4013                 return 0
4014
4015         mkdir -p $DIR/$tdir
4016         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4017         replay_barrier mds1
4018         rm -rf $DIR/$tdir/striped_dir
4019         umount $MOUNT
4020         replay_barrier mds2
4021         fail mds1,mds2
4022         zconf_mount $(hostname) $MOUNT
4023         client_up || return 1
4024         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4025                         error "striped dir still exists"
4026         return 0
4027 }
4028 run_test 111c "DNE: unlink striped dir, uncommit on MDT1, fail client/MDT1/MDT2"
4029
4030 test_111d() {
4031         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4032         ([ $FAILURE_MODE == "HARD" ] &&
4033                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4034                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4035                 return 0
4036
4037         mkdir -p $DIR/$tdir
4038         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4039         replay_barrier mds2
4040         rm -rf $DIR/$tdir/striped_dir
4041         umount $MOUNT
4042         replay_barrier mds1
4043         fail mds1,mds2
4044         zconf_mount $(hostname) $MOUNT
4045         client_up || return 1
4046         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4047                         error "striped dir still exists"
4048
4049         return 0
4050 }
4051 run_test 111d "DNE: unlink striped dir, uncommit on MDT2, fail client/MDT1/MDT2"
4052
4053 test_111e() {
4054         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4055         ([ $FAILURE_MODE == "HARD" ] &&
4056                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4057                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4058                 return 0
4059
4060         mkdir -p $DIR/$tdir
4061         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4062         replay_barrier mds2
4063         rm -rf $DIR/$tdir/striped_dir
4064         replay_barrier mds1
4065         fail mds1,mds2
4066         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4067                         error "striped dir still exists"
4068         return 0
4069 }
4070 run_test 111e "DNE: unlink striped dir, uncommit on MDT2, fail MDT1/MDT2"
4071
4072 test_111f() {
4073         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4074         ([ $FAILURE_MODE == "HARD" ] &&
4075                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4076                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4077                 return 0
4078
4079         mkdir -p $DIR/$tdir
4080         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4081         replay_barrier mds1
4082         rm -rf $DIR/$tdir/striped_dir
4083         replay_barrier mds2
4084         fail mds1,mds2
4085         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4086                         error "striped dir still exists"
4087         return 0
4088 }
4089 run_test 111f "DNE: unlink striped dir, uncommit on MDT1, fail MDT1/MDT2"
4090
4091 test_111g() {
4092         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4093         ([ $FAILURE_MODE == "HARD" ] &&
4094                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4095                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4096                 return 0
4097
4098         mkdir -p $DIR/$tdir
4099         $LFS mkdir -i1 -c2 $DIR/$tdir/striped_dir
4100         replay_barrier mds1
4101         replay_barrier mds2
4102         rm -rf $DIR/$tdir/striped_dir
4103         fail mds1,mds2
4104         $CHECKSTAT -t dir $DIR/$tdir/striped_dir &&
4105                         error "striped dir still exists"
4106         return 0
4107 }
4108 run_test 111g "DNE: unlink striped dir, fail MDT1/MDT2"
4109
4110 test_112_rename_prepare() {
4111         mkdir -p $DIR/$tdir/src_dir
4112         $LFS mkdir -i 1 $DIR/$tdir/src_dir/src_child ||
4113                 error "create remote source failed"
4114
4115         touch $DIR/$tdir/src_dir/src_child/a
4116
4117         $LFS mkdir -i 2 $DIR/$tdir/tgt_dir ||
4118                 error "create remote target dir failed"
4119
4120         $LFS mkdir -i 3 $DIR/$tdir/tgt_dir/tgt_child ||
4121                 error "create remote target child failed"
4122 }
4123
4124 test_112_check() {
4125         find $DIR/$tdir/
4126         $CHECKSTAT -t dir $DIR/$tdir/src_dir/src_child &&
4127                 error "src_child still exists after rename"
4128
4129         $CHECKSTAT -t file $DIR/$tdir/tgt_dir/tgt_child/a ||
4130                 error "missing file(a) after rename"
4131 }
4132
4133 test_112a() {
4134         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4135         ([ $FAILURE_MODE == "HARD" ] &&
4136                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4137                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4138                 return 0
4139
4140         test_112_rename_prepare
4141         replay_barrier mds1
4142
4143         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4144                 error "rename dir cross MDT failed!"
4145         fail mds1
4146
4147         test_112_check
4148         rm -rf $DIR/$tdir || error "rmdir failed"
4149 }
4150 run_test 112a "DNE: cross MDT rename, fail MDT1"
4151
4152 test_112b() {
4153         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4154         ([ $FAILURE_MODE == "HARD" ] &&
4155                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4156                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4157                 return 0
4158
4159         test_112_rename_prepare
4160         replay_barrier mds2
4161
4162         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4163                 error "rename dir cross MDT failed!"
4164
4165         fail mds2
4166
4167         test_112_check
4168         rm -rf $DIR/$tdir || error "rmdir failed"
4169 }
4170 run_test 112b "DNE: cross MDT rename, fail MDT2"
4171
4172 test_112c() {
4173         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4174         ([ $FAILURE_MODE == "HARD" ] &&
4175                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4176                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4177                 return 0
4178
4179         test_112_rename_prepare
4180         replay_barrier mds3
4181
4182         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4183                 error "rename dir cross MDT failed!"
4184
4185         fail mds3
4186
4187         test_112_check
4188         rm -rf $DIR/$tdir || error "rmdir failed"
4189 }
4190 run_test 112c "DNE: cross MDT rename, fail MDT3"
4191
4192 test_112d() {
4193         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4194         ([ $FAILURE_MODE == "HARD" ] &&
4195                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4196                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4197                 return 0
4198
4199         test_112_rename_prepare
4200         replay_barrier mds4
4201
4202         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4203                 error "rename dir cross MDT failed!"
4204
4205         fail mds4
4206
4207         test_112_check
4208         rm -rf $DIR/$tdir || error "rmdir failed"
4209 }
4210 run_test 112d "DNE: cross MDT rename, fail MDT4"
4211
4212 test_112e() {
4213         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4214         ([ $FAILURE_MODE == "HARD" ] &&
4215                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4216                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4217                 return 0
4218
4219         test_112_rename_prepare
4220         replay_barrier mds1
4221         replay_barrier mds2
4222
4223         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4224                 error "rename dir cross MDT failed!"
4225
4226         fail mds1,mds2
4227
4228         test_112_check
4229         rm -rf $DIR/$tdir || error "rmdir failed"
4230 }
4231 run_test 112e "DNE: cross MDT rename, fail MDT1 and MDT2"
4232
4233 test_112f() {
4234         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4235         ([ $FAILURE_MODE == "HARD" ] &&
4236                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4237                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4238                 return 0
4239
4240         test_112_rename_prepare
4241         replay_barrier mds1
4242         replay_barrier mds3
4243
4244         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4245                 error "rename dir cross MDT failed!"
4246
4247         fail mds1,mds3
4248
4249         test_112_check
4250         rm -rf $DIR/$tdir || error "rmdir failed"
4251 }
4252 run_test 112f "DNE: cross MDT rename, fail MDT1 and MDT3"
4253
4254 test_112g() {
4255         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4256         ([ $FAILURE_MODE == "HARD" ] &&
4257                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4258                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4259                 return 0
4260
4261         test_112_rename_prepare
4262         replay_barrier mds1
4263         replay_barrier mds4
4264
4265         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4266                 error "rename dir cross MDT failed!"
4267
4268         fail mds1,mds4
4269
4270         test_112_check
4271         rm -rf $DIR/$tdir || error "rmdir failed"
4272 }
4273 run_test 112g "DNE: cross MDT rename, fail MDT1 and MDT4"
4274
4275 test_112h() {
4276         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4277         ([ $FAILURE_MODE == "HARD" ] &&
4278                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4279                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4280                 return 0
4281
4282         test_112_rename_prepare
4283         replay_barrier mds2
4284         replay_barrier mds3
4285
4286         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4287                 error "rename dir cross MDT failed!"
4288
4289         fail mds2,mds3
4290
4291         test_112_check
4292         rm -rf $DIR/$tdir || error "rmdir failed"
4293 }
4294 run_test 112h "DNE: cross MDT rename, fail MDT2 and MDT3"
4295
4296 test_112i() {
4297         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4298         ([ $FAILURE_MODE == "HARD" ] &&
4299                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4300                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4301                 return 0
4302
4303         test_112_rename_prepare
4304         replay_barrier mds2
4305         replay_barrier mds4
4306
4307         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4308                 error "rename dir cross MDT failed!"
4309
4310         fail mds2,mds4
4311
4312         test_112_check
4313         rm -rf $DIR/$tdir || error "rmdir failed"
4314 }
4315 run_test 112i "DNE: cross MDT rename, fail MDT2 and MDT4"
4316
4317 test_112j() {
4318         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4319         ([ $FAILURE_MODE == "HARD" ] &&
4320                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4321                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4322                 return 0
4323
4324         test_112_rename_prepare
4325         replay_barrier mds3
4326         replay_barrier mds4
4327
4328         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4329                 error "rename dir cross MDT failed!"
4330
4331         fail mds3,mds4
4332
4333         test_112_check
4334         rm -rf $DIR/$tdir || error "rmdir failed"
4335 }
4336 run_test 112j "DNE: cross MDT rename, fail MDT3 and MDT4"
4337
4338 test_112k() {
4339         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4340         ([ $FAILURE_MODE == "HARD" ] &&
4341                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4342                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4343                 return 0
4344
4345         test_112_rename_prepare
4346         replay_barrier mds1
4347         replay_barrier mds2
4348         replay_barrier mds3
4349
4350         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4351                 error "rename dir cross MDT failed!"
4352
4353         fail mds1,mds2,mds3
4354
4355         test_112_check
4356         rm -rf $DIR/$tdir || error "rmdir failed"
4357 }
4358 run_test 112k "DNE: cross MDT rename, fail MDT1,MDT2,MDT3"
4359
4360 test_112l() {
4361         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4362         ([ $FAILURE_MODE == "HARD" ] &&
4363                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4364                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4365                 return 0
4366
4367         test_112_rename_prepare
4368         replay_barrier mds1
4369         replay_barrier mds2
4370         replay_barrier mds4
4371
4372         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4373                 error "rename dir cross MDT failed!"
4374
4375         fail mds1,mds2,mds4
4376
4377         test_112_check
4378         rm -rf $DIR/$tdir || error "rmdir failed"
4379 }
4380 run_test 112l "DNE: cross MDT rename, fail MDT1,MDT2,MDT4"
4381
4382 test_112m() {
4383         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4384         ([ $FAILURE_MODE == "HARD" ] &&
4385                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4386                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4387                 return 0
4388
4389         test_112_rename_prepare
4390         replay_barrier mds1
4391         replay_barrier mds3
4392         replay_barrier mds4
4393
4394         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4395                 error "rename dir cross MDT failed!"
4396
4397         fail mds1,mds3,mds4
4398
4399         test_112_check
4400         rm -rf $DIR/$tdir || error "rmdir failed"
4401 }
4402 run_test 112m "DNE: cross MDT rename, fail MDT1,MDT3,MDT4"
4403
4404 test_112n() {
4405         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4406         ([ $FAILURE_MODE == "HARD" ] &&
4407                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4408                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4409                 return 0
4410
4411         test_112_rename_prepare
4412         replay_barrier mds2
4413         replay_barrier mds3
4414         replay_barrier mds4
4415
4416         mrename $DIR/$tdir/src_dir/src_child $DIR/$tdir/tgt_dir/tgt_child ||
4417                 error "rename dir cross MDT failed!"
4418
4419         fail mds2,mds3,mds4
4420
4421         test_112_check
4422         rm -rf $DIR/$tdir || error "rmdir failed"
4423 }
4424 run_test 112n "DNE: cross MDT rename, fail MDT2,MDT3,MDT4"
4425
4426 test_115() {
4427         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4428         ([ $FAILURE_MODE == "HARD" ] &&
4429                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4430                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4431                 return 0
4432         local fail_index=0
4433         local index
4434         local i
4435         local j
4436
4437         mkdir -p $DIR/$tdir
4438         for ((j=0;j<$((MDSCOUNT));j++)); do
4439                 fail_index=$((fail_index+1))
4440                 index=$((fail_index % MDSCOUNT))
4441                 replay_barrier mds$((index + 1))
4442                 for ((i=0;i<5;i++)); do
4443                         test_mkdir -i$index -c$MDSCOUNT $DIR/$tdir/test_$i ||
4444                                 error "create striped dir $DIR/$tdir/test_$i"
4445                 done
4446
4447                 fail mds$((index + 1))
4448                 for ((i=0;i<5;i++)); do
4449                         checkstat -t dir $DIR/$tdir/test_$i ||
4450                                 error "$DIR/$tdir/test_$i does not exist!"
4451                 done
4452                 rm -rf $DIR/$tdir/test_* ||
4453                                 error "rmdir fails"
4454         done
4455 }
4456 run_test 115 "failover for create/unlink striped directory"
4457
4458 test_116a() {
4459         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4460         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
4461                 skip "Do not support large update log before 2.7.55" &&
4462                 return 0
4463         ([ $FAILURE_MODE == "HARD" ] &&
4464                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4465                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4466                 return 0
4467         local fail_index=0
4468
4469         mkdir -p $DIR/$tdir
4470         replay_barrier mds1
4471
4472         # OBD_FAIL_SPLIT_UPDATE_REC       0x1702
4473         do_facet mds1 "lctl set_param fail_loc=0x80001702"
4474         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4475
4476         fail mds1
4477         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
4478                 error "stried_dir does not exists"
4479 }
4480 run_test 116a "large update log master MDT recovery"
4481
4482 test_116b() {
4483         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4484         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.55) ] &&
4485                 skip "Do not support large update log before 2.7.55" &&
4486                 return 0
4487
4488         ([ $FAILURE_MODE == "HARD" ] &&
4489                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4490                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4491                 return 0
4492         local fail_index=0
4493
4494         mkdir -p $DIR/$tdir
4495         replay_barrier mds2
4496
4497         # OBD_FAIL_SPLIT_UPDATE_REC       0x1702
4498         do_facet mds2 "lctl set_param fail_loc=0x80001702"
4499         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/striped_dir
4500
4501         fail mds2
4502         $CHECKSTAT -t dir $DIR/$tdir/striped_dir ||
4503                 error "stried_dir does not exists"
4504 }
4505 run_test 116b "large update log slave MDT recovery"
4506
4507 test_117() {
4508         [ $MDSCOUNT -lt 4 ] && skip "needs >= 4 MDTs" && return 0
4509         ([ $FAILURE_MODE == "HARD" ] &&
4510                 [ "$(facet_host mds1)" == "$(facet_host mds2)" ]) &&
4511                 skip "MDTs needs to be on diff hosts for HARD fail mode" &&
4512                 return 0
4513         local index
4514         local mds_indexs
4515
4516         mkdir -p $DIR/$tdir
4517         $LFS setdirstripe -i0 -c$MDSCOUNT $DIR/$tdir/remote_dir
4518         $LFS setdirstripe -i1 -c$MDSCOUNT $DIR/$tdir/remote_dir_1
4519         sleep 2
4520
4521         # Let's set rdonly on all MDTs, so client will send
4522         # replay requests on all MDTs and replay these requests
4523         # at the same time. This test will verify the recovery
4524         # will not be deadlock in this case, LU-7531.
4525         for ((index = 0; index < $((MDSCOUNT)); index++)); do
4526                 replay_barrier mds$((index + 1))
4527                 if [ -z $mds_indexs ]; then
4528                         mds_indexs="${mds_indexs}mds$((index+1))"
4529                 else
4530                         mds_indexs="${mds_indexs},mds$((index+1))"
4531                 fi
4532         done
4533
4534         rm -rf $DIR/$tdir/remote_dir
4535         rm -rf $DIR/$tdir/remote_dir_1
4536
4537         fail $mds_indexs
4538
4539         rm -rf $DIR/$tdir || error "rmdir failed"
4540 }
4541 run_test 117 "DNE: cross MDT unlink, fail MDT1 and MDT2"
4542
4543 test_118() {
4544         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4545         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4546                 skip "Do not support large update log before 2.7.64" &&
4547                 return 0
4548
4549         mkdir -p $DIR/$tdir
4550
4551         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir ||
4552                 error "setdirstripe fails"
4553         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1 ||
4554                 error "setdirstripe fails 1"
4555         rm -rf $DIR/$tdir/striped_dir* || error "rmdir fails"
4556
4557         # OBD_FAIL_INVALIDATE_UPDATE       0x1705
4558         do_facet mds1 "lctl set_param fail_loc=0x1705"
4559         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir
4560         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1
4561         do_facet mds1 "lctl set_param fail_loc=0x0"
4562
4563         replay_barrier mds1
4564         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir
4565         $LFS setdirstripe -c2 $DIR/$tdir/striped_dir1
4566         fail mds1
4567
4568         true
4569 }
4570 run_test 118 "invalidate osp update will not cause update log corruption"
4571
4572 test_119() {
4573         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4574         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4575                 skip "Do not support large update log before 2.7.64" &&
4576                 return 0
4577         local stripe_count
4578         local hard_timeout=$(do_facet mds1 \
4579                 "lctl get_param -n mdt.$FSNAME-MDT0000.recovery_time_hard")
4580
4581         local clients=${CLIENTS:-$HOSTNAME}
4582         local time_min=$(recovery_time_min)
4583
4584         mkdir -p $DIR/$tdir
4585         mkdir $DIR/$tdir/tmp
4586         rmdir $DIR/$tdir/tmp
4587
4588         replay_barrier mds1
4589         mkdir $DIR/$tdir/dir_1
4590         for ((i = 0; i < 20; i++)); do
4591                 $LFS setdirstripe -i0 -c2 $DIR/$tdir/stripe_dir-$i
4592         done
4593
4594         stop mds1
4595         change_active mds1
4596         wait_for_facet mds1
4597
4598         #define OBD_FAIL_TGT_REPLAY_DELAY  0x714
4599         do_facet mds1 $LCTL set_param fail_loc=0x80000714
4600         #sleep (timeout + 5), so mds will evict the client exports,
4601         #but DNE update recovery will keep going.
4602         do_facet mds1 $LCTL set_param fail_val=$((time_min + 5))
4603
4604         mount_facet mds1 "-o recovery_time_hard=$time_min"
4605
4606         wait_clients_import_state "$clients" mds1 FULL
4607
4608         clients_up || clients_up || error "failover df: $?"
4609
4610         #revert back the hard timeout
4611         do_facet mds1 $LCTL set_param \
4612                 mdt.$FSNAME-MDT0000.recovery_time_hard=$hard_timeout
4613
4614         for ((i = 0; i < 20; i++)); do
4615                 stripe_count=$($LFS getdirstripe -c $DIR/$tdir/stripe_dir-$i)
4616                 [ $stripe_count == 2 ] || {
4617                         error "stripe_dir-$i creation replay fails"
4618                         break
4619                 }
4620         done
4621 }
4622 run_test 119 "timeout of normal replay does not cause DNE replay fails  "
4623
4624 test_120() {
4625         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
4626         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.7.64) ] &&
4627                 skip "Do not support large update log before 2.7.64" &&
4628                 return 0
4629
4630         mkdir $DIR/$tdir
4631         replay_barrier_nosync mds1
4632         for ((i = 0; i < 20; i++)); do
4633                 mkdir $DIR/$tdir/dir-$i || {
4634                         error "create dir-$i fails"
4635                         break
4636                 }
4637                 $LFS setdirstripe -i0 -c2 $DIR/$tdir/stripe_dir-$i || {
4638                         error "create stripe_dir-$i fails"
4639                         break
4640                 }
4641         done
4642
4643         fail_abort mds1
4644
4645         for ((i = 0; i < 20; i++)); do
4646                 [ ! -e "$DIR/$tdir/dir-$i" ] || {
4647                         error "dir-$i still exists"
4648                         break
4649                 }
4650                 [ ! -e "$DIR/$tdir/stripe_dir-$i" ] || {
4651                         error "stripe_dir-$i still exists"
4652                         break
4653                 }
4654         done
4655 }
4656 run_test 120 "DNE fail abort should stop both normal and DNE replay"
4657
4658 test_121() {
4659         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.10.90) ] &&
4660                 skip "Don't support it before 2.11" &&
4661                 return 0
4662
4663         local at_max_saved=$(at_max_get mds)
4664
4665         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
4666         cancel_lru_locks mdc
4667
4668         multiop_bg_pause $DIR/$tfile s_s || error "multiop $DIR/$tfile failed"
4669         mpid=$!
4670
4671         lctl set_param -n ldlm.cancel_unused_locks_before_replay "0"
4672
4673         stop mds1
4674         change_active mds1
4675         wait_for_facet mds1
4676
4677         #define OBD_FAIL_TGT_RECOVERY_REQ_RACE  0x721
4678         do_facet $SINGLEMDS "lctl set_param fail_loc=0x721 fail_val=0"
4679         at_max_set 0 mds
4680
4681         mount_facet mds1
4682         wait_clients_import_state "$clients" mds1 FULL
4683         clients_up || clients_up || error "failover df: $?"
4684
4685         kill -USR1 $mpid
4686         wait $mpid || error "multiop_bg_pause pid failed"
4687
4688         do_facet $SINGLEMDS "lctl set_param fail_loc=0x0"
4689         lctl set_param -n ldlm.cancel_unused_locks_before_replay "1"
4690         at_max_set $at_max_saved mds
4691         rm -f $DIR/$tfile
4692 }
4693 run_test 121 "lock replay timed out and race"
4694
4695 complete $SECONDS
4696 check_and_cleanup_lustre
4697 exit_status