Whamcloud - gitweb
LU-1205 tests: sanityn test_18 sometimes takes long time to run
[fs/lustre-release.git] / lustre / tests / sanityn.sh
1 #!/bin/bash
2
3 set -e
4
5 ONLY=${ONLY:-"$*"}
6 # bug number for skipped test: 3192 LU-1205 15528/3811 16929 9977 15528/11549 18080
7 ALWAYS_EXCEPT="                14b  18c     19         22    28   29          35    $SANITYN_EXCEPT"
8 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
9
10 # bug number for skipped test:        12652 12652
11 grep -q 'Enterprise Server 10' /etc/SuSE-release 2> /dev/null &&
12         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 11    14" || true
13
14 # Tests that fail on uml
15 [ "$UML" = "true" ] && EXCEPT="$EXCEPT 7"
16
17 # It will be ported soon.
18 EXCEPT="$EXCEPT 22"
19
20 SRCDIR=`dirname $0`
21 PATH=$PWD/$SRCDIR:$SRCDIR:$SRCDIR/../utils:$PATH
22
23 SIZE=${SIZE:-40960}
24 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
25 MCREATE=${MCREATE:-mcreate}
26 OPENFILE=${OPENFILE:-openfile}
27 OPENUNLINK=${OPENUNLINK:-openunlink}
28 export TMP=${TMP:-/tmp}
29 MOUNT_2=${MOUNT_2:-"yes"}
30 CHECK_GRANT=${CHECK_GRANT:-"yes"}
31 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
32 TSTUSR=${TSTUSR:-"quota_usr"}
33
34 SAVE_PWD=$PWD
35
36 export NAME=${NAME:-local}
37
38 LUSTRE=${LUSTRE:-`dirname $0`/..}
39 . $LUSTRE/tests/test-framework.sh
40 CLEANUP=${CLEANUP:-:}
41 SETUP=${SETUP:-:}
42 init_test_env $@
43 . ${CONFIG:=$LUSTRE/tests/cfg/$NAME.sh}
44 init_logging
45
46 [ "$SLOW" = "no" ] && EXCEPT_SLOW="12 23 33a"
47
48 FAIL_ON_ERROR=false
49
50 SETUP=${SETUP:-:}
51 TRACE=${TRACE:-""}
52
53 check_and_setup_lustre
54
55 LOVNAME=`lctl get_param -n llite.*.lov.common_name | tail -n 1`
56 OSTCOUNT=`lctl get_param -n lov.$LOVNAME.numobd`
57
58 assert_DIR
59 rm -rf $DIR1/[df][0-9]* $DIR1/lnk
60
61 SAMPLE_FILE=$TMP/$(basename $0 .sh).junk
62 dd if=/dev/urandom of=$SAMPLE_FILE bs=1M count=1
63
64 # $RUNAS_ID may get set incorrectly somewhere else
65 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
66
67 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
68
69 build_test_filter
70
71 mkdir -p $MOUNT2
72 mount_client $MOUNT2
73
74 test_1a() {
75         touch $DIR1/f1
76         [ -f $DIR2/f1 ] || error
77 }
78 run_test 1a "check create on 2 mtpt's =========================="
79
80 test_1b() {
81         chmod 777 $DIR2/f1
82         $CHECKSTAT -t file -p 0777 $DIR1/f1 || error
83         chmod a-x $DIR2/f1
84 }
85 run_test 1b "check attribute updates on 2 mtpt's ==============="
86
87 test_1c() {
88         $CHECKSTAT -t file -p 0666 $DIR1/f1 || error
89 }
90 run_test 1c "check after remount attribute updates on 2 mtpt's ="
91
92 test_1d() {
93         rm $DIR2/f1
94         $CHECKSTAT -a $DIR1/f1 || error
95 }
96 run_test 1d "unlink on one mountpoint removes file on other ===="
97
98 test_2a() {
99         touch $DIR1/f2a
100         ls -l $DIR2/f2a
101         chmod 777 $DIR2/f2a
102         $CHECKSTAT -t file -p 0777 $DIR1/f2a || error
103 }
104 run_test 2a "check cached attribute updates on 2 mtpt's ========"
105
106 test_2b() {
107         touch $DIR1/f2b
108         ls -l $DIR2/f2b
109         chmod 777 $DIR1/f2b
110         $CHECKSTAT -t file -p 0777 $DIR2/f2b || error
111 }
112 run_test 2b "check cached attribute updates on 2 mtpt's ========"
113
114 # NEED TO SAVE ROOT DIR MODE
115 test_2c() {
116         chmod 777 $DIR1
117         $CHECKSTAT -t dir -p 0777 $DIR2 || error
118 }
119 run_test 2c "check cached attribute updates on 2 mtpt's root ==="
120
121 test_2d() {
122         chmod 755 $DIR1
123         $CHECKSTAT -t dir -p 0755 $DIR2 || error
124 }
125 run_test 2d "check cached attribute updates on 2 mtpt's root ==="
126
127 test_2e() {
128         chmod 755 $DIR1
129         ls -l $DIR1
130         ls -l $DIR2
131         chmod 777 $DIR1
132         $RUNAS dd if=/dev/zero of=$DIR2/$tfile count=1 || error
133 }
134 run_test 2e "check chmod on root is propagated to others"
135
136 test_3() {
137         local target="this/is/good"
138         ln -s $target $DIR1/$tfile || error "ln -s $target $DIR1/$tfile failed"
139         [ "$(ls -l $DIR2/$tfile | sed -e 's/.* -> //')" = "$target" ] ||
140                 error "link $DIR2/$tfile not as expected"
141 }
142 run_test 3 "symlink on one mtpt, readlink on another ==========="
143
144 test_4() {
145         multifstat $DIR1/f4 $DIR2/f4
146 }
147 run_test 4 "fstat validation on multiple mount points =========="
148
149 test_5() {
150         mcreate $DIR1/f5
151         $TRUNCATE $DIR2/f5 100
152         $CHECKSTAT -t file -s 100 $DIR1/f5 || error
153         rm $DIR1/f5
154 }
155 run_test 5 "create a file on one mount, truncate it on the other"
156
157 test_6() {
158         openunlink $DIR1/$tfile $DIR2/$tfile || \
159                 error "openunlink $DIR1/$tfile $DIR2/$tfile"
160 }
161 run_test 6 "remove of open file on other node =================="
162
163 test_7() {
164         local dir=d7
165         opendirunlink $DIR1/$dir $DIR2/$dir || \
166                 error "opendirunlink $DIR1/$dir $DIR2/$dir"
167 }
168 run_test 7 "remove of open directory on other node ============="
169
170 test_8() {
171         opendevunlink $DIR1/$tfile $DIR2/$tfile || \
172                 error "opendevunlink $DIR1/$tfile $DIR2/$tfile"
173 }
174 run_test 8 "remove of open special file on other node =========="
175
176 test_9() {
177         MTPT=1
178         local dir
179         > $DIR2/f9
180         for C in a b c d e f g h i j k l; do
181                 dir=`eval echo \\$DIR$MTPT`
182                 echo -n $C >> $dir/f9
183                 [ "$MTPT" -eq 1 ] && MTPT=2 || MTPT=1
184         done
185         [ "`cat $DIR1/f9`" = "abcdefghijkl" ] || \
186                 error "`od -a $DIR1/f9` != abcdefghijkl"
187 }
188 run_test 9 "append of file with sub-page size on multiple mounts"
189
190 test_10a() {
191         MTPT=1
192         local dir
193         OFFSET=0
194         > $DIR2/f10
195         for C in a b c d e f g h i j k l; do
196                 dir=`eval echo \\$DIR$MTPT`
197                 echo -n $C | dd of=$dir/f10 bs=1 seek=$OFFSET count=1
198                 [ "$MTPT" -eq 1 ] && MTPT=2 || MTPT=1
199                 OFFSET=`expr $OFFSET + 1`
200         done
201         [ "`cat $DIR1/f10`" = "abcdefghijkl" ] || \
202                 error "`od -a $DIR1/f10` != abcdefghijkl"
203 }
204 run_test 10a "write of file with sub-page size on multiple mounts "
205
206 test_10b() {
207         # create a seed file
208         yes "R" | head -c 4000 >$TMP/f10b-seed
209         dd if=$TMP/f10b-seed of=$DIR1/f10b bs=3k count=1 || error "dd $DIR1"
210
211         $TRUNCATE $DIR1/f10b 4096 || error "truncate 4096"
212
213         dd if=$DIR2/f10b of=$TMP/f10b-lustre bs=4k count=1 || error "dd $DIR2"
214
215         # create a test file locally to compare
216         dd if=$TMP/f10b-seed of=$TMP/f10b bs=3k count=1 || error "dd random"
217         $TRUNCATE $TMP/f10b 4096 || error "truncate 4096"
218         cmp $TMP/f10b $TMP/f10b-lustre || error "file miscompare"
219         rm $TMP/f10b $TMP/f10b-lustre $TMP/f10b-seed
220 }
221 run_test 10b "write of file with sub-page size on multiple mounts "
222
223 test_11() {
224         mkdir $DIR1/d11
225         multiop_bg_pause $DIR1/d11/f O_c || return 1
226         MULTIPID=$!
227         cp -p /bin/ls $DIR1/d11/f
228         $DIR2/d11/f
229         RC=$?
230         kill -USR1 $MULTIPID
231         wait $MULTIPID || error
232         [ $RC -eq 0 ] && error || true
233 }
234 run_test 11 "execution of file opened for write should return error ===="
235
236 test_12() {
237        DIR=$DIR DIR2=$DIR2 sh lockorder.sh
238 }
239 run_test 12 "test lock ordering (link, stat, unlink) ==========="
240
241 test_13() {     # bug 2451 - directory coherency
242        mkdir $DIR1/d13 || error
243        cd $DIR1/d13 || error
244        ls
245        ( touch $DIR1/d13/f13 ) # needs to be a separate shell
246        ls
247        rm -f $DIR2/d13/f13 || error
248        ls 2>&1 | grep f13 && error "f13 shouldn't return an error (1)" || true
249        # need to run it twice
250        ( touch $DIR1/d13/f13 ) # needs to be a separate shell
251        ls
252        rm -f $DIR2/d13/f13 || error
253        ls 2>&1 | grep f13 && error "f13 shouldn't return an error (2)" || true
254 }
255 run_test 13 "test directory page revocation ===================="
256
257 test_14() {
258         mkdir -p $DIR1/$tdir
259         cp -p /bin/ls $DIR1/$tdir/$tfile
260         multiop_bg_pause $DIR1/$tdir/$tfile Ow_c || return 1
261         MULTIPID=$!
262
263         $DIR2/$tdir/$tfile && error || true
264         kill -USR1 $MULTIPID
265         wait $MULTIPID || return 2
266 }
267 run_test 14 "execution of file open for write returns -ETXTBSY ="
268
269 test_14a() {
270         mkdir -p $DIR1/d14
271         cp -p `which multiop` $DIR1/d14/multiop || error "cp failed"
272         MULTIOP_PROG=$DIR1/d14/multiop multiop_bg_pause $TMP/test14.junk O_c || return 1
273         MULTIOP_PID=$!
274         multiop $DIR2/d14/multiop Oc && error "expected error, got success"
275         kill -USR1 $MULTIOP_PID || return 2
276         wait $MULTIOP_PID || return 3
277         rm $TMP/test14.junk $DIR1/d14/multiop || error "removing multiop"
278 }
279 run_test 14a "open(RDWR) of executing file returns -ETXTBSY ===="
280
281 test_14b() { # bug 3192, 7040
282         mkdir -p $DIR1/d14
283         cp -p `which multiop` $DIR1/d14/multiop || error "cp failed"
284         MULTIOP_PROG=$DIR1/d14/multiop multiop_bg_pause $TMP/test14.junk O_c || return 1
285         MULTIOP_PID=$!
286         $TRUNCATE $DIR2/d14/multiop 0 && kill -9 $MULTIOP_PID && \
287                 error "expected truncate error, got success"
288         kill -USR1 $MULTIOP_PID || return 2
289         wait $MULTIOP_PID || return 3
290         cmp `which multiop` $DIR1/d14/multiop || error "binary changed"
291         rm $TMP/test14.junk $DIR1/d14/multiop || error "removing multiop"
292 }
293 run_test 14b "truncate of executing file returns -ETXTBSY ======"
294
295 test_14c() { # bug 3430, 7040
296         mkdir -p $DIR1/d14
297         cp -p `which multiop` $DIR1/d14/multiop || error "cp failed"
298         MULTIOP_PROG=$DIR1/d14/multiop multiop_bg_pause $TMP/test14.junk O_c || return 1
299         MULTIOP_PID=$!
300         cp /etc/hosts $DIR2/d14/multiop && error "expected error, got success"
301         kill -USR1 $MULTIOP_PID || return 2
302         wait $MULTIOP_PID || return 3
303         cmp `which multiop` $DIR1/d14/multiop || error "binary changed"
304         rm $TMP/test14.junk $DIR1/d14/multiop || error "removing multiop"
305 }
306 run_test 14c "open(O_TRUNC) of executing file return -ETXTBSY =="
307
308 test_14d() { # bug 10921
309         mkdir -p $DIR1/d14
310         cp -p `which multiop` $DIR1/d14/multiop || error "cp failed"
311         MULTIOP_PROG=$DIR1/d14/multiop multiop_bg_pause $TMP/test14.junk O_c || return 1
312         MULTIOP_PID=$!
313         log chmod
314         chmod 600 $DIR1/d14/multiop || error "chmod failed"
315         kill -USR1 $MULTIOP_PID || return 2
316         wait $MULTIOP_PID || return 3
317         cmp `which multiop` $DIR1/d14/multiop || error "binary changed"
318         rm $TMP/test14.junk $DIR1/d14/multiop || error "removing multiop"
319 }
320 run_test 14d "chmod of executing file is still possible ========"
321
322 test_15() {     # bug 974 - ENOSPC
323         echo "PATH=$PATH"
324         sh oos2.sh $MOUNT1 $MOUNT2
325         grant_error=`dmesg | grep "> available"`
326         [ -z "$grant_error" ] || error "$grant_error"
327 }
328 run_test 15 "test out-of-space with multiple writers ==========="
329
330 test_16() {
331         rm -f $MOUNT1/fsxfile
332         lfs setstripe $MOUNT1/fsxfile -c -1 # b=10919
333         fsx -c 50 -p 100 -N 2500 -l $((SIZE * 256)) -S 0 $MOUNT1/fsxfile $MOUNT2/fsxfile
334 }
335 run_test 16 "2500 iterations of dual-mount fsx ================="
336
337 test_17() { # bug 3513, 3667
338         remote_ost_nodsh && skip "remote OST with nodsh" && return
339
340         lfs setstripe $DIR1/$tfile -i 0 -c 1
341         cp $SAMPLE_FILE $DIR1/$tfile
342         cancel_lru_locks osc > /dev/null
343         #define OBD_FAIL_ONCE|OBD_FAIL_LDLM_CREATE_RESOURCE    0x30a
344         do_facet ost1 lctl set_param fail_loc=0x8000030a
345         ls -ls $DIR1/$tfile | awk '{ print $1,$6 }' > $DIR1/$tfile-1 & \
346         ls -ls $DIR2/$tfile | awk '{ print $1,$6 }' > $DIR2/$tfile-2
347         wait
348         diff -u $DIR1/$tfile-1 $DIR2/$tfile-2 || error "files are different"
349 }
350 run_test 17 "resource creation/LVB creation race ==============="
351
352 test_18() {
353         # turn e.g. ALWAYS_EXCEPT="18c" into "-e 3"
354         local idx
355         local excepts=
356         for idx in {a..z}; do
357                 local ptr=EXCEPT_ALWAYS_18$idx
358                 [ x${!ptr} = xtrue ] || continue
359
360                 excepts="$excepts -e $(($(printf %d \'$idx)-96))"
361         done
362
363         $LUSTRE/tests/mmap_sanity -d $MOUNT1 -m $MOUNT2 $excepts
364         sync; sleep 1; sync
365 }
366 run_test 18 "mmap sanity check ================================="
367
368 test_19() { # bug3811
369         [ -d /proc/fs/lustre/obdfilter ] || return 0
370
371         MAX=`lctl get_param -n obdfilter.*.readcache_max_filesize | head -n 1`
372         lctl set_param -n obdfilter.*OST*.readcache_max_filesize=4096
373         dd if=/dev/urandom of=$TMP/f19b bs=512k count=32
374         SUM=`cksum $TMP/f19b | cut -d" " -f 1,2`
375         cp $TMP/f19b $DIR1/f19b
376         for i in `seq 1 20`; do
377                 [ $((i % 5)) -eq 0 ] && log "test_18 loop $i"
378                 cancel_lru_locks osc > /dev/null
379                 cksum $DIR1/f19b | cut -d" " -f 1,2 > $TMP/sum1 & \
380                 cksum $DIR2/f19b | cut -d" " -f 1,2 > $TMP/sum2
381                 wait
382                 [ "`cat $TMP/sum1`" = "$SUM" ] || \
383                         error "$DIR1/f19b `cat $TMP/sum1` != $SUM"
384                 [ "`cat $TMP/sum2`" = "$SUM" ] || \
385                         error "$DIR2/f19b `cat $TMP/sum2` != $SUM"
386         done
387         lctl set_param -n obdfilter.*OST*.readcache_max_filesize=$MAX
388         rm $DIR1/f19b
389 }
390 run_test 19 "test concurrent uncached read races ==============="
391
392 test_20() {
393         mkdir $DIR1/d20
394         cancel_lru_locks osc
395         CNT=$((`lctl get_param -n llite.*.dump_page_cache | wc -l`))
396         multiop $DIR1/f20 Ow8190c
397         multiop $DIR2/f20 Oz8194w8190c
398         multiop $DIR1/f20 Oz0r8190c
399         cancel_lru_locks osc
400         CNTD=$((`lctl get_param -n llite.*.dump_page_cache | wc -l` - $CNT))
401         [ $CNTD -gt 0 ] && \
402             error $CNTD" page left in cache after lock cancel" || true
403 }
404 run_test 20 "test extra readahead page left in cache ===="
405
406 cleanup_21() {
407         trap 0
408         umount $DIR1/d21
409 }
410
411 test_21() { # Bug 5907
412         mkdir $DIR1/d21
413         mount /etc $DIR1/d21 --bind || error "mount failed" # Poor man's mount.
414         trap cleanup_21 EXIT
415         rmdir -v $DIR1/d21 && error "Removed mounted directory"
416         rmdir -v $DIR2/d21 && echo "Removed mounted directory from another mountpoint, needs to be fixed"
417         test -d $DIR1/d21 || error "Mounted directory disappeared"
418         cleanup_21
419         test -d $DIR2/d21 || test -d $DIR1/d21 && error "Removed dir still visible after umount"
420         true
421 }
422 run_test 21 " Try to remove mountpoint on another dir ===="
423
424 test_23() { # Bug 5972
425         echo "others should see updated atime while another read" > $DIR1/f23
426         
427         # clear the lock(mode: LCK_PW) gotten from creating operation
428         cancel_lru_locks osc
429         
430         time1=`date +%s`        
431         #MAX_ATIME_DIFF 60, we update atime only if older than 60 seconds
432         sleep 61
433         
434         multiop_bg_pause $DIR1/f23 or20_c || return 1
435         # with SOM and opencache enabled, we need to close a file and cancel
436         # open lock to get atime propogated to MDS
437         kill -USR1 $!
438         cancel_lru_locks mdc
439
440         time2=`stat -c "%X" $DIR2/f23`
441
442         if (( $time2 <= $time1 )); then
443                 error "atime doesn't update among nodes"
444         fi
445
446         rm -f $DIR1/f23 || error "rm -f $DIR1/f23 failed"
447         true
448 }
449 run_test 23 " others should see updated atime while another read===="
450
451 test_24a() {
452         touch $DIR1/$tfile
453         lfs df || error "lfs df failed"
454         lfs df -ih || error "lfs df -ih failed"
455         lfs df -h $DIR1 || error "lfs df -h $DIR1 failed"
456         lfs df -i $DIR2 || error "lfs df -i $DIR2 failed"
457         lfs df $DIR1/$tfile || error "lfs df $DIR1/$tfile failed"
458         lfs df -ih $DIR2/$tfile || error "lfs df -ih $DIR2/$tfile failed"
459         
460         OSC=`lctl dl | awk '/-osc-|OSC.*MNT/ {print $4}' | head -n 1`
461 #       OSC=`lctl dl | awk '/-osc-/ {print $4}' | head -n 1`
462         lctl --device %$OSC deactivate
463         lfs df -i || error "lfs df -i with deactivated OSC failed"
464         lctl --device %$OSC activate
465         lfs df || error "lfs df with reactivated OSC failed"
466 }
467 run_test 24a "lfs df [-ih] [path] test ========================="
468
469 test_24b() {
470         touch $DIR1/$tfile
471         fsnum=`lfs df | grep -c "filesystem summary:"`
472         [ $fsnum -eq 2 ] || error "lfs df shows $fsnum != 2 filesystems."
473 }
474 run_test 24b "lfs df should show both filesystems ==============="
475
476 test_25() {
477         [ `lctl get_param -n mdc.*-mdc-*.connect_flags | grep -c acl` -lt 2 ] &&
478                 skip "must have acl, skipping" && return
479
480         mkdir -p $DIR1/$tdir
481         touch $DIR1/$tdir/f1 || error "touch $DIR1/$tdir/f1"
482         chmod 0755 $DIR1/$tdir/f1 || error "chmod 0755 $DIR1/$tdir/f1"
483
484         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #1"
485         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
486                 error "setfacl $DIR2/$tdir #1"
487         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #2"
488         setfacl -m u:$RUNAS_ID:r-x -m g:$RUNAS_GID:r-x $DIR1/$tdir ||
489                 error "setfacl $DIR2/$tdir #2"
490         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #3"
491         setfacl -m u:$RUNAS_ID:--- -m g:$RUNAS_GID:--- $DIR1/$tdir ||
492                 error "setfacl $DIR2/$tdir #3"
493         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 && error "checkstat $DIR2/$tdir/f1 #4"
494         setfacl -x u:$RUNAS_ID: -x g:$RUNAS_GID: $DIR1/$tdir ||
495                 error "setfacl $DIR2/$tdir #4"
496         $RUNAS $CHECKSTAT $DIR2/$tdir/f1 || error "checkstat $DIR2/$tdir/f1 #5"
497
498         rm -rf $DIR1/$tdir
499 }
500 run_test 25 "change ACL on one mountpoint be seen on another ==="
501
502 test_26a() {
503         utime $DIR1/f26a -s $DIR2/f26a || error
504 }
505 run_test 26a "allow mtime to get older"
506
507 test_26b() {
508         touch $DIR1/$tfile
509         sleep 1
510         echo "aaa" >> $DIR1/$tfile
511         sleep 1
512         chmod a+x $DIR2/$tfile
513         mt1=`stat -c %Y $DIR1/$tfile`
514         mt2=`stat -c %Y $DIR2/$tfile`
515
516         if [ x"$mt1" != x"$mt2" ]; then
517                 error "not equal mtime, client1: "$mt1", client2: "$mt2"."
518         fi
519 }
520 run_test 26b "sync mtime between ost and mds"
521
522 test_27() {
523         cancel_lru_locks osc
524         lctl clear
525         dd if=/dev/zero of=$DIR2/$tfile bs=$((4096+4))k conv=notrunc count=4 seek=3 &
526         DD2_PID=$!
527         usleep 50
528         log "dd 1 started"
529         
530         dd if=/dev/zero of=$DIR1/$tfile bs=$((16384-1024))k conv=notrunc count=1 seek=4 &
531         DD1_PID=$!
532         log "dd 2 started"
533         
534         sleep 1
535         dd if=/dev/zero of=$DIR1/$tfile bs=8k conv=notrunc count=1 seek=0
536         log "dd 3 finished"
537         lctl set_param -n ldlm.dump_namespaces ""
538         wait $DD1_PID $DD2_PID
539         [ $? -ne 0 ] && lctl dk $TMP/debug || true
540 }
541 run_test 27 "align non-overlapping extent locks from request ==="
542
543 test_28() { # bug 9977
544         ECHO_UUID="ECHO_osc1_UUID"
545         tOST=`$LCTL dl | | awk '/-osc-|OSC.*MNT/ { print $4 }' | head -1`
546
547         $LFS setstripe $DIR1/$tfile -S 1048576 -i 0 -c 2
548         tOBJID=`$LFS getstripe $DIR1/$tfile | awk '$1 == 1 {print $2}'`
549         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2
550
551         $LCTL <<-EOF
552                 newdev
553                 attach echo_client ECHO_osc1 $ECHO_UUID
554                 setup $tOST
555         EOF
556
557         tECHOID=`$LCTL dl | grep $ECHO_UUID | awk '{ print $1 }'`
558         $LCTL --device $tECHOID destroy "${tOBJID}:0"
559
560         $LCTL <<-EOF
561                 cfg_device ECHO_osc1
562                 cleanup
563                 detach
564         EOF
565
566         # reading of 1st stripe should pass
567         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error
568         # reading of 2nd stripe should fail (this stripe was destroyed)
569         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 && error
570
571         # now, recreating test file
572         dd if=/dev/zero of=$DIR1/$tfile bs=1024k count=2 || error
573         # reading of 1st stripe should pass
574         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 || error
575         # reading of 2nd stripe should pass
576         dd if=$DIR2/$tfile of=/dev/null bs=1024k count=1 skip=1 || error
577 }
578 run_test 28 "read/write/truncate file with lost stripes"
579
580 test_29() { # bug 10999
581         touch $DIR1/$tfile
582         #define OBD_FAIL_LDLM_GLIMPSE  0x30f
583         lctl set_param fail_loc=0x8000030f
584         ls -l $DIR2/$tfile &
585         usleep 500
586         dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1
587         wait
588 }
589 #bug 11549 - permanently turn test off in b1_5
590 run_test 29 "lock put race between glimpse and enqueue ========="
591
592 test_30() { #bug #11110
593     mkdir -p $DIR1/$tdir
594     cp -f /bin/bash $DIR1/$tdir/bash
595     /bin/sh -c 'sleep 1; rm -f $DIR2/$tdir/bash; cp /bin/bash $DIR2/$tdir' &
596     err=$($DIR1/$tdir/bash -c 'sleep 2; openfile -f O_RDONLY /proc/$$/exe >& /dev/null; echo $?')
597     wait
598     [ $err -ne 116 ] && error_ignore 12900 "return code ($err) != -ESTALE" && return
599     true
600 }
601
602 run_test 30 "recreate file race ========="
603
604 test_31a() {
605         mkdir -p $DIR1/$tdir || error "Creating dir $DIR1/$tdir"
606         writes=`LANG=C dd if=/dev/zero of=$DIR/$tdir/$tfile count=1 2>&1 |
607                 awk 'BEGIN { FS="+" } /out/ {print $1}'`
608         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
609         lctl set_param fail_loc=0x314
610         reads=`LANG=C dd if=$DIR2/$tdir/$tfile of=/dev/null 2>&1 |
611                awk 'BEGIN { FS="+" } /in/ {print $1}'`
612         [ $reads -eq $writes ] || error "read" $reads "blocks, must be" $writes
613 }
614 run_test 31a "voluntary cancel / blocking ast race=============="
615
616 test_31b() {
617         remote_ost || { skip "local OST" && return 0; }
618         remote_ost_nodsh && skip "remote OST w/o dsh" && return 0
619         mkdir -p $DIR1/$tdir || error "Creating dir $DIR1/$tdir"
620         lfs setstripe $DIR/$tdir/$tfile -i 0 -c 1
621         cp /etc/hosts $DIR/$tdir/$tfile
622         #define OBD_FAIL_LDLM_CANCEL_BL_CB_RACE   0x314
623         lctl set_param fail_loc=0x314
624         #define OBD_FAIL_LDLM_OST_FAIL_RACE      0x316
625         do_facet ost1 lctl set_param fail_loc=0x316
626         # Don't crash kernel
627         cat $DIR2/$tdir/$tfile > /dev/null 2>&1
628         lctl set_param fail_loc=0
629         do_facet ost1 lctl set_param fail_loc=0
630         # cleanup: reconnect the client back
631         df $DIR2
632 }
633 run_test 31b "voluntary OST cancel / blocking ast race=============="
634
635 # enable/disable lockless truncate feature, depending on the arg 0/1
636 enable_lockless_truncate() {
637         lctl set_param -n osc.*.lockless_truncate $1
638 }
639
640 test_32a() { # bug 11270
641         local p="$TMP/sanityN-$TESTNAME.parameters"
642         save_lustre_params $HOSTNAME osc.*.lockless_truncate > $p
643         cancel_lru_locks osc
644         enable_lockless_truncate 1
645         rm -f $DIR1/$tfile
646         lfs setstripe -c -1 $DIR1/$tfile
647         dd if=/dev/zero of=$DIR1/$tfile count=$OSTCOUNT bs=$STRIPE_BYTES > \
648                 /dev/null 2>&1
649         clear_osc_stats
650
651         log "checking cached lockless truncate"
652         $TRUNCATE $DIR1/$tfile 8000000
653         $CHECKSTAT -s 8000000 $DIR2/$tfile || error "wrong file size"
654         [ $(calc_osc_stats lockless_truncate) -eq 0 ] ||
655                 error "lockless truncate doesn't use cached locks"
656
657         log "checking not cached lockless truncate"
658         $TRUNCATE $DIR2/$tfile 5000000
659         $CHECKSTAT -s 5000000 $DIR1/$tfile || error "wrong file size"
660         [ $(calc_osc_stats lockless_truncate) -ne 0 ] ||
661                 error "not cached trancate isn't lockless"
662
663         log "disabled lockless truncate"
664         enable_lockless_truncate 0
665         clear_osc_stats
666         $TRUNCATE $DIR2/$tfile 3000000
667         $CHECKSTAT -s 3000000 $DIR1/$tfile || error "wrong file size"
668         [ $(calc_osc_stats lockless_truncate) -eq 0 ] ||
669                 error "lockless truncate disabling failed"
670         rm $DIR1/$tfile
671         # restore lockless_truncate default values
672         restore_lustre_params < $p
673         rm -f $p
674 }
675 run_test 32a "lockless truncate"
676
677 test_32b() { # bug 11270
678         remote_ost_nodsh && skip "remote OST with nodsh" && return
679
680         local node
681         local p="$TMP/sanityN-$TESTNAME.parameters"
682         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
683         for node in $(osts_nodes); do
684                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
685                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
686                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
687         done
688         clear_osc_stats
689         # agressive lockless i/o settings
690         for node in $(osts_nodes); do
691                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 2000000; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 0; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 60'
692         done
693         lctl set_param -n osc.*.contention_seconds 60
694         for i in $(seq 5); do
695                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > /dev/null 2>&1
696                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > /dev/null 2>&1
697         done
698         [ $(calc_osc_stats lockless_write_bytes) -ne 0 ] || error "lockless i/o was not triggered"
699         # disable lockless i/o (it is disabled by default)
700         for node in $(osts_nodes); do
701                 do_node $node 'lctl set_param -n ldlm.namespaces.filter-*.max_nolock_bytes 0; lctl set_param -n ldlm.namespaces.filter-*.contended_locks 32; lctl set_param -n ldlm.namespaces.filter-*.contention_seconds 0'
702         done
703         # set contention_seconds to 0 at client too, otherwise Lustre still
704         # remembers lock contention
705         lctl set_param -n osc.*.contention_seconds 0
706         clear_osc_stats
707         for i in $(seq 1); do
708                 dd if=/dev/zero of=$DIR1/$tfile bs=4k count=1 conv=notrunc > /dev/null 2>&1
709                 dd if=/dev/zero of=$DIR2/$tfile bs=4k count=1 conv=notrunc > /dev/null 2>&1
710         done
711         [ $(calc_osc_stats lockless_write_bytes) -eq 0 ] ||
712                 error "lockless i/o works when disabled"
713         rm -f $DIR1/$tfile
714         restore_lustre_params <$p
715         rm -f $p
716 }
717 run_test 32b "lockless i/o"
718
719 print_jbd_stat () {
720     local dev
721     local mdts=$(get_facets MDS)
722     local varcvs
723     local mds
724
725     local stat=0
726     for mds in ${mdts//,/ }; do
727         varsvc=${mds}_svc
728         dev=$(basename $(do_facet $mds lctl get_param -n osd*.${!varsvc}.mntdev))
729         val=$(do_facet $mds "procfile=/proc/fs/jbd/$dev/info;
730 [ -f \\\$procfile ] || procfile=/proc/fs/jbd2/$dev/info;
731 [ -f \\\$procfile ] || procfile=/proc/fs/jbd2/${dev}\:\\\*/info;
732 cat \\\$procfile | head -1;")
733         val=${val%% *};
734         stat=$(( stat + val))
735     done
736     echo $stat
737 }
738
739 # commit on sharing tests
740 test_33a() {
741     remote_mds_nodsh && skip "remote MDS with nodsh" && return
742
743     [ -n "$CLIENTS" ] || { skip "Need two or more clients" && return 0; }
744     [ $CLIENTCOUNT -ge 2 ] || \
745         { skip "Need two or more clients, have $CLIENTCOUNT" && return 0; }
746
747     local nfiles=${TEST33_NFILES:-10000}
748     local param_file=$TMP/$tfile-params
749
750     save_lustre_params $(comma_list $(mdts_nodes)) "mdt.*.commit_on_sharing" > $param_file
751
752     local COS
753     local jbdold
754     local jbdnew
755     local jbd
756
757     for COS in 0 1; do
758         do_facet $SINGLEMDS lctl set_param mdt.*.commit_on_sharing=$COS
759         avgjbd=0
760         avgtime=0
761         for i in 1 2 3; do
762             do_nodes $CLIENT1,$CLIENT2 "mkdir -p $DIR1/$tdir-\\\$(hostname)-$i"
763
764             jbdold=$(print_jbd_stat)
765             echo "=== START createmany old: $jbdold transaction"
766             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")
767             jbdnew=$(print_jbd_stat)
768             jbd=$(( jbdnew - jbdold ))
769             echo "=== END   createmany new: $jbdnew transaction :  $jbd transactions  nfiles $nfiles time $elapsed COS=$COS"
770             avgjbd=$(( avgjbd + jbd ))
771             avgtime=$(( avgtime + elapsed ))
772         done
773         eval cos${COS}_jbd=$((avgjbd / 3))
774         eval cos${COS}_time=$((avgtime / 3))
775     done
776
777     echo "COS=0 transactions (avg): $cos0_jbd  time (avg): $cos0_time"
778     echo "COS=1 transactions (avg): $cos1_jbd  time (avg): $cos1_time"
779     [ "$cos0_jbd" != 0 ] && echo "COS=1 vs COS=0 jbd:  $((((cos1_jbd/cos0_jbd - 1)) * 100 )) %"
780     [ "$cos0_time" != 0 ] && echo "COS=1 vs COS=0 time: $((((cos1_time/cos0_time - 1)) * 100 )) %"
781
782     restore_lustre_params < $param_file
783     rm -f $param_file
784     return 0
785 }
786 run_test 33a "commit on sharing, cross crete/delete, 2 clients, benchmark"
787
788 # End commit on sharing tests
789
790 get_ost_lock_timeouts() {
791     local nodes=${1:-$(comma_list $(osts_nodes))}
792
793     local locks=$(do_nodes $nodes \
794         "lctl get_param -n ldlm.namespaces.filter-*.lock_timeouts" | calc_sum)
795
796     echo $locks
797 }
798
799 test_34() { #16129
800         local OPER
801         local lock_in
802         local lock_out
803         for OPER in notimeout timeout ; do
804                 rm $DIR1/$tfile 2>/dev/null
805                 lock_in=$(get_ost_lock_timeouts)
806                 if [ $OPER == "timeout" ] ; then
807                         for j in `seq $OSTCOUNT`; do
808                                 #define OBD_FAIL_PTLRPC_HPREQ_TIMEOUT    0x511
809                                 do_facet ost$j lctl set_param fail_loc=0x511
810                         done
811                         echo lock should expire
812                 else
813                         for j in `seq $OSTCOUNT`; do
814                                 #define OBD_FAIL_PTLRPC_HPREQ_NOTIMEOUT  0x512
815                                 do_facet ost$j lctl set_param fail_loc=0x512
816                         done
817                         echo lock should not expire
818                 fi
819                 echo writing on client1
820                 dd if=/dev/zero of=$DIR1/$tfile count=100 conv=notrunc > /dev/null 2>&1
821                 sync &
822                 echo reading on client2
823                 dd of=/dev/null if=$DIR2/$tfile > /dev/null 2>&1
824                 # wait for a lock timeout
825                 sleep 4
826                 lock_out=$(get_ost_lock_timeouts)
827                 if [ $OPER == "timeout" ] ; then
828                         if [ $lock_in == $lock_out ]; then
829                                 error "no lock timeout happened"
830                         else
831                                 echo "success"
832                         fi
833                 else
834                         if [ $lock_in != $lock_out ]; then
835                                 error "lock timeout happened"
836                         else
837                                 echo "success"
838                         fi
839                 fi
840         done
841 }
842 run_test 34 "no lock timeout under IO"
843
844 test_35() { # bug 17645
845         local generation=[]
846         local count=0
847         for imp in /proc/fs/lustre/mdc/$FSNAME-MDT*-mdc-*; do
848             g=$(awk '/generation/{print $2}' $imp/import)
849             generation[count]=$g
850             let count=count+1
851         done
852
853         mkdir -p $MOUNT1/$tfile
854         cancel_lru_locks mdc
855
856         # Let's initiate -EINTR situation by setting fail_loc and take
857         # write lock on same file from same client. This will not cause
858         # bl_ast yet as lock is already in local cache.
859 #define OBD_FAIL_LDLM_INTR_CP_AST        0x317
860         do_facet client "lctl set_param fail_loc=0x80000317"
861         local timeout=`do_facet $SINGLEMDS lctl get_param  -n timeout`
862         let timeout=timeout*3
863         local nr=0
864         while test $nr -lt 10; do
865                 log "Race attempt $nr"
866                 local blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
867                 test "x$blk1" = "x" && blk1=0
868                 createmany -o $MOUNT2/$tfile/a 4000 &
869                 pid1=$!
870                 sleep 1
871
872                 # Let's make conflict and bl_ast
873                 ls -la $MOUNT1/$tfile > /dev/null &
874                 pid2=$!
875
876                 log "Wait for $pid1 $pid2 for $timeout sec..."
877                 sleep $timeout
878                 kill -9 $pid1 $pid2 > /dev/null 2>&1
879                 wait
880                 local blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
881                 test "x$blk2" = "x" && blk2=0
882                 test $blk2 -gt $blk1 && break
883                 rm -fr $MOUNT1/$tfile/*
884                 cancel_lru_locks mdc
885                 let nr=nr+1
886         done
887         do_facet client "lctl set_param fail_loc=0x0"
888         df -h $MOUNT1 $MOUNT2
889         count=0
890         for imp in /proc/fs/lustre/mdc/$FSNAME-MDT*-mdc-*; do
891             g=$(awk '/generation/{print $2}' $imp/import)
892             if ! test "$g" -eq "${generation[count]}"; then
893                 error "Eviction happened on import $(basename $imp)"
894             fi
895             let count=count+1
896         done
897 }
898 run_test 35 "-EINTR cp_ast vs. bl_ast race does not evict client"
899
900 test_36() { #bug 16417
901     local SIZE
902     local SIZE_B
903     local i
904
905     mkdir -p $DIR1/$tdir
906     $LFS setstripe -c -1 $DIR1/$tdir
907     i=0
908     SIZE=50
909     let SIZE_B=SIZE*1024*1024
910
911     while [ $i -le 10 ]; do
912         lctl mark "start test"
913         local before=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }')
914         dd if=/dev/zero of=$DIR1/$tdir/file000 bs=1M count=$SIZE
915         sync
916         sleep 1
917         local after_dd=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }')
918         multiop_bg_pause $DIR2/$tdir/file000 O_r${SIZE_B}c || return 3
919         read_pid=$!
920         rm -f $DIR1/$tdir/file000
921         kill -USR1 $read_pid
922         wait $read_pid
923         sleep 1
924         local after=$($LFS df | awk '{if ($1 ~/^filesystem/) {print $5; exit} }')
925         echo "*** cycle($i) *** before($before):after_dd($after_dd):after($after)"
926         # this free space! not used
927         if [ $after_dd -ge $after ]; then
928             error "space leaked"
929             return 1;
930         fi
931         let i=i+1
932             done
933 }
934 run_test 36 "handle ESTALE/open-unlink corectly"
935
936 test_37() { # bug 18695
937         mkdir -p $DIR1/$tdir
938         multiop_bg_pause $DIR1/$tdir D_c || return 1
939         MULTIPID=$!
940         # create large directory (32kB seems enough from e2fsck, ~= 1000 files)
941         createmany -m $DIR2/$tdir/f 10000
942         # set mtime/atime backward
943         touch -t 198001010000 $DIR2/$tdir
944         kill -USR1 $MULTIPID
945         nr_files=`lfs find $DIR1/$tdir -type f | wc -l`
946         [ $nr_files -eq 10000 ] || error "$nr_files != 10000 truncated directory?"
947
948 }
949 run_test 37 "check i_size is not updated for directory on close (bug 18695) =============="
950
951 # this should be set to past
952 TEST_39_MTIME=`date -d "1 year ago" +%s`
953
954 # bug 11063
955 test_39a() {
956         local client1=${CLIENT1:-`hostname`}
957         local client2=${CLIENT2:-`hostname`}
958
959         do_node $client1 "touch $DIR1/$tfile"
960
961         do_node $client1 "touch -m -d @$TEST_39_MTIME $DIR1/$tfile"
962         local mtime1=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
963         [ "$mtime1" = $TEST_39_MTIME ] || \
964                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
965
966         local d1=`do_node $client1 date +%s`
967         do_node $client1 'echo hello >> '$DIR1/$tfile
968         local d2=`do_node $client1 date +%s`
969
970         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
971         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
972                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
973
974         do_node $client1 "mv $DIR1/$tfile $DIR1/$tfile-1"
975
976         for (( i=0; i < 2; i++ )) ; do
977                 local mtime3=`do_node $client2 "stat -c %Y $DIR1/$tfile-1"`
978                 [ "$mtime2" = "$mtime3" ] || \
979                         error "mtime ($mtime2) changed (to $mtime3) on rename"
980
981                 cancel_lru_locks osc
982                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
983         done
984 }
985 run_test 39a "test from 11063 =================================="
986
987 test_39b() {
988         local client1=${CLIENT1:-`hostname`}
989         local client2=${CLIENT2:-`hostname`}
990
991         touch $DIR1/$tfile
992
993         local mtime1=`stat -c %Y $DIR1/$tfile`
994         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
995
996         sleep 1
997         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
998
999         for (( i=0; i < 2; i++ )) ; do
1000                 local mtime3=`stat -c %Y $DIR1/$tfile`
1001                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1002
1003                 [ "$mtime3" = "$mtime4" ] || \
1004                         error "different mtime on clients: $mtime3, $mtime4"
1005                 [ "$mtime3" = $TEST_39_MTIME ] || \
1006                         error "lost mtime: $mtime3, should be $TEST_39_MTIME"
1007
1008                 cancel_lru_locks osc
1009                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1010         done
1011 }
1012 run_test 39b "11063 problem 1 =================================="
1013
1014 test_39c() {
1015         local client1=${CLIENT1:-`hostname`}
1016         local client2=${CLIENT2:-`hostname`}
1017
1018         echo hello > $DIR1/$tfile
1019
1020         local mtime1=`stat -c %Y $DIR1/$tfile`
1021         local mtime2=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1022         [ "$mtime1" = "$mtime2" ] || \
1023                 error "create: different mtime on clients: $mtime1, $mtime2"
1024
1025         sleep 1
1026         $TRUNCATE $DIR1/$tfile 1
1027
1028         for (( i=0; i < 2; i++ )) ; do
1029                 local mtime3=`stat -c %Y $DIR1/$tfile`
1030                 local mtime4=`do_node $client2 "stat -c %Y $DIR1/$tfile"`
1031
1032                 [ "$mtime3" = "$mtime4" ] || \
1033                         error "different mtime on clients: $mtime3, $mtime4"
1034                 [ "$mtime3" -gt $mtime2 ] || \
1035                         error "truncate did not update mtime: $mtime2, $mtime3"
1036
1037                 cancel_lru_locks osc
1038                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
1039         done
1040 }
1041 run_test 39c "check truncate mtime update ======================"
1042
1043 # check that pid exists hence second operation wasn't blocked by first one
1044 # if it is so then there is no conflict, return 0
1045 # else second operation is conflicting with first one, return 1
1046 check_pdo_conflict() {
1047         local pid=$1
1048         local conflict=0
1049         sleep 1 # to ensure OP1 is finished on client if OP2 is blocked by OP1
1050         if [[ `ps --pid $pid | wc -l` == 1 ]]; then
1051                 conflict=1
1052                 echo "Conflict"
1053         else
1054                 echo "No conflict"
1055         fi
1056         return $conflict
1057 }
1058
1059 # pdirop tests
1060 # test 40: check non-blocking operations
1061 test_40a() {
1062 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1063         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1064         mkdir $DIR1/$tfile &
1065         PID1=$!
1066         sleep 1
1067         touch $DIR2/$tfile-2
1068         check_pdo_conflict $PID1 || error "create is blocked"
1069         mkdir $DIR2/$tfile-3
1070         check_pdo_conflict $PID1 || error "mkdir is blocked"
1071         link $DIR2/$tfile-2 $DIR2/$tfile-4
1072         check_pdo_conflict $PID1 || error "link is blocked"
1073         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1074         check_pdo_conflict $PID1 || error "rename is blocked"
1075         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1076         check_pdo_conflict $PID1 || error "getattr is blocked"
1077         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1078         rmdir $DIR2/$tfile-3
1079         check_pdo_conflict $PID1 || error "unlink is blocked"
1080         # all operations above shouldn't wait the first one
1081         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1082         wait $PID1
1083         rm -r $DIR1/*
1084         return 0
1085 }
1086 run_test 40a "pdirops: create vs others =============="
1087
1088 test_40b() {
1089 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1090         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1091         touch $DIR1/$tfile &
1092         PID1=$!
1093         sleep 1
1094         # open|create
1095         touch $DIR2/$tfile-2
1096         check_pdo_conflict $PID1 || error "create is blocked"
1097         mkdir $DIR2/$tfile-3
1098         check_pdo_conflict $PID1 || error "mkdir is blocked"
1099         link $DIR2/$tfile-2 $DIR2/$tfile-4
1100         check_pdo_conflict $PID1 || error "link is blocked"
1101         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1102         check_pdo_conflict $PID1 || error "rename is blocked"
1103         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1104         check_pdo_conflict $PID1 || error "getattr is blocked"
1105         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1106         rmdir $DIR2/$tfile-3
1107         check_pdo_conflict $PID1 || error "unlink is blocked"
1108         # all operations above shouldn't wait the first one
1109         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1110         wait $PID1
1111         rm -r $DIR1/*
1112         return 0
1113 }
1114 run_test 40b "pdirops: open|create and others =============="
1115
1116 test_40c() {
1117         touch $DIR1/$tfile
1118 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1119         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1120         link $DIR1/$tfile $DIR1/$tfile-0 &
1121         PID1=$!
1122         sleep 1
1123         # open|create
1124         touch $DIR2/$tfile-2
1125         check_pdo_conflict $PID1 || error "create is blocked"
1126         mkdir $DIR2/$tfile-3
1127         check_pdo_conflict $PID1 || error "mkdir is blocked"
1128         link $DIR2/$tfile-2 $DIR2/$tfile-4
1129         check_pdo_conflict $PID1 || error "link is blocked"
1130         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1131         check_pdo_conflict $PID1 || error "rename is blocked"
1132         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1133         check_pdo_conflict $PID1 || error "getattr is blocked"
1134         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1135         rmdir $DIR2/$tfile-3
1136         check_pdo_conflict $PID1 || error "unlink is blocked"
1137         # all operations above shouldn't wait the first one
1138         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1139         wait $PID1
1140         rm -r $DIR1/*
1141         return 0
1142 }
1143 run_test 40c "pdirops: link and others =============="
1144
1145 test_40d() {
1146         touch $DIR1/$tfile
1147 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1148         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1149         rm $DIR1/$tfile &
1150         PID1=$!
1151         sleep 1
1152         # open|create
1153         touch $DIR2/$tfile-2
1154         check_pdo_conflict $PID1 || error "create is blocked"
1155         mkdir $DIR2/$tfile-3
1156         check_pdo_conflict $PID1 || error "mkdir is blocked"
1157         link $DIR2/$tfile-2 $DIR2/$tfile-4
1158         check_pdo_conflict $PID1 || error "link is blocked"
1159         mv $DIR2/$tfile-2 $DIR2/$tfile-5
1160         check_pdo_conflict $PID1 || error "rename is blocked"
1161         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1162         check_pdo_conflict $PID1 || error "getattr is blocked"
1163         rm $DIR2/$tfile-4 $DIR2/$tfile-5
1164         rmdir $DIR2/$tfile-3
1165         check_pdo_conflict $PID1 || error "unlink is blocked"
1166         # all operations above shouldn't wait the first one
1167         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1168         wait $PID1
1169         return 0
1170 }
1171 run_test 40d "pdirops: unlink and others =============="
1172
1173 test_40e() {
1174         touch $DIR1/$tfile
1175 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1176         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1177         mv $DIR1/$tfile $DIR1/$tfile-0 &
1178         PID1=$!
1179         sleep 1
1180         # open|create
1181         touch $DIR2/$tfile-2
1182         check_pdo_conflict $PID1 || error "create is blocked"
1183         mkdir $DIR2/$tfile-3
1184         check_pdo_conflict $PID1 || error "mkdir is blocked"
1185         link $DIR2/$tfile-2 $DIR2/$tfile-4
1186         check_pdo_conflict $PID1 || error "link is blocked"
1187         stat $DIR2/$tfile-3 $DIR2/$tfile-4 > /dev/null
1188         check_pdo_conflict $PID1 || error "getattr is blocked"
1189         rm $DIR2/$tfile-4 $DIR2/$tfile-2
1190         rmdir $DIR2/$tfile-3
1191         check_pdo_conflict $PID1 || error "unlink is blocked"
1192         # all operations above shouldn't wait the first one
1193         check_pdo_conflict $PID1 || error "parallel operation is blocked"
1194         wait $PID1
1195         rm -r $DIR1/*
1196         return 0
1197 }
1198 run_test 40e "pdirops: rename and others =============="
1199
1200 # test 41: create blocking operations
1201 test_41a() {
1202 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1203         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1204         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1205         PID1=$!
1206         sleep 1
1207         mkdir $DIR2/$tfile && error "mkdir must fail"
1208         check_pdo_conflict $PID1 && { wait $PID1; echo "mkdir isn't blocked"; }
1209         rm -r $DIR1/*
1210         return 0
1211 }
1212 run_test 41a "pdirops: create vs mkdir =============="
1213
1214 test_41b() {
1215 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1216         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1217         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1218         PID1=$!
1219         sleep 1
1220         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail"
1221         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1222         rm -r $DIR1/*
1223         return 0
1224 }
1225 run_test 41b "pdirops: create vs create =============="
1226
1227 test_41c() {
1228         touch $DIR1/$tfile-2
1229 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1230         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1231         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1232         PID1=$!
1233         sleep 1
1234         link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail"
1235         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1236         rm -r $DIR1/*
1237         return 0
1238 }
1239 run_test 41c "pdirops: create vs link =============="
1240
1241 test_41d() {
1242 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1243         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1244         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1245         PID1=$!
1246         sleep 1
1247         rm $DIR2/$tfile || error "unlink must succeed"
1248         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1249         rm -r $DIR1/*
1250         return 0
1251 }
1252 run_test 41d "pdirops: create vs unlink =============="
1253
1254 test_41e() {
1255         touch $DIR1/$tfile-2
1256 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1257         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1258         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1259         PID1=$!
1260         sleep 1
1261         mv $DIR2/$tfile-2 $DIR2/$tfile || error "rename must succeed"
1262         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1263         rm -r $DIR1/*
1264         return 0
1265 }
1266 run_test 41e "pdirops: create and rename (tgt) =============="
1267
1268 test_41f() {
1269 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1270         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1271         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1272         PID1=$!
1273         sleep 1
1274         mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed"
1275         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1276         rm -r $DIR1/*
1277         return 0
1278 }
1279 run_test 41f "pdirops: create and rename (src) =============="
1280
1281 test_41g() {
1282 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1283         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1284         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1285         PID1=$!
1286         sleep 1
1287         stat $DIR2/$tfile > /dev/null || error "stat must succeed"
1288         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1289         rm -r $DIR1/*
1290         return 0
1291 }
1292 run_test 41g "pdirops: create vs getattr =============="
1293
1294 test_41h() {
1295 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1296         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1297         multiop $DIR1/$tfile oO_CREAT:O_RDWR:c &
1298         PID1=$!
1299         sleep 1
1300         ls -lia $DIR2/ > /dev/null
1301         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1302         rm -r $DIR1/*
1303         return 0
1304 }
1305 run_test 41h "pdirops: create vs readdir =============="
1306
1307 # test 42: unlink and blocking operations
1308 test_42a() {
1309 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1310         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1311         mkdir $DIR1/$tfile &
1312         PID1=$!
1313         sleep 1
1314         mkdir $DIR2/$tfile && error "mkdir must fail"
1315         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1316         rm -r $DIR1/*
1317         return 0
1318 }
1319 run_test 42a "pdirops: mkdir vs mkdir =============="
1320
1321 test_42b() {
1322 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1323         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1324         mkdir $DIR1/$tfile &
1325         PID1=$!
1326         sleep 1
1327         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail"
1328         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1329         rm -r $DIR1/*
1330         return 0
1331 }
1332 run_test 42b "pdirops: mkdir vs create =============="
1333
1334 test_42c() {
1335         touch $DIR1/$tfile-2
1336 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1337         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1338         mkdir $DIR1/$tfile &
1339         PID1=$!
1340         sleep 1
1341         link $DIR2/$tfile-2 $DIR2/$tfile && error "link must fail"
1342         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1343         rm -r $DIR1/*
1344         return 0
1345 }
1346 run_test 42c "pdirops: mkdir vs link =============="
1347
1348 test_42d() {
1349 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1350         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1351         mkdir $DIR1/$tfile &
1352         PID1=$!
1353         sleep 1
1354         rmdir $DIR2/$tfile || error "unlink must succeed"
1355         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1356         rm -r $DIR1/*
1357         return 0
1358 }
1359 run_test 42d "pdirops: mkdir vs unlink =============="
1360
1361 test_42e() {
1362         touch $DIR1/$tfile-2
1363 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1364         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1365         mkdir $DIR1/$tfile &
1366         PID1=$!
1367         sleep 1
1368         mv -T $DIR2/$tfile-2 $DIR2/$tfile && error "rename must fail"
1369         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1370         rm -r $DIR1/*
1371         return 0
1372 }
1373 run_test 42e "pdirops: mkdir and rename (tgt) =============="
1374
1375 test_42f() {
1376 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1377         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1378         mkdir $DIR1/$tfile &
1379         PID1=$!
1380         sleep 1
1381         mv $DIR2/$tfile $DIR2/$tfile-2 || error "rename must succeed"
1382         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1383         rm -r $DIR1/*
1384         return 0
1385 }
1386 run_test 42f "pdirops: mkdir and rename (src) =============="
1387
1388 test_42g() {
1389 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1390         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1391         mkdir $DIR1/$tfile &
1392         PID1=$!
1393         sleep 1
1394         stat $DIR2/$tfile > /dev/null || error "stat must succeed"
1395         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1396         rm -r $DIR1/*
1397         return 0
1398 }
1399 run_test 42g "pdirops: mkdir vs getattr =============="
1400
1401 test_42h() {
1402 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1403         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1404         mkdir $DIR1/$tfile &
1405         PID1=$!
1406         sleep 1
1407         ls -lia $DIR2/ > /dev/null
1408         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1409         rm -r $DIR1/*
1410         return 0
1411 }
1412 run_test 42h "pdirops: mkdir vs readdir =============="
1413
1414 # test 43: unlink and blocking operations
1415 test_43a() {
1416         touch $DIR1/$tfile
1417 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1418         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1419         rm $DIR1/$tfile &
1420         PID1=$!
1421         sleep 1
1422         mkdir $DIR2/$tfile || error "mkdir must succeed"
1423         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1424         rm -r $DIR1/*
1425         return 0
1426 }
1427 run_test 43a "pdirops: unlink vs mkdir =============="
1428
1429 test_43b() {
1430         touch $DIR1/$tfile
1431 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1432         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1433         rm $DIR1/$tfile &
1434         PID1=$!
1435         sleep 1
1436         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed"
1437         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1438         rm -r $DIR1/*
1439         return 0
1440 }
1441 run_test 43b "pdirops: unlink vs create =============="
1442
1443 test_43c() {
1444         touch $DIR1/$tfile
1445         touch $DIR1/$tfile-2
1446 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1447         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1448         rm $DIR1/$tfile &
1449         PID1=$!
1450         sleep 1
1451         link $DIR2/$tfile-2 $DIR2/$tfile || error "link must succeed"
1452         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1453         rm -r $DIR1/*
1454         return 0
1455 }
1456 run_test 43c "pdirops: unlink vs link =============="
1457
1458 test_43d() {
1459         touch $DIR1/$tfile
1460 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1461         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1462         rm $DIR1/$tfile &
1463         PID1=$!
1464         sleep 1
1465         rm $DIR2/$tfile && error "unlink must fail"
1466         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1467         rm -r $DIR1/*
1468         return 0
1469 }
1470 run_test 43d "pdirops: unlink vs unlink =============="
1471
1472 test_43e() {
1473         touch $DIR1/$tfile
1474         touch $DIR1/$tfile-2
1475 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1476         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1477         rm $DIR1/$tfile &
1478         PID1=$!
1479         sleep 1
1480         mv -u $DIR2/$tfile-2 $DIR2/$tfile || error "rename must succeed"
1481         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1482         rm -r $DIR1/*
1483         return 0
1484 }
1485 run_test 43e "pdirops: unlink and rename (tgt) =============="
1486
1487 test_43f() {
1488         touch $DIR1/$tfile
1489 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1490         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1491         rm $DIR1/$tfile &
1492         PID1=$!
1493         sleep 1
1494         mv $DIR2/$tfile $DIR2/$tfile-2 && error "rename must fail"
1495         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1496         rm -r $DIR1/*
1497         return 0
1498 }
1499 run_test 43f "pdirops: unlink and rename (src) =============="
1500
1501 test_43g() {
1502         touch $DIR1/$tfile
1503 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1504         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1505         rm $DIR1/$tfile &
1506         PID1=$!
1507         sleep 1
1508         stat $DIR2/$tfile > /dev/null && error "stat must fail"
1509         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1510         rm -r $DIR1/*
1511         return 0
1512 }
1513 run_test 43g "pdirops: unlink vs getattr =============="
1514
1515 test_43h() {
1516         touch $DIR1/$tfile
1517 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1518         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1519         rm $DIR1/$tfile &
1520         PID1=$!
1521         sleep 1
1522         ls -lia $DIR2/ > /dev/null
1523         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1524         rm -r $DIR1/*
1525         return 0
1526 }
1527 run_test 43h "pdirops: unlink vs readdir =============="
1528
1529 # test 44: rename tgt and blocking operations
1530 test_44a() {
1531         touch $DIR1/$tfile-2
1532 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2   0x146
1533         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1534         mv $DIR1/$tfile-2 $DIR1/$tfile &
1535         PID1=$!
1536         sleep 1
1537         mkdir $DIR2/$tfile && error "mkdir must fail"
1538         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1539         rm -r $DIR1/*
1540         return 0
1541 }
1542 run_test 44a "pdirops: rename tgt vs mkdir =============="
1543
1544 test_44b() {
1545         touch $DIR1/$tfile-2
1546 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1547         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1548         mv $DIR1/$tfile-2 $DIR1/$tfile &
1549         PID1=$!
1550         sleep 1
1551         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail"
1552         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1553         rm -r $DIR1/*
1554         return 0
1555 }
1556 run_test 44b "pdirops: rename tgt vs create =============="
1557
1558 test_44c() {
1559         touch $DIR1/$tfile-2
1560         touch $DIR1/$tfile-3
1561 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1562         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1563         mv $DIR1/$tfile-2 $DIR1/$tfile &
1564         PID1=$!
1565         sleep 1
1566         link $DIR2/$tfile-3 $DIR2/$tfile && error "link must fail"
1567         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1568         rm -r $DIR1/*
1569         return 0
1570 }
1571 run_test 44c "pdirops: rename tgt vs link =============="
1572
1573 test_44d() {
1574         touch $DIR1/$tfile-2
1575 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1576         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1577         mv $DIR1/$tfile-2 $DIR1/$tfile &
1578         PID1=$!
1579         sleep 1
1580         rm $DIR2/$tfile || error "unlink must succeed"
1581         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1582         rm -r $DIR1/*
1583         return 0
1584 }
1585 run_test 44d "pdirops: rename tgt vs unlink =============="
1586
1587 test_44e() {
1588         touch $DIR1/$tfile
1589         touch $DIR1/$tfile-2
1590         touch $DIR1/$tfile-3
1591 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1592         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1593         mv $DIR1/$tfile-2 $DIR1/$tfile &
1594         PID1=$!
1595         sleep 1
1596         mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed"
1597         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1598         rm -r $DIR1/*
1599         return 0
1600 }
1601 run_test 44e "pdirops: rename tgt and rename (tgt) =============="
1602
1603 test_44f() {
1604         touch $DIR1/$tfile-2
1605         touch $DIR1/$tfile-3
1606 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1607         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1608         mv $DIR1/$tfile-2 $DIR1/$tfile &
1609         PID1=$!
1610         sleep 1
1611         mv $DIR2/$tfile $DIR2/$tfile-3 || error "rename must succeed"
1612         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1613         rm -r $DIR1/*
1614         return 0
1615 }
1616 run_test 44f "pdirops: rename tgt and rename (src) =============="
1617
1618 test_44g() {
1619         touch $DIR1/$tfile-2
1620 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1621         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1622         mv $DIR1/$tfile-2 $DIR1/$tfile &
1623         PID1=$!
1624         sleep 1
1625         stat $DIR2/$tfile > /dev/null || error "stat must succeed"
1626         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1627         rm -r $DIR1/*
1628         return 0
1629 }
1630 run_test 44g "pdirops: rename tgt vs getattr =============="
1631
1632 test_44h() {
1633         touch $DIR1/$tfile-2
1634 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK2    0x146
1635         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000146
1636         mv $DIR1/$tfile-2 $DIR1/$tfile &
1637         PID1=$!
1638         sleep 1
1639         ls -lia $DIR2/ > /dev/null
1640         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1641         rm -r $DIR1/*
1642         return 0
1643 }
1644 run_test 44h "pdirops: rename tgt vs readdir =============="
1645
1646 # test 45: rename src and blocking operations
1647 test_45a() {
1648         touch $DIR1/$tfile
1649 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1650         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1651         mv $DIR1/$tfile $DIR1/$tfile-2 &
1652         PID1=$!
1653         sleep 1
1654         mkdir $DIR2/$tfile || error "mkdir must succeed"
1655         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1656         rm -r $DIR1/*
1657         return 0
1658 }
1659 run_test 45a "pdirops: rename src vs mkdir =============="
1660
1661 test_45b() {
1662         touch $DIR1/$tfile
1663 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1664         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1665         mv $DIR1/$tfile $DIR1/$tfile-2 &
1666         PID1=$!
1667         sleep 1
1668         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c || error "create must succeed"
1669         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1670         rm -r $DIR1/*
1671         return 0
1672 }
1673 run_test 45b "pdirops: rename src vs create =============="
1674
1675 test_45c() {
1676         touch $DIR1/$tfile
1677         touch $DIR1/$tfile-3
1678 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1679         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1680         mv $DIR1/$tfile $DIR1/$tfile-2 &
1681         PID1=$!
1682         sleep 1
1683         link $DIR2/$tfile-3 $DIR2/$tfile || error "link must succeed"
1684         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1685         rm -r $DIR1/*
1686         return 0
1687 }
1688 run_test 45c "pdirops: rename src vs link =============="
1689
1690 test_45d() {
1691         touch $DIR1/$tfile
1692 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1693         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1694         mv $DIR1/$tfile $DIR1/$tfile-2 &
1695         PID1=$!
1696         sleep 1
1697         rm $DIR2/$tfile && error "unlink must fail"
1698         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1699         rm -r $DIR1/*
1700         return 0
1701 }
1702 run_test 45d "pdirops: rename src vs unlink =============="
1703
1704 test_45e() {
1705         touch $DIR1/$tfile
1706         touch $DIR1/$tfile-3
1707 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1708         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1709         mv $DIR1/$tfile $DIR1/$tfile-2 &
1710         PID1=$!
1711         sleep 1
1712         mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed"
1713         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1714         rm -r $DIR1/*
1715         return 0
1716 }
1717 run_test 45e "pdirops: rename src and rename (tgt) =============="
1718
1719 test_45f() {
1720         touch $DIR1/$tfile
1721 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1722         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1723         mv $DIR1/$tfile $DIR1/$tfile-2 &
1724         PID1=$!
1725         sleep 1
1726         mv $DIR2/$tfile $DIR2/$tfile-3 && error "rename must fail"
1727         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1728         rm -r $DIR1/*
1729         return 0
1730 }
1731 run_test 45f "pdirops: rename src and rename (src) =============="
1732
1733 test_45g() {
1734         touch $DIR1/$tfile
1735 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1736         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1737         mv $DIR1/$tfile $DIR1/$tfile-2 &
1738         PID1=$!
1739         sleep 1
1740         stat $DIR2/$tfile > /dev/null && "stat must fail"
1741         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1742         rm -r $DIR1/*
1743         return 0
1744 }
1745 run_test 45g "pdirops: rename src vs getattr =============="
1746
1747 test_45h() {
1748         touch $DIR1/$tfile
1749 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1750         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1751         mv $DIR1/$tfile $DIR1/$tfile-2 &
1752         PID1=$!
1753         sleep 1
1754         ls -lia $DIR2/ > /dev/null
1755         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1756         rm -r $DIR1/*
1757         return 0
1758 }
1759 run_test 45h "pdirops: unlink vs readdir =============="
1760
1761 # test 46: link and blocking operations
1762 test_46a() {
1763         touch $DIR1/$tfile-2
1764 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1765         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1766         link $DIR1/$tfile-2 $DIR1/$tfile &
1767         PID1=$!
1768         sleep 1
1769         mkdir $DIR2/$tfile && error "mkdir must fail"
1770         check_pdo_conflict $PID1 && { wait $PID1; error "mkdir isn't blocked"; }
1771         rm -r $DIR1/*
1772         return 0
1773 }
1774 run_test 46a "pdirops: link vs mkdir =============="
1775
1776 test_46b() {
1777         touch $DIR1/$tfile-2
1778 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1779         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1780         link $DIR1/$tfile-2 $DIR1/$tfile &
1781         PID1=$!
1782         sleep 1
1783         multiop $DIR2/$tfile oO_CREAT:O_EXCL:c && error "create must fail"
1784         check_pdo_conflict $PID1 && { wait $PID1; error "create isn't blocked"; }
1785         rm -r $DIR1/*
1786         return 0
1787 }
1788 run_test 46b "pdirops: link vs create =============="
1789
1790 test_46c() {
1791         touch $DIR1/$tfile-2
1792 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1793         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1794         link $DIR1/$tfile-2 $DIR1/$tfile &
1795         PID1=$!
1796         sleep 1
1797         link $DIR2/$tfile $DIR2/$tfile && error "link must fail"
1798         check_pdo_conflict $PID1 && { wait $PID1; error "link isn't blocked"; }
1799         rm -r $DIR1/*
1800         return 0
1801 }
1802 run_test 46c "pdirops: link vs link =============="
1803
1804 test_46d() {
1805         touch $DIR1/$tfile-2
1806 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1807         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1808         link $DIR1/$tfile-2 $DIR1/$tfile &
1809         PID1=$!
1810         sleep 1
1811         rm $DIR2/$tfile || error "unlink must succeed"
1812         check_pdo_conflict $PID1 && { wait $PID1; error "unlink isn't blocked"; }
1813         rm -r $DIR1/*
1814         return 0
1815 }
1816 run_test 46d "pdirops: link vs unlink =============="
1817
1818 test_46e() {
1819         touch $DIR1/$tfile-2
1820         touch $DIR1/$tfile-3
1821 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1822         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1823         link $DIR1/$tfile-2 $DIR1/$tfile &
1824         PID1=$!
1825         sleep 1
1826         mv $DIR2/$tfile-3 $DIR2/$tfile || error "rename must succeed"
1827         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1828         rm -r $DIR1/*
1829         return 0
1830 }
1831 run_test 46e "pdirops: link and rename (tgt) =============="
1832
1833 test_46f() {
1834         touch $DIR1/$tfile-2
1835         touch $DIR1/$tfile-3
1836 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1837         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1838         link $DIR1/$tfile-2 $DIR1/$tfile &
1839         PID1=$!
1840         sleep 1
1841         mv $DIR2/$tfile $DIR2/$tfile-3 || error "rename must succeed"
1842         check_pdo_conflict $PID1 && { wait $PID1; error "rename isn't blocked"; }
1843         rm -r $DIR1/*
1844         return 0
1845 }
1846 run_test 46f "pdirops: link and rename (src) =============="
1847
1848 test_46g() {
1849         touch $DIR1/$tfile-2
1850 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1851         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1852         link $DIR1/$tfile-2 $DIR1/$tfile &
1853         PID1=$!
1854         sleep 1
1855         stat $DIR2/$tfile > /dev/null || error "stat must succeed"
1856         check_pdo_conflict $PID1 && { wait $PID1; error "getattr isn't blocked"; }
1857         rm -r $DIR1/*
1858         return 0
1859 }
1860 run_test 46g "pdirops: link vs getattr =============="
1861
1862 test_46h() {
1863         touch $DIR1/$tfile-2
1864 #define OBD_FAIL_ONCE|OBD_FAIL_MDS_PDO_LOCK    0x145
1865         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000145
1866         link $DIR1/$tfile-2 $DIR1/$tfile &
1867         PID1=$!
1868         sleep 1
1869         ls -lia $DIR2/ > /dev/null
1870         check_pdo_conflict $PID1 && { wait $PID1; error "readdir isn't blocked"; }
1871         rm -r $DIR1/*
1872         return 0
1873 }
1874 run_test 46h "pdirops: link vs readdir =============="
1875
1876 test_50() {
1877         trunc_size=4096
1878         dd if=/dev/zero of=$DIR1/$tfile bs=1K count=10
1879 #define OBD_FAIL_OSC_CP_ENQ_RACE         0x410
1880         do_facet client "lctl set_param fail_loc=0x410"
1881         $TRUNCATE $DIR2/$tfile $trunc_size
1882         do_facet client "lctl set_param fail_loc=0x0"
1883         sleep 3
1884         size=`stat -c %s $DIR2/$tfile`
1885         [ $size -eq $trunc_size ] || error "wrong size"
1886 }
1887 run_test 50 "osc lvb attrs: enqueue vs. CP AST =============="
1888
1889 test_60() {
1890         # Create a file
1891         mkdir -p $DIR1/$tdir
1892         file1=$DIR1/$tdir/file
1893         file2=$DIR2/$tdir/file
1894
1895         echo orig > $file2 || error "Could not create $file2"
1896         version=$($LFS data_version $file1)
1897
1898         # Append data
1899         echo append >> $file2 || error "Could not append to $file2"
1900         version2=$($LFS data_version $file1)
1901         [ "$version" != "$version2" ] ||
1902             error "append did not change data version: $version"
1903
1904         # Overwrite data
1905         echo overwrite > $file2 || error "Could not overwrite $file2"
1906         version3=$($LFS data_version $file1)
1907         [ "$version2" != "$version3" ] ||
1908             error "overwrite did not change data version: $version2"
1909
1910         # Truncate before EOF
1911         $TRUNCATE $file2 3 || error "Could not truncate $file2"
1912         version4=$($LFS data_version $file1)
1913         [ "$version3" != "$version4" ] ||
1914             error "truncate did not change data version: $version3"
1915
1916         # Truncate after EOF
1917         $TRUNCATE $file2 123456 || error "Could not truncate $file2"
1918         version5=$($LFS data_version $file1)
1919         [ "$version4" != "$version5" ] ||
1920             error "truncate did not change data version: $version4"
1921
1922         # Chmod do not change version
1923         chmod 400 $file2 || error "Could not chmod 400 $file2"
1924         version6=$($LFS data_version $file1)
1925         [ "$version5" == "$version6" ] ||
1926             error "chmod should not change data version: $version5 != $version6"
1927
1928         # Chown do not change version
1929         chown $TSTUSR $file2 || error "Could not chown $TSTUSR $file2"
1930         version7=$($LFS data_version $file1)
1931         [ "$version5" == "$version7" ] ||
1932             error "chown should not change data version: $version5 != $version7"
1933 }
1934 run_test 60 "Verify data_version behaviour"
1935
1936 log "cleanup: ======================================================"
1937
1938 [ "$(mount | grep $MOUNT2)" ] && umount $MOUNT2
1939
1940 complete $(basename $0) $SECONDS
1941 check_and_cleanup_lustre
1942 exit_status