Whamcloud - gitweb
LU-15358 tests: Variable incorrectly defined under sanityn
[fs/lustre-release.git] / lustre / tests / sanityn.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6
7 SIZE=${SIZE:-40960}
8 OPENFILE=${OPENFILE:-openfile}
9 OPENUNLINK=${OPENUNLINK:-openunlink}
10 export TMP=${TMP:-/tmp}
11 MOUNT_2=${MOUNT_2:-"yes"}
12 CHECK_GRANT=${CHECK_GRANT:-"yes"}
13 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
14
15 LUSTRE=${LUSTRE:-$(dirname $0)/..}
16 . $LUSTRE/tests/test-framework.sh
17 init_test_env $@
18 init_logging
19
20 ALWAYS_EXCEPT="$SANITYN_EXCEPT "
21 # bug number for skipped test:  LU-7105
22 ALWAYS_EXCEPT+="                28 "
23 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
24
25 # skip tests for PPC until they are fixed
26 if [[ $(uname -m) = ppc64 ]]; then
27         # bug number:    LU-11597 LU-11787
28         ALWAYS_EXCEPT+=" 16a      71a"
29 fi
30
31 if [ $mds1_FSTYPE = "zfs" ]; then
32         # LU-2829 / LU-2887 - make allowances for ZFS slowness
33         TEST33_NFILES=${TEST33_NFILES:-1000}
34 fi
35
36 #                                  23   (min)"
37 [ "$SLOW" = "no" ] && EXCEPT_SLOW="33a"
38
39 build_test_filter
40
41 FAIL_ON_ERROR=false
42
43 SETUP=${SETUP:-:}
44 TRACE=${TRACE:-""}
45
46 check_and_setup_lustre
47
48 OSC=${OSC:-"osc"}
49
50 assert_DIR
51 rm -rf $DIR1/[df][0-9]* $DIR1/lnk $DIR/[df].${TESTSUITE}*
52
53 SAMPLE_FILE=$TMP/$(basename $0 .sh).junk
54 dd if=/dev/urandom of=$SAMPLE_FILE bs=1M count=1
55
56 # $RUNAS_ID may get set incorrectly somewhere else
57 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
58
59 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
60
61 test_1() {
62         touch $DIR1/$tfile
63         [ -f $DIR2/$tfile ] || error "Check create"
64         chmod 777 $DIR2/$tfile
65         $CHECKSTAT -t file -p 0777 $DIR1/$tfile ||
66                 error "Check attribute update for 0777"
67
68         chmod a-x $DIR2/$tfile
69         $CHECKSTAT -t file -p 0666 $DIR1/$tfile ||
70                 error "Check attribute update for 0666"
71
72         rm $DIR2/$tfile
73         $CHECKSTAT -a $DIR1/$tfile ||
74                 error "Check unlink - removes file on other mountpoint"
75 }
76 run_test 1 "Check attribute updates on 2 mount points"
77
78 test_2a() {
79         touch $DIR1/f2a
80         ls -l $DIR2/f2a
81         chmod 777 $DIR2/f2a
82         $CHECKSTAT -t file -p 0777 $DIR1/f2a ||
83                 error "Either not file type or perms not 0777"
84 }
85 run_test 2a "check cached attribute updates on 2 mtpt's ========"
86
87 test_2b() {
88         touch $DIR1/f2b
89         ls -l $DIR2/f2b
90         chmod 777 $DIR1/f2b
91         $CHECKSTAT -t file -p 0777 $DIR2/f2b ||
92                 error "Either not file type or perms not 0777"
93 }
94 run_test 2b "check cached attribute updates on 2 mtpt's ========"
95
96 # NEED TO SAVE ROOT DIR MODE
97 test_2c() {
98         chmod 777 $DIR1
99         $CHECKSTAT -t dir -p 0777 $DIR2 ||
100                 error "Either not dir type or perms not 0777"
101 }
102 run_test 2c "check cached attribute updates on 2 mtpt's root ==="
103
104 test_2d() {
105         chmod 755 $DIR1
106         $CHECKSTAT -t dir -p 0755 $DIR2 ||
107                 error "Either not file type or perms not 0775"
108 }
109 run_test 2d "check cached attribute updates on 2 mtpt's root ==="
110
111 test_2e() {
112         chmod 755 $DIR1
113         ls -l $DIR1
114         ls -l $DIR2
115         chmod 777 $DIR1
116                 $RUNAS dd if=/dev/zero of=$DIR2/$tfile count=1 ||
117                         error "dd failed"
118 }
119 run_test 2e "check chmod on root is propagated to others"
120
121 test_2f() {
122         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
123         local MDTIDX=1
124         local remote_dir=$tdir/remote_dir
125
126         mkdir -p $DIR1/$tdir
127         $LFS mkdir -i $MDTIDX $DIR1/$remote_dir ||
128                    error "Create remote directory failed"
129
130         touch $DIR1/$remote_dir/$tfile ||
131                 error "Create file under remote directory failed"
132         chmod 777 $DIR1/$remote_dir/$tfile ||
133                 error "Chmod file under remote directory failed"
134
135         $CHECKSTAT -t file -p 0777 $DIR2/$remote_dir/$tfile ||
136                 error "Check attr of file under remote directory failed"
137
138         chown $RUNAS_ID:$RUNAS_GID $DIR1/$remote_dir/$tfile ||
139                 error "Chown file under remote directory failed"
140
141         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR2/$remote_dir/$tfile ||
142                 error "Check owner of file under remote directory failed"
143
144         cd $DIR2/$remote_dir || error "enter remote dir"
145         rm -rf $DIR1/$remote_dir/$tfile ||
146                 error "Unlink remote directory failed"
147
148         $CHECKSTAT -t file $DIR2/$remote_dir/$tfile &&
149                 error "unlink file still exists!"
150
151         cd $DIR2/$tdir || error "exit remote dir"
152         rm -rf $DIR1/$tdir || error "unlink directory failed"
153 }
154 run_test 2f "check attr/owner updates on DNE with 2 mtpt's"
155
156 test_2g() {
157         dd if=/dev/zero of=$DIR1/$tfile oflag=sync bs=1M count=2
158
159         local block1=$(stat $DIR1/$tfile | awk '/Blocks/ {print $4} ')
160         cancel_lru_locks osc
161         local block2=$(stat $DIR2/$tfile | awk '/Blocks/ {print $4} ')
162         echo "$DIR1/$tfile has $block1 blocks"
163         echo "$DIR2/$tfile has $block2 blocks"
164         [ $block1 -eq $block2 ] || error "$block1 not equal to $block2"
165 }
166 run_test 2g "check blocks update on sync write"
167
168 test_3() {
169         local target="this/is/good"
170         ln -s $target $DIR1/$tfile || error "ln -s $target $DIR1/$tfile failed"
171         [ "$(ls -l $DIR2/$tfile | sed -e 's/.* -> //')" = "$target" ] ||
172                 error "link $DIR2/$tfile not as expected"
173 }
174 run_test 3 "symlink on one mtpt, readlink on another ==========="
175
176 test_4() {
177         multifstat $DIR1/f4 $DIR2/f4
178 }
179 run_test 4 "fstat validation on multiple mount points =========="
180
181 test_5() {
182         mcreate $DIR1/f5
183         $TRUNCATE $DIR2/f5 100
184         $CHECKSTAT -t file -s 100 $DIR1/f5 ||
185                 error "Either not file type or size not equal to 100 bytes"
186         rm $DIR1/f5
187 }
188 run_test 5 "create a file on one mount, truncate it on the other"
189
190 test_6() {
191         openunlink $DIR1/$tfile $DIR2/$tfile || \
192                 error "openunlink $DIR1/$tfile $DIR2/$tfile"
193 }
194 run_test 6 "remove of open file on other node =================="
195
196 test_7() {
197         local dir=d7
198         opendirunlink $DIR1/$dir $DIR2/$dir || \
199                 error "opendirunlink $DIR1/$dir $DIR2/$dir"
200 }
201 run_test 7 "remove of open directory on other node ============="
202
203 test_8() {
204         opendevunlink $DIR1/$tfile $DIR2/$tfile || \
205                 error "opendevunlink $DIR1/$tfile $DIR2/$tfile"
206 }
207 run_test 8 "remove of open special file on other node =========="
208
209 test_9a() {
210         MTPT=1
211         local dir
212         > $DIR2/f9
213         for C in a b c d e f g h i j k l; do
214                 dir=`eval echo \\$DIR$MTPT`
215                 echo -n $C >> $dir/f9
216                 [ "$MTPT" -eq 1 ] && MTPT=2 || MTPT=1
217         done
218         [ "`cat $DIR1/f9`" = "abcdefghijkl" ] || \
219                 error "`od -a $DIR1/f9` != abcdefghijkl"
220 }
221 run_test 9a "append of file with sub-page size on multiple mounts"
222
223 #LU-10681 - tiny writes & appending to sparse striped file
224 test_9b() {
225         [[ $OSTCOUNT -ge 2 ]] || { skip "needs >= 2 OSTs"; return; }
226
227         $LFS setstripe -c 2 -S 1M $DIR/$tfile
228         echo "foo" >> $DIR/$tfile
229         dd if=/dev/zero of=$DIR2/$tfile bs=1M count=1 seek=1 conv=notrunc ||
230                 error "sparse dd $DIR2/$tfile failed"
231         echo "foo" >> $DIR/$tfile
232
233         data=$(dd if=$DIR2/$tfile bs=1 count=3 skip=$((2 * 1048576)) conv=notrunc)
234         echo "Data read (expecting 'foo')": $data
235         [ "$data" = "foo" ] || error "append to sparse striped file failed"
236 }
237 run_test 9b "append to striped sparse file"
238
239 test_10a() {
240         MTPT=1
241         local dir
242         OFFSET=0
243         > $DIR2/f10
244         for C in a b c d e f g h i j k l; do
245                 dir=`eval echo \\$DIR$MTPT`
246                 echo -n $C | dd of=$dir/f10 bs=1 seek=$OFFSET count=1
247                 [ "$MTPT" -eq 1 ] && MTPT=2 || MTPT=1
248                 OFFSET=`expr $OFFSET + 1`
249         done
250         [ "`cat $DIR1/f10`" = "abcdefghijkl" ] || \
251                 error "`od -a $DIR1/f10` != abcdefghijkl"
252 }
253 run_test 10a "write of file with sub-page size on multiple mounts "
254
255 test_10b() {
256         # create a seed file
257         yes "R" | head -c 4000 >$TMP/f10b-seed
258         dd if=$TMP/f10b-seed of=$DIR1/f10b bs=3k count=1 || error "dd $DIR1"
259
260         $TRUNCATE $DIR1/f10b 4096 || error "truncate 4096"
261
262         dd if=$DIR2/f10b of=$TMP/f10b-lustre bs=4k count=1 || error "dd $DIR2"
263
264         # create a test file locally to compare
265         dd if=$TMP/f10b-seed of=$TMP/f10b bs=3k count=1 || error "dd random"
266         $TRUNCATE $TMP/f10b 4096 || error "truncate 4096"
267         cmp $TMP/f10b $TMP/f10b-lustre || error "file miscompare"
268         rm $TMP/f10b $TMP/f10b-lustre $TMP/f10b-seed
269 }
270 run_test 10b "write of file with sub-page size on multiple mounts "
271
272 test_11() {
273         test_mkdir $DIR1/d11
274         multiop_bg_pause $DIR1/d11/f O_c || return 1
275         MULTIPID=$!
276         cp -p /bin/ls $DIR1/d11/f
277         $DIR2/d11/f
278         RC=$?
279         kill -USR1 $MULTIPID
280         wait $MULTIPID || error "wait for PID $MULTIPID failed"
281         [ $RC -eq 0 ] && error || true
282 }
283 run_test 11 "execution of file opened for write should return error ===="
284
285 test_12() {
286         DIR=$DIR DIR2=$DIR2 sh lockorder.sh
287 }
288 run_test 12 "test lock ordering (link, stat, unlink)"
289
290 test_13() {     # bug 2451 - directory coherency
291         test_mkdir $DIR1/d13
292         cd $DIR1/d13 || error "cd to $DIR1/d13 failed"
293         ls
294         ( touch $DIR1/d13/f13 ) # needs to be a separate shell
295         ls
296         rm -f $DIR2/d13/f13 || error "Cannot remove $DIR2/d13/f13"
297         ls 2>&1 | grep f13 && error "f13 shouldn't return an error (1)" || true
298         # need to run it twice
299         ( touch $DIR1/d13/f13 ) # needs to be a separate shell
300         ls
301         rm -f $DIR2/d13/f13 || error "Cannot remove $DIR2/d13/f13"
302         ls 2>&1 | grep f13 && error "f13 shouldn't return an error (2)" || true
303 }
304 run_test 13 "test directory page revocation"
305
306 test_14aa() {
307         test_mkdir $DIR1/$tdir
308         cp -p /bin/ls $DIR1/$tdir/$tfile
309         multiop_bg_pause $DIR1/$tdir/$tfile Ow_c || return 1
310         MULTIPID=$!
311
312         $DIR2/$tdir/$tfile && error || true
313         kill $MULTIPID
314 }
315 run_test 14aa "execution of file open for write returns -ETXTBSY"
316
317 test_14ab() {
318         test_mkdir $DIR1/$tdir
319         cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed"
320         $DIR1/$tdir/sleep 60 &
321         SLEEP_PID=$!
322         $MULTIOP $DIR2/$tdir/sleep Oc && error "expected error, got success"
323         kill $SLEEP_PID
324 }
325 run_test 14ab "open(RDWR) of executing file returns -ETXTBSY"
326
327 test_14b() { # bug 3192, 7040
328         test_mkdir $DIR1/$tdir
329         cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed"
330         $DIR1/$tdir/sleep 60 &
331         SLEEP_PID=$!
332         $TRUNCATE $DIR2/$tdir/sleep 60 && kill -9 $SLEEP_PID && \
333                 error "expected truncate error, got success"
334         kill $SLEEP_PID
335         cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed"
336 }
337 run_test 14b "truncate of executing file returns -ETXTBSY ======"
338
339 test_14c() { # bug 3430, 7040
340         test_mkdir $DIR1/$tdir
341         cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed"
342         $DIR1/$tdir/sleep 60 &
343         SLEEP_PID=$!
344         cp /etc/hosts $DIR2/$tdir/sleep && error "expected error, got success"
345         kill $SLEEP_PID
346         cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed"
347 }
348 run_test 14c "open(O_TRUNC) of executing file return -ETXTBSY =="
349
350 test_14d() { # bug 10921
351         test_mkdir $DIR1/$tdir
352         cp -p $(which sleep) $DIR1/$tdir/sleep || error "cp failed"
353         $DIR1/$tdir/sleep 60 &
354         SLEEP_PID=$!
355         log chmod
356         chmod 600 $DIR1/$tdir/sleep || error "chmod failed"
357         kill $SLEEP_PID
358         cmp $(which sleep) $DIR1/$tdir/sleep || error "binary changed"
359 }
360 run_test 14d "chmod of executing file is still possible ========"
361
362 test_15() {     # bug 974 - ENOSPC
363         echo "PATH=$PATH"
364         sh oos2.sh $MOUNT1 $MOUNT2
365         wait_delete_completed
366         grant_error=$(dmesg | grep "< tot_grant")
367         [ -z "$grant_error" ] || error "$grant_error"
368 }
369 run_test 15 "test out-of-space with multiple writers ==========="
370
371 COUNT=${COUNT:-2500}
372 # The FSXNUM reduction for ZFS is needed until ORI-487 is fixed.
373 # We don't want to skip it entirely, but ZFS is VERY slow and cannot
374 # pass a 2500 operation dual-mount run within the time limit.
375 if [ "$ost1_FSTYPE" = "zfs" ]; then
376         FSXNUM=$((COUNT / 5))
377         FSXP=1
378 elif [ "$SLOW" = "yes" ]; then
379         FSXNUM=$((COUNT * 5))
380         FSXP=500
381 else
382         FSXNUM=$COUNT
383         FSXP=100
384 fi
385
386 test_16a() {
387         local file1=$DIR1/$tfile
388         local file2=$DIR2/$tfile
389         local stripe_size=$(do_facet $SINGLEMDS \
390                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
391
392         check_set_fallocate
393
394         # to allocate grant because it may run out due to test_15.
395         $LFS setstripe -c -1 $file1
396         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
397         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
398         rm -f $file1
399
400         $LFS setstripe -c -1 $file1 # b=10919
401         $FSX -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 $file1 $file2 ||
402                 error "fsx failed"
403         rm -f $file1
404
405         # O_DIRECT reads and writes must be aligned to the device block size.
406         $FSX -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 -Z -r 4096 \
407                 -w 4096 $file1 $file2 || error "fsx with O_DIRECT failed."
408 }
409 run_test 16a "$FSXNUM iterations of dual-mount fsx"
410
411 # Consistency check for tiny writes, LU-9409
412 test_16b() {
413         local file1=$DIR1/$tfile
414         local file2=$DIR2/$tfile
415         local stripe_size=($($LFS getstripe -S $DIR))
416
417         check_set_fallocate
418
419         # to allocate grant because it may run out due to test_15.
420         lfs setstripe -c -1 $file1
421         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync ||
422                 error "dd failed writing to file=$file1"
423         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync ||
424                 error "dd failed writing to file=$file2"
425         rm -f $file1
426
427         lfs setstripe -c -1 $file1 # b=10919
428         # -o is set to 8192 because writes < 1 page and between 1 and 2 pages
429         # create a mix of tiny writes & normal writes
430         $FSX -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -o 8192 -S 0 \
431                 $file1 $file2 || error "fsx with tiny write failed."
432 }
433 run_test 16b "$FSXNUM iterations of dual-mount fsx at small size"
434
435 test_16c() {
436         local file1=$DIR1/$tfile
437         local file2=$DIR2/$tfile
438         local stripe_size=$(do_facet $SINGLEMDS \
439                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
440
441         [ "$ost1_FSTYPE" != ldiskfs ] && skip "dio on ldiskfs only"
442
443         check_set_fallocate
444
445         # to allocate grant because it may run out due to test_15.
446         $LFS setstripe -c -1 $file1
447         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
448         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
449         rm -f $file1
450         wait_delete_completed
451
452         local list=$(comma_list $(osts_nodes))
453         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
454                 skip "not cache-capable obdfilter"
455         fi
456
457         set_osd_param $list '' read_cache_enable 0
458         set_osd_param $list '' writethrough_cache_enable 0
459
460         $LFS setstripe -c -1 $file1 # b=10919
461         $FSX -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 $file1 $file2 ||
462                 error "fsx failed"
463         rm -f $file1
464
465         set_osd_param $list '' read_cache_enable 1
466         set_osd_param $list '' writethrough_cache_enable 1
467
468         return 0
469 }
470 run_test 16c "verify data consistency on ldiskfs with cache disabled (b=17397)"
471
472 test_16d() {
473         local file1=$DIR1/$tfile
474         local file2=$DIR2/$tfile
475         local file3=$DIR1/file
476         local tmpfile=$(mktemp)
477         local stripe_size=$(do_facet $SINGLEMDS \
478                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
479
480         # to allocate grant because it may run out due to test_15.
481         $LFS setstripe -c -1 $file1
482         stack_trap "rm -f $file1 $file2 $file3 $tmpfile"
483         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
484         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
485         rm -f $file1
486
487         $LFS setstripe -c -1 $file1 # b=10919
488         $LCTL set_param ldlm.namespaces.*.lru_size=clear
489         
490         # direct write on one client and direct read from another
491         dd if=/dev/urandom of=$file1 bs=1M count=100 oflag=direct
492         dd if=$file2 of=$tmpfile iflag=direct bs=1M
493         diff $file1 $tmpfile || error "file different(1)"
494         rm -f $file1
495
496         # buffer write on one client, but direct read from another
497         dd if=$tmpfile of=$file1 bs=1M count=100
498         dd if=$file2 of=$file3 bs=1M iflag=direct count=100
499         diff $file3 $tmpfile || error "file different(2)"
500
501         rm -f $file3 $file2 $file1
502         # direct write on one client
503         dd if=$tmpfile of=$file1 bs=1M count=100 oflag=direct
504         # buffer read from another client
505         dd if=$file2 of=$file3 bs=1M count=100
506         diff $file3 $tmpfile || error "file different(3)"
507 }
508 run_test 16d "Verify DIO and buffer IO with two clients"
509
510 test_16e() { # LU-13227
511         # issue:        LU-14314
512
513         (( "$MDS1_VERSION" >= $(version_code 2.13.53) )) ||
514                 skip "Need MDS version at least 2.13.53"
515
516         local file1=$DIR1/$tfile
517         local file2=$DIR2/$tfile
518
519         # client1 write 10M data
520         dd if=/dev/zero of=$file1 bs=1M count=10
521         # drop locks
522         cancel_lru_locks osc > /dev/null
523         # use lockahead to generate one PW lock to keep LVB loaded.
524         $LFS ladvise -a lockahead --start 0 --length 1M \
525                 --mode WRITE $file1
526         # direct write to extend file size on client2
527         dd if=/dev/zero of=$file2 bs=1M seek=20 count=1 \
528                 oflag=direct conv=notrunc
529         local filesize=$(stat -c %s $file2)
530         [ "$filesize" -eq 22020096 ] ||
531                 error "expected filesize 22020096 got $filesize"
532         rm -f $file1
533 }
534 run_test 16e "Verify size consistency for O_DIRECT write"
535
536 test_17() { # bug 3513, 3667
537         remote_ost_nodsh && skip "remote OST with nodsh" && return
538
539         lfs setstripe $DIR1/$tfile -i 0 -c 1
540         cp $SAMPLE_FILE $DIR1/$tfile
541         cancel_lru_locks osc > /dev/null
542         #define OBD_FAIL_ONCE|OBD_FAIL_LDLM_CREATE_RESOURCE    0x30a
543         do_facet ost1 lctl set_param fail_loc=0x8000030a
544         ls -ls $DIR1/$tfile | awk '{ print $1,$6 }' > $DIR1/$tfile-1 & \
545         ls -ls $DIR2/$tfile | awk '{ print $1,$6 }' > $DIR2/$tfile-2
546         wait
547         diff -u $DIR1/$tfile-1 $DIR2/$tfile-2 || error "files are different"
548 }
549 run_test 17 "resource creation/LVB creation race ==============="
550
551 test_18() {
552         # turn e.g. ALWAYS_EXCEPT="18c" into "-e 3"
553         local idx
554         local excepts=
555         for idx in {a..z}; do
556                 local ptr=EXCEPT_ALWAYS_18$idx
557                 [ x${!ptr} = xtrue ] || continue
558
559                 excepts="$excepts -e $(($(printf %d \'$idx)-96))"
560         done
561
562         excepts="$excepts -e 7 -e 8 -e 9"
563         $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 $excepts ||
564                 error "mmap_sanity test failed"
565         sync; sleep 1; sync
566 }
567 run_test 18 "mmap sanity check ================================="
568
569 test_19() { # bug3811
570         local node=$(facet_active_host ost1)
571         local device="$FSNAME-OST*"
572
573         [ "x$DOM" = "xyes" ] && node=$(facet_active_host $SINGLEMDS) &&
574                 device="$FSNAME-MDT*"
575
576         # check whether obdfilter is cache capable at all
577         get_osd_param $node $device read_cache_enable >/dev/null ||
578                 skip "not cache-capable obdfilter"
579
580         local max=$(get_osd_param $node $device readcache_max_filesize |\
581                 head -n 1)
582         set_osd_param $node $device readcache_max_filesize 4096
583         dd if=/dev/urandom of=$TMP/$tfile bs=512k count=32
584         local SUM=$(cksum $TMP/$tfile | cut -d" " -f 1,2)
585         cp $TMP/$tfile $DIR1/$tfile
586         for i in `seq 1 20`; do
587                 [ $((i % 5)) -eq 0 ] && log "$testname loop $i"
588                 cancel_lru_locks $OSC > /dev/null
589                 cksum $DIR1/$tfile | cut -d" " -f 1,2 > $TMP/sum1 & \
590                 cksum $DIR2/$tfile | cut -d" " -f 1,2 > $TMP/sum2
591                 wait
592                 [ "$(cat $TMP/sum1)" = "$SUM" ] || \
593                         error "$DIR1/$tfile $(cat $TMP/sum1) != $SUM"
594                 [ "$(cat $TMP/sum2)" = "$SUM" ] || \
595                         error "$DIR2/$tfile $(cat $TMP/sum2) != $SUM"
596         done
597         set_osd_param $node $device readcache_max_filesize $max
598         rm $DIR1/$tfile
599 }
600 run_test 19 "test concurrent uncached read races ==============="
601
602 test_20() {
603         test_mkdir $DIR1/$tdir
604         cancel_lru_locks
605         CNT=$($LCTL get_param -n llite.*.dump_page_cache | wc -l)
606         $MULTIOP $DIR1/$tdir/$tfile Ow8190c
607         $MULTIOP $DIR2/$tdir/$tfile Oz8194w8190c
608         $MULTIOP $DIR1/$tdir/$tfile Oz0r8190c
609         cancel_lru_locks
610         CNT2=$($LCTL get_param -n llite.*.dump_page_cache | wc -l)
611         [[ $CNT2 == $CNT ]] ||
612                 error $((CNT2 - CNT))" page left in cache after lock cancel"
613 }
614 run_test 20 "test extra readahead page left in cache ===="
615
616 cleanup_21() {
617         trap 0
618         umount $DIR1/$tdir
619 }
620
621 test_21() { # Bug 5907
622         test_mkdir $DIR1/$tdir
623         mount /etc $DIR1/$tdir --bind || error "mount failed" # Poor man's mount.
624         trap cleanup_21 EXIT
625         rmdir -v $DIR1/$tdir && error "Removed mounted directory"
626         rmdir -v $DIR2/$tdir && echo "Removed mounted directory from another mountpoint, needs to be fixed"
627         test -d $DIR1/$tdir || error "Mounted directory disappeared"
628         cleanup_21
629         test -d $DIR2/$tdir || test -d $DIR1/$tdir && error "Removed dir still visible after umount"
630         true
631 }
632 run_test 21 " Try to remove mountpoint on another dir ===="
633
634 test_23() { # Bug 5972
635         local at_diff=$(do_facet $SINGLEMDS \
636                 $LCTL get_param -n mdd.*MDT0000*.atime_diff | head -n1)
637         echo "atime should be updated while another read" > $DIR1/$tfile
638
639         # clear the lock(mode: LCK_PW) gotten from creating operation
640         cancel_lru_locks $OSC
641         time1=$(date +%s)
642         echo "now is $time1"
643         sleep $((at_diff + 1))
644
645         echo "starting reads"
646         multiop_bg_pause $DIR1/$tfile or20_c || return 1
647         # with SOM and opencache enabled, we need to close a file and cancel
648         # open lock to get atime propogated to MDS
649         kill -USR1 $! || return 2
650         cancel_lru_locks mdc
651
652         time2=$(stat -c "%X" $DIR/$tfile)
653         echo "new atime is $time2"
654
655         [ $time2 -gt $time1 ] || error "atime was not updated"
656         rm -f $DIR1/$tfile || error "rm -f $DIR1/$tfile failed"
657         true
658 }
659 run_test 23 " others should see updated atime while another read===="
660
661 test_24a() {
662         touch $DIR1/$tfile
663         lfs df || error "lfs df failed"
664         lfs df -ih || error "lfs df -ih failed"
665         lfs df -h $DIR1 || error "lfs df -h $DIR1 failed"
666         lfs df -i $DIR2 || error "lfs df -i $DIR2 failed"
667         lfs df $DIR1/$tfile || error "lfs df $DIR1/$tfile failed"
668         lfs df -ih $DIR2/$tfile || error "lfs df -ih $DIR2/$tfile failed"
669
670         OSC=`lctl dl | awk '/-osc-|OSC.*MNT/ {print $4}' | head -n 1`
671 #       OSC=`lctl dl | awk '/-osc-/ {print $4}' | head -n 1`
672         lctl --device %osc deactivate
673         lfs df -i || error "lfs df -i with deactivated OSC failed"
674         lctl --device %osc activate
675         lfs df || error "lfs df with reactivated OSC failed"
676 }
677 run_test 24a "lfs df [-ih] [path] test ========================="
678
679 test_24b() {
680         touch $DIR1/$tfile
681         fsnum=$(lfs_df | grep -c "summary")
682         [ $fsnum -eq 2 ] || error "lfs df shows $fsnum != 2 filesystems."
683 }
684 run_test 24b "lfs df should show both filesystems ==============="
685
686 test_25a() {
687         local acl=$(lctl get_param -n mdc.*MDT0000-mdc-*.connect_flags |
688                                                                 grep -c acl)
689         [ "$acl" -lt 1 ] && skip "must have acl, skipping" && return
690
691         mkdir -p $DIR1/$tdir
692         touch $DIR1/$tdir/f1 || error "touch $DIR1/$tdir/f1"
693         chmod 0755 $DIR1/$tdir/f1 || error "chmod 0755 $DIR1/$tdir/f1"
694
695         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #1"
696         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
697                 error "setfacl $DIR2/$tdir #1"
698         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #2"
699         setfacl -m u:$RUNAS_ID:r-x -m g:$RUNAS_GID:r-x $DIR1/$tdir ||
700                 error "setfacl $DIR2/$tdir #2"
701         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #3"
702         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
703                 error "setfacl $DIR2/$tdir #3"
704         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #4"
705         setfacl -x u:$RUNAS_ID: -x g:$RUNAS_GID: $DIR1/$tdir ||
706                 error "setfacl $DIR2/$tdir #4"
707         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #5"
708
709         rm -rf $DIR1/$tdir
710 }
711 run_test 25a "change ACL on one mountpoint be seen on another ==="
712
713 test_25b() {
714         local acl=$(lctl get_param -n mdc.*MDT0000-mdc-*.connect_flags |
715                                                         grep -c acl)
716         [ "$acl" -lt 1 ] && skip "must have acl, skipping" && return
717
718         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
719
720         rm -rf $DIR1/$tdir
721         $LFS mkdir -i 1 $DIR1/$tdir
722         touch $DIR1/$tdir/f1 || error "touch $DIR1/$tdir/f1"
723         chmod 0755 $DIR1/$tdir/f1 || error "chmod 0755 $DIR1/$tdir/f1"
724
725         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #1"
726         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
727                 error "setfacl $DIR2/$tdir #1"
728         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #2"
729         setfacl -m u:$RUNAS_ID:r-x -m g:$RUNAS_GID:r-x $DIR1/$tdir ||
730                 error "setfacl $DIR2/$tdir #2"
731         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #3"
732         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
733                 error "setfacl $DIR2/$tdir #3"
734         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #4"
735         setfacl -x u:$RUNAS_ID: -x g:$RUNAS_GID: $DIR1/$tdir ||
736                 error "setfacl $DIR2/$tdir #4"
737         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #5"
738
739         rm -rf $DIR1/$tdir
740 }
741 run_test 25b "change ACL under remote dir on one mountpoint be seen on another"
742
743 test_26a() {
744         utime $DIR1/f26a -s $DIR2/f26a || error "utime failed for $DIR1/f26a"
745 }
746 run_test 26a "allow mtime to get older"
747
748 test_26b() {
749         touch $DIR1/$tfile
750         sleep 1
751         echo "aaa" >> $DIR1/$tfile
752         sleep 1
753         chmod a+x $DIR2/$tfile
754         mt1=`stat -c %Y $DIR1/$tfile`
755         mt2=`stat -c %Y $DIR2/$tfile`
756
757         if [ x"$mt1" != x"$mt2" ]; then
758                 error "not equal mtime, client1: "$mt1", client2: "$mt2"."
759         fi
760 }
761 run_test 26b "sync mtime between ost and mds"
762
763 test_27() {
764         cancel_lru_locks $OSC
765         lctl clear
766         dd if=/dev/zero of=$DIR2/$tfile bs=$((4096+4))k conv=notrunc count=4 seek=3 &
767         DD2_PID=$!
768         sleep 0.5
769         log "dd 1 started"
770
771         dd if=/dev/zero of=$DIR1/$tfile bs=$((16384-1024))k conv=notrunc count=1 seek=4 &
772         DD1_PID=$!
773         log "dd 2 started"
774
775         sleep 1
776         dd if=/dev/zero of=$DIR1/$tfile bs=8k conv=notrunc count=1 seek=0
777         log "dd 3 finished"
778         lctl set_param -n ldlm.dump_namespaces ""
779         wait $DD1_PID $DD2_PID
780         [ $? -ne 0 ] && lctl dk $TMP/debug || true
781 }
782 run_test 27 "align non-overlapping extent locks from request ==="
783
784 test_28() { # bug 9977
785         ECHO_UUID="ECHO_osc1_UUID"
786         tOST=$($LCTL dl | awk '/-osc-|OSC.*MNT/ { print $4 }' | head -n1)
787
788         $LFS setstripe $DIR1/$tfile -S 1048576 -i 0 -c 2
789         tOBJID=`$LFS getstripe $DIR1/$tfile | awk '$1 == 1 {print $2}'`
790         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2
791
792         $LCTL <<-EOF
793                 newdev
794                 attach echo_client ECHO_osc1 $ECHO_UUID
795                 setup $tOST
796         EOF
797
798         tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{ print $1 }'`
799         $LCTL --device $tECHOID destroy "${tOBJID}:0"
800
801         $LCTL <<-EOF
802                 cfg_device ECHO_osc1
803                 cleanup
804                 detach
805         EOF
806
807         # reading of 1st stripe should pass
808         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error "dd failed"
809         # reading of 2nd stripe should fail (this stripe was destroyed)
810         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 && error
811
812         # now, recreating test file
813         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2 || error "dd failed"
814         # reading of 1st stripe should pass
815         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error "dd failed"
816         # reading of 2nd stripe should pass
817         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 ||
818                 error "dd failed"
819 }
820 run_test 28 "read/write/truncate file with lost stripes"
821
822 test_30() { #b=11110, LU-2523
823         test_mkdir $DIR1/$tdir
824         cp -f /bin/bash $DIR1/$tdir/bash
825         /bin/sh -c 'sleep 1; rm -f $DIR2/$tdir/bash; cp /bin/bash $DIR2/$tdir' &
826         $DIR1/$tdir/bash -c 'sleep 2;
827                 openfile -f O_RDONLY /proc/$$/exe >& /dev/null; echo $?'
828         wait
829         true
830 }
831 run_test 30 "recreate file race"
832
833 test_31a() {
834         test_mkdir $DIR1/$tdir
835         local writes=$(LANG=C dd if=/dev/zero of=$DIR/$tdir/$tfile \
836                        count=1 2>&1 | awk 'BEGIN { FS="+" } /out/ {print $1}')
837         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
838         lctl set_param fail_loc=0x314
839         local reads=$(LANG=C dd if=$DIR2/$tdir/$tfile of=/dev/null 2>&1 |
840                       awk 'BEGIN { FS="+" } /in/ {print $1}')
841         [ $reads -eq $writes ] || error "read" $reads "blocks, must be" $writes
842 }
843 run_test 31a "voluntary cancel / blocking ast race=============="
844
845 test_31b() {
846         remote_ost || { skip "local OST" && return 0; }
847         remote_ost_nodsh && skip "remote OST w/o dsh" && return 0
848
849         # make sure there is no local locks due to destroy
850         wait_mds_ost_sync || error "wait_mds_ost_sync()"
851         wait_delete_completed || error "wait_delete_completed()"
852
853         test_mkdir $DIR1/$tdir
854         lfs setstripe $DIR/$tdir/$tfile -i 0 -c 1
855         cp /etc/hosts $DIR/$tdir/$tfile
856         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
857         lctl set_param fail_loc=0x314
858         #define OBD_FAIL_LDLM_OST_FAIL_RACE      0x316
859         do_facet ost1 lctl set_param fail_loc=0x316
860         # Don't crash kernel
861         cat $DIR2/$tdir/$tfile > /dev/null 2>&1
862         lctl set_param fail_loc=0
863         do_facet ost1 lctl set_param fail_loc=0
864         # cleanup: reconnect the client back
865         df $DIR2
866 }
867 run_test 31b "voluntary OST cancel / blocking ast race=============="
868
869 #LU-14949 - multi-client version of the test 31r in sanity.
870 test_31r() {
871         touch $DIR/$tfile.target
872         touch $DIR/$tfile.source
873
874         ls -l $DIR/$tfile.target # cache it for sure
875
876         #OBD_FAIL_LLITE_OPEN_DELAY 0x1419
877         $LCTL set_param fail_loc=0x1419 fail_val=3
878         cat $DIR/$tfile.target &
879         CATPID=$!
880
881         # Guarantee open is waiting before we get here
882         sleep 1
883         mv $DIR2/$tfile.source $DIR2/$tfile.target
884
885         wait $CATPID
886         RC=$?
887         if [[ $RC -ne 0 ]]; then
888                 error "open with cat failed, rc=$RC"
889         fi
890 }
891 run_test 31r "open-rename(replace) race"
892
893 test_32b() { # bug 11270
894         remote_ost_nodsh && skip "remote OST with nodsh" && return
895
896         local node
897         local facets=$(get_facets OST)
898         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
899
900         save_lustre_params client "osc.*.contention_seconds" > $p
901         save_lustre_params $facets \
902                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
903         save_lustre_params $facets \
904                 "ldlm.namespaces.filter-*.contended_locks" >> $p
905         save_lustre_params $facets \
906                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
907         clear_stats $OSC.*.${OSC}_stats
908
909         # agressive lockless i/o settings
910         do_nodes $(comma_list $(osts_nodes)) \
911                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
912                         ldlm.namespaces.filter-*.contended_locks=0 \
913                         ldlm.namespaces.filter-*.contention_seconds=60"
914         lctl set_param -n $OSC.*.contention_seconds=60
915         for i in {1..5}; do
916                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > \
917                         /dev/null 2>&1
918                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > \
919                         /dev/null 2>&1
920         done
921         [ $(calc_stats $OSC.*.${OSC}_stats lockless_write_bytes) -ne 0 ] ||
922                 error "lockless i/o was not triggered"
923         # disable lockless i/o (it is disabled by default)
924         do_nodes $(comma_list $(osts_nodes)) \
925                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
926                         ldlm.namespaces.filter-*.contended_locks=32 \
927                         ldlm.namespaces.filter-*.contention_seconds=0"
928         # set contention_seconds to 0 at client too, otherwise Lustre still
929         # remembers lock contention
930         lctl set_param -n $OSC.*.contention_seconds=0
931         clear_stats $OSC.*.${OSC}_stats
932         for i in {1..1}; do
933                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > \
934                         /dev/null 2>&1
935                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > \
936                         /dev/null 2>&1
937         done
938         [ $(calc_stats $OSC.*.${OSC}_stats lockless_write_bytes) -eq 0 ] ||
939                 error "lockless i/o works when disabled"
940         rm -f $DIR1/$tfile
941         restore_lustre_params <$p
942         rm -f $p
943 }
944 # Disable test 32b prior to full removal
945 #run_test 32b "lockless i/o"
946
947 print_jbd_stat () {
948         local mdts=$(get_facets MDS)
949         local stat=0
950         local varsvc
951         local dev
952         local mds
953
954         for mds in ${mdts//,/ }; do
955                 varsvc=${mds}_svc
956
957                 dev=$(basename $(do_facet $mds "lctl get_param -n \
958                         osd*.${!varsvc}.mntdev | xargs readlink -f"))
959                 val=$(do_facet $mds "cat /proc/fs/jbd*/${dev}{,:*,-*}/info \
960                         2>/dev/null | head -n1")
961                 val=${val%% *};
962                 stat=$((stat + val))
963         done
964         echo $stat
965 }
966
967 # commit on sharing tests
968 test_33a() {
969         remote_mds_nodsh && skip "remote MDS with nodsh" && return
970
971         [ -z "$CLIENTS" ] && skip "Need two or more clients, have $CLIENTS"
972         [ $CLIENTCOUNT -lt 2 ] &&
973                 skip "Need two or more clients, have $CLIENTCOUNT"
974
975         local nfiles=${TEST33_NFILES:-10000}
976         local param_file=$TMP/$tfile-params
977         local COS
978         local jbdold="N/A"
979         local jbdnew="N/A"
980         local jbd
981
982         save_lustre_params $(get_facets MDS) \
983                 "mdt.*.commit_on_sharing" > $param_file
984
985         for COS in 0 1; do
986                 do_facet $SINGLEMDS lctl set_param mdt.*.commit_on_sharing=$COS
987                 avgjbd=0
988                 avgtime=0
989                 for i in 1 2 3; do
990                         do_nodes $CLIENT1,$CLIENT2 "mkdir -p $DIR1/$tdir-\\\$(hostname)-$i"
991
992                 [ "$mds1_FSTYPE" = ldiskfs ] && jbdold=$(print_jbd_stat)
993                 echo "=== START createmany old: $jbdold transaction"
994                 local elapsed=$(do_and_time "do_nodes $CLIENT1,$CLIENT2 createmany -o $DIR1/$tdir-\\\$(hostname)-$i/f- -r$DIR2/$tdir-\\\$(hostname)-$i/f- $nfiles > /dev/null 2>&1")
995                 [ "$mds1_FSTYPE" = ldiskfs ] && jbdnew=$(print_jbd_stat)
996                 [ "$mds1_FSTYPE" = ldiskfs ] && jbd=$(( jbdnew - jbdold ))
997                 echo "=== END   createmany new: $jbdnew transaction :  $jbd transactions  nfiles $nfiles time $elapsed COS=$COS"
998                 [ "$mds1_FSTYPE" = ldiskfs ] && avgjbd=$(( avgjbd + jbd ))
999                 avgtime=$(( avgtime + elapsed ))
1000                 done
1001         eval cos${COS}_jbd=$((avgjbd / 3))
1002         eval cos${COS}_time=$((avgtime / 3))
1003         done
1004
1005         echo "COS=0 transactions (avg): $cos0_jbd  time (avg): $cos0_time"
1006         echo "COS=1 transactions (avg): $cos1_jbd  time (avg): $cos1_time"
1007         [ "$cos0_jbd" != 0 ] &&
1008                 echo "COS=1 vs COS=0 jbd:  $((((cos1_jbd/cos0_jbd - 1)) * 100 )) %"
1009         [ "$cos0_time" != 0 ] &&
1010                 echo "COS=1 vs COS=0 time: $((((cos1_time/cos0_time - 1)) * 100 )) %"
1011
1012         restore_lustre_params < $param_file
1013         rm -f $param_file
1014         return 0
1015 }
1016 run_test 33a "commit on sharing, cross crete/delete, 2 clients, benchmark"
1017
1018 # commit on sharing tests
1019 test_33b() {
1020         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1021
1022         [ -n "$CLIENTS" ] || { skip "Need two or more clients" && return 0; }
1023         [ $CLIENTCOUNT -ge 2 ] ||
1024                 { skip "Need two or more clients, have $CLIENTCOUNT" &&
1025                                                                 return 0; }
1026         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1027
1028         local nfiles=${TEST33_NFILES:-10000}
1029         local param_file=$TMP/$tfile-params
1030
1031         save_lustre_params $(get_facets MDS) \
1032                 "mdt.*.commit_on_sharing" > $param_file
1033
1034         local COS
1035         local jbdold
1036         local jbdnew
1037         local jbd
1038         local MDTIDX=1
1039
1040         for COS in 0 1; do
1041                 do_facet $SINGLEMDS lctl set_param mdt.*.commit_on_sharing=$COS
1042                 avgjbd=0
1043                 avgtime=0
1044                 for i in 1 2 3; do
1045                         do_node $CLIENT1 "$LFS mkdir -i $MDTIDX \
1046                                           $DIR1/$tdir-\\\$(hostname)-$i"
1047
1048                         jbdold=$(print_jbd_stat)
1049                         echo "=== START createmany old: $jbdold transaction"
1050                         local elapsed=$(do_and_time "do_nodes $CLIENT1,$CLIENT2\
1051                                 createmany -o $DIR1/$tdir-\\\$(hostname)-$i/f- \
1052                                 -r$DIR2/$tdir-\\\$(hostname)-$i/f- $nfiles > \
1053                                                                 /dev/null 2>&1")
1054                         jbdnew=$(print_jbd_stat)
1055                         jbd=$(( jbdnew - jbdold ))
1056                         echo "=== END   createmany new: $jbdnew transaction : \
1057                         $jbd transactions nfiles $nfiles time $elapsed COS=$COS"
1058                         avgjbd=$(( avgjbd + jbd ))
1059                         avgtime=$(( avgtime + elapsed ))
1060                 done
1061                 eval cos${COS}_jbd=$((avgjbd / 3))
1062                 eval cos${COS}_time=$((avgtime / 3))
1063         done
1064
1065         echo "COS=0 transactions (avg): $cos0_jbd  time (avg): $cos0_time"
1066         echo "COS=1 transactions (avg): $cos1_jbd  time (avg): $cos1_time"
1067         [ "$cos0_jbd" != 0 ] &&
1068             echo "COS=1 vs COS=0 jbd: $(((cos1_jbd/cos0_jbd - 1) * 100)) %"
1069         [ "$cos0_time" != 0 ] &&
1070             echo "COS=1 vs COS=0 time: $(((cos1_time/cos0_time - 1) * 100)) %"
1071
1072         restore_lustre_params < $param_file
1073         rm -f $param_file
1074         return 0
1075 }
1076 run_test 33b "COS: cross create/delete, 2 clients, benchmark under remote dir"
1077
1078 test_33c() {
1079         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1080         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1081                 skip "DNE CoS not supported"
1082
1083         # LU-13522
1084         stop mds1
1085         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS || error "start mds1 failed"
1086
1087         local sync_count
1088
1089         mkdir_on_mdt0 $DIR/$tdir
1090         sync_all_data
1091         do_facet mds1 "lctl set_param -n mdt.*.sync_count=0"
1092         # do twice in case transaction is committed before unlock, see LU-8200
1093         for i in 1 2; do
1094                 # remote dir is created on MDT1, which enqueued lock of $tdir on
1095                 # MDT0
1096                 $LFS mkdir -i 1 $DIR/$tdir/remote.$i
1097                 mkdir $DIR/$tdir/local.$i
1098         done
1099         sync_count=$(do_facet mds1 "lctl get_param -n mdt.*MDT0000.sync_count")
1100         echo "sync_count $sync_count"
1101         [ $sync_count -eq 0 ] && error "Sync-Lock-Cancel not triggered"
1102
1103         sync_all_data
1104         do_facet mds1 "lctl set_param -n mdt.*.sync_count=0"
1105         $LFS mkdir -i 1 $DIR/$tdir/remote.3
1106         # during sleep remote mkdir should have been committed and canceled
1107         # remote lock spontaneously, which shouldn't trigger sync
1108         sleep 6
1109         mkdir $DIR/$tdir/local.3
1110         sync_count=$(do_facet mds1 "lctl get_param -n mdt.*MDT0000.sync_count")
1111         echo "sync_count $sync_count"
1112         [ $sync_count -eq 0 ] || error "Sync-Lock-Cancel triggered"
1113 }
1114 run_test 33c "Cancel cross-MDT lock should trigger Sync-Lock-Cancel"
1115
1116 # arg1 is operations done before CoS, arg2 is the operation that triggers CoS
1117 op_trigger_cos() {
1118         local commit_nr
1119         local total=0
1120         local nodes=$(comma_list $(mdts_nodes))
1121
1122         sync_all_data
1123
1124         # trigger CoS twice in case transaction commit before unlock
1125         for i in 1 2; do
1126                 sh -c "$1"
1127                 do_nodes $nodes "lctl set_param -n mdt.*.async_commit_count=0"
1128                 sh -c "$2"
1129                 commit_nr=$(do_nodes $nodes \
1130                         "lctl get_param -n mdt.*.async_commit_count" | calc_sum)
1131                 total=$((total + commit_nr));
1132                 rm -rf $DIR/$tdir
1133                 sync_all_data
1134         done
1135
1136         echo "CoS count $total"
1137         [ $total -gt 0 ] || error "$2 didn't trigger CoS"
1138 }
1139
1140 test_33d() {
1141         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1142         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1143                 skip "DNE CoS not supported"
1144
1145         # remote directory create
1146         op_trigger_cos "$LFS mkdir -i 0 $DIR/$tdir" "$LFS mkdir -i 1 $DIR/$tdir/subdir"
1147         # remote directory unlink
1148         op_trigger_cos "$LFS mkdir -i 1 $DIR/$tdir" "rmdir $DIR/$tdir"
1149         # striped directory create
1150         op_trigger_cos "mkdir $DIR/$tdir" "$LFS mkdir -c 2 $DIR/$tdir/subdir"
1151         # striped directory setattr
1152         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; touch $DIR/$tdir" \
1153                 "chmod 713 $DIR/$tdir"
1154         # striped directory unlink
1155         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; touch $DIR/$tdir" \
1156                 "rmdir $DIR/$tdir"
1157         # cross-MDT link
1158         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; \
1159                         $LFS mkdir -i 0 $DIR/$tdir/d1; \
1160                         $LFS mkdir -i 1 $DIR/$tdir/d2; \
1161                         touch $DIR/$tdir/d1/tgt" \
1162                 "ln $DIR/$tdir/d1/tgt $DIR/$tdir/d2/src"
1163         # cross-MDT rename
1164         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; \
1165                         $LFS mkdir -i 0 $DIR/$tdir/d1; \
1166                         $LFS mkdir -i 1 $DIR/$tdir/d2; \
1167                         touch $DIR/$tdir/d1/src" \
1168                 "mv $DIR/$tdir/d1/src $DIR/$tdir/d2/tgt"
1169         # migrate
1170         op_trigger_cos "$LFS mkdir -i 0 $DIR/$tdir" \
1171                 "$LFS migrate -m 1 $DIR/$tdir"
1172
1173         return 0
1174 }
1175 run_test 33d "DNE distributed operation should trigger COS"
1176
1177 test_33e() {
1178         [ -n "$CLIENTS" ] || skip "Need two or more clients"
1179         [ $CLIENTCOUNT -ge 2 ] ||
1180                 skip "Need two or more clients, have $CLIENTCOUNT"
1181         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1182         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1183                 skip "DNE CoS not supported"
1184
1185         local client2=${CLIENT2:-$(hostname)}
1186
1187         sync
1188
1189         local nodes=$(comma_list $(mdts_nodes))
1190         do_nodes $nodes "lctl set_param -n mdt.*.async_commit_count=0"
1191
1192         $LFS mkdir -c 2 $DIR/$tdir
1193         mkdir $DIR/$tdir/subdir
1194         echo abc > $DIR/$tdir/$tfile
1195         do_node $client2 echo dfg >> $DIR/$tdir/$tfile
1196         do_node $client2 touch $DIR/$tdir/subdir
1197
1198         local async_commit_count=$(do_nodes $nodes \
1199                 "lctl get_param -n mdt.*.async_commit_count" | calc_sum)
1200         [ $async_commit_count -gt 0 ] && error "CoS triggerred"
1201
1202         return 0
1203 }
1204 run_test 33e "DNE local operation shouldn't trigger COS"
1205
1206 # End commit on sharing tests
1207
1208 get_ost_lock_timeouts() {
1209     local nodes=${1:-$(comma_list $(osts_nodes))}
1210
1211     local locks=$(do_nodes $nodes \
1212         "lctl get_param -n ldlm.namespaces.filter-*.lock_timeouts" | calc_sum)
1213
1214     echo $locks
1215 }
1216
1217 cleanup_34() {
1218         local i
1219         trap 0
1220         do_nodes $(comma_list $(osts_nodes)) \
1221                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1222         for i in $(seq $OSTCOUNT); do
1223                 wait_osc_import_ready client ost$i
1224         done
1225 }
1226
1227 test_34() { #16129
1228         remote_ost_nodsh && skip "remote OST with nodsh" && return
1229         local OPER
1230         local lock_in
1231         local lock_out
1232         trap cleanup_34 EXIT RETURN
1233         for OPER in notimeout timeout ; do
1234                 rm $DIR1/$tfile 2>/dev/null
1235                 lock_in=$(get_ost_lock_timeouts)
1236                 if [ $OPER == "timeout" ] ; then
1237                         for j in `seq $OSTCOUNT`; do
1238                                 #define OBD_FAIL_PTLRPC_HPREQ_TIMEOUT    0x511
1239                                 do_facet ost$j lctl set_param fail_loc=0x511
1240                         done
1241                         echo lock should expire
1242                 else
1243                         for j in `seq $OSTCOUNT`; do
1244                                 #define OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT  0x512
1245                                 do_facet ost$j lctl set_param fail_loc=0x512
1246                         done
1247                         echo lock should not expire
1248                 fi
1249                 echo writing on client1
1250                 dd if=/dev/zero of=$DIR1/$tfile count=100 conv=notrunc > /dev/null 2>&1
1251                 sync &
1252                 echo reading on client2
1253                 dd of=/dev/null if=$DIR2/$tfile > /dev/null 2>&1
1254                 # wait for a lock timeout
1255                 sleep 4
1256                 lock_out=$(get_ost_lock_timeouts)
1257                 if [ $OPER == "timeout" ] ; then
1258                         if [ $lock_in == $lock_out ]; then
1259                                 error "no lock timeout happened"
1260                         else
1261                                 echo "success"
1262                         fi
1263                 else
1264                         if [ $lock_in != $lock_out ]; then
1265                                 error "lock timeout happened"
1266                         else
1267                                 echo "success"
1268                         fi
1269                 fi
1270         done
1271         cleanup_34
1272 }
1273 run_test 34 "no lock timeout under IO"
1274
1275 test_35() { # bug 17645
1276         local generation=[]
1277         local count=0
1278         gen=$(lctl get_param mdc.$FSNAME-MDT*-mdc-*.import | grep generation |
1279               awk '/generation/{print $2}')
1280         for g in $gen; do
1281                 generation[count]=$g
1282                 let count=count+1
1283         done
1284
1285         test_mkdir $MOUNT1/$tdir
1286         cancel_lru_locks mdc
1287
1288         # Let's initiate -EINTR situation by setting fail_loc and take
1289         # write lock on same file from same client. This will not cause
1290         # bl_ast yet as lock is already in local cache.
1291         #define OBD_FAIL_LDLM_INTR_CP_AST        0x317
1292         do_facet client "lctl set_param fail_loc=0x80000317"
1293         local timeout=$(do_facet $SINGLEMDS lctl get_param  -n timeout)
1294         let timeout=timeout*3
1295         local nr=0
1296         while test $nr -lt 10; do
1297                 log "Race attempt $nr"
1298                 local blk1=$(lctl get_param -n ldlm.services.ldlm_cbd.stats |
1299                              awk '/ldlm_bl_callback/ { print $2 }')
1300                 test "x$blk1" = "x" && blk1=0
1301                 createmany -o $MOUNT2/$tdir/a 4000 &
1302                 pid1=$!
1303                 sleep 1
1304
1305                 # Let's make conflict and bl_ast
1306                 ls -la $MOUNT1/$tdir > /dev/null &
1307                 pid2=$!
1308
1309                 log "Wait for $pid1 $pid2 for $timeout sec..."
1310                 sleep $timeout
1311                 kill -9 $pid1 $pid2 > /dev/null 2>&1
1312                 wait
1313                 local blk2=$(lctl get_param -n ldlm.services.ldlm_cbd.stats |
1314                              awk '/ldlm_bl_callback/ { print $2 }')
1315                 test "x$blk2" = "x" && blk2=0
1316                 test $blk2 -gt $blk1 && break
1317                 rm -fr $MOUNT1/$tdir
1318                 cancel_lru_locks mdc
1319                 let nr=nr+1
1320         done
1321         do_facet client "lctl set_param fail_loc=0x0"
1322         df -h $MOUNT1 $MOUNT2
1323         count=0
1324         gen=$(lctl get_param mdc.$FSNAME-MDT*-mdc-*.import | grep generation |
1325                 awk '/generation/{print $2}')
1326         for g in $gen; do
1327             if ! test "$g" -eq "${generation[count]}"; then
1328                 list=$(lctl list_param mdc.$FSNAME-MDT*-mdc-*.import)
1329                 local c=0
1330                 for imp in $list; do
1331                         if [ $c = $count ]; then
1332                                 break
1333                         fi
1334                         c=c+1
1335                 done
1336                 imp=$(echo "$imp" | awk -F"." '{print $2}')
1337                 error "Eviction happened on import $imp"
1338             fi
1339             let count=count+1
1340         done
1341 }
1342 run_test 35 "-EINTR cp_ast vs. bl_ast race does not evict client"
1343
1344 test_36() { #bug 16417
1345         local SIZE
1346         local SIZE_B
1347         local i
1348
1349         test_mkdir $DIR1/$tdir
1350         $LFS setstripe -c -1 $DIR1/$tdir
1351         i=0
1352         SIZE=50
1353         let SIZE_B=SIZE*1024*1024
1354         sync; sleep 2; sync # wait for delete thread
1355         wait_mds_ost_sync || error "wait_mds_ost_sync failed"
1356         wait_destroy_complete || error "wait_destroy_complete failed"
1357
1358         while [ $i -le 10 ]; do
1359                 lctl mark "start test - cycle ($i)"
1360                 local before=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1361                 dd if=/dev/zero of=$DIR1/$tdir/$tfile bs=1M count=$SIZE ||
1362                         error "dd $DIR1/$tdir/$tfile ${SIZE}MB failed"
1363                 sync          # sync data from client cache
1364                 sync_all_data # sync data from server cache (delayed allocation)
1365                 sleep 2
1366                 local after_dd=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1367                 multiop_bg_pause $DIR2/$tdir/$tfile O_r${SIZE_B}c || return 3
1368                 read_pid=$!
1369                 rm -f $DIR1/$tdir/$tfile
1370                 kill -USR1 $read_pid
1371                 wait $read_pid
1372                 sync; sleep 2; sync # Ensure new statfs
1373                 wait_delete_completed
1374                 local after=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1375                 echo "*** cycle($i) *** before($before) after_dd($after_dd)" \
1376                         "after($after)"
1377                 # this free space! not used
1378                 (( $after_dd <= $after)) ||
1379                         error "space leaked after_dd:$after_dd > after:$after"
1380                 let i=i+1
1381         done
1382 }
1383 run_test 36 "handle ESTALE/open-unlink correctly"
1384
1385 test_37() { # bug 18695
1386         test_mkdir $DIR1/$tdir
1387         multiop_bg_pause $DIR1/$tdir D_c || return 1
1388         MULTIPID=$!
1389         # create large directory (32kB seems enough from e2fsck, ~= 1000 files)
1390         createmany -m $DIR2/$tdir/f 10000
1391         # set mtime/atime backward
1392         touch -t 198001010000 $DIR2/$tdir
1393         kill -USR1 $MULTIPID
1394         nr_files=`lfs find $DIR1/$tdir -type f | wc -l`
1395         [ $nr_files -eq 10000 ] || error "$nr_files != 10000 truncated directory?"
1396
1397 }
1398 run_test 37 "check i_size is not updated for directory on close (bug 18695) =============="
1399
1400 # this should be set to past
1401 TEST_39_MTIME=`date -d "1 year ago" +%s`
1402
1403 # bug 11063
1404 test_39a() {
1405         local client1=${CLIENT1:-`hostname`}
1406         local client2=${CLIENT2:-`hostname`}
1407
1408         do_node $client1 "touch $DIR1/$tfile"
1409
1410         do_node $client1 "touch -m -d @$TEST_39_MTIME $DIR1/$tfile"
1411         local mtime1=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1412         [ "$mtime1" = $TEST_39_MTIME ] || \
1413                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
1414
1415         local d1=`do_node $client1 date +%s`
1416         do_node $client1 'echo hello >> '$DIR1/$tfile
1417         local d2=`do_node $client1 date +%s`
1418
1419         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1420         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
1421                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
1422
1423         do_node $client1 "mv $DIR1/$tfile $DIR1/$tfile-1"
1424
1425         for (( i=0; i < 2; i++ )) ; do
1426                 local mtime3=`do_node $client2 "stat -c %Y $DIR1/$tfile-1"`
1427                 [ "$mtime2" = "$mtime3" ] || \
1428                         error "mtime ($mtime2) changed (to $mtime3) on rename"
1429
1430                 cancel_lru_locks osc
1431                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1432         done
1433 }
1434 run_test 39a "test from 11063 =================================="
1435
1436 test_39b() {
1437         local client1=${CLIENT1:-`hostname`}
1438         local client2=${CLIENT2:-`hostname`}
1439
1440         touch $DIR1/$tfile
1441
1442         local mtime1=`stat -c %Y $DIR1/$tfile`
1443         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1444
1445         sleep 1
1446         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
1447
1448         for (( i=0; i < 2; i++ )) ; do
1449                 local mtime3=`stat -c %Y $DIR1/$tfile`
1450                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1451
1452                 [ "$mtime3" = "$mtime4" ] || \
1453                         error "different mtime on clients: $mtime3, $mtime4"
1454                 [ "$mtime3" = $TEST_39_MTIME ] || \
1455                         error "lost mtime: $mtime3, should be $TEST_39_MTIME"
1456
1457                 cancel_lru_locks osc
1458                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1459         done
1460 }
1461 run_test 39b "11063 problem 1 =================================="
1462
1463 test_39c() {
1464         local client1=${CLIENT1:-`hostname`}
1465         local client2=${CLIENT2:-`hostname`}
1466
1467         echo hello > $DIR1/$tfile
1468
1469         local mtime1=`stat -c %Y $DIR1/$tfile`
1470         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1471         [ "$mtime1" = "$mtime2" ] || \
1472                 error "create: different mtime on clients: $mtime1, $mtime2"
1473
1474         sleep 1
1475         $TRUNCATE $DIR1/$tfile 1
1476
1477         for (( i=0; i < 2; i++ )) ; do
1478                 local mtime3=`stat -c %Y $DIR1/$tfile`
1479                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1480
1481                 [ "$mtime3" = "$mtime4" ] || \
1482                         error "different mtime on clients: $mtime3, $mtime4"
1483                 [ "$mtime3" -gt $mtime2 ] || \
1484                         error "truncate did not update mtime: $mtime2, $mtime3"
1485
1486                 cancel_lru_locks osc
1487                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1488         done
1489 }
1490 run_test 39c "check truncate mtime update ======================"
1491
1492 test_39d() { # LU-7310
1493         touch $DIR1/$tfile
1494         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
1495
1496         local mtime1=$(stat -c %Y $DIR2/$tfile)
1497         [ "$mtime1" = $TEST_39_MTIME ] ||
1498                 error "mtime: $mtime1, should be $TEST_39_MTIME"
1499
1500         # force sync write
1501         # define OBD_FAIL_OSC_NO_GRANT 0x411
1502         $LCTL set_param fail_loc=0x411
1503
1504         local d1=$(date +%s)
1505         echo hello >> $DIR1/$tfile
1506         local d2=$(date +%s)
1507
1508         $LCTL set_param fail_loc=0
1509
1510         cancel_lru_locks $OSC
1511
1512         local mtime2=$(stat -c %Y $DIR2/$tfile)
1513         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] ||
1514                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
1515 }
1516 run_test 39d "sync write should update mtime"
1517
1518 pdo_sched() {
1519         # how long 40-47 take with specific delay
1520         # sleep 0.1 # 78s
1521         # sleep 0.2 # 103s
1522         # sleep 0.3 # 124s
1523         sleep 0.5 # 164s
1524 }
1525
1526 # for pdo testing, we must cancel MDT-MDT locks as well as client locks to
1527 # avoid unexpected delays due to previous tests
1528 pdo_lru_clear() {
1529         cancel_lru_locks mdc
1530         do_nodes $(comma_list $(mdts_nodes)) \
1531                 $LCTL set_param -n ldlm.namespaces.*mdt*.lru_size=clear
1532         do_nodes $(comma_list $(mdts_nodes)) \
1533                 $LCTL get_param ldlm.namespaces.*mdt*.lock_unused_count \
1534                         ldlm.namespaces.*mdt*.lock_count | grep -v '=0'
1535 }
1536
1537 # check that pid exists hence second operation wasn't blocked by first one
1538 # if it is so then there is no conflict, return 0
1539 # else second operation is conflicting with first one, return 1
1540 check_pdo_conflict() {
1541         local pid=$1
1542         local conflict=0
1543         pdo_sched # to ensure OP1 is finished on client if OP2 is blocked by OP1
1544         if [[ `ps --pid $pid | wc -l` == 1 ]]; then
1545                 conflict=1
1546                 echo "Conflict"
1547         else
1548                 echo "No conflict"
1549         fi
1550         return $conflict
1551 }
1552
1553 # pdirop tests
1554 # test 40: check non-blocking operations
1555 test_40a() {
1556         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1557
1558         mkdir_on_mdt0 $DIR2/$tdir
1559         pdo_lru_clear
1560 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1561         do_nodes $(comma_list $(mdts_nodes)) \
1562                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1563         mkdir $DIR1/$tdir/$tfile &
1564         PID1=$!; pdo_sched
1565         touch $DIR2/$tdir/$tfile-2
1566         check_pdo_conflict $PID1 || error "create is blocked"
1567         mkdir $DIR2/$tdir/$tfile-3
1568         check_pdo_conflict $PID1 || error "mkdir is blocked"
1569         link $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-4
1570         check_pdo_conflict $PID1 || error "link is blocked"
1571         mv $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-5
1572         check_pdo_conflict $PID1 || error "rename is blocked"
1573         stat $DIR2/$tdir/$tfile-3 $DIR2/$tdir/$tfile-4 > /dev/null
1574         check_pdo_conflict $PID1 || error "getattr is blocked"
1575         rm $DIR2/$tdir/$tfile-4 $DIR2/$tdir/$tfile-5
1576         rmdir $DIR2/$tdir/$tfile-3
1577         check_pdo_conflict $PID1 || error "unlink is blocked"
1578
1579         #  all operations above shouldn't wait the first one
1580         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1581         do_nodes $(comma_list $(mdts_nodes)) \
1582                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1583         wait $PID1
1584         rm -rf $DIR/$tdir
1585         return 0
1586 }
1587 run_test 40a "pdirops: create vs others =============="
1588
1589 test_40b() {
1590         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1591
1592         mkdir_on_mdt0 $DIR2/$tdir
1593         pdo_lru_clear
1594 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1595         do_nodes $(comma_list $(mdts_nodes)) \
1596                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1597         touch $DIR1/$tdir/$tfile &
1598         PID1=$!; pdo_sched
1599         # open|create
1600         touch $DIR2/$tdir/$tfile-2
1601         check_pdo_conflict $PID1 || error "create is blocked"
1602         mkdir $DIR2/$tdir/$tfile-3
1603         check_pdo_conflict $PID1 || error "mkdir is blocked"
1604         link $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-4
1605         check_pdo_conflict $PID1 || error "link is blocked"
1606         mv $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-5
1607         check_pdo_conflict $PID1 || error "rename is blocked"
1608         stat $DIR2/$tdir/$tfile-3 $DIR2/$tdir/$tfile-4 > /dev/null
1609         check_pdo_conflict $PID1 || error "getattr is blocked"
1610         rm $DIR2/$tdir/$tfile-4 $DIR2/$tdir/$tfile-5
1611         rmdir $DIR2/$tdir/$tfile-3
1612         check_pdo_conflict $PID1 || error "unlink is blocked"
1613         # all operations above shouldn't wait the first one
1614
1615         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1616         do_nodes $(comma_list $(mdts_nodes)) \
1617                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1618         wait $PID1
1619         rm -rf $DIR/$tdir
1620         return 0
1621 }
1622 run_test 40b "pdirops: open|create and others =============="
1623
1624 test_40c() {
1625         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1626
1627         mkdir_on_mdt0 $DIR2/$tdir
1628         pdo_lru_clear
1629         touch $DIR1/$tdir/$tfile
1630 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1631         do_nodes $(comma_list $(mdts_nodes)) \
1632                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1633         link $DIR1/$tdir/$tfile $DIR1/$tdir/$tfile-0 &
1634         PID1=$!; pdo_sched
1635         # open|create
1636         touch $DIR2/$tdir/$tfile-2
1637         check_pdo_conflict $PID1 || error "create is blocked"
1638         mkdir $DIR2/$tdir/$tfile-3
1639         check_pdo_conflict $PID1 || error "mkdir is blocked"
1640         link $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-4
1641         check_pdo_conflict $PID1 || error "link is blocked"
1642         mv $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-5
1643         check_pdo_conflict $PID1 || error "rename is blocked"
1644         stat $DIR2/$tdir/$tfile-3 $DIR2/$tdir/$tfile-4 > /dev/null
1645         check_pdo_conflict $PID1 || error "getattr is blocked"
1646         rm $DIR2/$tdir/$tfile-4 $DIR2/$tdir/$tfile-5
1647         rmdir $DIR2/$tdir/$tfile-3
1648         check_pdo_conflict $PID1 || error "unlink is blocked"
1649
1650         # all operations above shouldn't wait the first one
1651         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1652         do_nodes $(comma_list $(mdts_nodes)) \
1653                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1654         wait $PID1
1655         rm -rf $DIR/$tdir
1656         return 0
1657 }
1658 run_test 40c "pdirops: link and others =============="
1659
1660 test_40d() {
1661         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1662
1663         mkdir_on_mdt0 $DIR2/$tdir
1664         pdo_lru_clear
1665         touch $DIR1/$tdir/$tfile
1666 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1667         do_nodes $(comma_list $(mdts_nodes)) \
1668                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1669         rm $DIR1/$tdir/$tfile &
1670         PID1=$!; pdo_sched
1671         # open|create
1672         touch $DIR2/$tdir/$tfile-2
1673         check_pdo_conflict $PID1 || error "create is blocked"
1674         mkdir $DIR2/$tdir/$tfile-3
1675         check_pdo_conflict $PID1 || error "mkdir is blocked"
1676         link $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-4
1677         check_pdo_conflict $PID1 || error "link is blocked"
1678         mv $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-5
1679         check_pdo_conflict $PID1 || error "rename is blocked"
1680         stat $DIR2/$tdir/$tfile-3 $DIR2/$tdir/$tfile-4 > /dev/null
1681         check_pdo_conflict $PID1 || error "getattr is blocked"
1682         rm $DIR2/$tdir/$tfile-4 $DIR2/$tdir/$tfile-5
1683         rmdir $DIR2/$tdir/$tfile-3
1684         check_pdo_conflict $PID1 || error "unlink is blocked"
1685
1686         # all operations above shouldn't wait the first one
1687         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1688         do_nodes $(comma_list $(mdts_nodes)) \
1689                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1690         wait $PID1
1691         return 0
1692 }
1693 run_test 40d "pdirops: unlink and others =============="
1694
1695 test_40e() {
1696         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1697
1698         mkdir_on_mdt0 $DIR2/$tdir
1699         pdo_lru_clear
1700         touch $DIR1/$tdir/$tfile
1701 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1702         do_nodes $(comma_list $(mdts_nodes)) \
1703                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1704         mv $DIR1/$tdir/$tfile $DIR1/$tdir/$tfile-0 &
1705         PID1=$!; pdo_sched
1706         # open|create
1707         touch $DIR2/$tdir/$tfile-2
1708         check_pdo_conflict $PID1 || error "create is blocked"
1709         mkdir $DIR2/$tdir/$tfile-3
1710         check_pdo_conflict $PID1 || error "mkdir is blocked"
1711         link $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile-4
1712         check_pdo_conflict $PID1 || error "link is blocked"
1713         stat $DIR2/$tdir/$tfile-3 $DIR2/$tdir/$tfile-4 > /dev/null
1714         check_pdo_conflict $PID1 || error "getattr is blocked"
1715         rm $DIR2/$tdir/$tfile-4 $DIR2/$tdir/$tfile-2
1716         rmdir $DIR2/$tdir/$tfile-3
1717         check_pdo_conflict $PID1 || error "unlink is blocked"
1718
1719        # all operations above shouldn't wait the first one
1720         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1721         do_nodes $(comma_list $(mdts_nodes)) \
1722                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1723         wait $PID1
1724         rm -rf $DIR/$tdir
1725         return 0
1726 }
1727 run_test 40e "pdirops: rename and others =============="
1728
1729 # test 41: create blocking operations
1730 test_41a() {
1731         pdo_lru_clear
1732 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1733         do_nodes $(comma_list $(mdts_nodes)) \
1734                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1735         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1736         PID1=$! ; pdo_sched
1737         mkdir $DIR2/$tfile &
1738         PID2=$! ; pdo_sched
1739         do_nodes $(comma_list $(mdts_nodes)) \
1740                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1741         check_pdo_conflict $PID1 && { wait $PID1; echo "mkdir isn't blocked"; }
1742         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1743         rm -rf $DIR/$tfile*
1744         return 0
1745 }
1746 run_test 41a "pdirops: create vs mkdir =============="
1747
1748 test_41b() {
1749         pdo_lru_clear
1750 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1751         do_nodes $(comma_list $(mdts_nodes)) \
1752                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1753         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1754         PID1=$! ; pdo_sched
1755         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1756         PID2=$! ; pdo_sched
1757         do_nodes $(comma_list $(mdts_nodes)) \
1758                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1759         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1760         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1761         rm -rf $DIR/$tfile*
1762         return 0
1763 }
1764 run_test 41b "pdirops: create vs create =============="
1765
1766 test_41c() {
1767         pdo_lru_clear
1768         touch $DIR1/$tfile-2
1769 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1770         do_nodes $(comma_list $(mdts_nodes)) \
1771                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1772         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1773         PID1=$! ; pdo_sched
1774         link $DIR2/$tfile-2 $DIR2/$tfile &
1775         PID2=$! ; pdo_sched
1776         do_nodes $(comma_list $(mdts_nodes)) \
1777                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1778         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1779         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1780         rm -rf $DIR/$tfile*
1781         return 0
1782 }
1783 run_test 41c "pdirops: create vs link =============="
1784
1785 test_41d() {
1786         pdo_lru_clear
1787 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1788         do_nodes $(comma_list $(mdts_nodes)) \
1789                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1790         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1791         PID1=$! ; pdo_sched
1792         rm $DIR2/$tfile &
1793         PID2=$! ; pdo_sched
1794         do_nodes $(comma_list $(mdts_nodes)) \
1795                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1796         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1797         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1798         rm -rf $DIR/$tfile*
1799         return 0
1800 }
1801 run_test 41d "pdirops: create vs unlink =============="
1802
1803 test_41e() {
1804         pdo_lru_clear
1805         touch $DIR1/$tfile-2
1806 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1807         do_nodes $(comma_list $(mdts_nodes)) \
1808                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1809         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1810         PID1=$! ; pdo_sched
1811         mv $DIR2/$tfile-2 $DIR2/$tfile &
1812         PID2=$! ; pdo_sched
1813         do_nodes $(comma_list $(mdts_nodes)) \
1814                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1815         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1816         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1817         rm -rf $DIR/$tfile*
1818         return 0
1819 }
1820 run_test 41e "pdirops: create and rename (tgt) =============="
1821
1822 test_41f() {
1823         pdo_lru_clear
1824 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1825         do_nodes $(comma_list $(mdts_nodes)) \
1826                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1827         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1828         PID1=$! ; pdo_sched
1829         mv $DIR2/$tfile $DIR2/$tfile-2 &
1830         PID2=$! ; pdo_sched
1831         do_nodes $(comma_list $(mdts_nodes)) \
1832                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1833         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1834         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1835         rm -rf $DIR/$tfile*
1836         return 0
1837 }
1838 run_test 41f "pdirops: create and rename (src) =============="
1839
1840 test_41g() {
1841         pdo_lru_clear
1842 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1843         do_nodes $(comma_list $(mdts_nodes)) \
1844                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1845         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1846         PID1=$! ; pdo_sched
1847         stat $DIR2/$tfile > /dev/null &
1848         PID2=$! ; pdo_sched
1849         do_nodes $(comma_list $(mdts_nodes)) \
1850                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1851         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1852         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
1853         rm -rf $DIR/$tfile*
1854         return 0
1855 }
1856 run_test 41g "pdirops: create vs getattr =============="
1857
1858 test_41h() {
1859         pdo_lru_clear
1860 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1861         do_nodes $(comma_list $(mdts_nodes)) \
1862                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1863         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1864         PID1=$! ; pdo_sched
1865         ls -lia $DIR2/ > /dev/null &
1866         PID2=$! ; pdo_sched
1867         do_nodes $(comma_list $(mdts_nodes)) \
1868                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1869         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1870         wait $PID2
1871         rm -rf $DIR/$tfile*
1872         return 0
1873 }
1874 run_test 41h "pdirops: create vs readdir =============="
1875
1876 sub_test_41i() {
1877         local PID1 PID2
1878         local fail_loc="$1"
1879         local ret=0
1880
1881         do_nodes $(comma_list $(mdts_nodes)) \
1882                 "lctl set_param -n fail_loc=${fail_loc} || true" &>/dev/null
1883
1884         $MULTIOP $DIR1/$tfile oO_CREAT:O_EXCL:c 2>/dev/null &
1885         PID1=$!
1886         sleep 0.2
1887         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c 2>/dev/null &
1888         PID2=$!
1889
1890         if ! wait $PID1 && ! wait $PID2; then
1891                 echo "Both creates failed (1 should fail, 1 should succeed)"
1892                 ret=1
1893         elif wait $PID1 && wait $PID2; then
1894                 echo "Both creates succeeded (1 should fail, 1 should succeed)"
1895                 ret=2
1896         fi
1897
1898         #Clean
1899         do_nodes $(comma_list $(mdts_nodes)) \
1900                 "lctl set_param -n fail_loc=0x0 || true" &>/dev/null
1901         rm -f $DIR/$tfile
1902
1903         return $ret
1904 }
1905
1906 test_41i() {
1907         [[ $MDS1_VERSION -le $(version_code 2.13.56) ]] ||
1908                 skip "Need MDS version newer than 2.13.56"
1909         local msg fail_loc
1910
1911 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN         0x169
1912 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN2        0x16a
1913         for fail_loc in "0x80000169" "0x8000016a"; do
1914                 echo "Begin 100 tests with fail_loc=$fail_loc"
1915                 printf "Progress: "
1916                 for i in {1..100}; do
1917                         printf "*"
1918                         msg=$(sub_test_41i "$fail_loc") ||
1919                                 { echo; error "iter=$i : $msg"; }
1920                 done
1921                 echo
1922         done
1923 }
1924 run_test 41i "reint_open: create vs create"
1925
1926
1927 # test 42: unlink and blocking operations
1928 test_42a() {
1929         pdo_lru_clear
1930 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1931         do_nodes $(comma_list $(mdts_nodes)) \
1932                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1933         mkdir $DIR1/$tfile &
1934         PID1=$! ; pdo_sched
1935         mkdir $DIR2/$tfile &
1936         PID2=$! ; pdo_sched
1937         do_nodes $(comma_list $(mdts_nodes)) \
1938                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1939         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1940         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1941         rm -rf $DIR/$tfile*
1942         return 0
1943 }
1944 run_test 42a "pdirops: mkdir vs mkdir =============="
1945
1946 test_42b() {
1947         pdo_lru_clear
1948 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1949         do_nodes $(comma_list $(mdts_nodes)) \
1950                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1951         mkdir $DIR1/$tfile &
1952         PID1=$! ; pdo_sched
1953         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1954         PID2=$! ; pdo_sched
1955         do_nodes $(comma_list $(mdts_nodes)) \
1956                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1957         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1958         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1959         rm -rf $DIR/$tfile*
1960         return 0
1961 }
1962 run_test 42b "pdirops: mkdir vs create =============="
1963
1964 test_42c() {
1965         pdo_lru_clear
1966         touch $DIR1/$tfile-2
1967 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1968         do_nodes $(comma_list $(mdts_nodes)) \
1969                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1970         mkdir $DIR1/$tfile &
1971         PID1=$! ; pdo_sched
1972         link $DIR2/$tfile-2 $DIR2/$tfile &
1973         PID2=$! ; pdo_sched
1974         do_nodes $(comma_list $(mdts_nodes)) \
1975                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1976         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1977         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1978         rm -rf $DIR/$tfile*
1979         return 0
1980 }
1981 run_test 42c "pdirops: mkdir vs link =============="
1982
1983 test_42d() {
1984         pdo_lru_clear
1985 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1986         do_nodes $(comma_list $(mdts_nodes)) \
1987                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1988         mkdir $DIR1/$tfile &
1989         PID1=$! ; pdo_sched
1990         rmdir $DIR2/$tfile &
1991         PID2=$! ; pdo_sched
1992         do_nodes $(comma_list $(mdts_nodes)) \
1993                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1994         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1995         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1996         rm -rf $DIR/$tfile*
1997         return 0
1998 }
1999 run_test 42d "pdirops: mkdir vs unlink =============="
2000
2001 test_42e() {
2002         pdo_lru_clear
2003         touch $DIR1/$tfile-2
2004 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2005         do_nodes $(comma_list $(mdts_nodes)) \
2006                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2007         mkdir $DIR1/$tfile &
2008         PID1=$! ; pdo_sched
2009         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
2010         PID2=$! ; pdo_sched
2011         do_nodes $(comma_list $(mdts_nodes)) \
2012                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2013         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2014         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2015         rm -rf $DIR/$tfile*
2016         return 0
2017 }
2018 run_test 42e "pdirops: mkdir and rename (tgt) =============="
2019
2020 test_42f() {
2021         pdo_lru_clear
2022 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2023         do_nodes $(comma_list $(mdts_nodes)) \
2024                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2025         mkdir $DIR1/$tfile &
2026         PID1=$! ; pdo_sched
2027         mv $DIR2/$tfile $DIR2/$tfile-2 &
2028         PID2=$! ; pdo_sched
2029         do_nodes $(comma_list $(mdts_nodes)) \
2030                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2031         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2032         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2033         rm -rf $DIR/$tfile*
2034         return 0
2035 }
2036 run_test 42f "pdirops: mkdir and rename (src) =============="
2037
2038 test_42g() {
2039         mkdir_on_mdt0 $DIR1/$tdir
2040         pdo_lru_clear
2041 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2042         do_nodes $(comma_list $(mdts_nodes)) \
2043                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2044         mkdir $DIR1/$tdir/$tfile &
2045         PID1=$! ; pdo_sched
2046         stat $DIR2/$tdir/$tfile > /dev/null &
2047         PID2=$! ; pdo_sched
2048         do_nodes $(comma_list $(mdts_nodes)) \
2049                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2050         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2051         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2052         rm -rf $DIR/$tdir
2053 }
2054 run_test 42g "pdirops: mkdir vs getattr =============="
2055
2056 test_42h() {
2057         pdo_lru_clear
2058 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2059         do_nodes $(comma_list $(mdts_nodes)) \
2060                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2061         mkdir $DIR1/$tfile &
2062         PID1=$! ; pdo_sched
2063         ls -lia $DIR2/ > /dev/null &
2064         PID2=$! ; pdo_sched
2065         do_nodes $(comma_list $(mdts_nodes)) \
2066                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2067         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2068         wait $PID2
2069         rm -rf $DIR/$tfile*
2070         return 0
2071 }
2072 run_test 42h "pdirops: mkdir vs readdir =============="
2073
2074 # test 43: rmdir,mkdir won't return -EEXIST
2075 test_43a() {
2076         for i in {1..1000}; do
2077                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2078                 rmdir $DIR2/$tdir || error "rmdir $tdir failed"
2079         done
2080         return 0
2081 }
2082 run_test 43a "rmdir,mkdir doesn't return -EEXIST =============="
2083
2084 test_43b() {
2085         pdo_lru_clear
2086         touch $DIR1/$tfile
2087 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2088         do_nodes $(comma_list $(mdts_nodes)) \
2089                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2090         rm $DIR1/$tfile &
2091         PID1=$! ; pdo_sched
2092         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2093         PID2=$! ; pdo_sched
2094         do_nodes $(comma_list $(mdts_nodes)) \
2095                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2096         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2097         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2098         rm -rf $DIR/$tfile*
2099         return 0
2100 }
2101 run_test 43b "pdirops: unlink vs create =============="
2102
2103 test_43c() {
2104         pdo_lru_clear
2105         touch $DIR1/$tfile
2106         touch $DIR1/$tfile-2
2107 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2108         do_nodes $(comma_list $(mdts_nodes)) \
2109                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2110         rm $DIR1/$tfile &
2111         PID1=$! ; pdo_sched
2112         link $DIR2/$tfile-2 $DIR2/$tfile &
2113         PID2=$! ; pdo_sched
2114         do_nodes $(comma_list $(mdts_nodes)) \
2115                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2116         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2117         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2118         rm -rf $DIR/$tfile*
2119         return 0
2120 }
2121 run_test 43c "pdirops: unlink vs link =============="
2122
2123 test_43d() {
2124         pdo_lru_clear
2125         touch $DIR1/$tfile
2126 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2127         do_nodes $(comma_list $(mdts_nodes)) \
2128                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2129         rm $DIR1/$tfile &
2130         PID1=$! ; pdo_sched
2131         rm $DIR2/$tfile &
2132         PID2=$! ; pdo_sched
2133         do_nodes $(comma_list $(mdts_nodes)) \
2134                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2135         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2136         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2137         rm -rf $DIR/$tfile*
2138         return 0
2139 }
2140 run_test 43d "pdirops: unlink vs unlink =============="
2141
2142 test_43e() {
2143         pdo_lru_clear
2144         touch $DIR1/$tfile
2145         touch $DIR1/$tfile-2
2146 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2147         do_nodes $(comma_list $(mdts_nodes)) \
2148                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2149         rm $DIR1/$tfile &
2150         PID1=$! ; pdo_sched
2151         mv -u $DIR2/$tfile-2 $DIR2/$tfile &
2152         PID2=$! ; pdo_sched
2153         do_nodes $(comma_list $(mdts_nodes)) \
2154                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2155         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2156         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2157         rm -rf $DIR/$tfile*
2158         return 0
2159 }
2160 run_test 43e "pdirops: unlink and rename (tgt) =============="
2161
2162 test_43f() {
2163         pdo_lru_clear
2164         touch $DIR1/$tfile
2165 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2166         do_nodes $(comma_list $(mdts_nodes)) \
2167                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2168         rm $DIR1/$tfile &
2169         PID1=$! ; pdo_sched
2170         mv $DIR2/$tfile $DIR2/$tfile-2 &
2171         PID2=$! ; pdo_sched
2172         do_nodes $(comma_list $(mdts_nodes)) \
2173                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2174         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2175         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2176         rm -rf $DIR/$tfile*
2177         return 0
2178 }
2179 run_test 43f "pdirops: unlink and rename (src) =============="
2180
2181 test_43g() {
2182         pdo_lru_clear
2183         touch $DIR1/$tfile
2184 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2185         do_nodes $(comma_list $(mdts_nodes)) \
2186                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2187         rm $DIR1/$tfile &
2188         PID1=$! ; pdo_sched
2189         stat $DIR2/$tfile > /dev/null &
2190         PID2=$! ; pdo_sched
2191         do_nodes $(comma_list $(mdts_nodes)) \
2192                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2193         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2194         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2195         rm -rf $DIR/$tfile*
2196         return 0
2197 }
2198 run_test 43g "pdirops: unlink vs getattr =============="
2199
2200 test_43h() {
2201         pdo_lru_clear
2202         touch $DIR1/$tfile
2203 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2204         do_nodes $(comma_list $(mdts_nodes)) \
2205                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2206         rm $DIR1/$tfile &
2207         PID1=$! ; pdo_sched
2208         ls -lia $DIR2/ > /dev/null &
2209         PID2=$! ; pdo_sched
2210         do_nodes $(comma_list $(mdts_nodes)) \
2211                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2212         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2213         wait $PID2
2214         rm -rf $DIR/$tfile*
2215         return 0
2216 }
2217 run_test 43h "pdirops: unlink vs readdir =============="
2218
2219 test_43i() {
2220         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2221         pdo_lru_clear
2222         touch $DIR1/$tfile
2223 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2224         do_nodes $(comma_list $(mdts_nodes)) \
2225                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2226         rm $DIR1/$tfile &
2227         PID1=$! ; pdo_sched
2228         $LFS mkdir -i 1 $DIR2/$tfile &
2229         PID2=$! ; pdo_sched
2230         do_nodes $(comma_list $(mdts_nodes)) \
2231                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2232         check_pdo_conflict $PID1 &&
2233                 { wait $PID1; error "remote mkdir isn't blocked"; }
2234         wait $PID2 ; [ $? -eq 0 ] || error "remote mkdir must succeed"
2235         rm -rf $DIR/$tfile*
2236         return 0
2237 }
2238 run_test 43i "pdirops: unlink vs remote mkdir"
2239
2240 test_43j() {
2241         [[ $MDS1_VERSION -lt $(version_code 2.13.52) ]] &&
2242                 skip "Need MDS version newer than 2.13.52"
2243
2244         mkdir_on_mdt0 $DIR1/$tdir
2245         for i in {1..100}; do
2246 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_CREATE_RACE         0x167
2247                 do_nodes $(comma_list $(mdts_nodes)) \
2248                         "lctl set_param -n fail_loc=0x80000167 2>/dev/null ||
2249                                 true"
2250                 OK=0
2251                 mkdir $DIR1/$tdir/sub &
2252                 PID1=$!
2253                 mkdir $DIR2/$tdir/sub && ((OK++))
2254                 wait $PID1 && ((OK++))
2255                 (( OK == 1 )) || error "exactly one mkdir should succeed"
2256
2257                 rmdir $DIR1/$tdir/sub || error "rmdir failed"
2258         done
2259         return 0
2260 }
2261 run_test 43j "racy mkdir return EEXIST =============="
2262
2263 sub_test_43k() {
2264         local PID1 PID2
2265         local fail_loc="$1"
2266         local ret=0
2267
2268         # We test in a separate directory to be able to unblock server thread in
2269         # cfs_race() if LCK_PW is taken on the parent by mdt_reint_unlink.
2270         test_mkdir $DIR2/$tdir
2271         touch $DIR2/$tdir/$tfile
2272
2273         do_nodes $(comma_list $(mdts_nodes)) \
2274                 "lctl set_param -n fail_loc=${fail_loc} || true" &>/dev/null
2275         echo content > $DIR1/$tdir/$tfile & PID1=$!
2276         pdo_sched
2277         multiop $DIR2/$tdir/$tfile u & PID2=$!
2278
2279         wait $PID1 ||
2280                 { ret=$?; \
2281                 echo -n "overwriting $tfile should succeed (err=$ret); "; }
2282         wait $PID2 ||
2283                 { ret=$?; \
2284                 echo -n "unlinking $tfile should succeed (err=$ret);"; }
2285
2286         #Clean
2287         do_nodes $(comma_list $(mdts_nodes)) \
2288                 "lctl set_param -n fail_loc=0x0 || true" &>/dev/null
2289         rm -rf $DIR/$tdir
2290
2291         return $ret
2292 }
2293
2294 test_43k() {
2295         [[ $MDS1_VERSION -le $(version_code 2.13.56) ]] ||
2296                 skip "Need MDS version newer than 2.13.56"
2297         local msg fail_loc
2298
2299 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN         0x169
2300 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN2        0x16a
2301         for fail_loc in "0x80000169" "0x8000016a"; do
2302                 echo "Begin 100 tests with fail_loc=$fail_loc"
2303                 printf "Progress: "
2304                 for i in {1..100}; do
2305                         printf "*"
2306                         msg=$(sub_test_43k "$fail_loc") ||
2307                                 { echo; error "iter=$i : $msg"; }
2308                 done
2309                 echo
2310         done
2311
2312         #Clean
2313         reset_fail_loc
2314
2315         return 0
2316 }
2317 run_test 43k "unlink vs create"
2318
2319 # test 44: rename tgt and blocking operations
2320 test_44a() {
2321         pdo_lru_clear
2322         touch $DIR1/$tfile-2
2323 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
2324         do_nodes $(comma_list $(mdts_nodes)) \
2325                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2326         mv $DIR1/$tfile-2 $DIR1/$tfile &
2327         PID1=$! ; pdo_sched
2328         mkdir $DIR2/$tfile &
2329         PID2=$! ; pdo_sched
2330         do_nodes $(comma_list $(mdts_nodes)) \
2331                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2332         check_pdo_conflict $PID1 && { wait $PID1; date;error "mkdir isn't blocked"; }
2333         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2334         date
2335         rm -rf $DIR/$tfile*
2336         return 0
2337 }
2338 run_test 44a "pdirops: rename tgt vs mkdir =============="
2339
2340 test_44b() {
2341         pdo_lru_clear
2342         touch $DIR1/$tfile-2
2343 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2344         do_nodes $(comma_list $(mdts_nodes)) \
2345                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2346         mv $DIR1/$tfile-2 $DIR1/$tfile &
2347         PID1=$! ; pdo_sched
2348         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2349         PID2=$! ; pdo_sched
2350         do_nodes $(comma_list $(mdts_nodes)) \
2351                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2352         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2353         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2354         rm -rf $DIR/$tfile*
2355         return 0
2356 }
2357 run_test 44b "pdirops: rename tgt vs create =============="
2358
2359 test_44c() {
2360         pdo_lru_clear
2361         touch $DIR1/$tfile-2
2362         touch $DIR1/$tfile-3
2363 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2364         do_nodes $(comma_list $(mdts_nodes)) \
2365                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2366         mv $DIR1/$tfile-2 $DIR1/$tfile &
2367         PID1=$! ; pdo_sched
2368         link $DIR2/$tfile-3 $DIR2/$tfile &
2369         PID2=$! ; pdo_sched
2370         do_nodes $(comma_list $(mdts_nodes)) \
2371                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2372         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2373         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2374         rm -rf $DIR/$tfile*
2375         return 0
2376 }
2377 run_test 44c "pdirops: rename tgt vs link =============="
2378
2379 test_44d() {
2380         pdo_lru_clear
2381         touch $DIR1/$tfile-2
2382 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2383         do_nodes $(comma_list $(mdts_nodes)) \
2384                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2385         mv $DIR1/$tfile-2 $DIR1/$tfile &
2386         PID1=$! ; pdo_sched
2387         rm $DIR2/$tfile &
2388         PID2=$! ; pdo_sched
2389         do_nodes $(comma_list $(mdts_nodes)) \
2390                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2391         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2392         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2393         rm -rf $DIR/$tfile*
2394         return 0
2395 }
2396 run_test 44d "pdirops: rename tgt vs unlink =============="
2397
2398 test_44e() {
2399         pdo_lru_clear
2400         touch $DIR1/$tfile
2401         touch $DIR1/$tfile-2
2402         touch $DIR1/$tfile-3
2403 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2404         do_nodes $(comma_list $(mdts_nodes)) \
2405                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2406         mv $DIR1/$tfile-2 $DIR1/$tfile &
2407         PID1=$! ; pdo_sched
2408         mv $DIR2/$tfile-3 $DIR2/$tfile &
2409         PID2=$! ; pdo_sched
2410         do_nodes $(comma_list $(mdts_nodes)) \
2411                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2412         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2413         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2414         rm -rf $DIR/$tfile*
2415         return 0
2416 }
2417 run_test 44e "pdirops: rename tgt and rename (tgt) =============="
2418
2419 test_44f() {
2420         pdo_lru_clear
2421         touch $DIR1/$tfile-2
2422         touch $DIR1/$tfile-3
2423 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2424         do_nodes $(comma_list $(mdts_nodes)) \
2425                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2426         mv $DIR1/$tfile-2 $DIR1/$tfile &
2427         PID1=$! ; pdo_sched
2428         mv $DIR2/$tfile $DIR2/$tfile-3 &
2429         PID2=$! ; pdo_sched
2430         do_nodes $(comma_list $(mdts_nodes)) \
2431                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2432         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2433         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2434         rm -rf $DIR/$tfile*
2435         return 0
2436 }
2437 run_test 44f "pdirops: rename tgt and rename (src) =============="
2438
2439 test_44g() {
2440         pdo_lru_clear
2441         touch $DIR1/$tfile-2
2442 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2443         do_nodes $(comma_list $(mdts_nodes)) \
2444                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2445         mv $DIR1/$tfile-2 $DIR1/$tfile &
2446         PID1=$! ; pdo_sched
2447         stat $DIR2/$tfile > /dev/null &
2448         PID2=$! ; pdo_sched
2449         do_nodes $(comma_list $(mdts_nodes)) \
2450                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2451         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2452         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2453         rm -rf $DIR/$tfile*
2454         return 0
2455 }
2456 run_test 44g "pdirops: rename tgt vs getattr =============="
2457
2458 test_44h() {
2459         pdo_lru_clear
2460         touch $DIR1/$tfile-2
2461 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2462         do_nodes $(comma_list $(mdts_nodes)) \
2463                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2464         mv $DIR1/$tfile-2 $DIR1/$tfile &
2465         PID1=$! ; pdo_sched
2466         ls -lia $DIR2/ > /dev/null &
2467         PID2=$! ; pdo_sched
2468         do_nodes $(comma_list $(mdts_nodes)) \
2469                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2470         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2471         wait $PID2
2472         rm -rf $DIR/$tfile*
2473         return 0
2474 }
2475 run_test 44h "pdirops: rename tgt vs readdir =============="
2476
2477 # test 44: rename tgt and blocking operations
2478 test_44i() {
2479         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2480         pdo_lru_clear
2481         touch $DIR1/$tfile-2
2482 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
2483         do_nodes $(comma_list $(mdts_nodes)) \
2484                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2485         mv $DIR1/$tfile-2 $DIR1/$tfile &
2486         PID1=$! ; pdo_sched
2487         $LFS mkdir -i 1 $DIR2/$tfile &
2488         PID2=$! ; pdo_sched
2489         do_nodes $(comma_list $(mdts_nodes)) \
2490                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2491         check_pdo_conflict $PID1 && { wait $PID1;
2492                                 error "remote mkdir isn't blocked"; }
2493         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2494         rm -rf $DIR/$tfile*
2495         return 0
2496 }
2497 run_test 44i "pdirops: rename tgt vs remote mkdir"
2498
2499 # test 45: rename,mkdir doesn't fail with -EEXIST
2500 test_45a() {
2501         for i in {1..1000}; do
2502                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2503                 mrename $DIR2/$tdir $DIR2/$tdir.$i > /dev/null ||
2504                         error "mrename to $tdir.$i failed"
2505         done
2506         rm -rf $DIR/$tdir*
2507         return 0
2508 }
2509 run_test 45a "rename,mkdir doesn't return -EEXIST =============="
2510
2511 test_45b() {
2512         pdo_lru_clear
2513         touch $DIR1/$tfile
2514 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2515         do_nodes $(comma_list $(mdts_nodes)) \
2516                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2517         mv $DIR1/$tfile $DIR1/$tfile-2 &
2518         PID1=$! ; pdo_sched
2519         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2520         PID2=$! ; pdo_sched
2521         do_nodes $(comma_list $(mdts_nodes)) \
2522                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2523         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2524         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2525         rm -rf $DIR/$tfile*
2526         return 0
2527 }
2528 run_test 45b "pdirops: rename src vs create =============="
2529
2530 test_45c() {
2531         pdo_lru_clear
2532         touch $DIR1/$tfile
2533         touch $DIR1/$tfile-3
2534 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2535         do_nodes $(comma_list $(mdts_nodes)) \
2536                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2537         mv $DIR1/$tfile $DIR1/$tfile-2 &
2538         PID1=$! ; pdo_sched
2539         link $DIR2/$tfile-3 $DIR2/$tfile &
2540         PID2=$! ; pdo_sched
2541         do_nodes $(comma_list $(mdts_nodes)) \
2542                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2543         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2544         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2545         rm -rf $DIR/$tfile*
2546         return 0
2547 }
2548 run_test 45c "pdirops: rename src vs link =============="
2549
2550 test_45d() {
2551         pdo_lru_clear
2552         touch $DIR1/$tfile
2553 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2554         do_nodes $(comma_list $(mdts_nodes)) \
2555                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2556         mv $DIR1/$tfile $DIR1/$tfile-2 &
2557         PID1=$! ; pdo_sched
2558         rm $DIR2/$tfile &
2559         PID2=$! ; pdo_sched
2560         do_nodes $(comma_list $(mdts_nodes)) \
2561                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2562         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2563         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2564         rm -rf $DIR/$tfile*
2565         return 0
2566 }
2567 run_test 45d "pdirops: rename src vs unlink =============="
2568
2569 test_45e() {
2570         pdo_lru_clear
2571         touch $DIR1/$tfile
2572         touch $DIR1/$tfile-3
2573 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2574         do_nodes $(comma_list $(mdts_nodes)) \
2575                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2576         mv $DIR1/$tfile $DIR1/$tfile-2 &
2577         PID1=$! ; pdo_sched
2578         mv $DIR2/$tfile-3 $DIR2/$tfile &
2579         PID2=$! ; pdo_sched
2580         do_nodes $(comma_list $(mdts_nodes)) \
2581                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2582         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2583         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2584         rm -rf $DIR/$tfile*
2585         return 0
2586 }
2587 run_test 45e "pdirops: rename src and rename (tgt) =============="
2588
2589 test_45f() {
2590         pdo_lru_clear
2591         touch $DIR1/$tfile
2592 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2593         do_nodes $(comma_list $(mdts_nodes)) \
2594                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2595         mv $DIR1/$tfile $DIR1/$tfile-2 &
2596         PID1=$! ; pdo_sched
2597         mv $DIR2/$tfile $DIR2/$tfile-3 &
2598         PID2=$! ; pdo_sched
2599         do_nodes $(comma_list $(mdts_nodes)) \
2600                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2601         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2602         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2603         rm -rf $DIR/$tfile*
2604         return 0
2605 }
2606 run_test 45f "pdirops: rename src and rename (src) =============="
2607
2608 test_45g() {
2609         pdo_lru_clear
2610         touch $DIR1/$tfile
2611 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2612         do_nodes $(comma_list $(mdts_nodes)) \
2613                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2614         mv $DIR1/$tfile $DIR1/$tfile-2 &
2615         PID1=$! ; pdo_sched
2616         stat $DIR2/$tfile > /dev/null &
2617         PID2=$! ; pdo_sched
2618         do_nodes $(comma_list $(mdts_nodes)) \
2619                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2620         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2621         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2622         rm -rf $DIR/$tfile*
2623         return 0
2624 }
2625 run_test 45g "pdirops: rename src vs getattr =============="
2626
2627 test_45h() {
2628         pdo_lru_clear
2629         touch $DIR1/$tfile
2630 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2631         do_nodes $(comma_list $(mdts_nodes)) \
2632                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2633         mv $DIR1/$tfile $DIR1/$tfile-2 &
2634         PID1=$! ; pdo_sched
2635         ls -lia $DIR2/ > /dev/null &
2636         do_nodes $(comma_list $(mdts_nodes)) \
2637                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2638         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2639         wait $PID2
2640         rm -rf $DIR/$tfile*
2641         return 0
2642 }
2643 run_test 45h "pdirops: unlink vs readdir =============="
2644
2645 test_45i() {
2646         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2647         pdo_lru_clear
2648         touch $DIR1/$tfile
2649 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2650         do_nodes $(comma_list $(mdts_nodes)) \
2651                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2652         mv $DIR1/$tfile $DIR1/$tfile-2 &
2653         PID1=$! ; pdo_sched
2654         $LFS mkdir -i 1 $DIR2/$tfile &
2655         PID2=$! ; pdo_sched
2656         do_nodes $(comma_list $(mdts_nodes)) \
2657                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2658         check_pdo_conflict $PID1 && { wait $PID1;
2659                                 error "create remote dir isn't blocked"; }
2660         wait $PID2 ; [ $? -eq 0 ] || error "create remote dir must succeed"
2661         rm -rf $DIR/$tfile*
2662         return 0
2663 }
2664 run_test 45i "pdirops: rename src vs remote mkdir"
2665
2666 sub_test_45j() {
2667         local PID1 PID2
2668         local fail_loc="$1"
2669         local ret=0
2670
2671         # We test in a sparate directory to be able to unblock server thread in
2672         # cfs_race if LCK_PW is taken on the parent by mdt_reint_rename.
2673         test_mkdir $DIR2/$tdir
2674         echo file1 > $DIR2/$tdir/$tfile
2675         echo file2 > $DIR2/$tdir/$tfile-2
2676
2677         do_nodes $(comma_list $(mdts_nodes)) \
2678                 "lctl set_param -n fail_loc=${fail_loc} || true" &>/dev/null
2679
2680         cat $DIR1/$tdir/$tfile >/dev/null &
2681         PID1=$!
2682         pdo_sched
2683         mrename $DIR2/$tdir/$tfile-2 $DIR2/$tdir/$tfile > /dev/null &
2684         PID2=$!
2685
2686         wait $PID1 ||
2687                 { ret=$?; echo -n "cat $tfile should succeed (err=$ret); "; }
2688         wait $PID2 ||
2689                 { ret=$?; \
2690                 echo -n "mrename $tfile-2 to $tfile failed (err=$ret);"; }
2691
2692         #Clean
2693         do_nodes $(comma_list $(mdts_nodes)) \
2694                 "lctl set_param -n fail_loc=0x0 || true" &>/dev/null
2695         rm -rf $DIR/$tdir
2696
2697         return $ret
2698 }
2699
2700 test_45j() {
2701         [[ $MDS1_VERSION -le $(version_code 2.13.56) ]] ||
2702                 skip "Need MDS version newer than 2.13.56"
2703         local msg fail_loc
2704
2705 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN         0x169
2706 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_REINT_OPEN2        0x16a
2707         for fail_loc in "0x80000169" "0x8000016a"; do
2708                 echo "Begin 100 tests with fail_loc=$fail_loc"
2709                 printf "Progress: "
2710                 for i in {1..100}; do
2711                         printf "*"
2712                         msg=$(sub_test_45j "$fail_loc") ||
2713                                 { echo; error "iter=$i : $msg"; }
2714                 done
2715                 echo
2716         done
2717 }
2718 run_test 45j "read vs rename =============="
2719
2720 # test 46: link and blocking operations
2721 test_46a() {
2722         pdo_lru_clear
2723         touch $DIR1/$tfile-2
2724 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2725         do_nodes $(comma_list $(mdts_nodes)) \
2726                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2727         link $DIR1/$tfile-2 $DIR1/$tfile &
2728         PID1=$! ; pdo_sched
2729         mkdir $DIR2/$tfile &
2730         PID2=$! ; pdo_sched
2731         do_nodes $(comma_list $(mdts_nodes)) \
2732                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2733         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2734         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2735         rm -rf $DIR/$tfile*
2736         return 0
2737 }
2738 run_test 46a "pdirops: link vs mkdir =============="
2739
2740 test_46b() {
2741         pdo_lru_clear
2742         touch $DIR1/$tfile-2
2743 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2744         do_nodes $(comma_list $(mdts_nodes)) \
2745                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2746         link $DIR1/$tfile-2 $DIR1/$tfile &
2747         PID1=$! ; pdo_sched
2748         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2749         PID2=$! ; pdo_sched
2750         do_nodes $(comma_list $(mdts_nodes)) \
2751                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2752         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2753         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2754         rm -rf $DIR/$tfile*
2755         return 0
2756 }
2757 run_test 46b "pdirops: link vs create =============="
2758
2759 test_46c() {
2760         pdo_lru_clear
2761         touch $DIR1/$tfile-2
2762 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2763         do_nodes $(comma_list $(mdts_nodes)) \
2764                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2765         link $DIR1/$tfile-2 $DIR1/$tfile &
2766         PID1=$! ; pdo_sched
2767         link $DIR2/$tfile $DIR2/$tfile &
2768         PID2=$! ; pdo_sched
2769         do_nodes $(comma_list $(mdts_nodes)) \
2770                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2771         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2772         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2773         rm -rf $DIR/$tfile*
2774         return 0
2775 }
2776 run_test 46c "pdirops: link vs link =============="
2777
2778 test_46d() {
2779         pdo_lru_clear
2780         touch $DIR1/$tfile-2
2781 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2782         do_nodes $(comma_list $(mdts_nodes)) \
2783                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2784         link $DIR1/$tfile-2 $DIR1/$tfile &
2785         PID1=$! ; pdo_sched
2786         rm $DIR2/$tfile &
2787         PID2=$! ; pdo_sched
2788         do_nodes $(comma_list $(mdts_nodes)) \
2789                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2790         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2791         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2792         rm -rf $DIR/$tfile*
2793         return 0
2794 }
2795 run_test 46d "pdirops: link vs unlink =============="
2796
2797 test_46e() {
2798         pdo_lru_clear
2799         touch $DIR1/$tfile-2
2800         touch $DIR1/$tfile-3
2801 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2802         do_nodes $(comma_list $(mdts_nodes)) \
2803                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2804         link $DIR1/$tfile-2 $DIR1/$tfile &
2805         PID1=$! ; pdo_sched
2806         mv $DIR2/$tfile-3 $DIR2/$tfile &
2807         PID2=$! ; pdo_sched
2808         do_nodes $(comma_list $(mdts_nodes)) \
2809                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2810         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2811         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2812         rm -rf $DIR/$tfile*
2813         return 0
2814 }
2815 run_test 46e "pdirops: link and rename (tgt) =============="
2816
2817 test_46f() {
2818         pdo_lru_clear
2819         touch $DIR1/$tfile-2
2820         touch $DIR1/$tfile-3
2821 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2822         do_nodes $(comma_list $(mdts_nodes)) \
2823                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2824         link $DIR1/$tfile-2 $DIR1/$tfile &
2825         PID1=$! ; pdo_sched
2826         mv $DIR2/$tfile $DIR2/$tfile-3 &
2827         PID2=$! ; pdo_sched
2828         do_nodes $(comma_list $(mdts_nodes)) \
2829                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2830         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2831         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2832         rm -rf $DIR/$tfile*
2833         return 0
2834 }
2835 run_test 46f "pdirops: link and rename (src) =============="
2836
2837 test_46g() {
2838         pdo_lru_clear
2839         touch $DIR1/$tfile-2
2840 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2841         do_nodes $(comma_list $(mdts_nodes)) \
2842                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2843         link $DIR1/$tfile-2 $DIR1/$tfile &
2844         PID1=$! ; pdo_sched
2845         stat $DIR2/$tfile > /dev/null &
2846         PID2=$! ; pdo_sched
2847         do_nodes $(comma_list $(mdts_nodes)) \
2848                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2849         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2850         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2851         rm -rf $DIR/$tfile*
2852         return 0
2853 }
2854 run_test 46g "pdirops: link vs getattr =============="
2855
2856 test_46h() {
2857         pdo_lru_clear
2858         touch $DIR1/$tfile-2
2859 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2860         do_nodes $(comma_list $(mdts_nodes)) \
2861                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2862         link $DIR1/$tfile-2 $DIR1/$tfile &
2863         PID1=$! ; pdo_sched
2864         ls -lia $DIR2/ > /dev/null &
2865         PID2=$! ; pdo_sched
2866         do_nodes $(comma_list $(mdts_nodes)) \
2867                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2868         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2869         wait $PID2
2870         rm -rf $DIR/$tfile*
2871         return 0
2872 }
2873 run_test 46h "pdirops: link vs readdir =============="
2874
2875 test_46i() {
2876         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2877         pdo_lru_clear
2878         touch $DIR1/$tfile-2
2879 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2880         do_nodes $(comma_list $(mdts_nodes)) \
2881                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2882         link $DIR1/$tfile-2 $DIR1/$tfile &
2883         PID1=$! ; pdo_sched
2884         $LFS mkdir -i 1 $DIR2/$tfile &
2885         PID2=$! ; pdo_sched
2886         do_nodes $(comma_list $(mdts_nodes)) \
2887                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2888         check_pdo_conflict $PID1 && { wait $PID1;
2889                                 error "remote mkdir isn't blocked"; }
2890         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2891         rm -rf $DIR/$tfile*
2892         return 0
2893 }
2894 run_test 46i "pdirops: link vs remote mkdir"
2895
2896 # test 47: remote mkdir and blocking operations
2897 test_47a() {
2898 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2899         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2900         pdo_lru_clear
2901         do_nodes $(comma_list $(mdts_nodes)) \
2902                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2903         $LFS mkdir -i 1 $DIR1/$tfile &
2904         PID1=$! ; pdo_sched
2905         mkdir $DIR2/$tfile &
2906         PID2=$! ; pdo_sched
2907         do_nodes $(comma_list $(mdts_nodes)) \
2908                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2909         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2910         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2911         rm -rf $DIR/$tfile*
2912         return 0
2913 }
2914 run_test 47a "pdirops: remote mkdir vs mkdir"
2915
2916 test_47b() {
2917 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2918         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2919         pdo_lru_clear
2920         do_nodes $(comma_list $(mdts_nodes)) \
2921                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2922         $LFS mkdir -i 1 $DIR1/$tfile &
2923         PID1=$! ; pdo_sched
2924         sleep 1 # please do not remove this sleep, see LU-10754
2925         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c &
2926         PID2=$! ; pdo_sched
2927         do_nodes $(comma_list $(mdts_nodes)) \
2928                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2929         check_pdo_conflict $PID1 && { wait $PID1;
2930                                         error "create isn't blocked"; }
2931         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2932         rm -rf $DIR/$tfile*
2933         return 0
2934 }
2935 run_test 47b "pdirops: remote mkdir vs create"
2936
2937 test_47c() {
2938         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2939         pdo_lru_clear
2940         touch $DIR1/$tfile-2
2941 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2942         do_nodes $(comma_list $(mdts_nodes)) \
2943                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2944         $LFS mkdir -i 1 $DIR1/$tfile &
2945         PID1=$! ; pdo_sched
2946         link $DIR2/$tfile-2 $DIR2/$tfile &
2947         PID2=$! ; pdo_sched
2948         do_nodes $(comma_list $(mdts_nodes)) \
2949                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2950         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2951         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2952         rm -rf $DIR/$tfile*
2953         return 0
2954 }
2955 run_test 47c "pdirops: remote mkdir vs link"
2956
2957 test_47d() {
2958         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2959         pdo_lru_clear
2960 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2961         do_nodes $(comma_list $(mdts_nodes)) \
2962                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2963         $LFS mkdir -i 1 $DIR1/$tfile &
2964         PID1=$! ; pdo_sched
2965         rmdir $DIR2/$tfile &
2966         PID2=$! ; pdo_sched
2967         do_nodes $(comma_list $(mdts_nodes)) \
2968                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2969         check_pdo_conflict $PID1 && { wait $PID1;
2970                                         error "unlink isn't blocked"; }
2971         wait $PID2 ; [ $? -eq 0 ] || error "rmdir must succeed"
2972         rm -rf $DIR/$tfile*
2973         return 0
2974 }
2975 run_test 47d "pdirops: remote mkdir vs unlink"
2976
2977 test_47e() {
2978         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2979         pdo_lru_clear
2980         touch $DIR1/$tfile-2
2981 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2982         do_nodes $(comma_list $(mdts_nodes)) \
2983                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2984         $LFS mkdir -i 1 $DIR1/$tfile &
2985         PID1=$! ; pdo_sched
2986         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
2987         PID2=$! ; pdo_sched
2988         do_nodes $(comma_list $(mdts_nodes)) \
2989                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2990         check_pdo_conflict $PID1 && { wait $PID1;
2991                                         error "rename isn't blocked"; }
2992         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2993         rm -rf $DIR/$tfile*
2994         return 0
2995 }
2996 run_test 47e "pdirops: remote mkdir and rename (tgt)"
2997
2998 test_47f() {
2999         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3000         pdo_lru_clear
3001 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
3002         do_nodes $(comma_list $(mdts_nodes)) \
3003                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
3004         $LFS mkdir -i 1 $DIR1/$tfile &
3005         PID1=$! ; pdo_sched
3006         mv $DIR2/$tfile $DIR2/$tfile-2 &
3007         PID2=$! ; pdo_sched
3008         do_nodes $(comma_list $(mdts_nodes)) \
3009                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
3010         check_pdo_conflict $PID1 && { wait $PID1;
3011                                         error "rename isn't blocked"; }
3012         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
3013         rm -rf $DIR/$tfile*
3014         return 0
3015 }
3016 run_test 47f "pdirops: remote mkdir and rename (src)"
3017
3018 test_47g() {
3019         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3020         sync
3021         sync_all_data
3022         pdo_lru_clear
3023 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
3024         do_nodes $(comma_list $(mdts_nodes)) \
3025                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
3026         $LFS mkdir -i 1 $DIR1/$tfile &
3027         PID1=$! ; pdo_sched
3028         stat $DIR2/$tfile > /dev/null &
3029         PID2=$! ; pdo_sched
3030         do_nodes $(comma_list $(mdts_nodes)) \
3031                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
3032         check_pdo_conflict $PID1 && { wait $PID1;
3033                                         error "getattr isn't blocked"; }
3034         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
3035         rm -rf $DIR/$tfile*
3036         return 0
3037 }
3038 run_test 47g "pdirops: remote mkdir vs getattr"
3039
3040 test_50() {
3041         trunc_size=4096
3042         dd if=/dev/zero of=$DIR1/$tfile bs=1K count=10
3043 #define OBD_FAIL_OSC_CP_ENQ_RACE         0x410
3044         do_facet client "lctl set_param fail_loc=0x410"
3045         $TRUNCATE $DIR2/$tfile $trunc_size
3046         do_facet client "lctl set_param fail_loc=0x0"
3047         sleep 3
3048         size=`stat -c %s $DIR2/$tfile`
3049         [ $size -eq $trunc_size ] || error "wrong size"
3050 }
3051 run_test 50 "osc lvb attrs: enqueue vs. CP AST =============="
3052
3053 test_51a() {
3054         local filesize
3055         local origfile=/etc/hosts
3056
3057         filesize=$(stat -c %s $origfile)
3058
3059         # create an empty file
3060         $MCREATE $DIR1/$tfile || error "can't create $DIR1/$tfile"
3061         # cache layout lock on both mount point
3062         stat $DIR1/$tfile > /dev/null || error "stat $DIR1/$tfile failed"
3063         stat $DIR2/$tfile > /dev/null || error "stat $DIR2/$tfile failed"
3064
3065         # open and sleep 2 seconds then read
3066         $MULTIOP $DIR2/$tfile o_2r${filesize}c &
3067         local pid=$!
3068         sleep 1
3069
3070         # create the layout of testing file
3071         dd if=$origfile of=$DIR1/$tfile conv=notrunc > /dev/null ||
3072                 error "dd $DIR1/$tfile failed"
3073
3074         # MULTIOP proc should be able to read enough bytes and exit
3075         for ((i = 0; i < 6; i++)); do
3076                 sleep 1
3077                 kill -0 $pid || break
3078         done
3079         kill -0 $pid 2> /dev/null && error "multiop is still there"
3080         cmp $origfile $DIR2/$tfile || error "$origfile and $DIR2/$tfile differs"
3081
3082         rm -f $DIR1/$tfile
3083 }
3084 run_test 51a "layout lock: refresh layout should work"
3085
3086 test_51b() {
3087         (( $MDS1_VERSION >= $(version_code 2.3.59) )) ||
3088                 skip "Need MDS version at least 2.3.59"
3089
3090         local tmpfile=`mktemp`
3091
3092         $LFS setstripe -E 1m -S 1M -c 1 -E -1 -c 1 $DIR1/$tfile ||
3093                 error "Create $DIR1/$tfile failed"
3094
3095         dd if=/dev/zero of=$DIR1/$tfile bs=1k count=1 conv=notrunc ||
3096                 error "dd $DIR1/$tfile failed"
3097
3098         # delay glimpse so that layout has changed when glimpse finish
3099 #define OBD_FAIL_GLIMPSE_DELAY 0x1404
3100         $LCTL set_param fail_loc=0x1404 fail_val=4
3101         stat -c %s $DIR2/$tfile |tee $tmpfile &
3102         local pid=$!
3103         sleep 0.2
3104
3105         # extend layout of testing file
3106         dd if=/dev/zero of=$DIR1/$tfile bs=1M count=1 seek=2 conv=notrunc ||
3107                 error "dd $DIR1/$tfile failed"
3108
3109         wait $pid
3110         local fsize=$(cat $tmpfile)
3111
3112         [ x$fsize = x3145728 ] || error "file size is $fsize, should be 3145728"
3113
3114         rm -f $DIR1/$tfile $tmpfile
3115 }
3116 run_test 51b "layout lock: glimpse should be able to restart if layout changed"
3117
3118 test_51c() {
3119         [ $OSTCOUNT -ge 2 ] || { skip "needs >= 2 osts"; return; }
3120
3121         # set default layout to have 1 stripe
3122         mkdir $DIR1/$tdir
3123         $LFS setstripe -c 1 $DIR1/$tdir
3124
3125         # create a file with empty layout
3126         $MCREATE $DIR1/$tdir/$tfile ||
3127                 error "$MCREATE $DIR1/$tdir/$tfile failed"
3128
3129 #define OBD_FAIL_MDS_LL_BLOCK 0x172
3130         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x172
3131
3132         # change the layout of testing file
3133         echo "Setting layout to have $OSTCOUNT stripes ..."
3134         $LFS setstripe -c $OSTCOUNT $DIR1/$tdir/$tfile &
3135         pid=$!
3136         sleep 1
3137
3138         # write something to the file, it should be blocked on fetching layout
3139         dd if=/dev/zero of=$DIR2/$tdir/$tfile bs=1k count=1 conv=notrunc
3140         local stripe_count=$($LFS getstripe -c $DIR2/$tdir/$tfile)
3141         wait $pid
3142
3143         # lod_qos.c::min_stripe_count() allows setstripe with a default stripe
3144         # count to succeed with only 3/4 of the number of stripes (rounded up),
3145         # so creating striped files does not fail if an OST is offline or full
3146         [ $stripe_count -ge $((OSTCOUNT - $OSTCOUNT / 4)) ] ||
3147                 error "bad layout: getstripe -c $stripe_count < $OSTCOUNT * 3/4"
3148
3149         rm -fr $DIR1/$tdir
3150 }
3151 run_test 51c "layout lock: IT_LAYOUT blocked and correct layout can be returned"
3152
3153 test_51d() {
3154         dd if=/dev/zero of=/$DIR1/$tfile bs=1M count=1
3155         cancel_lru_locks mdc
3156
3157         # open should grant LAYOUT lock, mmap and read will install pages
3158         $MULTIOP $DIR1/$tfile oO_RDWR:SMR_Uc &
3159         local PID=$!
3160         sleep 1
3161
3162         # rss before revoking
3163         local br=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
3164         echo "Before revoking layout lock: $br KB mapped"
3165
3166         # cancel layout lock manually
3167         cancel_lru_locks mdc
3168
3169         # rss after revoking
3170         local ar=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
3171
3172         kill -USR1 $PID
3173         wait $PID || error "wait PID $PID failed"
3174
3175         [ $ar -eq 0 ] || error "rss before: $br, after $ar, some pages remained"
3176 }
3177 run_test 51d "layout lock: losing layout lock should clean up memory map region"
3178
3179 test_51e() {
3180         (( $MDS1_VERSION >= $(version_code 2.13.54.148) )) ||
3181                 skip "MDS version must be at least 2.13.54.148"
3182
3183         local pid
3184
3185         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eW_E+eUc &
3186         pid=$!
3187         sleep 1
3188
3189         $LFS getstripe $DIR2/$tfile
3190         kill -USR1 $pid
3191         wait $pid || error "multiop failed"
3192
3193         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
3194         pid=$!
3195         sleep 1
3196
3197         $LFS getstripe $DIR2/$tfile
3198         kill -USR1 $pid
3199         wait $pid || error "multiop failed"
3200 }
3201 run_test 51e "lfs getstripe does not break leases, part 2"
3202
3203 test_54_part1()
3204 {
3205         echo "==> rename vs getattr vs setxattr should not deadlock"
3206         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3207
3208         do_facet mds1 $LCTL set_param fail_loc=$1
3209
3210         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3211         PID1=$!
3212         sleep 1
3213
3214         stat $DIR/d1/d2 &
3215         PID2=$!
3216         sleep 1
3217
3218         setfattr -n user.attr1 -v value1 $DIR2/d1 || error "(2) setfattr failed"
3219         wait $PID1 || error "(3) mv failed"
3220         wait $PID2 || error "(4) stat failed"
3221         echo
3222
3223         rm -rf $DIR/d1
3224 }
3225
3226 test_54_part2() {
3227         echo "==> rename vs getattr vs open vs getattr should not deadlock"
3228         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3229
3230         do_facet mds1 $LCTL set_param fail_loc=$1
3231
3232         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3233         PID1=$!
3234         sleep 1
3235
3236         stat $DIR/d1/d2 &
3237         PID2=$!
3238         sleep 1
3239
3240         $MULTIOP $DIR2/d1/d2 Oc &
3241         PID3=$!
3242         sleep 1
3243
3244         stat $DIR/d1 || error "(2) stat failed"
3245
3246         wait $PID1 || error "(3) mv failed"
3247         wait $PID2 || error "(4) stat failed"
3248         wait $PID3 && error "(5) multiop failed"
3249         echo
3250         rm -rf $DIR/d1
3251 }
3252
3253 test_54() {
3254         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
3255         save_lustre_params client "llite.*.xattr_cache" > $p
3256         lctl set_param llite.*.xattr_cache 1 ||
3257                 { skip "xattr cache is not supported"; return 0; }
3258
3259 #define OBD_FAIL_MDS_RENAME              0x153
3260 #define OBD_FAIL_MDS_RENAME2             0x154
3261         test_54_part1 0x80000153 || error 10
3262         test_54_part1 0x80000154 || error 11
3263         test_54_part2 0x80000153 || error 12
3264         test_54_part2 0x80000154 || error 13
3265
3266         restore_lustre_params < $p
3267         rm -f $p
3268 }
3269 run_test 54 "rename locking"
3270
3271 test_55a() {
3272         mkdir_on_mdt0 $DIR/$tdir
3273         mkdir -p $DIR/$tdir/d1/d2 $DIR/$tdir/d3 || error "(1) mkdir failed"
3274
3275 #define OBD_FAIL_MDS_RENAME4              0x156
3276         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3277
3278         mv -T $DIR/$tdir/d1/d2 $DIR/$tdir/d3/d2 &
3279         PID1=$!
3280         sleep 1
3281
3282         rm -r $DIR2/$tdir/d3
3283         wait $PID1 && error "(2) mv succeeded"
3284
3285         rm -rf $DIR/$tdir
3286 }
3287 run_test 55a "rename vs unlink target dir"
3288
3289 test_55b()
3290 {
3291         mkdir_on_mdt0 $DIR/$tdir
3292         mkdir -p $DIR/$tdir/d1/d2 $DIR/$tdir/d3 || error "(1) mkdir failed"
3293
3294 #define OBD_FAIL_MDS_RENAME4             0x156
3295         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3296
3297         mv -T $DIR/$tdir/d1/d2 $DIR/$tdir/d3/d2 &
3298         PID1=$!
3299         sleep 1
3300
3301         rm -r $DIR2/$tdir/d1
3302         wait $PID1 && error "(2) mv succeeded"
3303
3304         rm -rf $DIR/$tdir
3305 }
3306 run_test 55b "rename vs unlink source dir"
3307
3308 test_55c()
3309 {
3310         mkdir_on_mdt0 $DIR/$tdir
3311         mkdir -p $DIR/$tdir/d1/d2 $DIR/$tdir/d3 || error "(1) mkdir failed"
3312
3313 #define OBD_FAIL_MDS_RENAME4              0x156
3314         do_facet mds1 $LCTL set_param fail_loc=0x156
3315
3316         mv -T $DIR/$tdir/d1/d2 $DIR/$tdir/d3/d2 &
3317         PID1=$!
3318         sleep 1
3319
3320         # while rename is sleeping, open and remove d3
3321         $MULTIOP $DIR2/$tdir/d3 D_c &
3322         PID2=$!
3323         sleep 1
3324         rm -rf $DIR2/$tdir/d3
3325         sleep 5
3326
3327         # while rename is sleeping 2nd time, close d3
3328         kill -USR1 $PID2
3329         wait $PID2 || error "(3) multiop failed"
3330
3331         wait $PID1 && error "(2) mv succeeded"
3332
3333         rm -rf $DIR/$tdir
3334 }
3335 run_test 55c "rename vs unlink orphan target dir"
3336
3337 test_55d()
3338 {
3339         mkdir_on_mdt0 $DIR/$tdir
3340