Whamcloud - gitweb
LU-13522 mdt: count mdt_mds_mds_conns upon reconnect
[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 \
427                 $file1 $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
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
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         # LU-13522
1088         stop mds1
1089         start mds1 $(mdsdevname 1) $MDS_MOUNT_OPTS || error "start mds1 failed"
1090
1091         local sync_count
1092
1093         mkdir $DIR/$tdir
1094         sync_all_data
1095         do_facet mds1 "lctl set_param -n mdt.*.sync_count=0"
1096         # do twice in case transaction is committed before unlock, see LU-8200
1097         for i in 1 2; do
1098                 # remote dir is created on MDT1, which enqueued lock of $tdir on
1099                 # MDT0
1100                 $LFS mkdir -i 1 $DIR/$tdir/remote.$i
1101                 mkdir $DIR/$tdir/local.$i
1102         done
1103         sync_count=$(do_facet mds1 "lctl get_param -n mdt.*MDT0000.sync_count")
1104         echo "sync_count $sync_count"
1105         [ $sync_count -eq 0 ] && error "Sync-Lock-Cancel not triggered"
1106
1107         sync_all_data
1108         do_facet mds1 "lctl set_param -n mdt.*.sync_count=0"
1109         $LFS mkdir -i 1 $DIR/$tdir/remote.3
1110         # during sleep remote mkdir should have been committed and canceled
1111         # remote lock spontaneously, which shouldn't trigger sync
1112         sleep 6
1113         mkdir $DIR/$tdir/local.3
1114         sync_count=$(do_facet mds1 "lctl get_param -n mdt.*MDT0000.sync_count")
1115         echo "sync_count $sync_count"
1116         [ $sync_count -eq 0 ] || error "Sync-Lock-Cancel triggered"
1117 }
1118 run_test 33c "Cancel cross-MDT lock should trigger Sync-Lock-Cancel"
1119
1120 # arg1 is operations done before CoS, arg2 is the operation that triggers CoS
1121 op_trigger_cos() {
1122         local commit_nr
1123         local total=0
1124         local nodes=$(comma_list $(mdts_nodes))
1125
1126         sync_all_data
1127
1128         # trigger CoS twice in case transaction commit before unlock
1129         for i in 1 2; do
1130                 sh -c "$1"
1131                 do_nodes $nodes "lctl set_param -n mdt.*.async_commit_count=0"
1132                 sh -c "$2"
1133                 commit_nr=$(do_nodes $nodes \
1134                         "lctl get_param -n mdt.*.async_commit_count" | calc_sum)
1135                 total=$((total + commit_nr));
1136                 rm -rf $DIR/$tdir
1137                 sync_all_data
1138         done
1139
1140         echo "CoS count $total"
1141         [ $total -gt 0 ] || error "$2 didn't trigger CoS"
1142 }
1143
1144 test_33d() {
1145         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1146         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1147                 skip "DNE CoS not supported"
1148
1149         # remote directory create
1150         op_trigger_cos "mkdir $DIR/$tdir" "$LFS mkdir -i 1 $DIR/$tdir/subdir"
1151         # remote directory unlink
1152         op_trigger_cos "$LFS mkdir -i 1 $DIR/$tdir" "rmdir $DIR/$tdir"
1153         # striped directory create
1154         op_trigger_cos "mkdir $DIR/$tdir" "$LFS mkdir -c 2 $DIR/$tdir/subdir"
1155         # striped directory setattr
1156         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; touch $DIR/$tdir" \
1157                 "chmod 713 $DIR/$tdir"
1158         # striped directory unlink
1159         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; touch $DIR/$tdir" \
1160                 "rmdir $DIR/$tdir"
1161         # cross-MDT link
1162         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; \
1163                         $LFS mkdir -i 0 $DIR/$tdir/d1; \
1164                         $LFS mkdir -i 1 $DIR/$tdir/d2; \
1165                         touch $DIR/$tdir/d1/tgt" \
1166                 "ln $DIR/$tdir/d1/tgt $DIR/$tdir/d2/src"
1167         # cross-MDT rename
1168         op_trigger_cos "$LFS mkdir -c 2 $DIR/$tdir; \
1169                         $LFS mkdir -i 0 $DIR/$tdir/d1; \
1170                         $LFS mkdir -i 1 $DIR/$tdir/d2; \
1171                         touch $DIR/$tdir/d1/src" \
1172                 "mv $DIR/$tdir/d1/src $DIR/$tdir/d2/tgt"
1173         # migrate
1174         op_trigger_cos "$LFS mkdir -i 0 $DIR/$tdir" \
1175                 "$LFS migrate -m 1 $DIR/$tdir"
1176
1177         return 0
1178 }
1179 run_test 33d "DNE distributed operation should trigger COS"
1180
1181 test_33e() {
1182         [ -n "$CLIENTS" ] || skip "Need two or more clients"
1183         [ $CLIENTCOUNT -ge 2 ] ||
1184                 skip "Need two or more clients, have $CLIENTCOUNT"
1185         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs"
1186         [ "$MDS1_VERSION" -lt $(version_code 2.7.63) ] &&
1187                 skip "DNE CoS not supported"
1188
1189         local client2=${CLIENT2:-$(hostname)}
1190
1191         sync
1192
1193         local nodes=$(comma_list $(mdts_nodes))
1194         do_nodes $nodes "lctl set_param -n mdt.*.async_commit_count=0"
1195
1196         $LFS mkdir -c 2 $DIR/$tdir
1197         mkdir $DIR/$tdir/subdir
1198         echo abc > $DIR/$tdir/$tfile
1199         do_node $client2 echo dfg >> $DIR/$tdir/$tfile
1200         do_node $client2 touch $DIR/$tdir/subdir
1201
1202         local async_commit_count=$(do_nodes $nodes \
1203                 "lctl get_param -n mdt.*.async_commit_count" | calc_sum)
1204         [ $async_commit_count -gt 0 ] && error "CoS triggerred"
1205
1206         return 0
1207 }
1208 run_test 33e "DNE local operation shouldn't trigger COS"
1209
1210 # End commit on sharing tests
1211
1212 get_ost_lock_timeouts() {
1213     local nodes=${1:-$(comma_list $(osts_nodes))}
1214
1215     local locks=$(do_nodes $nodes \
1216         "lctl get_param -n ldlm.namespaces.filter-*.lock_timeouts" | calc_sum)
1217
1218     echo $locks
1219 }
1220
1221 cleanup_34() {
1222         local i
1223         trap 0
1224         do_nodes $(comma_list $(osts_nodes)) \
1225                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1226         for i in $(seq $OSTCOUNT); do
1227                 wait_osc_import_ready client ost$i
1228         done
1229 }
1230
1231 test_34() { #16129
1232         remote_ost_nodsh && skip "remote OST with nodsh" && return
1233         local OPER
1234         local lock_in
1235         local lock_out
1236         trap cleanup_34 EXIT RETURN
1237         for OPER in notimeout timeout ; do
1238                 rm $DIR1/$tfile 2>/dev/null
1239                 lock_in=$(get_ost_lock_timeouts)
1240                 if [ $OPER == "timeout" ] ; then
1241                         for j in `seq $OSTCOUNT`; do
1242                                 #define OBD_FAIL_PTLRPC_HPREQ_TIMEOUT    0x511
1243                                 do_facet ost$j lctl set_param fail_loc=0x511
1244                         done
1245                         echo lock should expire
1246                 else
1247                         for j in `seq $OSTCOUNT`; do
1248                                 #define OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT  0x512
1249                                 do_facet ost$j lctl set_param fail_loc=0x512
1250                         done
1251                         echo lock should not expire
1252                 fi
1253                 echo writing on client1
1254                 dd if=/dev/zero of=$DIR1/$tfile count=100 conv=notrunc > /dev/null 2>&1
1255                 sync &
1256                 echo reading on client2
1257                 dd of=/dev/null if=$DIR2/$tfile > /dev/null 2>&1
1258                 # wait for a lock timeout
1259                 sleep 4
1260                 lock_out=$(get_ost_lock_timeouts)
1261                 if [ $OPER == "timeout" ] ; then
1262                         if [ $lock_in == $lock_out ]; then
1263                                 error "no lock timeout happened"
1264                         else
1265                                 echo "success"
1266                         fi
1267                 else
1268                         if [ $lock_in != $lock_out ]; then
1269                                 error "lock timeout happened"
1270                         else
1271                                 echo "success"
1272                         fi
1273                 fi
1274         done
1275         cleanup_34
1276 }
1277 run_test 34 "no lock timeout under IO"
1278
1279 test_35() { # bug 17645
1280         local generation=[]
1281         local count=0
1282         gen=$(lctl get_param mdc.$FSNAME-MDT*-mdc-*.import | grep generation |
1283               awk '/generation/{print $2}')
1284         for g in $gen; do
1285                 generation[count]=$g
1286                 let count=count+1
1287         done
1288
1289         test_mkdir $MOUNT1/$tdir
1290         cancel_lru_locks mdc
1291
1292         # Let's initiate -EINTR situation by setting fail_loc and take
1293         # write lock on same file from same client. This will not cause
1294         # bl_ast yet as lock is already in local cache.
1295         #define OBD_FAIL_LDLM_INTR_CP_AST        0x317
1296         do_facet client "lctl set_param fail_loc=0x80000317"
1297         local timeout=$(do_facet $SINGLEMDS lctl get_param  -n timeout)
1298         let timeout=timeout*3
1299         local nr=0
1300         while test $nr -lt 10; do
1301                 log "Race attempt $nr"
1302                 local blk1=$(lctl get_param -n ldlm.services.ldlm_cbd.stats |
1303                              awk '/ldlm_bl_callback/ { print $2 }')
1304                 test "x$blk1" = "x" && blk1=0
1305                 createmany -o $MOUNT2/$tdir/a 4000 &
1306                 pid1=$!
1307                 sleep 1
1308
1309                 # Let's make conflict and bl_ast
1310                 ls -la $MOUNT1/$tdir > /dev/null &
1311                 pid2=$!
1312
1313                 log "Wait for $pid1 $pid2 for $timeout sec..."
1314                 sleep $timeout
1315                 kill -9 $pid1 $pid2 > /dev/null 2>&1
1316                 wait
1317                 local blk2=$(lctl get_param -n ldlm.services.ldlm_cbd.stats |
1318                              awk '/ldlm_bl_callback/ { print $2 }')
1319                 test "x$blk2" = "x" && blk2=0
1320                 test $blk2 -gt $blk1 && break
1321                 rm -fr $MOUNT1/$tdir
1322                 cancel_lru_locks mdc
1323                 let nr=nr+1
1324         done
1325         do_facet client "lctl set_param fail_loc=0x0"
1326         df -h $MOUNT1 $MOUNT2
1327         count=0
1328         gen=$(lctl get_param mdc.$FSNAME-MDT*-mdc-*.import | grep generation |
1329                 awk '/generation/{print $2}')
1330         for g in $gen; do
1331             if ! test "$g" -eq "${generation[count]}"; then
1332                 list=$(lctl list_param mdc.$FSNAME-MDT*-mdc-*.import)
1333                 local c=0
1334                 for imp in $list; do
1335                         if [ $c = $count ]; then
1336                                 break
1337                         fi
1338                         c=c+1
1339                 done
1340                 imp=$(echo "$imp" | awk -F"." '{print $2}')
1341                 error "Eviction happened on import $imp"
1342             fi
1343             let count=count+1
1344         done
1345 }
1346 run_test 35 "-EINTR cp_ast vs. bl_ast race does not evict client"
1347
1348 test_36() { #bug 16417
1349         local SIZE
1350         local SIZE_B
1351         local i
1352
1353         test_mkdir $DIR1/$tdir
1354         $LFS setstripe -c -1 $DIR1/$tdir
1355         i=0
1356         SIZE=50
1357         let SIZE_B=SIZE*1024*1024
1358         sync; sleep 2; sync # wait for delete thread
1359         wait_mds_ost_sync || error "wait_mds_ost_sync failed"
1360         wait_destroy_complete || error "wait_destroy_complete failed"
1361
1362         while [ $i -le 10 ]; do
1363                 lctl mark "start test - cycle ($i)"
1364                 local before=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1365                 dd if=/dev/zero of=$DIR1/$tdir/$tfile bs=1M count=$SIZE ||
1366                         error "dd $DIR1/$tdir/$tfile ${SIZE}MB failed"
1367                 sync          # sync data from client cache
1368                 sync_all_data # sync data from server cache (delayed allocation)
1369                 sleep 2
1370                 local after_dd=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1371                 multiop_bg_pause $DIR2/$tdir/$tfile O_r${SIZE_B}c || return 3
1372                 read_pid=$!
1373                 rm -f $DIR1/$tdir/$tfile
1374                 kill -USR1 $read_pid
1375                 wait $read_pid
1376                 sync; sleep 2; sync # Ensure new statfs
1377                 wait_delete_completed
1378                 local after=$(lfs_df $MOUNT1 | awk '/^filesystem/{ print $4; exit }')
1379                 echo "*** cycle($i) *** before($before) after_dd($after_dd)" \
1380                         "after($after)"
1381                 # this free space! not used
1382                 (( $after_dd <= $after)) ||
1383                         error "space leaked after_dd:$after_dd > after:$after"
1384                 let i=i+1
1385         done
1386 }
1387 run_test 36 "handle ESTALE/open-unlink correctly"
1388
1389 test_37() { # bug 18695
1390         test_mkdir $DIR1/$tdir
1391         multiop_bg_pause $DIR1/$tdir D_c || return 1
1392         MULTIPID=$!
1393         # create large directory (32kB seems enough from e2fsck, ~= 1000 files)
1394         createmany -m $DIR2/$tdir/f 10000
1395         # set mtime/atime backward
1396         touch -t 198001010000 $DIR2/$tdir
1397         kill -USR1 $MULTIPID
1398         nr_files=`lfs find $DIR1/$tdir -type f | wc -l`
1399         [ $nr_files -eq 10000 ] || error "$nr_files != 10000 truncated directory?"
1400
1401 }
1402 run_test 37 "check i_size is not updated for directory on close (bug 18695) =============="
1403
1404 # this should be set to past
1405 TEST_39_MTIME=`date -d "1 year ago" +%s`
1406
1407 # bug 11063
1408 test_39a() {
1409         local client1=${CLIENT1:-`hostname`}
1410         local client2=${CLIENT2:-`hostname`}
1411
1412         do_node $client1 "touch $DIR1/$tfile"
1413
1414         do_node $client1 "touch -m -d @$TEST_39_MTIME $DIR1/$tfile"
1415         local mtime1=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1416         [ "$mtime1" = $TEST_39_MTIME ] || \
1417                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
1418
1419         local d1=`do_node $client1 date +%s`
1420         do_node $client1 'echo hello >> '$DIR1/$tfile
1421         local d2=`do_node $client1 date +%s`
1422
1423         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1424         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
1425                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
1426
1427         do_node $client1 "mv $DIR1/$tfile $DIR1/$tfile-1"
1428
1429         for (( i=0; i < 2; i++ )) ; do
1430                 local mtime3=`do_node $client2 "stat -c %Y $DIR1/$tfile-1"`
1431                 [ "$mtime2" = "$mtime3" ] || \
1432                         error "mtime ($mtime2) changed (to $mtime3) on rename"
1433
1434                 cancel_lru_locks osc
1435                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1436         done
1437 }
1438 run_test 39a "test from 11063 =================================="
1439
1440 test_39b() {
1441         local client1=${CLIENT1:-`hostname`}
1442         local client2=${CLIENT2:-`hostname`}
1443
1444         touch $DIR1/$tfile
1445
1446         local mtime1=`stat -c %Y $DIR1/$tfile`
1447         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1448
1449         sleep 1
1450         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
1451
1452         for (( i=0; i < 2; i++ )) ; do
1453                 local mtime3=`stat -c %Y $DIR1/$tfile`
1454                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1455
1456                 [ "$mtime3" = "$mtime4" ] || \
1457                         error "different mtime on clients: $mtime3, $mtime4"
1458                 [ "$mtime3" = $TEST_39_MTIME ] || \
1459                         error "lost mtime: $mtime3, should be $TEST_39_MTIME"
1460
1461                 cancel_lru_locks osc
1462                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1463         done
1464 }
1465 run_test 39b "11063 problem 1 =================================="
1466
1467 test_39c() {
1468         local client1=${CLIENT1:-`hostname`}
1469         local client2=${CLIENT2:-`hostname`}
1470
1471         echo hello > $DIR1/$tfile
1472
1473         local mtime1=`stat -c %Y $DIR1/$tfile`
1474         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1475         [ "$mtime1" = "$mtime2" ] || \
1476                 error "create: different mtime on clients: $mtime1, $mtime2"
1477
1478         sleep 1
1479         $TRUNCATE $DIR1/$tfile 1
1480
1481         for (( i=0; i < 2; i++ )) ; do
1482                 local mtime3=`stat -c %Y $DIR1/$tfile`
1483                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1484
1485                 [ "$mtime3" = "$mtime4" ] || \
1486                         error "different mtime on clients: $mtime3, $mtime4"
1487                 [ "$mtime3" -gt $mtime2 ] || \
1488                         error "truncate did not update mtime: $mtime2, $mtime3"
1489
1490                 cancel_lru_locks osc
1491                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1492         done
1493 }
1494 run_test 39c "check truncate mtime update ======================"
1495
1496 test_39d() { # LU-7310
1497         touch $DIR1/$tfile
1498         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
1499
1500         local mtime1=$(stat -c %Y $DIR2/$tfile)
1501         [ "$mtime1" = $TEST_39_MTIME ] ||
1502                 error "mtime: $mtime1, should be $TEST_39_MTIME"
1503
1504         # force sync write
1505         # define OBD_FAIL_OSC_NO_GRANT 0x411
1506         $LCTL set_param fail_loc=0x411
1507
1508         local d1=$(date +%s)
1509         echo hello >> $DIR1/$tfile
1510         local d2=$(date +%s)
1511
1512         $LCTL set_param fail_loc=0
1513
1514         cancel_lru_locks $OSC
1515
1516         local mtime2=$(stat -c %Y $DIR2/$tfile)
1517         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] ||
1518                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
1519 }
1520 run_test 39d "sync write should update mtime"
1521
1522 pdo_sched() {
1523         # how long 40-47 take with specific delay
1524         # sleep 0.1 # 78s
1525         # sleep 0.2 # 103s
1526         # sleep 0.3 # 124s
1527         sleep 0.5 # 164s
1528 }
1529
1530 # for pdo testing, we must cancel MDT-MDT locks as well as client locks to
1531 # avoid unexpected delays due to previous tests
1532 pdo_lru_clear() {
1533         cancel_lru_locks mdc
1534         do_nodes $(comma_list $(mdts_nodes)) \
1535                 $LCTL set_param -n ldlm.namespaces.*mdt*.lru_size=clear
1536         do_nodes $(comma_list $(mdts_nodes)) \
1537                 $LCTL get_param ldlm.namespaces.*mdt*.lock_unused_count \
1538                         ldlm.namespaces.*mdt*.lock_count | grep -v '=0'
1539 }
1540
1541 # check that pid exists hence second operation wasn't blocked by first one
1542 # if it is so then there is no conflict, return 0
1543 # else second operation is conflicting with first one, return 1
1544 check_pdo_conflict() {
1545         local pid=$1
1546         local conflict=0
1547         pdo_sched # to ensure OP1 is finished on client if OP2 is blocked by OP1
1548         if [[ `ps --pid $pid | wc -l` == 1 ]]; then
1549                 conflict=1
1550                 echo "Conflict"
1551         else
1552                 echo "No conflict"
1553         fi
1554         return $conflict
1555 }
1556
1557 # pdirop tests
1558 # test 40: check non-blocking operations
1559 test_40a() {
1560         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1561         pdo_lru_clear
1562 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1563         do_nodes $(comma_list $(mdts_nodes)) \
1564                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1565         touch $DIR2
1566         mkdir $DIR1/$tfile &
1567         PID1=$!; pdo_sched
1568         touch $DIR2/$tfile-2
1569         check_pdo_conflict $PID1 || error "create is blocked"
1570         mkdir $DIR2/$tfile-3
1571         check_pdo_conflict $PID1 || error "mkdir is blocked"
1572         link $DIR2/$tfile-2 $DIR2/$tfile-4
1573         check_pdo_conflict $PID1 || error "link is blocked"
1574         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1575         check_pdo_conflict $PID1 || error "rename is blocked"
1576         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1577         check_pdo_conflict $PID1 || error "getattr is blocked"
1578         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1579         rmdir $DIR2/$tfile-3
1580         check_pdo_conflict $PID1 || error "unlink is blocked"
1581
1582         #  all operations above shouldn't wait the first one
1583         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1584         do_nodes $(comma_list $(mdts_nodes)) \
1585                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1586         wait $PID1
1587         rm -rf $DIR/$tfile*
1588         return 0
1589 }
1590 run_test 40a "pdirops: create vs others =============="
1591
1592 test_40b() {
1593         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1594         pdo_lru_clear
1595 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1596         do_nodes $(comma_list $(mdts_nodes)) \
1597                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1598         touch $DIR1/$tfile &
1599         PID1=$!; pdo_sched
1600         # open|create
1601         touch $DIR2/$tfile-2
1602         check_pdo_conflict $PID1 || error "create is blocked"
1603         mkdir $DIR2/$tfile-3
1604         check_pdo_conflict $PID1 || error "mkdir is blocked"
1605         link $DIR2/$tfile-2 $DIR2/$tfile-4
1606         check_pdo_conflict $PID1 || error "link is blocked"
1607         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1608         check_pdo_conflict $PID1 || error "rename is blocked"
1609         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1610         check_pdo_conflict $PID1 || error "getattr is blocked"
1611         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1612         rmdir $DIR2/$tfile-3
1613         check_pdo_conflict $PID1 || error "unlink is blocked"
1614         # all operations above shouldn't wait the first one
1615
1616         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1617         do_nodes $(comma_list $(mdts_nodes)) \
1618                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1619         wait $PID1
1620         rm -rf $DIR/$tfile*
1621         return 0
1622 }
1623 run_test 40b "pdirops: open|create and others =============="
1624
1625 test_40c() {
1626         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1627         pdo_lru_clear
1628         touch $DIR1/$tfile
1629 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1630         do_nodes $(comma_list $(mdts_nodes)) \
1631                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1632         link $DIR1/$tfile $DIR1/$tfile-0 &
1633         PID1=$!; pdo_sched
1634         # open|create
1635         touch $DIR2/$tfile-2
1636         check_pdo_conflict $PID1 || error "create is blocked"
1637         mkdir $DIR2/$tfile-3
1638         check_pdo_conflict $PID1 || error "mkdir is blocked"
1639         link $DIR2/$tfile-2 $DIR2/$tfile-4
1640         check_pdo_conflict $PID1 || error "link is blocked"
1641         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1642         check_pdo_conflict $PID1 || error "rename is blocked"
1643         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1644         check_pdo_conflict $PID1 || error "getattr is blocked"
1645         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1646         rmdir $DIR2/$tfile-3
1647         check_pdo_conflict $PID1 || error "unlink is blocked"
1648
1649         # all operations above shouldn't wait the first one
1650         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1651         do_nodes $(comma_list $(mdts_nodes)) \
1652                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1653         wait $PID1
1654         rm -rf $DIR/$tfile*
1655         return 0
1656 }
1657 run_test 40c "pdirops: link and others =============="
1658
1659 test_40d() {
1660         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1661         pdo_lru_clear
1662         touch $DIR1/$tfile
1663 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1664         do_nodes $(comma_list $(mdts_nodes)) \
1665                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1666         rm $DIR1/$tfile &
1667         PID1=$!; pdo_sched
1668         # open|create
1669         touch $DIR2/$tfile-2
1670         check_pdo_conflict $PID1 || error "create is blocked"
1671         mkdir $DIR2/$tfile-3
1672         check_pdo_conflict $PID1 || error "mkdir is blocked"
1673         link $DIR2/$tfile-2 $DIR2/$tfile-4
1674         check_pdo_conflict $PID1 || error "link is blocked"
1675         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1676         check_pdo_conflict $PID1 || error "rename is blocked"
1677         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1678         check_pdo_conflict $PID1 || error "getattr is blocked"
1679         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1680         rmdir $DIR2/$tfile-3
1681         check_pdo_conflict $PID1 || error "unlink is blocked"
1682
1683         # all operations above shouldn't wait the first one
1684         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1685         do_nodes $(comma_list $(mdts_nodes)) \
1686                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1687         wait $PID1
1688         return 0
1689 }
1690 run_test 40d "pdirops: unlink and others =============="
1691
1692 test_40e() {
1693         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1694         pdo_lru_clear
1695         touch $DIR1/$tfile
1696 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1697         do_nodes $(comma_list $(mdts_nodes)) \
1698                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1699         mv $DIR1/$tfile $DIR1/$tfile-0 &
1700         PID1=$!; pdo_sched
1701         # open|create
1702         touch $DIR2/$tfile-2
1703         check_pdo_conflict $PID1 || error "create is blocked"
1704         mkdir $DIR2/$tfile-3
1705         check_pdo_conflict $PID1 || error "mkdir is blocked"
1706         link $DIR2/$tfile-2 $DIR2/$tfile-4
1707         check_pdo_conflict $PID1 || error "link is blocked"
1708         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1709         check_pdo_conflict $PID1 || error "getattr is blocked"
1710         rm $DIR2/$tfile-4 $DIR2/$tfile-2
1711         rmdir $DIR2/$tfile-3
1712         check_pdo_conflict $PID1 || error "unlink is blocked"
1713
1714        # all operations above shouldn't wait the first one
1715         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1716         do_nodes $(comma_list $(mdts_nodes)) \
1717                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1718         wait $PID1
1719         rm -rf $DIR/$tfile*
1720         return 0
1721 }
1722 run_test 40e "pdirops: rename and others =============="
1723
1724 # test 41: create blocking operations
1725 test_41a() {
1726         pdo_lru_clear
1727 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1728         do_nodes $(comma_list $(mdts_nodes)) \
1729                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1730         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1731         PID1=$! ; pdo_sched
1732         mkdir $DIR2/$tfile &
1733         PID2=$! ; pdo_sched
1734         do_nodes $(comma_list $(mdts_nodes)) \
1735                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1736         check_pdo_conflict $PID1 && { wait $PID1; echo "mkdir isn't blocked"; }
1737         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1738         rm -rf $DIR/$tfile*
1739         return 0
1740 }
1741 run_test 41a "pdirops: create vs mkdir =============="
1742
1743 test_41b() {
1744         pdo_lru_clear
1745 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1746         do_nodes $(comma_list $(mdts_nodes)) \
1747                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1748         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1749         PID1=$! ; pdo_sched
1750         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1751         PID2=$! ; pdo_sched
1752         do_nodes $(comma_list $(mdts_nodes)) \
1753                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1754         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1755         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1756         rm -rf $DIR/$tfile*
1757         return 0
1758 }
1759 run_test 41b "pdirops: create vs create =============="
1760
1761 test_41c() {
1762         pdo_lru_clear
1763         touch $DIR1/$tfile-2
1764 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1765         do_nodes $(comma_list $(mdts_nodes)) \
1766                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1767         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1768         PID1=$! ; pdo_sched
1769         link $DIR2/$tfile-2 $DIR2/$tfile &
1770         PID2=$! ; pdo_sched
1771         do_nodes $(comma_list $(mdts_nodes)) \
1772                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1773         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1774         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1775         rm -rf $DIR/$tfile*
1776         return 0
1777 }
1778 run_test 41c "pdirops: create vs link =============="
1779
1780 test_41d() {
1781         pdo_lru_clear
1782 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1783         do_nodes $(comma_list $(mdts_nodes)) \
1784                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1785         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1786         PID1=$! ; pdo_sched
1787         rm $DIR2/$tfile &
1788         PID2=$! ; pdo_sched
1789         do_nodes $(comma_list $(mdts_nodes)) \
1790                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1791         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1792         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1793         rm -rf $DIR/$tfile*
1794         return 0
1795 }
1796 run_test 41d "pdirops: create vs unlink =============="
1797
1798 test_41e() {
1799         pdo_lru_clear
1800         touch $DIR1/$tfile-2
1801 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1802         do_nodes $(comma_list $(mdts_nodes)) \
1803                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1804         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1805         PID1=$! ; pdo_sched
1806         mv $DIR2/$tfile-2 $DIR2/$tfile &
1807         PID2=$! ; pdo_sched
1808         do_nodes $(comma_list $(mdts_nodes)) \
1809                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1810         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1811         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1812         rm -rf $DIR/$tfile*
1813         return 0
1814 }
1815 run_test 41e "pdirops: create and rename (tgt) =============="
1816
1817 test_41f() {
1818         pdo_lru_clear
1819 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1820         do_nodes $(comma_list $(mdts_nodes)) \
1821                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1822         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1823         PID1=$! ; pdo_sched
1824         mv $DIR2/$tfile $DIR2/$tfile-2 &
1825         PID2=$! ; pdo_sched
1826         do_nodes $(comma_list $(mdts_nodes)) \
1827                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1828         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1829         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1830         rm -rf $DIR/$tfile*
1831         return 0
1832 }
1833 run_test 41f "pdirops: create and rename (src) =============="
1834
1835 test_41g() {
1836         pdo_lru_clear
1837 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1838         do_nodes $(comma_list $(mdts_nodes)) \
1839                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1840         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1841         PID1=$! ; pdo_sched
1842         stat $DIR2/$tfile > /dev/null &
1843         PID2=$! ; pdo_sched
1844         do_nodes $(comma_list $(mdts_nodes)) \
1845                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1846         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1847         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
1848         rm -rf $DIR/$tfile*
1849         return 0
1850 }
1851 run_test 41g "pdirops: create vs getattr =============="
1852
1853 test_41h() {
1854         pdo_lru_clear
1855 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1856         do_nodes $(comma_list $(mdts_nodes)) \
1857                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1858         $MULTIOP $DIR1/$tfile oO_CREAT:O_RDWR:c &
1859         PID1=$! ; pdo_sched
1860         ls -lia $DIR2/ > /dev/null &
1861         PID2=$! ; pdo_sched
1862         do_nodes $(comma_list $(mdts_nodes)) \
1863                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1864         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1865         wait $PID2
1866         rm -rf $DIR/$tfile*
1867         return 0
1868 }
1869 run_test 41h "pdirops: create vs readdir =============="
1870
1871 # test 42: unlink and blocking operations
1872 test_42a() {
1873         pdo_lru_clear
1874 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1875         do_nodes $(comma_list $(mdts_nodes)) \
1876                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1877         mkdir $DIR1/$tfile &
1878         PID1=$! ; pdo_sched
1879         mkdir $DIR2/$tfile &
1880         PID2=$! ; pdo_sched
1881         do_nodes $(comma_list $(mdts_nodes)) \
1882                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1883         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1884         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
1885         rm -rf $DIR/$tfile*
1886         return 0
1887 }
1888 run_test 42a "pdirops: mkdir vs mkdir =============="
1889
1890 test_42b() {
1891         pdo_lru_clear
1892 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1893         do_nodes $(comma_list $(mdts_nodes)) \
1894                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1895         mkdir $DIR1/$tfile &
1896         PID1=$! ; pdo_sched
1897         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
1898         PID2=$! ; pdo_sched
1899         do_nodes $(comma_list $(mdts_nodes)) \
1900                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1901         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1902         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
1903         rm -rf $DIR/$tfile*
1904         return 0
1905 }
1906 run_test 42b "pdirops: mkdir vs create =============="
1907
1908 test_42c() {
1909         pdo_lru_clear
1910         touch $DIR1/$tfile-2
1911 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1912         do_nodes $(comma_list $(mdts_nodes)) \
1913                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1914         mkdir $DIR1/$tfile &
1915         PID1=$! ; pdo_sched
1916         link $DIR2/$tfile-2 $DIR2/$tfile &
1917         PID2=$! ; pdo_sched
1918         do_nodes $(comma_list $(mdts_nodes)) \
1919                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1920         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1921         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
1922         rm -rf $DIR/$tfile*
1923         return 0
1924 }
1925 run_test 42c "pdirops: mkdir vs link =============="
1926
1927 test_42d() {
1928         pdo_lru_clear
1929 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1930         do_nodes $(comma_list $(mdts_nodes)) \
1931                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1932         mkdir $DIR1/$tfile &
1933         PID1=$! ; pdo_sched
1934         rmdir $DIR2/$tfile &
1935         PID2=$! ; pdo_sched
1936         do_nodes $(comma_list $(mdts_nodes)) \
1937                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1938         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1939         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
1940         rm -rf $DIR/$tfile*
1941         return 0
1942 }
1943 run_test 42d "pdirops: mkdir vs unlink =============="
1944
1945 test_42e() {
1946         pdo_lru_clear
1947         touch $DIR1/$tfile-2
1948 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1949         do_nodes $(comma_list $(mdts_nodes)) \
1950                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1951         mkdir $DIR1/$tfile &
1952         PID1=$! ; pdo_sched
1953         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
1954         PID2=$! ; pdo_sched
1955         do_nodes $(comma_list $(mdts_nodes)) \
1956                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1957         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1958         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
1959         rm -rf $DIR/$tfile*
1960         return 0
1961 }
1962 run_test 42e "pdirops: mkdir and rename (tgt) =============="
1963
1964 test_42f() {
1965         pdo_lru_clear
1966 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1967         do_nodes $(comma_list $(mdts_nodes)) \
1968                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1969         mkdir $DIR1/$tfile &
1970         PID1=$! ; pdo_sched
1971         mv $DIR2/$tfile $DIR2/$tfile-2 &
1972         PID2=$! ; pdo_sched
1973         do_nodes $(comma_list $(mdts_nodes)) \
1974                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1975         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1976         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
1977         rm -rf $DIR/$tfile*
1978         return 0
1979 }
1980 run_test 42f "pdirops: mkdir and rename (src) =============="
1981
1982 test_42g() {
1983         pdo_lru_clear
1984 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1985         do_nodes $(comma_list $(mdts_nodes)) \
1986                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
1987         mkdir $DIR1/$tfile &
1988         PID1=$! ; pdo_sched
1989         stat $DIR2/$tfile > /dev/null &
1990         PID2=$! ; pdo_sched
1991         do_nodes $(comma_list $(mdts_nodes)) \
1992                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
1993         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1994         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
1995         rm -rf $DIR/$tfile*
1996         return 0
1997 }
1998 run_test 42g "pdirops: mkdir vs getattr =============="
1999
2000 test_42h() {
2001         pdo_lru_clear
2002 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2003         do_nodes $(comma_list $(mdts_nodes)) \
2004                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2005         mkdir $DIR1/$tfile &
2006         PID1=$! ; pdo_sched
2007         ls -lia $DIR2/ > /dev/null &
2008         PID2=$! ; pdo_sched
2009         do_nodes $(comma_list $(mdts_nodes)) \
2010                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2011         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2012         wait $PID2
2013         rm -rf $DIR/$tfile*
2014         return 0
2015 }
2016 run_test 42h "pdirops: mkdir vs readdir =============="
2017
2018 # test 43: rmdir,mkdir won't return -EEXIST
2019 test_43a() {
2020         for i in {1..1000}; do
2021                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2022                 rmdir $DIR2/$tdir || error "rmdir $tdir failed"
2023         done
2024         return 0
2025 }
2026 run_test 43a "rmdir,mkdir doesn't return -EEXIST =============="
2027
2028 test_43b() {
2029         pdo_lru_clear
2030         touch $DIR1/$tfile
2031 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2032         do_nodes $(comma_list $(mdts_nodes)) \
2033                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2034         rm $DIR1/$tfile &
2035         PID1=$! ; pdo_sched
2036         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2037         PID2=$! ; pdo_sched
2038         do_nodes $(comma_list $(mdts_nodes)) \
2039                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2040         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2041         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2042         rm -rf $DIR/$tfile*
2043         return 0
2044 }
2045 run_test 43b "pdirops: unlink vs create =============="
2046
2047 test_43c() {
2048         pdo_lru_clear
2049         touch $DIR1/$tfile
2050         touch $DIR1/$tfile-2
2051 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2052         do_nodes $(comma_list $(mdts_nodes)) \
2053                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2054         rm $DIR1/$tfile &
2055         PID1=$! ; pdo_sched
2056         link $DIR2/$tfile-2 $DIR2/$tfile &
2057         PID2=$! ; pdo_sched
2058         do_nodes $(comma_list $(mdts_nodes)) \
2059                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2060         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2061         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2062         rm -rf $DIR/$tfile*
2063         return 0
2064 }
2065 run_test 43c "pdirops: unlink vs link =============="
2066
2067 test_43d() {
2068         pdo_lru_clear
2069         touch $DIR1/$tfile
2070 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2071         do_nodes $(comma_list $(mdts_nodes)) \
2072                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2073         rm $DIR1/$tfile &
2074         PID1=$! ; pdo_sched
2075         rm $DIR2/$tfile &
2076         PID2=$! ; pdo_sched
2077         do_nodes $(comma_list $(mdts_nodes)) \
2078                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2079         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2080         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2081         rm -rf $DIR/$tfile*
2082         return 0
2083 }
2084 run_test 43d "pdirops: unlink vs unlink =============="
2085
2086 test_43e() {
2087         pdo_lru_clear
2088         touch $DIR1/$tfile
2089         touch $DIR1/$tfile-2
2090 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2091         do_nodes $(comma_list $(mdts_nodes)) \
2092                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2093         rm $DIR1/$tfile &
2094         PID1=$! ; pdo_sched
2095         mv -u $DIR2/$tfile-2 $DIR2/$tfile &
2096         PID2=$! ; pdo_sched
2097         do_nodes $(comma_list $(mdts_nodes)) \
2098                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2099         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2100         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2101         rm -rf $DIR/$tfile*
2102         return 0
2103 }
2104 run_test 43e "pdirops: unlink and rename (tgt) =============="
2105
2106 test_43f() {
2107         pdo_lru_clear
2108         touch $DIR1/$tfile
2109 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2110         do_nodes $(comma_list $(mdts_nodes)) \
2111                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2112         rm $DIR1/$tfile &
2113         PID1=$! ; pdo_sched
2114         mv $DIR2/$tfile $DIR2/$tfile-2 &
2115         PID2=$! ; pdo_sched
2116         do_nodes $(comma_list $(mdts_nodes)) \
2117                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2118         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2119         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2120         rm -rf $DIR/$tfile*
2121         return 0
2122 }
2123 run_test 43f "pdirops: unlink and rename (src) =============="
2124
2125 test_43g() {
2126         pdo_lru_clear
2127         touch $DIR1/$tfile
2128 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2129         do_nodes $(comma_list $(mdts_nodes)) \
2130                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2131         rm $DIR1/$tfile &
2132         PID1=$! ; pdo_sched
2133         stat $DIR2/$tfile > /dev/null &
2134         PID2=$! ; pdo_sched
2135         do_nodes $(comma_list $(mdts_nodes)) \
2136                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2137         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2138         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2139         rm -rf $DIR/$tfile*
2140         return 0
2141 }
2142 run_test 43g "pdirops: unlink vs getattr =============="
2143
2144 test_43h() {
2145         pdo_lru_clear
2146         touch $DIR1/$tfile
2147 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2148         do_nodes $(comma_list $(mdts_nodes)) \
2149                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2150         rm $DIR1/$tfile &
2151         PID1=$! ; pdo_sched
2152         ls -lia $DIR2/ > /dev/null &
2153         PID2=$! ; pdo_sched
2154         do_nodes $(comma_list $(mdts_nodes)) \
2155                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2156         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2157         wait $PID2
2158         rm -rf $DIR/$tfile*
2159         return 0
2160 }
2161 run_test 43h "pdirops: unlink vs readdir =============="
2162
2163 test_43i() {
2164         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2165         pdo_lru_clear
2166         touch $DIR1/$tfile
2167 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2168         do_nodes $(comma_list $(mdts_nodes)) \
2169                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2170         rm $DIR1/$tfile &
2171         PID1=$! ; pdo_sched
2172         $LFS mkdir -i 1 $DIR2/$tfile &
2173         PID2=$! ; pdo_sched
2174         do_nodes $(comma_list $(mdts_nodes)) \
2175                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2176         check_pdo_conflict $PID1 &&
2177                 { wait $PID1; error "remote mkdir isn't blocked"; }
2178         wait $PID2 ; [ $? -eq 0 ] || error "remote mkdir must succeed"
2179         rm -rf $DIR/$tfile*
2180         return 0
2181 }
2182 run_test 43i "pdirops: unlink vs remote mkdir"
2183
2184 test_43j() {
2185         [[ $MDS1_VERSION -lt $(version_code 2.13.52) ]] &&
2186                 skip "Need MDS version newer than 2.13.52"
2187
2188         for i in {1..100}; do
2189 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_CREATE_RACE         0x167
2190                 do_nodes $(comma_list $(mdts_nodes)) \
2191                         "lctl set_param -n fail_loc=0x80000167 2>/dev/null ||
2192                                 true"
2193                 OK=0
2194                 mkdir $DIR1/$tdir &
2195                 PID1=$!
2196                 mkdir $DIR2/$tdir && ((OK++))
2197                 wait $PID1 && ((OK++))
2198                 (( OK == 1 )) || error "exactly one mkdir should succeed"
2199
2200                 rmdir $DIR1/$tdir || error "rmdir failed"
2201         done
2202         return 0
2203 }
2204 run_test 43j "racy mkdir return EEXIST =============="
2205
2206 # test 44: rename tgt and blocking operations
2207 test_44a() {
2208         pdo_lru_clear
2209         touch $DIR1/$tfile-2
2210 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
2211         do_nodes $(comma_list $(mdts_nodes)) \
2212                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2213         mv $DIR1/$tfile-2 $DIR1/$tfile &
2214         PID1=$! ; pdo_sched
2215         mkdir $DIR2/$tfile &
2216         PID2=$! ; pdo_sched
2217         do_nodes $(comma_list $(mdts_nodes)) \
2218                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2219         check_pdo_conflict $PID1 && { wait $PID1; date;error "mkdir isn't blocked"; }
2220         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2221         date
2222         rm -rf $DIR/$tfile*
2223         return 0
2224 }
2225 run_test 44a "pdirops: rename tgt vs mkdir =============="
2226
2227 test_44b() {
2228         pdo_lru_clear
2229         touch $DIR1/$tfile-2
2230 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2231         do_nodes $(comma_list $(mdts_nodes)) \
2232                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2233         mv $DIR1/$tfile-2 $DIR1/$tfile &
2234         PID1=$! ; pdo_sched
2235         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2236         PID2=$! ; pdo_sched
2237         do_nodes $(comma_list $(mdts_nodes)) \
2238                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2239         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2240         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2241         rm -rf $DIR/$tfile*
2242         return 0
2243 }
2244 run_test 44b "pdirops: rename tgt vs create =============="
2245
2246 test_44c() {
2247         pdo_lru_clear
2248         touch $DIR1/$tfile-2
2249         touch $DIR1/$tfile-3
2250 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2251         do_nodes $(comma_list $(mdts_nodes)) \
2252                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2253         mv $DIR1/$tfile-2 $DIR1/$tfile &
2254         PID1=$! ; pdo_sched
2255         link $DIR2/$tfile-3 $DIR2/$tfile &
2256         PID2=$! ; pdo_sched
2257         do_nodes $(comma_list $(mdts_nodes)) \
2258                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2259         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2260         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2261         rm -rf $DIR/$tfile*
2262         return 0
2263 }
2264 run_test 44c "pdirops: rename tgt vs link =============="
2265
2266 test_44d() {
2267         pdo_lru_clear
2268         touch $DIR1/$tfile-2
2269 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2270         do_nodes $(comma_list $(mdts_nodes)) \
2271                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2272         mv $DIR1/$tfile-2 $DIR1/$tfile &
2273         PID1=$! ; pdo_sched
2274         rm $DIR2/$tfile &
2275         PID2=$! ; pdo_sched
2276         do_nodes $(comma_list $(mdts_nodes)) \
2277                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2278         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2279         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2280         rm -rf $DIR/$tfile*
2281         return 0
2282 }
2283 run_test 44d "pdirops: rename tgt vs unlink =============="
2284
2285 test_44e() {
2286         pdo_lru_clear
2287         touch $DIR1/$tfile
2288         touch $DIR1/$tfile-2
2289         touch $DIR1/$tfile-3
2290 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2291         do_nodes $(comma_list $(mdts_nodes)) \
2292                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2293         mv $DIR1/$tfile-2 $DIR1/$tfile &
2294         PID1=$! ; pdo_sched
2295         mv $DIR2/$tfile-3 $DIR2/$tfile &
2296         PID2=$! ; pdo_sched
2297         do_nodes $(comma_list $(mdts_nodes)) \
2298                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2299         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2300         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2301         rm -rf $DIR/$tfile*
2302         return 0
2303 }
2304 run_test 44e "pdirops: rename tgt and rename (tgt) =============="
2305
2306 test_44f() {
2307         pdo_lru_clear
2308         touch $DIR1/$tfile-2
2309         touch $DIR1/$tfile-3
2310 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2311         do_nodes $(comma_list $(mdts_nodes)) \
2312                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2313         mv $DIR1/$tfile-2 $DIR1/$tfile &
2314         PID1=$! ; pdo_sched
2315         mv $DIR2/$tfile $DIR2/$tfile-3 &
2316         PID2=$! ; pdo_sched
2317         do_nodes $(comma_list $(mdts_nodes)) \
2318                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2319         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2320         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2321         rm -rf $DIR/$tfile*
2322         return 0
2323 }
2324 run_test 44f "pdirops: rename tgt and rename (src) =============="
2325
2326 test_44g() {
2327         pdo_lru_clear
2328         touch $DIR1/$tfile-2
2329 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2330         do_nodes $(comma_list $(mdts_nodes)) \
2331                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2332         mv $DIR1/$tfile-2 $DIR1/$tfile &
2333         PID1=$! ; pdo_sched
2334         stat $DIR2/$tfile > /dev/null &
2335         PID2=$! ; pdo_sched
2336         do_nodes $(comma_list $(mdts_nodes)) \
2337                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2338         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2339         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2340         rm -rf $DIR/$tfile*
2341         return 0
2342 }
2343 run_test 44g "pdirops: rename tgt vs getattr =============="
2344
2345 test_44h() {
2346         pdo_lru_clear
2347         touch $DIR1/$tfile-2
2348 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
2349         do_nodes $(comma_list $(mdts_nodes)) \
2350                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2351         mv $DIR1/$tfile-2 $DIR1/$tfile &
2352         PID1=$! ; pdo_sched
2353         ls -lia $DIR2/ > /dev/null &
2354         PID2=$! ; pdo_sched
2355         do_nodes $(comma_list $(mdts_nodes)) \
2356                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2357         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2358         wait $PID2
2359         rm -rf $DIR/$tfile*
2360         return 0
2361 }
2362 run_test 44h "pdirops: rename tgt vs readdir =============="
2363
2364 # test 44: rename tgt and blocking operations
2365 test_44i() {
2366         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2367         pdo_lru_clear
2368         touch $DIR1/$tfile-2
2369 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
2370         do_nodes $(comma_list $(mdts_nodes)) \
2371                 "lctl set_param -n fail_loc=0x80000146 2>/dev/null || true"
2372         mv $DIR1/$tfile-2 $DIR1/$tfile &
2373         PID1=$! ; pdo_sched
2374         $LFS mkdir -i 1 $DIR2/$tfile &
2375         PID2=$! ; pdo_sched
2376         do_nodes $(comma_list $(mdts_nodes)) \
2377                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2378         check_pdo_conflict $PID1 && { wait $PID1;
2379                                 error "remote mkdir isn't blocked"; }
2380         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2381         rm -rf $DIR/$tfile*
2382         return 0
2383 }
2384 run_test 44i "pdirops: rename tgt vs remote mkdir"
2385
2386 # test 45: rename,mkdir doesn't fail with -EEXIST
2387 test_45a() {
2388         for i in {1..1000}; do
2389                 mkdir $DIR1/$tdir || error "mkdir $tdir failed"
2390                 mrename $DIR2/$tdir $DIR2/$tdir.$i > /dev/null ||
2391                         error "mrename to $tdir.$i failed"
2392         done
2393         rm -rf $DIR/$tdir*
2394         return 0
2395 }
2396 run_test 45a "rename,mkdir doesn't return -EEXIST =============="
2397
2398 test_45b() {
2399         pdo_lru_clear
2400         touch $DIR1/$tfile
2401 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2402         do_nodes $(comma_list $(mdts_nodes)) \
2403                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2404         mv $DIR1/$tfile $DIR1/$tfile-2 &
2405         PID1=$! ; pdo_sched
2406         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2407         PID2=$! ; pdo_sched
2408         do_nodes $(comma_list $(mdts_nodes)) \
2409                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2410         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2411         wait $PID2 ; [ $? -eq 0 ] || error "create must succeed"
2412         rm -rf $DIR/$tfile*
2413         return 0
2414 }
2415 run_test 45b "pdirops: rename src vs create =============="
2416
2417 test_45c() {
2418         pdo_lru_clear
2419         touch $DIR1/$tfile
2420         touch $DIR1/$tfile-3
2421 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2422         do_nodes $(comma_list $(mdts_nodes)) \
2423                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2424         mv $DIR1/$tfile $DIR1/$tfile-2 &
2425         PID1=$! ; pdo_sched
2426         link $DIR2/$tfile-3 $DIR2/$tfile &
2427         PID2=$! ; pdo_sched
2428         do_nodes $(comma_list $(mdts_nodes)) \
2429                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2430         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2431         wait $PID2 ; [ $? -eq 0 ] || error "link must succeed"
2432         rm -rf $DIR/$tfile*
2433         return 0
2434 }
2435 run_test 45c "pdirops: rename src vs link =============="
2436
2437 test_45d() {
2438         pdo_lru_clear
2439         touch $DIR1/$tfile
2440 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2441         do_nodes $(comma_list $(mdts_nodes)) \
2442                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2443         mv $DIR1/$tfile $DIR1/$tfile-2 &
2444         PID1=$! ; pdo_sched
2445         rm $DIR2/$tfile &
2446         PID2=$! ; pdo_sched
2447         do_nodes $(comma_list $(mdts_nodes)) \
2448                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2449         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2450         wait $PID2 ; [ $? -ne 0 ] || error "unlink must fail"
2451         rm -rf $DIR/$tfile*
2452         return 0
2453 }
2454 run_test 45d "pdirops: rename src vs unlink =============="
2455
2456 test_45e() {
2457         pdo_lru_clear
2458         touch $DIR1/$tfile
2459         touch $DIR1/$tfile-3
2460 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2461         do_nodes $(comma_list $(mdts_nodes)) \
2462                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2463         mv $DIR1/$tfile $DIR1/$tfile-2 &
2464         PID1=$! ; pdo_sched
2465         mv $DIR2/$tfile-3 $DIR2/$tfile &
2466         PID2=$! ; pdo_sched
2467         do_nodes $(comma_list $(mdts_nodes)) \
2468                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2469         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2470         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2471         rm -rf $DIR/$tfile*
2472         return 0
2473 }
2474 run_test 45e "pdirops: rename src and rename (tgt) =============="
2475
2476 test_45f() {
2477         pdo_lru_clear
2478         touch $DIR1/$tfile
2479 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2480         do_nodes $(comma_list $(mdts_nodes)) \
2481                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2482         mv $DIR1/$tfile $DIR1/$tfile-2 &
2483         PID1=$! ; pdo_sched
2484         mv $DIR2/$tfile $DIR2/$tfile-3 &
2485         PID2=$! ; pdo_sched
2486         do_nodes $(comma_list $(mdts_nodes)) \
2487                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2488         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2489         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2490         rm -rf $DIR/$tfile*
2491         return 0
2492 }
2493 run_test 45f "pdirops: rename src and rename (src) =============="
2494
2495 test_45g() {
2496         pdo_lru_clear
2497         touch $DIR1/$tfile
2498 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2499         do_nodes $(comma_list $(mdts_nodes)) \
2500                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2501         mv $DIR1/$tfile $DIR1/$tfile-2 &
2502         PID1=$! ; pdo_sched
2503         stat $DIR2/$tfile > /dev/null &
2504         PID2=$! ; pdo_sched
2505         do_nodes $(comma_list $(mdts_nodes)) \
2506                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2507         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2508         wait $PID2 ; [ $? -ne 0 ] || error "stat must fail"
2509         rm -rf $DIR/$tfile*
2510         return 0
2511 }
2512 run_test 45g "pdirops: rename src vs getattr =============="
2513
2514 test_45h() {
2515         pdo_lru_clear
2516         touch $DIR1/$tfile
2517 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2518         do_nodes $(comma_list $(mdts_nodes)) \
2519                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2520         mv $DIR1/$tfile $DIR1/$tfile-2 &
2521         PID1=$! ; pdo_sched
2522         ls -lia $DIR2/ > /dev/null &
2523         do_nodes $(comma_list $(mdts_nodes)) \
2524                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2525         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2526         wait $PID2
2527         rm -rf $DIR/$tfile*
2528         return 0
2529 }
2530 run_test 45h "pdirops: unlink vs readdir =============="
2531
2532 test_45i() {
2533         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2534         pdo_lru_clear
2535         touch $DIR1/$tfile
2536 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2537         do_nodes $(comma_list $(mdts_nodes)) \
2538                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2539         mv $DIR1/$tfile $DIR1/$tfile-2 &
2540         PID1=$! ; pdo_sched
2541         $LFS mkdir -i 1 $DIR2/$tfile &
2542         PID2=$! ; pdo_sched
2543         do_nodes $(comma_list $(mdts_nodes)) \
2544                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2545         check_pdo_conflict $PID1 && { wait $PID1;
2546                                 error "create remote dir isn't blocked"; }
2547         wait $PID2 ; [ $? -eq 0 ] || error "create remote dir must succeed"
2548         rm -rf $DIR/$tfile*
2549         return 0
2550 }
2551 run_test 45i "pdirops: rename src vs remote mkdir"
2552
2553 # test 46: link and blocking operations
2554 test_46a() {
2555         pdo_lru_clear
2556         touch $DIR1/$tfile-2
2557 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2558         do_nodes $(comma_list $(mdts_nodes)) \
2559                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2560         link $DIR1/$tfile-2 $DIR1/$tfile &
2561         PID1=$! ; pdo_sched
2562         mkdir $DIR2/$tfile &
2563         PID2=$! ; pdo_sched
2564         do_nodes $(comma_list $(mdts_nodes)) \
2565                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2566         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2567         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2568         rm -rf $DIR/$tfile*
2569         return 0
2570 }
2571 run_test 46a "pdirops: link vs mkdir =============="
2572
2573 test_46b() {
2574         pdo_lru_clear
2575         touch $DIR1/$tfile-2
2576 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2577         do_nodes $(comma_list $(mdts_nodes)) \
2578                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2579         link $DIR1/$tfile-2 $DIR1/$tfile &
2580         PID1=$! ; pdo_sched
2581         $MULTIOP $DIR2/$tfile oO_CREAT:O_EXCL:c &
2582         PID2=$! ; pdo_sched
2583         do_nodes $(comma_list $(mdts_nodes)) \
2584                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2585         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
2586         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2587         rm -rf $DIR/$tfile*
2588         return 0
2589 }
2590 run_test 46b "pdirops: link vs create =============="
2591
2592 test_46c() {
2593         pdo_lru_clear
2594         touch $DIR1/$tfile-2
2595 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2596         do_nodes $(comma_list $(mdts_nodes)) \
2597                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2598         link $DIR1/$tfile-2 $DIR1/$tfile &
2599         PID1=$! ; pdo_sched
2600         link $DIR2/$tfile $DIR2/$tfile &
2601         PID2=$! ; pdo_sched
2602         do_nodes $(comma_list $(mdts_nodes)) \
2603                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2604         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2605         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2606         rm -rf $DIR/$tfile*
2607         return 0
2608 }
2609 run_test 46c "pdirops: link vs link =============="
2610
2611 test_46d() {
2612         pdo_lru_clear
2613         touch $DIR1/$tfile-2
2614 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2615         do_nodes $(comma_list $(mdts_nodes)) \
2616                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2617         link $DIR1/$tfile-2 $DIR1/$tfile &
2618         PID1=$! ; pdo_sched
2619         rm $DIR2/$tfile &
2620         PID2=$! ; pdo_sched
2621         do_nodes $(comma_list $(mdts_nodes)) \
2622                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2623         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
2624         wait $PID2 ; [ $? -eq 0 ] || error "unlink must succeed"
2625         rm -rf $DIR/$tfile*
2626         return 0
2627 }
2628 run_test 46d "pdirops: link vs unlink =============="
2629
2630 test_46e() {
2631         pdo_lru_clear
2632         touch $DIR1/$tfile-2
2633         touch $DIR1/$tfile-3
2634 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2635         do_nodes $(comma_list $(mdts_nodes)) \
2636                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2637         link $DIR1/$tfile-2 $DIR1/$tfile &
2638         PID1=$! ; pdo_sched
2639         mv $DIR2/$tfile-3 $DIR2/$tfile &
2640         PID2=$! ; pdo_sched
2641         do_nodes $(comma_list $(mdts_nodes)) \
2642                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2643         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2644         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2645         rm -rf $DIR/$tfile*
2646         return 0
2647 }
2648 run_test 46e "pdirops: link and rename (tgt) =============="
2649
2650 test_46f() {
2651         pdo_lru_clear
2652         touch $DIR1/$tfile-2
2653         touch $DIR1/$tfile-3
2654 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2655         do_nodes $(comma_list $(mdts_nodes)) \
2656                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2657         link $DIR1/$tfile-2 $DIR1/$tfile &
2658         PID1=$! ; pdo_sched
2659         mv $DIR2/$tfile $DIR2/$tfile-3 &
2660         PID2=$! ; pdo_sched
2661         do_nodes $(comma_list $(mdts_nodes)) \
2662                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2663         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
2664         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2665         rm -rf $DIR/$tfile*
2666         return 0
2667 }
2668 run_test 46f "pdirops: link and rename (src) =============="
2669
2670 test_46g() {
2671         pdo_lru_clear
2672         touch $DIR1/$tfile-2
2673 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2674         do_nodes $(comma_list $(mdts_nodes)) \
2675                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2676         link $DIR1/$tfile-2 $DIR1/$tfile &
2677         PID1=$! ; pdo_sched
2678         stat $DIR2/$tfile > /dev/null &
2679         PID2=$! ; pdo_sched
2680         do_nodes $(comma_list $(mdts_nodes)) \
2681                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2682         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
2683         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2684         rm -rf $DIR/$tfile*
2685         return 0
2686 }
2687 run_test 46g "pdirops: link vs getattr =============="
2688
2689 test_46h() {
2690         pdo_lru_clear
2691         touch $DIR1/$tfile-2
2692 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2693         do_nodes $(comma_list $(mdts_nodes)) \
2694                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2695         link $DIR1/$tfile-2 $DIR1/$tfile &
2696         PID1=$! ; pdo_sched
2697         ls -lia $DIR2/ > /dev/null &
2698         PID2=$! ; pdo_sched
2699         do_nodes $(comma_list $(mdts_nodes)) \
2700                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2701         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
2702         wait $PID2
2703         rm -rf $DIR/$tfile*
2704         return 0
2705 }
2706 run_test 46h "pdirops: link vs readdir =============="
2707
2708 test_46i() {
2709         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2710         pdo_lru_clear
2711         touch $DIR1/$tfile-2
2712 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2713         do_nodes $(comma_list $(mdts_nodes)) \
2714                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2715         link $DIR1/$tfile-2 $DIR1/$tfile &
2716         PID1=$! ; pdo_sched
2717         $LFS mkdir -i 1 $DIR2/$tfile &
2718         PID2=$! ; pdo_sched
2719         do_nodes $(comma_list $(mdts_nodes)) \
2720                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2721         check_pdo_conflict $PID1 && { wait $PID1;
2722                                 error "remote mkdir isn't blocked"; }
2723         wait $PID2 ; [ $? -ne 0 ] || error "remote mkdir must fail"
2724         rm -rf $DIR/$tfile*
2725         return 0
2726 }
2727 run_test 46i "pdirops: link vs remote mkdir"
2728
2729 # test 47: remote mkdir and blocking operations
2730 test_47a() {
2731 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2732         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2733         pdo_lru_clear
2734         do_nodes $(comma_list $(mdts_nodes)) \
2735                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2736         $LFS mkdir -i 1 $DIR1/$tfile &
2737         PID1=$! ; pdo_sched
2738         mkdir $DIR2/$tfile &
2739         PID2=$! ; pdo_sched
2740         do_nodes $(comma_list $(mdts_nodes)) \
2741                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2742         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
2743         wait $PID2 ; [ $? -ne 0 ] || error "mkdir must fail"
2744         rm -rf $DIR/$tfile*
2745         return 0
2746 }
2747 run_test 47a "pdirops: remote mkdir vs mkdir"
2748
2749 test_47b() {
2750 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2751         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2752         pdo_lru_clear
2753         do_nodes $(comma_list $(mdts_nodes)) \
2754                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2755         $LFS mkdir -i 1 $DIR1/$tfile &
2756         PID1=$! ; pdo_sched
2757         sleep 1 # please do not remove this sleep, see LU-10754
2758         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c &
2759         PID2=$! ; pdo_sched
2760         do_nodes $(comma_list $(mdts_nodes)) \
2761                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2762         check_pdo_conflict $PID1 && { wait $PID1;
2763                                         error "create isn't blocked"; }
2764         wait $PID2 ; [ $? -ne 0 ] || error "create must fail"
2765         rm -rf $DIR/$tfile*
2766         return 0
2767 }
2768 run_test 47b "pdirops: remote mkdir vs create"
2769
2770 test_47c() {
2771         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2772         pdo_lru_clear
2773         touch $DIR1/$tfile-2
2774 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2775         do_nodes $(comma_list $(mdts_nodes)) \
2776                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2777         $LFS mkdir -i 1 $DIR1/$tfile &
2778         PID1=$! ; pdo_sched
2779         link $DIR2/$tfile-2 $DIR2/$tfile &
2780         PID2=$! ; pdo_sched
2781         do_nodes $(comma_list $(mdts_nodes)) \
2782                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2783         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
2784         wait $PID2 ; [ $? -ne 0 ] || error "link must fail"
2785         rm -rf $DIR/$tfile*
2786         return 0
2787 }
2788 run_test 47c "pdirops: remote mkdir vs link"
2789
2790 test_47d() {
2791         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2792         pdo_lru_clear
2793 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2794         do_nodes $(comma_list $(mdts_nodes)) \
2795                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2796         $LFS mkdir -i 1 $DIR1/$tfile &
2797         PID1=$! ; pdo_sched
2798         rmdir $DIR2/$tfile &
2799         PID2=$! ; pdo_sched
2800         do_nodes $(comma_list $(mdts_nodes)) \
2801                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2802         check_pdo_conflict $PID1 && { wait $PID1;
2803                                         error "unlink isn't blocked"; }
2804         wait $PID2 ; [ $? -eq 0 ] || error "rmdir must succeed"
2805         rm -rf $DIR/$tfile*
2806         return 0
2807 }
2808 run_test 47d "pdirops: remote mkdir vs unlink"
2809
2810 test_47e() {
2811         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2812         pdo_lru_clear
2813         touch $DIR1/$tfile-2
2814 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2815         do_nodes $(comma_list $(mdts_nodes)) \
2816                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2817         $LFS mkdir -i 1 $DIR1/$tfile &
2818         PID1=$! ; pdo_sched
2819         mv -T $DIR2/$tfile-2 $DIR2/$tfile &
2820         PID2=$! ; pdo_sched
2821         do_nodes $(comma_list $(mdts_nodes)) \
2822                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2823         check_pdo_conflict $PID1 && { wait $PID1;
2824                                         error "rename isn't blocked"; }
2825         wait $PID2 ; [ $? -ne 0 ] || error "rename must fail"
2826         rm -rf $DIR/$tfile*
2827         return 0
2828 }
2829 run_test 47e "pdirops: remote mkdir and rename (tgt)"
2830
2831 test_47f() {
2832         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2833         pdo_lru_clear
2834 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2835         do_nodes $(comma_list $(mdts_nodes)) \
2836                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2837         $LFS mkdir -i 1 $DIR1/$tfile &
2838         PID1=$! ; pdo_sched
2839         mv $DIR2/$tfile $DIR2/$tfile-2 &
2840         PID2=$! ; pdo_sched
2841         do_nodes $(comma_list $(mdts_nodes)) \
2842                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2843         check_pdo_conflict $PID1 && { wait $PID1;
2844                                         error "rename isn't blocked"; }
2845         wait $PID2 ; [ $? -eq 0 ] || error "rename must succeed"
2846         rm -rf $DIR/$tfile*
2847         return 0
2848 }
2849 run_test 47f "pdirops: remote mkdir and rename (src)"
2850
2851 test_47g() {
2852         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2853         sync
2854         sync_all_data
2855         pdo_lru_clear
2856 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
2857         do_nodes $(comma_list $(mdts_nodes)) \
2858                 "lctl set_param -n fail_loc=0x80000145 2>/dev/null || true"
2859         $LFS mkdir -i 1 $DIR1/$tfile &
2860         PID1=$! ; pdo_sched
2861         stat $DIR2/$tfile > /dev/null &
2862         PID2=$! ; pdo_sched
2863         do_nodes $(comma_list $(mdts_nodes)) \
2864                 "lctl set_param -n fail_loc=0 2>/dev/null || true"
2865         check_pdo_conflict $PID1 && { wait $PID1;
2866                                         error "getattr isn't blocked"; }
2867         wait $PID2 ; [ $? -eq 0 ] || error "stat must succeed"
2868         rm -rf $DIR/$tfile*
2869         return 0
2870 }
2871 run_test 47g "pdirops: remote mkdir vs getattr"
2872
2873 test_50() {
2874         trunc_size=4096
2875         dd if=/dev/zero of=$DIR1/$tfile bs=1K count=10
2876 #define OBD_FAIL_OSC_CP_ENQ_RACE         0x410
2877         do_facet client "lctl set_param fail_loc=0x410"
2878         $TRUNCATE $DIR2/$tfile $trunc_size
2879         do_facet client "lctl set_param fail_loc=0x0"
2880         sleep 3
2881         size=`stat -c %s $DIR2/$tfile`
2882         [ $size -eq $trunc_size ] || error "wrong size"
2883 }
2884 run_test 50 "osc lvb attrs: enqueue vs. CP AST =============="
2885
2886 test_51a() {
2887         local filesize
2888         local origfile=/etc/hosts
2889
2890         filesize=$(stat -c %s $origfile)
2891
2892         # create an empty file
2893         $MCREATE $DIR1/$tfile || error "can't create $DIR1/$tfile"
2894         # cache layout lock on both mount point
2895         stat $DIR1/$tfile > /dev/null || error "stat $DIR1/$tfile failed"
2896         stat $DIR2/$tfile > /dev/null || error "stat $DIR2/$tfile failed"
2897
2898         # open and sleep 2 seconds then read
2899         $MULTIOP $DIR2/$tfile o_2r${filesize}c &
2900         local pid=$!
2901         sleep 1
2902
2903         # create the layout of testing file
2904         dd if=$origfile of=$DIR1/$tfile conv=notrunc > /dev/null ||
2905                 error "dd $DIR1/$tfile failed"
2906
2907         # MULTIOP proc should be able to read enough bytes and exit
2908         for ((i = 0; i < 6; i++)); do
2909                 sleep 1
2910                 kill -0 $pid || break
2911         done
2912         kill -0 $pid 2> /dev/null && error "multiop is still there"
2913         cmp $origfile $DIR2/$tfile || error "$origfile and $DIR2/$tfile differs"
2914
2915         rm -f $DIR1/$tfile
2916 }
2917 run_test 51a "layout lock: refresh layout should work"
2918
2919 test_51b() {
2920         [[ "$MDS1_VERSION" -ge $(version_code 2.3.59) ]] ||
2921                 skip "Need MDS version at least 2.3.59"
2922
2923         local tmpfile=`mktemp`
2924
2925         # create an empty file
2926         $MCREATE $DIR1/$tfile || error "mcreate $DIR1/$tfile failed"
2927
2928         # delay glimpse so that layout has changed when glimpse finish
2929 #define OBD_FAIL_GLIMPSE_DELAY 0x1404
2930         $LCTL set_param fail_loc=0x1404
2931         stat -c %s $DIR2/$tfile |tee $tmpfile &
2932         local pid=$!
2933         sleep 1
2934
2935         # create layout of testing file
2936         dd if=/dev/zero of=$DIR1/$tfile bs=1k count=1 conv=notrunc >/dev/null ||
2937                 error "dd $DIR1/$tfile failed"
2938
2939         wait $pid
2940         local fsize=$(cat $tmpfile)
2941
2942         [ x$fsize = x1024 ] || error "file size is $fsize, should be 1024"
2943
2944         rm -f $DIR1/$tfile $tmpfile
2945 }
2946 run_test 51b "layout lock: glimpse should be able to restart if layout changed"
2947
2948 test_51c() {
2949         [ $OSTCOUNT -ge 2 ] || { skip "needs >= 2 osts"; return; }
2950
2951         # set default layout to have 1 stripe
2952         mkdir $DIR1/$tdir
2953         $LFS setstripe -c 1 $DIR1/$tdir
2954
2955         # create a file with empty layout
2956         $MCREATE $DIR1/$tdir/$tfile ||
2957                 error "$MCREATE $DIR1/$tdir/$tfile failed"
2958
2959 #define OBD_FAIL_MDS_LL_BLOCK 0x172
2960         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x172
2961
2962         # change the layout of testing file
2963         echo "Setting layout to have $OSTCOUNT stripes ..."
2964         $LFS setstripe -c $OSTCOUNT $DIR1/$tdir/$tfile &
2965         pid=$!
2966         sleep 1
2967
2968         # write something to the file, it should be blocked on fetching layout
2969         dd if=/dev/zero of=$DIR2/$tdir/$tfile bs=1k count=1 conv=notrunc
2970         local stripe_count=$($LFS getstripe -c $DIR2/$tdir/$tfile)
2971         wait $pid
2972
2973         # lod_qos.c::min_stripe_count() allows setstripe with a default stripe
2974         # count to succeed with only 3/4 of the number of stripes (rounded up),
2975         # so creating striped files does not fail if an OST is offline or full
2976         [ $stripe_count -ge $((OSTCOUNT - $OSTCOUNT / 4)) ] ||
2977                 error "bad layout: getstripe -c $stripe_count < $OSTCOUNT * 3/4"
2978
2979         rm -fr $DIR1/$tdir
2980 }
2981 run_test 51c "layout lock: IT_LAYOUT blocked and correct layout can be returned"
2982
2983 test_51d() {
2984         dd if=/dev/zero of=/$DIR1/$tfile bs=1M count=1
2985         cancel_lru_locks mdc
2986
2987         # open should grant LAYOUT lock, mmap and read will install pages
2988         $MULTIOP $DIR1/$tfile oO_RDWR:SMR_Uc &
2989         local PID=$!
2990         sleep 1
2991
2992         # rss before revoking
2993         local br=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
2994         echo "Before revoking layout lock: $br KB mapped"
2995
2996         # cancel layout lock manually
2997         cancel_lru_locks mdc
2998
2999         # rss after revoking
3000         local ar=$(grep -A 10 $tfile /proc/$PID/smaps | awk '/^Rss/{print $2}')
3001
3002         kill -USR1 $PID
3003         wait $PID || error "wait PID $PID failed"
3004
3005         [ $ar -eq 0 ] || error "rss before: $br, after $ar, some pages remained"
3006 }
3007 run_test 51d "layout lock: losing layout lock should clean up memory map region"
3008
3009 test_54_part1()
3010 {
3011         echo "==> rename vs getattr vs setxattr should not deadlock"
3012         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3013
3014         do_facet mds1 $LCTL set_param fail_loc=$1
3015
3016         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3017         PID1=$!
3018         sleep 1
3019
3020         stat $DIR/d1/d2 &
3021         PID2=$!
3022         sleep 1
3023
3024         setfattr -n user.attr1 -v value1 $DIR2/d1 || error "(2) setfattr failed"
3025         wait $PID1 || error "(3) mv failed"
3026         wait $PID2 || error "(4) stat failed"
3027         echo
3028
3029         rm -rf $DIR/d1
3030 }
3031
3032 test_54_part2() {
3033         echo "==> rename vs getattr vs open vs getattr should not deadlock"
3034         mkdir -p $DIR/d1/d2/d3 || error "(1) mkdir failed"
3035
3036         do_facet mds1 $LCTL set_param fail_loc=$1
3037
3038         mv -T $DIR/d1/d2/d3 $DIR/d1/d3 &
3039         PID1=$!
3040         sleep 1
3041
3042         stat $DIR/d1/d2 &
3043         PID2=$!
3044         sleep 1
3045
3046         $MULTIOP $DIR2/d1/d2 Oc &
3047         PID3=$!
3048         sleep 1
3049
3050         stat $DIR/d1 || error "(2) stat failed"
3051
3052         wait $PID1 || error "(3) mv failed"
3053         wait $PID2 || error "(4) stat failed"
3054         wait $PID3 && error "(5) multiop failed"
3055         echo
3056         rm -rf $DIR/d1
3057 }
3058
3059 test_54() {
3060         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
3061         save_lustre_params client "llite.*.xattr_cache" > $p
3062         lctl set_param llite.*.xattr_cache 1 ||
3063                 { skip "xattr cache is not supported"; return 0; }
3064
3065 #define OBD_FAIL_MDS_RENAME              0x153
3066 #define OBD_FAIL_MDS_RENAME2             0x154
3067         test_54_part1 0x80000153 || error 10
3068         test_54_part1 0x80000154 || error 11
3069         test_54_part2 0x80000153 || error 12
3070         test_54_part2 0x80000154 || error 13
3071
3072         restore_lustre_params < $p
3073         rm -f $p
3074 }
3075 run_test 54 "rename locking"
3076
3077 test_55a() {
3078         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3079
3080 #define OBD_FAIL_MDS_RENAME4              0x156
3081         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3082
3083         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3084         PID1=$!
3085         sleep 1
3086
3087         rm -r $DIR2/d3
3088         wait $PID1 && error "(2) mv succeeded"
3089
3090         rm -rf $DIR/d1
3091 }
3092 run_test 55a "rename vs unlink target dir"
3093
3094 test_55b()
3095 {
3096         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3097
3098 #define OBD_FAIL_MDS_RENAME4             0x156
3099         do_facet mds1 $LCTL set_param fail_loc=0x80000156
3100
3101         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3102         PID1=$!
3103         sleep 1
3104
3105         rm -r $DIR2/d1
3106         wait $PID1 && error "(2) mv succeeded"
3107
3108         rm -rf $DIR/d3
3109 }
3110 run_test 55b "rename vs unlink source dir"
3111
3112 test_55c()
3113 {
3114         mkdir -p $DIR/d1/d2 $DIR/d3 || error "(1) mkdir failed"
3115
3116 #define OBD_FAIL_MDS_RENAME4              0x156
3117         do_facet mds1 $LCTL set_param fail_loc=0x156
3118
3119         mv -T $DIR/d1/d2 $DIR/d3/d2 &
3120         PID1=$!
3121         sleep 1
3122
3123         # while rename is sleeping, open and remove d3
3124         $MULTIOP $DIR2/d3 D_c &
3125         PID2=$!
3126         sleep 1
3127         rm -rf $DIR2/d3
3128         sleep 5
3129
3130         # while rename is sleeping 2nd time, close d3
3131         kill -USR1 $PID2
3132         wait $PID2 || error "(3) multiop failed"
3133
3134         wait $PID1 && error "(2) mv succeeded"
3135
3136         rm -rf $DIR/d1
3137 }
3138 run_test 55c "rename vs unlink orphan target dir"
3139
3140 test_55d()
3141 {
3142         touch $DIR/f1
3143
3144 #define OBD_FAIL_MDS_RENAME3              0x155
3145         do_facet mds1 $LCTL set_param fail_loc=0x155
3146         mv $DIR/f1 $DIR/$tdir &
3147         PID1=$!
3148         sleep 2
3149
3150         # while rename is sleeping, create $tdir, but as a directory
3151         mkdir -p $DIR2/$tdir || error "(1) mkdir failed"
3152
3153         # link in reverse locking order
3154         ln $DIR2/f1 $DIR2/$tdir/
3155
3156         wait $PID1 && error "(2) mv succeeded"
3157         rm -rf $DIR/f1
3158 }
3159 run_test 55d "rename file vs link"
3160
3161 test_60() {
3162         [ $MDS1_VERSION -lt $(version_code 2.3.0) ] &&
3163                 skip "MDS version must be >= 2.3.0"
3164
3165         # Create a file
3166         test_mkdir $DIR1/$tdir
3167         file1=$DIR1/$tdir/file
3168         file2=$DIR2/$tdir/file
3169
3170         echo orig > $file2 || error "Could not create $file2"
3171         version=$($LFS data_version $file1)
3172
3173         # Append data
3174         echo append >> $file2 || error "Could not append to $file2"
3175         version2=$($LFS data_version $file1)
3176         [ "$version" != "$version2" ] ||
3177             error "append did not change data version: $version"
3178
3179         # Overwrite data
3180         echo overwrite > $file2 || error "Could not overwrite $file2"
3181         version3=$($LFS data_version $file1)
3182         [ "$version2" != "$version3" ] ||
3183             error "overwrite did not change data version: $version2"
3184
3185         # Truncate before EOF
3186         $TRUNCATE $file2 3 || error "Could not truncate $file2"
3187         version4=$($LFS data_version $file1)
3188         [ "$version3" != "$version4" ] ||
3189             error "truncate did not change data version: $version3"
3190
3191         # Truncate after EOF
3192         $TRUNCATE $file2 123456 || error "Could not truncate $file2"
3193         version5=$($LFS data_version $file1)
3194         [ "$version4" != "$version5" ] ||
3195             error "truncate did not change data version: $version4"
3196
3197         # Chmod do not change version
3198         chmod 400 $file2 || error "Could not chmod 400 $file2"
3199         version6=$($LFS data_version $file1)
3200         [ "$version5" == "$version6" ] ||
3201             error "chmod should not change data version: $version5 != $version6"
3202
3203         # Chown do not change version
3204         chown $RUNAS_ID $file2 || error "Could not chown $RUNAS_ID $file2"
3205         version7=$($LFS data_version $file1)
3206         [ "$version5" == "$version7" ] ||
3207             error "chown should not change data version: $version5 != $version7"
3208 }
3209 run_test 60 "Verify data_version behaviour"
3210
3211 test_70a() {
3212         local test_dir=$tdir/test_dir
3213
3214         mkdir -p $DIR1/$tdir
3215         if [ $MDSCOUNT -ge 2 ]; then
3216                 local MDTIDX=1
3217                 $LFS mkdir -i $MDTIDX $DIR1/$test_dir ||
3218                         error "Create remote directory failed"
3219         else
3220                 mkdir -p $DIR1/$test_dir
3221         fi
3222         cd $DIR2/$test_dir || error "cd directory failed"
3223         rm -rf $DIR1/$test_dir || error "unlink directory failed"
3224
3225         cd $DIR2/$tdir || error "exit directory"
3226 }
3227 run_test 70a "cd directory && rm directory"
3228
3229 test_70b() { # LU-2781
3230         local i
3231         mkdir -p $DIR1/$tdir
3232
3233         touch $DIR1/$tdir/file
3234         for ((i = 0; i < 32; i++)); do
3235             $LFS rm_entry $DIR1/$tdir/non_existent_dir &>/dev/null
3236         done
3237         rm $DIR1/$tdir/file || error "cannot remove file after rm_entry"
3238
3239         touch $DIR1/$tdir/file
3240         $LFS mkdir -i0 $DIR1/$tdir/test_dir
3241         $LFS rm_entry $DIR1/$tdir/test_dir &>/dev/null
3242         rm -rf $DIR1/$tdir/test_dir ||
3243                 error "cannot remove directory after rm_entry"
3244         rm $DIR1/$tdir/file || error "cannot remove file after rm_entry"
3245 }
3246 run_test 70b "remove files after calling rm_entry"
3247
3248 test_71a() {
3249         [[ "$MDS1_VERSION" -lt $(version_code 2.1.6) ]] &&
3250                 skip "Need MDS version at least 2.1.6"
3251
3252         # Patch not applied to 2.2 and 2.3 branches
3253         [[ "$MDS1_VERSION" -ge $(version_code 2.2.0) ]] &&
3254         [[ "$MDS1_VERSION" -lt $(version_code 2.4.0) ]] &&
3255                 skip "Need MDS version earlier than 2.2.0 or at least 2.4.0"
3256
3257         checkfiemap --test ||
3258                 skip "checkfiemap not runnable: $?"
3259         # write data this way: hole - data - hole - data
3260         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=1 count=1
3261         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR1/$tfile) + 1)))" = \
3262                 "zfs" ] &&
3263                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return 0
3264         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=3 count=1
3265         GET_STAT="lctl get_param -n ldlm.services.ldlm_cbd.stats"
3266         stat $DIR2/$tfile
3267         local can1=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3268         echo $can1
3269         checkfiemap $DIR2/$tfile 81920 ||
3270                 error "data is not flushed from client"
3271         local can2=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3272         echo $can2
3273
3274         # common case of "create file, copy file" on a single node
3275         # should not flush data from ost
3276         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=1 count=1
3277         dd if=/dev/urandom of=$DIR1/$tfile bs=40K seek=3 count=1
3278         stat $DIR1/$tfile
3279         local can3=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3280         echo $can3
3281         checkfiemap $DIR1/$tfile 81920 ||
3282         error 4
3283         local can4=$($GET_STAT | awk '/ldlm_bl_callback/ {print $2}')
3284         echo $can2
3285         [ $can3 -eq $can4 ] || error $((can2-can1)) "cancel RPC occured."
3286 }
3287 run_test 71a "correct file map just after write operation is finished"
3288
3289 test_71b() {
3290         [[ "$MDS1_VERSION" -lt $(version_code 2.1.6) ]] &&
3291                 skip "Need MDS version at least 2.1.6"
3292
3293         # Patch not applied to 2.2 and 2.3 branches
3294         [[ "$MDS1_VERSION" -ge $(version_code 2.2.0) ]] &&
3295         [[ "$MDS1_VERSION" -lt $(version_code 2.4.0) ]] &&
3296                 skip "Need MDS version earlier than 2.2.0 or at least 2.4.0"
3297         [[ $OSTCOUNT -ge 2 ]] || skip "needs >= 2 OSTs"
3298
3299         checkfiemap --test ||
3300                 skip "error $?: checkfiemap failed"
3301
3302         mkdir -p $DIR1/$tdir
3303
3304         $LFS setstripe -c -1 $DIR1/$tdir || error "setstripe failed"
3305         dd if=/dev/urandom of=$DIR1/$tdir/$tfile bs=40K count=1
3306         [ "$(facet_fstype ost$(($($LFS getstripe -i $DIR1/$tdir/$tfile) + 1)))" = \
3307                 "zfs" ] &&
3308                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return 0
3309         checkfiemap $DIR1/$tdir/$tfile 40960 || error "checkfiemap failed"
3310 }
3311 run_test 71b "check fiemap support for stripecount > 1"
3312
3313 test_72() {
3314         local p="$TMP/sanityN-$TESTNAME.parameters"
3315         local tlink1
3316         local tlink2
3317         save_lustre_params client "llite.*.xattr_cache" > $p
3318         lctl set_param llite.*.xattr_cache 1 ||
3319                 { skip "xattr cache is not supported"; return 0; }
3320
3321         touch $DIR1/$tfile
3322         setfattr -n user.attr1 -v value1 $DIR1/$tfile ||
3323                 error "setfattr1 failed"
3324         getfattr -n user.attr1 $DIR2/$tfile | grep value1 ||
3325                 error "getfattr1 failed"
3326         setfattr -n user.attr1 -v value2 $DIR2/$tfile ||
3327                 error "setfattr2 failed"
3328         getfattr -n user.attr1 $DIR1/$tfile | grep value2 ||
3329                 error "getfattr2 failed"
3330
3331         # check that trusted.link is consistent
3332         tlink1=$(getfattr -n trusted.link $DIR1/$tfile | md5sum)
3333         ln $DIR2/$tfile $DIR2/$tfile-2 || error "failed to link"
3334         tlink2=$(getfattr -n trusted.link $DIR1/$tfile | md5sum)
3335         echo "$tlink1 $tlink2"
3336         [ "$tlink1" = "$tlink2" ] && error "trusted.link should have changed!"
3337
3338         rm -f $DIR2/$tfile
3339
3340         restore_lustre_params < $p
3341         rm -f $p
3342 }
3343 run_test 72 "getxattr/setxattr cache should be consistent between nodes"
3344
3345 test_73() {
3346         local p="$TMP/sanityN-$TESTNAME.parameters"
3347         save_lustre_params client "llite.*.xattr_cache" > $p
3348         lctl set_param llite.*.xattr_cache 1 ||
3349                 { skip "xattr cache is not supported"; return 0; }
3350
3351         touch $DIR1/$tfile
3352         setfattr -n user.attr1 -v value1 $DIR1/$tfile ||
3353                 error "setfattr1 failed"
3354         getfattr -n user.attr1 $DIR2/$tfile || error "getfattr1 failed"
3355         getfattr -n user.attr1 $DIR1/$tfile || error "getfattr2 failed"
3356         clear_stats llite.*.stats
3357         # PR lock should be cached by now on both clients
3358         getfattr -n user.attr1 $DIR1/$tfile || error "getfattr3 failed"
3359         # 2 hits for getfattr(0)+getfattr(size)
3360         [ $(calc_stats llite.*.stats getxattr_hits) -eq 2 ] ||
3361                 error "not cached in $DIR1"
3362         getfattr -n user.attr1 $DIR2/$tfile || error "getfattr4 failed"
3363         # 4 hits for more getfattr(0)+getfattr(size)
3364         [ $(calc_stats llite.*.stats getxattr_hits) -eq 4 ] ||
3365                 error "not cached in $DIR2"
3366         rm -f $DIR2/$tfile
3367
3368         restore_lustre_params < $p
3369         rm -f $p
3370 }
3371 run_test 73 "getxattr should not cause xattr lock cancellation"
3372
3373 test_74() {
3374         [ "$MDS1_VERSION" -lt $(version_code 2.4.93) ] &&
3375                 skip "Need MDS version at least 2.4.93"
3376
3377         dd if=/dev/zero of=$DIR1/$tfile-1 bs=1K count=1
3378         dd if=/dev/zero of=$DIR1/$tfile-2 bs=1K count=1
3379         flocks_test 4 $DIR1/$tfile-1 $DIR2/$tfile-2
3380 }
3381 run_test 74 "flock deadlock: different mounts =============="
3382
3383 # LU-3889
3384 test_75() {
3385         $LFS setstripe -c 2 -S 1m -i 0 $DIR1/$tfile
3386         dd if=/dev/zero of=$DIR1/$tfile bs=1M count=2
3387         cancel_lru_locks osc
3388
3389         dd of=$DIR1/$tfile if=/dev/zero bs=1M count=1 seek=1 conv=notrunc
3390         sync
3391
3392         # define OBD_FAIL_LDLM_ENQUEUE_HANG 0x31d
3393         $LCTL set_param fail_loc=0x31d
3394         stat -c %s $DIR1/$tfile &
3395         local pid=$!
3396         sleep 1
3397         kill -9 $pid
3398
3399         # For bad lock error handler we should ASSERT and got kernel panic here
3400         sleep 4
3401         $LCTL set_param fail_loc=0
3402 }
3403 run_test 75 "osc: upcall after unuse lock==================="
3404
3405 test_76() { #LU-946
3406         [[ "$MDS1_VERSION" -lt $(version_code 2.5.53) ]] &&
3407                 skip "Need MDS version at least 2.5.53"
3408
3409         remote_mds_nodsh && skip "remote MDS with nodsh"
3410         local fcount=$((MDSCOUNT * 256))
3411         declare -a fd_list
3412         declare -a fid_list
3413
3414         if remote_mds; then
3415                 nid=$($LCTL list_nids | sed  "s/\./\\\./g")
3416         else
3417                 nid="0@lo"
3418         fi
3419
3420         rm -rf $DIR/$tdir
3421         test_mkdir $DIR/$tdir
3422
3423         # drop all open locks and close any cached "open" files on the client
3424         cancel_lru_locks mdc
3425
3426         local open_fids_cmd="$LCTL get_param -n mdt.*.exports.'$nid'.open_files"
3427         local fid_list=($(do_nodes $(comma_list $(mdts_nodes)) $open_fids_cmd))
3428         local already=${#fid_list[@]}
3429         for (( i = 0; i < $already; i++ )) ; do
3430                 log "already open[$i]: $($LFS fid2path $DIR2 ${fid_list[i]})"
3431         done
3432
3433         echo -n "opening files: "
3434         ulimit -n $((fcount + 50))
3435         for ((i = 0; i < $fcount; i++)); do
3436                 touch $DIR/$tdir/f_$i
3437                 local fd=$(free_fd ${fd_list[i]})
3438                 local open_cmd="exec $fd<$DIR/$tdir/f_$i"
3439                 eval $open_cmd
3440
3441                 fd_list[i]=$fd
3442
3443                 (( $i % 32 == 0 )) && echo -n "."
3444         done
3445         echo
3446
3447         fid_list=($(do_nodes $(comma_list $(mdts_nodes)) $open_fids_cmd))
3448
3449         # Possible errors in openfiles FID list.
3450         # 1. Missing FIDs. Check 1
3451         # 2. Extra FIDs. Check 1
3452         # 3. Duplicated FID. Check 2
3453         # 4. Invalid FIDs. Check 2
3454         # 5. Valid FID, points to some other file. Check 3
3455
3456         # Check 1
3457         [ ${#fid_list[@]} -ne $((fcount + already)) ] &&
3458                 error "${#fid_list[@]} != $fcount (+$already old) open files"
3459
3460         echo -n "closing files: "
3461         for (( fd = 0, fid = 0; fd < $fcount; fd++, fid++ )) ; do
3462                 local close_cmd="exec ${fd_list[fd]}<&-"
3463                 eval $close_cmd
3464                 filename=$($LFS fid2path $DIR2 ${fid_list[fid]})
3465
3466                 while [[ ! "$filename" =~ "$DIR2/$tdir/f_" ]]; do
3467                         echo "skip old open file $filename"
3468                         ((fid++))
3469                         filename=$($LFS fid2path $DIR2 ${fid_list[fid]})
3470                 done
3471
3472                 # Check 2
3473                 rm --interactive=no $filename
3474                 [ $? -ne 0 ] &&
3475                         error "Nonexisting fid ${fid_list[fid]} listed."
3476                 (( $fd % 32 == 0 )) && echo -n "."
3477         done
3478         echo
3479
3480         # Check 3
3481         ls_op=$(ls $DIR2/$tdir | wc -l)
3482         [ $ls_op -ne 0 ] &&
3483                 error "Some openfiles are missing in lproc output"
3484
3485         rm -rf $DIR/$tdir
3486 }
3487 run_test 76 "Verify MDT open_files listing"
3488
3489 nrs_write_read() {
3490         local n=16
3491         local dir=$DIR/$tdir
3492         local myRUNAS="$1"
3493
3494         mkdir $dir || error "mkdir $dir failed"
3495         $LFS setstripe -c $OSTCOUNT $dir || error "setstripe to $dir failed"
3496         chmod 777 $dir
3497
3498         do_nodes $CLIENTS $myRUNAS \
3499                 dd if=/dev/zero of="$dir/nrs_r_\$HOSTNAME" bs=1M count=$n ||
3500                 error "dd at 0 on client failed (1)"
3501
3502         do_nodes $CLIENTS $myRUNAS \
3503                 "declare -a pids_w;
3504                 for ((i = 0; i < $n; i++)); do
3505                         dd if=/dev/zero of=$dir/nrs_w_\$HOSTNAME bs=1M \
3506 seek=\\\$i count=1 conv=notrunc &
3507                         pids_w[\\\$i]=\\\$!;
3508                 done;
3509                 rc_w=0;
3510                 for ((i = 0; i < $n; i++)); do
3511                         wait \\\${pids_w[\\\$i]};
3512                         newrc=\\\$?;
3513                         [ \\\$newrc -gt \\\$rc_w ] && rc_w=\\\$newrc;
3514                 done;
3515                 exit \\\$rc_w" &
3516         local pid_w=$!
3517         do_nodes $CLIENTS sync;
3518         cancel_lru_locks osc
3519
3520         do_nodes $CLIENTS $myRUNAS \
3521                 "declare -a pids_r;
3522                 for ((i = 0; i < $n; i++)); do
3523                         dd if=$dir/nrs_r_\$HOSTNAME bs=1M of=/dev/null \
3524 seek=\\\$i count=1 &
3525                         pids_r[\\\$i]=\\\$!;
3526                 done;
3527                 rc_r=0;
3528                 for ((i = 0; i < $n; i++)); do
3529                         wait \\\${pids_r[\\\$i]};
3530                         newrc=\\\$?;
3531                         [ \\\$newrc -gt \\\$rc_r ] && rc_r=\\\$newrc;
3532                 done;
3533                 exit \\\$rc_r" &
3534         local pid_r=$!
3535         cancel_lru_locks osc
3536
3537         wait $pid_w || error "dd (write) failed (2)"
3538         wait $pid_r || error "dd (read) failed (3)"
3539         rm -rvf $dir || error "rm -rf $dir failed"
3540 }
3541
3542 test_77a() { #LU-3266
3543         local rc
3544
3545         oss=$(comma_list $(osts_nodes))
3546         do_nodes $oss lctl set_param ost.OSS.*.nrs_policies="fifo" ||
3547                 rc=$?
3548         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3549         [[ $rc -ne 0 ]] && error "failed to set fifo policy"
3550         nrs_write_read
3551
3552         return 0
3553 }
3554 run_test 77a "check FIFO NRS policy"
3555
3556 test_77b() { #LU-3266
3557         local rc
3558
3559         oss=$(comma_list $(osts_nodes))
3560
3561         do_nodes $oss lctl set_param ost.OSS.*.nrs_policies="crrn" \
3562                 ost.OSS.*.nrs_crrn_quantum=1 || rc=$?
3563         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3564         [[ $rc -ne 0 ]] && error "failed to set crrn_quantum to 1"
3565
3566         echo "policy: crr-n, crrn_quantum 1"
3567         nrs_write_read
3568
3569         do_nodes $oss lctl set_param \
3570                 ost.OSS.*.nrs_crrn_quantum=64 || rc=$?
3571         [[ $rc -ne 0 ]] && error "failed to set crrn_quantum to 64"
3572
3573         echo "policy: crr-n, crrn_quantum 64"
3574         nrs_write_read
3575
3576         # cleanup
3577         do_nodes $oss lctl set_param \
3578                 ost.OSS.ost_io.nrs_policies="fifo" || rc=$?
3579         [[ $rc -ne 0 ]] && error "failed to set fifo policy"
3580         return 0
3581 }
3582 run_test 77b "check CRR-N NRS policy"
3583
3584 orr_trr() {
3585         local policy=$1
3586
3587         oss=$(comma_list $(osts_nodes))
3588
3589         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies=$policy \
3590                 ost.OSS.*.nrs_"$policy"_quantum=1 \
3591                 ost.OSS.*.nrs_"$policy"_offset_type="physical" \
3592                 ost.OSS.*.nrs_"$policy"_supported="reads" || return $?
3593
3594         echo "policy: $policy, ${policy}_quantum 1, ${policy}_offset_type " \
3595                 "physical, ${policy}_supported reads"
3596         nrs_write_read
3597
3598         do_nodes $oss lctl set_param \
3599                 ost.OSS.*.nrs_${policy}_supported="writes" \
3600                 ost.OSS.*.nrs_${policy}_quantum=64 || return $?
3601
3602         echo "policy: $policy, ${policy}_quantum 64, ${policy}_offset_type " \
3603                 "physical, ${policy}_supported writes"
3604         nrs_write_read
3605
3606         do_nodes $oss lctl set_param \
3607                 ost.OSS.*.nrs_${policy}_supported="reads_and_writes" \
3608                 ost.OSS.*.nrs_${policy}_offset_type="logical" || return $?
3609         echo "policy: $policy, ${policy}_quantum 64, ${policy}_offset_type " \
3610                 "logical, ${policy}_supported reads_and_writes"
3611         nrs_write_read
3612
3613         # cleanup
3614         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo" ||
3615                 return $?
3616         return 0
3617 }
3618
3619 test_77c() { #LU-3266
3620         local rc
3621         orr_trr "orr" || rc=$?
3622         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3623         [[ $rc -ne 0 ]] && error "orr_trr failed rc:$rc"
3624         return 0
3625 }
3626 run_test 77c "check ORR NRS policy"
3627
3628 test_77d() { #LU-3266
3629         local rc
3630         orr_trr "trr" || rc=$?
3631         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
3632         [[ $rc -ne 0 ]] && error "orr_trr failed rc:$rc"
3633         return 0
3634 }
3635 run_test 77d "check TRR nrs policy"
3636
3637 tbf_rule_operate()
3638 {
3639         local facet=$1
3640         shift 1
3641
3642         do_facet $facet lctl set_param \
3643                 ost.OSS.ost_io.nrs_tbf_rule="$*"
3644         [ $? -ne 0 ] &&
3645                 error "failed to run operate '$*' on TBF rules"
3646 }
3647
3648 cleanup_tbf_verify()
3649 {
3650         local rc=0
3651         trap 0
3652         echo "cleanup_tbf $DIR/$tdir"
3653         rm -rf $DIR/$tdir
3654         rc=$?
3655         wait_delete_completed
3656         return $rc
3657 }
3658
3659 tbf_verify() {
3660         local dir=$DIR/$tdir
3661         local client1=${CLIENT1:-$(hostname)}
3662         local myRUNAS="$3"
3663
3664         local np=$(check_cpt_number ost1)
3665         [ $np -gt 0 ] || error "CPU partitions should not be $np."
3666         echo "cpu_npartitions on ost1 is $np"
3667
3668         mkdir $dir || error "mkdir $dir failed"
3669         $LFS setstripe -c 1 -i 0 $dir || error "setstripe to $dir failed"
3670         chmod 777 $dir
3671
3672         trap cleanup_tbf_verify EXIT
3673         echo "Limited write rate: $1, read rate: $2"
3674         echo "Verify the write rate is under TBF control"
3675         local start=$SECONDS
3676         do_node $client1 $myRUNAS dd if=/dev/zero of=$dir/tbf \
3677                 bs=1M count=100 oflag=direct 2>&1
3678         local runtime=$((SECONDS - start + 1))
3679         local rate=$(bc <<< "scale=6; 100 / $runtime")
3680         echo "Write runtime is $runtime s, speed is $rate IOPS"
3681
3682         # verify the write rate does not exceed TBF rate limit
3683         [ $(bc <<< "$rate < 1.1 * $np * $1") -eq 1 ] ||
3684                 error "The write rate ($rate) exceeds 110% of rate limit ($1 * $np)"
3685
3686         cancel_lru_locks osc
3687
3688         echo "Verify the read rate is under TBF control"
3689         start=$SECONDS
3690         do_node $client1 $myRUNAS dd if=$dir/tbf of=/dev/null \
3691                 bs=1M count=100 iflag=direct 2>&1
3692         runtime=$((SECONDS - start + 1))
3693         rate=$(bc <<< "scale=6; 100 / $runtime")
3694         echo "Read runtime is $runtime s, speed is $rate IOPS"
3695
3696         # verify the read rate does not exceed TBF rate limit
3697         [ $(bc <<< "$rate < 1.1 * $np * $2") -eq 1 ] ||
3698                 error "The read rate ($rate) exceeds 110% of rate limit ($2 * $np)"
3699
3700         cancel_lru_locks osc
3701         cleanup_tbf_verify || error "rm -rf $dir failed"
3702 }
3703
3704 test_77e() {
3705         local rc
3706
3707         oss=$(comma_list $(osts_nodes))
3708
3709         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid" ||
3710                 rc=$?
3711         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3712         [[ $rc -ne 0 ]] && error "failed to set TBF NID policy"
3713
3714         local idis
3715         local rateis
3716         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3717                 idis="nid="
3718                 rateis="rate="
3719         fi
3720
3721         # Only operate rules on ost1 since OSTs might run on the same OSS
3722         # Add some rules
3723         tbf_rule_operate ost1 "start\ localhost\ ${idis}{0@lo}\ ${rateis}1000"
3724         local address=$(comma_list "$(host_nids_address $CLIENTS $NETTYPE)")
3725         local client_nids=$(nids_list $address "\\")
3726         tbf_rule_operate ost1 "start\ clients\ ${idis}{$client_nids}\ ${rateis}100"
3727         tbf_rule_operate ost1 "start\ others\ ${idis}{*.*.*.*@$NETTYPE}\ ${rateis}50"
3728         nrs_write_read
3729
3730         # Change the rules
3731         tbf_rule_operate ost1 "change\ localhost\ ${rateis}1001"
3732         tbf_rule_operate ost1 "change\ clients\ ${rateis}101"
3733         tbf_rule_operate ost1 "change\ others\ ${rateis}51"
3734         nrs_write_read
3735
3736         # Stop the rules
3737         tbf_rule_operate ost1 "stop\ localhost"
3738         tbf_rule_operate ost1 "stop\ clients"
3739         tbf_rule_operate ost1 "stop\ others"
3740         nrs_write_read
3741
3742         # Cleanup the TBF policy
3743         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3744         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3745         nrs_write_read
3746         return 0
3747 }
3748 run_test 77e "check TBF NID nrs policy"
3749
3750 test_77f() {
3751         local rc
3752
3753         oss=$(comma_list $(osts_nodes))
3754
3755         do_nodes $oss $LCTL set_param \
3756                 ost.OSS.ost_io.nrs_policies="tbf\ jobid" || rc=$?
3757         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3758         [[ $rc -ne 0 ]] && error "failed to set TBF JOBID policy"
3759
3760         # Configure jobid_var
3761         local saved_jobid_var=$($LCTL get_param -n jobid_var)
3762         rc=$?
3763         [[ $rc -eq 3 ]] && skip "jobid_var not found" && return
3764         [[ $rc -ne 0 ]] && error "failed to get param jobid_var"
3765         if [ $saved_jobid_var != procname_uid ]; then
3766                 set_persistent_param_and_check client \
3767                         "jobid_var" "$FSNAME.sys.jobid_var" procname_uid
3768         fi
3769
3770         local idis
3771         local rateis
3772         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3773                 idis="jobid="
3774                 rateis="rate="
3775         fi
3776
3777         # Only operate rules on ost1 since OSTs might run on the same OSS
3778         # Add some rules
3779         tbf_rule_operate ost1 "start\ runas\ ${idis}{iozone.$RUNAS_ID\ dd.$RUNAS_ID\ tiotest.$RUNAS_ID}\ ${rateis}1000"
3780         tbf_rule_operate ost1 "start\ iozone_runas\ ${idis}{iozone.$RUNAS_ID}\ ${rateis}100"
3781         tbf_rule_operate ost1 "start\ dd_runas\ ${idis}{dd.$RUNAS_ID}\ ${rateis}50"
3782         nrs_write_read "$RUNAS"
3783
3784         # Change the rules
3785         tbf_rule_operate ost1 "change\ runas\ ${rateis}1001"
3786         tbf_rule_operate ost1 "change\ iozone_runas\ ${rateis}101"
3787         tbf_rule_operate ost1 "change\ dd_runas\ ${rateis}51"
3788         nrs_write_read "$RUNAS"
3789
3790         # Stop the rules
3791         tbf_rule_operate ost1 "stop\ runas"
3792         tbf_rule_operate ost1 "stop\ iozone_runas"
3793         tbf_rule_operate ost1 "stop\ dd_runas"
3794         nrs_write_read "$RUNAS"
3795
3796         # Cleanup the TBF policy
3797         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3798         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3799         nrs_write_read "$RUNAS"
3800
3801         local current_jobid_var=$($LCTL get_param -n jobid_var)
3802         [[ $? -ne 0 ]] && error "failed to get param jobid_var"
3803         if [ $saved_jobid_var != $current_jobid_var ]; then
3804                 set_persistent_param_and_check client \
3805                         "jobid_var" "$FSNAME.sys.jobid_var" $saved_jobid_var
3806         fi
3807         return 0
3808 }
3809 run_test 77f "check TBF JobID nrs policy"
3810
3811 test_77g() {
3812         local rc=0
3813
3814         oss=$(comma_list $(osts_nodes))
3815
3816         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid" ||
3817                 rc=$?
3818         [[ $rc -eq 3 ]] && skip "no NRS TBF exists" && return
3819         [[ $rc -ne 0 ]] && error "failed to set TBF NID policy"
3820
3821         do_nodes $oss lctl set_param \
3822                 ost.OSS.ost_io.nrs_policies="tbf\ jobid" || rc=$?
3823         [[ $rc -ne 0 ]] && error "failed to set TBF JOBID policy"
3824
3825         local idis
3826         local rateis
3827         if [ "$OST1_VERSION" -ge $(version_code 2.8.54) ]; then
3828                 idis="jobid="
3829                 rateis="rate="
3830         fi
3831
3832         # Add a rule that only valid for Jobid TBF. If direct change between
3833         # TBF types is not supported, this operation will fail.
3834         tbf_rule_operate ost1 "start\ dd_runas\ ${idis}{dd.$RUNAS_ID}\ ${rateis}50"
3835
3836         # Cleanup the TBF policy
3837         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
3838         [ $? -ne 0 ] && error "failed to set policy back to fifo"
3839         return 0
3840 }
3841 run_test 77g "Change TBF type directly"
3842
3843 test_77h() {
3844         [ "$OST1_VERSION" -ge $(version_code 2.8.55) ] ||
3845                 skip "Need OST version at least 2.8.55"
3846
3847         local old_policy=$(do_facet ost1 \
3848                 lctl get_param ost.OSS.ost_io.nrs_policies)
3849         local new_policy
3850
3851         do_facet ost1 lctl set_param \
3852                 ost.OSS.ost_io.nrs_policies="abc"
3853         [ $? -eq 0 ] && error "should return error"
3854
3855         do_facet ost1 lctl set_param \
3856                 ost.OSS.ost_io.nrs_policies="tbf\ abc"
3857         [ $? -eq 0 ] && error "should return error"
3858
3859         do_facet ost1 lctl set_param \
3860                 ost.OSS.ost_io.nrs_policies="tbf\ reg\ abc"
3861         [ $? -eq 0 ] && error "should return error"
3862
3863         do_facet ost1 lctl set_param \
3864                 ost.OSS.ost_io.nrs_policies="tbf\ abc\ efg"
3865         [ $? -eq 0 ] && error "should return error"
3866
3867         new_policy=$(do_facet ost1 lctl get_param ost.OSS.ost_io.nrs_policies)
3868         [ $? -eq 0 ] || error "shouldn't LBUG"
3869
3870         [ "$old_policy" = "$new_policy" ] || error "NRS policy should be same"
3871
3872         return 0
3873 }
3874 run_test 77h "Wrong policy name should report error, not LBUG"
3875
3876 tbf_rule_check()
3877 {
3878         local facet=$1
3879         local expected=$2
3880         local error_message=$3
3881         local rule_number=0
3882         for rule in $expected; do
3883                 rule_number=$((rule_number + 1))
3884         done
3885         local stop_line=$(($rule_number + 3))
3886         local awk_command="awk 'NR >= 4 && NR <= $stop_line {print \$1}'"
3887
3888         local output=$(do_facet $facet lctl get_param \
3889                 ost.OSS.ost_io.nrs_tbf_rule |
3890                 eval $awk_command |
3891                 tr "\n" " " |
3892                 sed 's/[ ]*$//')
3893         if [ "$output" != "$expected" ]; then
3894                 error "$error_message, expected '$expected', got '$output'"
3895         fi
3896 }
3897
3898 test_77i() {
3899         [ "$OST1_VERSION" -ge $(version_code 2.8.55) ] ||
3900                 skip "Need OST version at least 2.8.55"
3901
3902         for i in $(seq 1 $OSTCOUNT)
3903         do
3904                 do_facet ost"$i" lctl set_param \
3905                         ost.OSS.ost_io.nrs_policies="tbf\ jobid"
3906                 [ $? -ne 0 ] &&
3907                         error "failed to set TBF policy"
3908         done
3909
3910         tbf_rule_check ost1 "default" "error before inserting any rule"
3911
3912         tbf_rule_operate ost1 "start\ before\ jobid={jobid}\ rate=1000"
3913         tbf_rule_check ost1 "before default" \
3914                 "error when inserting rule 'before'"
3915
3916         tbf_rule_operate ost1 "start\ after\ jobid={jobid}\ rate=1000\ rank=default"
3917         tbf_rule_check ost1 "before after default" \
3918                 "error when inserting rule 'after'"
3919
3920         tbf_rule_operate ost1 "start\ target\ jobid={jobid}\ rate=1000\ rank=after"
3921         tbf_rule_check ost1 "before target after default" \
3922                 "error when inserting rule 'target'"
3923
3924         echo "Move before itself"
3925         tbf_rule_operate ost1 "change\ target\ rank=target"
3926         tbf_rule_check ost1 "before target after default" \
3927                 "error when moving before itself"
3928
3929         echo "Move to higher rank"
3930         tbf_rule_operate ost1 "change\ target\ rank=before"
3931         tbf_rule_check ost1 "target before after default" \
3932                 "error when moving to higher rank"
3933
3934         echo "Move to lower rank"
3935         tbf_rule_operate ost1 "change\ target\ rank=after"
3936         tbf_rule_check ost1 "before target after default" \
3937                 "error when moving to lower rank"
3938
3939         echo "Move before default"
3940         tbf_rule_operate ost1 "change\ target\ rank=default"
3941         tbf_rule_check ost1 "before after target default" \
3942                 error "error when moving before default"
3943
3944         # Cleanup the TBF policy
3945         do_nodes $(comma_list $(osts_nodes)) \
3946                 $LCTL set_param ost.OSS.ost_io.nrs_policies=fifo
3947         return 0
3948 }
3949 run_test 77i "Change rank of TBF rule"
3950
3951 test_77j() {
3952         local idis
3953         local rateis
3954
3955         [ "$OST1_VERSION" -ge $(version_code 2.9.53) ] ||
3956                 skip "Need OST version at least 2.9.53"
3957         if [ "$OST1_VERSION" -ge $(version_code 2.8.60) ]; then
3958                 idis="opcode="
3959                 rateis="rate="
3960         fi
3961
3962         do_nodes $(comma_list $(osts_nodes)) \
3963                 lctl set_param jobid_var=procname_uid \
3964                         ost.OSS.ost_io.nrs_policies="tbf\ opcode" \
3965                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_r\ ${idis}{ost_read}\ ${rateis}5" \
3966                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_w\ ${idis}{ost_write}\ ${rateis}20"
3967         [ $? -ne 0 ] && error "failed to set TBF OPCode policy"
3968
3969         nrs_write_read
3970         tbf_verify 20 5
3971
3972         do_nodes $(comma_list $(osts_nodes)) \
3973                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_r" \
3974                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_w" \
3975                         ost.OSS.ost_io.nrs_policies="fifo"
3976
3977         # sleep 3 seconds to wait the tbf policy stop completely,
3978         # or the next test case is possible get -EAGAIN when
3979         # setting the tbf policy
3980         sleep 3
3981 }
3982 run_test 77j "check TBF-OPCode NRS policy"
3983
3984 test_id() {
3985         local idstr="${1}id"
3986         local policy="${idstr}={$2}"
3987         local rate="rate=$3"
3988
3989         do_nodes $(comma_list $(osts_nodes)) \
3990                 lctl set_param jobid_var=procname_uid \
3991                         ost.OSS.ost_io.nrs_policies="tbf\ ${idstr}" \
3992                         ost.OSS.ost_io.nrs_tbf_rule="start\ ost_${idstr}\ ${policy}\ ${rate}"
3993         [ $? -ne 0 ] && error "failed to set tbf ${idstr} policy"
3994
3995         nrs_write_read "runas $4"
3996         tbf_verify $3 $3 "runas $4"
3997
3998         do_nodes $(comma_list $(osts_nodes)) \
3999                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ost_${idstr}" \
4000                         ost.OSS.ost_io.nrs_policies="fifo"
4001
4002         # sleep 3 seconds to wait the tbf policy stop completely,
4003         # or the next test case is possible get -eagain when
4004         # setting the tbf policy
4005         sleep 3
4006 }
4007
4008 test_77ja(){
4009         if [ "$OST1_VERSION" -lt $(version_code 2.11.50) ]; then
4010                 skip "Need OST version at least 2.11.50"
4011         fi
4012
4013         test_id "u" "500" "5" "-u 500"
4014         test_id "g" "500" "5" "-u 500 -g 500"
4015 }
4016 run_test 77ja "check TBF-UID/GID NRS policy"
4017
4018 cleanup_77k()
4019 {
4020         local rule_lists=$1
4021         local old_nrs=$2
4022
4023         trap 0
4024         for rule in $rule_lists; do
4025                 do_nodes $(comma_list $(osts_nodes)) \
4026                         lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ $rule"
4027         done
4028
4029         do_nodes $(comma_list $(osts_nodes)) \
4030                 lctl set_param ost.OSS.ost_io.nrs_policies="$old_nrs"
4031
4032         sleep 3
4033 }
4034
4035 test_77k() {
4036         [[ "$OST1_VERSION" -ge $(version_code 2.9.53) ]] ||
4037                 skip "Need OST version at least 2.9.53"
4038
4039         do_nodes $(comma_list $(osts_nodes)) \
4040                 lctl set_param ost.OSS.ost_io.nrs_policies="tbf" \
4041                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_w\ jobid={dd.$RUNAS_ID}\&opcode={ost_write}\ rate=20" \
4042                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_r\ jobid={dd.$RUNAS_ID}\&opcode={ost_read}\ rate=10"
4043
4044         nrs_write_read "$RUNAS"
4045         tbf_verify 20 10 "$RUNAS"
4046
4047         local address=$(comma_list "$(host_nids_address $CLIENTS $NETTYPE)")
4048         local client_nids=$(nids_list $address "\\")
4049         do_nodes $(comma_list $(osts_nodes)) \
4050                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_w" \
4051                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_r" \
4052                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_w\ nid={0@lo\ $client_nids}\&opcode={ost_write}\ rate=20" \
4053                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_r\ nid={0@lo\ $client_nids}\&opcode={ost_read}\ rate=10"
4054
4055         nrs_write_read
4056         tbf_verify 20 10
4057
4058         do_nodes $(comma_list $(osts_nodes)) \
4059                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_w" \
4060                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_r" \
4061                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext\ nid={0@lo\ $client_nids}\&jobid={dd.$RUNAS_ID}\ rate=20"
4062
4063         nrs_write_read "$RUNAS"
4064         tbf_verify 20 20 "$RUNAS"
4065
4066         do_nodes $(comma_list $(osts_nodes)) \
4067                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext" \
4068                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_a\ jobid={dd.$RUNAS_ID},opcode={ost_write}\ rate=20" \
4069                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_b\ jobid={dd.$RUNAS_ID},opcode={ost_read}\ rate=10"
4070
4071         nrs_write_read "$RUNAS"
4072         # with parameter "RUNAS", it will match the latest rule
4073         # "ext_b" first, so the limited write rate is 10.
4074         tbf_verify 10 10 "$RUNAS"
4075         tbf_verify 20 10
4076
4077         trap "cleanup_77k \"ext_a ext_b\" \"fifo\"" EXIT
4078
4079         [[ "$OST1_VERSION" -ge $(version_code 2.10.58) ]] ||
4080                 skip "Need OST version at least 2.10.58"
4081
4082         do_nodes $(comma_list $(osts_nodes)) \
4083                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_a" \
4084                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_b" \
4085                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_ug\ uid={500}\&gid={1000}\ rate=5"
4086         nrs_write_read "runas -u 500 -g 1000"
4087         tbf_verify 5 5 "runas -u 500 -g 1000"
4088
4089         do_nodes $(comma_list $(osts_nodes)) \
4090                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_ug" \
4091                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_uw\ uid={500}\&opcode={ost_write}\ rate=20" \
4092                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_ur\ uid={500}\&opcode={ost_read}\ rate=10"
4093
4094         nrs_write_read "runas -u 500"
4095         tbf_verify 20 10 "runas -u 500"
4096
4097         do_nodes $(comma_list $(osts_nodes)) \
4098                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_uw" \
4099                         ost.OSS.ost_io.nrs_tbf_rule="stop\ ext_ur" \
4100                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_a\ uid={500},opcode={ost_write}\ rate=20" \
4101                         ost.OSS.ost_io.nrs_tbf_rule="start\ ext_b\ uid={500},opcode={ost_read}\ rate=10"
4102         nrs_write_read "runas -u 500"
4103         tbf_verify 10 10 "runas -u 500"
4104         tbf_verify 20 10 "runas -u 500"
4105         cleanup_77k "ext_a ext_b" "fifo"
4106 }
4107 run_test 77k "check TBF policy with NID/JobID/OPCode expression"
4108
4109 test_77l() {
4110         [[ "$OST1_VERSION" -ge $(version_code 2.10.56) ]] ||
4111                 skip "Need OST version at least 2.10.56"
4112
4113         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ nid"
4114         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="tbf"
4115
4116         local output=$(do_facet ost1 lctl get_param \
4117                         ost.OSS.ost_io.nrs_policies | \
4118                         awk '/name: tbf/ {print;exit}' | \
4119                         awk -F ': ' '{print $2}')
4120
4121         if [ "$output" != "tbf" ]; then
4122                 error "The generic TBF output is '$output', not 'tbf'"
4123         fi
4124
4125         do_facet ost1 lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4126 }
4127 run_test 77l "check the output of NRS policies for generic TBF"
4128
4129 test_77m() {
4130         if [ "$OST1_VERSION" -lt $(version_code 2.9.54) ]; then
4131                 skip "Need OST version at least 2.9.54"
4132         fi
4133
4134         local dir=$DIR/$tdir
4135
4136         mkdir $dir || error "mkdir $dir failed"
4137         $LFS setstripe -c $OSTCOUNT $dir || error "setstripe to $dir failed"
4138         chmod 777 $dir
4139
4140         local nodes=$(comma_list $(osts_nodes))
4141         do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies=delay \
4142                                        ost.OSS.ost_io.nrs_delay_min=4 \
4143                                        ost.OSS.ost_io.nrs_delay_max=4 \
4144                                        ost.OSS.ost_io.nrs_delay_pct=100
4145         [ $? -ne 0 ] && error "Failed to set delay policy"
4146
4147         local start=$SECONDS
4148         do_nodes "${SINGLECLIENT:-$HOSTNAME}" "$RUNAS" \
4149                  dd if=/dev/zero of="$dir/nrs_delay_$HOSTNAME" bs=1M count=1 \
4150                    oflag=direct conv=fdatasync ||
4151                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4152                   error "dd on client failed (1)"; }
4153         local elapsed=$((SECONDS - start))
4154
4155         # NRS delay doesn't do sub-second timing, so a request enqueued at
4156         # 0.9 seconds can be dequeued at 4.0
4157         [ $elapsed -lt 3 ] &&
4158                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4159                   error "Single 1M write should take at least 3 seconds"; }
4160
4161         start=$SECONDS
4162         do_nodes "${SINGLECLIENT:-$HOSTNAME}" "$RUNAS" \
4163                  dd if=/dev/zero of="$dir/nrs_delay_$HOSTNAME" bs=1M count=10 \
4164                    oflag=direct conv=fdatasync ||
4165                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4166                   error "dd on client failed (2)"; }
4167         elapsed=$((SECONDS - start))
4168
4169         [ $elapsed -lt 30 ] &&
4170                 { do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo";
4171                   error "Ten 1M writes should take at least 30 seconds"; }
4172
4173         do_nodes $nodes lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4174         [ $? -ne 0 ] && error "failed to set policy back to fifo"
4175
4176         return 0
4177 }
4178 run_test 77m "check NRS Delay slows write RPC processing"
4179
4180 test_77n() { #LU-10802
4181         if [ "$OST1_VERSION" -lt $(version_code 2.10.58) ]; then
4182                 skip "Need OST version at least 2.10.58"
4183         fi
4184
4185         # Configure jobid_var
4186         local saved_jobid_var=$($LCTL get_param -n jobid_var)
4187         if [ $saved_jobid_var != procname_uid ]; then
4188                 set_persistent_param_and_check client \
4189                         "jobid_var" "$FSNAME.sys.jobid_var" procname_uid
4190         fi
4191
4192         do_nodes $(comma_list $(osts_nodes)) \
4193                 lctl set_param ost.OSS.ost_io.nrs_policies="tbf\ jobid" \
4194                         ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4195                         ost.OSS.ost_io.nrs_tbf_rule="start\ dd_runas\ jobid={*.$RUNAS_ID}\ rate=20"
4196
4197         nrs_write_read
4198         tbf_verify 20 20 "$RUNAS"
4199
4200         do_nodes $(comma_list $(osts_nodes)) \
4201                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4202                         ost.OSS.ost_io.nrs_tbf_rule="start\ dd_runas\ jobid={dd.*}\ rate=20"
4203
4204         nrs_write_read
4205         tbf_verify 20 20
4206
4207         do_nodes $(comma_list $(osts_nodes)) \
4208                 lctl set_param ost.OSS.ost_io.nrs_tbf_rule="stop\ dd_runas" \
4209                         ost.OSS.ost_io.nrs_policies="fifo"
4210
4211         sleep 3
4212
4213         local current_jobid_var=$($LCTL get_param -n jobid_var)
4214         if [ $saved_jobid_var != $current_jobid_var ]; then
4215                 set_persistent_param_and_check client \
4216                         "jobid_var" "$FSNAME.sys.jobid_var" $saved_jobid_var
4217         fi
4218 }
4219 run_test 77n "check wildcard support for TBF JobID NRS policy"
4220
4221 test_78() { #LU-6673
4222         local rc
4223
4224         oss=$(comma_list $(osts_nodes))
4225         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="orr" &
4226         do_nodes $oss lctl set_param ost.OSS.*.nrs_orr_quantum=1
4227         rc=$?
4228         [[ $rc -eq 3 ]] && skip "no NRS exists" && return
4229         # Valid return codes are:
4230         # 0: Tuning succeeded
4231         # ENODEV: Policy is still stopped
4232         # EAGAIN: Policy is being initialized
4233         [ $rc -eq 0 -o $rc -eq 19 -o $rc -eq 11 ] ||
4234                 error "Expected set_param to return 0|ENODEV|EAGAIN"
4235
4236         # Cleanup the ORR policy
4237         do_nodes $oss lctl set_param ost.OSS.ost_io.nrs_policies="fifo"
4238         [ $? -ne 0 ] && error "failed to set policy back to fifo"
4239         return 0
4240 }
4241 run_test 78 "Enable policy and specify tunings right away"
4242
4243 test_79() {
4244         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4245         test_mkdir $DIR/$tdir
4246
4247         # Prevent interference from layout intent RPCs due to
4248         # asynchronous writeback. These will be tested in 130c below.
4249         do_nodes ${CLIENTS:-$HOSTNAME} sync
4250
4251         setfattr -n trusted.name1 -v value1 $DIR/$tdir ||
4252                 error "setfattr -n trusted.name1=value1 $DIR/$tdir failed"
4253
4254 #define OBD_FAIL_MDS_INTENT_DELAY               0x160
4255         local mdtidx=$($LFS getstripe -m $DIR/$tdir)
4256         local facet=mds$((mdtidx + 1))
4257         stat $DIR/$tdir
4258         set_nodes_failloc $(facet_active_host $facet) 0x80000160
4259         getfattr -n trusted.name1 $DIR/$tdir 2> /dev/null  &
4260         local pid=$!
4261         sleep 2
4262
4263 #define OBD_FAIL_MDS_GETXATTR_PACK       0x131
4264         set_nodes_failloc $(facet_active_host $facet) 0x80000131
4265
4266         wait $pid
4267         return 0
4268 }
4269 run_test 79 "xattr: intent error"
4270
4271 test_80a() {
4272         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4273         local MDTIDX=1
4274         local mdt_index
4275         local i
4276         local file
4277         local pid
4278
4279         mkdir -p $DIR1/$tdir/dir
4280         createmany -o $DIR1/$tdir/dir/f 10 ||
4281                 error "create files under remote dir failed $i"
4282
4283         cp /etc/passwd $DIR1/$tdir/$tfile
4284
4285         #migrate open file should fails
4286         multiop_bg_pause $DIR2/$tdir/$tfile O_c || error "open $file failed"
4287         pid=$!
4288         # give multiop a chance to open
4289         sleep 1
4290
4291         $LFS migrate -m $MDTIDX $DIR1/$tdir &&
4292                 error "migrate open files should failed with open files"
4293
4294         kill -USR1 $pid
4295
4296         $LFS migrate -m $MDTIDX $DIR1/$tdir ||
4297                         error "migrate remote dir error"
4298
4299         echo "Finish migration, then checking.."
4300         for file in $(find $DIR1/$tdir); do
4301                 mdt_index=$($LFS getstripe -m $file)
4302                 [ $mdt_index == $MDTIDX ] ||
4303                         error "$file is not on MDT${MDTIDX}"
4304         done
4305
4306         diff /etc/passwd $DIR1/$tdir/$tfile ||
4307                 error "file different after migration"
4308
4309         rm -rf $DIR1/$tdir || error "rm dir failed after migration"
4310 }
4311 run_test 80a "migrate directory when some children is being opened"
4312
4313 cleanup_80b() {
4314         trap 0
4315         kill -9 $migrate_pid
4316 }
4317
4318 test_80b() {
4319         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4320         local migrate_dir1=$DIR1/$tdir/migrate_dir
4321         local migrate_dir2=$DIR2/$tdir/migrate_dir
4322         local migrate_run=$LUSTRE/tests/migrate.sh
4323         local start_time
4324         local end_time
4325         local show_time=1
4326         local mdt_idx
4327         local rc=0
4328         local rc1=0
4329
4330         trap cleanup_80b EXIT
4331         #prepare migrate directory
4332         mkdir -p $migrate_dir1
4333         for F in {1,2,3,4,5}; do
4334                 echo "$F$F$F$F$F" > $migrate_dir1/file$F
4335                 echo "$F$F$F$F$F" > $DIR/$tdir/file$F
4336         done
4337
4338         #migrate the directories among MDTs
4339         (
4340                 while true; do
4341                         mdt_idx=$((RANDOM % MDSCOUNT))
4342                         $LFS migrate -m $mdt_idx $migrate_dir1 &>/dev/null ||
4343                                 rc=$?
4344                         [ $rc -ne 0 -o $rc -ne 16 ] || break
4345                 done
4346         ) &
4347         migrate_pid=$!
4348
4349         echo "start migration thread $migrate_pid"
4350         #Access the files at the same time
4351         start_time=$(date +%s)
4352         echo "accessing the migrating directory for 5 minutes..."
4353         while true; do
4354                 ls $migrate_dir2 > /dev/null || {
4355                         echo "read dir fails"
4356                         break
4357                 }
4358                 diff -u $DIR2/$tdir/file1 $migrate_dir2/file1 || {
4359                         echo "access file1 fails"
4360                         break
4361                 }
4362
4363                 cat $migrate_dir2/file2 > $migrate_dir2/file3 || {
4364                         echo "access file2/3 fails"
4365                         break
4366                 }
4367
4368                 echo "aaaaa" > $migrate_dir2/file4 > /dev/null || {
4369                         echo "access file4 fails"
4370                         break
4371                 }
4372
4373                 stat $migrate_dir2/file5 > /dev/null || {
4374                         echo "stat file5 fails"
4375                         break
4376                 }
4377
4378                 touch $migrate_dir2/source_file > /dev/null || rc1=$?
4379                 [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4380                         echo "touch file failed with $rc1"
4381                         break;
4382                 }
4383
4384                 if [ -e $migrate_dir2/source_file ]; then
4385                         ln $migrate_dir2/source_file $migrate_dir2/link_file \
4386                                         &>/dev/null || rc1=$?
4387                         if [ -e $migrate_dir2/link_file ]; then
4388                                 rm -rf $migrate_dir2/link_file
4389                         fi
4390
4391                         mrename $migrate_dir2/source_file \
4392                                 $migrate_dir2/target_file &>/dev/null || rc1=$?
4393                         [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4394                                 echo "rename failed with $rc1"
4395                                 break
4396                         }
4397
4398                         if [ -e $migrate_dir2/target_file ]; then
4399                                 rm -rf $migrate_dir2/target_file &>/dev/null ||
4400                                                                 rc1=$?
4401                         else
4402                                 rm -rf $migrate_dir2/source_file &>/dev/null ||
4403                                                                 rc1=$?
4404                         fi
4405                         [ $rc1 -ne 0 -o $rc1 -ne 1 ] || {
4406                                 echo "unlink failed with $rc1"
4407                                 break
4408                         }
4409                 fi
4410
4411                 end_time=$(date +%s)
4412                 duration=$((end_time - start_time))
4413                 if [ $((duration % 10)) -eq 0 ]; then
4414                         if [ $show_time -eq 1 ]; then
4415                                 echo "...$duration seconds"
4416                                 show_time=0
4417                         fi
4418                 else
4419                         show_time=1
4420                 fi
4421
4422                 kill -0 $migrate_pid || {
4423                         echo "migration stopped 1"
4424                         break
4425                 }
4426
4427                 [ $duration -ge 300 ] && break
4428         done
4429
4430         #check migration are still there
4431         kill -0 $migrate_pid || error "migration stopped 2"
4432         cleanup_80b
4433 }
4434 run_test 80b "Accessing directory during migration"
4435
4436 test_81a() {
4437         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4438
4439         rm -rf $DIR1/$tdir
4440
4441         mkdir -p $DIR1/$tdir
4442
4443         $LFS setdirstripe -i0 -c$MDSCOUNT  $DIR1/$tdir/d0
4444         $LFS setdirstripe -i0 -c$MDSCOUNT  $DIR1/$tdir/d1
4445
4446         cd $DIR1/$tdir
4447         touch d0/0      || error "create 0 failed"
4448         mv d0/0 d1/0    || error "rename d0/0 d1/0 failed"
4449         stat d0/0       && error "stat mv filed succeed"
4450         mv $DIR2/$tdir/d1/0 $DIR2/$tdir/d0/0 || error "rename d1/0 d0/0 failed"
4451         stat d0/0       || error "stat failed"
4452
4453         local t=$(ls -ai $DIR1/$tdir/d0 | sort -u | wc -l)
4454
4455         if [ $t -ne 3 ]; then
4456                 ls -ai $DIR1/$tdir/d0
4457                 error "expect 3 get $t"
4458         fi
4459
4460         return 0
4461 }
4462 run_test 81a "rename and stat under striped directory"
4463
4464 test_81b() {
4465         [ $MDSCOUNT -lt 2 ] &&
4466                 skip "We need at least 2 MDTs for this test"
4467
4468         local total
4469         local setattr_pid
4470
4471         total=1000
4472
4473         $LFS mkdir -c $MDSCOUNT $DIR1/$tdir || error "$LFS mkdir"
4474         createmany -o $DIR1/$tdir/$tfile. $total || error "createmany"
4475
4476         (
4477                 while true; do
4478                         touch $DIR1/$tdir
4479                 done
4480         ) &
4481         setattr_pid=$!
4482
4483         for i in $(seq $total); do
4484                 mrename $DIR2/$tdir/$tfile.$i $DIR2/$tdir/$tfile-new.$i \
4485                         > /dev/null
4486         done
4487
4488         kill -9 $setattr_pid
4489 }
4490 run_test 81b "rename under striped directory doesn't deadlock"
4491
4492 test_82() {
4493         [[ "$MDS1_VERSION" -gt $(version_code 2.6.91) ]] ||
4494                 skip "Need MDS version at least 2.6.92"
4495
4496         # Client 1 creates a file.
4497         multiop_bg_pause $DIR1/$tfile O_ac || error "multiop_bg_pause 1"
4498         pid1=$!
4499         # Client 2 opens the file.
4500         multiop_bg_pause $DIR2/$tfile o_Ac || error "multiop_bg_pause 2"
4501         pid2=$!
4502         # Client 1 makes the file an orphan.
4503         rm $DIR1/$tfile || error "rm"
4504         # Client 2 sets EA "user.multiop".
4505         kill -s USR1 $pid2
4506         wait $pid2 || error "multiop 2"
4507         # Client 1 gets EA "user.multiop".  This used to fail because the EA
4508         # cache refill would get "trusted.link" from mdd_xattr_list() but
4509         # -ENOENT when trying to get "trusted.link"'s value.  See also sanity
4510         # 102q.
4511         kill -s USR1 $pid1
4512         wait $pid1 || error "multiop 1"
4513 }
4514 run_test 82 "fsetxattr and fgetxattr on orphan files"
4515
4516 test_83() {
4517         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4518         local pid1
4519         local pid2
4520
4521         (
4522                 cd $DIR1
4523                 while true; do
4524                         $LFS mkdir -i1 -c2 $tdir
4525                         rmdir $tdir
4526                 done
4527         ) &
4528         pid1=$!
4529         echo "start pid $pid1 to create/unlink striped directory"
4530
4531         # Access the directory at the same time
4532         (
4533                 cd $DIR2
4534                 while true; do
4535                         stat $tdir > /dev/null 2>&1
4536                 done
4537         ) &
4538         pid2=$!
4539         echo "start pid $pid2 to stat striped directory"
4540
4541         sleep 120
4542         kill $pid1 $pid2
4543         wait $pid1 $pid2
4544
4545         return 0
4546 }
4547 run_test 83 "access striped directory while it is being created/unlinked"
4548
4549 test_84() {
4550         [ $MDS1_VERSION -lt $(version_code 2.12.55) ] &&
4551                 skip "lustre < 2.12.55 does not contain LU-12485 fix"
4552
4553         local mtime
4554
4555         $MULTIOP $DIR/$tfile oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:c ||
4556                 error "create $tfile failed"
4557         mtime=$(stat -c%Y $DIR/$tfile)
4558         mtime=$((mtime + 200))
4559
4560         #define OBD_FAIL_OBD_0NLINK_RACE  0x60b
4561         do_facet mds1 $LCTL set_param fail_loc=0x8000060b
4562
4563         touch -c -m $mtime $DIR/$tfile &
4564         setattr_pid=$!
4565         # sleep a while to let 'touch' run first
4566         sleep 5
4567         rm -f $DIR2/$tfile || error "unlink $tfile failed"
4568
4569         # touch may fail
4570         wait $setattr_pid || true
4571 }
4572 run_test 84 "0-nlink race in lu_object_find()"
4573
4574 test_90() {
4575         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4576         local pid1
4577         local pid2
4578         local duration=180
4579
4580         [ "$SLOW" = "yes" ] && duration=600
4581         # Open/Create under striped directory
4582         (
4583                 cd $DIR1
4584                 while true; do
4585                         $LFS mkdir -c$MDSCOUNT $tdir > /dev/null 2>&1
4586                         touch $tdir/f{0..3} > /dev/null 2>&1
4587                 done
4588         ) &
4589         pid1=$!
4590         echo "start pid $pid1 to open/create under striped directory"
4591
4592         # unlink the striped directory at the same time
4593         (
4594                 cd $DIR2
4595                 while true; do
4596                         rm -rf $tdir > /dev/null 2>&1
4597                 done
4598         ) &
4599         pid2=$!
4600         echo "start pid $pid2 to unlink striped directory"
4601
4602         sleep $duration
4603
4604         kill $pid1 $pid2
4605         wait $pid1 $pid2
4606
4607         return 0
4608 }
4609 run_test 90 "open/create and unlink striped directory"
4610
4611 test_91() {
4612         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4613         local pid1
4614         local pid2
4615         local duration=180
4616
4617         [ "$SLOW" = "yes" ] && duration=600
4618         # chmod striped directory
4619         (
4620                 cd $DIR1
4621                 while true; do
4622                         $LFS mkdir -c$MDSCOUNT $tdir > /dev/null 2>&1
4623                         chmod go+w $tdir > /dev/null 2>&1
4624                 done
4625         ) &
4626         pid1=$!
4627         echo "start pid $pid1 to chmod striped directory"
4628
4629         # unlink the striped directory at the same time
4630         (
4631                 cd $DIR2
4632                 while true; do
4633                         rm -rf $tdir > /dev/null 2>&1
4634                 done
4635         ) &
4636         pid2=$!
4637         echo "start pid $pid2 to unlink striped directory"
4638
4639         sleep $duration
4640
4641         kill $pid1 $pid2
4642         wait $pid1 $pid2
4643
4644         return 0
4645 }
4646 run_test 91 "chmod and unlink striped directory"
4647
4648 test_92() {
4649         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
4650
4651         local fd=$(free_fd)
4652         local cmd="exec $fd<$DIR1/$tdir"
4653         $LFS setdirstripe -c$MDSCOUNT $DIR1/$tdir || error "mkdir $tdir fails"
4654         eval $cmd
4655         cmd="exec $fd<&-"
4656         trap "eval $cmd" EXIT
4657         cd $DIR1/$tdir || error "cd $DIR1/$tdir fails"
4658         rmdir ../$tdir || error "rmdir ../$tdir fails"
4659
4660         #define OBD_FAIL_LLITE_NO_CHECK_DEAD  0x1408
4661         $LCTL set_param fail_loc=0x1408
4662         mkdir $DIR2/$tdir/dir && error "create dir succeeds"
4663         $LFS setdirstripe -i1 $DIR2/$tdir/remote_dir &&
4664                 error "create remote dir succeeds"
4665         $LCTL set_param fail_loc=0
4666         eval $cmd
4667         return 0
4668 }
4669 run_test 92 "create remote directory under orphan directory"
4670
4671 test_93() {
4672         local rc1=0
4673         local rc2=0
4674         local old_rr
4675
4676         mkdir -p $DIR1/$tfile-1/
4677         mkdir -p $DIR2/$tfile-2/
4678         local old_rr=$(do_facet $SINGLEMDS "$LCTL get_param -n \
4679                 lod.$FSNAME-MDT0000-*/qos_threshold_rr" | sed -e 's/%//')
4680         do_facet $SINGLEMDS "$LCTL set_param -n \
4681                 lod.$FSNAME-MDT0000-*/qos_threshold_rr=100"
4682         #define OBD_FAIL_MDS_LOV_CREATE_RACE     0x163
4683         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x00000163"
4684
4685         $LFS setstripe -c -1 $DIR1/$tfile-1/file1 &
4686         local PID1=$!
4687         sleep 1
4688         $LFS setstripe -c -1 $DIR2/$tfile-2/file2 &
4689         local PID2=$!
4690         wait $PID2
4691         wait $PID1
4692         do_facet $SINGLEMDS "$LCTL set_param fail_loc=0x0"
4693         do_facet $SINGLEMDS "$LCTL set_param -n \
4694                 lod.$FSNAME-MDT0000-*/qos_threshold_rr=$old_rr"
4695
4696         $LFS getstripe $DIR1/$tfile-1/file1
4697         rc1=$($LFS getstripe -q $DIR1/$tfile-1/file1 |
4698                 awk '{if (/[0-9]/) print $1 }' | sort | uniq -d | wc -l)
4699         $LFS getstripe $DIR2/$tfile-2/file2
4700         rc2=$($LFS getstripe -q $DIR2/$tfile-2/file2 |
4701                 awk '{if (/[0-9]/) print $1 }' | sort | uniq -d | wc -l)
4702         echo "rc1=$rc1 and rc2=$rc2 "
4703         [ $rc1 -eq 0 ] && [ $rc2 -eq 0 ] ||
4704                 error "object allocate on same ost detected"
4705 }
4706 run_test 93 "alloc_rr should not allocate on same ost"
4707
4708 test_94() {
4709         $LCTL set_param osc.*.idle_timeout=0
4710         dd if=/dev/zero of=$DIR2/$tfile bs=4k count=2 conv=fsync
4711
4712         local before=$(date +%s)
4713         local evict
4714
4715         $LCTL mark write
4716 #define OBD_FAIL_LDLM_PAUSE_CANCEL       0x312
4717         $LCTL set_param fail_val=5 fail_loc=0x80000312
4718         dd if=/dev/zero of=$DIR/$tfile conv=notrunc oflag=append bs=4k count=1 &
4719         local pid=$!
4720         sleep 2
4721
4722 #define OBD_FAIL_LDLM_PAUSE_CANCEL_LOCAL 0x329
4723         $LCTL set_param fail_val=6 fail_loc=0x80000329
4724         $LCTL mark kill $pid
4725         kill -ALRM $pid
4726
4727         dd if=/dev/zero of=$DIR2/$tfile conv=notrunc oflag=append bs=4k count=1
4728
4729         wait $pid
4730         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1 conv=fsync
4731
4732         evict=$(do_facet client $LCTL get_param \
4733                 osc.$FSNAME-OST*-osc-*/state |
4734             awk -F"[ [,]" '/EVICTED ]$/ { if (t<$5) {t=$5;} } END { print t }')
4735
4736         [ -z "$evict" ] || [[ $evict -le $before ]] ||
4737                 (do_facet client $LCTL get_param \
4738                         osc.$FSNAME-OST*-osc-*/state;
4739                     error "eviction happened: $evict before:$before")
4740         $LCTL set_param osc.*.idle_timeout=debug
4741 }
4742 run_test 94 "signal vs CP callback race"
4743
4744 # Data-on-MDT tests
4745 test_100a() {
4746         skip "Reserved for glimpse-ahead" && return
4747         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4748                 skip "Need MDS version at least 2.10.55"
4749
4750         mkdir -p $DIR/$tdir
4751
4752         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4753
4754         lctl set_param -n mdc.*.stats=clear
4755         dd if=/dev/zero of=$DIR2/$tdir/dom bs=4096 count=1 || return 1
4756
4757         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #1"
4758         # first stat from server should return size data and save glimpse
4759         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4760         [ $gls -eq 0 ] || error "Unexpected $gls glimpse RPCs"
4761         # second stat to check size is NOT cached on client without IO lock
4762         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #2"
4763
4764         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4765         [ $gls -ge 1 ] || error "Expect glimpse RPCs but none"
4766         rm -f $dom
4767 }
4768 run_test 100a "DoM: glimpse RPCs for stat without IO lock (DoM only file)"
4769
4770 test_100b() {
4771         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4772                 skip "Need MDS version at least 2.10.55"
4773
4774         mkdir -p $DIR/$tdir
4775
4776         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4777
4778         lctl set_param -n mdc.*.stats=clear
4779         dd if=/dev/zero of=$DIR2/$tdir/dom bs=4096 count=1 || return 1
4780         cancel_lru_locks mdc
4781         # first stat data from server should have size
4782         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #1"
4783         # second stat to check size is cached on client
4784         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom || error "stat #2"
4785
4786         local gls=$(lctl get_param -n mdc.*.stats | grep -c ldlm_glimpse)
4787         # both stats should cause no glimpse requests
4788         [ $gls == 0 ] || error "Unexpected $gls glimpse RPCs"
4789         rm -f $dom
4790 }
4791 run_test 100b "DoM: no glimpse RPC for stat with IO lock (DoM only file)"
4792
4793 test_100c() {
4794         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4795                 skip "Need MDS version at least 2.10.55"
4796
4797         mkdir -p $DIR/$tdir
4798
4799         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4800
4801         lctl set_param -n mdc.*.stats=clear
4802         lctl set_param -n osc.*.stats=clear
4803         dd if=/dev/zero of=$DIR2/$tdir/dom bs=2048K count=1 || return 1
4804
4805         # check that size is merged from MDT and OST correctly
4806         $CHECKSTAT -t file -s 2097152 $DIR/$tdir/dom ||
4807                 error "Wrong size from stat #1"
4808
4809         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
4810         [ $gls -eq 0 ] && error "Expect OST glimpse RPCs but got none"
4811
4812         rm -f $dom
4813 }
4814 run_test 100c "DoM: write vs stat without IO lock (combined file)"
4815
4816 test_100d() {
4817         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4818                 skip "Need MDS version at least 2.10.55"
4819
4820         mkdir -p $DIR/$tdir
4821
4822         $LFS setstripe -E 1024K -L mdt -E EOF $DIR/$tdir/dom
4823
4824
4825         dd if=/dev/zero of=$DIR2/$tdir/dom bs=2048K count=1 || return 1
4826         lctl set_param -n mdc.*.stats=clear
4827         $TRUNCATE $DIR2/$tdir/dom 4096
4828
4829         # check that reported size is valid after file grows to OST and
4830         # is truncated back to MDT stripe size
4831         $CHECKSTAT -t file -s 4096 $DIR/$tdir/dom ||
4832                 error "Wrong size from stat #1"
4833
4834         local gls=$(lctl get_param -n osc.*.stats | grep -c ldlm_glimpse)
4835         [ $gls -eq 0 ] && error "Expect OST glimpse but got none"
4836
4837         rm -f $dom
4838 }
4839 run_test 100d "DoM: write+truncate vs stat without IO lock (combined file)"
4840
4841 test_100e() {
4842         [ "$MDS1_VERSION" -lt $(version_code 2.11.50) ] &&
4843                 skip "Need MDS version at least 2.11.50"
4844
4845         local dom=$DIR/$tdir/dom
4846         local dom2=$DIR2/$tdir/dom
4847         mkdir -p $DIR/$tdir
4848
4849         $LFS setstripe -E 1024K -L mdt $DIR/$tdir
4850
4851         cancel_lru_locks mdc
4852         dd if=/dev/urandom of=$dom bs=12000 count=1
4853         $TRUNCATE $dom2 6000
4854         cancel_lru_locks mdc
4855         lctl set_param -n mdc.*.stats=clear
4856         # expect read-on-open to return all data before write
4857         cat /etc/hosts >> $dom
4858         local read=$(lctl get_param -n mdc.*.stats | grep -c ost_read)
4859         [[ $read -eq 0 ]] || error "Unexpected $read READ RPCs"
4860 }
4861 run_test 100e "DoM: read on open and file size"
4862
4863 test_101a() {
4864         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4865                 skip "Need MDS version at least 2.10.55"
4866
4867         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4868         # to get layout
4869         $CHECKSTAT -t file $DIR1/$tfile
4870
4871         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4872         sysctl -wq vm.dirty_writeback_centisecs=0
4873
4874         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4875
4876         # open + IO lock
4877         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 ||
4878                 error_noexit "Write fails"
4879         # must discard pages
4880         lctl set_param -n mdc.*.stats=clear
4881         rm $DIR2/$tfile || error "Unlink fails"
4882
4883         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4884         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4885 }
4886 run_test 101a "Discard DoM data on unlink"
4887
4888 test_101b() {
4889         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4890                 skip "Need MDS version at least 2.10.55"
4891
4892         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4893         touch $DIR1/${tfile}_2
4894         # to get layout
4895         $CHECKSTAT -t file $DIR1/$tfile
4896
4897         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4898         sysctl -wq vm.dirty_writeback_centisecs=0
4899
4900         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4901
4902         # open + IO lock
4903         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 || error "Write fails"
4904         # must discard pages
4905         lctl set_param -n mdc.*.stats=clear
4906         mv $DIR2/${tfile}_2 $DIR2/$tfile || error "Rename fails"
4907
4908         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4909         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4910 }
4911 run_test 101b "Discard DoM data on rename"
4912
4913 test_101c() {
4914         [ "$MDS1_VERSION" -lt $(version_code 2.10.55) ] &&
4915                 skip "Need MDS version at least 2.10.55"
4916
4917         $LFS setstripe -E 1024K -L mdt -E EOF $DIR1/$tfile
4918         # to get layout
4919         $CHECKSTAT -t file $DIR1/$tfile
4920
4921         local old_wb=$(sysctl -n vm.dirty_writeback_centisecs)
4922         sysctl -wq vm.dirty_writeback_centisecs=0
4923
4924         trap "sysctl -wq vm.dirty_writeback_centisecs=$old_wb" EXIT
4925
4926         # open + IO lock
4927         dd if=/dev/zero of=$DIR1/$tfile bs=4096 count=1 || error "Write fails"
4928         $MULTIOP $DIR1/$tfile O_c &
4929         MULTIOP_PID=$!
4930         sleep 1
4931         lctl set_param -n mdc.*.stats=clear
4932         rm $DIR2/$tfile > /dev/null || error "Unlink fails for opened file"
4933         kill -USR1 $MULTIOP_PID && wait $MULTIOP_PID || error "multiop failure"
4934
4935         local writes=$(lctl get_param -n mdc.*.stats | grep -c ost_write)
4936         [ $writes -eq 0 ] || error "Found WRITE RPC but expect none"
4937 }
4938 run_test 101c "Discard DoM data on close-unlink"
4939
4940 # test to verify file handle related system calls
4941 # (name_to_handle_at/open_by_handle_at)
4942 # The new system calls are supported in glibc >= 2.14.
4943
4944 # test to verify we can open by handle an unlinked file from > 1 client
4945 # This test opens the file normally on $DIR1, which is on one mount, and then
4946 # opens it by handle on $DIR2, which is on a different mount.
4947 test_102() {
4948         [ "$MDS1_VERSION" -lt $(version_code 2.11.57) ] &&
4949                 skip "Needs MDS version 2.11.57 or later"
4950
4951         echo "Test file_handle syscalls" > $DIR/$tfile ||
4952                 error "write failed"
4953         check_fhandle_syscalls $DIR/$tfile $DIR2 ||
4954                 error "check_fhandle_syscalls failed"
4955         rm -f $DIR2/$tfile
4956 }
4957 run_test 102 "Test open by handle of unlinked file"
4958
4959 # Compare file size between first & second mount, ensuring the client correctly
4960 # glimpses even with unused speculative locks - LU-11670
4961 test_103() {
4962         [ $OST1_VERSION -lt $(version_code 2.10.50) ] &&
4963                 skip "Lockahead needs OST version at least 2.10.50"
4964
4965         local locktest=23
4966
4967         test_mkdir -p $DIR/$tdir
4968
4969         # Force file on to OST0
4970         $LFS setstripe -i 0 $DIR/$tdir
4971
4972         # Do not check multiple locks on glimpse
4973         # OBD_FAIL_OSC_NO_SIZE_DATA 0x415
4974         $LCTL set_param fail_loc=0x415
4975
4976         # Delay write commit by 2 seconds to guarantee glimpse wins race
4977         # The same fail_loc is used on client & server so it can work in the
4978         # single node sanity setup
4979         do_facet ost1 $LCTL set_param fail_loc=0x415 fail_val=2
4980
4981         echo "Incorrect size expected (no glimpse fix):"
4982         lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $locktest -f $tfile
4983         rc=$?
4984         if [ $rc -eq 0 ]; then
4985                 echo "This doesn't work 100%, but this is just reproducing the bug, not testing the fix, so OK to not fail test."
4986         fi
4987
4988         # guarantee write commit timeout has expired
4989         sleep 2
4990
4991         # Clear fail_loc on client
4992         $LCTL set_param fail_loc=0
4993
4994         # Delay write commit by 2 seconds to guarantee glimpse wins race
4995         # OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
4996         do_facet ost1 $LCTL set_param fail_loc=0x214 fail_val=2
4997
4998         # Write commit is still delayed by 2 seconds
4999         lockahead_test -d $DIR/$tdir -D $DIR2/$tdir -t $locktest -f $tfile
5000         rc=$?
5001         [ $rc -eq 0 ] || error "Lockahead test$locktest failed, $rc"
5002
5003         # guarantee write commit timeout has expired
5004         sleep 2
5005
5006         rm -f $DIR/$tfile || error "unable to delete $DIR/$tfile"
5007 }
5008 run_test 103 "Test size correctness with lockahead"
5009
5010 get_stat_xtimes()
5011 {
5012         local xtimes
5013
5014         xtimes=$(stat -c "%X %Y %Z" $DIR/$tfile)
5015
5016         echo ${xtimes[*]}
5017 }
5018
5019 get_mdt_xtimes()
5020 {
5021         local mdtdev=$1
5022         local output
5023         local xtimes
5024
5025         output=$(do_facet mds1 "$DEBUGFS -c -R 'stat ROOT/$tfile' $mdtdev")
5026         ((xtimes[0]=$(awk -F ':' /atime/'{ print $2 }' <<< "$output")))
5027         ((xtimes[1]=$(awk -F ':' /mtime/'{ print $2 }' <<< "$output")))
5028         ((xtimes[2]=$(awk -F ':' /ctime/'{ print $2 }' <<< "$output")))
5029
5030         echo ${xtimes[*]}
5031 }
5032
5033 check_mdt_xtimes()
5034 {
5035         local mdtdev=$1
5036         local xtimes=($(get_stat_xtimes))
5037         local mdt_xtimes=($(get_mdt_xtimes $mdtdev))
5038
5039         echo "STAT a|m|ctime ${xtimes[*]}"
5040         echo "MDT a|m|ctime ${xtimes[*]}"
5041         [[ ${xtimes[0]} == ${mdt_xtimes[0]} ]] ||
5042                 error "$DIR/$tfile atime (${xtimes[0]}:${mdt_xtimes[0]}) diff"
5043         [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] ||
5044                 error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff"
5045         [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] ||
5046                 error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff"
5047 }
5048
5049 test_104() {
5050         [ "$mds1_FSTYPE" == "ldiskfs" ] || skip_env "ldiskfs only test"
5051         [ $MDS1_VERSION -lt $(version_code 2.12.4) ] &&
5052                 skip "Need MDS version at least 2.12.4"
5053
5054         local pid
5055         local mdtdev=$(mdsdevname ${SINGLEMDS//mds/})
5056         local atime_diff=$(do_facet $SINGLEMDS \
5057                 lctl get_param -n mdd.*MDT0000*.atime_diff)
5058
5059         do_facet $SINGLEMDS \
5060                 lctl set_param -n mdd.*MDT0000*.atime_diff=0
5061
5062         stack_trap "do_facet $SINGLEMDS \
5063                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff" EXIT
5064
5065         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5066         check_mdt_xtimes $mdtdev
5067         sleep 2
5068
5069         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5070         check_mdt_xtimes $mdtdev
5071         sleep 2
5072         $MULTIOP $DIR2/$tfile Oz8192w8192_c &
5073         pid=$!
5074         sleep 2
5075         dd if=/dev/zero of=$DIR/$tfile bs=1k count=1 conv=notrunc
5076         sleep 2
5077         kill -USR1 $pid && wait $pid || error "multiop failure"
5078         check_mdt_xtimes $mdtdev
5079
5080         local xtimes
5081         local mdt_xtimes
5082
5083         # Verify mtime/ctime is NOT upated on MDS when there is no modification
5084         # on the client side
5085         xtimes=($(get_stat_xtimes))
5086         $MULTIOP $DIR/$tfile O_c &
5087         pid=$!
5088         sleep 2
5089         kill -USR1 $pid && wait $pid || error "multiop failure"
5090         mdt_xtimes=($(get_mdt_xtimes $mdtdev))
5091         [[ ${xtimes[1]} == ${mdt_xtimes[1]} ]] ||
5092                 error "$DIR/$tfile mtime (${xtimes[1]}:${mdt_xtimes[1]}) diff"
5093         [[ ${xtimes[2]} == ${mdt_xtimes[2]} ]] ||
5094                 error "$DIR/$tfile ctime (${xtimes[2]}:${mdt_xtimes[2]}) diff"
5095         check_mdt_xtimes $mdtdev
5096
5097         sleep 2
5098         # Change ctime via chmod
5099         $MULTIOP $DIR/$tfile o_tc &
5100         pid=$!
5101         sleep 2
5102         kill -USR1 $pid && wait $pid || error "multiop failure"
5103         check_mdt_xtimes $mdtdev
5104 }
5105 run_test 104 "Verify that MDS stores atime/mtime/ctime during close"
5106
5107 test_105() {
5108         test_mkdir -p $DIR/$tdir
5109         echo test > $DIR/$tdir/$tfile
5110         $LCTL set_param fail_loc=0x416
5111         cancel_lru_locks osc & sleep 1
5112         fsize1=$(stat -c %s $DIR2/$tdir/$tfile)
5113         wait
5114         [[ $fsize1 = 5 ]] ||  error "Glimpse returned wrong file size $fsize1"
5115 }
5116 run_test 105 "Glimpse and lock cancel race"
5117
5118 log "cleanup: ======================================================"
5119
5120 # kill and wait in each test only guarentee script finish, but command in script
5121 # like 'rm' 'chmod' may still be running, wait for all commands to finish
5122 # otherwise umount below will fail
5123 [ "$(mount | grep $MOUNT2)" ] && wait_update $HOSTNAME "fuser -m $MOUNT2" "" ||
5124         true
5125
5126 complete $SECONDS
5127 rm -f $SAMPLE_FILE
5128 check_and_cleanup_lustre
5129 exit_status