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