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