Whamcloud - gitweb
LU-13227 ofd: update lvb before dropping server lock
[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         # to allocate grant because it may run out due to test_15.
393         $LFS setstripe -c -1 $file1
394         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
395         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
396         rm -f $file1
397
398         $LFS setstripe -c -1 $file1 # b=10919
399         fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 $file1 $file2 \
400                 || error "fsx failed"
401         rm -f $file1
402
403         # O_DIRECT reads and writes must be aligned to the device block size.
404         fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 -Z -r 4096 \
405                 -w 4096 $file1 $file2 || error "fsx with O_DIRECT failed."
406 }
407 run_test 16a "$FSXNUM iterations of dual-mount fsx"
408
409 # Consistency check for tiny writes, LU-9409
410 test_16b() {
411         local file1=$DIR1/$tfile
412         local file2=$DIR2/$tfile
413         local stripe_size=($($LFS getstripe -S $DIR))
414
415         # to allocate grant because it may run out due to test_15.
416         lfs setstripe -c -1 $file1
417         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync ||
418                 error "dd failed writing to file=$file1"
419         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync ||
420                 error "dd failed writing to file=$file2"
421         rm -f $file1
422
423         lfs setstripe -c -1 $file1 # b=10919
424         # -o is set to 8192 because writes < 1 page and between 1 and 2 pages
425         # create a mix of tiny writes & normal writes
426         fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -o 8192 -S 0 $file1 \
427         $file2 || error "fsx with tiny write failed."
428 }
429 run_test 16b "$FSXNUM iterations of dual-mount fsx at small size"
430
431 test_16c() {
432         local file1=$DIR1/$tfile
433         local file2=$DIR2/$tfile
434         local stripe_size=$(do_facet $SINGLEMDS \
435                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
436
437         [ "$ost1_FSTYPE" != ldiskfs ] && skip "dio on ldiskfs only"
438
439         # to allocate grant because it may run out due to test_15.
440         $LFS setstripe -c -1 $file1
441         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
442         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
443         rm -f $file1
444         wait_delete_completed
445
446         local list=$(comma_list $(osts_nodes))
447         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
448                 skip "not cache-capable obdfilter"
449         fi
450
451         set_osd_param $list '' read_cache_enable 0
452         set_osd_param $list '' writethrough_cache_enable 0
453
454         $LFS setstripe -c -1 $file1 # b=10919
455         fsx -c 50 -p $FSXP -N $FSXNUM -l $((SIZE * 256)) -S 0 $file1 $file2 \
456                 || error "fsx failed"
457         rm -f $file1
458
459         set_osd_param $list '' read_cache_enable 1
460         set_osd_param $list '' writethrough_cache_enable 1
461
462         return 0
463 }
464 run_test 16c "verify data consistency on ldiskfs with cache disabled (b=17397)"
465
466 test_16d() {
467         local file1=$DIR1/$tfile
468         local file2=$DIR2/$tfile
469         local file3=$DIR1/file
470         local stripe_size=$(do_facet $SINGLEMDS \
471                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
472
473         # to allocate grant because it may run out due to test_15.
474         $LFS setstripe -c -1 $file1
475         dd if=/dev/zero of=$file1 bs=$stripe_size count=$OSTCOUNT oflag=sync
476         dd if=/dev/zero of=$file2 bs=$stripe_size count=$OSTCOUNT oflag=sync
477         rm -f $file1
478
479         local tmpfile=`mktemp`
480         $LFS setstripe -c -1 $file1 # b=10919
481         $LCTL set_param ldlm.namespaces.*.lru_size=clear
482         
483         # direct write on one client and direct read from another
484         dd if=/dev/urandom of=$file1 bs=1M count=100 oflag=direct
485         dd if=$file2 of=$tmpfile iflag=direct bs=1M
486         diff $file1 $tmpfile || error "file different(1)"
487         rm -f $file1
488
489         # buffer write on one client, but direct read from another
490         dd if=$tmpfile of=$file1 bs=1M count=100
491         dd if=$file2 of=$file3 bs=1M iflag=direct count=100
492         diff $file3 $tmpfile || error "file different(2)"
493
494         rm -f $file3 $file2 $file1
495         # direct write on one client
496         dd if=$tmpfile of=$file1 bs=1M count=100 oflag=direct
497         # buffer read from another client
498         dd if=$file2 of=$file3 bs=1M count=100
499         diff $file3 $tmpfile || error "file different(3)"
500
501         rm -f $file1 $file2 $file3 $tmpfile
502
503 }
504 run_test 16d "Verify DIO and buffer IO with two clients"
505
506 test_16e() { # LU-13227
507         local file1=$DIR1/$tfile
508         local file2=$DIR2/$tfile
509
510         # client1 write 10M data
511         dd if=/dev/zero of=$file1 bs=1M count=10
512         # drop locks
513         cancel_lru_locks osc > /dev/null
514         # use lockahead to generate one PW lock to keep LVB loaded.
515         $LFS ladvise -a lockahead --start 0 --length 1M \
516                 --mode WRITE $file1
517         # direct write to extend file size on client2
518         dd if=/dev/zero of=$file2 bs=1M seek=20 count=1 \
519                 oflag=direct conv=notrunc
520         local filesize=$(stat -c %s $file2)
521         [ "$filesize" -eq 22020096 ] ||
522                 error "expected filesize 22020096 got $filesize"
523         rm -f $file1
524 }
525 run_test 16e "Verify size consistency for O_DIRECT write"
526
527 test_17() { # bug 3513, 3667
528         remote_ost_nodsh && skip "remote OST with nodsh" && return
529
530         lfs setstripe $DIR1/$tfile -i 0 -c 1
531         cp $SAMPLE_FILE $DIR1/$tfile
532         cancel_lru_locks osc > /dev/null
533         #define OBD_FAIL_ONCE|OBD_FAIL_LDLM_CREATE_RESOURCE    0x30a
534         do_facet ost1 lctl set_param fail_loc=0x8000030a
535         ls -ls $DIR1/$tfile | awk '{ print $1,$6 }' > $DIR1/$tfile-1 & \
536         ls -ls $DIR2/$tfile | awk '{ print $1,$6 }' > $DIR2/$tfile-2
537         wait
538         diff -u $DIR1/$tfile-1 $DIR2/$tfile-2 || error "files are different"
539 }
540 run_test 17 "resource creation/LVB creation race ==============="
541
542 test_18() {
543         # turn e.g. ALWAYS_EXCEPT="18c" into "-e 3"
544         local idx
545         local excepts=
546         for idx in {a..z}; do
547                 local ptr=EXCEPT_ALWAYS_18$idx
548                 [ x${!ptr} = xtrue ] || continue
549
550                 excepts="$excepts -e $(($(printf %d \'$idx)-96))"
551         done
552
553         $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 $excepts
554         sync; sleep 1; sync
555 }
556 run_test 18 "mmap sanity check ================================="
557
558 test_19() { # bug3811
559         local node=$(facet_active_host ost1)
560
561         [ "x$DOM" = "xyes" ] && node=$(facet_active_host $SINGLEMDS)
562
563         # check whether obdfilter is cache capable at all
564         get_osd_param $node '' read_cache_enable >/dev/null ||
565                 skip "not cache-capable obdfilter"
566
567         local MAX=$(get_osd_param $node '' readcache_max_filesize | head -n 1)
568         set_osd_param $node '' readcache_max_filesize 4096
569         dd if=/dev/urandom of=$TMP/$tfile bs=512k count=32
570         local SUM=$(cksum $TMP/$tfile | cut -d" " -f 1,2)
571         cp $TMP/$tfile $DIR1/$tfile
572         for i in `seq 1 20`; do
573                 [ $((i % 5)) -eq 0 ] && log "$testname loop $i"
574                 cancel_lru_locks $OSC > /dev/null
575                 cksum $DIR1/$tfile | cut -d" " -f 1,2 > $TMP/sum1 & \
576                 cksum $DIR2/$tfile | cut -d" " -f 1,2 > $TMP/sum2
577                 wait
578                 [ "$(cat $TMP/sum1)" = "$SUM" ] || \
579                         error "$DIR1/$tfile $(cat $TMP/sum1) != $SUM"
580                 [ "$(cat $TMP/sum2)" = "$SUM" ] || \
581                         error "$DIR2/$tfile $(cat $TMP/sum2) != $SUM"
582         done
583         set_osd_param $node '' readcache_max_filesize $MAX
584         rm $DIR1/$tfile
585 }
586 run_test 19 "test concurrent uncached read races ==============="
587
588 test_20() {
589         test_mkdir $DIR1/d20
590         cancel_lru_locks $OSC
591         CNT=$((`lctl get_param -n llite.*.dump_page_cache | wc -l`))
592         $MULTIOP $DIR1/f20 Ow8190c
593         $MULTIOP $DIR2/f20 Oz8194w8190c
594         $MULTIOP $DIR1/f20 Oz0r8190c
595         cancel_lru_locks $OSC
596         CNTD=$((`lctl get_param -n llite.*.dump_page_cache | wc -l` - $CNT))
597         [ $CNTD -gt 0 ] && \
598             error $CNTD" page left in cache after lock cancel" || true
599 }
600 run_test 20 "test extra readahead page left in cache ===="
601
602 cleanup_21() {
603         trap 0
604         umount $DIR1/$tdir
605 }
606
607 test_21() { # Bug 5907
608         test_mkdir $DIR1/$tdir
609         mount /etc $DIR1/$tdir --bind || error "mount failed" # Poor man's mount.
610         trap cleanup_21 EXIT
611         rmdir -v $DIR1/$tdir && error "Removed mounted directory"
612         rmdir -v $DIR2/$tdir && echo "Removed mounted directory from another mountpoint, needs to be fixed"
613         test -d $DIR1/$tdir || error "Mounted directory disappeared"
614         cleanup_21
615         test -d $DIR2/$tdir || test -d $DIR1/$tdir && error "Removed dir still visible after umount"
616         true
617 }
618 run_test 21 " Try to remove mountpoint on another dir ===="
619
620 test_23() { # Bug 5972
621         local at_diff=$(do_facet $SINGLEMDS \
622                 $LCTL get_param -n mdd.*MDT0000*.atime_diff | head -n1)
623         echo "atime should be updated while another read" > $DIR1/$tfile
624
625         # clear the lock(mode: LCK_PW) gotten from creating operation
626         cancel_lru_locks $OSC
627         time1=$(date +%s)
628         echo "now is $time1"
629         sleep $((at_diff + 1))
630
631         echo "starting reads"
632         multiop_bg_pause $DIR1/$tfile or20_c || return 1
633         # with SOM and opencache enabled, we need to close a file and cancel
634         # open lock to get atime propogated to MDS
635         kill -USR1 $! || return 2
636         cancel_lru_locks mdc
637
638         time2=$(stat -c "%X" $DIR/$tfile)
639         echo "new atime is $time2"
640
641         [ $time2 -gt $time1 ] || error "atime was not updated"
642         rm -f $DIR1/$tfile || error "rm -f $DIR1/$tfile failed"
643         true
644 }
645 run_test 23 " others should see updated atime while another read===="
646
647 test_24a() {
648         touch $DIR1/$tfile
649         lfs df || error "lfs df failed"
650         lfs df -ih || error "lfs df -ih failed"
651         lfs df -h $DIR1 || error "lfs df -h $DIR1 failed"
652         lfs df -i $DIR2 || error "lfs df -i $DIR2 failed"
653         lfs df $DIR1/$tfile || error "lfs df $DIR1/$tfile failed"
654         lfs df -ih $DIR2/$tfile || error "lfs df -ih $DIR2/$tfile failed"
655
656         OSC=`lctl dl | awk '/-osc-|OSC.*MNT/ {print $4}' | head -n 1`
657 #       OSC=`lctl dl | awk '/-osc-/ {print $4}' | head -n 1`
658         lctl --device %osc deactivate
659         lfs df -i || error "lfs df -i with deactivated OSC failed"
660         lctl --device %osc activate
661         lfs df || error "lfs df with reactivated OSC failed"
662 }
663 run_test 24a "lfs df [-ih] [path] test ========================="
664
665 test_24b() {
666         touch $DIR1/$tfile
667         fsnum=$(lfs_df | grep -c "summary")
668         [ $fsnum -eq 2 ] || error "lfs df shows $fsnum != 2 filesystems."
669 }
670 run_test 24b "lfs df should show both filesystems ==============="
671
672 test_25a() {
673         local acl=$(lctl get_param -n mdc.*MDT0000-mdc-*.connect_flags |
674                                                                 grep -c acl)
675         [ "$acl" -lt 1 ] && skip "must have acl, skipping" && return
676
677         mkdir -p $DIR1/$tdir
678         touch $DIR1/$tdir/f1 || error "touch $DIR1/$tdir/f1"
679         chmod 0755 $DIR1/$tdir/f1 || error "chmod 0755 $DIR1/$tdir/f1"
680
681         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #1"
682         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
683                 error "setfacl $DIR2/$tdir #1"
684         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #2"
685         setfacl -m u:$RUNAS_ID:r-x -m g:$RUNAS_GID:r-x $DIR1/$tdir ||
686                 error "setfacl $DIR2/$tdir #2"
687         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #3"
688         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
689                 error "setfacl $DIR2/$tdir #3"
690         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #4"
691         setfacl -x u:$RUNAS_ID: -x g:$RUNAS_GID: $DIR1/$tdir ||
692                 error "setfacl $DIR2/$tdir #4"
693         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #5"
694
695         rm -rf $DIR1/$tdir
696 }
697 run_test 25a "change ACL on one mountpoint be seen on another ==="
698
699 test_25b() {
700         local acl=$(lctl get_param -n mdc.*MDT0000-mdc-*.connect_flags |
701                                                         grep -c acl)
702         [ "$acl" -lt 1 ] && skip "must have acl, skipping" && return
703
704         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
705
706         rm -rf $DIR1/$tdir
707         $LFS mkdir -i 1 $DIR1/$tdir
708         touch $DIR1/$tdir/f1 || error "touch $DIR1/$tdir/f1"
709         chmod 0755 $DIR1/$tdir/f1 || error "chmod 0755 $DIR1/$tdir/f1"
710
711         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #1"
712         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
713                 error "setfacl $DIR2/$tdir #1"
714         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #2"
715         setfacl -m u:$RUNAS_ID:r-x -m g:$RUNAS_GID:r-x $DIR1/$tdir ||
716                 error "setfacl $DIR2/$tdir #2"
717         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #3"
718         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
719                 error "setfacl $DIR2/$tdir #3"
720         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #4"
721         setfacl -x u:$RUNAS_ID: -x g:$RUNAS_GID: $DIR1/$tdir ||
722                 error "setfacl $DIR2/$tdir #4"
723         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #5"
724
725         rm -rf $DIR1/$tdir
726 }
727 run_test 25b "change ACL under remote dir on one mountpoint be seen on another"
728
729 test_26a() {
730         utime $DIR1/f26a -s $DIR2/f26a || error "utime failed for $DIR1/f26a"
731 }
732 run_test 26a "allow mtime to get older"
733
734 test_26b() {
735         touch $DIR1/$tfile
736         sleep 1
737         echo "aaa" >> $DIR1/$tfile
738         sleep 1
739         chmod a+x $DIR2/$tfile
740         mt1=`stat -c %Y $DIR1/$tfile`
741         mt2=`stat -c %Y $DIR2/$tfile`
742
743         if [ x"$mt1" != x"$mt2" ]; then
744                 error "not equal mtime, client1: "$mt1", client2: "$mt2"."
745         fi
746 }
747 run_test 26b "sync mtime between ost and mds"
748
749 test_27() {
750         cancel_lru_locks $OSC
751         lctl clear
752         dd if=/dev/zero of=$DIR2/$tfile bs=$((4096+4))k conv=notrunc count=4 seek=3 &
753         DD2_PID=$!
754         usleep 50
755         log "dd 1 started"
756
757         dd if=/dev/zero of=$DIR1/$tfile bs=$((16384-1024))k conv=notrunc count=1 seek=4 &
758         DD1_PID=$!
759         log "dd 2 started"
760
761         sleep 1
762         dd if=/dev/zero of=$DIR1/$tfile bs=8k conv=notrunc count=1 seek=0
763         log "dd 3 finished"
764         lctl set_param -n ldlm.dump_namespaces ""
765         wait $DD1_PID $DD2_PID
766         [ $? -ne 0 ] && lctl dk $TMP/debug || true
767 }
768 run_test 27 "align non-overlapping extent locks from request ==="
769
770 test_28() { # bug 9977
771         ECHO_UUID="ECHO_osc1_UUID"
772         tOST=$($LCTL dl | awk '/-osc-|OSC.*MNT/ { print $4 }' | head -n1)
773
774         $LFS setstripe $DIR1/$tfile -S 1048576 -i 0 -c 2
775         tOBJID=`$LFS getstripe $DIR1/$tfile | awk '$1 == 1 {print $2}'`
776         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2
777
778         $LCTL <<-EOF
779                 newdev
780                 attach echo_client ECHO_osc1 $ECHO_UUID
781                 setup $tOST
782         EOF
783
784         tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{ print $1 }'`
785         $LCTL --device $tECHOID destroy "${tOBJID}:0"
786
787         $LCTL <<-EOF
788                 cfg_device ECHO_osc1
789                 cleanup
790                 detach
791         EOF
792
793         # reading of 1st stripe should pass
794         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error "dd failed"
795         # reading of 2nd stripe should fail (this stripe was destroyed)
796         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 && error
797
798         # now, recreating test file
799         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2 || error "dd failed"
800         # reading of 1st stripe should pass
801         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error "dd failed"
802         # reading of 2nd stripe should pass
803         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 ||
804                 error "dd failed"
805 }
806 run_test 28 "read/write/truncate file with lost stripes"
807
808 test_30() { #b=11110, LU-2523
809         test_mkdir $DIR1/$tdir
810         cp -f /bin/bash $DIR1/$tdir/bash
811         /bin/sh -c 'sleep 1; rm -f $DIR2/$tdir/bash; cp /bin/bash $DIR2/$tdir' &
812         $DIR1/$tdir/bash -c 'sleep 2;
813                 openfile -f O_RDONLY /proc/$$/exe >& /dev/null; echo $?'
814         wait
815         true
816 }
817 run_test 30 "recreate file race"
818
819 test_31a() {
820         test_mkdir $DIR1/$tdir
821         local writes=$(LANG=C dd if=/dev/zero of=$DIR/$tdir/$tfile \
822                        count=1 2>&1 | awk 'BEGIN { FS="+" } /out/ {print $1}')
823         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
824         lctl set_param fail_loc=0x314
825         local reads=$(LANG=C dd if=$DIR2/$tdir/$tfile of=/dev/null 2>&1 |
826                       awk 'BEGIN { FS="+" } /in/ {print $1}')
827         [ $reads -eq $writes ] || error "read" $reads "blocks, must be" $writes
828 }
829 run_test 31a "voluntary cancel / blocking ast race=============="
830
831 test_31b() {
832         remote_ost || { skip "local OST" && return 0; }
833         remote_ost_nodsh && skip "remote OST w/o dsh" && return 0
834
835         # make sure there is no local locks due to destroy
836         wait_mds_ost_sync || error "wait_mds_ost_sync()"
837         wait_delete_completed || error "wait_delete_completed()"
838
839         test_mkdir $DIR1/$tdir
840         lfs setstripe $DIR/$tdir/$tfile -i 0 -c 1
841         cp /etc/hosts $DIR/$tdir/$tfile
842         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
843         lctl set_param fail_loc=0x314
844         #define OBD_FAIL_LDLM_OST_FAIL_RACE      0x316
845         do_facet ost1 lctl set_param fail_loc=0x316
846         # Don't crash kernel
847         cat $DIR2/$tdir/$tfile > /dev/null 2>&1
848         lctl set_param fail_loc=0
849         do_facet ost1 lctl set_param fail_loc=0
850         # cleanup: reconnect the client back
851         df $DIR2
852 }
853 run_test 31b "voluntary OST cancel / blocking ast race=============="
854
855 # enable/disable lockless truncate feature, depending on the arg 0/1
856 enable_lockless_truncate() {
857         lctl set_param -n $OSC.*.lockless_truncate $1
858 }
859
860 test_32a() { # bug 11270
861         local save="$TMP/$TESTSUITE-$TESTNAME.parameters"
862         local stripe_size=$(do_facet $SINGLEMDS \
863                 "$LCTL get_param -n lod.$(facet_svc $SINGLEMDS)*.stripesize")
864
865         save_lustre_params client "$OSC.*.lockless_truncate" > $save
866         # restore lockless_truncate default values on exit
867         stack_trap "restore_lustre_params < $save; rm -f $save" EXIT
868         cancel_lru_locks $OSC
869         enable_lockless_truncate 1
870         rm -f $DIR1/$tfile
871         lfs setstripe -c -1 $DIR1/$tfile
872         dd if=/dev/zero of=$DIR1/$tfile count=$OSTCOUNT bs=$stripe_size > \
873                 /dev/null 2>&1
874         clear_stats $OSC.*.${OSC}_stats
875
876         log "checking cached lockless truncate"
877         $TRUNCATE $DIR1/$tfile 8000000
878         $CHECKSTAT -s 8000000 $DIR2/$tfile || error "wrong file size"
879         [ $(calc_stats $OSC.*.${OSC}_stats lockless_truncate) -ne 0 ] ||
880                 error "cached truncate isn't lockless"
881
882         log "checking not cached lockless truncate"
883         $TRUNCATE $DIR2/$tfile 5000000
884         $CHECKSTAT -s 5000000 $DIR1/$tfile || error "wrong file size"
885         [ $(calc_stats $OSC.*.${OSC}_stats lockless_truncate) -ne 0 ] ||
886                 error "not cached truncate isn't lockless"
887
888         log "disabled lockless truncate"
889         enable_lockless_truncate 0
890         clear_stats $OSC.*.${OSC}_stats
891         $TRUNCATE $DIR2/$tfile 3000000
892         $CHECKSTAT -s 3000000 $DIR1/$tfile || error "wrong file size"
893         [ $(calc_stats $OSC.*.${OSC}_stats lockless_truncate) -eq 0 ] ||
894                 error "lockless truncate disabling failed"
895         rm -f $DIR1/$tfile
896 }
897 run_test 32a "lockless truncate"
898
899 test_32b() { # bug 11270
900         remote_ost_nodsh && skip "remote OST with nodsh" && return
901
902         local node
903         local facets=$(get_facets OST)
904         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
905
906         save_lustre_params client "osc.*.contention_seconds" > $p
907         save_lustre_params $facets \
908                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
909         save_lustre_params $facets \
910                 "ldlm.namespaces.filter-*.contended_locks" >> $p
911         save_lustre_params $facets \
912                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
913         clear_stats $OSC.*.${OSC}_stats
914
915         # agressive lockless i/o settings
916         do_nodes $(comma_list $(osts_nodes)) \
917                 "lctl set_param -n ldlm.namespaces.*.max_nolock_bytes=2000000 \
918                         ldlm.namespaces.filter-*.contended_locks=0 \
919                         ldlm.namespaces.filter-*.contention_seconds=60"
920         lctl set_param -n $OSC.*.contention_seconds=60
921         for i in {1..5}; do
922                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > \
923                         /dev/null 2>&1
924                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > \
925                         /dev/null 2>&1
926         done
927         [ $(calc_stats $OSC.*.${OSC}_stats lockless_write_bytes) -ne 0 ] ||
928                 error "lockless i/o was not triggered"
929         # disable lockless i/o (it is disabled by default)
930         do_nodes $(comma_list $(osts_nodes)) \
931                 "lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes=0 \
932                         ldlm.namespaces.filter-*.contended_locks=32 \
933                         ldlm.namespaces.filter-*.contention_seconds=0"
934         # set contention_seconds to 0 at client too, otherwise Lustre still
935         # remembers lock contention
936         lctl set_param -n $OSC.*.contention_seconds=0
937         clear_stats $OSC.*.${OSC}_stats
938         for i in {1..1}; do
939                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > \
940                         /dev/null 2>&1
941                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > \
942                         /dev/null 2>&1
943         done
944         [ $(calc_stats $OSC.*.${OSC}_stats lockless_write_bytes) -eq 0 ] ||
945                 error "lockless i/o works when disabled"
946         rm -f $DIR1/$tfile
947         restore_lustre_params <$p
948         rm -f $p
949 }
950 run_test 32b "lockless i/o"
951
952 print_jbd_stat () {
953     local dev
954     local mdts=$(get_facets MDS)
955     local varcvs
956     local mds
957
958     local stat=0
959     for mds in ${mdts//,/ }; do
960         varsvc=${mds}_svc
961         dev=$(basename $(do_facet $mds "lctl get_param -n osd*.${!varsvc}.mntdev|\
962                 xargs readlink -f" ))
963         val=$(do_facet $mds "cat /proc/fs/jbd*/${dev}{,:*,-*}/info 2>/dev/null |
964                 head -n1")
965         val=${val%% *};
966         stat=$(( stat + val))
967     done
968     echo $stat
969 }
970
971 # commit on sharing tests
972 test_33a() {
973         remote_mds_nodsh && skip "remote MDS with nodsh" && return
974
975         [ -z "$CLIENTS" ] && skip "Need two or more clients, have $CLIENTS"
976         [ $CLIENTCOUNT -lt 2 ] &&
977                 skip "Need two or more clients, have $CLIENTCOUNT"
978
979         local nfiles=${TEST33_NFILES:-10000}
980         local param_file=$TMP/$tfile-params
981         local COS
982         local jbdold="N/A"
983         local jbdnew="N/A"
984         local jbd
985
986         save_lustre_params $(get_facets MDS) \
987                 "mdt.*.commit_on_sharing" > $param_file
988
989         for COS in 0 1; do
990                 do_facet $SINGLEMDS lctl set_param mdt.*.commit_on_sharing=$COS
991                 avgjbd=0
992                 avgtime=0
993                 for i in 1 2 3; do
994                         do_nodes $CLIENT1,$CLIENT2 "mkdir -p $DIR1/$tdir-\\\$(hostname)-$i"
995
996                 [ "$mds1_FSTYPE" = ldiskfs ] && jbdold=$(print_jbd_stat)
997                 echo "=== START createmany old: $jbdold transaction"
998                 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")
999                 [ "$mds1_FSTYPE" = ldiskfs ] && jbdnew=$(print_jbd_stat)
1000                 [ "$mds1_FSTYPE" = ldiskfs ] && jbd=$(( jbdnew - jbdold ))
1001                 echo "=== END   createmany new: $jbdnew transaction :  $jbd transactions  nfiles $nfiles time $elapsed COS=$COS"
1002                 [ "$mds1_FSTYPE" = ldiskfs ] && avgjbd=$(( avgjbd + jbd ))
1003                 avgtime=$(( avgtime + elapsed ))
1004                 done
1005         eval cos${COS}_jbd=$((avgjbd / 3))
1006         eval cos${COS}_time=$((avgtime / 3))
1007         done
1008
1009         echo "COS=0 transactions (avg): $cos0_jbd  time (avg): $cos0_time"
1010         echo "COS=1 transactions (avg): $cos1_jbd  time (avg): $cos1_time"
1011         [ "$cos0_jbd" != 0 ] &&
1012                 echo "COS=1 vs COS=0 jbd:  $((((cos1_jbd/cos0_jbd - 1)) * 100 )) %"
1013         [ "$cos0_time" != 0 ] &&
1014                 echo "COS=1 vs COS=0 time: $((((cos1_time/cos0_time - 1)) * 100 )) %"
1015
1016         restore_lustre_params < $param_file
1017         rm -f $param_file
1018         return 0
1019 }
1020 run_test 33a "commit on sharing, cross crete/delete, 2 clients, benchmark"
1021
1022 # commit on sharing tests
1023 test_33b() {
1024         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1025
1026         [ -n "$CLIENTS" ] || { skip "Need two or more clients" && return 0; }
1027         [ $CLIENTCOUNT -ge 2 ] ||
1028                 { skip "Need two or more clients, have $CLIENTCOUNT" &&
1029                                                                 return 0; }
1030         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1031
1032         local nfiles=${TEST33_NFILES:-10000}
1033         local param_file=$TMP/$tfile-params
1034
1035         save_lustre_params $(get_facets MDS) \
1036                 "mdt.*.commit_on_sharing" > $param_file
1037
1038         local COS
1039         local jbdold
1040         local jbdnew
1041         local jbd
1042         local MDTIDX=1
1043
1044         for COS in 0 1; do
1045                 do_facet $SINGLEMDS lctl set_param mdt.*.commit_on_sharing=$COS
1046                 avgjbd=0
1047                 avgtime=0
1048                 for i in 1 2 3; do
1049                         do_node $CLIENT1 "$LFS mkdir -i $MDTIDX \
1050                                           $DIR1/$tdir-\\\$(hostname)-$i"
1051
1052                         jbdold=$(print_jbd_stat)
1053                         echo "=== START createmany old: $jbdold transaction"
1054                         local elapsed=$(do_and_time "do_nodes $CLIENT1,$CLIENT2\
1055                                 createmany -o $DIR1/$tdir-\\\$(hostname)-$i/f- \
1056                                 -r$DIR2/$tdir-\\\$(hostname)-$i/f- $nfiles > \
1057                                                                 /dev/null 2>&1")
1058                         jbdnew=$(print_jbd_stat)
1059                         jbd=$(( jbdnew - jbdold ))
1060                         echo "=== END   createmany new: $jbdnew transaction : \
1061                         $jbd transactions nfiles $nfiles time $elapsed COS=$COS"
1062                         avgjbd=$(( avgjbd + jbd ))
1063                         avgtime=$(( avgtime + elapsed ))
1064                 done
1065                 eval cos${COS}_jbd=$((avgjbd / 3))
1066                 eval cos${COS}_time=$((avgtime / 3))
1067         done
1068
1069         echo "COS=0 transactions (avg): $cos0_jbd  time (avg): $cos0_time"
1070         echo "COS=1 transactions (avg): $cos1_jbd  time (avg): $cos1_time"
1071         [ "$cos0_jbd" != 0 ] &&
1072             echo "COS=1 vs COS=0 jbd: $(((cos1_jbd/cos0_jbd - 1) * 100)) %"
1073         [ "$cos0_time" != 0 ] &&
1074             echo "COS=1 vs COS=0 time: $(((cos1_time/cos0_time - 1) * 100)) %"
1075
1076         restore_lustre_params < $param_file
1077         rm -f $param_file
1078         return 0
1079 }
1080 run_test 33b "COS: cross create/delete, 2 clients, benchmark under remote dir"
1081
1082 test_33c() {
1083         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1084         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1085                 skip "DNE CoS not supported"
1086
1087         local sync_count
1088
1089         mkdir $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 "mkdir $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         pdo_lru_clear
1558 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1559         do_nodes $(comma_list $(mdts_nodes)) \
1560                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1561         touch $DIR2
1562         mkdir $DIR1/$tfile &
1563         PID1=$!; pdo_sched
1564         touch $DIR2/$tfile-2
1565         check_pdo_conflict $PID1 || error "create is blocked"
1566         mkdir $DIR2/$tfile-3
1567         check_pdo_conflict $PID1 || error "mkdir is blocked"
1568         link $DIR2/$tfile-2 $DIR2/$tfile-4
1569         check_pdo_conflict $PID1 || error "link is blocked"
1570         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1571         check_pdo_conflict $PID1 || error "rename is blocked"
1572         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1573         check_pdo_conflict $PID1 || error "getattr is blocked"
1574         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1575         rmdir $DIR2/$tfile-3
1576         check_pdo_conflict $PID1 || error "unlink is blocked"
1577
1578         #  all operations above shouldn't wait the first one
1579         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1580         do_nodes $(comma_list $(mdts_nodes)) \
1581                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1582         wait $PID1
1583         rm -rf $DIR/$tfile*
1584         return 0
1585 }
1586 run_test 40a "pdirops: create vs others =============="
1587
1588 test_40b() {
1589         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1590         pdo_lru_clear
1591 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1592         do_nodes $(comma_list $(mdts_nodes)) \
1593                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1594         touch $DIR1/$tfile &
1595         PID1=$!; pdo_sched
1596         # open|create
1597         touch $DIR2/$tfile-2
1598         check_pdo_conflict $PID1 || error "create is blocked"
1599         mkdir $DIR2/$tfile-3
1600         check_pdo_conflict $PID1 || error "mkdir is blocked"
1601         link $DIR2/$tfile-2 $DIR2/$tfile-4
1602         check_pdo_conflict $PID1 || error "link is blocked"
1603         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1604         check_pdo_conflict $PID1 || error "rename is blocked"
1605         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1606         check_pdo_conflict $PID1 || error "getattr is blocked"
1607         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1608         rmdir $DIR2/$tfile-3
1609         check_pdo_conflict $PID1 || error "unlink is blocked"
1610         # all operations above shouldn't wait the first one
1611
1612         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1613         do_nodes $(comma_list $(mdts_nodes)) \
1614                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1615         wait $PID1
1616         rm -rf $DIR/$tfile*
1617         return 0
1618 }
1619 run_test 40b "pdirops: open|create and others =============="
1620
1621 test_40c() {
1622         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1623         pdo_lru_clear
1624         touch $DIR1/$tfile
1625 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1626         do_nodes $(comma_list $(mdts_nodes)) \
1627                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1628         link $DIR1/$tfile $DIR1/$tfile-0 &
1629         PID1=$!; pdo_sched
1630         # open|create
1631         touch $DIR2/$tfile-2
1632         check_pdo_conflict $PID1 || error "create is blocked"
1633         mkdir $DIR2/$tfile-3
1634         check_pdo_conflict $PID1 || error "mkdir is blocked"
1635         link $DIR2/$tfile-2 $DIR2/$tfile-4
1636         check_pdo_conflict $PID1 || error "link is blocked"
1637         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1638         check_pdo_conflict $PID1 || error "rename is blocked"
1639         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1640         check_pdo_conflict $PID1 || error "getattr is blocked"
1641         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1642         rmdir $DIR2/$tfile-3
1643         check_pdo_conflict $PID1 || error "unlink is blocked"
1644
1645         # all operations above shouldn't wait the first one
1646         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1647         do_nodes $(comma_list $(mdts_nodes)) \
1648                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1649         wait $PID1
1650         rm -rf $DIR/$tfile*
1651         return 0
1652 }
1653 run_test 40c "pdirops: link and others =============="
1654
1655 test_40d() {
1656         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1657         pdo_lru_clear
1658         touch $DIR1/$tfile
1659 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1660         do_nodes $(comma_list $(mdts_nodes)) \
1661                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1662         rm $DIR1/$tfile &
1663         PID1=$!; pdo_sched
1664         # open|create
1665         touch $DIR2/$tfile-2
1666         check_pdo_conflict $PID1 || error "create is blocked"
1667         mkdir $DIR2/$tfile-3
1668         check_pdo_conflict $PID1 || error "mkdir is blocked"
1669         link $DIR2/$tfile-2 $DIR2/$tfile-4
1670         check_pdo_conflict $PID1 || error "link is blocked"
1671         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1672         check_pdo_conflict $PID1 || error "rename is blocked"
1673         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1674         check_pdo_conflict $PID1 || error "getattr is blocked"
1675         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1676         rmdir $DIR2/$tfile-3
1677         check_pdo_conflict $PID1 || error "unlink is blocked"
1678
1679         # all operations above shouldn't wait the first one
1680         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1681         do_nodes $(comma_list $(mdts_nodes)) \
1682                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1683         wait $PID1
1684         return 0
1685 }
1686 run_test 40d "pdirops: unlink and others =============="
1687
1688 test_40e() {
1689         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1690         pdo_lru_clear
1691         touch $DIR1/$tfile
1692 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1693         do_nodes $(comma_list $(mdts_nodes)) \
1694                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1695         mv $DIR1/$tfile $DIR1/$tfile-0 &
1696         PID1=$!; pdo_sched
1697         # open|create
1698         touch $DIR2/$tfile-2
1699         check_pdo_conflict $PID1 || error "create is blocked"
1700         mkdir $DIR2/$tfile-3
1701         check_pdo_conflict $PID1 || error "mkdir is blocked"
1702         link $DIR2/$tfile-2 $DIR2/$tfile-4
1703         check_pdo_conflict $PID1 || error "link is blocked"
1704         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1705         check_pdo_conflict $PID1 || error "getattr is blocked"
1706         rm $DIR2/$tfile-4 $DIR2/$tfile-2
1707         rmdir $DIR2/$tfile-3
1708         check_pdo_conflict $PID1 || error "unlink is blocked"
1709
1710        # all operations above shouldn't wait the first one
1711         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1712         do_nodes $(comma_list $(mdts_nodes)) \
1713                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1714         wait $PID1
1715         rm -rf $DIR/$tfile*
1716         return 0
1717 }
1718 run_test 40e "pdirops: rename and others =============="
1719
1720 # test 41: create blocking operations
1721 test_41a() {
1722         pdo_lru_clear
1723 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1724         do_nodes $(comma_list $(mdts_nodes)) \
1725                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1726         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1727         PID1=$! ; pdo_sched
1728         mkdir $DIR2/$tfile &
1729         PID2=$! ; pdo_sched
1730         do_nodes $(comma_list $(mdts_nodes)) \
1731                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1732         check_pdo_conflict $PID1 && { wait $PID1; echo "mkdir isn't blocked"; }
1733         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1734         rm -rf $DIR/$tfile*
1735         return 0
1736 }
1737 run_test 41a "pdirops: create vs mkdir =============="
1738
1739 test_41b() {
1740         pdo_lru_clear
1741 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1742         do_nodes $(comma_list $(mdts_nodes)) \
1743                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1744         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1745         PID1=$! ; pdo_sched
1746         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1747         PID2=$! ; pdo_sched
1748         do_nodes $(comma_list $(mdts_nodes)) \
1749                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1750         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1751         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1752         rm -rf $DIR/$tfile*
1753         return 0
1754 }
1755 run_test 41b "pdirops: create vs create =============="
1756
1757 test_41c() {
1758         pdo_lru_clear
1759         touch $DIR1/$tfile-2
1760 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1761         do_nodes $(comma_list $(mdts_nodes)) \
1762                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1763         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1764         PID1=$! ; pdo_sched
1765         link $DIR2/$tfile-2 $DIR2/$tfile &
1766         PID2=$! ; pdo_sched
1767         do_nodes $(comma_list $(mdts_nodes)) \
1768                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1769         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1770         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1771         rm -rf $DIR/$tfile*
1772         return 0
1773 }
1774 run_test 41c "pdirops: create vs link =============="
1775
1776 test_41d() {
1777         pdo_lru_clear
1778 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1779         do_nodes $(comma_list $(mdts_nodes)) \
1780                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1781         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1782         PID1=$! ; pdo_sched
1783         rm $DIR2/$tfile &
1784         PID2=$! ; pdo_sched
1785         do_nodes $(comma_list $(mdts_nodes)) \
1786                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1787         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1788         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1789         rm -rf $DIR/$tfile*
1790         return 0
1791 }
1792 run_test 41d "pdirops: create vs unlink =============="
1793
1794 test_41e() {
1795         pdo_lru_clear
1796         touch $DIR1/$tfile-2
1797 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1798         do_nodes $(comma_list $(mdts_nodes)) \
1799                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1800         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1801         PID1=$! ; pdo_sched
1802         mv $DIR2/$tfile-2 $DIR2/$tfile &
1803         PID2=$! ; pdo_sched
1804         do_nodes $(comma_list $(mdts_nodes)) \
1805                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1806         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1807         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1808         rm -rf $DIR/$tfile*
1809         return 0
1810 }
1811 run_test 41e "pdirops: create and rename (tgt) =============="
1812
1813 test_41f() {
1814         pdo_lru_clear
1815 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1816         do_nodes $(comma_list $(mdts_nodes)) \
1817                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1818         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1819         PID1=$! ; pdo_sched
1820         mv $DIR2/$tfile $DIR2/$tfile-2 &
1821         PID2=$! ; pdo_sched
1822         do_nodes $(comma_list $(mdts_nodes)) \
1823                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1824         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1825         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1826         rm -rf $DIR/$tfile*
1827         return 0
1828 }
1829 run_test 41f "pdirops: create and rename (src) =============="
1830
1831 test_41g() {
1832         pdo_lru_clear
1833 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1834         do_nodes $(comma_list $(mdts_nodes)) \
1835                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1836         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1837         PID1=$! ; pdo_sched
1838         stat $DIR2/$tfile > /dev/null &
1839         PID2=$! ; pdo_sched
1840         do_nodes $(comma_list $(mdts_nodes)) \
1841                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1842         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1843         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
1844         rm -rf $DIR/$tfile*
1845         return 0
1846 }
1847 run_test 41g "pdirops: create vs getattr =============="
1848
1849 test_41h() {
1850         pdo_lru_clear
1851 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1852         do_nodes $(comma_list $(mdts_nodes)) \
1853                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1854         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1855         PID1=$! ; pdo_sched
1856         ls -lia $DIR2/ > /dev/null &
1857         PID2=$! ; pdo_sched
1858         do_nodes $(comma_list $(mdts_nodes)) \
1859                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1860         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1861         wait $PID2
1862         rm -rf $DIR/$tfile*
1863         return 0
1864 }
1865 run_test 41h "pdirops: create vs readdir =============="
1866
1867 # test 42: unlink and blocking operations
1868 test_42a() {
1869         pdo_lru_clear
1870 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1871         do_nodes $(comma_list $(mdts_nodes)) \
1872                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1873         mkdir $DIR1/$tfile &
1874         PID1=$! ; pdo_sched
1875         mkdir $DIR2/$tfile &
1876         PID2=$! ; pdo_sched
1877         do_nodes $(comma_list $(mdts_nodes)) \
1878                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1879         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1880         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1881         rm -rf $DIR/$tfile*
1882         return 0
1883 }
1884 run_test 42a "pdirops: mkdir vs mkdir =============="
1885
1886 test_42b() {
1887         pdo_lru_clear
1888 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1889         do_nodes $(comma_list $(mdts_nodes)) \
1890                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1891         mkdir $DIR1/$tfile &
1892         PID1=$! ; pdo_sched
1893         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1894         PID2=$! ; pdo_sched
1895         do_nodes $(comma_list $(mdts_nodes)) \
1896                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1897         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1898         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1899         rm -rf $DIR/$tfile*
1900         return 0
1901 }
1902 run_test 42b "pdirops: mkdir vs create =============="
1903
1904 test_42c() {
1905         pdo_lru_clear
1906         touch $DIR1/$tfile-2
1907 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1908         do_nodes $(comma_list $(mdts_nodes)) \
1909                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1910         mkdir $DIR1/$tfile &
1911         PID1=$! ; pdo_sched
1912         link $DIR2/$tfile-2 $DIR2/$tfile &
1913         PID2=$! ; pdo_sched
1914         do_nodes $(comma_list $(mdts_nodes)) \
1915                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1916         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1917         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1918         rm -rf $DIR/$tfile*
1919         return 0
1920 }
1921 run_test 42c "pdirops: mkdir vs link =============="
1922
1923 test_42d() {
1924         pdo_lru_clear
1925 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1926         do_nodes $(comma_list $(mdts_nodes)) \
1927                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1928         mkdir $DIR1/$tfile &
1929         PID1=$! ; pdo_sched
1930         rmdir $DIR2/$tfile &
1931         PID2=$! ; pdo_sched
1932         do_nodes $(comma_list $(mdts_nodes)) \
1933                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1934         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1935         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1936         rm -rf $DIR/$tfile*
1937         return 0
1938 }
1939 run_test 42d "pdirops: mkdir vs unlink =============="
1940
1941 test_42e() {
1942         pdo_lru_clear
1943         touch $DIR1/$tfile-2
1944 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1945         do_nodes $(comma_list $(mdts_nodes)) \
1946                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1947         mkdir $DIR1/$tfile &
1948         PID1=$! ; pdo_sched
1949         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
1950         PID2=$! ; pdo_sched
1951         do_nodes $(comma_list $(mdts_nodes)) \
1952                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1953         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1954         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
1955         rm -rf $DIR/$tfile*
1956         return 0
1957 }
1958 run_test 42e "pdirops: mkdir and rename (tgt) =============="
1959
1960 test_42f() {
1961         pdo_lru_clear
1962 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1963         do_nodes $(comma_list $(mdts_nodes)) \
1964                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1965         mkdir $DIR1/$tfile &
1966         PID1=$! ; pdo_sched
1967         mv $DIR2/$tfile $DIR2/$tfile-2 &
1968         PID2=$! ; pdo_sched
1969         do_nodes $(comma_list $(mdts_nodes)) \
1970                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1971         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1972         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1973         rm -rf $DIR/$tfile*
1974         return 0
1975 }
1976 run_test 42f "pdirops: mkdir and rename (src) =============="
1977
1978 test_42g() {
1979         pdo_lru_clear
1980 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1981         do_nodes $(comma_list $(mdts_nodes)) \
1982                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1983         mkdir $DIR1/$tfile &
1984         PID1=$! ; pdo_sched
1985         stat $DIR2/$tfile > /dev/null &
1986         PID2=$! ; pdo_sched
1987         do_nodes $(comma_list $(mdts_nodes)) \
1988                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1989         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1990         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
1991         rm -rf $DIR/$tfile*
1992         return 0
1993 }
1994 run_test 42g "pdirops: mkdir vs getattr =============="
1995
1996 test_42h() {
1997         pdo_lru_clear
1998 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1999         do_nodes $(comma_list $(mdts_nodes)) \
2000                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2001         mkdir $DIR1/$tfile &
2002         PID1=$! ; pdo_sched
2003         ls -lia $DIR2/ > /dev/null &
2004         PID2=$! ; pdo_sched
2005         do_nodes $(comma_list $(mdts_nodes)) \
2006                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2007         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2008         wait $PID2
2009         rm -rf $DIR/$tfile*
2010         return 0
2011 }
2012 run_test 42h "pdirops: mkdir vs readdir =============="
2013
2014 # test 43: rmdir,mkdir won't return -EEXIST
2015 test_43a() {
2016         for i in {1..1000}; do
2017                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2018                 rmdir $DIR2/$tdir || error "rmdir $tdir failed"
2019         done
2020         return 0
2021 }
2022 run_test 43a "rmdir,mkdir doesn't return -EEXIST =============="
2023
2024 test_43b() {
2025         pdo_lru_clear
2026         touch $DIR1/$tfile
2027 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2028         do_nodes $(comma_list $(mdts_nodes)) \
2029                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2030         rm $DIR1/$tfile &
2031         PID1=$! ; pdo_sched
2032         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2033         PID2=$! ; pdo_sched
2034         do_nodes $(comma_list $(mdts_nodes)) \
2035                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2036         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2037         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2038         rm -rf $DIR/$tfile*
2039         return 0
2040 }
2041 run_test 43b "pdirops: unlink vs create =============="
2042
2043 test_43c() {
2044         pdo_lru_clear
2045         touch $DIR1/$tfile
2046         touch $DIR1/$tfile-2
2047 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2048         do_nodes $(comma_list $(mdts_nodes)) \
2049                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2050         rm $DIR1/$tfile &
2051         PID1=$! ; pdo_sched
2052         link $DIR2/$tfile-2 $DIR2/$tfile &
2053         PID2=$! ; pdo_sched
2054         do_nodes $(comma_list $(mdts_nodes)) \
2055                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2056         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2057         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2058         rm -rf $DIR/$tfile*
2059         return 0
2060 }
2061 run_test 43c "pdirops: unlink vs link =============="
2062
2063 test_43d() {
2064         pdo_lru_clear
2065         touch $DIR1/$tfile
2066 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2067         do_nodes $(comma_list $(mdts_nodes)) \
2068                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2069         rm $DIR1/$tfile &
2070         PID1=$! ; pdo_sched
2071         rm $DIR2/$tfile &
2072         PID2=$! ; pdo_sched
2073         do_nodes $(comma_list $(mdts_nodes)) \
2074                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2075         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2076         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2077         rm -rf $DIR/$tfile*
2078         return 0
2079 }
2080 run_test 43d "pdirops: unlink vs unlink =============="
2081
2082 test_43e() {
2083         pdo_lru_clear
2084         touch $DIR1/$tfile
2085         touch $DIR1/$tfile-2
2086 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2087         do_nodes $(comma_list $(mdts_nodes)) \
2088                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2089         rm $DIR1/$tfile &
2090         PID1=$! ; pdo_sched
2091         mv -u $DIR2/$tfile-2 $DIR2/$tfile &
2092         PID2=$! ; pdo_sched
2093         do_nodes $(comma_list $(mdts_nodes)) \
2094                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2095         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2096         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2097         rm -rf $DIR/$tfile*
2098         return 0
2099 }
2100 run_test 43e "pdirops: unlink and rename (tgt) =============="
2101
2102 test_43f() {
2103         pdo_lru_clear
2104         touch $DIR1/$tfile
2105 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2106         do_nodes $(comma_list $(mdts_nodes)) \
2107                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2108         rm $DIR1/$tfile &
2109         PID1=$! ; pdo_sched
2110         mv $DIR2/$tfile $DIR2/$tfile-2 &
2111         PID2=$! ; pdo_sched
2112         do_nodes $(comma_list $(mdts_nodes)) \
2113                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2114         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2115         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2116         rm -rf $DIR/$tfile*
2117         return 0
2118 }
2119 run_test 43f "pdirops: unlink and rename (src) =============="
2120
2121 test_43g() {
2122         pdo_lru_clear
2123         touch $DIR1/$tfile
2124 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2125         do_nodes $(comma_list $(mdts_nodes)) \
2126                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2127         rm $DIR1/$tfile &
2128         PID1=$! ; pdo_sched
2129         stat $DIR2/$tfile > /dev/null &
2130         PID2=$! ; pdo_sched
2131         do_nodes $(comma_list $(mdts_nodes)) \
2132                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2133         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2134         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2135         rm -rf $DIR/$tfile*
2136         return 0
2137 }
2138 run_test 43g "pdirops: unlink vs getattr =============="
2139
2140 test_43h() {
2141         pdo_lru_clear
2142         touch $DIR1/$tfile
2143 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2144         do_nodes $(comma_list $(mdts_nodes)) \
2145                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2146         rm $DIR1/$tfile &
2147         PID1=$! ; pdo_sched
2148         ls -lia $DIR2/ > /dev/null &
2149         PID2=$! ; pdo_sched
2150         do_nodes $(comma_list $(mdts_nodes)) \
2151                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2152         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2153         wait $PID2
2154         rm -rf $DIR/$tfile*
2155         return 0
2156 }
2157 run_test 43h "pdirops: unlink vs readdir =============="
2158
2159 test_43i() {
2160         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2161         pdo_lru_clear
2162         touch $DIR1/$tfile
2163 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2164         do_nodes $(comma_list $(mdts_nodes)) \
2165                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2166         rm $DIR1/$tfile &
2167         PID1=$! ; pdo_sched
2168         $LFS mkdir -i 1 $DIR2/$tfile &
2169         PID2=$! ; pdo_sched
2170         do_nodes $(comma_list $(mdts_nodes)) \
2171                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2172         check_pdo_conflict $PID1 &&
2173                 { wait $PID1; error "remote mkdir isn't blocked"; }
2174         wait $PID2 ; [ $? -eq 0 ] || error "remote mkdir must succeed"
2175         rm -rf $DIR/$tfile*
2176         return 0
2177 }
2178 run_test 43i "pdirops: unlink vs remote mkdir"
2179
2180 test_43j() {
2181         [[ $MDS1_VERSION -lt $(version_code 2.13.52) ]] &&
2182                 skip "Need MDS version newer than 2.13.52"
2183
2184         for i in {1..100}; do
2185 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_CREATE_RACE         0x167
2186                 do_facet $SINGLEMDS lctl set_param fail_loc=0x80000167
2187                 OK=0
2188                 mkdir $DIR1/$tdir &
2189                 PID1=$!
2190                 mkdir $DIR2/$tdir && ((OK++))
2191                 wait $PID1 && ((OK++))
2192                 (( OK == 1 )) || error "exactly one mkdir should succeed"
2193
2194                 rmdir $DIR1/$tdir || error "rmdir failed"
2195         done
2196         return 0
2197 }
2198 run_test 43j "racy mkdir return EEXIST =============="
2199
2200 # test 44: rename tgt and blocking operations
2201 test_44a() {
2202         pdo_lru_clear
2203         touch $DIR1/$tfile-2
2204 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
2205         do_nodes $(comma_list $(mdts_nodes)) \
2206                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2207         mv $DIR1/$tfile-2 $DIR1/$tfile &
2208         PID1=$! ; pdo_sched
2209         mkdir $DIR2/$tfile &
2210         PID2=$! ; pdo_sched
2211         do_nodes $(comma_list $(mdts_nodes)) \
2212                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2213         check_pdo_conflict $PID1 && { wait $PID1; date;error "mkdir isn't blocked"; }
2214         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2215         date
2216         rm -rf $DIR/$tfile*
2217         return 0
2218 }
2219 run_test 44a "pdirops: rename tgt vs mkdir =============="
2220
2221 test_44b() {
2222         pdo_lru_clear
2223         touch $DIR1/$tfile-2
2224 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2225         do_nodes $(comma_list $(mdts_nodes)) \
2226                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2227         mv $DIR1/$tfile-2 $DIR1/$tfile &
2228         PID1=$! ; pdo_sched
2229         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2230         PID2=$! ; pdo_sched
2231         do_nodes $(comma_list $(mdts_nodes)) \
2232                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2233         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2234         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2235         rm -rf $DIR/$tfile*
2236         return 0
2237 }
2238 run_test 44b "pdirops: rename tgt vs create =============="
2239
2240 test_44c() {
2241         pdo_lru_clear
2242         touch $DIR1/$tfile-2
2243         touch $DIR1/$tfile-3
2244 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2245         do_nodes $(comma_list $(mdts_nodes)) \
2246                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2247         mv $DIR1/$tfile-2 $DIR1/$tfile &
2248         PID1=$! ; pdo_sched
2249         link $DIR2/$tfile-3 $DIR2/$tfile &
2250         PID2=$! ; pdo_sched
2251         do_nodes $(comma_list $(mdts_nodes)) \
2252                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2253         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2254         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2255         rm -rf $DIR/$tfile*
2256         return 0
2257 }
2258 run_test 44c "pdirops: rename tgt vs link =============="
2259
2260 test_44d() {
2261         pdo_lru_clear
2262         touch $DIR1/$tfile-2
2263 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2264         do_nodes $(comma_list $(mdts_nodes)) \
2265                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2266         mv $DIR1/$tfile-2 $DIR1/$tfile &
2267         PID1=$! ; pdo_sched
2268         rm $DIR2/$tfile &
2269         PID2=$! ; pdo_sched
2270         do_nodes $(comma_list $(mdts_nodes)) \
2271                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2272         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2273         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2274         rm -rf $DIR/$tfile*
2275         return 0
2276 }
2277 run_test 44d "pdirops: rename tgt vs unlink =============="
2278
2279 test_44e() {
2280         pdo_lru_clear
2281         touch $DIR1/$tfile
2282         touch $DIR1/$tfile-2
2283         touch $DIR1/$tfile-3
2284 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2285         do_nodes $(comma_list $(mdts_nodes)) \
2286                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2287         mv $DIR1/$tfile-2 $DIR1/$tfile &
2288         PID1=$! ; pdo_sched
2289         mv $DIR2/$tfile-3 $DIR2/$tfile &
2290         PID2=$! ; pdo_sched
2291         do_nodes $(comma_list $(mdts_nodes)) \
2292                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2293         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2294         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2295         rm -rf $DIR/$tfile*
2296         return 0
2297 }
2298 run_test 44e "pdirops: rename tgt and rename (tgt) =============="
2299
2300 test_44f() {
2301         pdo_lru_clear
2302         touch $DIR1/$tfile-2
2303         touch $DIR1/$tfile-3
2304 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2305         do_nodes $(comma_list $(mdts_nodes)) \
2306                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2307         mv $DIR1/$tfile-2 $DIR1/$tfile &
2308         PID1=$! ; pdo_sched
2309         mv $DIR2/$tfile $DIR2/$tfile-3 &
2310         PID2=$! ; pdo_sched
2311         do_nodes $(comma_list $(mdts_nodes)) \
2312                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2313         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2314         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2315         rm -rf $DIR/$tfile*
2316         return 0
2317 }
2318 run_test 44f "pdirops: rename tgt and rename (src) =============="
2319
2320 test_44g() {
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         stat $DIR2/$tfile > /dev/null &
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; error "getattr isn't blocked"; }
2333         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2334         rm -rf $DIR/$tfile*
2335         return 0
2336 }
2337 run_test 44g "pdirops: rename tgt vs getattr =============="
2338
2339 test_44h() {
2340         pdo_lru_clear
2341         touch $DIR1/$tfile-2
2342 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2343         do_nodes $(comma_list $(mdts_nodes)) \
2344                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2345         mv $DIR1/$tfile-2 $DIR1/$tfile &
2346         PID1=$! ; pdo_sched
2347         ls -lia $DIR2/ > /dev/null &
2348         PID2=$! ; pdo_sched
2349         do_nodes $(comma_list $(mdts_nodes)) \
2350                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2351         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2352         wait $PID2
2353         rm -rf $DIR/$tfile*
2354         return 0
2355 }
2356 run_test 44h "pdirops: rename tgt vs readdir =============="
2357
2358 # test 44: rename tgt and blocking operations
2359 test_44i() {
2360         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2361         pdo_lru_clear
2362         touch $DIR1/$tfile-2
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         $LFS mkdir -i 1 $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;
2373                                 error "remote mkdir isn't blocked"; }
2374         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2375         rm -rf $DIR/$tfile*
2376         return 0
2377 }
2378 run_test 44i "pdirops: rename tgt vs remote mkdir"
2379
2380 # test 45: rename,mkdir doesn't fail with -EEXIST
2381 test_45a() {
2382         for i in {1..1000}; do
2383                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2384                 mrename $DIR2/$tdir $DIR2/$tdir.$i > /dev/null ||
2385                         error "mrename to $tdir.$i failed"
2386         done
2387         rm -rf $DIR/$tdir*
2388         return 0
2389 }
2390 run_test 45a "rename,mkdir doesn't return -EEXIST =============="
2391
2392 test_45b() {
2393         pdo_lru_clear
2394         touch $DIR1/$tfile
2395 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2396         do_nodes $(comma_list $(mdts_nodes)) \
2397                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2398         mv $DIR1/$tfile $DIR1/$tfile-2 &
2399         PID1=$! ; pdo_sched
2400         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2401         PID2=$! ; pdo_sched
2402         do_nodes $(comma_list $(mdts_nodes)) \
2403                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2404         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2405         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2406         rm -rf $DIR/$tfile*
2407         return 0
2408 }
2409 run_test 45b "pdirops: rename src vs create =============="
2410
2411 test_45c() {
2412         pdo_lru_clear
2413         touch $DIR1/$tfile
2414         touch $DIR1/$tfile-3
2415 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2416         do_nodes $(comma_list $(mdts_nodes)) \
2417                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2418         mv $DIR1/$tfile $DIR1/$tfile-2 &
2419         PID1=$! ; pdo_sched
2420         link $DIR2/$tfile-3 $DIR2/$tfile &
2421         PID2=$! ; pdo_sched
2422         do_nodes $(comma_list $(mdts_nodes)) \
2423                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2424         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2425         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2426         rm -rf $DIR/$tfile*
2427         return 0
2428 }
2429 run_test 45c "pdirops: rename src vs link =============="
2430
2431 test_45d() {
2432         pdo_lru_clear
2433         touch $DIR1/$tfile
2434 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2435         do_nodes $(comma_list $(mdts_nodes)) \
2436                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2437         mv $DIR1/$tfile $DIR1/$tfile-2 &
2438         PID1=$! ; pdo_sched
2439         rm $DIR2/$tfile &
2440         PID2=$! ; pdo_sched
2441         do_nodes $(comma_list $(mdts_nodes)) \
2442                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2443         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2444         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2445         rm -rf $DIR/$tfile*
2446         return 0
2447 }
2448 run_test 45d "pdirops: rename src vs unlink =============="
2449
2450 test_45e() {
2451         pdo_lru_clear
2452         touch $DIR1/$tfile
2453         touch $DIR1/$tfile-3
2454 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2455         do_nodes $(comma_list $(mdts_nodes)) \
2456                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2457         mv $DIR1/$tfile $DIR1/$tfile-2 &
2458         PID1=$! ; pdo_sched
2459         mv $DIR2/$tfile-3 $DIR2/$tfile &
2460         PID2=$! ; pdo_sched
2461         do_nodes $(comma_list $(mdts_nodes)) \
2462                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2463         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2464         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2465         rm -rf $DIR/$tfile*
2466         return 0
2467 }
2468 run_test 45e "pdirops: rename src and rename (tgt) =============="
2469
2470 test_45f() {
2471         pdo_lru_clear
2472         touch $DIR1/$tfile
2473 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2474         do_nodes $(comma_list $(mdts_nodes)) \
2475                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2476         mv $DIR1/$tfile $DIR1/$tfile-2 &
2477         PID1=$! ; pdo_sched
2478         mv $DIR2/$tfile $DIR2/$tfile-3 &
2479         PID2=$! ; pdo_sched
2480         do_nodes $(comma_list $(mdts_nodes)) \
2481                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2482         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2483         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2484         rm -rf $DIR/$tfile*
2485         return 0
2486 }
2487 run_test 45f "pdirops: rename src and rename (src) =============="
2488
2489 test_45g() {
2490         pdo_lru_clear
2491         touch $DIR1/$tfile
2492 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2493         do_nodes $(comma_list $(mdts_nodes)) \
2494                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2495         mv $DIR1/$tfile $DIR1/$tfile-2 &
2496         PID1=$! ; pdo_sched
2497         stat $DIR2/$tfile > /dev/null &
2498         PID2=$! ; pdo_sched
2499         do_nodes $(comma_list $(mdts_nodes)) \
2500                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2501         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2502         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2503         rm -rf $DIR/$tfile*
2504         return 0
2505 }
2506 run_test 45g "pdirops: rename src vs getattr =============="
2507
2508 test_45h() {
2509         pdo_lru_clear
2510         touch $DIR1/$tfile
2511 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2512         do_nodes $(comma_list $(mdts_nodes)) \
2513                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2514         mv $DIR1/$tfile $DIR1/$tfile-2 &
2515         PID1=$! ; pdo_sched
2516         ls -lia $DIR2/ > /dev/null &
2517         do_nodes $(comma_list $(mdts_nodes)) \
2518                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2519         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2520         wait $PID2
2521         rm -rf $DIR/$tfile*
2522         return 0
2523 }
2524 run_test 45h "pdirops: unlink vs readdir =============="
2525
2526 test_45i() {
2527         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2528         pdo_lru_clear
2529         touch $DIR1/$tfile
2530 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2531         do_nodes $(comma_list $(mdts_nodes)) \
2532                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2533         mv $DIR1/$tfile $DIR1/$tfile-2 &
2534         PID1=$! ; pdo_sched
2535         $LFS mkdir -i 1 $DIR2/$tfile &
2536         PID2=$! ; pdo_sched
2537         do_nodes $(comma_list $(mdts_nodes)) \
2538                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2539         check_pdo_conflict $PID1 && { wait $PID1;
2540                                 error "create remote dir isn't blocked"; }
2541         wait $PID2 ; [ $? -eq 0 ] || error "create remote dir must succeed"
2542         rm -rf $DIR/$tfile*
2543         return 0
2544 }
2545 run_test 45i "pdirops: rename src vs remote mkdir"
2546
2547 # test 46: link and blocking operations
2548 test_46a() {
2549         pdo_lru_clear
2550         touch $DIR1/$tfile-2
2551 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2552         do_nodes $(comma_list $(mdts_nodes)) \
2553                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2554         link $DIR1/$tfile-2 $DIR1/$tfile &
2555         PID1=$! ; pdo_sched
2556         mkdir $DIR2/$tfile &
2557         PID2=$! ; pdo_sched
2558         do_nodes $(comma_list $(mdts_nodes)) \
2559                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2560         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2561         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2562         rm -rf $DIR/$tfile*
2563         return 0
2564 }
2565 run_test 46a "pdirops: link vs mkdir =============="
2566
2567 test_46b() {
2568         pdo_lru_clear
2569         touch $DIR1/$tfile-2
2570 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2571         do_nodes $(comma_list $(mdts_nodes)) \
2572                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2573         link $DIR1/$tfile-2 $DIR1/$tfile &
2574         PID1=$! ; pdo_sched
2575         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2576         PID2=$! ; pdo_sched
2577         do_nodes $(comma_list $(mdts_nodes)) \
2578                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2579         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2580         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2581         rm -rf $DIR/$tfile*
2582         return 0
2583 }
2584 run_test 46b "pdirops: link vs create =============="
2585
2586 test_46c() {
2587         pdo_lru_clear
2588         touch $DIR1/$tfile-2
2589 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2590         do_nodes $(comma_list $(mdts_nodes)) \
2591                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2592         link $DIR1/$tfile-2 $DIR1/$tfile &
2593         PID1=$! ; pdo_sched
2594         link $DIR2/$tfile $DIR2/$tfile &
2595         PID2=$! ; pdo_sched
2596         do_nodes $(comma_list $(mdts_nodes)) \
2597                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2598         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2599         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2600         rm -rf $DIR/$tfile*
2601         return 0
2602 }
2603 run_test 46c "pdirops: link vs link =============="
2604
2605 test_46d() {
2606         pdo_lru_clear
2607         touch $DIR1/$tfile-2
2608 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2609         do_nodes $(comma_list $(mdts_nodes)) \
2610                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2611         link $DIR1/$tfile-2 $DIR1/$tfile &
2612         PID1=$! ; pdo_sched
2613         rm $DIR2/$tfile &
2614         PID2=$! ; pdo_sched
2615         do_nodes $(comma_list $(mdts_nodes)) \
2616                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2617         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2618         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2619         rm -rf $DIR/$tfile*
2620         return 0
2621 }
2622 run_test 46d "pdirops: link vs unlink =============="
2623
2624 test_46e() {
2625         pdo_lru_clear
2626         touch $DIR1/$tfile-2
2627         touch $DIR1/$tfile-3
2628 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2629         do_nodes $(comma_list $(mdts_nodes)) \
2630                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2631         link $DIR1/$tfile-2 $DIR1/$tfile &
2632         PID1=$! ; pdo_sched
2633         mv $DIR2/$tfile-3 $DIR2/$tfile &
2634         PID2=$! ; pdo_sched
2635         do_nodes $(comma_list $(mdts_nodes)) \
2636                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2637         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2638         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2639         rm -rf $DIR/$tfile*
2640         return 0
2641 }
2642 run_test 46e "pdirops: link and rename (tgt) =============="
2643
2644 test_46f() {
2645         pdo_lru_clear
2646         touch $DIR1/$tfile-2
2647         touch $DIR1/$tfile-3
2648 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2649         do_nodes $(comma_list $(mdts_nodes)) \
2650                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2651         link $DIR1/$tfile-2 $DIR1/$tfile &
2652         PID1=$! ; pdo_sched
2653         mv $DIR2/$tfile $DIR2/$tfile-3 &
2654         PID2=$! ; pdo_sched
2655         do_nodes $(comma_list $(mdts_nodes)) \
2656                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2657         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2658         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2659         rm -rf $DIR/$tfile*
2660         return 0
2661 }
2662 run_test 46f "pdirops: link and rename (src) =============="
2663
2664 test_46g() {
2665         pdo_lru_clear
2666         touch $DIR1/$tfile-2
2667 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2668         do_nodes $(comma_list $(mdts_nodes)) \
2669                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2670         link $DIR1/$tfile-2 $DIR1/$tfile &
2671         PID1=$! ; pdo_sched
2672         stat $DIR2/$tfile > /dev/null &
2673         PID2=$! ; pdo_sched
2674         do_nodes $(comma_list $(mdts_nodes)) \
2675                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2676         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2677         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2678         rm -rf $DIR/$tfile*
2679         return 0
2680 }
2681 run_test 46g "pdirops: link vs getattr =============="
2682
2683 test_46h() {
2684         pdo_lru_clear
2685         touch $DIR1/$tfile-2
2686 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2687         do_nodes $(comma_list $(mdts_nodes)) \
2688                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2689         link $DIR1/$tfile-2 $DIR1/$tfile &
2690         PID1=$! ; pdo_sched
2691         ls -lia $DIR2/ > /dev/null &
2692         PID2=$! ; pdo_sched
2693         do_nodes $(comma_list $(mdts_nodes)) \
2694                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2695         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2696         wait $PID2
2697         rm -rf $DIR/$tfile*
2698         return 0
2699 }
2700 run_test 46h "pdirops: link vs readdir =============="
2701
2702 test_46i() {
2703         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2704         pdo_lru_clear
2705         touch $DIR1/$tfile-2
2706 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2707         do_nodes $(comma_list $(mdts_nodes)) \
2708                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2709         link $DIR1/$tfile-2 $DIR1/$tfile &
2710         PID1=$! ; pdo_sched
2711         $LFS mkdir -i 1 $DIR2/$tfile &
2712         PID2=$! ; pdo_sched
2713         do_nodes $(comma_list $(mdts_nodes)) \
2714                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2715         check_pdo_conflict $PID1 && { wait $PID1;
2716                                 error "remote mkdir isn't blocked"; }
2717         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2718         rm -rf $DIR/$tfile*
2719         return 0
2720 }
2721 run_test 46i "pdirops: link vs remote mkdir"
2722
2723 # test 47: remote mkdir and blocking operations
2724 test_47a() {
2725 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2726         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2727         pdo_lru_clear
2728         do_nodes $(comma_list $(mdts_nodes)) \
2729                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2730         $LFS mkdir -i 1 $DIR1/$tfile &
2731         PID1=$! ; pdo_sched
2732         mkdir $DIR2/$tfile &
2733         PID2=$! ; pdo_sched
2734         do_nodes $(comma_list $(mdts_nodes)) \
2735                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2736         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2737         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2738         rm -rf $DIR/$tfile*
2739         return 0
2740 }
2741 run_test 47a "pdirops: remote mkdir vs mkdir"
2742
2743 test_47b() {
2744 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2745         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2746         pdo_lru_clear
2747         do_nodes $(comma_list $(mdts_nodes)) \
2748                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2749         $LFS mkdir -i 1 $DIR1/$tfile &
2750         PID1=$! ; pdo_sched
2751         sleep 1 # please do not remove this sleep, see LU-10754
2752         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c &
2753         PID2=$! ; pdo_sched
2754         do_nodes $(comma_list $(mdts_nodes)) \
2755                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2756         check_pdo_conflict $PID1 && { wait $PID1;
2757                                         error "create isn't blocked"; }
2758         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2759         rm -rf $DIR/$tfile*
2760         return 0
2761 }
2762 run_test 47b "pdirops: remote mkdir vs create"
2763
2764 test_47c() {
2765         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2766         pdo_lru_clear
2767         touch $DIR1/$tfile-2
2768 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2769         do_nodes $(comma_list $(mdts_nodes)) \
2770                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2771         $LFS mkdir -i 1 $DIR1/$tfile &
2772         PID1=$! ; pdo_sched
2773         link $DIR2/$tfile-2 $DIR2/$tfile &
2774         PID2=$! ; pdo_sched
2775         do_nodes $(comma_list $(mdts_nodes)) \
2776                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2777         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2778         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2779         rm -rf $DIR/$tfile*
2780         return 0
2781 }
2782 run_test 47c "pdirops: remote mkdir vs link"
2783
2784 test_47d() {
2785         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2786         pdo_lru_clear
2787 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2788         do_nodes $(comma_list $(mdts_nodes)) \
2789                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2790         $LFS mkdir -i 1 $DIR1/$tfile &
2791         PID1=$! ; pdo_sched
2792         rmdir $DIR2/$tfile &
2793         PID2=$! ; pdo_sched
2794         do_nodes $(comma_list $(mdts_nodes)) \
2795                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2796         check_pdo_conflict $PID1 && { wait $PID1;
2797                                         error "unlink isn't blocked"; }
2798         wait $PID2 ; [ $? -eq 0 ] || error "rmdir must succeed"
2799         rm -rf $DIR/$tfile*
2800         return 0
2801 }
2802 run_test 47d "pdirops: remote mkdir vs unlink"
2803
2804 test_47e() {
2805         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2806         pdo_lru_clear
2807         touch $DIR1/$tfile-2
2808 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2809         do_nodes $(comma_list $(mdts_nodes)) \
2810                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2811         $LFS mkdir -i 1 $DIR1/$tfile &
2812         PID1=$! ; pdo_sched
2813         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
2814         PID2=$! ; pdo_sched
2815         do_nodes $(comma_list $(mdts_nodes)) \
2816                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2817         check_pdo_conflict $PID1 && { wait $PID1;
2818                                         error "rename isn't blocked"; }
2819         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2820         rm -rf $DIR/$tfile*
2821         return 0
2822 }
2823 run_test 47e "pdirops: remote mkdir and rename (tgt)"
2824
2825 test_47f() {
2826         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2827         pdo_lru_clear
2828 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2829         do_nodes $(comma_list $(mdts_nodes)) \
2830                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2831         $LFS mkdir -i 1 $DIR1/$tfile &
2832         PID1=$! ; pdo_sched
2833         mv $DIR2/$tfile $DIR2/$tfile-2 &
2834         PID2=$! ; pdo_sched
2835         do_nodes $(comma_list $(mdts_nodes)) \
2836                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2837         check_pdo_conflict $PID1 && { wait $PID1;
2838                                         error "rename isn't blocked"; }
2839         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2840         rm -rf $DIR/$tfile*
2841         return 0
2842 }
2843 run_test 47f "pdirops: remote mkdir and rename (src)"
2844
2845 test_47g() {
2846         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2847         sync
2848         sync_all_data
2849         pdo_lru_clear
2850 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2851         do_nodes $(comma_list $(mdts_nodes)) \
2852                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2853         $LFS mkdir -i 1 $DIR1/$tfile &
2854         PID1=$! ; pdo_sched
2855         stat $DIR2/$tfile > /dev/null &
2856         PID2=$! ; pdo_sched
2857         do_nodes $(comma_list $(mdts_nodes)) \
2858                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2859         check_pdo_conflict $PID1 && { wait $PID1;
2860                                         error "getattr isn't blocked"; }
2861         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2862         rm -rf $DIR/$tfile*
2863         return 0
2864 }
2865 run_test 47g "pdirops: remote mkdir vs getattr"
2866
2867 test_50() {
2868         trunc_size=4096
2869         dd if=/dev/zero of=$DIR1/$tfile bs=1K count=10
2870 #define OBD_FAIL_OSC_CP_ENQ_RACE         0x410
2871         do_facet client "lctl set_param fail_loc=0x410"
2872         $TRUNCATE $DIR2/$tfile $trunc_size
2873         do_facet client "lctl set_param fail_loc=0x0"
2874         sleep 3
2875         size=`stat -c %s $DIR2/$tfile`
2876         [ $size -eq $trunc_size ] || error "wrong size"
2877 }
2878 run_test 50 "osc lvb attrs: enqueue vs. CP AST =============="
2879
2880 test_51a() {
2881         local filesize
2882         local origfile=/etc/hosts
2883
2884         filesize=$(stat -c %s $origfile)
2885
2886         # create an empty file
2887         $MCREATE $DIR1/$tfile || error "can't create $DIR1/$tfile"
2888         # cache layout lock on both mount point
2889         stat $DIR1/$tfile > /dev/null || error "stat $DIR1/$tfile failed"
2890         stat $DIR2/$tfile > /dev/null || error "stat $DIR2/$tfile failed"
2891
2892         # open and sleep 2 seconds then read
2893         $MULTIOP $DIR2/$tfile o_2r${filesize}c &
2894         local pid=$!
2895         sleep 1
2896
2897         # create the layout of testing file
2898         dd if=$origfile of=$DIR1/$tfile conv=notrunc > /dev/null ||
2899                 error "dd $DIR1/$tfile failed"
2900
2901         # MULTIOP proc should be able to read enough bytes and exit
2902         for ((i = 0; i < 6; i++)); do
2903                 sleep 1
2904                 kill -0 $pid || break
2905         done
2906         kill -0 $pid 2> /dev/null && error "multiop is still there"
2907         cmp $origfile $DIR2/$tfile || error "$origfile and $DIR2/$tfile differs"
2908
2909         rm -f $DIR1/$tfile
2910 }
2911 run_test 51a "layout lock: refresh layout should work"
2912
2913 test_51b() {
2914         [[ "$MDS1_VERSION" -ge $(version_code 2.3.59) ]] ||
2915                 skip "Need MDS version at least 2.3.59"
2916
2917         local tmpfile=`mktemp`
2918
2919         # create an empty file
2920         $MCREATE $DIR1/$tfile || error "mcreate $DIR1/$tfile failed"
2921
2922         # delay glimpse so that layout has changed when glimpse finish
2923 #define OBD_FAIL_GLIMPSE_DELAY 0x1404
2924         $LCTL set_param fail_loc=0x1404
2925         stat -c %s $DIR2/$tfile |tee $tmpfile &
2926         local pid=$!
2927         sleep 1
2928
2929         # create layout of testing file
2930         dd if=/dev/zero of=$DIR1/$tfile bs=1k count=1 conv=notrunc >/dev/null ||
2931                 error "dd $DIR1/$tfile failed"
2932
2933         wait $pid
2934         local fsize=$(cat $tmpfile)
2935
2936         [ x$fsize = x1024 ] || error "file size is $fsize, should be 1024"
2937
2938         rm -f $DIR1/$tfile $tmpfile
2939 }
2940 run_test 51b "layout lock: glimpse should be able to restart if layout changed"
2941
2942 test_51c() {
2943         [ $OSTCOUNT -ge 2 ] || { skip "needs >= 2 osts"; return; }
2944
2945         # set default layout to have 1 stripe
2946         mkdir $DIR1/$tdir
2947         $LFS setstripe -c 1 $DIR1/$tdir
2948
2949         # create a file with empty layout
2950         $MCREATE $DIR1/$tdir/$tfile ||
2951                 error "$MCREATE $DIR1/$tdir/$tfile failed"
2952
2953 #define OBD_FAIL_MDS_LL_BLOCK 0x172
2954         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x172
2955
2956         # change the layout of testing file
2957         echo "Setting layout to have $OSTCOUNT stripes ..."
2958         $LFS setstripe -c $OSTCOUNT $DIR1/$tdir/$tfile &
2959         pid=$!
2960         sleep 1
2961
2962         # write something to the file, it should be blocked on fetching layout
2963         dd if=/dev/zero of=$DIR2/$tdir/$tfile bs=1k count=1 conv=notrunc
2964         local stripe_count=$($LFS getstripe -c $DIR2/$tdir/$tfile)
2965         wait $pid
2966
2967         # lod_qos.c::min_stripe_count() allows setstripe with a default stripe
2968         # count to succeed with only 3/4 of the number of stripes (rounded up),
2969         # so creating striped files does not fail if an OST is offline or full
2970         [ $stripe_count -ge $((OSTCOUNT - $OSTCOUNT / 4)) ] ||
2971                 error "bad layout: getstripe -c $stripe_count < $OSTCOUNT * 3/4"
2972
2973         rm -fr $DIR1/$tdir
2974 }
2975 run_test 51c "layout lock: IT_LAYOUT blocked and correct layout can be returned"
2976
2977 test_51d() {
2978         dd if=/dev/zero of=/$DIR1/$tfile bs=1M count=1
2979         cancel_lru_locks mdc
2980
2981         # open should grant LAYOUT lock, mmap and read will install pages
2982         $MULTIOP $DIR1/$tfile oO_RDWR:SMR_Uc &
2983         local PID=$!
2984         sleep 1
2985
2986         # rss before revoking
2987         local br=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
2988         echo "Before revoking layout lock: $br KB mapped"
2989
2990         # cancel layout lock manually
2991         cancel_lru_locks mdc
2992
2993         # rss after revoking
2994         local ar=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
2995
2996         kill -USR1 $PID
2997         wait $PID || error "wait PID $PID failed"
2998
2999         [ $ar -eq 0 ] || error "rss before: $br, after $ar, some pages remained"
3000 }
3001 run_test 51d "layout lock: losing layout lock should clean up memory map region"
3002
3003 test_54_part1()
3004 {
3005         echo "==> rename vs getattr vs setxattr should not deadlock"
3006         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3007
3008         do_facet mds1 $LCTL set_param fail_loc=$1
3009
3010         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3011         PID1=$!
3012         sleep 1
3013
3014         stat $DIR/d1/d2 &
3015         PID2=$!
3016         sleep 1
3017
3018         setfattr -n user.attr1 -v value1 $DIR2/d1 || error "(2) setfattr failed"
3019         wait $PID1 || error "(3) mv failed"
3020         wait $PID2 || error "(4) stat failed"
3021         echo
3022
3023         rm -rf $DIR/d1
3024 }
3025
3026 test_54_part2() {
3027         echo "==> rename vs getattr vs open vs getattr should not deadlock"
3028         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3029
3030         do_facet mds1 $LCTL set_param fail_loc=$1
3031
3032         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3033         PID1=$!
3034         sleep 1
3035
3036         stat $DIR/d1/d2 &
3037         PID2=$!
3038         sleep 1
3039
3040         $MULTIOP $DIR2/d1/d2 Oc &
3041         PID3=$!
3042         sleep 1
3043
3044         stat $DIR/d1 || error "(2) stat failed"
3045
3046         wait $PID1 || error "(3) mv failed"
3047         wait $PID2 || error "(4) stat failed"
3048         wait $PID3 && error "(5) multiop failed"
3049         echo
3050         rm -rf $DIR/d1
3051 }
3052
3053 test_54() {
3054         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
3055         save_lustre_params client "llite.*.xattr_cache" > $p
3056         lctl set_param llite.*.xattr_cache 1 ||
3057                 { skip "xattr cache is not supported"; return 0; }
3058
3059 #define OBD_FAIL_MDS_RENAME              0x153
3060 #define OBD_FAIL_MDS_RENAME2             0x154
3061         test_54_part1 0x80000153 || error 10
3062         test_54_part1 0x80000154 || error 11
3063         test_54_part2 0x80000153 || error 12
3064         test_54_part2 0x80000154 || error 13
3065
3066         restore_lustre_params < $p
3067         rm -f $p
3068 }
3069 run_test 54 "rename locking"
3070
3071 test_55a() {
3072         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3073
3074 #define OBD_FAIL_MDS_RENAME4              0x156
3075         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3076
3077         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3078         PID1=$!
3079         sleep 1
3080
3081         rm -r $DIR2/d3
3082         wait $PID1 && error "(2) mv succeeded"
3083
3084         rm -rf $DIR/d1
3085 }
3086 run_test 55a "rename vs unlink target dir"
3087
3088 test_55b()
3089 {
3090         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3091
3092 #define OBD_FAIL_MDS_RENAME4             0x156
3093         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3094
3095         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3096         PID1=$!
3097         sleep 1
3098
3099         rm -r $DIR2/d1
3100         wait $PID1 && error "(2) mv succeeded"
3101
3102         rm -rf $DIR/d3
3103 }
3104 run_test 55b "rename vs unlink source dir"
3105
3106 test_55c()
3107 {
3108         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3109
3110 #define OBD_FAIL_MDS_RENAME4              0x156
3111         do_facet mds1 $LCTL set_param fail_loc=0x156
3112
3113         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3114         PID1=$!
3115         sleep 1
3116
3117         # while rename is sleeping, open and remove d3
3118         $MULTIOP $DIR2/d3 D_c &
3119         PID2=$!
3120         sleep 1
3121         rm -rf $DIR2/d3
3122         sleep 5
3123
3124         # while rename is sleeping 2nd time, close d3
3125         kill -USR1 $PID2
3126         wait $PID2 || error "(3) multiop failed"
3127
3128         wait $PID1 && error "(2) mv succeeded"
3129
3130         rm -rf $DIR/d1
3131 }
3132 run_test 55c "rename vs unlink orphan target dir"
3133
3134 test_55d()
3135 {
3136         touch $DIR/f1
3137
3138 #define OBD_FAIL_MDS_RENAME3              0x155
3139         do_facet mds1 $LCTL set_param fail_loc=0x155
3140         mv $DIR/f1 $DIR/$tdir &
3141         PID1=$!
3142         sleep 2
3143
3144         # while rename is sleeping, create $tdir, but as a directory
3145         mkdir -p $DIR2/$tdir || error "(1) mkdir failed"
3146
3147         # link in reverse locking order
3148         ln $DIR2/f1 $DIR2/$tdir/
3149
3150         wait $PID1 && error "(2) mv succeeded"
3151         rm -rf $DIR/f1
3152 }
3153 run_test 55d "rename file vs link"
3154
3155 test_60() {
3156         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
3157                 skip "MDS version must be >= 2.3.0"
3158
3159         # Create a file
3160         test_mkdir $DIR1/$tdir
3161         file1=$DIR1/$tdir/file
3162         file2=$DIR2/$tdir/file
3163
3164         echo orig > $file2 || error "Could not create $file2"
3165         version=$($LFS data_version $file1)
3166
3167         # Append data
3168         echo append >> $file2 || error "Could not append to $file2"
3169         version2=$($LFS data_version $file1)
3170         [ "$version" != "$version2" ] ||
3171             error "append did not change data version: $version"
3172
3173         # Overwrite data
3174         echo overwrite > $file2 || error "Could not overwrite $file2"
3175         version3=$($LFS data_version $file1)
3176         [ "$version2" != "$version3" ] ||
3177             error "overwrite did not change data version: $version2"
3178
3179         # Truncate before EOF
3180         $TRUNCATE $file2 3 || error "Could not truncate $file2"
3181         version4=$($LFS data_version $file1)
3182         [ "$version3" != "$version4" ] ||
3183             error "truncate did not change data version: $version3"
3184
3185         # Truncate after EOF
3186         $TRUNCATE $file2 123456 || error "Could not truncate $file2"
3187         version5=$($LFS data_version $file1)
3188         [ "$version4" != "$version5" ] ||
3189             error "truncate did not change data version: $version4"
3190
3191         # Chmod do not change version
3192         chmod 400 $file2 || error "Could not chmod 400 $file2"
3193         version6=$($LFS data_version $file1)
3194         [ "$version5" == "$version6" ] ||
3195             error "chmod should not change data version: $version5 != $version6"
3196
3197         # Chown do not change version
3198         chown $RUNAS_ID $file2 || error "Could not chown $RUNAS_ID $file2"
3199         version7=$($LFS data_version $file1)
3200         [ "$version5" == "$version7" ] ||
3201             error "chown should not change data version: $version5 != $version7"
3202 }
3203 run_test 60 "Verify data_version behaviour"
3204
3205 test_70a() {
3206         local test_dir=$tdir/test_dir
3207
3208         mkdir -p $DIR1/$tdir
3209         if [ $MDSCOUNT -ge 2 ]; then
3210                 local MDTIDX=1
3211                 $LFS mkdir -i $MDTIDX $DIR1/$test_dir ||
3212                         error "Create remote directory failed"
3213         else
3214                 mkdir -p $DIR1/$test_dir
3215         fi
3216         cd $DIR2/$test_dir || error "cd directory failed"
3217         rm -rf $DIR1/$test_dir || error "unlink directory failed"
3218
3219         cd $DIR2/$tdir || error "exit directory"
3220 }
3221 run_test 70a "cd directory && rm directory"
3222
3223 test_70b() { # LU-2781
3224         local i
3225         mkdir -p $DIR1/$tdir
3226
3227         touch $DIR1/$tdir/file
3228         for ((i = 0; i < 32; i++)); do
3229             $LFS rm_entry $DIR1/$tdir/non_existent_dir &>/dev/null
3230         done
3231         rm $DIR1/$tdir/file || error "cannot remove file after rm_entry"
3232
3233         touch $DIR1/$tdir/file
3234         $LFS mkdir -i0 $DIR1/$tdir/test_dir
3235         $LFS rm_entry $DIR1/$tdir/test_dir &>/dev/null
3236         rm -rf $DIR1/$tdir/test_dir ||
3237                 error "cannot remove directory after rm_entry"
3238         rm $DIR1/$tdir/file || error "cannot remove file after rm_entry"
3239 }
3240 run_test 70b "remove files after calling rm_entry"
3241
3242 test_71a() {
3243         [[ "$MDS1_VERSION" -lt $(version_code 2.1.6) ]] &&
3244                 skip "Need MDS version at least 2.1.6"
3245
3246         # Patch not applied to 2.2 and 2.3 branches
3247         [[ "$MDS1_VERSION" -ge $(version_code 2.2.0) ]] &&
3248         [[ "$MDS1_VERSION" -lt $(version_code 2.4.0) ]] &&
3249                 skip "Need MDS version earlier than 2.2.0 or at least 2.4.0"
3250
3251         checkfiemap --test ||
3252                 skip "checkfiemap not runnable: $?"
3253         # write data this way: hole - data - hole - data
3254         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=1 count=1
3255         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR1/$tfile) + 1)))" = \
3256                 "zfs" ] &&
3257                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return 0
3258         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=3 count=1
3259         GET_STAT="lctl get_param -n ldlm.services.ldlm_cbd.stats"
3260         stat $DIR2/$tfile
3261         local can1=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3262         echo $can1
3263         checkfiemap $DIR2/$tfile 81920 ||
3264                 error "data is not flushed from client"
3265         local can2=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3266         echo $can2
3267
3268         # common case of "create file, copy file" on a single node
3269         # should not flush data from ost
3270         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=1 count=1
3271         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=3 count=1
3272         stat $DIR1/$tfile
3273         local can3=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3274         echo $can3
3275         checkfiemap $DIR1/$tfile 81920 ||
3276         error 4
3277         local can4=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3278         echo $can2
3279         [ $can3 -eq $can4 ] || error $((can2-can1)) "cancel RPC occured."
3280 }
3281 run_test 71a "correct file map just after write operation is finished"
3282
3283 test_71b() {
3284         [[ "$MDS1_VERSION" -lt $(version_code 2.1.6) ]] &&
3285                 skip "Need MDS version at least 2.1.6"
3286
3287         # Patch not applied to 2.2 and 2.3 branches
3288         [[ "$MDS1_VERSION" -ge $(version_code 2.2.0) ]] &&
3289         [[ "$MDS1_VERSION" -lt $(version_code 2.4.0) ]] &&
3290                 skip "Need MDS version earlier than 2.2.0 or at least 2.4.0"
3291         [[ $OSTCOUNT -ge 2 ]] || skip "needs >= 2 OSTs"
3292
3293         checkfiemap --test ||
3294                 skip "error $?: checkfiemap failed"
3295
3296         mkdir -p $DIR1/$tdir
3297
3298         $LFS setstripe -c -1 $DIR1/$tdir || error "setstripe failed"
3299         dd if=/dev/urandom of=$DIR1/$tdir/$tfile bs=40K count=1
3300         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR1/$tdir/$tfile) + 1)))" = \
3301                 "zfs" ] &&
3302                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return 0
3303         checkfiemap $DIR1/$tdir/$tfile 40960 || error "checkfiemap failed"
3304 }
3305 run_test 71b "check fiemap support for stripecount > 1"
3306
3307 test_72() {
3308         local p="$TMP/sanityN-$TESTNAME.parameters"
3309         local tlink1
3310         local tlink2
3311         save_lustre_params client "llite.*.xattr_cache" > $p
3312         lctl set_param llite.*.xattr_cache 1 ||
3313                 { skip "xattr cache is not supported"; return 0; }
3314
3315         touch $DIR1/$tfile
3316         setfattr -n user.attr1 -v value1 $DIR1/$tfile ||
3317                 error "setfattr1 failed"
3318         getfattr -n user.attr1 $DIR2/$tfile | grep value1 ||
3319                 error "getfattr1 failed"
3320         setfattr -n user.attr1 -v value2 $DIR2/$tfile ||
3321                 error "setfattr2 failed"
3322         getfattr -n user.attr1 $DIR1/$tfile | grep value2 ||
3323                 error "getfattr2 failed"
3324
3325         # check that trusted.link is consistent
3326         tlink1=$(getfattr -n trusted.link $DIR1/$tfile | md5sum)
3327         ln $DIR2/$tfile $DIR2/$tfile-2 || error "failed to link"
3328         tlink2=$(getfattr -n trusted.link $DIR1/$tfile | md5sum)
3329         echo "$tlink1 $tlink2"
3330         [ "$tlink1" = "$tlink2" ] && error "trusted.link should have changed!"
3331
3332         rm -f $DIR2/$tfile
3333
3334         restore_lustre_params < $p
3335         rm -f $p
3336 }
3337 run_test 72 "getxattr/setxattr cache should be consistent between nodes"
3338
3339 test_73() {
3340         local p="$TMP/sanityN-$TESTNAME.parameters"
3341         save_lustre_params client "llite.*.xattr_cache" > $p
3342         lctl set_param llite.*.xattr_cache 1 ||
3343                 { skip "xattr cache is not supported"; return 0; }
3344
3345         touch $DIR1/$tfile
3346         setfattr -n user.attr1 -v value1 $DIR1/$tfile ||
3347                 error "setfattr1 failed"
3348         getfattr -n user.attr1 $DIR2/$tfile || error "getfattr1 failed"
3349         getfattr -n user.attr1 $DIR1/$tfile || error "getfattr2 failed"
3350         clear_stats llite.*.stats
3351         # PR lock should be cached by now on both clients
3352         getfattr -n user.attr1 $DIR1/$tfile || error "getfattr3 failed"
3353         # 2 hits for getfattr(0)+getfattr(size)
3354         [ $(calc_stats llite.*.stats getxattr_hits) -eq 2 ] ||
3355                 error "not cached in $DIR1"
3356         getfattr -n user.attr1 $DIR2/$tfile || error "getfattr4 failed"
3357         # 4 hits for more getfattr(0)+getfattr(size)
3358         [ $(calc_stats llite.*.stats getxattr_hits) -eq 4 ] ||
3359                 error "not cached in $DIR2"
3360         rm -f $DIR2/$tfile
3361
3362         restore_lustre_params < $p
3363         rm -f $p
3364 }
3365 run_test 73 "getxattr should not cause xattr lock cancellation"
3366
3367 test_74() {
3368         [ "$MDS1_VERSION" -lt $(version_code 2.4.93) ] &&
3369                 skip "Need MDS version at least 2.4.93"
3370
3371         dd if=/dev/zero of=$DIR1/$tfile-1 bs=1K count=1
3372         dd if=/dev/zero of=$DIR1/$tfile-2 bs=1K count=1
3373         flocks_test 4 $DIR1/$tfile-1 $DIR2/$tfile-2
3374 }
3375 run_test 74 "flock deadlock: different mounts =============="
3376
3377 # LU-3889
3378 test_75() {
3379         $LFS setstripe -c 2 -S 1m -i 0 $DIR1/$tfile
3380         dd if=/dev/zero of=$DIR1/$tfile bs=1M count=2
3381         cancel_lru_locks osc
3382
3383         dd of=$DIR1/$tfile if=/dev/zero bs=1M count=1 seek=1 conv=notrunc
3384         sync
3385
3386         # define OBD_FAIL_LDLM_ENQUEUE_HANG 0x31d
3387         $LCTL set_param fail_loc=0x31d
3388         stat -c %s $DIR1/$tfile &
3389         local pid=$!
3390         sleep 1
3391         kill -9 $pid
3392
3393         # For bad lock error handler we should ASSERT and got kernel panic here
3394         sleep 4
3395         $LCTL set_param fail_loc=0
3396 }
3397 run_test 75 "osc: upcall after unuse lock==================="
3398
3399 test_76() { #LU-946
3400         [[ "$MDS1_VERSION" -lt $(version_code 2.5.53) ]] &&
3401                 skip "Need MDS version at least 2.5.53"
3402
3403         remote_mds_nodsh && skip "remote MDS with nodsh"
3404         local fcount=$((MDSCOUNT * 256))
3405         declare -a fd_list
3406         declare -a fid_list
3407
3408         if remote_mds; then
3409                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
3410         else
3411                 nid="0@lo"
3412         fi
3413
3414         rm -rf $DIR/$tdir
3415         test_mkdir $DIR/$tdir
3416
3417         # drop all open locks and close any cached "open" files on the client
3418         cancel_lru_locks mdc
3419
3420         local open_fids_cmd="$LCTL get_param -n mdt.*.exports.'$nid'.open_files"
3421         local fid_list=($(do_nodes $(comma_list $(mdts_nodes)) $open_fids_cmd))
3422         local already=${#fid_list[@]}
3423         for (( i = 0; i < $already; i++ )) ; do
3424                 log "already open[$i]: $($LFS fid2path $DIR2 ${fid_list[i]})"
3425         done
3426
3427         echo -n "opening files: "
3428         ulimit -n $((fcount + 50))
3429         for ((i = 0; i < $fcount; i++)); do
3430                 touch $DIR/$tdir/f_$i
3431                 local fd=$(free_fd ${fd_list[i]})
3432                 local open_cmd="exec $fd<$DIR/$tdir/f_$i"
3433                 eval $open_cmd
3434
3435                 fd_list[i]=$fd
3436
3437                 (( $i % 32 == 0 )) && echo -n "."
3438         done
3439         echo
3440
3441         fid_list=($(do_nodes $(comma_list $(mdts_nodes)) $open_fids_cmd))
3442
3443         # Possible errors in openfiles FID list.
3444         # 1. Missing FIDs. Check 1
3445         # 2. Extra FIDs. Check 1
3446         # 3. Duplicated FID. Check 2
3447         # 4. Invalid FIDs. Check 2
3448         # 5. Valid FID, points to some other file. Check 3
3449
3450         # Check 1
3451         [ ${#fid_list[@]} -ne $((fcount + already)) ] &&
3452                 error "${#fid_list[@]} != $fcount (+$already old) open files"
3453
3454         echo -n "closing files: "
3455         for (( fd = 0, fid = 0; fd < $fcount; fd++, fid++ )) ; do
3456                 local close_cmd="exec ${fd_list[fd]}<&-"
3457                 eval $close_cmd
3458                 filename=$($LFS fid2path $DIR2 ${fid_list[fid]})
3459
3460                 while [[ ! "$filename" =~ "$DIR2/$tdir/f_" ]]; do
3461                         echo "skip old open file $filename"
3462                         ((fid++))
3463                         filename=$($LFS fid2path $DIR2 ${fid_list[fid]})
3464                 done
3465
3466                 # Check 2
3467                 rm --interactive=no $filename
3468                 [ $? -ne 0 ] &&
3469                         error "Nonexisting fid ${fid_list[fid]} listed."
3470                 (( $fd % 32 == 0 )) && echo -n "."
3471         done
3472         echo
3473
3474         # Check 3
3475         ls_op=$(ls $DIR2/$tdir | wc -l)
3476         [ $ls_op -ne 0 ] &&
3477                 error "Some openfiles are missing in lproc output"
3478
3479         rm -rf $DIR/$tdir
3480 }
3481 run_test 76 "Verify MDT open_files listing"
3482
3483 nrs_write_read() {
3484         local n=16
3485         local dir=$DIR/$tdir
3486         local myRUNAS="$1"
3487
3488         mkdir $dir || error "mkdir $dir failed"
3489         $LFS setstripe -c $OSTCOUNT $dir || error "setstripe to $dir failed"
3490         chmod 777 $dir
3491
3492         do_nodes $CLIENTS $myRUNAS \
3493                 dd if=/dev/zero of="$dir/nrs_r_\$HOSTNAME" bs=1M count=$n ||
3494                 error "dd at 0 on client failed (1)"
3495
3496         do_nodes $CLIENTS $myRUNAS \
3497                 "declare -a pids_w;
3498                 for ((i = 0; i < $n; i++)); do
3499                         dd if=/dev/zero of=$dir/nrs_w_\$HOSTNAME bs=1M \
3500 seek=\\\$i count=1 conv=notrunc &
3501                         pids_w[\\\$i]=\\\$!;
3502                 done;
3503                 rc_w=0;
3504                 for ((i = 0; i < $n; i++)); do
3505                         wait \\\${pids_w[\\\$i]};
3506                         newrc=\\\$?;
3507                         [ \\\$newrc -gt \\\$rc_w ] && rc_w=\\\$newrc;
3508                 done;
3509                 exit \\\$rc_w" &
3510         local pid_w=$!
3511         do_nodes $CLIENTS sync;
3512         cancel_lru_locks osc
3513
3514         do_nodes $CLIENTS $myRUNAS \
3515                 "declare -a pids_r;
3516                 for ((i = 0; i < $n; i++)); do
3517                         dd if=$dir/nrs_r_\$HOSTNAME bs=1M of=/dev/null \
3518 seek=\\\$i count=1 &
3519                         pids_r[\\\$i]=\\\$!;
3520                 done;
3521                 rc_r=0;
3522                 for ((i = 0; i < $n; i++)); do
3523                         wait \\\${pids_r[\\\$i]};
3524                         newrc=\\\$?;
3525                         [ \\\$newrc -gt \\\$rc_r ] && rc_r=\\\$newrc;
3526                 done;
3527                 exit \\\$rc_r" &
3528         local pid_r=$!
3529         cancel_lru_locks osc
3530
3531         wait $pid_w || error "dd (write) failed (2)"
3532         wait $pid_r || error "dd (read) failed (3)"
3533         rm -rvf $dir || error "rm -rf $dir failed"
3534 }
3535
3536 test_77a() { #LU-3266
3537         local rc
3538
3539         oss=$(comma_list $(osts_nodes))
3540         do_nodes $oss lctl set_param ost.OSS.*.nrs_policies="fifo" ||
3541                 rc=$?
3542         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3543         [[ $rc -ne 0 ]] && error "failed to set fifo policy"
3544         nrs_write_read
3545
3546         return 0
3547 }
3548 run_test 77a "check FIFO NRS policy"
3549
3550 test_77b() { #LU-3266
3551         local rc
3552
3553         oss=$(comma_list $(osts_nodes))
3554
3555         do_nodes $oss lctl set_param ost.OSS.*.nrs_policies="crrn" \
3556                 ost.OSS.*.nrs_crrn_quantum=1 || rc=$?
3557         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3558         [[ $rc -ne 0 ]] && error "failed to set crrn_quantum to 1"
3559
3560         echo "policy: crr-n, crrn_quantum 1"
3561         nrs_write_read
3562
3563         do_nodes $oss lctl set_param \
3564                 ost.OSS.*.nrs_crrn_quantum=64 || rc=$?
3565         [[ $rc -ne 0 ]] && error "failed to set crrn_quantum to 64"
3566
3567         echo "policy: crr-n, crrn_quantum 64"
3568         nrs_write_read
3569
3570         # cleanup
3571         do_nodes $oss lctl set_param \
3572                 ost.OSS.ost_io.nrs_policies="fifo" || rc=$?
3573         [[ $rc -ne 0 ]] && error "failed to set fifo policy"
3574         return 0
3575 }
3576 run_test 77b "check CRR-N NRS policy"
3577
3578 orr_trr() {
3579         local policy=$1
3580
3581         oss=$(comma_list $(osts_nodes))
3582
3583         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies=$policy \
3584                 ost.OSS.*.nrs_"$policy"_quantum=1 \
3585                 ost.OSS.*.nrs_"$policy"_offset_type="physical" \
3586                 ost.OSS.*.nrs_"$policy"_supported="reads" || return $?
3587
3588         echo "policy: $policy, ${policy}_quantum 1, ${policy}_offset_type " \
3589                 "physical, ${policy}_supported reads"
3590         nrs_write_read
3591
3592         do_nodes $oss lctl set_param \
3593                 ost.OSS.*.nrs_${policy}_supported="writes" \
3594                 ost.OSS.*.nrs_${policy}_quantum=64 || return $?
3595
3596         echo "policy: $policy, ${policy}_quantum 64, ${policy}_offset_type " \
3597                 "physical, ${policy}_supported writes"
3598         nrs_write_read
3599
3600         do_nodes $oss lctl set_param \
3601                 ost.OSS.*.nrs_${policy}_supported="reads_and_writes" \
3602                 ost.OSS.*.nrs_${policy}_offset_type="logical" || return $?
3603         echo "policy: $policy, ${policy}_quantum 64, ${policy}_offset_type " \
3604                 "logical, ${policy}_supported reads_and_writes"
3605         nrs_write_read
3606
3607         # cleanup
3608         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo" ||
3609                 return $?
3610         return 0
3611 }
3612
3613 test_77c() { #LU-3266
3614         local rc
3615         orr_trr "orr" || rc=$?
3616         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3617         [[ $rc -ne 0 ]] && error "orr_trr failed rc:$rc"
3618         return 0
3619 }
3620 run_test 77c "check ORR NRS policy"
3621
3622 test_77d() { #LU-3266
3623         local rc
3624         orr_trr "trr" || rc=$?
3625         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3626         [[ $rc -ne 0 ]] && error "orr_trr failed rc:$rc"
3627         return 0
3628 }
3629 run_test 77d "check TRR nrs policy"
3630
3631 tbf_rule_operate()
3632 {
3633         local facet=$1
3634         shift 1
3635
3636         do_facet $facet lctl set_param \
3637                 ost.OSS.ost_io.nrs_tbf_rule="$*"
3638         [ $? -ne 0 ] &&
3639                 error "failed to run operate '$*' on TBF rules"
3640 }
3641
3642 cleanup_tbf_verify()
3643 {
3644         local rc=0
3645         trap 0
3646         echo "cleanup_tbf $DIR/$tdir"
3647         rm -rf $DIR/$tdir
3648         rc=$?
3649         wait_delete_completed
3650         return $rc
3651 }
3652
3653 tbf_verify() {
3654         local dir=$DIR/$tdir
3655         local client1=${CLIENT1:-$(hostname)}
3656         local myRUNAS="$3"
3657
3658         local np=$(check_cpt_number ost1)
3659         [ $np -gt 0 ] || error "CPU partitions should not be $np."
3660         echo "cpu_npartitions on ost1 is $np"
3661
3662         mkdir $dir || error "mkdir $dir failed"
3663         $LFS setstripe -c 1 -i 0 $dir || error "setstripe to $dir failed"
3664         chmod 777 $dir
3665
3666         trap cleanup_tbf_verify EXIT
3667         echo "Limited write rate: $1, read rate: $2"
3668         echo "Verify the write rate is under TBF control"
3669         local start=$SECONDS
3670         do_node $client1 $myRUNAS dd if=/dev/zero of=$dir/tbf \
3671                 bs=1M count=100 oflag=direct 2>&1
3672         local runtime=$((SECONDS - start + 1))
3673         local rate=$(bc <<< "scale=6; 100 / $runtime")
3674         echo "Write runtime is $runtime s, speed is $rate IOPS"
3675
3676         # verify the write rate does not exceed TBF rate limit
3677         [ $(bc <<< "$rate < 1.1 * $np * $1") -eq 1 ] ||
3678                 error "The write rate ($rate) exceeds 110% of rate limit ($1 * $np)"
3679
3680         cancel_lru_locks osc
3681
3682         echo "Verify the read rate is under TBF control"
3683         start=$SECONDS
3684         do_node $client1 $myRUNAS dd if=$dir/tbf of=/dev/null \
3685                 bs=1M count=100 iflag=direct 2>&1
3686         runtime=$((SECONDS - start + 1))
3687         rate=$(bc <<< "scale=6; 100 / $runtime")
3688         echo "Read runtime is $runtime s, speed is $rate IOPS"
3689
3690         # verify the read rate does not exceed TBF rate limit
3691         [ $(bc <<< "$rate < 1.1 * $np * $2") -eq 1 ] ||
3692                 error "The read rate ($rate) exceeds 110% of rate limit ($2 * $np)"
3693
3694         cancel_lru_locks osc
3695         cleanup_tbf_verify || error "rm -rf $dir failed"
3696 }
3697
3698 test_77e() {
3699         local rc
3700
3701         oss=$(comma_list $(osts_nodes))
3702
3703         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid" ||
3704                 rc=$?
3705         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3706         [[ $rc -ne 0 ]] && error "failed to set TBF NID policy"
3707
3708         local idis
3709         local rateis
3710         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3711                 idis="nid="
3712                 rateis="rate="
3713         fi
3714
3715         # Only operate rules on ost1 since OSTs might run on the same OSS
3716         # Add some rules
3717         tbf_rule_operate ost1 "start\ localhost\ ${idis}{0@lo}\ ${rateis}1000"
3718         local address=$(comma_list "$(host_nids_address $CLIENTS $NETTYPE)")
3719         local client_nids=$(nids_list $address "\\")
3720         tbf_rule_operate ost1 "start\ clients\ ${idis}{$client_nids}\ ${rateis}100"
3721         tbf_rule_operate ost1 "start\ others\ ${idis}{*.*.*.*@$NETTYPE}\ ${rateis}50"
3722         nrs_write_read
3723
3724         # Change the rules
3725         tbf_rule_operate ost1 "change\ localhost\ ${rateis}1001"
3726         tbf_rule_operate ost1 "change\ clients\ ${rateis}101"
3727         tbf_rule_operate ost1 "change\ others\ ${rateis}51"
3728         nrs_write_read
3729
3730         # Stop the rules
3731         tbf_rule_operate ost1 "stop\ localhost"
3732         tbf_rule_operate ost1 "stop\ clients"
3733         tbf_rule_operate ost1 "stop\ others"
3734         nrs_write_read
3735
3736         # Cleanup the TBF policy
3737         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3738         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3739         nrs_write_read
3740         return 0
3741 }
3742 run_test 77e "check TBF NID nrs policy"
3743
3744 test_77f() {
3745         local rc
3746
3747         oss=$(comma_list $(osts_nodes))
3748
3749         do_nodes $oss $LCTL set_param \
3750                 ost.OSS.ost_io.nrs_policies="tbf\ jobid" || rc=$?
3751         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3752         [[ $rc -ne 0 ]] && error "failed to set TBF JOBID policy"
3753
3754         # Configure jobid_var
3755         local saved_jobid_var=$($LCTL get_param -n jobid_var)
3756         rc=$?
3757         [[ $rc -eq 3 ]] && skip "jobid_var not found" && return
3758         [[ $rc -ne 0 ]] && error "failed to get param jobid_var"
3759         if [ $saved_jobid_var != procname_uid ]; then
3760                 set_persistent_param_and_check client \
3761                         "jobid_var" "$FSNAME.sys.jobid_var" procname_uid
3762         fi
3763
3764         local idis
3765         local rateis
3766         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3767                 idis="jobid="
3768                 rateis="rate="
3769         fi
3770
3771         # Only operate rules on ost1 since OSTs might run on the same OSS
3772         # Add some rules
3773         tbf_rule_operate ost1 "start\ runas\ ${idis}{iozone.$RUNAS_ID\ dd.$RUNAS_ID\ tiotest.$RUNAS_ID}\ ${rateis}1000"
3774         tbf_rule_operate ost1 "start\ iozone_runas\ ${idis}{iozone.$RUNAS_ID}\ ${rateis}100"
3775         tbf_rule_operate ost1 "start\ dd_runas\ ${idis}{dd.$RUNAS_ID}\ ${rateis}50"
3776         nrs_write_read "$RUNAS"
3777
3778         # Change the rules
3779         tbf_rule_operate ost1 "change\ runas\ ${rateis}1001"
3780         tbf_rule_operate ost1 "change\ iozone_runas\ ${rateis}101"
3781         tbf_rule_operate ost1 "change\ dd_runas\ ${rateis}51"
3782         nrs_write_read "$RUNAS"
3783
3784         # Stop the rules
3785         tbf_rule_operate ost1 "stop\ runas"
3786         tbf_rule_operate ost1 "stop\ iozone_runas"
3787         tbf_rule_operate ost1 "stop\ dd_runas"
3788         nrs_write_read "$RUNAS"
3789
3790         # Cleanup the TBF policy
3791         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3792         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3793         nrs_write_read "$RUNAS"
3794
3795         local current_jobid_var=$($LCTL get_param -n jobid_var)
3796         [[ $? -ne 0 ]] && error "failed to get param jobid_var"
3797         if [ $saved_jobid_var != $current_jobid_var ]; then
3798                 set_persistent_param_and_check client \
3799                         "jobid_var" "$FSNAME.sys.jobid_var" $saved_jobid_var
3800         fi
3801         return 0
3802 }
3803 run_test 77f "check TBF JobID nrs policy"
3804
3805 test_77g() {
3806         local rc=0
3807
3808         oss=$(comma_list $(osts_nodes))
3809
3810         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid" ||
3811                 rc=$?
3812         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3813         [[ $rc -ne 0 ]] && error "failed to set TBF NID policy"
3814
3815         do_nodes $oss lctl set_param \
3816                 ost.OSS.ost_io.nrs_policies="tbf\ jobid" || rc=$?
3817         [[ $rc -ne 0 ]] && error "failed to set TBF JOBID policy"
3818
3819         local idis
3820         local rateis
3821         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3822                 idis="jobid="
3823                 rateis="rate="
3824         fi
3825
3826         # Add a rule that only valid for Jobid TBF. If direct change between
3827         # TBF types is not supported, this operation will fail.
3828         tbf_rule_operate ost1 "start\ dd_runas\ ${idis}{dd.$RUNAS_ID}\ ${rateis}50"
3829
3830         # Cleanup the TBF policy
3831         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3832         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3833         return 0
3834 }
3835 run_test 77g "Change TBF type directly"
3836
3837 test_77h() {
3838         [ "$OST1_VERSION" -ge $(version_code 2.8.55) ] ||
3839                 skip "Need OST version at least 2.8.55"
3840
3841         local old_policy=$(do_facet ost1 \
3842                 lctl get_param ost.OSS.ost_io.nrs_policies)
3843         local new_policy
3844
3845         do_facet ost1 lctl set_param \
3846                 ost.OSS.ost_io.nrs_policies="abc"
3847         [ $? -eq 0 ] && error "should return error"
3848
3849         do_facet ost1 lctl set_param \
3850                 ost.OSS.ost_io.nrs_policies="tbf\ abc"
3851         [ $? -eq 0 ] && error "should return error"
3852
3853         do_facet ost1 lctl set_param \
3854                 ost.OSS.ost_io.nrs_policies="tbf\ reg\ abc"
3855         [ $? -eq 0 ] && error "should return error"
3856
3857         do_facet ost1 lctl set_param \
3858                 ost.OSS.ost_io.nrs_policies="tbf\ abc\ efg"
3859         [ $? -eq 0 ] && error "should return error"
3860
3861         new_policy=$(do_facet ost1 lctl get_param ost.OSS.ost_io.nrs_policies)
3862         [ $? -eq 0 ] || error "shouldn't LBUG"
3863
3864         [ "$old_policy" = "$new_policy" ] || error "NRS policy should be same"
3865
3866         return 0
3867 }
3868 run_test 77h "Wrong policy name should report error, not LBUG"
3869
3870 tbf_rule_check()
3871 {
3872         local facet=$1
3873         local expected=$2
3874         local error_message=$3
3875         local rule_number=0
3876         for rule in $expected; do
3877                 rule_number=$((rule_number + 1))
3878         done
3879         local stop_line=$(($rule_number + 3))
3880         local awk_command="awk 'NR >= 4 && NR <= $stop_line {print \$1}'"
3881
3882         local output=$(do_facet $facet lctl get_param \
3883                 ost.OSS.ost_io.nrs_tbf_rule |
3884                 eval $awk_command |
3885                 tr "\n" " " |
3886                 sed 's/[ ]*$//')
3887         if [ "$output" != "$expected" ]; then
3888                 error "$error_message, expected '$expected', got '$output'"
3889         fi
3890 }
3891
3892 test_77i() {
3893         [ "$OST1_VERSION" -ge $(version_code 2.8.55) ] ||
3894                 skip "Need OST version at least 2.8.55"
3895
3896         for i in $(seq 1 $OSTCOUNT)
3897         do
3898                 do_facet ost"$i" lctl set_param \
3899                         ost.OSS.ost_io.nrs_policies="tbf\ jobid"
3900                 [ $? -ne 0 ] &&
3901                         error "failed to set TBF policy"
3902         done
3903
3904         tbf_rule_check ost1 "default" "error before inserting any rule"
3905
3906         tbf_rule_operate ost1 "start\ before\ jobid={jobid}\ rate=1000"
3907         tbf_rule_check ost1 "before default" \
3908                 "error when inserting rule 'before'"
3909
3910         tbf_rule_operate ost1 "start\ after\ jobid={jobid}\ rate=1000\ rank=default"
3911         tbf_rule_check ost1 "before after default" \
3912                 "error when inserting rule 'after'"
3913
3914         tbf_rule_operate ost1 "start\ target\ jobid={jobid}\ rate=1000\ rank=after"
3915         tbf_rule_check ost1 "before target after default" \
3916                 "error when inserting rule 'target'"
3917
3918         echo "Move before itself"
3919         tbf_rule_operate ost1 "change\ target\ rank=target"
3920         tbf_rule_check ost1 "before target after default" \
3921                 "error when moving before itself"
3922
3923         echo "Move to higher rank"
3924         tbf_rule_operate ost1 "change\ target\ rank=before"
3925         tbf_rule_check ost1 "target before after default" \
3926                 "error when moving to higher rank"
3927
3928         echo "Move to lower rank"
3929         tbf_rule_operate ost1 "change\ target\ rank=after"
3930         tbf_rule_check ost1 "before target after default" \
3931                 "error when moving to lower rank"
3932
3933         echo "Move before default"
3934         tbf_rule_operate ost1 "change\ target\ rank=default"
3935         tbf_rule_check ost1 "before after target default" \
3936                 error "error when moving before default"
3937
3938         # Cleanup the TBF policy
3939         do_nodes $(comma_list $(osts_nodes)) \
3940                 $LCTL set_param ost.OSS.ost_io.nrs_policies=fifo
3941         return 0
3942 }
3943 run_test 77i "Change rank of TBF rule"
3944
3945 test_77j() {
3946         local idis
3947         local rateis
3948
3949         [ "$OST1_VERSION" -ge $(version_code 2.9.53) ] ||
3950                 skip "Need OST version at least 2.9.53"
3951         if [ "$OST1_VERSION" -ge $(version_code 2.8.60) ]; then
3952                 idis="opcode="
3953                 rateis="rate="
3954         fi
3955
3956         do_nodes $(comma_list $(osts_nodes)) \
3957                 lctl set_param jobid_var=procname_uid \
3958                         ost.OSS.ost_io.nrs_policies="tbf\ opcode" \
3959                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_r\ ${idis}{ost_read}\ ${rateis}5" \
3960                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_w\ ${idis}{ost_write}\ ${rateis}20"
3961         [ $? -ne 0 ] && error "failed to set TBF OPCode policy"
3962
3963         nrs_write_read
3964         tbf_verify 20 5
3965
3966         do_nodes $(comma_list $(osts_nodes)) \
3967                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_r" \
3968                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_w" \
3969                         ost.OSS.ost_io.nrs_policies="fifo"
3970
3971         # sleep 3 seconds to wait the tbf policy stop completely,
3972         # or the next test case is possible get -EAGAIN when
3973         # setting the tbf policy
3974         sleep 3
3975 }
3976 run_test 77j "check TBF-OPCode NRS policy"
3977
3978 test_id() {
3979         local idstr="${1}id"
3980         local policy="${idstr}={$2}"
3981         local rate="rate=$3"
3982
3983         do_nodes $(comma_list $(osts_nodes)) \
3984                 lctl set_param jobid_var=procname_uid \
3985                         ost.OSS.ost_io.nrs_policies="tbf\ ${idstr}" \
3986                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_${idstr}\ ${policy}\ ${rate}"
3987         [ $? -ne 0 ] && error "failed to set tbf ${idstr} policy"
3988
3989         nrs_write_read "runas $4"
3990         tbf_verify $3 $3 "runas $4"
3991
3992         do_nodes $(comma_list $(osts_nodes)) \
3993                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_${idstr}" \
3994                         ost.OSS.ost_io.nrs_policies="fifo"
3995
3996         # sleep 3 seconds to wait the tbf policy stop completely,
3997         # or the next test case is possible get -eagain when
3998         # setting the tbf policy
3999         sleep 3
4000 }
4001
4002 test_77ja(){
4003         if [ "$OST1_VERSION" -lt $(version_code 2.11.50) ]; then
4004                 skip "Need OST version at least 2.11.50"
4005         fi
4006
4007         test_id "u" "500" "5" "-u 500"
4008         test_id "g" "500" "5" "-u 500 -g 500"
4009 }
4010 run_test 77ja "check TBF-UID/GID NRS policy"
4011
4012 cleanup_77k()
4013 {
4014         local rule_lists=$1
4015         local old_nrs=$2
4016
4017         trap 0
4018         for rule in $rule_lists; do
4019                 do_nodes $(comma_list $(osts_nodes)) \
4020                         lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ $rule"
4021         done
4022
4023         do_nodes $(comma_list $(osts_nodes)) \
4024                 lctl set_param ost.OSS.ost_io.nrs_policies="$old_nrs"
4025
4026         sleep 3
4027 }
4028
4029 test_77k() {
4030         [[ "$OST1_VERSION" -ge $(version_code 2.9.53) ]] ||
4031                 skip "Need OST version at least 2.9.53"
4032
4033         do_nodes $(comma_list $(osts_nodes)) \
4034                 lctl set_param ost.OSS.ost_io.nrs_policies="tbf" \
4035                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_w\ jobid={dd.$RUNAS_ID}\&opcode={ost_write}\ rate=20" \
4036                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_r\ jobid={dd.$RUNAS_ID}\&opcode={ost_read}\ rate=10"
4037
4038         nrs_write_read "$RUNAS"
4039         tbf_verify 20 10 "$RUNAS"
4040
4041         local address=$(comma_list "$(host_nids_address $CLIENTS $NETTYPE)")
4042         local client_nids=$(nids_list $address "\\")
4043         do_nodes $(comma_list $(osts_nodes)) \
4044                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_w" \
4045                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_r" \
4046                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_w\ nid={0@lo\ $client_nids}\&opcode={ost_write}\ rate=20" \
4047                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_r\ nid={0@lo\ $client_nids}\&opcode={ost_read}\ rate=10"
4048
4049         nrs_write_read
4050         tbf_verify 20 10
4051
4052         do_nodes $(comma_list $(osts_nodes)) \
4053                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_w" \
4054                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_r" \
4055                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext\ nid={0@lo\ $client_nids}\&jobid={dd.$RUNAS_ID}\ rate=20"
4056
4057         nrs_write_read "$RUNAS"
4058         tbf_verify 20 20 "$RUNAS"
4059
4060         do_nodes $(comma_list $(osts_nodes)) \
4061                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext" \
4062                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_a\ jobid={dd.$RUNAS_ID},opcode={ost_write}\ rate=20" \
4063                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_b\ jobid={dd.$RUNAS_ID},opcode={ost_read}\ rate=10"
4064
4065         nrs_write_read "$RUNAS"
4066         # with parameter "RUNAS", it will match the latest rule
4067         # "ext_b" first, so the limited write rate is 10.
4068         tbf_verify 10 10 "$RUNAS"
4069         tbf_verify 20 10
4070
4071         trap "cleanup_77k \"ext_a ext_b\" \"fifo\"" EXIT
4072
4073         [[ "$OST1_VERSION" -ge $(version_code 2.10.58) ]] ||
4074                 skip "Need OST version at least 2.10.58"
4075
4076         do_nodes $(comma_list $(osts_nodes)) \
4077                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_a" \
4078                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_b" \
4079                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_ug\ uid={500}\&gid={1000}\ rate=5"
4080         nrs_write_read "runas -u 500 -g 1000"
4081         tbf_verify 5 5 "runas -u 500 -g 1000"
4082
4083         do_nodes $(comma_list $(osts_nodes)) \
4084                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_ug" \
4085                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_uw\ uid={500}\&opcode={ost_write}\ rate=20" \
4086                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_ur\ uid={500}\&opcode={ost_read}\ rate=10"
4087
4088         nrs_write_read "runas -u 500"
4089         tbf_verify 20 10 "runas -u 500"
4090
4091         do_nodes $(comma_list $(osts_nodes)) \
4092                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_uw" \
4093                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_ur" \
4094                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_a\ uid={500},opcode={ost_write}\ rate=20" \
4095                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_b\ uid={500},opcode={ost_read}\ rate=10"
4096         nrs_write_read "runas -u 500"
4097         tbf_verify 10 10 "runas -u 500"
4098         tbf_verify 20 10 "runas -u 500"
4099         cleanup_77k "ext_a ext_b" "fifo"
4100 }
4101 run_test 77k "check TBF policy with NID/JobID/OPCode expression"
4102
4103 test_77l() {
4104         [[ "$OST1_VERSION" -ge $(version_code 2.10.56) ]] ||
4105                 skip "Need OST version at least 2.10.56"
4106
4107         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid"
4108         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="tbf"
4109
4110         local output=$(do_facet ost1 lctl get_param \
4111                         ost.OSS.ost_io.nrs_policies | \
4112                         awk '/name: tbf/ {print;exit}' | \
4113                         awk -F ': ' '{print $2}')
4114
4115         if [ "$output" != "tbf" ]; then
4116                 error "The generic TBF output is '$output', not 'tbf'"
4117         fi
4118
4119         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4120 }
4121 run_test 77l "check the output of NRS policies for generic TBF"
4122
4123 test_77m() {
4124         if [ "$OST1_VERSION" -lt $(version_code 2.9.54) ]; then
4125                 skip "Need OST version at least 2.9.54"
4126         fi
4127
4128         local dir=$DIR/$tdir
4129
4130         mkdir $dir || error "mkdir $dir failed"
4131         $LFS setstripe -c $OSTCOUNT $dir || error "setstripe to $dir failed"
4132         chmod 777 $dir
4133
4134         local nodes=$(comma_list $(osts_nodes))
4135         do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies=delay \
4136                                        ost.OSS.ost_io.nrs_delay_min=4 \
4137                                        ost.OSS.ost_io.nrs_delay_max=4 \
4138                                        ost.OSS.ost_io.nrs_delay_pct=100
4139         [ $? -ne 0 ] && error "Failed to set delay policy"
4140
4141         local start=$SECONDS
4142         do_nodes "${SINGLECLIENT:-$HOSTNAME}" "$RUNAS" \
4143                  dd if=/dev/zero of="$dir/nrs_delay_$HOSTNAME" bs=1M count=1 \
4144                    oflag=direct conv=fdatasync ||
4145                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4146                   error "dd on client failed (1)"; }
4147         local elapsed=$((SECONDS - start))
4148
4149         # NRS delay doesn't do sub-second timing, so a request enqueued at
4150         # 0.9 seconds can be dequeued at 4.0
4151         [ $elapsed -lt 3 ] &&
4152                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4153                   error "Single 1M write should take at least 3 seconds"; }
4154
4155         start=$SECONDS
4156         do_nodes "${SINGLECLIENT:-$HOSTNAME}" "$RUNAS" \
4157                  dd if=/dev/zero of="$dir/nrs_delay_$HOSTNAME" bs=1M count=10 \
4158                    oflag=direct conv=fdatasync ||
4159                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4160                   error "dd on client failed (2)"; }
4161         elapsed=$((SECONDS - start))
4162
4163         [ $elapsed -lt 30 ] &&
4164                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4165                   error "Ten 1M writes should take at least 30 seconds"; }
4166
4167         do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4168         [ $? -ne 0 ] && error "failed to set policy back to fifo"
4169
4170         return 0
4171 }
4172 run_test 77m "check NRS Delay slows write RPC processing"
4173
4174 test_77n() { #LU-10802
4175         if [ "$OST1_VERSION" -lt $(version_code 2.10.58) ]; then
4176                 skip "Need OST version at least 2.10.58"
4177         fi
4178
4179         # Configure jobid_var
4180         local saved_jobid_var=$($LCTL get_param -n jobid_var)
4181         if [ $saved_jobid_var != procname_uid ]; then
4182                 set_persistent_param_and_check client \
4183                         "jobid_var" "$FSNAME.sys.jobid_var" procname_uid
4184         fi
4185
4186         do_nodes $(comma_list $(osts_nodes)) \
4187                 lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ jobid" \
4188                         ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4189                         ost.OSS.ost_io.nrs_tbf_rule="start\ dd_runas\ jobid={*.$RUNAS_ID}\ rate=20"
4190
4191         nrs_write_read
4192         tbf_verify 20 20 "$RUNAS"
4193
4194         do_nodes $(comma_list $(osts_nodes)) \
4195                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4196                         ost.OSS.ost_io.nrs_tbf_rule="start\ dd_runas\ jobid={dd.*}\ rate=20"
4197
4198         nrs_write_read
4199         tbf_verify 20 20
4200
4201         do_nodes $(comma_list $(osts_nodes)) \
4202                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4203                         ost.OSS.ost_io.nrs_policies="fifo"
4204
4205         sleep 3
4206
4207         local current_jobid_var=$($LCTL get_param -n jobid_var)
4208         if [ $saved_jobid_var != $current_jobid_var ]; then
4209                 set_persistent_param_and_check client \
4210                         "jobid_var" "$FSNAME.sys.jobid_var" $saved_jobid_var
4211         fi
4212 }
4213 run_test 77n "check wildcard support for TBF JobID NRS policy"
4214
4215 test_78() { #LU-6673
4216         local rc
4217
4218         oss=$(comma_list $(osts_nodes))
4219         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="orr" &
4220         do_nodes $oss lctl set_param ost.OSS.*.nrs_orr_quantum=1
4221         rc=$?
4222         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
4223         # Valid return codes are:
4224         # 0: Tuning succeeded
4225         # ENODEV: Policy is still stopped
4226         # EAGAIN: Policy is being initialized
4227         [ $rc -eq 0 -o $rc -eq 19 -o $rc -eq 11 ] ||
4228                 error "Expected set_param to return 0|ENODEV|EAGAIN"
4229
4230         # Cleanup the ORR policy
4231         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4232         [ $? -ne 0 ] && error "failed to set policy back to fifo"
4233         return 0
4234 }
4235 run_test 78 "Enable policy and specify tunings right away"
4236
4237 test_79() {
4238         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4239         test_mkdir $DIR/$tdir
4240
4241         # Prevent interference from layout intent RPCs due to
4242         # asynchronous writeback. These will be tested in 130c below.
4243         do_nodes ${CLIENTS:-$HOSTNAME} sync
4244
4245         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
4246                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
4247
4248 #define OBD_FAIL_MDS_INTENT_DELAY               0x160
4249         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
4250         local facet=mds$((mdtidx + 1))
4251         stat $DIR/$tdir
4252         set_nodes_failloc $(facet_active_host $facet) 0x80000160
4253         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null  &
4254         local pid=$!
4255         sleep 2
4256
4257 #define OBD_FAIL_MDS_GETXATTR_PACK       0x131
4258         set_nodes_failloc $(facet_active_host $facet) 0x80000131
4259
4260         wait $pid
4261         return 0
4262 }
4263 run_test 79 "xattr: intent error"
4264
4265 test_80a() {
4266         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4267         local MDTIDX=1
4268         local mdt_index
4269         local i
4270         local file
4271         local pid
4272
4273         mkdir -p $DIR1/$tdir/dir
4274         createmany -o $DIR1/$tdir/dir/f 10 ||
4275                 error "create files under remote dir failed $i"
4276
4277         cp /etc/passwd $DIR1/$tdir/$tfile
4278
4279         #migrate open file should fails
4280         multiop_bg_pause $DIR2/$tdir/$tfile O_c || error "open $file failed"
4281         pid=$!
4282         # give multiop a chance to open
4283         sleep 1
4284
4285         $LFS migrate -m $MDTIDX $DIR1/$tdir &&
4286                 error "migrate open files should failed with open files"
4287
4288         kill -USR1 $pid
4289
4290         $LFS migrate -m $MDTIDX $DIR1/$tdir ||
4291                         error "migrate remote dir error"
4292
4293         echo "Finish migration, then checking.."
4294         for file in $(find $DIR1/$tdir); do
4295                 mdt_index=$($LFS getstripe -m $file)
4296                 [ $mdt_index == $MDTIDX ] ||
4297                         error "$file is not on MDT${MDTIDX}"
4298         done
4299
4300         diff /etc/passwd $DIR1/$tdir/$tfile ||
4301                 error "file different after migration"
4302
4303         rm -rf $DIR1/$tdir || error "rm dir failed after migration"
4304 }
4305 run_test 80a "migrate directory when some children is being opened"
4306
4307 cleanup_80b() {
4308         trap 0
4309         kill -9 $migrate_pid
4310 }
4311
4312 test_80b() {
4313         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4314         local migrate_dir1=$DIR1/$tdir/migrate_dir
4315         local migrate_dir2=$DIR2/$tdir/migrate_dir
4316         local migrate_run=$LUSTRE/tests/migrate.sh
4317         local start_time
4318         local end_time
4319         local show_time=1
4320         local mdt_idx
4321         local rc=0
4322         local rc1=0
4323
4324         trap cleanup_80b EXIT
4325         #prepare migrate directory
4326         mkdir -p $migrate_dir1
4327         for F in {1,2,3,4,5}; do
4328                 echo "$F$F$F$F$F" > $migrate_dir1/file$F
4329                 echo "$F$F$F$F$F" > $DIR/$tdir/file$F
4330         done
4331
4332         #migrate the directories among MDTs
4333         (
4334                 while true; do
4335                         mdt_idx=$((RANDOM % MDSCOUNT))
4336                         $LFS migrate -m $mdt_idx $migrate_dir1 &>/dev/null ||
4337                                 rc=$?
4338                         [ $rc -ne 0 -o $rc -ne 16 ] || break
4339                 done
4340         ) &
4341         migrate_pid=$!
4342
4343         echo "start migration thread $migrate_pid"
4344         #Access the files at the same time
4345         start_time=$(date +%s)
4346         echo "accessing the migrating directory for 5 minutes..."
4347         while true; do
4348                 ls $migrate_dir2 > /dev/null || {
4349                         echo "read dir fails"
4350                         break
4351                 }
4352                 diff -u $DIR2/$tdir/file1 $migrate_dir2/file1 || {
4353                         echo "access file1 fails"
4354                         break
4355                 }
4356
4357                 cat $migrate_dir2/file2 > $migrate_dir2/file3 || {
4358                         echo "access file2/3 fails"
4359                         break
4360                 }
4361
4362                 echo "aaaaa" > $migrate_dir2/file4 > /dev/null || {
4363                         echo "access file4 fails"
4364                         break
4365                 }
4366
4367                 stat $migrate_dir2/file5 > /dev/null || {
4368                         echo "stat file5 fails"
4369                         break
4370                 }
4371
4372                 touch $migrate_dir2/source_file > /dev/null || rc1=$?
4373                 [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4374                         echo "touch file failed with $rc1"
4375                         break;
4376                 }
4377
4378                 if [ -e $migrate_dir2/source_file ]; then
4379                         ln $migrate_dir2/source_file $migrate_dir2/link_file \
4380                                         &>/dev/null || rc1=$?
4381                         if [ -e $migrate_dir2/link_file ]; then
4382                                 rm -rf $migrate_dir2/link_file
4383                         fi
4384
4385                         mrename $migrate_dir2/source_file \
4386                                 $migrate_dir2/target_file &>/dev/null || rc1=$?
4387                         [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4388                                 echo "rename failed with $rc1"
4389                                 break
4390                         }
4391
4392                         if [ -e $migrate_dir2/target_file ]; then
4393                                 rm -rf $migrate_dir2/target_file &>/dev/null ||
4394                                                                 rc1=$?
4395                         else
4396                                 rm -rf $migrate_dir2/source_file &>/dev/null ||
4397                                                                 rc1=$?
4398                         fi
4399                         [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4400                                 echo "unlink failed with $rc1"
4401                                 break
4402                         }
4403                 fi
4404
4405                 end_time=$(date +%s)
4406                 duration=$((end_time - start_time))
4407                 if [ $((duration % 10)) -eq 0 ]; then
4408                         if [ $show_time -eq 1 ]; then
4409                                 echo "...$duration seconds"
4410                                 show_time=0
4411                         fi
4412                 else
4413                         show_time=1
4414                 fi
4415
4416                 kill -0 $migrate_pid || {
4417                         echo "migration stopped 1"
4418                         break
4419                 }
4420
4421                 [ $duration -ge 300 ] && break
4422         done
4423
4424         #check migration are still there
4425         kill -0 $migrate_pid || error "migration stopped 2"
4426         cleanup_80b
4427 }
4428 run_test 80b "Accessing directory during migration"
4429
4430 test_81a() {
4431         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4432
4433         rm -rf $DIR1/$tdir
4434
4435         mkdir -p $DIR1/$tdir
4436
4437         $LFS setdirstripe -i0 -c$MDSCOUNT  $DIR1/$tdir/d0
4438         $LFS setdirstripe -i0 -c$MDSCOUNT  $DIR1/$tdir/d1
4439
4440         cd $DIR1/$tdir
4441         touch d0/0      || error "create 0 failed"
4442         mv d0/0 d1/0    || error "rename d0/0 d1/0 failed"
4443         stat d0/0       && error "stat mv filed succeed"
4444         mv $DIR2/$tdir/d1/0 $DIR2/$tdir/d0/0 || error "rename d1/0 d0/0 failed"
4445         stat d0/0       || error "stat failed"
4446
4447         local t=$(ls -ai $DIR1/$tdir/d0 | sort -u | wc -l)
4448
4449         if [ $t -ne 3 ]; then
4450                 ls -ai $DIR1/$tdir/d0
4451                 error "expect 3 get $t"
4452         fi
4453
4454         return 0
4455 }
4456 run_test 81a "rename and stat under striped directory"
4457
4458 test_81b() {
4459         [ $MDSCOUNT -lt 2 ] &&
4460                 skip "We need at least 2 MDTs for this test"
4461
4462         local total
4463         local setattr_pid
4464
4465         total=1000
4466
4467         $LFS mkdir -c $MDSCOUNT $DIR1/$tdir || error "$LFS mkdir"
4468         createmany -o $DIR1/$tdir/$tfile. $total || error "createmany"
4469
4470         (
4471                 while true; do
4472                         touch $DIR1/$tdir
4473                 done
4474         ) &
4475         setattr_pid=$!
4476
4477         for i in $(seq $total); do
4478                 mrename $DIR2/$tdir/$tfile.$i $DIR2/$tdir/$tfile-new.$i \
4479                         > /dev/null
4480         done
4481
4482         kill -9 $setattr_pid
4483 }
4484 run_test 81b "rename under striped directory doesn't deadlock"
4485
4486 test_82() {
4487         [[ "$MDS1_VERSION" -gt $(version_code 2.6.91) ]] ||
4488                 skip "Need MDS version at least 2.6.92"
4489
4490         # Client 1 creates a file.
4491         multiop_bg_pause $DIR1/$tfile O_ac || error "multiop_bg_pause 1"
4492         pid1=$!
4493         # Client 2 opens the file.
4494         multiop_bg_pause $DIR2/$tfile o_Ac || error "multiop_bg_pause 2"
4495         pid2=$!
4496         # Client 1 makes the file an orphan.
4497         rm $DIR1/$tfile || error "rm"
4498         # Client 2 sets EA "user.multiop".
4499         kill -s USR1 $pid2
4500         wait $pid2 || error "multiop 2"
4501         # Client 1 gets EA "user.multiop".  This used to fail because the EA
4502         # cache refill would get "trusted.link" from mdd_xattr_list() but
4503         # -ENOENT when trying to get "trusted.link"'s value.  See also sanity
4504         # 102q.
4505         kill -s USR1 $pid1
4506         wait $pid1 || error "multiop 1"
4507 }
4508 run_test 82 "fsetxattr and fgetxattr on orphan files"
4509
4510 test_83() {
4511         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4512         local pid1
4513         local pid2
4514
4515         (
4516                 cd $DIR1
4517                 while true; do
4518                         $LFS mkdir -i1 -c2 $tdir
4519                         rmdir $tdir
4520                 done
4521         ) &
4522         pid1=$!
4523         echo "start pid $pid1 to create/unlink striped directory"
4524
4525         # Access the directory at the same time
4526         (
4527                 cd $DIR2
4528                 while true; do
4529                         stat $tdir > /dev/null 2>&1
4530                 done
4531         ) &
4532         pid2=$!
4533         echo "start pid $pid2 to stat striped directory"
4534
4535         sleep 120
4536         kill $pid1 $pid2
4537         wait $pid1 $pid2
4538
4539         return 0
4540 }
4541 run_test 83 "access striped directory while it is being created/unlinked"
4542
4543 test_84() {
4544         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
4545                 skip "lustre < 2.12.55 does not contain LU-12485 fix"
4546
4547         local mtime
4548
4549         $MULTIOP $DIR/$tfile oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
4550                 error "create $tfile failed"
4551         mtime=$(stat -c%Y $DIR/$tfile)
4552         mtime=$((mtime + 200))
4553
4554         #define OBD_FAIL_OBD_0NLINK_RACE  0x60b
4555         do_facet mds1 $LCTL set_param fail_loc=0x8000060b
4556
4557         touch -c -m $mtime $DIR/$tfile &
4558         setattr_pid=$!
4559         # sleep a while to let 'touch' run first
4560         sleep 5
4561         rm -f $DIR2/$tfile || error "unlink $tfile failed"
4562
4563         # touch may fail
4564         wait $setattr_pid || true
4565 }
4566 run_test 84 "0-nlink race in lu_object_find()"
4567
4568 test_90() {
4569         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4570         local pid1
4571         local pid2
4572         local duration=180
4573
4574         [ "$SLOW" = "yes" ] && duration=600
4575         # Open/Create under striped directory
4576         (
4577                 cd $DIR1
4578                 while true; do
4579                         $LFS mkdir -c$MDSCOUNT $tdir > /dev/null 2>&1
4580                         touch $tdir/f{0..3} > /dev/null 2>&1
4581                 done
4582         ) &
4583         pid1=$!
4584         echo "start pid $pid1 to open/create under striped directory"
4585
4586         # unlink the striped directory at the same time
4587         (
4588                 cd $DIR2
4589                 while true; do
4590                         rm -rf $tdir > /dev/null 2>&1
4591                 done
4592         ) &
4593         pid2=$!
4594         echo "start pid $pid2 to unlink striped directory"
4595
4596         sleep $duration
4597
4598         kill $pid1 $pid2
4599         wait $pid1 $pid2
4600
4601         return 0
4602 }
4603 run_test 90 "open/create and unlink striped directory"
4604
4605 test_91() {
4606         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4607         local pid1
4608         local pid2
4609         local duration=180
4610
4611         [ "$SLOW" = "yes" ] && duration=600
4612         # chmod striped directory
4613         (
4614                 cd $DIR1
4615                 while true; do
4616                         $LFS mkdir -c$MDSCOUNT $tdir > /dev/null 2>&1
4617                         chmod go+w $tdir > /dev/null 2>&1
4618                 done
4619         ) &
4620         pid1=$!
4621         echo "start pid $pid1 to chmod striped directory"
4622
4623         # unlink the striped directory at the same time
4624         (
4625                 cd $DIR2
4626                 while true; do
4627                         rm -rf $tdir > /dev/null 2>&1
4628                 done
4629         ) &
4630         pid2=$!
4631         echo "start pid $pid2 to unlink striped directory"
4632
4633         sleep $duration
4634
4635         kill $pid1 $pid2
4636         wait $pid1 $pid2
4637
4638         return 0
4639 }
4640 run_test 91 "chmod and unlink striped directory"
4641
4642 test_92() {
4643         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4644
4645         local fd=$(free_fd)
4646         local cmd="exec $fd<$DIR1/$tdir"
4647         $LFS setdirstripe -c$MDSCOUNT $DIR1/$tdir || error "mkdir $tdir fails"
4648         eval $cmd
4649         cmd="exec $fd<&-"
4650         trap "eval $cmd" EXIT
4651         cd $DIR1/$tdir || error "cd $DIR1/$tdir fails"
4652         rmdir ../$tdir || error "rmdir ../$tdir fails"
4653
4654         #define OBD_FAIL_LLITE_NO_CHECK_DEAD  0x1408
4655         $LCTL set_param fail_loc=0x1408
4656         mkdir $DIR2/$tdir/dir && error "create dir succeeds"
4657         $LFS setdirstripe -i1 $DIR2/$tdir/remote_dir &&
4658                 error "create remote dir succeeds"
4659         $LCTL set_param fail_loc=0
4660         eval $cmd
4661         return 0
4662 }
4663 run_test 92 "create remote directory under orphan directory"
4664
4665 test_93() {
4666         local rc1=0
4667         local rc2=0
4668         local old_rr
4669
4670         mkdir -p $DIR1/$tfile-1/
4671         mkdir -p $DIR2/$tfile-2/
4672         local old_rr=$(do_facet $SINGLEMDS "$LCTL get_param -n \
4673                 lod.$FSNAME-MDT0000-*/qos_threshold_rr" | sed -e 's/%//')
4674         do_facet $SINGLEMDS "$LCTL set_param -n \
4675                 lod.$FSNAME-MDT0000-*/qos_threshold_rr=100"
4676         #define OBD_FAIL_MDS_LOV_CREATE_RACE     0x163
4677         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x00000163"
4678
4679         $LFS setstripe -c -1 $DIR1/$tfile-1/file1 &
4680         local PID1=$!
4681         sleep 1
4682         $LFS setstripe -c -1 $DIR2/$tfile-2/file2 &
4683         local PID2=$!
4684         wait $PID2
4685         wait $PID1
4686         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0"
4687         do_facet $SINGLEMDS "$LCTL set_param -n \
4688                 lod.$FSNAME-MDT0000-*/qos_threshold_rr=$old_rr"
4689
4690         $LFS getstripe $DIR1/$tfile-1/file1
4691         rc1=$($LFS getstripe -q $DIR1/$tfile-1/file1 |
4692                 awk '{if (/[0-9]/) print $1 }' | sort | uniq -d | wc -l)
4693         $LFS getstripe $DIR2/$tfile-2/file2
4694         rc2=$($LFS getstripe -q $DIR2/$tfile-2/file2 |
4695                 awk '{if (/[0-9]/) print $1 }' | sort | uniq -d | wc -l)
4696         echo "rc1=$rc1 and rc2=$rc2 "
4697         [ $rc1 -eq 0 ] && [ $rc2 -eq 0 ] ||
4698                 error "object allocate on same ost detected"
4699 }
4700 run_test 93 "alloc_rr should not allocate on same ost"
4701
4702 test_94() {
4703         $LCTL set_param osc.*.idle_timeout=0
4704         dd if=/dev/zero of=$DIR2/$tfile bs=4k count=2 conv=fsync
4705
4706         local before=$(date +%s)
4707         local evict
4708
4709         $LCTL mark write
4710 #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
4711         $LCTL set_param fail_val=5 fail_loc=0x80000312
4712         dd if=/dev/zero of=$DIR/$tfile conv=notrunc oflag=append bs=4k count=1 &
4713         local pid=$!
4714         sleep 2
4715
4716 #define OBD_FAIL_LDLM_PAUSE_CANCEL_LOCAL 0x329
4717         $LCTL set_param fail_val=6 fail_loc=0x80000329
4718         $LCTL mark kill $pid
4719         kill -ALRM $pid
4720
4721         dd if=/dev/zero of=$DIR2/$tfile conv=notrunc oflag=append bs=4k count=1
4722
4723         wait $pid
4724         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 conv=fsync
4725
4726         evict=$(do_facet client $LCTL get_param \
4727                 osc.$FSNAME-OST*-osc-*/state |
4728             awk -F"[ [,]" '/EVICTED ]$/ { if (t<$5) {t=$5;} } END { print t }')
4729
4730         [ -z "$evict" ] || [[ $evict -le $before ]] ||
4731                 (do_facet client $LCTL get_param \
4732                         osc.$FSNAME-OST*-osc-*/state;
4733                     error "eviction happened: $evict before:$before")
4734         $LCTL set_param osc.*.idle_timeout=debug
4735 }
4736 run_test 94 "signal vs CP callback race"
4737
4738 # Data-on-MDT tests
4739 test_100a() {
4740         skip "Reserved for glimpse-ahead" && return
4741         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4742                 skip "Need MDS version at least 2.10.55"
4743
4744         mkdir -p $DIR/$tdir
4745
4746         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4747
4748         lctl set_param -n mdc.*.stats=clear
4749         dd if=/dev/zero of=$DIR2/$tdir/dom bs=4096 count=1 || return 1
4750
4751         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #1"
4752         # first stat from server should return size data and save glimpse
4753         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4754         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
4755         # second stat to check size is NOT cached on client without IO lock
4756         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #2"
4757
4758         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4759         [ $gls -ge 1 ] || error "Expect glimpse RPCs but none"
4760         rm -f $dom
4761 }
4762 run_test 100a "DoM: glimpse RPCs for stat without IO lock (DoM only file)"
4763
4764 test_100b() {
4765         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4766                 skip "Need MDS version at least 2.10.55"
4767
4768         mkdir -p $DIR/$tdir
4769
4770         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4771
4772         lctl set_param -n mdc.*.stats=clear
4773         dd if=/dev/zero of=$DIR2/$tdir/dom bs=4096 count=1 || return 1
4774         cancel_lru_locks mdc
4775         # first stat data from server should have size
4776         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #1"
4777         # second stat to check size is cached on client
4778         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #2"
4779
4780         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4781         # both stats should cause no glimpse requests
4782         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
4783         rm -f $dom
4784 }
4785 run_test 100b "DoM: no glimpse RPC for stat with IO lock (DoM only file)"
4786
4787 test_100c() {
4788         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4789                 skip "Need MDS version at least 2.10.55"
4790
4791         mkdir -p $DIR/$tdir
4792
4793         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4794
4795         lctl set_param -n mdc.*.stats=clear
4796         lctl set_param -n osc.*.stats=clear
4797         dd if=/dev/zero of=$DIR2/$tdir/dom bs=2048K count=1 || return 1
4798
4799         # check that size is merged from MDT and OST correctly
4800         $CHECKSTAT -t file -s 2097152 $DIR/$tdir/dom ||
4801                 error "Wrong size from stat #1"
4802
4803         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
4804         [ $gls -eq 0 ] && error "Expect OST glimpse RPCs but got none"
4805
4806         rm -f $dom
4807 }
4808 run_test 100c "DoM: write vs stat without IO lock (combined file)"
4809
4810 test_100d() {
4811         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4812                 skip "Need MDS version at least 2.10.55"
4813
4814         mkdir -p $DIR/$tdir
4815
4816         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4817
4818
4819         dd if=/dev/zero of=$DIR2/$tdir/dom bs=2048K count=1 || return 1
4820         lctl set_param -n mdc.*.stats=clear
4821         $TRUNCATE $DIR2/$tdir/dom 4096
4822
4823         # check that reported size is valid after file grows to OST and
4824         # is truncated back to MDT stripe size
4825         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom ||
4826                 error "Wrong size from stat #1"
4827
4828         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
4829         [ $gls -eq 0 ] && error "Expect OST glimpse but got none"
4830
4831         rm -f $dom
4832 }
4833 run_test 100d "DoM: write+truncate vs stat without IO lock (combined file)"
4834
4835 test_100e() {
4836         [ "$MDS1_VERSION" -lt $(version_code 2.11.50) ] &&
4837                 skip "Need MDS version at least 2.11.50"
4838
4839         local dom=$DIR/$tdir/dom
4840         local dom2=$DIR2/$tdir/dom
4841         mkdir -p $DIR/$tdir
4842
4843         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
4844
4845         cancel_lru_locks mdc
4846         dd if=/dev/urandom of=$dom bs=12000 count=1
4847         $TRUNCATE $dom2 6000
4848         cancel_lru_locks mdc
4849         lctl set_param -n mdc.*.stats=clear
4850         # expect read-on-open to return all data before write
4851         cat /etc/hosts >> $dom
4852         local read=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
4853         [[ $read -eq 0 ]] || error "Unexpected $read READ RPCs"
4854 }
4855 run_test 100e "DoM: read on open and file size"
4856
4857 test_101a() {
4858         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4859                 skip "Need MDS version at least 2.10.55"
4860
4861         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4862         # to get layout
4863         $CHECKSTAT -t file $DIR1/$tfile
4864
4865         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4866         sysctl -wq vm.dirty_writeback_centisecs=0
4867
4868         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4869
4870         # open + IO lock
4871         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 ||
4872                 error_noexit "Write fails"
4873         # must discard pages
4874         lctl set_param -n mdc.*.stats=clear
4875         rm $DIR2/$tfile || error "Unlink fails"
4876
4877         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4878         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4879 }
4880 run_test 101a "Discard DoM data on unlink"
4881
4882 test_101b() {
4883         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4884                 skip "Need MDS version at least 2.10.55"
4885
4886         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4887         touch $DIR1/${tfile}_2
4888         # to get layout
4889         $CHECKSTAT -t file $DIR1/$tfile
4890
4891         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4892         sysctl -wq vm.dirty_writeback_centisecs=0
4893
4894         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4895
4896         # open + IO lock
4897         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 || error "Write fails"
4898         # must discard pages
4899         lctl set_param -n mdc.*.stats=clear
4900         mv $DIR2/${tfile}_2 $DIR2/$tfile || error "Rename fails"
4901
4902         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4903         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4904 }
4905 run_test 101b "Discard DoM data on rename"
4906
4907 test_101c() {
4908         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4909                 skip "Need MDS version at least 2.10.55"
4910
4911         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4912         # to get layout
4913         $CHECKSTAT -t file $DIR1/$tfile
4914
4915         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4916         sysctl -wq vm.dirty_writeback_centisecs=0
4917
4918         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4919
4920         # open + IO lock
4921         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 || error "Write fails"
4922         $MULTIOP $DIR1/$tfile O_c &
4923         MULTIOP_PID=$!
4924         sleep 1
4925         lctl set_param -n mdc.*.stats=clear
4926         rm $DIR2/$tfile > /dev/null || error "Unlink fails for opened file"
4927         kill -USR1 $MULTIOP_PID && wait $MULTIOP_PID || error "multiop failure"
4928
4929         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4930         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4931 }
4932 run_test 101c "Discard DoM data on close-unlink"
4933
4934 # test to verify file handle related system calls
4935 # (name_to_handle_at/open_by_handle_at)
4936 # The new system calls are supported in glibc >= 2.14.
4937
4938 # test to verify we can open by handle an unlinked file from > 1 client
4939 # This test opens the file normally on $DIR1, which is on one mount, and then
4940 # opens it by handle on $DIR2, which is on a different mount.
4941 test_102() {
4942         [ "$MDS1_VERSION" -lt $(version_code 2.11.57) ] &&
4943                 skip "Needs MDS version 2.11.57 or later"
4944
4945         echo "Test file_handle syscalls" > $DIR/$tfile ||
4946                 error "write failed"
4947         check_fhandle_syscalls $DIR/$tfile $DIR2 ||
4948                 error "check_fhandle_syscalls failed"
4949         rm -f $DIR2/$tfile
4950 }
4951 run_test 102 "Test open by handle of unlinked file"
4952
4953 # Compare file size between first & second mount, ensuring the client correctly
4954 # glimpses even with unused speculative locks - LU-11670
4955 test_103() {
4956         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
4957                 skip "Lockahead needs OST version at least 2.10.50"
4958
4959         local locktest=23
4960
4961         test_mkdir -p $DIR/$tdir
4962
4963         # Force file on to OST0
4964         $LFS setstripe -i 0 $DIR/$tdir
4965
4966         # Do not check multiple locks on glimpse
4967         # OBD_FAIL_OSC_NO_SIZE_DATA 0x415
4968         $LCTL set_param fail_loc=0x415
4969
4970         # Delay write commit by 2 seconds to guarantee glimpse wins race
4971         # The same fail_loc is used on client & server so it can work in the
4972         # single node sanity setup
4973         do_facet ost1 $LCTL set_param fail_loc=0x415 fail_val=2
4974
4975         echo "Incorrect size expected (no glimpse fix):"
4976         lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $locktest -f $tfile
4977         rc=$?
4978         if [ $rc -eq 0 ]; then
4979                 echo "This doesn't work 100%, but this is just reproducing the bug, not testing the fix, so OK to not fail test."
4980         fi
4981
4982         # guarantee write commit timeout has expired
4983         sleep 2
4984
4985         # Clear fail_loc on client
4986         $LCTL set_param fail_loc=0
4987
4988         # Delay write commit by 2 seconds to guarantee glimpse wins race
4989         # OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
4990         do_facet ost1 $LCTL set_param fail_loc=0x214 fail_val=2
4991
4992         # Write commit is still delayed by 2 seconds
4993         lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $locktest -f $tfile
4994         rc=$?
4995         [ $rc -eq 0 ] || error "Lockahead test$locktest failed, $rc"
4996
4997         # guarantee write commit timeout has expired
4998         sleep 2
4999
5000         rm -f $DIR/$tfile || error "unable to delete $DIR/$tfile"
5001 }
5002 run_test 103 "Test size correctness with lockahead"
5003
5004 get_stat_xtimes()
5005 {
5006         local xtimes
5007
5008         xtimes=$(stat -c "%X %Y %Z" $DIR/$tfile)
5009
5010         echo ${xtimes[*]}
5011 }
5012
5013 get_mdt_xtimes()
5014 {
5015         local mdtdev=$1
5016         local output
5017         local xtimes
5018
5019         output=$(do_facet mds1 "$DEBUGFS -c -R 'stat ROOT/$tfile' $mdtdev")
5020         ((xtimes[0]=$(awk -F ':' /atime/'{ print $2 }' <<< "$output")))
5021         ((xtimes[1]=$(awk -F ':' /mtime/'{ print $2 }' <<< "$output")))
5022         ((xtimes[2]=$(awk -F ':' /ctime/'{ print $2 }' <<< "$output")))
5023
5024         echo ${xtimes[*]}
5025 }
5026
5027 check_mdt_xtimes()
5028 {
5029         local mdtdev=$1
5030         local xtimes=($(get_stat_xtimes))
5031         local mdt_xtimes=($(get_mdt_xtimes $mdtdev))
5032
5033         echo "STAT a|m|ctime ${xtimes[*]}"
5034         echo "MDT a|m|ctime ${xtimes[*]}"
5035         [[ ${xtimes[0]} == ${mdt_xtimes[0]} ]] ||
5036                 error "$DIR/$tfile atime (${xtimes[0]}:${mdt_xtimes[0]}) diff"
5037         [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] ||
5038                 error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff"
5039         [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] ||
5040                 error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff"
5041 }
5042
5043 test_104() {
5044         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip_env "ldiskfs only test"
5045         [ $MDS1_VERSION -lt $(version_code 2.12.4) ] &&
5046                 skip "Need MDS version at least 2.12.4"
5047
5048         local pid
5049         local mdtdev=$(mdsdevname ${SINGLEMDS//mds/})
5050         local atime_diff=$(do_facet $SINGLEMDS \
5051                 lctl get_param -n mdd.*MDT0000*.atime_diff)
5052
5053         do_facet $SINGLEMDS \
5054                 lctl set_param -n mdd.*MDT0000*.atime_diff=0
5055
5056         stack_trap "do_facet $SINGLEMDS \
5057                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff" EXIT
5058
5059         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5060         check_mdt_xtimes $mdtdev
5061         sleep 2
5062
5063         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5064         check_mdt_xtimes $mdtdev
5065         sleep 2
5066         $MULTIOP $DIR2/$tfile Oz8192w8192_c &
5067         pid=$!
5068         sleep 2
5069         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5070         sleep 2
5071         kill -USR1 $pid && wait $pid || error "multiop failure"
5072         check_mdt_xtimes $mdtdev
5073
5074         local xtimes
5075         local mdt_xtimes
5076
5077         # Verify mtime/ctime is NOT upated on MDS when there is no modification
5078         # on the client side
5079         xtimes=($(get_stat_xtimes))
5080         $MULTIOP $DIR/$tfile O_c &
5081         pid=$!
5082         sleep 2
5083         kill -USR1 $pid && wait $pid || error "multiop failure"
5084         mdt_xtimes=($(get_mdt_xtimes $mdtdev))
5085         [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] ||
5086                 error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff"
5087         [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] ||
5088                 error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff"
5089         check_mdt_xtimes $mdtdev
5090
5091         sleep 2
5092         # Change ctime via chmod
5093         $MULTIOP $DIR/$tfile o_tc &
5094         pid=$!
5095         sleep 2
5096         kill -USR1 $pid && wait $pid || error "multiop failure"
5097         check_mdt_xtimes $mdtdev
5098 }
5099 run_test 104 "Verify that MDS stores atime/mtime/ctime during close"
5100
5101 test_105() {
5102         test_mkdir -p $DIR/$tdir
5103         echo test > $DIR/$tdir/$tfile
5104         $LCTL set_param fail_loc=0x416
5105         cancel_lru_locks osc & sleep 1
5106         fsize1=$(stat -c %s $DIR2/$tdir/$tfile)
5107         wait
5108         [[ $fsize1 = 5 ]] ||  error "Glimpse returned wrong file size $fsize1"
5109 }
5110 run_test 105 "Glimpse and lock cancel race"
5111
5112 log "cleanup: ======================================================"
5113
5114 # kill and wait in each test only guarentee script finish, but command in script
5115 # like 'rm' 'chmod' may still be running, wait for all commands to finish
5116 # otherwise umount below will fail
5117 [ "$(mount | grep $MOUNT2)" ] && wait_update $HOSTNAME "fuser -m $MOUNT2" "" ||
5118         true
5119
5120 complete $SECONDS
5121 rm -f $SAMPLE_FILE
5122 check_and_cleanup_lustre
5123 exit_status