Whamcloud - gitweb
LU-2547 tests: EXCLUDE recovery-small/24b for ZFS
[fs/lustre-release.git] / lustre / tests / recovery-small.sh
1 #!/bin/bash
2
3 set -e
4
5 #         bug  5493  LU2034
6 ALWAYS_EXCEPT="52    60      $RECOVERY_SMALL_EXCEPT"
7
8 export MULTIOP=${MULTIOP:-multiop}
9 PTLDEBUG=${PTLDEBUG:--1}
10 LUSTRE=${LUSTRE:-`dirname $0`/..}
11 . $LUSTRE/tests/test-framework.sh
12 init_test_env $@
13 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
14 init_logging
15
16 require_dsh_mds || exit 0
17
18 # also long tests: 19, 21a, 21e, 21f, 23, 27
19 #                                   1  2.5  2.5    4    4          (min)"
20 [ "$SLOW" = "no" ] && EXCEPT_SLOW="17  26a  26b    50   51     57"
21
22 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
23 # bug number for skipped test:        LU-2194 LU-2547
24         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 19b     24a 24b"
25
26 build_test_filter
27
28 # Allow us to override the setup if we already have a mounted system by
29 # setting SETUP=" " and CLEANUP=" "
30 SETUP=${SETUP:-""}
31 CLEANUP=${CLEANUP:-""}
32
33 check_and_setup_lustre
34
35 assert_DIR
36 rm -rf $DIR/d[0-9]* $DIR/f.${TESTSUITE}*
37
38 test_1() {
39         local f1="$DIR/$tfile"
40         local f2="$DIR/$tfile.2"
41
42         drop_request "mcreate $f1" ||
43                 error_noexit "create '$f1': drop req"
44
45         drop_reint_reply "mcreate $f2" ||
46                 error_noexit "create '$f2': drop rep"
47
48         drop_request "tchmod 111 $f2" ||
49                 error_noexit "chmod '$f2': drop req"
50
51         drop_reint_reply "tchmod 666 $f2" ||
52                 error_noexit "chmod '$f2': drop rep"
53
54         drop_request "statone $f2" ||
55                 error_noexit "stat '$f2': drop req"
56
57         drop_reply  "statone $f2" ||
58                 error_noexit "stat '$f2': drop rep"
59 }
60 run_test 1 "create, chmod, stat: drop req, drop rep"
61
62 test_4() {
63         local t=$DIR/$tfile
64         do_facet_create_file client $t 10K ||
65                 error_noexit "Create file $t"
66
67         drop_request "cat $t > /dev/null" ||
68                 error_noexit "Open request for $t file"
69
70         drop_reply "cat $t > /dev/null" ||
71                 error_noexit "Open replay for $t file"
72 }
73 run_test 4 "open: drop req, drop rep"
74
75 test_5() {
76         local T=$DIR/$tfile
77         local R="$T-renamed"
78         local RR="$T-renamed-again"
79         do_facet_create_file client $T 10K ||
80                 error_noexit "Create file $T"
81
82         drop_request "mv $T $R" ||
83                 error_noexit "Rename $T"
84
85         drop_reint_reply "mv $R $RR" ||
86                 error_noexit "Failed rename replay on $R"
87
88         do_facet client "checkstat -v $RR" ||
89                 error_noexit "checkstat error on $RR"
90
91         do_facet client "rm $RR" ||
92                 error_noexit "Can't remove file $RR"
93 }
94 run_test 5 "rename: drop req, drop rep"
95
96 test_6() {
97         local T=$DIR/$tfile
98         local LINK1=$DIR/$tfile.link1
99         local LINK2=$DIR/$tfile.link2
100
101         do_facet_create_file client $T 10K ||
102                 error_noexit "Create file $T"
103
104         drop_request "mlink $T $LINK1" ||
105                 error_noexit "mlink request for $T"
106
107         drop_reint_reply "mlink $T $LINK2" ||
108                 error_noexit "mlink reply for $T"
109
110         drop_request "munlink $LINK1" ||
111                 error_noexit "munlink request for $T"
112
113         drop_reint_reply "munlink $LINK2" ||
114                 error_noexit "munlink reply for $T"
115
116         do_facet client "rm $T" ||
117                 error_noexit "Can't remove file $T"
118 }
119 run_test 6 "link, unlink: drop req, drop rep"
120
121 #bug 1423
122 test_8() {
123     drop_reint_reply "touch $DIR/$tfile"    || return 1
124 }
125 run_test 8 "touch: drop rep (bug 1423)"
126
127 #bug 1420
128 test_9() {
129         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
130
131         local t1=${tfile}.1
132         local t2=${tfile}.2
133         do_facet_random_file client $TMP/$tfile 1K ||
134                 error_noexit "Create random file $TMP/$tfile"
135         # make this big, else test 9 doesn't wait for bulk -- bz 5595
136         do_facet_create_file client $TMP/$t1 4M ||
137                 error_noexit "Create file $TMP/$t1"
138         do_facet client "cp $TMP/$t1 $DIR/$t1" ||
139                 error_noexit "Can't copy to $DIR/$t1 file"
140         pause_bulk "cp $TMP/$tfile $DIR/$tfile" ||
141                 error_noexit "Can't pause_bulk copy"
142         do_facet client "cp $TMP/$t1 $DIR/$t2" ||
143                 error_noexit "Can't copy file"
144         do_facet client "sync"
145         do_facet client "rm $DIR/$tfile $DIR/$t2 $DIR/$t1" ||
146                 error_noexit "Can't remove files"
147         do_facet client "rm $TMP/$t1 $TMP/$tfile"
148 }
149 run_test 9 "pause bulk on OST (bug 1420)"
150
151 #bug 1521
152 test_10() {
153         do_facet client mcreate $DIR/$tfile ||
154                 { error "mcreate failed: $?"; return 1; }
155         drop_bl_callback "chmod 0777 $DIR/$tfile"  || echo "evicted as expected"
156         # wait for the mds to evict the client
157         #echo "sleep $(($TIMEOUT*2))"
158         #sleep $(($TIMEOUT*2))
159         do_facet client touch $DIR/$tfile || echo "touch failed, evicted"
160         do_facet client checkstat -v -p 0777 $DIR/$tfile ||
161                 { error "client checkstat failed: $?"; return 3; }
162         do_facet client "munlink $DIR/$tfile"
163         # allow recovery to complete
164         client_up || client_up || sleep $TIMEOUT
165 }
166 run_test 10 "finish request on server after client eviction (bug 1521)"
167
168 #bug 2460
169 # wake up a thread waiting for completion after eviction
170 test_11(){
171         do_facet client $MULTIOP $DIR/$tfile Ow  ||
172                 { error "multiop write failed: $?"; return 1; }
173         do_facet client $MULTIOP $DIR/$tfile or  ||
174                 { error "multiop read failed: $?"; return 2; }
175
176         cancel_lru_locks osc
177
178         do_facet client $MULTIOP $DIR/$tfile or  ||
179                 { error "multiop read failed: $?"; return 3; }
180         drop_bl_callback $MULTIOP $DIR/$tfile Ow || echo "evicted as expected"
181
182         do_facet client munlink $DIR/$tfile ||
183                 { error "munlink failed: $?"; return 4; }
184         # allow recovery to complete
185         client_up || client_up || sleep $TIMEOUT
186 }
187 run_test 11 "wake up a thread waiting for completion after eviction (b=2460)"
188
189 #b=2494
190 test_12(){
191         $LCTL mark $MULTIOP $DIR/$tfile OS_c
192         do_facet $SINGLEMDS "lctl set_param fail_loc=0x115"
193         clear_failloc $SINGLEMDS $((TIMEOUT * 2)) &
194         multiop_bg_pause $DIR/$tfile OS_c ||
195                 { error "multiop failed: $?"; return 1; }
196         PID=$!
197 #define OBD_FAIL_MDS_CLOSE_NET           0x115
198         kill -USR1 $PID
199         echo "waiting for multiop $PID"
200         wait $PID || { error "wait for multiop faile: $?"; return 2; }
201         do_facet client munlink $DIR/$tfile ||
202                 { error "client munlink failed: $?"; return 3; }
203         # allow recovery to complete
204         client_up || client_up || sleep $TIMEOUT
205 }
206 run_test 12 "recover from timed out resend in ptlrpcd (b=2494)"
207
208 # Bug 113, check that readdir lost recv timeout works.
209 test_13() {
210         mkdir -p $DIR/$tdir || { error "mkdir failed: $?"; return 1; }
211         touch $DIR/$tdir/newentry || { error "touch failed: $?"; return 2; }
212 # OBD_FAIL_MDS_READPAGE_NET|OBD_FAIL_ONCE
213         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000104"
214         ls $DIR/$tdir || { error "ls failed: $?"; return 3; }
215         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
216         rm -rf $DIR/$tdir || { error "remove test dir failed: $?"; return 4; }
217 }
218 run_test 13 "mdc_readpage restart test (bug 1138)"
219
220 # Bug 113, check that readdir lost send timeout works.
221 test_14() {
222     mkdir -p $DIR/$tdir
223     touch $DIR/$tdir/newentry
224 # OBD_FAIL_MDS_SENDPAGE|OBD_FAIL_ONCE
225     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000106"
226     ls $DIR/$tdir || return 1
227     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
228 }
229 run_test 14 "mdc_readpage resend test (bug 1138)"
230
231 test_15() {
232     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000128"
233     touch $DIR/$tfile && return 1
234     return 0
235 }
236 run_test 15 "failed open (-ENOMEM)"
237
238 READ_AHEAD=`lctl get_param -n llite.*.max_read_ahead_mb | head -n 1`
239 stop_read_ahead() {
240    lctl set_param -n llite.*.max_read_ahead_mb 0
241 }
242
243 start_read_ahead() {
244    lctl set_param -n llite.*.max_read_ahead_mb $READ_AHEAD
245 }
246
247 test_16() {
248         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
249
250         do_facet_random_file client $TMP/$tfile 100K ||
251                 { error_noexit "Create random file $TMP/$T" ; return 0; }
252         do_facet client "cp $TMP/$tfile $DIR/$tfile" ||
253                 { error_noexit "Copy to $DIR/$tfile file" ; return 0; }
254         sync
255         stop_read_ahead
256
257 #define OBD_FAIL_PTLRPC_BULK_PUT_NET 0x504 | OBD_FAIL_ONCE
258         do_facet ost1 "lctl set_param fail_loc=0x80000504"
259         cancel_lru_locks osc
260         # OST bulk will time out here, client resends
261         do_facet client "cmp $TMP/$tfile $DIR/$tfile" || return 1
262         do_facet ost1 lctl set_param fail_loc=0
263         # give recovery a chance to finish (shouldn't take long)
264         sleep $TIMEOUT
265         do_facet client "cmp $TMP/$tfile $DIR/$tfile" || return 2
266         start_read_ahead
267 }
268 run_test 16 "timeout bulk put, don't evict client (2732)"
269
270 test_17() {
271     local at_max_saved=0
272
273     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
274
275         local SAMPLE_FILE=$TMP/$tfile
276         do_facet_random_file client $SAMPLE_FILE 20K ||
277                 { error_noexit "Create random file $SAMPLE_FILE" ; return 0; }
278
279     # With adaptive timeouts, bulk_get won't expire until adaptive_timeout_max
280     if at_is_enabled; then
281         at_max_saved=$(at_max_get ost1)
282         at_max_set $TIMEOUT ost1
283     fi
284
285     # OBD_FAIL_PTLRPC_BULK_GET_NET 0x0503 | OBD_FAIL_ONCE
286     # OST bulk will time out here, client retries
287     do_facet ost1 lctl set_param fail_loc=0x80000503
288     # need to ensure we send an RPC
289     do_facet client cp $SAMPLE_FILE $DIR/$tfile
290     sync
291
292     # with AT, client will wait adaptive_max*factor+net_latency before
293     # expiring the req, hopefully timeout*2 is enough
294     sleep $(($TIMEOUT*2))
295
296     do_facet ost1 lctl set_param fail_loc=0
297     do_facet client "df $DIR"
298     # expect cmp to succeed, client resent bulk
299     do_facet client "cmp $SAMPLE_FILE $DIR/$tfile" || return 3
300     do_facet client "rm $DIR/$tfile" || return 4
301     [ $at_max_saved -ne 0 ] && at_max_set $at_max_saved ost1
302     return 0
303 }
304 run_test 17 "timeout bulk get, don't evict client (2732)"
305
306 test_18a() {
307     [ -z ${ost2_svc} ] && skip_env "needs 2 osts" && return 0
308
309         do_facet_create_file client $TMP/$tfile 20K ||
310                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
311
312     do_facet client mkdir -p $DIR/$tdir
313     f=$DIR/$tdir/$tfile
314
315     cancel_lru_locks osc
316     pgcache_empty || return 1
317
318     # 1 stripe on ost2
319     $LFS setstripe -i 1 -c 1 $f
320     stripe_index=$($LFS getstripe -i $f)
321     if [ $stripe_index -ne 1 ]; then
322         $LFS getstripe $f
323         error "$f: stripe_index $stripe_index != 1" && return
324     fi
325
326     do_facet client cp $TMP/$tfile $f
327     sync
328     local osc2dev=`lctl get_param -n devices | grep ${ost2_svc}-osc- | egrep -v 'MDT' | awk '{print $1}'`
329     $LCTL --device $osc2dev deactivate || return 3
330     # my understanding is that there should be nothing in the page
331     # cache after the client reconnects?     
332     rc=0
333     pgcache_empty || rc=2
334     $LCTL --device $osc2dev activate
335     rm -f $f
336     return $rc
337 }
338 run_test 18a "manual ost invalidate clears page cache immediately"
339
340 test_18b() {
341     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
342
343         do_facet_create_file client $TMP/$tfile 20K ||
344                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
345
346     do_facet client mkdir -p $DIR/$tdir
347     f=$DIR/$tdir/$tfile
348
349     cancel_lru_locks osc
350     pgcache_empty || return 1
351
352     $LFS setstripe -i 0 -c 1 $f
353     stripe_index=$($LFS getstripe -i $f)
354     if [ $stripe_index -ne 0 ]; then
355         $LFS getstripe $f
356         error "$f: stripe_index $stripe_index != 0" && return
357     fi
358
359     do_facet client cp $TMP/$tfile $f
360     sync
361     ost_evict_client
362     # allow recovery to complete
363     sleep $((TIMEOUT + 2))
364     # my understanding is that there should be nothing in the page
365     # cache after the client reconnects?     
366     rc=0
367     pgcache_empty || rc=2
368     rm -f $f
369     return $rc
370 }
371 run_test 18b "eviction and reconnect clears page cache (2766)"
372
373 test_18c() {
374     remote_ost_nodsh && skip "remote OST with nodsh" && return 0
375
376         do_facet_create_file client $TMP/$tfile 20K ||
377                 { error_noexit "Create file $TMP/$tfile" ; return 0; }
378
379     do_facet client mkdir -p $DIR/$tdir
380     f=$DIR/$tdir/$tfile
381
382     cancel_lru_locks osc
383     pgcache_empty || return 1
384
385     $LFS setstripe -i 0 -c 1 $f
386     stripe_index=$($LFS getstripe -i $f)
387     if [ $stripe_index -ne 0 ]; then
388         $LFS getstripe $f
389         error "$f: stripe_index $stripe_index != 0" && return
390     fi
391
392     do_facet client cp $TMP/$tfile $f
393     sync
394     ost_evict_client
395
396     # OBD_FAIL_OST_CONNECT_NET2
397     # lost reply to connect request
398     do_facet ost1 lctl set_param fail_loc=0x80000225
399     # force reconnect
400     sleep 1
401     df $MOUNT > /dev/null 2>&1
402     sleep 2
403     # my understanding is that there should be nothing in the page
404     # cache after the client reconnects?     
405     rc=0
406     pgcache_empty || rc=2
407     rm -f $f
408     return $rc
409 }
410 run_test 18c "Dropped connect reply after eviction handing (14755)"
411
412 test_19a() {
413         local BEFORE=`date +%s`
414         local EVICT
415
416         mount_client $DIR2 || error "failed to mount $DIR2"
417
418         # cancel cached locks from OST to avoid eviction from it
419         cancel_lru_locks osc
420
421         do_facet client "stat $DIR > /dev/null"  ||
422                 error "failed to stat $DIR: $?"
423         drop_ldlm_cancel "chmod 0777 $DIR2" ||
424                 error "failed to chmod $DIR2"
425
426         umount_client $DIR2
427
428         # let the client reconnect
429         client_reconnect
430         EVICT=$(do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state | \
431             awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
432
433         [ ! -z "$EVICT" ] && [[ $EVICT -gt $BEFORE ]] ||
434                 (do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state;
435                     error "no eviction: $EVICT before:$BEFORE")
436 }
437 run_test 19a "test expired_lock_main on mds (2867)"
438
439 test_19b() {
440         local BEFORE=`date +%s`
441         local EVICT
442
443         mount_client $DIR2 || error "failed to mount $DIR2: $?"
444
445         # cancel cached locks from MDT to avoid eviction from it
446         cancel_lru_locks mdc
447
448         do_facet client $MULTIOP $DIR/$tfile Ow ||
449                 error "failed to run multiop: $?"
450         drop_ldlm_cancel $MULTIOP $DIR2/$tfile Ow ||
451                 error "failed to ldlm_cancel: $?"
452
453         umount_client $DIR2 || error "failed to unmount $DIR2: $?"
454         do_facet client munlink $DIR/$tfile ||
455                 error "failed to unlink $DIR/$tfile: $?"
456
457         # let the client reconnect
458         client_reconnect
459         EVICT=$(do_facet client $LCTL get_param osc.$FSNAME-OST*.state | \
460             awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
461
462         [ ! -z "$EVICT" ] && [[ $EVICT -gt $BEFORE ]] ||
463                 (do_facet client $LCTL get_param osc.$FSNAME-OST*.state;
464                     error "no eviction: $EVICT before:$BEFORE")
465 }
466 run_test 19b "test expired_lock_main on ost (2867)"
467
468 test_19c() {
469         local BEFORE=`date +%s`
470
471         mount_client $DIR2
472         $LCTL set_param ldlm.namespaces.*.early_lock_cancel=0
473
474         mkdir -p $DIR1/$tfile
475         stat $DIR1/$tfile
476
477 #define OBD_FAIL_PTLRPC_CANCEL_RESEND 0x516
478         do_facet mds $LCTL set_param fail_loc=0x80000516
479
480         touch $DIR2/$tfile/file1 &
481         PID1=$!
482         # let touch to get blocked on the server
483         sleep 2
484
485         wait $PID1
486         $LCTL set_param ldlm.namespaces.*.early_lock_cancel=1
487         umount_client $DIR2
488
489         # let the client reconnect
490         sleep 5
491         EVICT=$(do_facet client $LCTL get_param mdc.$FSNAME-MDT*.state |
492            awk -F"[ [,]" '/EVICTED]$/ { if (mx<$4) {mx=$4;} } END { print mx }')
493
494         [ -z "$EVICT" ] || [[ $EVICT -le $BEFORE ]] || error "eviction happened"
495 }
496 run_test 19c "check reconnect and lock resend do not trigger expired_lock_main"
497
498 test_20a() {    # bug 2983 - ldlm_handle_enqueue cleanup
499         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
500
501         mkdir -p $DIR/$tdir
502         $LFS setstripe -i 0 -c 1 $DIR/$tdir/${tfile}
503         multiop_bg_pause $DIR/$tdir/${tfile} O_wc || return 1
504         MULTI_PID=$!
505         cancel_lru_locks osc
506 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
507         do_facet ost1 lctl set_param fail_loc=0x80000308
508         kill -USR1 $MULTI_PID
509         wait $MULTI_PID
510         rc=$?
511         [ $rc -eq 0 ] && error "multiop didn't fail enqueue: rc $rc" || true
512 }
513 run_test 20a "ldlm_handle_enqueue error (should return error)" 
514
515 test_20b() {    # bug 2986 - ldlm_handle_enqueue error during open
516         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
517
518         mkdir -p $DIR/$tdir
519         $LFS setstripe -i 0 -c 1 $DIR/$tdir/${tfile}
520         cancel_lru_locks osc
521 #define OBD_FAIL_LDLM_ENQUEUE_EXTENT_ERR 0x308
522         do_facet ost1 lctl set_param fail_loc=0x80000308
523         dd if=/etc/hosts of=$DIR/$tdir/$tfile && \
524                 error "didn't fail open enqueue" || true
525 }
526 run_test 20b "ldlm_handle_enqueue error (should return error)"
527
528 test_21a() {
529        mkdir -p $DIR/$tdir-1
530        mkdir -p $DIR/$tdir-2
531        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
532        close_pid=$!
533
534        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000129"
535        $MULTIOP $DIR/$tdir-2/f Oc &
536        open_pid=$!
537        sleep 1
538        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
539
540        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
541        kill -USR1 $close_pid
542        cancel_lru_locks mdc
543        wait $close_pid || return 1
544        wait $open_pid || return 2
545        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
546
547        $CHECKSTAT -t file $DIR/$tdir-1/f || return 3
548        $CHECKSTAT -t file $DIR/$tdir-2/f || return 4
549
550        rm -rf $DIR/$tdir-*
551 }
552 run_test 21a "drop close request while close and open are both in flight"
553
554 test_21b() {
555        mkdir -p $DIR/$tdir-1
556        mkdir -p $DIR/$tdir-2
557        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
558        close_pid=$!
559
560        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
561        mcreate $DIR/$tdir-2/f &
562        open_pid=$!
563        sleep 1
564        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
565
566        kill -USR1 $close_pid
567        cancel_lru_locks mdc
568        wait $close_pid || return 1
569        wait $open_pid || return 3
570
571        $CHECKSTAT -t file $DIR/$tdir-1/f || return 4
572        $CHECKSTAT -t file $DIR/$tdir-2/f || return 5
573        rm -rf $DIR/$tdir-*
574 }
575 run_test 21b "drop open request while close and open are both in flight"
576
577 test_21c() {
578        mkdir -p $DIR/$tdir-1
579        mkdir -p $DIR/$tdir-2
580        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
581        close_pid=$!
582
583        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
584        mcreate $DIR/$tdir-2/f &
585        open_pid=$!
586        sleep 3
587        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
588
589        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
590        kill -USR1 $close_pid
591        cancel_lru_locks mdc
592        wait $close_pid || return 1
593        wait $open_pid || return 2
594
595        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
596
597        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
598        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
599        rm -rf $DIR/$tdir-*
600 }
601 run_test 21c "drop both request while close and open are both in flight"
602
603 test_21d() {
604        mkdir -p $DIR/$tdir-1
605        mkdir -p $DIR/$tdir-2
606        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
607        pid=$!
608
609        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000129"
610        $MULTIOP $DIR/$tdir-2/f Oc &
611        sleep 1
612        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
613
614        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
615        kill -USR1 $pid
616        cancel_lru_locks mdc
617        wait $pid || return 1
618        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
619
620        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
621        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
622
623        rm -rf $DIR/$tdir-*
624 }
625 run_test 21d "drop close reply while close and open are both in flight"
626
627 test_21e() {
628        mkdir -p $DIR/$tdir-1
629        mkdir -p $DIR/$tdir-2
630        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
631        pid=$!
632
633        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
634        touch $DIR/$tdir-2/f &
635        sleep 1
636        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
637
638        kill -USR1 $pid
639        cancel_lru_locks mdc
640        wait $pid || return 1
641
642        sleep $TIMEOUT
643        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
644        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
645        rm -rf $DIR/$tdir-*
646 }
647 run_test 21e "drop open reply while close and open are both in flight"
648
649 test_21f() {
650        mkdir -p $DIR/$tdir-1
651        mkdir -p $DIR/$tdir-2
652        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
653        pid=$!
654
655        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
656        touch $DIR/$tdir-2/f &
657        sleep 1
658        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
659
660        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
661        kill -USR1 $pid
662        cancel_lru_locks mdc
663        wait $pid || return 1
664        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
665
666        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
667        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
668        rm -rf $DIR/$tdir-*
669 }
670 run_test 21f "drop both reply while close and open are both in flight"
671
672 test_21g() {
673        mkdir -p $DIR/$tdir-1
674        mkdir -p $DIR/$tdir-2
675        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
676        pid=$!
677
678        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000119"
679        touch $DIR/$tdir-2/f &
680        sleep 1
681        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
682
683        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
684        kill -USR1 $pid
685        cancel_lru_locks mdc
686        wait $pid || return 1
687        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
688
689        $CHECKSTAT -t file $DIR/$tdir-1/f || return 2
690        $CHECKSTAT -t file $DIR/$tdir-2/f || return 3
691        rm -rf $DIR/$tdir-*
692 }
693 run_test 21g "drop open reply and close request while close and open are both in flight"
694
695 test_21h() {
696        mkdir -p $DIR/$tdir-1
697        mkdir -p $DIR/$tdir-2
698        multiop_bg_pause $DIR/$tdir-1/f O_c || return 1
699        pid=$!
700
701        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000107"
702        touch $DIR/$tdir-2/f &
703        touch_pid=$!
704        sleep 1
705        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
706
707        do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000122"
708        cancel_lru_locks mdc
709        kill -USR1 $pid
710        wait $pid || return 1
711        do_facet $SINGLEMDS "lctl set_param fail_loc=0"
712
713        wait $touch_pid || return 2
714
715        $CHECKSTAT -t file $DIR/$tdir-1/f || return 3
716        $CHECKSTAT -t file $DIR/$tdir-2/f || return 4
717        rm -rf $DIR/$tdir-*
718 }
719 run_test 21h "drop open request and close reply while close and open are both in flight"
720
721 # bug 3462 - multiple MDC requests
722 test_22() {
723     f1=$DIR/${tfile}-1
724     f2=$DIR/${tfile}-2
725     
726     do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000115"
727     $MULTIOP $f2 Oc &
728     close_pid=$!
729
730     sleep 1
731     $MULTIOP $f1 msu || return 1
732
733     cancel_lru_locks mdc
734     do_facet $SINGLEMDS "lctl set_param fail_loc=0"
735
736     wait $close_pid || return 2
737     rm -rf $f2 || return 4
738 }
739 run_test 22 "drop close request and do mknod"
740
741 test_23() { #b=4561
742     multiop_bg_pause $DIR/$tfile O_c || return 1
743     pid=$!
744     # give a chance for open
745     sleep 5
746
747     # try the close
748     drop_request "kill -USR1 $pid"
749
750     fail $SINGLEMDS
751     wait $pid || return 1
752     return 0
753 }
754 run_test 23 "client hang when close a file after mds crash"
755
756 test_24a() { # bug 11710 details correct fsync() behavior
757         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
758
759         mkdir -p $DIR/$tdir
760         $LFS setstripe -i 0 -c 1 $DIR/$tdir
761         cancel_lru_locks osc
762         multiop_bg_pause $DIR/$tdir/$tfile Owy_wyc || return 1
763         MULTI_PID=$!
764         ost_evict_client
765         kill -USR1 $MULTI_PID
766         wait $MULTI_PID
767         rc=$?
768         lctl set_param fail_loc=0x0
769         client_reconnect
770         [ $rc -eq 0 ] && error_ignore 5494 "multiop didn't fail fsync: rc $rc" || true
771 }
772 run_test 24a "fsync error (should return error)"
773
774 wait_client_evicted () {
775         local facet=$1
776         local exports=$2
777         local varsvc=${facet}_svc
778
779         wait_update $(facet_active_host $facet) \
780                 "lctl get_param -n *.${!varsvc}.num_exports | cut -d' ' -f2" \
781                 $((exports - 1)) $3
782 }
783
784 test_24b() {
785         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
786
787         dmesg -c > /dev/null
788         mkdir -p $DIR/$tdir
789         lfs setstripe $DIR/$tdir -s 0 -i 0 -c 1
790         cancel_lru_locks osc
791         multiop_bg_pause $DIR/$tdir/$tfile-1 Ow8192_yc ||
792                 error "mulitop Ow8192_yc failed"
793
794         MULTI_PID1=$!
795         multiop_bg_pause $DIR/$tdir/$tfile-2 Ow8192_c ||
796                 error "mulitop Ow8192_c failed"
797
798         MULTI_PID2=$!
799         ost_evict_client
800
801         kill -USR1 $MULTI_PID1
802         wait $MULTI_PID1
803         rc1=$?
804         kill -USR1 $MULTI_PID2
805         wait $MULTI_PID2
806         rc2=$?
807         lctl set_param fail_loc=0x0
808         client_reconnect
809         [ $rc1 -eq 0 -o $rc2 -eq 0 ] &&
810         error_ignore 5494 "multiop didn't fail fsync: $rc1 or close: $rc2" ||
811                 true
812
813         dmesg | grep "dirty page discard:" || \
814                 error "no discarded dirty page found!"
815 }
816 run_test 24b "test dirty page discard due to client eviction"
817
818 test_26a() {      # was test_26 bug 5921 - evict dead exports by pinger
819 # this test can only run from a client on a separate node.
820         remote_ost || { skip "local OST" && return 0; }
821         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
822         remote_mds || { skip "local MDS" && return 0; }
823
824         if [ $(facet_host mgs) = $(facet_host ost1) ]; then
825                 skip "msg and ost1 are at the same node"
826                 return 0
827         fi
828
829         check_timeout || return 1
830
831         local OST_NEXP=$(do_facet ost1 lctl get_param -n obdfilter.${ost1_svc}.num_exports | cut -d' ' -f2)
832
833         echo starting with $OST_NEXP OST exports
834 # OBD_FAIL_PTLRPC_DROP_RPC 0x505
835         do_facet client lctl set_param fail_loc=0x505
836         # evictor takes PING_EVICT_TIMEOUT + 3 * PING_INTERVAL to evict.
837         # But if there's a race to start the evictor from various obds,
838         # the loser might have to wait for the next ping.
839
840         local rc=0
841         wait_client_evicted ost1 $OST_NEXP $((TIMEOUT * 2 + TIMEOUT * 3 / 4))
842         rc=$?
843         do_facet client lctl set_param fail_loc=0x0
844         [ $rc -eq 0 ] || error "client not evicted from OST"
845 }
846 run_test 26a "evict dead exports"
847
848 test_26b() {      # bug 10140 - evict dead exports by pinger
849         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
850
851         if [ $(facet_host mgs) = $(facet_host ost1) ]; then
852                 skip "msg and ost1 are at the same node"
853                 return 0
854         fi
855
856         check_timeout || return 1
857         clients_up
858         zconf_mount `hostname` $MOUNT2 ||
859                 { error "Failed to mount $MOUNT2"; return 2; }
860         sleep 1 # wait connections being established
861
862         local MDS_NEXP=$(do_facet $SINGLEMDS lctl get_param -n mdt.${mds1_svc}.num_exports | cut -d' ' -f2)
863         local OST_NEXP=$(do_facet ost1 lctl get_param -n obdfilter.${ost1_svc}.num_exports | cut -d' ' -f2)
864
865         echo starting with $OST_NEXP OST and $MDS_NEXP MDS exports
866
867         zconf_umount `hostname` $MOUNT2 -f
868
869         # PING_INTERVAL max(obd_timeout / 4, 1U)
870         # PING_EVICT_TIMEOUT (PING_INTERVAL * 6)
871
872         # evictor takes PING_EVICT_TIMEOUT + 3 * PING_INTERVAL to evict.  
873         # But if there's a race to start the evictor from various obds, 
874         # the loser might have to wait for the next ping.
875         # = 9 * PING_INTERVAL + PING_INTERVAL
876         # = 10 PING_INTERVAL = 10 obd_timeout / 4 = 2.5 obd_timeout
877         # let's wait $((TIMEOUT * 3)) # bug 19887
878         local rc=0
879         wait_client_evicted ost1 $OST_NEXP $((TIMEOUT * 3)) || \
880                 error "Client was not evicted by ost" rc=1
881         wait_client_evicted $SINGLEMDS $MDS_NEXP $((TIMEOUT * 3)) || \
882                 error "Client was not evicted by mds"
883 }
884 run_test 26b "evict dead exports"
885
886 test_27() {
887         mkdir -p $DIR/$tdir
888         writemany -q -a $DIR/$tdir/$tfile 0 5 &
889         CLIENT_PID=$!
890         sleep 1
891         local save_FAILURE_MODE=$FAILURE_MODE
892         FAILURE_MODE="SOFT"
893         facet_failover $SINGLEMDS
894 #define OBD_FAIL_OSC_SHUTDOWN            0x407
895         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000407
896         # need to wait for reconnect
897         echo waiting for fail_loc
898         wait_update_facet $SINGLEMDS "lctl get_param -n fail_loc" "-2147482617"
899         facet_failover $SINGLEMDS
900         #no crashes allowed!
901         kill -USR1 $CLIENT_PID
902         wait $CLIENT_PID 
903         true
904         FAILURE_MODE=$save_FAILURE_MODE
905 }
906 run_test 27 "fail LOV while using OSC's"
907
908 test_28() {      # bug 6086 - error adding new clients
909         do_facet client mcreate $DIR/$tfile       || return 1
910         drop_bl_callback "chmod 0777 $DIR/$tfile" ||echo "evicted as expected"
911         #define OBD_FAIL_MDS_CLIENT_ADD 0x12f
912         do_facet $SINGLEMDS "lctl set_param fail_loc=0x8000012f"
913         # fail once (evicted), reconnect fail (fail_loc), ok
914         client_up || (sleep 10; client_up) || (sleep 10; client_up) || error "reconnect failed"
915         rm -f $DIR/$tfile
916         fail $SINGLEMDS         # verify MDS last_rcvd can be loaded
917 }
918 run_test 28 "handle error adding new clients (bug 6086)"
919
920 test_29a() { # bug 22273 - error adding new clients
921         #define OBD_FAIL_TGT_CLIENT_ADD 0x711
922         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000711"
923         # fail abort so client will be new again
924         fail_abort $SINGLEMDS
925         client_up || error "reconnect failed"
926         wait_osc_import_state $SINGLEMDS ost FULL
927         return 0
928 }
929 run_test 29a "error adding new clients doesn't cause LBUG (bug 22273)"
930
931 test_29b() { # bug 22273 - error adding new clients
932         #define OBD_FAIL_TGT_CLIENT_ADD 0x711
933         do_facet ost1 "lctl set_param fail_loc=0x80000711"
934         # fail abort so client will be new again
935         fail_abort ost1
936         client_up || error "reconnect failed"
937         return 0
938 }
939 run_test 29b "error adding new clients doesn't cause LBUG (bug 22273)"
940
941 test_50() {
942         mkdir -p $DIR/$tdir
943         # put a load of file creates/writes/deletes
944         writemany -q $DIR/$tdir/$tfile 0 5 &
945         CLIENT_PID=$!
946         echo writemany pid $CLIENT_PID
947         sleep 10
948         FAILURE_MODE="SOFT"
949         fail $SINGLEMDS
950         # wait for client to reconnect to MDS
951         sleep 60
952         fail $SINGLEMDS
953         sleep 60
954         fail $SINGLEMDS
955         # client process should see no problems even though MDS went down
956         sleep $TIMEOUT
957         kill -USR1 $CLIENT_PID
958         wait $CLIENT_PID 
959         rc=$?
960         echo writemany returned $rc
961         #these may fail because of eviction due to slow AST response.
962         [ $rc -eq 0 ] || error_ignore 13652 "writemany returned rc $rc" || true
963 }
964 run_test 50 "failover MDS under load"
965
966 test_51() {
967         #define OBD_FAIL_MDS_SYNC_CAPA_SL                    0x1310
968         do_facet ost1 lctl set_param fail_loc=0x00001310
969
970         mkdir -p $DIR/$tdir
971         # put a load of file creates/writes/deletes
972         writemany -q $DIR/$tdir/$tfile 0 5 &
973         CLIENT_PID=$!
974         sleep 1
975         FAILURE_MODE="SOFT"
976         facet_failover $SINGLEMDS
977         # failover at various points during recovery
978         SEQ="1 5 10 $(seq $TIMEOUT 5 $(($TIMEOUT+10)))"
979         echo will failover at $SEQ
980         for i in $SEQ
981         do
982                 #echo failover in $i sec
983                 log "test_$testnum: failover in $i sec"
984                 sleep $i
985                 facet_failover $SINGLEMDS
986         done
987         # client process should see no problems even though MDS went down
988         # and recovery was interrupted
989         sleep $TIMEOUT
990         kill -USR1 $CLIENT_PID
991         wait $CLIENT_PID 
992         rc=$?
993         echo writemany returned $rc
994         [ $rc -eq 0 ] || error_ignore 13652 "writemany returned rc $rc" || true
995 }
996 run_test 51 "failover MDS during recovery"
997
998 test_52_guts() {
999         do_facet client "mkdir -p $DIR/$tdir"
1000         do_facet client "writemany -q -a $DIR/$tdir/$tfile 300 5" &
1001         CLIENT_PID=$!
1002         echo writemany pid $CLIENT_PID
1003         sleep 10
1004         FAILURE_MODE="SOFT"
1005         fail ost1
1006         rc=0
1007         wait $CLIENT_PID || rc=$?
1008         # active client process should see an EIO for down OST
1009         [ $rc -eq 5 ] && { echo "writemany correctly failed $rc" && return 0; }
1010         # but timing or failover setup may allow success
1011         [ $rc -eq 0 ] && { echo "writemany succeeded" && return 0; }
1012         echo "writemany returned $rc"
1013         return $rc
1014 }
1015
1016 test_52() {
1017         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1018
1019         mkdir -p $DIR/$tdir
1020         test_52_guts
1021         rc=$?
1022         [ $rc -ne 0 ] && { return $rc; }
1023         # wait for client to reconnect to OST
1024         sleep 30
1025         test_52_guts
1026         rc=$?
1027         [ $rc -ne 0 ] && { return $rc; }
1028         sleep 30
1029         test_52_guts
1030         rc=$?
1031         client_reconnect
1032         #return $rc
1033 }
1034 run_test 52 "failover OST under load"
1035
1036 # test of open reconstruct
1037 test_53() {
1038         touch $DIR/$tfile
1039         drop_ldlm_reply "openfile -f O_RDWR:O_CREAT -m 0755 $DIR/$tfile" ||\
1040                 return 2
1041 }
1042 run_test 53 "touch: drop rep"
1043
1044 test_54() {
1045         zconf_mount `hostname` $MOUNT2
1046         touch $DIR/$tfile
1047         touch $DIR2/$tfile.1
1048         sleep 10
1049         cat $DIR2/$tfile.missing # save transno = 0, rc != 0 into last_rcvd
1050         fail $SINGLEMDS
1051         umount $MOUNT2
1052         ERROR=`dmesg | egrep "(test 54|went back in time)" | tail -n1 | grep "went back in time"`
1053         [ x"$ERROR" == x ] || error "back in time occured"
1054 }
1055 run_test 54 "back in time"
1056
1057 # bug 11330 - liblustre application death during I/O locks up OST
1058 test_55() {
1059         remote_ost_nodsh && skip "remote OST with nodsh" && return 0
1060
1061         mkdir -p $DIR/$tdir
1062
1063         # Minimum pass speed is 2MBps
1064         local ddtimeout=64
1065         # LU-2887/LU-3089 - set min pass speed to 500KBps
1066         [ "$(facet_fstype ost1)" = "zfs" ] && ddtimeout=256
1067
1068         # first dd should be finished quickly
1069         $LFS setstripe -c 1 -i 0 $DIR/$tdir/$tfile-1
1070         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=32M count=4 &
1071         DDPID=$!
1072         count=0
1073         echo  "step1: testing ......"
1074         while kill -0 $DDPID 2> /dev/null; do
1075                 let count++
1076                 if [ $count -gt $ddtimeout ]; then
1077                         error "dd should be finished!"
1078                 fi
1079                 sleep 1
1080         done
1081         echo "(dd_pid=$DDPID, time=$count)successful"
1082
1083         $LFS setstripe -c 1 -i 0 $DIR/$tdir/$tfile-2
1084         #define OBD_FAIL_OST_DROP_REQ            0x21d
1085         do_facet ost1 lctl set_param fail_loc=0x0000021d
1086         # second dd will be never finished
1087         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=32M count=4 &
1088         DDPID=$!
1089         count=0
1090         echo  "step2: testing ......"
1091         while [ $count -le $ddtimeout ]; do
1092                 if ! kill -0 $DDPID 2> /dev/null; then
1093                         ls -l $DIR/$tdir
1094                         error "dd shouldn't be finished! (time=$count)"
1095                 fi
1096                 let count++
1097                 sleep 1
1098         done
1099         echo "(dd_pid=$DDPID, time=$count)successful"
1100
1101         #Recover fail_loc and dd will finish soon
1102         do_facet ost1 lctl set_param fail_loc=0
1103         count=0
1104         echo  "step3: testing ......"
1105         while kill -0 $DDPID 2> /dev/null; do
1106                 let count++
1107                 if [ $count -gt $((ddtimeout + 440)) ]; then
1108                         error "dd should be finished!"
1109                 fi
1110                 sleep 1
1111         done
1112         echo "(dd_pid=$DDPID, time=$count)successful"
1113
1114         rm -rf $DIR/$tdir
1115 }
1116 run_test 55 "ost_brw_read/write drops timed-out read/write request"
1117
1118 test_56() { # b=11277
1119 #define OBD_FAIL_MDS_RESEND      0x136
1120         touch $DIR/$tfile
1121         do_facet $SINGLEMDS "lctl set_param fail_loc=0x80000136"
1122         stat $DIR/$tfile
1123         do_facet $SINGLEMDS "lctl set_param fail_loc=0"
1124         rm -f $DIR/$tfile
1125 }
1126 run_test 56 "do not allow reconnect to busy exports"
1127
1128 test_57_helper() {
1129         # no oscs means no client or mdt 
1130         while lctl get_param osc.*.* > /dev/null 2>&1; do
1131                 : # loop until proc file is removed
1132         done
1133 }
1134
1135 test_57() { # bug 10866
1136         test_57_helper &
1137         pid=$!
1138         sleep 1
1139 #define OBD_FAIL_LPROC_REMOVE            0xB00
1140         lctl set_param fail_loc=0x80000B00
1141         zconf_umount `hostname` $DIR
1142         lctl set_param fail_loc=0x80000B00
1143         fail_abort $SINGLEMDS
1144         kill -9 $pid
1145         lctl set_param fail_loc=0
1146         mount_client $DIR
1147         do_facet client "df $DIR"
1148 }
1149 run_test 57 "read procfs entries causes kernel crash"
1150
1151 test_58() { # bug 11546
1152 #define OBD_FAIL_MDC_ENQUEUE_PAUSE        0x801
1153         touch $DIR/$tfile
1154         ls -la $DIR/$tfile
1155         lctl set_param fail_loc=0x80000801
1156         cp $DIR/$tfile /dev/null &
1157         pid=$!
1158         sleep 1
1159         lctl set_param fail_loc=0
1160         drop_bl_callback rm -f $DIR/$tfile
1161         wait $pid
1162         # the first 'df' could tigger the eviction caused by
1163         # 'drop_bl_callback', and it's normal case.
1164         # but the next 'df' should return successfully.
1165         do_facet client "df $DIR" || do_facet client "df $DIR"
1166 }
1167 run_test 58 "Eviction in the middle of open RPC reply processing"
1168
1169 test_59() { # bug 10589
1170         zconf_mount `hostname` $MOUNT2 || error "Failed to mount $MOUNT2"
1171         echo $DIR2 | grep -q $MOUNT2 || error "DIR2 is not set properly: $DIR2"
1172 #define OBD_FAIL_LDLM_CANCEL_EVICT_RACE  0x311
1173         lctl set_param fail_loc=0x311
1174         writes=$(LANG=C dd if=/dev/zero of=$DIR2/$tfile count=1 2>&1)
1175         [ $? = 0 ] || error "dd write failed"
1176         writes=$(echo $writes | awk  -F '+' '/out/ {print $1}')
1177         lctl set_param fail_loc=0
1178         sync
1179         zconf_umount `hostname` $MOUNT2 -f
1180         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1)
1181         [ $? = 0 ] || error "dd read failed"
1182         reads=$(echo $reads | awk -F '+' '/in/ {print $1}')
1183         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
1184 }
1185 run_test 59 "Read cancel race on client eviction"
1186
1187 err17935 () {
1188     # we assume that all md changes are in the MDT0 changelog
1189     if [ $MDSCOUNT -gt 1 ]; then
1190         error_ignore 17935 $*
1191     else
1192         error $*
1193     fi
1194 }
1195
1196 test_60() {
1197         MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
1198             awk '{gsub(/_UUID/,""); print $1}' | head -1)
1199
1200         NUM_FILES=15000
1201         mkdir -p $DIR/$tdir
1202
1203         # Register (and start) changelog
1204         USER=$(do_facet $SINGLEMDS lctl --device $MDT0 changelog_register -n)
1205         echo "Registered as $MDT0 changelog user $USER"
1206
1207         # Generate a large number of changelog entries
1208         createmany -o $DIR/$tdir/$tfile $NUM_FILES
1209         sync
1210         sleep 5
1211
1212         # Unlink files in the background
1213         unlinkmany $DIR/$tdir/$tfile $NUM_FILES &
1214         CLIENT_PID=$!
1215         sleep 1
1216
1217         # Failover the MDS while unlinks are happening
1218         facet_failover $SINGLEMDS
1219
1220         # Wait for unlinkmany to finish
1221         wait $CLIENT_PID
1222
1223         # Check if all the create/unlink events were recorded
1224         # in the changelog
1225         $LFS changelog $MDT0 >> $DIR/$tdir/changelog
1226         local cl_count=$(grep UNLNK $DIR/$tdir/changelog | wc -l)
1227         echo "$cl_count unlinks in $MDT0 changelog"
1228
1229         do_facet $SINGLEMDS lctl --device $MDT0 changelog_deregister $USER
1230         USERS=$(( $(do_facet $SINGLEMDS lctl get_param -n \
1231             mdd.$MDT0.changelog_users | wc -l) - 2 ))
1232         if [ $USERS -eq 0 ]; then
1233             [ $cl_count -eq $NUM_FILES ] || \
1234                 err17935 "Recorded ${cl_count} unlinks out of $NUM_FILES"
1235             # Also make sure we can clear large changelogs
1236             cl_count=$($LFS changelog $FSNAME | wc -l)
1237             [ $cl_count -le 2 ] || \
1238                 error "Changelog not empty: $cl_count entries"
1239         else
1240             # If there are other users, there may be other unlinks in the log
1241             [ $cl_count -ge $NUM_FILES ] || \
1242                 err17935 "Recorded ${cl_count} unlinks out of $NUM_FILES"
1243             echo "$USERS other changelog users; can't verify clear"
1244         fi
1245 }
1246 run_test 60 "Add Changelog entries during MDS failover"
1247
1248 test_61()
1249 {
1250         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1251         mdtosc=${mdtosc/-MDT*/-MDT\*}
1252         local cflags="osc.$mdtosc.connect_flags"
1253         do_facet $SINGLEMDS "lctl get_param -n $cflags" |grep -q skip_orphan
1254         [ $? -ne 0 ] && skip "don't have skip orphan feature" && return
1255
1256         mkdir -p $DIR/$tdir || error "mkdir dir $DIR/$tdir failed"
1257         # Set the default stripe of $DIR/$tdir to put the files to ost1
1258         $LFS setstripe -c 1 -i 0 $DIR/$tdir
1259
1260         replay_barrier $SINGLEMDS
1261         createmany -o $DIR/$tdir/$tfile-%d 10 
1262         local oid=`do_facet ost1 "lctl get_param -n obdfilter.${ost1_svc}.last_id"`
1263
1264         fail_abort $SINGLEMDS
1265         
1266         touch $DIR/$tdir/$tfile
1267         local id=`$LFS getstripe $DIR/$tdir/$tfile | awk '$1 == 0 { print $2 }'`
1268         [ $id -le $oid ] && error "the orphan objid was reused, failed"
1269
1270         # Cleanup
1271         rm -rf $DIR/$tdir
1272 }
1273 run_test 61 "Verify to not reuse orphan objects - bug 17025"
1274
1275 # test_62 as seen it b2_1 please do not reuse test_62
1276 #test_62()
1277 #{
1278 #       zconf_umount `hostname` $DIR
1279 #       #define OBD_FAIL_PTLRPC_DELAY_IMP_FULL   0x516
1280 #       lctl set_param fail_loc=0x516
1281 #       mount_client $DIR
1282 #}
1283 #run_test 62 "Verify connection flags race - bug LU-1716"
1284
1285 check_cli_ir_state()
1286 {
1287         local NODE=${1:-$HOSTNAME}
1288         local st
1289         st=$(do_node $NODE "lctl get_param mgc.*.ir_state |
1290                             awk '/imperative_recovery:/ { print \\\$2}'")
1291         [ $st != ON -o $st != OFF -o $st != ENABLED -o $st != DISABLED ] ||
1292                 error "Error state $st, must be ENABLED or DISABLED"
1293         echo -n $st
1294 }
1295
1296 check_target_ir_state()
1297 {
1298         local target=${1}
1299         local name=${target}_svc
1300         local recovery_proc=obdfilter.${!name}.recovery_status
1301         local st
1302
1303         st=$(do_facet $target "lctl get_param -n $recovery_proc |
1304                                awk '/IR:/{ print \\\$2}'")
1305         [ $st != ON -o $st != OFF -o $st != ENABLED -o $st != DISABLED ] ||
1306                 error "Error state $st, must be ENABLED or DISABLED"
1307         echo -n $st
1308 }
1309
1310 set_ir_status()
1311 {
1312         do_facet mgs lctl set_param -n mgs.MGS.live.$FSNAME="state=$1"
1313 }
1314
1315 get_ir_status()
1316 {
1317         local state=$(do_facet mgs "lctl get_param -n mgs.MGS.live.$FSNAME |
1318                                     awk '/state:/{ print \\\$2 }'")
1319         echo -n ${state/,/}
1320 }
1321
1322 nidtbl_version_mgs()
1323 {
1324         local ver=$(do_facet mgs "lctl get_param -n mgs.MGS.live.$FSNAME |
1325                                   awk '/nidtbl_version:/{ print \\\$2 }'")
1326         echo -n $ver
1327 }
1328
1329 # nidtbl_version_client <mds1|client> [node]
1330 nidtbl_version_client()
1331 {
1332         local cli=$1
1333         local node=${2:-$HOSTNAME}
1334
1335         if [ X$cli = Xclient ]; then
1336                 cli=$FSNAME-client
1337         else
1338                 local obdtype=${cli/%[0-9]*/}
1339                 [ $obdtype != mds ] && error "wrong parameters $cli"
1340
1341                 node=$(facet_active_host $cli)
1342                 local t=${cli}_svc
1343                 cli=${!t}
1344         fi
1345
1346         local vers=$(do_node $node "lctl get_param -n mgc.*.ir_state" |
1347                      awk "/$cli/{print \$6}" |sort -u)
1348
1349         # in case there are multiple mounts on the client node
1350         local arr=($vers)
1351         [ ${#arr[@]} -ne 1 ] && error "versions on client node mismatch"
1352         echo -n $vers
1353 }
1354
1355 nidtbl_versions_match()
1356 {
1357         [ $(nidtbl_version_mgs) -eq $(nidtbl_version_client ${1:-client}) ]
1358 }
1359
1360 target_instance_match()
1361 {
1362         local srv=$1
1363         local obdtype
1364         local cliname
1365
1366         obdtype=${srv/%[0-9]*/}
1367         case $obdtype in
1368         mds)
1369                 obdname="mdt"
1370                 cliname="mdc"
1371                 ;;
1372         ost)
1373                 obdname="obdfilter"
1374                 cliname="osc"
1375                 ;;
1376         *)
1377                 error "invalid target type" $srv
1378                 return 1
1379                 ;;
1380         esac
1381
1382         local target=${srv}_svc
1383         local si=$(do_facet $srv lctl get_param -n $obdname.${!target}.instance)
1384         local ci=$(lctl get_param -n $cliname.${!target}-${cliname}-*.import | \
1385                   awk '/instance/{ print $2 }' |head -1)
1386
1387         return $([ $si -eq $ci ])
1388 }
1389
1390 test_100()
1391 {
1392         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1393                 { skip "MGS without IR support"; return 0; }
1394
1395         # MDT was just restarted in the previous test, make sure everything
1396         # is all set.
1397         local cnt=30
1398         while [ $cnt -gt 0 ]; do
1399                 nidtbl_versions_match && break
1400                 sleep 1
1401                 cnt=$((cnt - 1))
1402         done
1403
1404         # disable IR
1405         set_ir_status disabled
1406
1407         local prev_ver=$(nidtbl_version_client client)
1408
1409         local saved_FAILURE_MODE=$FAILURE_MODE
1410         [ $(facet_host mgs) = $(facet_host ost1) ] && FAILURE_MODE="SOFT"
1411         fail ost1
1412
1413         # valid check
1414         [ $(nidtbl_version_client client) -eq $prev_ver ] ||
1415                 error "version must not change due to IR disabled"
1416         target_instance_match ost1 || error "instance mismatch"
1417
1418         # restore env
1419         set_ir_status full
1420         FAILURE_MODE=$saved_FAILURE_MODE
1421 }
1422 run_test 100 "IR: Make sure normal recovery still works w/o IR"
1423
1424 test_101()
1425 {
1426         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1427                 { skip "MGS without IR support"; return 0; }
1428
1429         set_ir_status full
1430
1431         local OST1_IMP=$(get_osc_import_name client ost1)
1432
1433         # disable pinger recovery
1434         lctl set_param -n osc.$OST1_IMP.pinger_recov=0
1435
1436         fail ost1
1437
1438         target_instance_match ost1 || error "instance mismatch"
1439         nidtbl_versions_match || error "version must match"
1440
1441         lctl set_param -n osc.$OST1_IMP.pinger_recov=1
1442 }
1443 run_test 101 "IR: Make sure IR works w/o normal recovery"
1444
1445 test_102()
1446 {
1447         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1448                 { skip "MGS without IR support"; return 0; }
1449
1450         local clients=${CLIENTS:-$HOSTNAME}
1451         local old_version
1452         local new_version
1453         local mgsdev=mgs
1454
1455         set_ir_status full
1456
1457         # let's have a new nidtbl version
1458         fail ost1
1459
1460         # sleep for a while so that clients can see the failure of ost
1461         # it must be MGC_TIMEOUT_MIN_SECONDS + MGC_TIMEOUT_RAND_CENTISEC.
1462         # int mgc_request.c:
1463         # define MGC_TIMEOUT_MIN_SECONDS   5
1464         # define MGC_TIMEOUT_RAND_CENTISEC 0x1ff /* ~500 *
1465         local count=30  # 20 seconds at most
1466         while [ $count -gt 0 ]; do
1467                 nidtbl_versions_match && break
1468                 sleep 1
1469                 count=$((count-1))
1470         done
1471
1472         nidtbl_versions_match || error "nidtbl mismatch"
1473
1474         # get the version #
1475         old_version=$(nidtbl_version_client client)
1476
1477         zconf_umount_clients $clients $MOUNT || error "Cannot umount client"
1478
1479         # restart mgs
1480         combined_mgs_mds && mgsdev=mds1
1481         remount_facet $mgsdev
1482         fail ost1
1483
1484         zconf_mount_clients $clients $MOUNT || error "Cannot mount client"
1485
1486         # check new version
1487         new_version=$(nidtbl_version_client client)
1488         [ $new_version -lt $old_version ] &&
1489                 error "nidtbl version wrong after mgs restarts"
1490         return 0
1491 }
1492 run_test 102 "IR: New client gets updated nidtbl after MGS restart"
1493
1494 test_103()
1495 {
1496         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1497                 { skip "MGS without IR support"; return 0; }
1498
1499         combined_mgs_mds && skip "mgs and mds on the same target" && return 0
1500
1501         # workaround solution to generate config log on the mds
1502         remount_facet mds1
1503
1504         stop mgs
1505         stop mds1
1506
1507         # We need this test because mds is like a client in IR context.
1508         start mds1 $MDSDEV1 || error "MDS should start w/o mgs"
1509
1510         # start mgs and remount mds w/ ir
1511         start mgs $MGSDEV
1512         clients_up
1513
1514         # remount client so that fsdb will be created on the MGS
1515         umount_client $MOUNT || error "umount failed"
1516         mount_client $MOUNT || error "mount failed"
1517
1518         # sleep 30 seconds so the MDS has a chance to detect MGS restarting
1519         local count=30
1520         while [ $count -gt 0 ]; do
1521                 [ $(nidtbl_version_client mds1) -ne 0 ] && break
1522                 sleep 1
1523                 count=$((count-1))
1524         done
1525
1526         # after a while, mds should be able to reconnect to mgs and fetch
1527         # up-to-date nidtbl version
1528         nidtbl_versions_match mds1 || error "mds nidtbl mismatch"
1529
1530         # reset everything
1531         set_ir_status full
1532 }
1533 run_test 103 "IR: MDS can start w/o MGS and get updated nidtbl later"
1534
1535 test_104()
1536 {
1537         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1538                 { skip "MGS without IR support"; return 0; }
1539
1540         set_ir_status full
1541
1542         stop ost1
1543         start ost1 $(ostdevname 1) "$OST_MOUNT_OPTS -onoir" ||
1544                 error "OST1 cannot start"
1545         clients_up
1546
1547         local ir_state=$(check_target_ir_state ost1)
1548         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1549                 error "ir status on ost1 should be DISABLED"
1550 }
1551 run_test 104 "IR: ost can disable IR voluntarily"
1552
1553 test_105()
1554 {
1555         [ -z "$RCLIENTS" ] && skip "Needs multiple clients" && return 0
1556         do_facet mgs $LCTL list_param mgs.*.ir_timeout ||
1557                 { skip "MGS without IR support"; return 0; }
1558
1559         set_ir_status full
1560
1561         # get one of the clients from client list
1562         local rcli=$(echo $RCLIENTS |cut -d' ' -f 1)
1563
1564         local old_MOUNTOPT=$MOUNTOPT
1565         MOUNTOPT=${MOUNTOPT},noir
1566         zconf_umount $rcli $MOUNT || error "umount failed"
1567         zconf_mount $rcli $MOUNT || error "mount failed"
1568
1569         # make sure lustre mount at $rcli disabling IR
1570         local ir_state=$(check_cli_ir_state $rcli)
1571         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1572                 error "IR state must be DISABLED at $rcli"
1573
1574         # Since the client just mounted, its last_rcvd entry is not on disk.
1575         # Send an RPC so exp_need_sync forces last_rcvd to commit this export
1576         # so the client can reconnect during OST recovery (LU-924, LU-1582)
1577         $SETSTRIPE -i 0 $DIR/$tfile
1578         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 conv=sync
1579
1580         # make sure MGS's state is Partial
1581         [ $(get_ir_status) = "partial" ] || error "MGS IR state must be partial"
1582
1583         fail ost1
1584         # make sure IR on ost1 is DISABLED
1585         local ir_state=$(check_target_ir_state ost1)
1586         [ $ir_state = "DISABLED" -o $ir_state = "OFF" ] ||
1587                 error "IR status on ost1 should be DISABLED"
1588
1589         # restore it
1590         MOUNTOPT=$old_MOUNTOPT
1591         zconf_umount $rcli $MOUNT || error "umount failed"
1592         zconf_mount $rcli $MOUNT || error "mount failed"
1593
1594         # make sure MGS's state is full
1595         [ $(get_ir_status) = "full" ] || error "MGS IR status must be full"
1596
1597         fail ost1
1598         # make sure IR on ost1 is ENABLED
1599         local ir_state=$(check_target_ir_state ost1)
1600         [ $ir_state = "ENABLED" -o $ir_state = "ON" ] ||
1601                 error "IR status on ost1 should be ENABLED"
1602
1603         return 0
1604 }
1605 run_test 105 "IR: NON IR clients support"
1606
1607 cleanup_106() {
1608         trap 0
1609         umount_client $DIR2
1610         debugrestore
1611 }
1612
1613 test_106() { # LU-1789
1614         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.50) ]] ||
1615                 { skip "Need MDS version at least 2.3.50"; return 0; }
1616
1617 #define OBD_FAIL_MDC_LIGHTWEIGHT         0x805
1618         $LCTL set_param fail_loc=0x805
1619
1620         debugsave
1621         trap cleanup_106 EXIT
1622
1623         # enable lightweight flag on mdc connection
1624         mount_client $DIR2
1625
1626         local MDS_NEXP=$(do_facet $SINGLEMDS \
1627                          lctl get_param -n mdt.${mds1_svc}.num_exports |
1628                          cut -d' ' -f2)
1629         $LCTL set_param fail_loc=0
1630
1631         touch $DIR2/$tfile || error "failed to create empty file"
1632         replay_barrier $SINGLEMDS
1633
1634         $LCTL set_param debug=console
1635         $LCTL clear
1636         facet_failover $SINGLEMDS
1637
1638         # lightweight connection must be evicted
1639         touch -c $DIR2/$tfile || true
1640         $LCTL dk $TMP/lustre-log-$TESTNAME.log
1641         evicted=`awk '/This client was evicted by .*MDT0000/ {
1642                                       print;
1643                       }' $TMP/lustre-log-$TESTNAME.log`
1644         [ -z "$evicted" ] && error "lightweight client not evicted by mds"
1645
1646         # and all operations performed by lightweight client should be
1647         # synchronous, so the file created before mds restart should be there
1648         $CHECKSTAT -t file $DIR/$tfile || error "file not present"
1649         rm -f $DIR/$tfile
1650
1651         cleanup_106
1652 }
1653 run_test 106 "lightweight connection support"
1654
1655 test_107 () {
1656         local CLIENT_PID
1657         local close_pid
1658
1659         mkdir -p $DIR/$tdir
1660         # OBD_FAIL_MDS_REINT_NET_REP   0x119
1661         do_facet $SINGLEMDS lctl set_param fail_loc=0x119
1662         multiop $DIR/$tdir D_c &
1663         close_pid=$!
1664         mkdir $DIR/$tdir/dir_106 &
1665         CLIENT_PID=$!
1666         do_facet $SINGLEMDS lctl set_param fail_loc=0
1667         fail $SINGLEMDS
1668
1669         wait $CLIENT_PID || rc=$?
1670         checkstat -t dir $DIR/$tdir/dir_106 || return 1
1671
1672         kill -USR1 $close_pid
1673         wait $close_pid || return 2
1674
1675         return $rc
1676 }
1677 run_test 107 "drop reint reply, then restart MDT"
1678
1679 test_110a () {
1680         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1681         local remote_dir=$DIR/$tdir/remote_dir
1682         local MDTIDX=1
1683
1684         mkdir -p $DIR/$tdir
1685         drop_request "$LFS mkdir -i $MDTIDX $remote_dir" ||
1686                                         error "lfs mkdir failed"
1687         local diridx=$($GETSTRIPE -M $remote_dir)
1688         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1689
1690         rm -rf $DIR/$tdir || error "rmdir failed"
1691 }
1692 run_test 110a "create remote directory: drop client req"
1693
1694 test_110b () {
1695         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1696         local remote_dir=$DIR/$tdir/remote_dir
1697         local MDTIDX=1
1698
1699         mkdir -p $DIR/$tdir
1700         drop_reint_reply "$LFS mkdir -i $MDTIDX $remote_dir" ||
1701                                         error "lfs mkdir failed"
1702
1703         diridx=$($GETSTRIPE -M $remote_dir)
1704         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1705
1706         rm -rf $DIR/$tdir || error "rmdir failed"
1707 }
1708 run_test 110b "create remote directory: drop Master rep"
1709
1710 test_110c () {
1711         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1712         local remote_dir=$DIR/$tdir/remote_dir
1713         local MDTIDX=1
1714
1715         mkdir -p $DIR/$tdir
1716         drop_update_reply $((MDTIDX + 1)) "$LFS mkdir -i $MDTIDX $remote_dir" ||
1717                                                 error "lfs mkdir failed"
1718
1719         diridx=$($GETSTRIPE -M $remote_dir)
1720         [ $diridx -eq $MDTIDX ] || error "$diridx != $MDTIDX"
1721
1722         rm -rf $DIR/$tdir || error "rmdir failed"
1723 }
1724 run_test 110c "create remote directory: drop update rep on slave MDT"
1725
1726 test_110d () {
1727         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1728         local remote_dir=$DIR/$tdir/remote_dir
1729         local MDTIDX=1
1730
1731         mkdir -p $DIR/$tdir
1732         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
1733
1734         drop_request "rm -rf $remote_dir" || error "rm remote dir failed"
1735
1736         rm -rf $DIR/$tdir || error "rmdir failed"
1737
1738         return 0
1739 }
1740 run_test 110d "remove remote directory: drop client req"
1741
1742 test_110e () {
1743         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1744         local remote_dir=$DIR/$tdir/remote_dir
1745         local MDTIDX=1
1746
1747         mkdir -p $DIR/$tdir
1748         $LFS mkdir -i $MDTIDX $remote_dir  || error "lfs mkdir failed"
1749         drop_reint_reply "rm -rf $remote_dir" || error "rm remote dir failed"
1750
1751         rm -rf $DIR/$tdir || error "rmdir failed"
1752
1753         return 0
1754 }
1755 run_test 110e "remove remote directory: drop master rep"
1756
1757 test_110f () {
1758         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return 0
1759         local remote_dir=$DIR/$tdir/remote_dir
1760         local MDTIDX=1
1761
1762         mkdir -p $DIR/$tdir
1763         $LFS mkdir -i $MDTIDX $remote_dir || error "lfs mkdir failed"
1764         drop_update_reply $MDTIDX "rm -rf $remote_dir" ||
1765                                         error "rm remote dir failed"
1766
1767         rm -rf $DIR/$tdir || error "rmdir failed"
1768 }
1769 run_test 110f "remove remote directory: drop slave rep"
1770
1771 # LU-2844 mdt prepare fail should not cause umount oops
1772 test_111 ()
1773 {
1774         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.62) ]] ||
1775                 { skip "Need MDS version at least 2.3.62"; return 0; }
1776
1777         local mdsdev=$(mdsdevname ${SINGLEMDS//mds/})
1778 #define OBD_FAIL_MDS_CHANGELOG_INIT 0x151
1779         do_facet $SINGLEMDS lctl set_param fail_loc=0x151
1780         stop $SINGLEMDS || error "stop MDS failed"
1781         start $SINGLEMDS $mdsdev && error "start MDS should fail"
1782         do_facet $SINGLEMDS lctl set_param fail_loc=0
1783         start $SINGLEMDS $mdsdev || error "start MDS failed"
1784 }
1785 run_test 111 "mdd setup fail should not cause umount oops"
1786
1787 complete $SECONDS
1788 check_and_cleanup_lustre
1789 exit_status