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