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