Whamcloud - gitweb
LU-4175 tests: fix obdecho_test() to calculate write count
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642                 skip "Need MDS version at least 2.3.64" && return
643
644         local WDIR=$DIR/${tdir}o
645         local mdt_index
646         local mdtdevname
647         local rc=0
648
649         mkdir -p $WDIR
650         mdt_index=$($LFS getstripe -M $WDIR)
651         mdt_index=$((mdt_index+1))
652         mdtdevname=$(mdsdevname $mdt_index)
653
654         touch $WDIR/$tfile
655         stop mds${mdt_index}
656         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
657
658         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660         ls -l $WDIR/$tfile && rc=1
661         do_facet mds${mdt_index} lctl set_param fail_loc=0
662         [[ $rc -ne 0 ]] && error "stat file should fail"
663         true
664 }
665 run_test 17o "stat file with incompat LMA feature"
666
667 test_18() {
668         touch $DIR/f || error "Failed to touch $DIR/f: $?"
669         ls $DIR || error "Failed to ls $DIR: $?"
670 }
671 run_test 18 "touch .../f ; ls ... =============================="
672
673 test_19a() {
674         touch $DIR/$tfile
675         ls -l $DIR
676         rm $DIR/$tfile
677         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
678 }
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
680
681 test_19b() {
682         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
683 }
684 run_test 19b "ls -l .../f19 (should return error) =============="
685
686 test_19c() {
687         [ $RUNAS_ID -eq $UID ] &&
688                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
690 }
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
692
693 test_19d() {
694         cat $DIR/f19 && error || true
695 }
696 run_test 19d "cat .../f19 (should return error) =============="
697
698 test_20() {
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "1 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "2 done"
705         touch $DIR/$tfile
706         rm $DIR/$tfile
707         log "3 done"
708         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
709 }
710 run_test 20 "touch .../f ; ls -l ... ==========================="
711
712 test_21() {
713         test_mkdir -p $DIR/$tdir
714         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715         ln -s dangle $DIR/$tdir/link
716         echo foo >> $DIR/$tdir/link
717         cat $DIR/$tdir/dangle
718         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719         $CHECKSTAT -f -t file $DIR/$tdir/link ||
720                 error "$tdir/link not linked to a file"
721 }
722 run_test 21 "write to dangling link ============================"
723
724 test_22() {
725         WDIR=$DIR/$tdir
726         test_mkdir -p $DIR/$tdir
727         chown $RUNAS_ID:$RUNAS_GID $WDIR
728         (cd $WDIR || error "cd $WDIR failed";
729         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
730         $RUNAS tar xf -)
731         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
734 }
735 run_test 22 "unpack tar archive as non-root user ==============="
736
737 # was test_23
738 test_23a() {
739         test_mkdir -p $DIR/$tdir
740         local file=$DIR/$tdir/$tfile
741
742         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743         openfile -f O_CREAT:O_EXCL $file &&
744                 error "$file recreate succeeded" || true
745 }
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
747
748 test_23b() { # bug 18988
749         test_mkdir -p $DIR/$tdir
750         local file=$DIR/$tdir/$tfile
751
752         rm -f $file
753         echo foo > $file || error "write filed"
754         echo bar >> $file || error "append filed"
755         $CHECKSTAT -s 8 $file || error "wrong size"
756         rm $file
757 }
758 run_test 23b "O_APPEND check =========================="
759
760 # rename sanity
761 test_24a() {
762         echo '-- same directory rename'
763         test_mkdir $DIR/$tdir
764         touch $DIR/$tdir/$tfile.1
765         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
767 }
768 run_test 24a "rename file to non-existent target"
769
770 test_24b() {
771         test_mkdir $DIR/$tdir
772         touch $DIR/$tdir/$tfile.{1,2}
773         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
776 }
777 run_test 24b "rename file to existing target"
778
779 test_24c() {
780         test_mkdir $DIR/$tdir
781         test_mkdir $DIR/$tdir/d$testnum.1
782         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
785 }
786 run_test 24c "rename directory to non-existent target"
787
788 test_24d() {
789         test_mkdir $DIR/$tdir
790         test_mkdir $DIR/$tdir/d$testnum.1
791         test_mkdir $DIR/$tdir/d$testnum.2
792         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
795 }
796 run_test 24d "rename directory to existing target"
797
798 test_24e() {
799         echo '-- cross directory renames --'
800         test_mkdir $DIR/R5a
801         test_mkdir $DIR/R5b
802         touch $DIR/R5a/f
803         mv $DIR/R5a/f $DIR/R5b/g
804         $CHECKSTAT -a $DIR/R5a/f || error
805         $CHECKSTAT -t file $DIR/R5b/g || error
806 }
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
808
809 test_24f() {
810         test_mkdir $DIR/R6a
811         test_mkdir $DIR/R6b
812         touch $DIR/R6a/f $DIR/R6b/g
813         mv $DIR/R6a/f $DIR/R6b/g
814         $CHECKSTAT -a $DIR/R6a/f || error
815         $CHECKSTAT -t file $DIR/R6b/g || error
816 }
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
818
819 test_24g() {
820         test_mkdir $DIR/R7a
821         test_mkdir $DIR/R7b
822         test_mkdir $DIR/R7a/d
823         mv $DIR/R7a/d $DIR/R7b/e
824         $CHECKSTAT -a $DIR/R7a/d || error
825         $CHECKSTAT -t dir $DIR/R7b/e || error
826 }
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
828
829 test_24h() {
830         test_mkdir $DIR/R8a
831         test_mkdir $DIR/R8b
832         test_mkdir $DIR/R8a/d
833         test_mkdir $DIR/R8b/e
834         mrename $DIR/R8a/d $DIR/R8b/e
835         $CHECKSTAT -a $DIR/R8a/d || error
836         $CHECKSTAT -t dir $DIR/R8b/e || error
837 }
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
839
840 test_24i() {
841         echo "-- rename error cases"
842         test_mkdir $DIR/R9
843         test_mkdir $DIR/R9/a
844         touch $DIR/R9/f
845         mrename $DIR/R9/f $DIR/R9/a
846         $CHECKSTAT -t file $DIR/R9/f || error
847         $CHECKSTAT -t dir  $DIR/R9/a || error
848         $CHECKSTAT -a $DIR/R9/a/f || error
849 }
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
851
852 test_24j() {
853         test_mkdir $DIR/R10
854         mrename $DIR/R10/f $DIR/R10/g
855         $CHECKSTAT -t dir $DIR/R10 || error
856         $CHECKSTAT -a $DIR/R10/f || error
857         $CHECKSTAT -a $DIR/R10/g || error
858 }
859 run_test 24j "source does not exist ============================"
860
861 test_24k() {
862         test_mkdir $DIR/R11a
863         test_mkdir $DIR/R11a/d
864         touch $DIR/R11a/f
865         mv $DIR/R11a/f $DIR/R11a/d
866         $CHECKSTAT -a $DIR/R11a/f || error
867         $CHECKSTAT -t file $DIR/R11a/d/f || error
868 }
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
870
871 # bug 2429 - rename foo foo foo creates invalid file
872 test_24l() {
873         f="$DIR/f24l"
874         $MULTIOP $f OcNs || error
875 }
876 run_test 24l "Renaming a file to itself ========================"
877
878 test_24m() {
879         f="$DIR/f24m"
880         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881         # on ext3 this does not remove either the source or target files
882         # though the "expected" operation would be to remove the source
883         $CHECKSTAT -t file ${f} || error "${f} missing"
884         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
885 }
886 run_test 24m "Renaming a file to a hard link to itself ========="
887
888 test_24n() {
889     f="$DIR/f24n"
890     # this stats the old file after it was renamed, so it should fail
891     touch ${f}
892     $CHECKSTAT ${f}
893     mv ${f} ${f}.rename
894     $CHECKSTAT ${f}.rename
895     $CHECKSTAT -a ${f}
896 }
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
898
899 test_24o() {
900         check_kernel_version 37 || return 0
901         test_mkdir -p $DIR/d24o
902         rename_many -s random -v -n 10 $DIR/d24o
903 }
904 run_test 24o "rename of files during htree split ==============="
905
906 test_24p() {
907         test_mkdir $DIR/R12a
908         test_mkdir $DIR/R12b
909         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910         mrename $DIR/R12a $DIR/R12b
911         $CHECKSTAT -a $DIR/R12a || error
912         $CHECKSTAT -t dir $DIR/R12b || error
913         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
915 }
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
917
918 cleanup_multiop_pause() {
919         trap 0
920         kill -USR1 $MULTIPID
921 }
922
923 test_24q() {
924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
925         test_mkdir $DIR/R13a
926         test_mkdir $DIR/R13b
927         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
929         MULTIPID=$!
930
931         trap cleanup_multiop_pause EXIT
932         mrename $DIR/R13a $DIR/R13b
933         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937         cleanup_multiop_pause
938         wait $MULTIPID || error "multiop close failed"
939 }
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
941
942 test_24r() { #bug 3789
943         test_mkdir $DIR/R14a
944         test_mkdir $DIR/R14a/b
945         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
948 }
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
950
951 test_24s() {
952         test_mkdir $DIR/R15a
953         test_mkdir $DIR/R15a/b
954         test_mkdir $DIR/R15a/b/c
955         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
958 }
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
960 test_24t() {
961         test_mkdir $DIR/R16a
962         test_mkdir $DIR/R16a/b
963         test_mkdir $DIR/R16a/b/c
964         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
967 }
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
969
970 test_24u() { # bug12192
971         rm -rf $DIR/$tfile
972         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
974 }
975 run_test 24u "create stripe file"
976
977 page_size() {
978         getconf PAGE_SIZE
979 }
980
981 simple_cleanup_common() {
982         trap 0
983         rm -rf $DIR/$tdir
984         wait_delete_completed
985 }
986
987 max_pages_per_rpc() {
988         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
989 }
990
991 test_24v() {
992         local NRFILES=100000
993         local FREE_INODES=$(mdt_free_inodes 0)
994         [ $FREE_INODES -lt $NRFILES ] && \
995                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
996                 return
997
998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999         trap simple_cleanup_common EXIT
1000
1001         # Performance issue on ZFS see LU-4072 (c.f. LU-2887)
1002         [ $(facet_fstype $SINGLEMDS) = "zfs" ] && NRFILES=10000
1003
1004         mkdir -p $DIR/$tdir
1005         createmany -m $DIR/$tdir/$tfile $NRFILES
1006
1007         cancel_lru_locks mdc
1008         lctl set_param mdc.*.stats clear
1009
1010         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1011
1012         # LU-5 large readdir
1013         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1014         #               8 bytes for name(filename is mostly 5 in this test) +
1015         #               8 bytes for luda_type
1016         # take into account of overhead in lu_dirpage header and end mark in
1017         # each page, plus one in RPC_NUM calculation.
1018         DIRENT_SIZE=48
1019         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1020         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1021         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1022                                 awk '/^mds_readpage/ {print $2}')
1023         [ $mds_readpage -gt $RPC_NUM ] && \
1024                 error "large readdir doesn't take effect"
1025
1026         simple_cleanup_common
1027 }
1028 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1029
1030 test_24w() { # bug21506
1031         SZ1=234852
1032         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1033         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1034         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1035         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1036         [ "$SZ1" = "$SZ2" ] || \
1037                 error "Error reading at the end of the file $tfile"
1038 }
1039 run_test 24w "Reading a file larger than 4Gb"
1040
1041 test_24x() {
1042         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1044         local MDTIDX=1
1045         local remote_dir=$DIR/$tdir/remote_dir
1046
1047         mkdir -p $DIR/$tdir
1048         $LFS mkdir -i $MDTIDX $remote_dir ||
1049                 error "create remote directory failed"
1050
1051         mkdir -p $DIR/$tdir/src_dir
1052         touch $DIR/$tdir/src_file
1053         mkdir -p $remote_dir/tgt_dir
1054         touch $remote_dir/tgt_file
1055
1056         mrename $remote_dir $DIR/ &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1060                 error "rename dir cross MDT works!"
1061
1062         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1063                 error "rename file cross MDT works!"
1064
1065         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1066                 error "ln file cross MDT should not work!"
1067
1068         rm -rf $DIR/$tdir || error "Can not delete directories"
1069 }
1070 run_test 24x "cross rename/link should be failed"
1071
1072 test_24y() {
1073         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1075         local MDTIDX=1
1076         local remote_dir=$DIR/$tdir/remote_dir
1077
1078         mkdir -p $DIR/$tdir
1079         $LFS mkdir -i $MDTIDX $remote_dir ||
1080                    error "create remote directory failed"
1081
1082         mkdir -p $remote_dir/src_dir
1083         touch $remote_dir/src_file
1084         mkdir -p $remote_dir/tgt_dir
1085         touch $remote_dir/tgt_file
1086
1087         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1088                 error "rename subdir in the same remote dir failed!"
1089
1090         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1091                 error "rename files in the same remote dir failed!"
1092
1093         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1094                 error "link files in the same remote dir failed!"
1095
1096         rm -rf $DIR/$tdir || error "Can not delete directories"
1097 }
1098 run_test 24y "rename/link on the same dir should succeed"
1099
1100 test_24z() {
1101         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1102         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1103         local MDTIDX=1
1104         local remote_src=$DIR/$tdir/remote_dir
1105         local remote_tgt=$DIR/$tdir/remote_tgt
1106
1107         mkdir -p $DIR/$tdir
1108         $LFS mkdir -i $MDTIDX $remote_src ||
1109                    error "create remote directory failed"
1110
1111         $LFS mkdir -i $MDTIDX $remote_tgt ||
1112                    error "create remote directory failed"
1113
1114         mrename $remote_src $remote_tgt &&
1115                 error "rename remote dirs should not work!"
1116
1117         # If target dir does not exists, it should succeed
1118         rm -rf $remote_tgt
1119         mrename $remote_src $remote_tgt ||
1120                 error "rename remote dirs(tgt dir does not exists) failed!"
1121
1122         rm -rf $DIR/$tdir || error "Can not delete directories"
1123 }
1124 run_test 24z "rename one remote dir to another remote dir should fail"
1125
1126 test_24A() { # LU-3182
1127         local NFILES=5000
1128
1129         rm -rf $DIR/$tdir
1130         mkdir -p $DIR/$tdir
1131         createmany -m $DIR/$tdir/$tfile $NFILES
1132         local t=`ls $DIR/$tdir | wc -l`
1133         local u=`ls $DIR/$tdir | sort -u | wc -l`
1134         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1135                 error "Expected $NFILES files, got $t ($u unique)"
1136         fi
1137
1138         rm -rf $DIR/$tdir || error "Can not delete directories"
1139 }
1140 run_test 24A "readdir() returns correct number of entries."
1141
1142 test_25a() {
1143         echo '== symlink sanity ============================================='
1144
1145         test_mkdir $DIR/d25
1146         ln -s d25 $DIR/s25
1147         touch $DIR/s25/foo || error
1148 }
1149 run_test 25a "create file in symlinked directory ==============="
1150
1151 test_25b() {
1152         [ ! -d $DIR/d25 ] && test_25a
1153         $CHECKSTAT -t file $DIR/s25/foo || error
1154 }
1155 run_test 25b "lookup file in symlinked directory ==============="
1156
1157 test_26a() {
1158         test_mkdir $DIR/d26
1159         test_mkdir $DIR/d26/d26-2
1160         ln -s d26/d26-2 $DIR/s26
1161         touch $DIR/s26/foo || error
1162 }
1163 run_test 26a "multiple component symlink ======================="
1164
1165 test_26b() {
1166         test_mkdir -p $DIR/d26b/d26-2
1167         ln -s d26b/d26-2/foo $DIR/s26-2
1168         touch $DIR/s26-2 || error
1169 }
1170 run_test 26b "multiple component symlink at end of lookup ======"
1171
1172 test_26c() {
1173         test_mkdir $DIR/d26.2
1174         touch $DIR/d26.2/foo
1175         ln -s d26.2 $DIR/s26.2-1
1176         ln -s s26.2-1 $DIR/s26.2-2
1177         ln -s s26.2-2 $DIR/s26.2-3
1178         chmod 0666 $DIR/s26.2-3/foo
1179 }
1180 run_test 26c "chain of symlinks ================================"
1181
1182 # recursive symlinks (bug 439)
1183 test_26d() {
1184         ln -s d26-3/foo $DIR/d26-3
1185 }
1186 run_test 26d "create multiple component recursive symlink ======"
1187
1188 test_26e() {
1189         [ ! -h $DIR/d26-3 ] && test_26d
1190         rm $DIR/d26-3
1191 }
1192 run_test 26e "unlink multiple component recursive symlink ======"
1193
1194 # recursive symlinks (bug 7022)
1195 test_26f() {
1196         test_mkdir -p $DIR/$tdir
1197         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1198         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1199         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1200         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1201         cd $tfile                || error "cd $tfile failed"
1202         ln -s .. dotdot          || error "ln dotdot failed"
1203         ln -s dotdot/lndir lndir || error "ln lndir failed"
1204         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1205         output=`ls $tfile/$tfile/lndir/bar1`
1206         [ "$output" = bar1 ] && error "unexpected output"
1207         rm -r $tfile             || error "rm $tfile failed"
1208         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1209 }
1210 run_test 26f "rm -r of a directory which has recursive symlink ="
1211
1212 test_27a() {
1213         echo '== stripe sanity =============================================='
1214         test_mkdir -p $DIR/d27 || error "mkdir failed"
1215         $GETSTRIPE $DIR/d27
1216         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1217         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1218         pass
1219         log "== test_27a: write to one stripe file ========================="
1220         cp /etc/hosts $DIR/d27/f0 || error
1221 }
1222 run_test 27a "one stripe file =================================="
1223
1224 test_27b() {
1225         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1226         test_mkdir -p $DIR/d27
1227         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1228         $GETSTRIPE -c $DIR/d27/f01
1229         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1230                 error "two-stripe file doesn't have two stripes"
1231
1232         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1233 }
1234 run_test 27b "create and write to two stripe file"
1235
1236 test_27d() {
1237         test_mkdir -p $DIR/d27
1238         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1239         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1240         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1241 }
1242 run_test 27d "create file with default settings ================"
1243
1244 test_27e() {
1245         test_mkdir -p $DIR/d27
1246         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1247         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1248         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1249 }
1250 run_test 27e "setstripe existing file (should return error) ======"
1251
1252 test_27f() {
1253         test_mkdir -p $DIR/d27
1254         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1255         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1256         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1257 }
1258 run_test 27f "setstripe with bad stripe size (should return error)"
1259
1260 test_27g() {
1261         test_mkdir -p $DIR/d27
1262         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1263         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1264                 error "$DIR/d27/fnone has object"
1265 }
1266 run_test 27g "$GETSTRIPE with no objects"
1267
1268 test_27i() {
1269         touch $DIR/d27/fsome || error "touch failed"
1270         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1271 }
1272 run_test 27i "$GETSTRIPE with some objects"
1273
1274 test_27j() {
1275         test_mkdir -p $DIR/d27
1276         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1277 }
1278 run_test 27j "setstripe with bad stripe offset (should return error)"
1279
1280 test_27k() { # bug 2844
1281         test_mkdir -p $DIR/d27
1282         FILE=$DIR/d27/f27k
1283         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1284         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1285         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1286         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1287         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "1:$BLKSIZE > $LL_MAX_BLKSIZE"
1288         dd if=/dev/zero of=$FILE bs=4k count=1
1289         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1290         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "2:$BLKSIZE > $LL_MAX_BLKSIZE"
1291 }
1292 run_test 27k "limit i_blksize for broken user apps ============="
1293
1294 test_27l() {
1295         test_mkdir -p $DIR/d27
1296         mcreate $DIR/f27l || error "creating file"
1297         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1298                 error "setstripe should have failed" || true
1299 }
1300 run_test 27l "check setstripe permissions (should return error)"
1301
1302 test_27m() {
1303         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1304                 return
1305         if [ $ORIGFREE -gt $MAXFREE ]; then
1306                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1307                 return
1308         fi
1309         trap simple_cleanup_common EXIT
1310         test_mkdir -p $DIR/$tdir
1311         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1312         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1313                 error "dd should fill OST0"
1314         i=2
1315         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1316                 i=`expr $i + 1`
1317                 [ $i -gt 256 ] && break
1318         done
1319         i=`expr $i + 1`
1320         touch $DIR/$tdir/f27m_$i
1321         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1322                 error "OST0 was full but new created file still use it"
1323         i=`expr $i + 1`
1324         touch $DIR/$tdir/f27m_$i
1325         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1326                 error "OST0 was full but new created file still use it"
1327         simple_cleanup_common
1328 }
1329 run_test 27m "create file while OST0 was full =================="
1330
1331 sleep_maxage() {
1332         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1333         sleep $DELAY
1334 }
1335
1336 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1337 # if the OST isn't full anymore.
1338 reset_enospc() {
1339         local OSTIDX=${1:-""}
1340
1341         local list=$(comma_list $(osts_nodes))
1342         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1343
1344         do_nodes $list lctl set_param fail_loc=0
1345         sync    # initiate all OST_DESTROYs from MDS to OST
1346         sleep_maxage
1347 }
1348
1349 exhaust_precreations() {
1350         local OSTIDX=$1
1351         local FAILLOC=$2
1352         local FAILIDX=${3:-$OSTIDX}
1353
1354         test_mkdir -p $DIR/$tdir
1355         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1356         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1357
1358         local OST=$(ostname_from_index $OSTIDX)
1359         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1360                           sed -e 's/_UUID$//;s/^.*-//')
1361
1362         # on the mdt's osc
1363         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1364         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1365                         osc.$mdtosc_proc1.prealloc_last_id)
1366         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1367                         osc.$mdtosc_proc1.prealloc_next_id)
1368
1369         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1370         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1371
1372         test_mkdir -p $DIR/$tdir/${OST}
1373         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1374 #define OBD_FAIL_OST_ENOSPC              0x215
1375         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1377         echo "Creating to objid $last_id on ost $OST..."
1378         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1379         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1380         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1381         sleep_maxage
1382 }
1383
1384 exhaust_all_precreations() {
1385         local i
1386         for (( i=0; i < OSTCOUNT; i++ )) ; do
1387                 exhaust_precreations $i $1 -1
1388         done
1389 }
1390
1391 test_27n() {
1392         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1393         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1394         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1395         remote_ost_nodsh && skip "remote OST with nodsh" && return
1396
1397         reset_enospc
1398         rm -f $DIR/$tdir/$tfile
1399         exhaust_precreations 0 0x80000215
1400         $SETSTRIPE -c -1 $DIR/$tdir
1401         touch $DIR/$tdir/$tfile || error
1402         $GETSTRIPE $DIR/$tdir/$tfile
1403         reset_enospc
1404 }
1405 run_test 27n "create file with some full OSTs =================="
1406
1407 test_27o() {
1408         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1409         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1410         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1411         remote_ost_nodsh && skip "remote OST with nodsh" && return
1412
1413         reset_enospc
1414         rm -f $DIR/$tdir/$tfile
1415         exhaust_all_precreations 0x215
1416
1417         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1418
1419         reset_enospc
1420         rm -rf $DIR/$tdir/*
1421 }
1422 run_test 27o "create file with all full OSTs (should error) ===="
1423
1424 test_27p() {
1425         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1427         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1428         remote_ost_nodsh && skip "remote OST with nodsh" && return
1429
1430         reset_enospc
1431         rm -f $DIR/$tdir/$tfile
1432         test_mkdir -p $DIR/$tdir
1433
1434         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1435         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1436         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1437
1438         exhaust_precreations 0 0x80000215
1439         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1440         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1441         $GETSTRIPE $DIR/$tdir/$tfile
1442
1443         reset_enospc
1444 }
1445 run_test 27p "append to a truncated file with some full OSTs ==="
1446
1447 test_27q() {
1448         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1449         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1450         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1451         remote_ost_nodsh && skip "remote OST with nodsh" && return
1452
1453         reset_enospc
1454         rm -f $DIR/$tdir/$tfile
1455
1456         test_mkdir -p $DIR/$tdir
1457         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1458         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1459         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1460
1461         exhaust_all_precreations 0x215
1462
1463         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1464         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1465
1466         reset_enospc
1467 }
1468 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1469
1470 test_27r() {
1471         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1472         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1473         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1474         remote_ost_nodsh && skip "remote OST with nodsh" && return
1475
1476         reset_enospc
1477         rm -f $DIR/$tdir/$tfile
1478         exhaust_precreations 0 0x80000215
1479
1480         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1481
1482         reset_enospc
1483 }
1484 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1485
1486 test_27s() { # bug 10725
1487         test_mkdir -p $DIR/$tdir
1488         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1489         local stripe_count=0
1490         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1491         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1492                 error "stripe width >= 2^32 succeeded" || true
1493
1494 }
1495 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1496
1497 test_27t() { # bug 10864
1498         WDIR=`pwd`
1499         WLFS=`which lfs`
1500         cd $DIR
1501         touch $tfile
1502         $WLFS getstripe $tfile
1503         cd $WDIR
1504 }
1505 run_test 27t "check that utils parse path correctly"
1506
1507 test_27u() { # bug 4900
1508         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1510         local index
1511         local list=$(comma_list $(mdts_nodes))
1512
1513 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1514         do_nodes $list $LCTL set_param fail_loc=0x139
1515         test_mkdir -p $DIR/$tdir
1516         rm -rf $DIR/$tdir/*
1517         createmany -o $DIR/$tdir/t- 1000
1518         do_nodes $list $LCTL set_param fail_loc=0
1519
1520         TLOG=$DIR/$tfile.getstripe
1521         $GETSTRIPE $DIR/$tdir > $TLOG
1522         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1523         unlinkmany $DIR/$tdir/t- 1000
1524         [ $OBJS -gt 0 ] && \
1525                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1526 }
1527 run_test 27u "skip object creation on OSC w/o objects =========="
1528
1529 test_27v() { # bug 4900
1530         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1532         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1533         remote_ost_nodsh && skip "remote OST with nodsh" && return
1534
1535         exhaust_all_precreations 0x215
1536         reset_enospc
1537
1538         test_mkdir -p $DIR/$tdir
1539         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1540
1541         touch $DIR/$tdir/$tfile
1542         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1543         # all except ost1
1544         for (( i=1; i < OSTCOUNT; i++ )); do
1545                 do_facet ost$i lctl set_param fail_loc=0x705
1546         done
1547         local START=`date +%s`
1548         createmany -o $DIR/$tdir/$tfile 32
1549
1550         local FINISH=`date +%s`
1551         local TIMEOUT=`lctl get_param -n timeout`
1552         local PROCESS=$((FINISH - START))
1553         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1554                error "$FINISH - $START >= $TIMEOUT / 2"
1555         sleep $((TIMEOUT / 2 - PROCESS))
1556         reset_enospc
1557 }
1558 run_test 27v "skip object creation on slow OST ================="
1559
1560 test_27w() { # bug 10997
1561         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1562         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1563         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1564                 error "stripe size $size != 65536" || true
1565         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1566                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1567 }
1568 run_test 27w "check $SETSTRIPE -S option"
1569
1570 test_27wa() {
1571         [ "$OSTCOUNT" -lt "2" ] &&
1572                 skip_env "skipping multiple stripe count/offset test" && return
1573
1574         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1575         for i in $(seq 1 $OSTCOUNT); do
1576                 offset=$((i - 1))
1577                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1578                         error "setstripe -c $i -i $offset failed"
1579                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1580                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1581                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1582                 [ $index -ne $offset ] &&
1583                         error "stripe offset $index != $offset" || true
1584         done
1585 }
1586 run_test 27wa "check $SETSTRIPE -c -i options"
1587
1588 test_27x() {
1589         remote_ost_nodsh && skip "remote OST with nodsh" && return
1590         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1592         OFFSET=$(($OSTCOUNT - 1))
1593         OSTIDX=0
1594         local OST=$(ostname_from_index $OSTIDX)
1595
1596         test_mkdir -p $DIR/$tdir
1597         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1598         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1599         sleep_maxage
1600         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1601         for i in `seq 0 $OFFSET`; do
1602                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1603                 error "OST0 was degraded but new created file still use it"
1604         done
1605         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1606 }
1607 run_test 27x "create files while OST0 is degraded"
1608
1609 test_27y() {
1610         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1611         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1612         remote_ost_nodsh && skip "remote OST with nodsh" && return
1613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1614
1615         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1616         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1617             osc.$mdtosc.prealloc_last_id)
1618         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1619             osc.$mdtosc.prealloc_next_id)
1620         local fcount=$((last_id - next_id))
1621         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1622         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1623
1624         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1625                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1626         local OST_DEACTIVE_IDX=-1
1627         local OSC
1628         local OSTIDX
1629         local OST
1630
1631         for OSC in $MDS_OSCS; do
1632                 OST=$(osc_to_ost $OSC)
1633                 OSTIDX=$(index_from_ostuuid $OST)
1634                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1635                         OST_DEACTIVE_IDX=$OSTIDX
1636                 fi
1637                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1638                         echo $OSC "is Deactivated:"
1639                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1640                 fi
1641         done
1642
1643         OSTIDX=$(index_from_ostuuid $OST)
1644         mkdir -p $DIR/$tdir
1645         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1646
1647         for OSC in $MDS_OSCS; do
1648                 OST=$(osc_to_ost $OSC)
1649                 OSTIDX=$(index_from_ostuuid $OST)
1650                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1651                         echo $OST "is degraded:"
1652                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1653                                                 obdfilter.$OST.degraded=1
1654                 fi
1655         done
1656
1657         sleep_maxage
1658         createmany -o $DIR/$tdir/$tfile $fcount
1659
1660         for OSC in $MDS_OSCS; do
1661                 OST=$(osc_to_ost $OSC)
1662                 OSTIDX=$(index_from_ostuuid $OST)
1663                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1664                         echo $OST "is recovered from degraded:"
1665                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1666                                                 obdfilter.$OST.degraded=0
1667                 else
1668                         do_facet $SINGLEMDS lctl --device %$OSC activate
1669                 fi
1670         done
1671
1672         # all osp devices get activated, hence -1 stripe count restored
1673         local stripecnt=0
1674
1675         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1676         # devices get activated.
1677         sleep_maxage
1678         $SETSTRIPE -c -1 $DIR/$tfile
1679         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1680         rm -f $DIR/$tfile
1681         [ $stripecnt -ne $OSTCOUNT ] &&
1682                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1683         return 0
1684 }
1685 run_test 27y "create files while OST0 is degraded and the rest inactive"
1686
1687 check_seq_oid()
1688 {
1689         log "check file $1"
1690
1691         lmm_count=$($GETSTRIPE -c $1)
1692         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1693         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1694
1695         local old_ifs="$IFS"
1696         IFS=$'[:]'
1697         fid=($($LFS path2fid $1))
1698         IFS="$old_ifs"
1699
1700         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1701         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1702
1703         # compare lmm_seq and lu_fid->f_seq
1704         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1705         # compare lmm_object_id and lu_fid->oid
1706         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1707
1708         # check the trusted.fid attribute of the OST objects of the file
1709         local have_obdidx=false
1710         local stripe_nr=0
1711         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1712                 # skip lines up to and including "obdidx"
1713                 [ -z "$obdidx" ] && break
1714                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1715                 $have_obdidx || continue
1716
1717                 local ost=$((obdidx + 1))
1718                 local dev=$(ostdevname $ost)
1719                 local oid_hex
1720
1721                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1722
1723                 seq=$(echo $seq | sed -e "s/^0x//g")
1724                 if [ $seq == 0 ]; then
1725                         oid_hex=$(echo $oid)
1726                 else
1727                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1728                 fi
1729                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1730
1731                 local ff
1732                 #
1733                 # Don't unmount/remount the OSTs if we don't need to do that.
1734                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1735                 # update too, until that use mount/ll_decode_filter_fid/mount.
1736                 # Re-enable when debugfs will understand new filter_fid.
1737                 #
1738                 if false && [ $(facet_fstype ost$ost) == ldiskfs ]; then
1739                         ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1740                                 $dev 2>/dev/null" | grep "parent=")
1741                 else
1742                         stop ost$ost
1743                         mount_fstype ost$ost
1744                         ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID \
1745                                 $(facet_mntpt ost$ost)/$obj_file)
1746                         unmount_fstype ost$ost
1747                         start ost$ost $dev $OST_MOUNT_OPTS
1748                 fi
1749
1750                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1751
1752                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1753
1754                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1755                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1756                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1757                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1758                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1759                 local ff_pstripe
1760                 if echo $ff_parent | grep -q 'stripe='; then
1761                         ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1762                 else
1763                         #
1764                         # $LL_DECODE_FILTER_FID does not print "stripe="; look
1765                         # into f_ver in this case.  See the comment on
1766                         # ff_parent.
1767                         #
1768                         ff_pstripe=$(echo $ff_parent | cut -d: -f3 |
1769                                 sed -e 's/\]//')
1770                 fi
1771
1772                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1773                 [ $ff_pseq = $lmm_seq ] ||
1774                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1775                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1776                 [ $ff_poid = $lmm_oid ] ||
1777                         error "FF parent OID $ff_poid != $lmm_oid"
1778                 (($ff_pstripe == $stripe_nr)) ||
1779                         error "FF stripe $ff_pstripe != $stripe_nr"
1780
1781                 stripe_nr=$((stripe_nr + 1))
1782         done
1783 }
1784
1785 test_27z() {
1786         remote_ost_nodsh && skip "remote OST with nodsh" && return
1787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1788         test_mkdir -p $DIR/$tdir
1789
1790         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1791                 { error "setstripe -c -1 failed"; return 1; }
1792         # We need to send a write to every object to get parent FID info set.
1793         # This _should_ also work for setattr, but does not currently.
1794         # touch $DIR/$tdir/$tfile-1 ||
1795         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1796                 { error "dd $tfile-1 failed"; return 2; }
1797         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1798                 { error "setstripe -c -1 failed"; return 3; }
1799         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1800                 { error "dd $tfile-2 failed"; return 4; }
1801
1802         # make sure write RPCs have been sent to OSTs
1803         sync; sleep 5; sync
1804
1805         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1806         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1807 }
1808 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1809
1810 test_27A() { # b=19102
1811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1812         local restore_size=$($GETSTRIPE -S $MOUNT)
1813         local restore_count=$($GETSTRIPE -c $MOUNT)
1814         local restore_offset=$($GETSTRIPE -i $MOUNT)
1815         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1816         wait_update $HOSTNAME "$GETSTRIPE -c $MOUNT | sed 's/  *//g'" "1" 20 ||
1817                 error "stripe count $($GETSTRIPE -c $MOUNT) != 1"
1818         local default_size=$($GETSTRIPE -S $MOUNT)
1819         local default_offset=$($GETSTRIPE -i $MOUNT)
1820         local dsize=$((1024 * 1024))
1821         [ $default_size -eq $dsize ] ||
1822                 error "stripe size $default_size != $dsize"
1823         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1824         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1825 }
1826 run_test 27A "check filesystem-wide default LOV EA values"
1827
1828 test_27B() { # LU-2523
1829         test_mkdir -p $DIR/$tdir
1830         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1831         touch $DIR/$tdir/f0
1832         # open f1 with O_LOV_DELAY_CREATE
1833         # rename f0 onto f1
1834         # call setstripe ioctl on open file descriptor for f1
1835         # close
1836         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1837                 $DIR/$tdir/f0
1838
1839         rm -f $DIR/$tdir/f1
1840         # open f1 with O_LOV_DELAY_CREATE
1841         # unlink f1
1842         # call setstripe ioctl on open file descriptor for f1
1843         # close
1844         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1845
1846         # Allow multiop to fail in imitation of NFS's busted semantics.
1847         true
1848 }
1849 run_test 27B "call setstripe on open unlinked file/rename victim"
1850
1851 test_27C() { #LU-2871
1852         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1853
1854         declare -a ost_idx
1855         local index
1856         local found
1857         local i
1858         local j
1859
1860         test_mkdir -p $DIR/$tdir
1861         cd $DIR/$tdir
1862         for i in $(seq 0 $((OSTCOUNT - 1))); do
1863                 # set stripe across all OSTs starting from OST$i
1864                 $SETSTRIPE -i $i -c -1 $tfile$i
1865                 # get striping information
1866                 ost_idx=($($GETSTRIPE $tfile$i |
1867                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1868                 echo ${ost_idx[@]}
1869
1870                 # check the layout
1871                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1872                         error "${#ost_idx[@]} != $OSTCOUNT"
1873
1874                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1875                         found=0
1876                         for j in $(echo ${ost_idx[@]}); do
1877                                 if [ $index -eq $j ]; then
1878                                         found=1
1879                                         break
1880                                 fi
1881                         done
1882                         [ $found = 1 ] ||
1883                                 error "Can not find $index in ${ost_idx[@]}"
1884                 done
1885         done
1886 }
1887 run_test 27C "check full striping across all OSTs"
1888
1889 # createtest also checks that device nodes are created and
1890 # then visible correctly (#2091)
1891 test_28() { # bug 2091
1892         test_mkdir $DIR/d28
1893         $CREATETEST $DIR/d28/ct || error
1894 }
1895 run_test 28 "create/mknod/mkdir with bad file types ============"
1896
1897 test_29() {
1898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1899         cancel_lru_locks mdc
1900         test_mkdir $DIR/d29
1901         touch $DIR/d29/foo
1902         log 'first d29'
1903         ls -l $DIR/d29
1904
1905         declare -i LOCKCOUNTORIG=0
1906         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1907                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1908         done
1909         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1910
1911         declare -i LOCKUNUSEDCOUNTORIG=0
1912         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1913                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1914         done
1915
1916         log 'second d29'
1917         ls -l $DIR/d29
1918         log 'done'
1919
1920         declare -i LOCKCOUNTCURRENT=0
1921         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1922                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1923         done
1924
1925         declare -i LOCKUNUSEDCOUNTCURRENT=0
1926         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1927                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1928         done
1929
1930         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1931                 lctl set_param -n ldlm.dump_namespaces ""
1932                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1933                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1934                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1935                 return 2
1936         fi
1937         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1938                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1939                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1940                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1941                 return 3
1942         fi
1943 }
1944 run_test 29 "IT_GETATTR regression  ============================"
1945
1946 test_30a() { # was test_30
1947         cp `which ls` $DIR || cp /bin/ls $DIR
1948         $DIR/ls / || error
1949         rm $DIR/ls
1950 }
1951 run_test 30a "execute binary from Lustre (execve) =============="
1952
1953 test_30b() {
1954         cp `which ls` $DIR || cp /bin/ls $DIR
1955         chmod go+rx $DIR/ls
1956         $RUNAS $DIR/ls / || error
1957         rm $DIR/ls
1958 }
1959 run_test 30b "execute binary from Lustre as non-root ==========="
1960
1961 test_30c() { # b=22376
1962         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1963         cp `which ls` $DIR || cp /bin/ls $DIR
1964         chmod a-rw $DIR/ls
1965         cancel_lru_locks mdc
1966         cancel_lru_locks osc
1967         $RUNAS $DIR/ls / || error
1968         rm -f $DIR/ls
1969 }
1970 run_test 30c "execute binary from Lustre without read perms ===="
1971
1972 test_31a() {
1973         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1974         $CHECKSTAT -a $DIR/f31 || error
1975 }
1976 run_test 31a "open-unlink file =================================="
1977
1978 test_31b() {
1979         touch $DIR/f31 || error
1980         ln $DIR/f31 $DIR/f31b || error
1981         $MULTIOP $DIR/f31b Ouc || error
1982         $CHECKSTAT -t file $DIR/f31 || error
1983 }
1984 run_test 31b "unlink file with multiple links while open ======="
1985
1986 test_31c() {
1987         touch $DIR/f31 || error
1988         ln $DIR/f31 $DIR/f31c || error
1989         multiop_bg_pause $DIR/f31 O_uc || return 1
1990         MULTIPID=$!
1991         $MULTIOP $DIR/f31c Ouc
1992         kill -USR1 $MULTIPID
1993         wait $MULTIPID
1994 }
1995 run_test 31c "open-unlink file with multiple links ============="
1996
1997 test_31d() {
1998         opendirunlink $DIR/d31d $DIR/d31d || error
1999         $CHECKSTAT -a $DIR/d31d || error
2000 }
2001 run_test 31d "remove of open directory ========================="
2002
2003 test_31e() { # bug 2904
2004         check_kernel_version 34 || return 0
2005         openfilleddirunlink $DIR/d31e || error
2006 }
2007 run_test 31e "remove of open non-empty directory ==============="
2008
2009 test_31f() { # bug 4554
2010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2011         set -vx
2012         test_mkdir $DIR/d31f
2013         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2014         cp /etc/hosts $DIR/d31f
2015         ls -l $DIR/d31f
2016         $GETSTRIPE $DIR/d31f/hosts
2017         multiop_bg_pause $DIR/d31f D_c || return 1
2018         MULTIPID=$!
2019
2020         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2021         test_mkdir $DIR/d31f
2022         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2023         cp /etc/hosts $DIR/d31f
2024         ls -l $DIR/d31f
2025         $GETSTRIPE $DIR/d31f/hosts
2026         multiop_bg_pause $DIR/d31f D_c || return 1
2027         MULTIPID2=$!
2028
2029         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2030         wait $MULTIPID || error "first opendir $MULTIPID failed"
2031
2032         sleep 6
2033
2034         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2035         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2036         set +vx
2037 }
2038 run_test 31f "remove of open directory with open-unlink file ==="
2039
2040 test_31g() {
2041         echo "-- cross directory link --"
2042         test_mkdir $DIR/d31ga
2043         test_mkdir $DIR/d31gb
2044         touch $DIR/d31ga/f
2045         ln $DIR/d31ga/f $DIR/d31gb/g
2046         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2047         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2048         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2049         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2050 }
2051 run_test 31g "cross directory link==============="
2052
2053 test_31h() {
2054         echo "-- cross directory link --"
2055         test_mkdir $DIR/d31h
2056         test_mkdir $DIR/d31h/dir
2057         touch $DIR/d31h/f
2058         ln $DIR/d31h/f $DIR/d31h/dir/g
2059         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2060         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2061         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2062         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2063 }
2064 run_test 31h "cross directory link under child==============="
2065
2066 test_31i() {
2067         echo "-- cross directory link --"
2068         test_mkdir $DIR/d31i
2069         test_mkdir $DIR/d31i/dir
2070         touch $DIR/d31i/dir/f
2071         ln $DIR/d31i/dir/f $DIR/d31i/g
2072         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2073         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2074         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2075         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2076 }
2077 run_test 31i "cross directory link under parent==============="
2078
2079
2080 test_31j() {
2081         test_mkdir $DIR/d31j
2082         test_mkdir $DIR/d31j/dir1
2083         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2084         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2085         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2086         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2087         return 0
2088 }
2089 run_test 31j "link for directory==============="
2090
2091
2092 test_31k() {
2093         test_mkdir $DIR/d31k
2094         touch $DIR/d31k/s
2095         touch $DIR/d31k/exist
2096         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2097         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2098         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2099         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2100         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2101         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2102         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2103         return 0
2104 }
2105 run_test 31k "link to file: the same, non-existing, dir==============="
2106
2107 test_31m() {
2108         test_mkdir $DIR/d31m
2109         touch $DIR/d31m/s
2110         test_mkdir $DIR/d31m2
2111         touch $DIR/d31m2/exist
2112         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2113         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2114         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2115         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2116         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2117         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2118         return 0
2119 }
2120 run_test 31m "link to file: the same, non-existing, dir==============="
2121
2122 test_31n() {
2123         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2124         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2125         nlink=$(stat --format=%h $DIR/$tfile)
2126         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2127         local fd=$(free_fd)
2128         local cmd="exec $fd<$DIR/$tfile"
2129         eval $cmd
2130         cmd="exec $fd<&-"
2131         trap "eval $cmd" EXIT
2132         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2133         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2134         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2135         nlink=$(stat --dereference --format=%h /proc/self/fd/$fd)
2136         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2137         eval $cmd
2138 }
2139 run_test 31n "check link count of unlinked file"
2140
2141 link_one() {
2142         local TEMPNAME=$(mktemp $1_XXXXXX)
2143         mlink $TEMPNAME $1 2> /dev/null &&
2144                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2145         munlink $TEMPNAME
2146 }
2147
2148 test_31o() { # LU-2901
2149         mkdir -p $DIR/$tdir
2150         for LOOP in $(seq 100); do
2151                 rm -f $DIR/$tdir/$tfile*
2152                 for THREAD in $(seq 8); do
2153                         link_one $DIR/$tdir/$tfile.$LOOP &
2154                 done
2155                 wait
2156                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2157                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2158                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2159                         break || true
2160         done
2161 }
2162 run_test 31o "duplicate hard links with same filename"
2163
2164 cleanup_test32_mount() {
2165         trap 0
2166         $UMOUNT -d $DIR/$tdir/ext2-mountpoint
2167 }
2168
2169 test_32a() {
2170         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2171         echo "== more mountpoints and symlinks ================="
2172         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2173         trap cleanup_test32_mount EXIT
2174         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2175         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2176         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2177         cleanup_test32_mount
2178 }
2179 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2180
2181 test_32b() {
2182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2183         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2184         trap cleanup_test32_mount EXIT
2185         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2186         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2187         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2188         cleanup_test32_mount
2189 }
2190 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2191
2192 test_32c() {
2193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2194         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2195         trap cleanup_test32_mount EXIT
2196         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2197         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2198         test_mkdir -p $DIR/$tdir/d2/test_dir
2199         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2200         cleanup_test32_mount
2201 }
2202 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2203
2204 test_32d() {
2205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2206         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2207         trap cleanup_test32_mount EXIT
2208         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2209         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2210         test_mkdir -p $DIR/$tdir/d2/test_dir
2211         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2212         cleanup_test32_mount
2213 }
2214 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2215
2216 test_32e() {
2217         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2218         test_mkdir -p $DIR/d32e/tmp
2219         TMP_DIR=$DIR/d32e/tmp
2220         ln -s $DIR/d32e $TMP_DIR/symlink11
2221         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2222         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2223         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2224 }
2225 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2226
2227 test_32f() {
2228         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2229         test_mkdir -p $DIR/d32f/tmp
2230         TMP_DIR=$DIR/d32f/tmp
2231         ln -s $DIR/d32f $TMP_DIR/symlink11
2232         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2233         ls $DIR/d32f/tmp/symlink11  || error
2234         ls $DIR/d32f/symlink01 || error
2235 }
2236 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2237
2238 test_32g() {
2239         TMP_DIR=$DIR/$tdir/tmp
2240         test_mkdir -p $DIR/$tdir/tmp
2241         test_mkdir $DIR/${tdir}2
2242         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2243         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2244         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2245         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2246         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2247         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2248 }
2249 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2250
2251 test_32h() {
2252         rm -fr $DIR/$tdir $DIR/${tdir}2
2253         TMP_DIR=$DIR/$tdir/tmp
2254         test_mkdir -p $DIR/$tdir/tmp
2255         test_mkdir $DIR/${tdir}2
2256         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2257         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2258         ls $TMP_DIR/symlink12 || error
2259         ls $DIR/$tdir/symlink02  || error
2260 }
2261 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2262
2263 test_32i() {
2264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2265         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2266         trap cleanup_test32_mount EXIT
2267         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2268         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2269         touch $DIR/$tdir/test_file
2270         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2271         cleanup_test32_mount
2272 }
2273 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2274
2275 test_32j() {
2276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2277         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2278         trap cleanup_test32_mount EXIT
2279         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2280         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2281         touch $DIR/$tdir/test_file
2282         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2283         cleanup_test32_mount
2284 }
2285 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2286
2287 test_32k() {
2288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2289         rm -fr $DIR/$tdir
2290         trap cleanup_test32_mount EXIT
2291         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2292         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2293         test_mkdir -p $DIR/$tdir/d2
2294         touch $DIR/$tdir/d2/test_file || error
2295         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2296         cleanup_test32_mount
2297 }
2298 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2299
2300 test_32l() {
2301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2302         rm -fr $DIR/$tdir
2303         trap cleanup_test32_mount EXIT
2304         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2305         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2306         test_mkdir -p $DIR/$tdir/d2
2307         touch $DIR/$tdir/d2/test_file
2308         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2309         cleanup_test32_mount
2310 }
2311 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2312
2313 test_32m() {
2314         rm -fr $DIR/d32m
2315         test_mkdir -p $DIR/d32m/tmp
2316         TMP_DIR=$DIR/d32m/tmp
2317         ln -s $DIR $TMP_DIR/symlink11
2318         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2319         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2320         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2321 }
2322 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2323
2324 test_32n() {
2325         rm -fr $DIR/d32n
2326         test_mkdir -p $DIR/d32n/tmp
2327         TMP_DIR=$DIR/d32n/tmp
2328         ln -s $DIR $TMP_DIR/symlink11
2329         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2330         ls -l $DIR/d32n/tmp/symlink11  || error
2331         ls -l $DIR/d32n/symlink01 || error
2332 }
2333 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2334
2335 test_32o() {
2336         rm -fr $DIR/d32o $DIR/$tfile
2337         touch $DIR/$tfile
2338         test_mkdir -p $DIR/d32o/tmp
2339         TMP_DIR=$DIR/d32o/tmp
2340         ln -s $DIR/$tfile $TMP_DIR/symlink12
2341         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2342         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2343         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2344         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2345         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2346 }
2347 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2348
2349 test_32p() {
2350     log 32p_1
2351         rm -fr $DIR/d32p
2352     log 32p_2
2353         rm -f $DIR/$tfile
2354     log 32p_3
2355         touch $DIR/$tfile
2356     log 32p_4
2357         test_mkdir -p $DIR/d32p/tmp
2358     log 32p_5
2359         TMP_DIR=$DIR/d32p/tmp
2360     log 32p_6
2361         ln -s $DIR/$tfile $TMP_DIR/symlink12
2362     log 32p_7
2363         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2364     log 32p_8
2365         cat $DIR/d32p/tmp/symlink12 || error
2366     log 32p_9
2367         cat $DIR/d32p/symlink02 || error
2368     log 32p_10
2369 }
2370 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2371
2372 cleanup_testdir_mount() {
2373         trap 0
2374         $UMOUNT -d $DIR/$tdir
2375 }
2376
2377 test_32q() {
2378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2379         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2380         trap cleanup_testdir_mount EXIT
2381         test_mkdir -p $DIR/$tdir
2382         touch $DIR/$tdir/under_the_mount
2383         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2384         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2385         cleanup_testdir_mount
2386 }
2387 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2388
2389 test_32r() {
2390         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2391         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2392         trap cleanup_testdir_mount EXIT
2393         test_mkdir -p $DIR/$tdir
2394         touch $DIR/$tdir/under_the_mount
2395         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2396         ls $DIR/$tdir | grep -q under_the_mount && error || true
2397         cleanup_testdir_mount
2398 }
2399 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2400
2401 test_33aa() {
2402         rm -f $DIR/$tfile
2403         touch $DIR/$tfile
2404         chmod 444 $DIR/$tfile
2405         chown $RUNAS_ID $DIR/$tfile
2406         log 33_1
2407         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2408         log 33_2
2409 }
2410 run_test 33aa "write file with mode 444 (should return error) ===="
2411
2412 test_33a() {
2413         rm -fr $DIR/d33
2414         test_mkdir -p $DIR/d33
2415         chown $RUNAS_ID $DIR/d33
2416         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2417         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2418                 error "open RDWR" || true
2419 }
2420 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2421
2422 test_33b() {
2423         rm -fr $DIR/d33
2424         test_mkdir -p $DIR/d33
2425         chown $RUNAS_ID $DIR/d33
2426         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2427 }
2428 run_test 33b "test open file with malformed flags (No panic and return error)"
2429
2430 test_33c() {
2431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2432         local ostnum
2433         local ostname
2434         local write_bytes
2435         local all_zeros
2436
2437         remote_ost_nodsh && skip "remote OST with nodsh" && return
2438         all_zeros=:
2439         rm -fr $DIR/d33
2440         test_mkdir -p $DIR/d33
2441         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2442
2443         sync
2444         for ostnum in $(seq $OSTCOUNT); do
2445                 # test-framework's OST numbering is one-based, while Lustre's
2446                 # is zero-based
2447                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2448                 # Parsing llobdstat's output sucks; we could grep the /proc
2449                 # path, but that's likely to not be as portable as using the
2450                 # llobdstat utility.  So we parse lctl output instead.
2451                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2452                         obdfilter/$ostname/stats |
2453                         awk '/^write_bytes/ {print $7}' )
2454                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2455                 if (( ${write_bytes:-0} > 0 ))
2456                 then
2457                         all_zeros=false
2458                         break;
2459                 fi
2460         done
2461
2462         $all_zeros || return 0
2463
2464         # Write four bytes
2465         echo foo > $DIR/d33/bar
2466         # Really write them
2467         sync
2468
2469         # Total up write_bytes after writing.  We'd better find non-zeros.
2470         for ostnum in $(seq $OSTCOUNT); do
2471                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2472                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2473                         obdfilter/$ostname/stats |
2474                         awk '/^write_bytes/ {print $7}' )
2475                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2476                 if (( ${write_bytes:-0} > 0 ))
2477                 then
2478                         all_zeros=false
2479                         break;
2480                 fi
2481         done
2482
2483         if $all_zeros
2484         then
2485                 for ostnum in $(seq $OSTCOUNT); do
2486                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2487                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2488                         do_facet ost$ostnum lctl get_param -n \
2489                                 obdfilter/$ostname/stats
2490                 done
2491                 error "OST not keeping write_bytes stats (b22312)"
2492         fi
2493 }
2494 run_test 33c "test llobdstat and write_bytes"
2495
2496 test_33d() {
2497         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2498         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2499         local MDTIDX=1
2500         local remote_dir=$DIR/$tdir/remote_dir
2501
2502         mkdir -p $DIR/$tdir
2503         $LFS mkdir -i $MDTIDX $remote_dir ||
2504                 error "create remote directory failed"
2505
2506         touch $remote_dir/$tfile
2507         chmod 444 $remote_dir/$tfile
2508         chown $RUNAS_ID $remote_dir/$tfile
2509
2510         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2511
2512         chown $RUNAS_ID $remote_dir
2513         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2514                                         error "create" || true
2515         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2516                                     error "open RDWR" || true
2517         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2518                                     error "create" || true
2519 }
2520 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2521
2522 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2523 test_34a() {
2524         rm -f $DIR/f34
2525         $MCREATE $DIR/f34 || error
2526         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2527         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2528         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2529         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2530 }
2531 run_test 34a "truncate file that has not been opened ==========="
2532
2533 test_34b() {
2534         [ ! -f $DIR/f34 ] && test_34a
2535         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2536         $OPENFILE -f O_RDONLY $DIR/f34
2537         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2538         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2539 }
2540 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2541
2542 test_34c() {
2543         [ ! -f $DIR/f34 ] && test_34a
2544         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2545         $OPENFILE -f O_RDWR $DIR/f34
2546         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2547         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2548 }
2549 run_test 34c "O_RDWR opening file-with-size works =============="
2550
2551 test_34d() {
2552         [ ! -f $DIR/f34 ] && test_34a
2553         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2554         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2555         rm $DIR/f34
2556 }
2557 run_test 34d "write to sparse file ============================="
2558
2559 test_34e() {
2560         rm -f $DIR/f34e
2561         $MCREATE $DIR/f34e || error
2562         $TRUNCATE $DIR/f34e 1000 || error
2563         $CHECKSTAT -s 1000 $DIR/f34e || error
2564         $OPENFILE -f O_RDWR $DIR/f34e
2565         $CHECKSTAT -s 1000 $DIR/f34e || error
2566 }
2567 run_test 34e "create objects, some with size and some without =="
2568
2569 test_34f() { # bug 6242, 6243
2570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2571         SIZE34F=48000
2572         rm -f $DIR/f34f
2573         $MCREATE $DIR/f34f || error
2574         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2575         dd if=$DIR/f34f of=$TMP/f34f
2576         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2577         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2578         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2579         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2580         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2581 }
2582 run_test 34f "read from a file with no objects until EOF ======="
2583
2584 test_34g() {
2585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2586         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2587         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2588         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2589         cancel_lru_locks osc
2590         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2591                 error "wrong size after lock cancel"
2592
2593         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2594         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2595                 error "expanding truncate failed"
2596         cancel_lru_locks osc
2597         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2598                 error "wrong expanded size after lock cancel"
2599 }
2600 run_test 34g "truncate long file ==============================="
2601
2602 test_34h() {
2603         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2604         local gid=10
2605         local sz=1000
2606
2607         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2608         sync # Flush the cache so that multiop below does not block on cache
2609              # flush when getting the group lock
2610         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2611         MULTIPID=$!
2612
2613         # Since just timed wait is not good enough, let's do a sync write
2614         # that way we are sure enough time for a roundtrip + processing
2615         # passed + 2 seconds of extra margin.
2616         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2617         rm $DIR/${tfile}-1
2618         sleep 2
2619
2620         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2621                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2622                 kill -9 $MULTIPID
2623         fi
2624         wait $MULTIPID
2625         local nsz=`stat -c %s $DIR/$tfile`
2626         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2627 }
2628 run_test 34h "ftruncate file under grouplock should not block"
2629
2630 test_35a() {
2631         cp /bin/sh $DIR/f35a
2632         chmod 444 $DIR/f35a
2633         chown $RUNAS_ID $DIR/f35a
2634         $RUNAS $DIR/f35a && error || true
2635         rm $DIR/f35a
2636 }
2637 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2638
2639 test_36a() {
2640         rm -f $DIR/f36
2641         utime $DIR/f36 || error
2642 }
2643 run_test 36a "MDS utime check (mknod, utime) ==================="
2644
2645 test_36b() {
2646         echo "" > $DIR/f36
2647         utime $DIR/f36 || error
2648 }
2649 run_test 36b "OST utime check (open, utime) ===================="
2650
2651 test_36c() {
2652         rm -f $DIR/d36/f36
2653         test_mkdir $DIR/d36
2654         chown $RUNAS_ID $DIR/d36
2655         $RUNAS utime $DIR/d36/f36 || error
2656 }
2657 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2658
2659 test_36d() {
2660         [ ! -d $DIR/d36 ] && test_36c
2661         echo "" > $DIR/d36/f36
2662         $RUNAS utime $DIR/d36/f36 || error
2663 }
2664 run_test 36d "non-root OST utime check (open, utime) ==========="
2665
2666 test_36e() {
2667         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2668         test_mkdir -p $DIR/$tdir
2669         touch $DIR/$tdir/$tfile
2670         $RUNAS utime $DIR/$tdir/$tfile && \
2671                 error "utime worked, expected failure" || true
2672 }
2673 run_test 36e "utime on non-owned file (should return error) ===="
2674
2675 subr_36fh() {
2676         local fl="$1"
2677         local LANG_SAVE=$LANG
2678         local LC_LANG_SAVE=$LC_LANG
2679         export LANG=C LC_LANG=C # for date language
2680
2681         DATESTR="Dec 20  2000"
2682         test_mkdir -p $DIR/$tdir
2683         lctl set_param fail_loc=$fl
2684         date; date +%s
2685         cp /etc/hosts $DIR/$tdir/$tfile
2686         sync & # write RPC generated with "current" inode timestamp, but delayed
2687         sleep 1
2688         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2689         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2690         cancel_lru_locks osc
2691         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2692         date; date +%s
2693         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2694                 echo "BEFORE: $LS_BEFORE" && \
2695                 echo "AFTER : $LS_AFTER" && \
2696                 echo "WANT  : $DATESTR" && \
2697                 error "$DIR/$tdir/$tfile timestamps changed" || true
2698
2699         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2700 }
2701
2702 test_36f() {
2703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2704         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2705         subr_36fh "0x80000214"
2706 }
2707 run_test 36f "utime on file racing with OST BRW write =========="
2708
2709 test_36g() {
2710         remote_ost_nodsh && skip "remote OST with nodsh" && return
2711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2712         local fmd_max_age
2713         local fmd_before
2714         local fmd_after
2715
2716         test_mkdir -p $DIR/$tdir
2717         fmd_max_age=$(do_facet ost1 \
2718                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2719                 head -n 1")
2720
2721         fmd_before=$(do_facet ost1 \
2722                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2723         touch $DIR/$tdir/$tfile
2724         sleep $((fmd_max_age + 12))
2725         fmd_after=$(do_facet ost1 \
2726                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2727
2728         echo "fmd_before: $fmd_before"
2729         echo "fmd_after: $fmd_after"
2730         [ "$fmd_after" -gt "$fmd_before" ] && \
2731                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2732                 error "fmd didn't expire after ping" || true
2733 }
2734 run_test 36g "filter mod data cache expiry ====================="
2735
2736 test_36h() {
2737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2738         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2739         subr_36fh "0x80000227"
2740 }
2741 run_test 36h "utime on file racing with OST BRW write =========="
2742
2743 # test_37 - duplicate with tests 32q 32r
2744
2745 test_38() {
2746         local file=$DIR/$tfile
2747         touch $file
2748         openfile -f O_DIRECTORY $file
2749         local RC=$?
2750         local ENOTDIR=20
2751         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2752         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2753 }
2754 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2755
2756 test_39() {
2757         touch $DIR/$tfile
2758         touch $DIR/${tfile}2
2759 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2760 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2761 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2762         sleep 2
2763         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2764         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2765                 echo "mtime"
2766                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2767                 echo "atime"
2768                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2769                 echo "ctime"
2770                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2771                 error "O_TRUNC didn't change timestamps"
2772         fi
2773 }
2774 run_test 39 "mtime changed on create ==========================="
2775
2776 test_39b() {
2777         test_mkdir -p $DIR/$tdir
2778         cp -p /etc/passwd $DIR/$tdir/fopen
2779         cp -p /etc/passwd $DIR/$tdir/flink
2780         cp -p /etc/passwd $DIR/$tdir/funlink
2781         cp -p /etc/passwd $DIR/$tdir/frename
2782         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2783
2784         sleep 1
2785         echo "aaaaaa" >> $DIR/$tdir/fopen
2786         echo "aaaaaa" >> $DIR/$tdir/flink
2787         echo "aaaaaa" >> $DIR/$tdir/funlink
2788         echo "aaaaaa" >> $DIR/$tdir/frename
2789
2790         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2791         local link_new=`stat -c %Y $DIR/$tdir/flink`
2792         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2793         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2794
2795         cat $DIR/$tdir/fopen > /dev/null
2796         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2797         rm -f $DIR/$tdir/funlink2
2798         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2799
2800         for (( i=0; i < 2; i++ )) ; do
2801                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2802                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2803                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2804                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2805
2806                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2807                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2808                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2809                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2810
2811                 cancel_lru_locks osc
2812                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2813         done
2814 }
2815 run_test 39b "mtime change on open, link, unlink, rename  ======"
2816
2817 # this should be set to past
2818 TEST_39_MTIME=`date -d "1 year ago" +%s`
2819
2820 # bug 11063
2821 test_39c() {
2822         touch $DIR1/$tfile
2823         sleep 2
2824         local mtime0=`stat -c %Y $DIR1/$tfile`
2825
2826         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2827         local mtime1=`stat -c %Y $DIR1/$tfile`
2828         [ "$mtime1" = $TEST_39_MTIME ] || \
2829                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2830
2831         local d1=`date +%s`
2832         echo hello >> $DIR1/$tfile
2833         local d2=`date +%s`
2834         local mtime2=`stat -c %Y $DIR1/$tfile`
2835         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2836                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2837
2838         mv $DIR1/$tfile $DIR1/$tfile-1
2839
2840         for (( i=0; i < 2; i++ )) ; do
2841                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2842                 [ "$mtime2" = "$mtime3" ] || \
2843                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2844
2845                 cancel_lru_locks osc
2846                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2847         done
2848 }
2849 run_test 39c "mtime change on rename ==========================="
2850
2851 # bug 21114
2852 test_39d() {
2853         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2854         touch $DIR1/$tfile
2855
2856         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2857
2858         for (( i=0; i < 2; i++ )) ; do
2859                 local mtime=`stat -c %Y $DIR1/$tfile`
2860                 [ $mtime = $TEST_39_MTIME ] || \
2861                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2862
2863                 cancel_lru_locks osc
2864                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2865         done
2866 }
2867 run_test 39d "create, utime, stat =============================="
2868
2869 # bug 21114
2870 test_39e() {
2871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2872         touch $DIR1/$tfile
2873         local mtime1=`stat -c %Y $DIR1/$tfile`
2874
2875         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2876
2877         for (( i=0; i < 2; i++ )) ; do
2878                 local mtime2=`stat -c %Y $DIR1/$tfile`
2879                 [ $mtime2 = $TEST_39_MTIME ] || \
2880                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2881
2882                 cancel_lru_locks osc
2883                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2884         done
2885 }
2886 run_test 39e "create, stat, utime, stat ========================"
2887
2888 # bug 21114
2889 test_39f() {
2890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2891         touch $DIR1/$tfile
2892         mtime1=`stat -c %Y $DIR1/$tfile`
2893
2894         sleep 2
2895         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2896
2897         for (( i=0; i < 2; i++ )) ; do
2898                 local mtime2=`stat -c %Y $DIR1/$tfile`
2899                 [ $mtime2 = $TEST_39_MTIME ] || \
2900                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2901
2902                 cancel_lru_locks osc
2903                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2904         done
2905 }
2906 run_test 39f "create, stat, sleep, utime, stat ================="
2907
2908 # bug 11063
2909 test_39g() {
2910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2911         echo hello >> $DIR1/$tfile
2912         local mtime1=`stat -c %Y $DIR1/$tfile`
2913
2914         sleep 2
2915         chmod o+r $DIR1/$tfile
2916
2917         for (( i=0; i < 2; i++ )) ; do
2918                 local mtime2=`stat -c %Y $DIR1/$tfile`
2919                 [ "$mtime1" = "$mtime2" ] || \
2920                         error "lost mtime: $mtime2, should be $mtime1"
2921
2922                 cancel_lru_locks osc
2923                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2924         done
2925 }
2926 run_test 39g "write, chmod, stat ==============================="
2927
2928 # bug 11063
2929 test_39h() {
2930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2931         touch $DIR1/$tfile
2932         sleep 1
2933
2934         local d1=`date`
2935         echo hello >> $DIR1/$tfile
2936         local mtime1=`stat -c %Y $DIR1/$tfile`
2937
2938         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2939         local d2=`date`
2940         if [ "$d1" != "$d2" ]; then
2941                 echo "write and touch not within one second"
2942         else
2943                 for (( i=0; i < 2; i++ )) ; do
2944                         local mtime2=`stat -c %Y $DIR1/$tfile`
2945                         [ "$mtime2" = $TEST_39_MTIME ] || \
2946                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2947
2948                         cancel_lru_locks osc
2949                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2950                 done
2951         fi
2952 }
2953 run_test 39h "write, utime within one second, stat ============="
2954
2955 test_39i() {
2956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2957         touch $DIR1/$tfile
2958         sleep 1
2959
2960         echo hello >> $DIR1/$tfile
2961         local mtime1=`stat -c %Y $DIR1/$tfile`
2962
2963         mv $DIR1/$tfile $DIR1/$tfile-1
2964
2965         for (( i=0; i < 2; i++ )) ; do
2966                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2967
2968                 [ "$mtime1" = "$mtime2" ] || \
2969                         error "lost mtime: $mtime2, should be $mtime1"
2970
2971                 cancel_lru_locks osc
2972                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2973         done
2974 }
2975 run_test 39i "write, rename, stat =============================="
2976
2977 test_39j() {
2978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2979         start_full_debug_logging
2980         touch $DIR1/$tfile
2981         sleep 1
2982
2983         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2984         lctl set_param fail_loc=0x80000412
2985         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2986                 error "multiop failed"
2987         local multipid=$!
2988         local mtime1=`stat -c %Y $DIR1/$tfile`
2989
2990         mv $DIR1/$tfile $DIR1/$tfile-1
2991
2992         kill -USR1 $multipid
2993         wait $multipid || error "multiop close failed"
2994
2995         for (( i=0; i < 2; i++ )) ; do
2996                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2997                 [ "$mtime1" = "$mtime2" ] ||
2998                         error "mtime is lost on close: $mtime2, " \
2999                               "should be $mtime1"
3000
3001                 cancel_lru_locks osc
3002                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3003         done
3004         lctl set_param fail_loc=0
3005         stop_full_debug_logging
3006 }
3007 run_test 39j "write, rename, close, stat ======================="
3008
3009 test_39k() {
3010         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3011         touch $DIR1/$tfile
3012         sleep 1
3013
3014         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3015         local multipid=$!
3016         local mtime1=`stat -c %Y $DIR1/$tfile`
3017
3018         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3019
3020         kill -USR1 $multipid
3021         wait $multipid || error "multiop close failed"
3022
3023         for (( i=0; i < 2; i++ )) ; do
3024                 local mtime2=`stat -c %Y $DIR1/$tfile`
3025
3026                 [ "$mtime2" = $TEST_39_MTIME ] || \
3027                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3028
3029                 cancel_lru_locks osc
3030                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3031         done
3032 }
3033 run_test 39k "write, utime, close, stat ========================"
3034
3035 # this should be set to future
3036 TEST_39_ATIME=`date -d "1 year" +%s`
3037
3038 test_39l() {
3039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3040         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3041         local atime_diff=$(do_facet $SINGLEMDS \
3042                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3043         rm -rf $DIR/$tdir
3044         mkdir -p $DIR/$tdir
3045
3046         # test setting directory atime to future
3047         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3048         local atime=$(stat -c %X $DIR/$tdir)
3049         [ "$atime" = $TEST_39_ATIME ] || \
3050                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3051
3052         # test setting directory atime from future to now
3053         local d1=$(date +%s)
3054         ls $DIR/$tdir
3055         local d2=$(date +%s)
3056
3057         cancel_lru_locks mdc
3058         atime=$(stat -c %X $DIR/$tdir)
3059         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3060                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3061
3062         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3063         sleep 3
3064
3065         # test setting directory atime when now > dir atime + atime_diff
3066         d1=$(date +%s)
3067         ls $DIR/$tdir
3068         d2=$(date +%s)
3069         cancel_lru_locks mdc
3070         atime=$(stat -c %X $DIR/$tdir)
3071         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3072                 error "atime is not updated  : $atime, should be $d2"
3073
3074         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3075         sleep 3
3076
3077         # test not setting directory atime when now < dir atime + atime_diff
3078         ls $DIR/$tdir
3079         cancel_lru_locks mdc
3080         atime=$(stat -c %X $DIR/$tdir)
3081         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3082                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3083
3084         do_facet $SINGLEMDS \
3085                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3086 }
3087 run_test 39l "directory atime update ==========================="
3088
3089 test_39m() {
3090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3091         touch $DIR1/$tfile
3092         sleep 2
3093         local far_past_mtime=$(date -d "May 29 1953" +%s)
3094         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3095
3096         touch -m -d @$far_past_mtime $DIR1/$tfile
3097         touch -a -d @$far_past_atime $DIR1/$tfile
3098
3099         for (( i=0; i < 2; i++ )) ; do
3100                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3101                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3102                         error "atime or mtime set incorrectly"
3103
3104                 cancel_lru_locks osc
3105                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3106         done
3107 }
3108 run_test 39m "test atime and mtime before 1970"
3109
3110 test_39n() { # LU-3832
3111         local atime_diff=$(do_facet $SINGLEMDS \
3112                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3113         local atime0
3114         local atime1
3115         local atime2
3116
3117         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3118
3119         rm -rf $DIR/$tfile
3120         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3121         atime0=$(stat -c %X $DIR/$tfile)
3122
3123         sleep 5
3124         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3125         atime1=$(stat -c %X $DIR/$tfile)
3126
3127         sleep 5
3128         cancel_lru_locks mdc
3129         cancel_lru_locks osc
3130         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3131         atime2=$(stat -c %X $DIR/$tfile)
3132
3133         do_facet $SINGLEMDS \
3134                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3135
3136         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3137         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3138 }
3139 run_test 39n "check that O_NOATIME is honored"
3140
3141 test_39o() {
3142         TESTDIR=$DIR/$tdir/$tfile
3143         [ -e $TESTDIR ] && rm -rf $TESTDIR
3144         test_mkdir -p $TESTDIR
3145         cd $TESTDIR
3146         links1=2
3147         ls
3148         mkdir a b
3149         ls
3150         links2=$(stat -c %h .)
3151         [ $(($links1 + 2)) != $links2 ] &&
3152                 error "wrong links count $(($links1 + 2)) != $links2"
3153         rmdir b
3154         links3=$(stat -c %h .)
3155         [ $(($links1 + 1)) != $links3 ] &&
3156                 error "wrong links count $links1 != $links3"
3157         return 0
3158 }
3159 run_test 39o "directory cached attributes updated after create ========"
3160
3161 test_39p() {
3162         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3163         local MDTIDX=1
3164         TESTDIR=$DIR/$tdir/$tfile
3165         [ -e $TESTDIR ] && rm -rf $TESTDIR
3166         mkdir -p $TESTDIR
3167         cd $TESTDIR
3168         links1=2
3169         ls
3170         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir1
3171         $LFS mkdir -i $MDTIDX $TESTDIR/remote_dir2
3172         ls
3173         links2=$(stat -c %h .)
3174         [ $(($links1 + 2)) != $links2 ] &&
3175                 error "wrong links count $(($links1 + 2)) != $links2"
3176         rmdir remote_dir2
3177         links3=$(stat -c %h .)
3178         [ $(($links1 + 1)) != $links3 ] &&
3179                 error "wrong links count $links1 != $links3"
3180         return 0
3181 }
3182 run_test 39p "remote directory cached attributes updated after create ========"
3183
3184
3185 test_40() {
3186         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3187         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3188                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3189         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3190                 error "$tfile is not 4096 bytes in size"
3191 }
3192 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3193
3194 test_41() {
3195         # bug 1553
3196         small_write $DIR/f41 18
3197 }
3198 run_test 41 "test small file write + fstat ====================="
3199
3200 count_ost_writes() {
3201         lctl get_param -n osc.*.stats |
3202             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3203 }
3204
3205 # decent default
3206 WRITEBACK_SAVE=500
3207 DIRTY_RATIO_SAVE=40
3208 MAX_DIRTY_RATIO=50
3209 BG_DIRTY_RATIO_SAVE=10
3210 MAX_BG_DIRTY_RATIO=25
3211
3212 start_writeback() {
3213         trap 0
3214         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3215         # dirty_ratio, dirty_background_ratio
3216         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3217                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3218                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3219                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3220         else
3221                 # if file not here, we are a 2.4 kernel
3222                 kill -CONT `pidof kupdated`
3223         fi
3224 }
3225
3226 stop_writeback() {
3227         # setup the trap first, so someone cannot exit the test at the
3228         # exact wrong time and mess up a machine
3229         trap start_writeback EXIT
3230         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3231         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3232                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3233                 sysctl -w vm.dirty_writeback_centisecs=0
3234                 sysctl -w vm.dirty_writeback_centisecs=0
3235                 # save and increase /proc/sys/vm/dirty_ratio
3236                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3237                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3238                 # save and increase /proc/sys/vm/dirty_background_ratio
3239                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3240                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3241         else
3242                 # if file not here, we are a 2.4 kernel
3243                 kill -STOP `pidof kupdated`
3244         fi
3245 }
3246
3247 # ensure that all stripes have some grant before we test client-side cache
3248 setup_test42() {
3249         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3250                 dd if=/dev/zero of=$i bs=4k count=1
3251                 rm $i
3252         done
3253 }
3254
3255 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3256 # file truncation, and file removal.
3257 test_42a() {
3258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3259         setup_test42
3260         cancel_lru_locks osc
3261         stop_writeback
3262         sync; sleep 1; sync # just to be safe
3263         BEFOREWRITES=`count_ost_writes`
3264         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3265         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3266         AFTERWRITES=`count_ost_writes`
3267         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3268                 error "$BEFOREWRITES < $AFTERWRITES"
3269         start_writeback
3270 }
3271 run_test 42a "ensure that we don't flush on close =============="
3272
3273 test_42b() {
3274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3275         setup_test42
3276         cancel_lru_locks osc
3277         stop_writeback
3278         sync
3279         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3280         BEFOREWRITES=`count_ost_writes`
3281         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3282         AFTERWRITES=`count_ost_writes`
3283         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3284                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3285         fi
3286         BEFOREWRITES=`count_ost_writes`
3287         sync || error "sync: $?"
3288         AFTERWRITES=`count_ost_writes`
3289         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3290                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3291         fi
3292         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3293         start_writeback
3294         return 0
3295 }
3296 run_test 42b "test destroy of file with cached dirty data ======"
3297
3298 # if these tests just want to test the effect of truncation,
3299 # they have to be very careful.  consider:
3300 # - the first open gets a {0,EOF}PR lock
3301 # - the first write conflicts and gets a {0, count-1}PW
3302 # - the rest of the writes are under {count,EOF}PW
3303 # - the open for truncate tries to match a {0,EOF}PR
3304 #   for the filesize and cancels the PWs.
3305 # any number of fixes (don't get {0,EOF} on open, match
3306 # composite locks, do smarter file size management) fix
3307 # this, but for now we want these tests to verify that
3308 # the cancellation with truncate intent works, so we
3309 # start the file with a full-file pw lock to match against
3310 # until the truncate.
3311 trunc_test() {
3312         test=$1
3313         file=$DIR/$test
3314         offset=$2
3315         cancel_lru_locks osc
3316         stop_writeback
3317         # prime the file with 0,EOF PW to match
3318         touch $file
3319         $TRUNCATE $file 0
3320         sync; sync
3321         # now the real test..
3322         dd if=/dev/zero of=$file bs=1024 count=100
3323         BEFOREWRITES=`count_ost_writes`
3324         $TRUNCATE $file $offset
3325         cancel_lru_locks osc
3326         AFTERWRITES=`count_ost_writes`
3327         start_writeback
3328 }
3329
3330 test_42c() {
3331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3332         trunc_test 42c 1024
3333         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3334             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3335         rm $file
3336 }
3337 run_test 42c "test partial truncate of file with cached dirty data"
3338
3339 test_42d() {
3340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3341         trunc_test 42d 0
3342         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3343             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3344         rm $file
3345 }
3346 run_test 42d "test complete truncate of file with cached dirty data"
3347
3348 test_42e() { # bug22074
3349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3350         local TDIR=$DIR/${tdir}e
3351         local pagesz=$(page_size)
3352         local pages=16 # hardcoded 16 pages, don't change it.
3353         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3354         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3355         local max_dirty_mb
3356         local warmup_files
3357
3358         test_mkdir -p $DIR/${tdir}e
3359         $SETSTRIPE -c 1 $TDIR
3360         createmany -o $TDIR/f $files
3361
3362         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3363
3364         # we assume that with $OSTCOUNT files, at least one of them will
3365         # be allocated on OST0.
3366         warmup_files=$((OSTCOUNT * max_dirty_mb))
3367         createmany -o $TDIR/w $warmup_files
3368
3369         # write a large amount of data into one file and sync, to get good
3370         # avail_grant number from OST.
3371         for ((i=0; i<$warmup_files; i++)); do
3372                 idx=$($GETSTRIPE -i $TDIR/w$i)
3373                 [ $idx -ne 0 ] && continue
3374                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3375                 break
3376         done
3377         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3378         sync
3379         $LCTL get_param $proc_osc0/cur_dirty_bytes
3380         $LCTL get_param $proc_osc0/cur_grant_bytes
3381
3382         # create as much dirty pages as we can while not to trigger the actual
3383         # RPCs directly. but depends on the env, VFS may trigger flush during this
3384         # period, hopefully we are good.
3385         for ((i=0; i<$warmup_files; i++)); do
3386                 idx=$($GETSTRIPE -i $TDIR/w$i)
3387                 [ $idx -ne 0 ] && continue
3388                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3389         done
3390         $LCTL get_param $proc_osc0/cur_dirty_bytes
3391         $LCTL get_param $proc_osc0/cur_grant_bytes
3392
3393         # perform the real test
3394         $LCTL set_param $proc_osc0/rpc_stats 0
3395         for ((;i<$files; i++)); do
3396                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3397                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3398         done
3399         sync
3400         $LCTL get_param $proc_osc0/rpc_stats
3401
3402         local percent=0
3403         local have_ppr=false
3404         $LCTL get_param $proc_osc0/rpc_stats |
3405                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3406                         # skip lines until we are at the RPC histogram data
3407                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3408                         $have_ppr || continue
3409
3410                         # we only want the percent stat for < 16 pages
3411                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3412
3413                         percent=$((percent + WPCT))
3414                         if [ $percent -gt 15 ]; then
3415                                 error "less than 16-pages write RPCs" \
3416                                       "$percent% > 15%"
3417                                 break
3418                         fi
3419                 done
3420         rm -rf $TDIR
3421 }
3422 run_test 42e "verify sub-RPC writes are not done synchronously"
3423
3424 test_43() {
3425         test_mkdir -p $DIR/$tdir
3426         cp -p /bin/ls $DIR/$tdir/$tfile
3427         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3428         pid=$!
3429         # give multiop a chance to open
3430         sleep 1
3431
3432         $DIR/$tdir/$tfile && error || true
3433         kill -USR1 $pid
3434 }
3435 run_test 43 "execution of file opened for write should return -ETXTBSY"
3436
3437 test_43a() {
3438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3439         test_mkdir -p $DIR/$tdir
3440         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3441                         cp -p multiop $DIR/$tdir/multiop
3442         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3443                         return 1
3444         MULTIOP_PID=$!
3445         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3446         kill -USR1 $MULTIOP_PID || return 2
3447         wait $MULTIOP_PID || return 3
3448         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3449 }
3450 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3451
3452 test_43b() {
3453         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3454         test_mkdir -p $DIR/$tdir
3455         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3456                         cp -p multiop $DIR/$tdir/multiop
3457         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3458                         return 1
3459         MULTIOP_PID=$!
3460         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3461         kill -USR1 $MULTIOP_PID || return 2
3462         wait $MULTIOP_PID || return 3
3463         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3464 }
3465 run_test 43b "truncate of file being executed should return -ETXTBSY"
3466
3467 test_43c() {
3468         local testdir="$DIR/$tdir"
3469         test_mkdir -p $DIR/$tdir
3470         cp $SHELL $testdir/
3471         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3472                 ( cd $testdir && md5sum -c)
3473 }
3474 run_test 43c "md5sum of copy into lustre========================"
3475
3476 test_44() {
3477         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3478         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3479         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3480 }
3481 run_test 44 "zero length read from a sparse stripe ============="
3482
3483 test_44a() {
3484     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3485                          awk '{print $2}'`
3486     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3487     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3488     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3489                       awk '{print $2}'`
3490     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3491         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3492     fi
3493
3494     OFFSETS="0 $((stride/2)) $((stride-1))"
3495     for offset in $OFFSETS ; do
3496       for i in `seq 0 $((nstripe-1))`; do
3497         local GLOBALOFFSETS=""
3498         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3499         local myfn=$DIR/d44a-$size
3500         echo "--------writing $myfn at $size"
3501         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3502         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3503         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3504                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3505
3506         for j in `seq 0 $((nstripe-1))`; do
3507             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3508             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3509             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3510         done
3511         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3512                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3513         rm -f $myfn
3514       done
3515     done
3516 }
3517 run_test 44a "test sparse pwrite ==============================="
3518
3519 dirty_osc_total() {
3520         tot=0
3521         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3522                 tot=$(($tot + $d))
3523         done
3524         echo $tot
3525 }
3526 do_dirty_record() {
3527         before=`dirty_osc_total`
3528         echo executing "\"$*\""
3529         eval $*
3530         after=`dirty_osc_total`
3531         echo before $before, after $after
3532 }
3533 test_45() {
3534         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3535         f="$DIR/f45"
3536         # Obtain grants from OST if it supports it
3537         echo blah > ${f}_grant
3538         stop_writeback
3539         sync
3540         do_dirty_record "echo blah > $f"
3541         [ $before -eq $after ] && error "write wasn't cached"
3542         do_dirty_record "> $f"
3543         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3544         do_dirty_record "echo blah > $f"
3545         [ $before -eq $after ] && error "write wasn't cached"
3546         do_dirty_record "sync"
3547         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3548         do_dirty_record "echo blah > $f"
3549         [ $before -eq $after ] && error "write wasn't cached"
3550         do_dirty_record "cancel_lru_locks osc"
3551         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3552         start_writeback
3553 }
3554 run_test 45 "osc io page accounting ============================"
3555
3556 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3557 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3558 # objects offset and an assert hit when an rpc was built with 1023's mapped
3559 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3560 test_46() {
3561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3562         f="$DIR/f46"
3563         stop_writeback
3564         sync
3565         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3566         sync
3567         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3568         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3569         sync
3570         start_writeback
3571 }
3572 run_test 46 "dirtying a previously written page ================"
3573
3574 # test_47 is removed "Device nodes check" is moved to test_28
3575
3576 test_48a() { # bug 2399
3577         check_kernel_version 34 || return 0
3578         test_mkdir -p $DIR/$tdir
3579         cd $DIR/$tdir
3580         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3581         test_mkdir $DIR/$tdir || error "recreate directory failed"
3582         touch foo || error "'touch foo' failed after recreating cwd"
3583         test_mkdir $DIR/$tdir/bar ||
3584                      error "'mkdir foo' failed after recreating cwd"
3585         if check_kernel_version 44; then
3586                 touch .foo || error "'touch .foo' failed after recreating cwd"
3587                 test_mkdir $DIR/$tdir/.bar ||
3588                               error "'mkdir .foo' failed after recreating cwd"
3589         fi
3590         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3591         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3592         cd . || error "'cd .' failed after recreating cwd"
3593         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3594         rmdir . && error "'rmdir .' worked after recreating cwd"
3595         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3596         cd .. || error "'cd ..' failed after recreating cwd"
3597 }
3598 run_test 48a "Access renamed working dir (should return errors)="
3599
3600 test_48b() { # bug 2399
3601         check_kernel_version 34 || return 0
3602         rm -rf $DIR/$tdir
3603         test_mkdir -p $DIR/$tdir
3604         cd $DIR/$tdir
3605         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3606         touch foo && error "'touch foo' worked after removing cwd"
3607         test_mkdir $DIR/$tdir/foo &&
3608                      error "'mkdir foo' worked after removing cwd"
3609         if check_kernel_version 44; then
3610                 touch .foo && error "'touch .foo' worked after removing cwd"
3611                 test_mkdir $DIR/$tdir/.foo &&
3612                               error "'mkdir .foo' worked after removing cwd"
3613         fi
3614         ls . > /dev/null && error "'ls .' worked after removing cwd"
3615         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3616         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3617         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3618         rmdir . && error "'rmdir .' worked after removing cwd"
3619         ln -s . foo && error "'ln -s .' worked after removing cwd"
3620         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3621 }
3622 run_test 48b "Access removed working dir (should return errors)="
3623
3624 test_48c() { # bug 2350
3625         check_kernel_version 36 || return 0
3626         #lctl set_param debug=-1
3627         #set -vx
3628         rm -rf $DIR/$tdir
3629         test_mkdir -p $DIR/$tdir/dir
3630         cd $DIR/$tdir/dir
3631         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3632         $TRACE touch foo && error "touch foo worked after removing cwd"
3633         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3634         if check_kernel_version 44; then
3635                 touch .foo && error "touch .foo worked after removing cwd"
3636                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3637         fi
3638         $TRACE ls . && error "'ls .' worked after removing cwd"
3639         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3640         is_patchless || ( $TRACE cd . &&
3641                         error "'cd .' worked after removing cwd" )
3642         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3643         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3644         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3645         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3646 }
3647 run_test 48c "Access removed working subdir (should return errors)"
3648
3649 test_48d() { # bug 2350
3650         check_kernel_version 36 || return 0
3651         #lctl set_param debug=-1
3652         #set -vx
3653         rm -rf $DIR/$tdir
3654         test_mkdir -p $DIR/$tdir/dir
3655         cd $DIR/$tdir/dir
3656         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3657         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3658         $TRACE touch foo && error "'touch foo' worked after removing parent"
3659         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3660         if check_kernel_version 44; then
3661                 touch .foo && error "'touch .foo' worked after removing parent"
3662                 test_mkdir .foo &&
3663                               error "mkdir .foo worked after removing parent"
3664         fi
3665         $TRACE ls . && error "'ls .' worked after removing parent"
3666         $TRACE ls .. && error "'ls ..' worked after removing parent"
3667         is_patchless || ( $TRACE cd . &&
3668                         error "'cd .' worked after recreate parent" )
3669         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3670         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3671         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3672         is_patchless || ( $TRACE cd .. &&
3673                         error "'cd ..' worked after removing parent" || true )
3674 }
3675 run_test 48d "Access removed parent subdir (should return errors)"
3676
3677 test_48e() { # bug 4134
3678         check_kernel_version 41 || return 0
3679         #lctl set_param debug=-1
3680         #set -vx
3681         rm -rf $DIR/$tdir
3682         test_mkdir -p $DIR/$tdir/dir
3683         cd $DIR/$tdir/dir
3684         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3685         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3686         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3687         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3688         # On a buggy kernel addition of "touch foo" after cd .. will
3689         # produce kernel oops in lookup_hash_it
3690         touch ../foo && error "'cd ..' worked after recreate parent"
3691         cd $DIR
3692         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3693 }
3694 run_test 48e "Access to recreated parent subdir (should return errors)"
3695
3696 test_49() { # LU-1030
3697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3698         # get ost1 size - lustre-OST0000
3699         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3700         # write 800M at maximum
3701         [ $ost1_size -gt 819200 ] && ost1_size=819200
3702
3703         lfs setstripe -c 1 -i 0 $DIR/$tfile
3704         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3705         local dd_pid=$!
3706
3707         # change max_pages_per_rpc while writing the file
3708         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3709         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3710         # loop until dd process exits
3711         while ps ax -opid | grep -wq $dd_pid; do
3712                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3713                 sleep $((RANDOM % 5 + 1))
3714         done
3715         # restore original max_pages_per_rpc
3716         $LCTL set_param $osc1_mppc=$orig_mppc
3717         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3718 }
3719 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3720
3721 test_50() {
3722         # bug 1485
3723         test_mkdir $DIR/$tdir
3724         cd $DIR/$tdir
3725         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3726 }
3727 run_test 50 "special situations: /proc symlinks  ==============="
3728
3729 test_51a() {    # was test_51
3730         # bug 1516 - create an empty entry right after ".." then split dir
3731         test_mkdir -p $DIR/$tdir
3732         touch $DIR/$tdir/foo
3733         $MCREATE $DIR/$tdir/bar
3734         rm $DIR/$tdir/foo
3735         createmany -m $DIR/$tdir/longfile 201
3736         FNUM=202
3737         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3738                 $MCREATE $DIR/$tdir/longfile$FNUM
3739                 FNUM=$(($FNUM + 1))
3740                 echo -n "+"
3741         done
3742         echo
3743         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3744 }
3745 run_test 51a "special situations: split htree with empty entry =="
3746
3747 export NUMTEST=70000
3748 test_51b() {
3749         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3750         local BASE=$DIR/$tdir
3751
3752         # cleanup the directory
3753         rm -fr $BASE
3754
3755         test_mkdir -p $BASE
3756
3757         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3758         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3759         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3760                 return
3761
3762         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3763                 echo "reduced count to $NUMTEST due to inodes"
3764
3765         # need to check free space for the directories as well
3766         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3767         numfree=$((blkfree / 4))
3768         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3769                 echo "reduced count to $NUMTEST due to blocks"
3770
3771         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3772                 echo "failed" > $BASE/fnum
3773 }
3774 run_test 51b "exceed 64k subdirectory nlink limit"
3775
3776 test_51ba() { # LU-993
3777         local BASE=$DIR/$tdir
3778         # unlink all but 100 subdirectories, then check it still works
3779         local LEFT=100
3780         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3781
3782         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3783         local DELETE=$((NUMTEST - LEFT))
3784
3785         # continue on to run this test even if 51b didn't finish,
3786         # just to delete the many subdirectories created.
3787         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3788
3789         # for ldiskfs the nlink count should be 1, but this is OSD specific
3790         # and so this is listed for informational purposes only
3791         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3792         unlinkmany -d $BASE/d $DELETE
3793         RC=$?
3794
3795         if [ $RC -ne 0 ]; then
3796                 if [ "$NUMPREV" == "failed" ]; then
3797                         skip "previous setup failed"
3798                         return 0
3799                 else
3800                         error "unlink of first $DELETE subdirs failed"
3801                         return $RC
3802                 fi
3803         fi
3804
3805         echo "nlink between: $(stat -c %h $BASE)"
3806         # trim the first line of ls output
3807         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3808         [ $FOUND -ne $LEFT ] &&
3809                 error "can't find subdirs: found only $FOUND/$LEFT"
3810
3811         unlinkmany -d $BASE/d $DELETE $LEFT ||
3812                 error "unlink of second $LEFT subdirs failed"
3813         # regardless of whether the backing filesystem tracks nlink accurately
3814         # or not, the nlink count shouldn't be more than "." and ".." here
3815         local AFTER=$(stat -c %h $BASE)
3816         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3817                 echo "nlink after: $AFTER"
3818 }
3819 run_test 51ba "verify nlink for many subdirectory cleanup"
3820
3821 test_51d() {
3822         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3823         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3824         test_mkdir -p $DIR/$tdir
3825         createmany -o $DIR/$tdir/t- 1000
3826         $GETSTRIPE $DIR/$tdir > $TMP/files
3827         for N in `seq 0 $((OSTCOUNT - 1))`; do
3828             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3829             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3830             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3831         done
3832         unlinkmany $DIR/$tdir/t- 1000
3833
3834         NLAST=0
3835         for N in `seq 1 $((OSTCOUNT - 1))`; do
3836             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3837                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3838             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3839                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3840
3841             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3842                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3843             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3844                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3845             NLAST=$N
3846         done
3847 }
3848 run_test 51d "check object distribution ===================="
3849
3850 test_52a() {
3851         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3852         test_mkdir -p $DIR/$tdir
3853         touch $DIR/$tdir/foo
3854         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3855         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3856         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3857         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3858         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3859                                         error "link worked"
3860         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3861         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3862         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3863                                                      error "lsattr"
3864         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3865         cp -r $DIR/$tdir /tmp/
3866         rm -fr $DIR/$tdir || error "cleanup rm failed"
3867 }
3868 run_test 52a "append-only flag test (should return errors) ====="
3869
3870 test_52b() {
3871         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3872         test_mkdir -p $DIR/$tdir
3873         touch $DIR/$tdir/foo
3874         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3875         cat test > $DIR/$tdir/foo && error "cat test worked"
3876         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3877         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3878         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3879                                         error "link worked"
3880         echo foo >> $DIR/$tdir/foo && error "echo worked"
3881         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3882         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3883         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3884         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3885                                                         error "lsattr"
3886         chattr -i $DIR/$tdir/foo || error "chattr failed"
3887
3888         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3889 }
3890 run_test 52b "immutable flag test (should return errors) ======="
3891
3892 test_53() {
3893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3894         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3895         remote_ost_nodsh && skip "remote OST with nodsh" && return
3896
3897         local param
3898         local param_seq
3899         local ostname
3900         local mds_last
3901         local mds_last_seq
3902         local ost_last
3903         local ost_last_seq
3904         local ost_last_id
3905         local ostnum
3906         local node
3907         local found=0
3908
3909         # only test MDT0000
3910         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3911         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3912                 param=$(echo ${value[0]} | cut -d "=" -f1)
3913                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3914                 param_seq=$(echo ${param} |
3915                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3916                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3917                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3918
3919                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3920                 node=$(facet_active_host ost$((ostnum+1)))
3921                 param="obdfilter.$ostname.last_id"
3922                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3923                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3924                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3925                                       sed -e "s/^0x//g")
3926                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3927                         if [ $ost_last_seq = $mds_last_seq ]; then
3928                                 if [ $ost_last_id != $mds_last ]; then
3929                                         error "$ost_last != $mds_last_id"
3930                                 else
3931                                         found=1
3932                                         break
3933                                 fi
3934                         fi
3935                 done
3936         done
3937         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3938         return 0
3939 }
3940 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3941
3942 test_54a() {
3943         $SOCKETSERVER $DIR/socket ||
3944                 error "$SOCKETSERVER $DIR/socket failed: $?"
3945         $SOCKETCLIENT $DIR/socket ||
3946                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3947         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3948 }
3949 run_test 54a "unix domain socket test =========================="
3950
3951 test_54b() {
3952         f="$DIR/f54b"
3953         mknod $f c 1 3
3954         chmod 0666 $f
3955         dd if=/dev/zero of=$f bs=$(page_size) count=1
3956 }
3957 run_test 54b "char device works in lustre ======================"
3958
3959 find_loop_dev() {
3960         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3961         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3962         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3963
3964         for i in $(seq 3 7); do
3965                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3966                 LOOPDEV=$LOOPBASE$i
3967                 LOOPNUM=$i
3968                 break
3969         done
3970 }
3971
3972 test_54c() {
3973         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3974         tfile="$DIR/f54c"
3975         tdir="$DIR/d54c"
3976         loopdev="$DIR/loop54c"
3977
3978         find_loop_dev
3979         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3980         mknod $loopdev b 7 $LOOPNUM
3981         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3982         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3983         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3984         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3985         test_mkdir -p $tdir
3986         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3987         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3988         df $tdir
3989         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3990         $UMOUNT -d $tdir
3991         losetup -d $loopdev
3992         rm $loopdev
3993 }
3994 run_test 54c "block device works in lustre ====================="
3995
3996 test_54d() {
3997         f="$DIR/f54d"
3998         string="aaaaaa"
3999         mknod $f p
4000         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
4001 }
4002 run_test 54d "fifo device works in lustre ======================"
4003
4004 test_54e() {
4005         check_kernel_version 46 || return 0
4006         f="$DIR/f54e"
4007         string="aaaaaa"
4008         cp -aL /dev/console $f
4009         echo $string > $f || error "echo $string to $f failed"
4010 }
4011 run_test 54e "console/tty device works in lustre ======================"
4012
4013 #The test_55 used to be iopen test and it was removed by bz#24037.
4014 #run_test 55 "check iopen_connect_dentry() ======================"
4015
4016 test_56a() {    # was test_56
4017         rm -rf $DIR/$tdir
4018         $SETSTRIPE -d $DIR
4019         test_mkdir -p $DIR/$tdir/dir
4020         NUMFILES=3
4021         NUMFILESx2=$(($NUMFILES * 2))
4022         for i in `seq 1 $NUMFILES` ; do
4023                 touch $DIR/$tdir/file$i
4024                 touch $DIR/$tdir/dir/file$i
4025         done
4026
4027         # test lfs getstripe with --recursive
4028         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
4029         [ $FILENUM -eq $NUMFILESx2 ] ||
4030                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
4031         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
4032         [ $FILENUM -eq $NUMFILES ] ||
4033                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
4034         echo "$GETSTRIPE --recursive passed."
4035
4036         # test lfs getstripe with file instead of dir
4037         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
4038         [ $FILENUM  -eq 1 ] || error \
4039                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
4040         echo "$GETSTRIPE file1 passed."
4041
4042         #test lfs getstripe with --verbose
4043         [ `$GETSTRIPE --verbose $DIR/$tdir |
4044                         grep -c lmm_magic` -eq $NUMFILES ] ||
4045                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
4046         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
4047             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
4048         echo "$GETSTRIPE --verbose passed."
4049
4050         #test lfs getstripe with --obd
4051         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
4052                                         grep -q "unknown obduuid" ||
4053                 error "$GETSTRIPE --obd wrong_uuid should return error message"
4054
4055         [  "$OSTCOUNT" -lt 2 ] &&
4056                 skip_env "skipping other $GETSTRIPE --obd test" && return
4057
4058         OSTIDX=1
4059         OBDUUID=$(ostuuid_from_index $OSTIDX)
4060         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4061         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4062         [ $FOUND -eq $FILENUM ] ||
4063                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4064         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4065                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4066                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4067                 error "$GETSTRIPE --obd: should not show file on other obd"
4068         echo "$GETSTRIPE --obd passed"
4069 }
4070 run_test 56a "check $GETSTRIPE"
4071
4072 NUMFILES=3
4073 NUMDIRS=3
4074 setup_56() {
4075         local LOCAL_NUMFILES="$1"
4076         local LOCAL_NUMDIRS="$2"
4077         local MKDIR_PARAMS="$3"
4078
4079         if [ ! -d "$TDIR" ] ; then
4080                 test_mkdir -p $TDIR
4081                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4082                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4083                         touch $TDIR/file$i
4084                 done
4085                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4086                         test_mkdir $TDIR/dir$i
4087                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4088                                 touch $TDIR/dir$i/file$j
4089                         done
4090                 done
4091         fi
4092 }
4093
4094 setup_56_special() {
4095         LOCAL_NUMFILES=$1
4096         LOCAL_NUMDIRS=$2
4097         setup_56 $1 $2
4098         if [ ! -e "$TDIR/loop1b" ] ; then
4099                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4100                         mknod $TDIR/loop${i}b b 7 $i
4101                         mknod $TDIR/null${i}c c 1 3
4102                         ln -s $TDIR/file1 $TDIR/link${i}l
4103                 done
4104                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4105                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4106                         mknod $TDIR/dir$i/null${i}c c 1 3
4107                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4108                 done
4109         fi
4110 }
4111
4112 test_56g() {
4113         $SETSTRIPE -d $DIR
4114
4115         TDIR=$DIR/${tdir}g
4116         setup_56 $NUMFILES $NUMDIRS
4117
4118         EXPECTED=$(($NUMDIRS + 2))
4119         # test lfs find with -name
4120         for i in $(seq 1 $NUMFILES) ; do
4121                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4122                 [ $NUMS -eq $EXPECTED ] ||
4123                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4124                               "found $NUMS, expected $EXPECTED"
4125         done
4126 }
4127 run_test 56g "check lfs find -name ============================="
4128
4129 test_56h() {
4130         $SETSTRIPE -d $DIR
4131
4132         TDIR=$DIR/${tdir}g
4133         setup_56 $NUMFILES $NUMDIRS
4134
4135         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4136         # test lfs find with ! -name
4137         for i in $(seq 1 $NUMFILES) ; do
4138                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4139                 [ $NUMS -eq $EXPECTED ] ||
4140                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4141                               "found $NUMS, expected $EXPECTED"
4142         done
4143 }
4144 run_test 56h "check lfs find ! -name ============================="
4145
4146 test_56i() {
4147        tdir=${tdir}i
4148        test_mkdir -p $DIR/$tdir
4149        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4150        CMD="$LFIND -ost $UUID $DIR/$tdir"
4151        OUT=$($CMD)
4152        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4153 }
4154 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4155
4156 test_56j() {
4157         TDIR=$DIR/${tdir}g
4158         setup_56_special $NUMFILES $NUMDIRS
4159
4160         EXPECTED=$((NUMDIRS + 1))
4161         CMD="$LFIND -type d $TDIR"
4162         NUMS=$($CMD | wc -l)
4163         [ $NUMS -eq $EXPECTED ] ||
4164                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4165 }
4166 run_test 56j "check lfs find -type d ============================="
4167
4168 test_56k() {
4169         TDIR=$DIR/${tdir}g
4170         setup_56_special $NUMFILES $NUMDIRS
4171
4172         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4173         CMD="$LFIND -type f $TDIR"
4174         NUMS=$($CMD | wc -l)
4175         [ $NUMS -eq $EXPECTED ] ||
4176                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4177 }
4178 run_test 56k "check lfs find -type f ============================="
4179
4180 test_56l() {
4181         TDIR=$DIR/${tdir}g
4182         setup_56_special $NUMFILES $NUMDIRS
4183
4184         EXPECTED=$((NUMDIRS + NUMFILES))
4185         CMD="$LFIND -type b $TDIR"
4186         NUMS=$($CMD | wc -l)
4187         [ $NUMS -eq $EXPECTED ] ||
4188                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4189 }
4190 run_test 56l "check lfs find -type b ============================="
4191
4192 test_56m() {
4193         TDIR=$DIR/${tdir}g
4194         setup_56_special $NUMFILES $NUMDIRS
4195
4196         EXPECTED=$((NUMDIRS + NUMFILES))
4197         CMD="$LFIND -type c $TDIR"
4198         NUMS=$($CMD | wc -l)
4199         [ $NUMS -eq $EXPECTED ] ||
4200                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4201 }
4202 run_test 56m "check lfs find -type c ============================="
4203
4204 test_56n() {
4205         TDIR=$DIR/${tdir}g
4206         setup_56_special $NUMFILES $NUMDIRS
4207
4208         EXPECTED=$((NUMDIRS + NUMFILES))
4209         CMD="$LFIND -type l $TDIR"
4210         NUMS=$($CMD | wc -l)
4211         [ $NUMS -eq $EXPECTED ] ||
4212                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4213 }
4214 run_test 56n "check lfs find -type l ============================="
4215
4216 test_56o() {
4217         TDIR=$DIR/${tdir}o
4218         setup_56 $NUMFILES $NUMDIRS
4219
4220         utime $TDIR/file1 > /dev/null || error "utime (1)"
4221         utime $TDIR/file2 > /dev/null || error "utime (2)"
4222         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4223         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4224         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4225         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4226
4227         EXPECTED=4
4228         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4229         [ $NUMS -eq $EXPECTED ] || \
4230                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4231
4232         EXPECTED=12
4233         CMD="$LFIND -mtime 0 $TDIR"
4234         NUMS=$($CMD | wc -l)
4235         [ $NUMS -eq $EXPECTED ] ||
4236                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4237 }
4238 run_test 56o "check lfs find -mtime for old files =========================="
4239
4240 test_56p() {
4241         [ $RUNAS_ID -eq $UID ] &&
4242                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4243
4244         TDIR=$DIR/${tdir}p
4245         setup_56 $NUMFILES $NUMDIRS
4246
4247         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4248         EXPECTED=$NUMFILES
4249         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4250         NUMS=$($CMD | wc -l)
4251         [ $NUMS -eq $EXPECTED ] || \
4252                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4253
4254         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4255         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4256         NUMS=$($CMD | wc -l)
4257         [ $NUMS -eq $EXPECTED ] || \
4258                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4259 }
4260 run_test 56p "check lfs find -uid and ! -uid ==============================="
4261
4262 test_56q() {
4263         [ $RUNAS_ID -eq $UID ] &&
4264                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4265
4266         TDIR=$DIR/${tdir}q
4267         setup_56 $NUMFILES $NUMDIRS
4268
4269         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4270
4271         EXPECTED=$NUMFILES
4272         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4273         NUMS=$($CMD | wc -l)
4274         [ $NUMS -eq $EXPECTED ] ||
4275                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4276
4277         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4278         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4279         NUMS=$($CMD | wc -l)
4280         [ $NUMS -eq $EXPECTED ] ||
4281                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4282 }
4283 run_test 56q "check lfs find -gid and ! -gid ==============================="
4284
4285 test_56r() {
4286         TDIR=$DIR/${tdir}r
4287         setup_56 $NUMFILES $NUMDIRS
4288
4289         EXPECTED=12
4290         CMD="$LFIND -size 0 -type f $TDIR"
4291         NUMS=$($CMD | wc -l)
4292         [ $NUMS -eq $EXPECTED ] ||
4293                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4294         EXPECTED=0
4295         CMD="$LFIND ! -size 0 -type f $TDIR"
4296         NUMS=$($CMD | wc -l)
4297         [ $NUMS -eq $EXPECTED ] ||
4298                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4299         echo "test" > $TDIR/$tfile
4300         echo "test2" > $TDIR/$tfile.2 && sync
4301         EXPECTED=1
4302         CMD="$LFIND -size 5 -type f $TDIR"
4303         NUMS=$($CMD | wc -l)
4304         [ $NUMS -eq $EXPECTED ] ||
4305                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4306         EXPECTED=1
4307         CMD="$LFIND -size +5 -type f $TDIR"
4308         NUMS=$($CMD | wc -l)
4309         [ $NUMS -eq $EXPECTED ] ||
4310                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4311         EXPECTED=2
4312         CMD="$LFIND -size +0 -type f $TDIR"
4313         NUMS=$($CMD | wc -l)
4314         [ $NUMS -eq $EXPECTED ] ||
4315                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4316         EXPECTED=2
4317         CMD="$LFIND ! -size -5 -type f $TDIR"
4318         NUMS=$($CMD | wc -l)
4319         [ $NUMS -eq $EXPECTED ] ||
4320                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4321         EXPECTED=12
4322         CMD="$LFIND -size -5 -type f $TDIR"
4323         NUMS=$($CMD | wc -l)
4324         [ $NUMS -eq $EXPECTED ] ||
4325                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4326 }
4327 run_test 56r "check lfs find -size works =========================="
4328
4329 test_56s() { # LU-611
4330         TDIR=$DIR/${tdir}s
4331         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4332
4333         if [ $OSTCOUNT -gt 1 ]; then
4334                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4335                 ONESTRIPE=4
4336                 EXTRA=4
4337         else
4338                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4339                 EXTRA=0
4340         fi
4341
4342         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4343         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4344         NUMS=$($CMD | wc -l)
4345         [ $NUMS -eq $EXPECTED ] ||
4346                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4347
4348         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4349         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4350         NUMS=$($CMD | wc -l)
4351         [ $NUMS -eq $EXPECTED ] ||
4352                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4353
4354         EXPECTED=$ONESTRIPE
4355         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4356         NUMS=$($CMD | wc -l)
4357         [ $NUMS -eq $EXPECTED ] ||
4358                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4359
4360         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4361         NUMS=$($CMD | wc -l)
4362         [ $NUMS -eq $EXPECTED ] ||
4363                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4364
4365         EXPECTED=0
4366         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4367         NUMS=$($CMD | wc -l)
4368         [ $NUMS -eq $EXPECTED ] ||
4369                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4370 }
4371 run_test 56s "check lfs find -stripe-count works"
4372
4373 test_56t() { # LU-611
4374         TDIR=$DIR/${tdir}t
4375         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4376
4377         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4378
4379         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4380         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4381         NUMS=$($CMD | wc -l)
4382         [ $NUMS -eq $EXPECTED ] ||
4383                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4384
4385         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4386         NUMS=$($CMD | wc -l)
4387         [ $NUMS -eq $EXPECTED ] ||
4388                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4389
4390         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4391         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4392         NUMS=$($CMD | wc -l)
4393         [ $NUMS -eq $EXPECTED ] ||
4394                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4395
4396         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4397         NUMS=$($CMD | wc -l)
4398         [ $NUMS -eq $EXPECTED ] ||
4399                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4400
4401         EXPECTED=4
4402         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4403         NUMS=$($CMD | wc -l)
4404         [ $NUMS -eq $EXPECTED ] ||
4405                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4406
4407         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4408         NUMS=$($CMD | wc -l)
4409         [ $NUMS -eq $EXPECTED ] ||
4410                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4411
4412         EXPECTED=0
4413         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4414         NUMS=$($CMD | wc -l)
4415         [ $NUMS -eq $EXPECTED ] ||
4416                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4417 }
4418 run_test 56t "check lfs find -stripe-size works"
4419
4420 test_56u() { # LU-611
4421         TDIR=$DIR/${tdir}u
4422         setup_56 $NUMFILES $NUMDIRS "-i 0"
4423
4424         if [ $OSTCOUNT -gt 1 ]; then
4425                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4426                 ONESTRIPE=4
4427         else
4428                 ONESTRIPE=0
4429         fi
4430
4431         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4432         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4433         NUMS=$($CMD | wc -l)
4434         [ $NUMS -eq $EXPECTED ] ||
4435                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4436
4437         EXPECTED=$ONESTRIPE
4438         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4439         NUMS=$($CMD | wc -l)
4440         [ $NUMS -eq $EXPECTED ] ||
4441                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4442
4443         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4444         NUMS=$($CMD | wc -l)
4445         [ $NUMS -eq $EXPECTED ] ||
4446                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4447
4448         EXPECTED=0
4449         # This should produce an error and not return any files
4450         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4451         NUMS=$($CMD 2>/dev/null | wc -l)
4452         [ $NUMS -eq $EXPECTED ] ||
4453                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4454
4455         if [ $OSTCOUNT -gt 1 ]; then
4456                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4457                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4458                 NUMS=$($CMD | wc -l)
4459                 [ $NUMS -eq $EXPECTED ] ||
4460                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4461         fi
4462 }
4463 run_test 56u "check lfs find -stripe-index works"
4464
4465 test_56v() {
4466     local MDT_IDX=0
4467
4468     TDIR=$DIR/${tdir}v
4469     rm -rf $TDIR
4470     setup_56 $NUMFILES $NUMDIRS
4471
4472     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4473     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4474
4475     for file in $($LFIND -mdt $UUID $TDIR); do
4476         file_mdt_idx=$($GETSTRIPE -M $file)
4477         [ $file_mdt_idx -eq $MDT_IDX ] ||
4478             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4479     done
4480 }
4481 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4482
4483 # Get and check the actual stripe count of one file.
4484 # Usage: check_stripe_count <file> <expected_stripe_count>
4485 check_stripe_count() {
4486     local file=$1
4487     local expected=$2
4488     local actual
4489
4490     [[ -z "$file" || -z "$expected" ]] &&
4491         error "check_stripe_count: invalid argument!"
4492
4493     local cmd="$GETSTRIPE -c $file"
4494     actual=$($cmd) || error "$cmd failed"
4495     actual=${actual%% *}
4496
4497     if [[ $actual -ne $expected ]]; then
4498         [[ $expected -eq -1 ]] ||
4499             error "$cmd wrong: found $actual, expected $expected"
4500         [[ $actual -eq $OSTCOUNT ]] ||
4501             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4502     fi
4503 }
4504
4505 test_56w() {
4506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4507         TDIR=$DIR/${tdir}w
4508
4509     rm -rf $TDIR || error "remove $TDIR failed"
4510     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4511
4512     local stripe_size
4513     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4514         error "$GETSTRIPE -S -d $TDIR failed"
4515     stripe_size=${stripe_size%% *}
4516
4517     local file_size=$((stripe_size * OSTCOUNT))
4518     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4519     local required_space=$((file_num * file_size))
4520     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4521     [[ $free_space -le $((required_space / 1024)) ]] &&
4522         skip_env "need at least $required_space bytes free space," \
4523                  "have $free_space kbytes" && return
4524
4525     local dd_bs=65536
4526     local dd_count=$((file_size / dd_bs))
4527
4528     # write data into the files
4529     local i
4530     local j
4531     local file
4532     for i in $(seq 1 $NUMFILES); do
4533         file=$TDIR/file$i
4534         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4535             error "write data into $file failed"
4536     done
4537     for i in $(seq 1 $NUMDIRS); do
4538         for j in $(seq 1 $NUMFILES); do
4539             file=$TDIR/dir$i/file$j
4540             yes | dd bs=$dd_bs count=$dd_count of=$file \
4541                 >/dev/null 2>&1 ||
4542                 error "write data into $file failed"
4543         done
4544     done
4545
4546     local expected=-1
4547     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4548
4549     # lfs_migrate file
4550     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4551     echo "$cmd"
4552     eval $cmd || error "$cmd failed"
4553
4554     check_stripe_count $TDIR/file1 $expected
4555
4556     # lfs_migrate dir
4557     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4558     echo "$cmd"
4559     eval $cmd || error "$cmd failed"
4560
4561     for j in $(seq 1 $NUMFILES); do
4562         check_stripe_count $TDIR/dir1/file$j $expected
4563     done
4564
4565     # lfs_migrate works with lfs find
4566     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4567          $LFS_MIGRATE -y -c $expected"
4568     echo "$cmd"
4569     eval $cmd || error "$cmd failed"
4570
4571     for i in $(seq 2 $NUMFILES); do
4572         check_stripe_count $TDIR/file$i $expected
4573     done
4574     for i in $(seq 2 $NUMDIRS); do
4575         for j in $(seq 1 $NUMFILES); do
4576             check_stripe_count $TDIR/dir$i/file$j $expected
4577         done
4578     done
4579 }
4580 run_test 56w "check lfs_migrate -c stripe_count works"
4581
4582 test_56x() {
4583         check_swap_layouts_support && return 0
4584         [ "$OSTCOUNT" -lt "2" ] &&
4585                 skip_env "need 2 OST, skipping test" && return
4586
4587         local dir0=$DIR/$tdir/$testnum
4588         mkdir -p $dir0 || error "creating dir $dir0"
4589
4590         local ref1=/etc/passwd
4591         local file1=$dir0/file1
4592
4593         $SETSTRIPE -c 2 $file1
4594         cp $ref1 $file1
4595         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4596         stripe=$($GETSTRIPE -c $file1)
4597         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4598         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4599
4600         # clean up
4601         rm -f $file1
4602 }
4603 run_test 56x "lfs migration support"
4604
4605 test_56y() {
4606         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
4607                 skip "No HSM support on MDS of $(get_lustre_version)," \
4608                          "need 2.4.53 at least" && return
4609         local res=""
4610
4611         local dir0=$DIR/$tdir/$testnum
4612         mkdir -p $dir0 || error "creating dir $dir0"
4613         local f1=$dir0/file1
4614         local f2=$dir0/file2
4615
4616         touch $f1 || error "creating std file $f1"
4617         $MULTIOP $f2 H2c || error "creating released file $f2"
4618
4619         # a directory can be raid0, so ask only for files
4620         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4621         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4622
4623         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4624         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4625
4626         # only files can be released, so no need to force file search
4627         res=$($LFIND $dir0 -L released)
4628         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4629
4630         res=$($LFIND $dir0 \! -L released)
4631         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4632
4633 }
4634 run_test 56y "lfs find -L raid0|released"
4635
4636 test_57a() {
4637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4638         # note test will not do anything if MDS is not local
4639         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4640                 skip "Only applicable to ldiskfs-based MDTs"
4641                 return
4642         fi
4643
4644         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4645         local MNTDEV="osd*.*MDT*.mntdev"
4646         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4647         [ -z "$DEV" ] && error "can't access $MNTDEV"
4648         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4649                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4650                         error "can't access $DEV"
4651                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4652                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4653                 rm $TMP/t57a.dump
4654         done
4655 }
4656 run_test 57a "verify MDS filesystem created with large inodes =="
4657
4658 test_57b() {
4659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4660         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4661                 skip "Only applicable to ldiskfs-based MDTs"
4662                 return
4663         fi
4664
4665         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4666         local dir=$DIR/d57b
4667
4668         local FILECOUNT=100
4669         local FILE1=$dir/f1
4670         local FILEN=$dir/f$FILECOUNT
4671
4672         rm -rf $dir || error "removing $dir"
4673         test_mkdir -p $dir || error "creating $dir"
4674         local num=$(get_mds_dir $dir)
4675         local mymds=mds$num
4676
4677         echo "mcreating $FILECOUNT files"
4678         createmany -m $dir/f 1 $FILECOUNT || \
4679                 error "creating files in $dir"
4680
4681         # verify that files do not have EAs yet
4682         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4683         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4684
4685         sync
4686         sleep 1
4687         df $dir  #make sure we get new statfs data
4688         local MDSFREE=$(do_facet $mymds \
4689                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4690         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4691         echo "opening files to create objects/EAs"
4692         local FILE
4693         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4694                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4695         done
4696
4697         # verify that files have EAs now
4698         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4699         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4700
4701         sleep 1  #make sure we get new statfs data
4702         df $dir
4703         local MDSFREE2=$(do_facet $mymds \
4704                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4705         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4706         if [ "$MDCFREE2" -lt "$((MDCFREE - 16))" ]; then
4707                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4708                         error "MDC before $MDCFREE != after $MDCFREE2"
4709                 else
4710                         echo "MDC before $MDCFREE != after $MDCFREE2"
4711                         echo "unable to confirm if MDS has large inodes"
4712                 fi
4713         fi
4714         rm -rf $dir
4715 }
4716 run_test 57b "default LOV EAs are stored inside large inodes ==="
4717
4718 test_58() {
4719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4720         [ -z "$(which wiretest 2>/dev/null)" ] &&
4721                         skip_env "could not find wiretest" && return
4722         wiretest
4723 }
4724 run_test 58 "verify cross-platform wire constants =============="
4725
4726 test_59() {
4727         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4728         echo "touch 130 files"
4729         createmany -o $DIR/f59- 130
4730         echo "rm 130 files"
4731         unlinkmany $DIR/f59- 130
4732         sync
4733         # wait for commitment of removal
4734         wait_delete_completed
4735 }
4736 run_test 59 "verify cancellation of llog records async ========="
4737
4738 TEST60_HEAD="test_60 run $RANDOM"
4739 test_60a() {
4740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4741         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4742         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4743                 skip_env "missing subtest run-llog.sh" && return
4744         log "$TEST60_HEAD - from kernel mode"
4745         do_facet mgs sh run-llog.sh
4746 }
4747 run_test 60a "llog sanity tests run from kernel module =========="
4748
4749 test_60b() { # bug 6411
4750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4751         dmesg > $DIR/$tfile
4752         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4753                                  /llog.test/ {
4754                                          if (marker)
4755                                                  from_marker++
4756                                          from_begin++
4757                                  }
4758                                  END {
4759                                          if (marker)
4760                                                  print from_marker
4761                                          else
4762                                                  print from_begin
4763                                  }"`
4764         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4765 }
4766 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4767
4768 test_60c() {
4769         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4770         echo "create 5000 files"
4771         createmany -o $DIR/f60c- 5000
4772 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4773         lctl set_param fail_loc=0x80000137
4774         unlinkmany $DIR/f60c- 5000
4775         lctl set_param fail_loc=0
4776 }
4777 run_test 60c "unlink file when mds full"
4778
4779 test_60d() {
4780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4781         SAVEPRINTK=$(lctl get_param -n printk)
4782
4783         # verify "lctl mark" is even working"
4784         MESSAGE="test message ID $RANDOM $$"
4785         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4786         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4787
4788         lctl set_param printk=0 || error "set lnet.printk failed"
4789         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4790         MESSAGE="new test message ID $RANDOM $$"
4791         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4792         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4793         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4794
4795         lctl set_param -n printk="$SAVEPRINTK"
4796 }
4797 run_test 60d "test printk console message masking"
4798
4799 test_61() {
4800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4801         f="$DIR/f61"
4802         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4803         cancel_lru_locks osc
4804         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4805         sync
4806 }
4807 run_test 61 "mmap() writes don't make sync hang ================"
4808
4809 # bug 2330 - insufficient obd_match error checking causes LBUG
4810 test_62() {
4811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4812         f="$DIR/f62"
4813         echo foo > $f
4814         cancel_lru_locks osc
4815         lctl set_param fail_loc=0x405
4816         cat $f && error "cat succeeded, expect -EIO"
4817         lctl set_param fail_loc=0
4818 }
4819 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4820 # match every page all of the time.
4821 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4822
4823 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4824 test_63a() {    # was test_63
4825         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4826         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4827         lctl set_param -n osc.*.max_dirty_mb 0
4828         for i in `seq 10` ; do
4829                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4830                 sleep 5
4831                 kill $!
4832                 sleep 1
4833         done
4834
4835         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4836         rm -f $DIR/f63 || true
4837 }
4838 run_test 63a "Verify oig_wait interruption does not crash ======="
4839
4840 # bug 2248 - async write errors didn't return to application on sync
4841 # bug 3677 - async write errors left page locked
4842 test_63b() {
4843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4844         debugsave
4845         lctl set_param debug=-1
4846
4847         # ensure we have a grant to do async writes
4848         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4849         rm $DIR/$tfile
4850
4851         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4852         lctl set_param fail_loc=0x80000406
4853         $MULTIOP $DIR/$tfile Owy && \
4854                 error "sync didn't return ENOMEM"
4855         sync; sleep 2; sync     # do a real sync this time to flush page
4856         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4857                 error "locked page left in cache after async error" || true
4858         debugrestore
4859 }
4860 run_test 63b "async write errors should be returned to fsync ==="
4861
4862 test_64a () {
4863         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4864         df $DIR
4865         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4866 }
4867 run_test 64a "verify filter grant calculations (in kernel) ====="
4868
4869 test_64b () {
4870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4871         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4872 }
4873 run_test 64b "check out-of-space detection on client ==========="
4874
4875 test_64c() {
4876         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4877 }
4878 run_test 64c "verify grant shrink ========================------"
4879
4880 # bug 1414 - set/get directories' stripe info
4881 test_65a() {
4882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4883         test_mkdir -p $DIR/$tdir
4884         touch $DIR/$tdir/f1
4885         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4886 }
4887 run_test 65a "directory with no stripe info ===================="
4888
4889 test_65b() {
4890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4891         test_mkdir -p $DIR/$tdir
4892         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4893                                                 error "setstripe"
4894         touch $DIR/$tdir/f2
4895         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4896 }
4897 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4898
4899 test_65c() {
4900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4901         if [ $OSTCOUNT -gt 1 ]; then
4902                 test_mkdir -p $DIR/$tdir
4903                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4904                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4905                 touch $DIR/$tdir/f3
4906                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4907         fi
4908 }
4909 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4910
4911 test_65d() {
4912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4913         test_mkdir -p $DIR/$tdir
4914         if [ $STRIPECOUNT -le 0 ]; then
4915                 sc=1
4916         elif [ $STRIPECOUNT -gt 2000 ]; then
4917 #LOV_MAX_STRIPE_COUNT is 2000
4918                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4919         else
4920                 sc=$(($STRIPECOUNT - 1))
4921         fi
4922         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4923         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4924         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4925                                                 error "lverify failed"
4926 }
4927 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4928
4929 test_65e() {
4930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4931         test_mkdir -p $DIR/$tdir
4932
4933         $SETSTRIPE $DIR/$tdir || error "setstripe"
4934         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4935                                         error "no stripe info failed"
4936         touch $DIR/$tdir/f6
4937         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4938 }
4939 run_test 65e "directory setstripe defaults ======================="
4940
4941 test_65f() {
4942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4943         test_mkdir -p $DIR/${tdir}f
4944         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4945 }
4946 run_test 65f "dir setstripe permission (should return error) ==="
4947
4948 test_65g() {
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         test_mkdir -p $DIR/$tdir
4951         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4952                                                         error "setstripe"
4953         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4954         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4955                 error "delete default stripe failed"
4956 }
4957 run_test 65g "directory setstripe -d ==========================="
4958
4959 test_65h() {
4960         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4961         test_mkdir -p $DIR/$tdir
4962         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4963                                                         error "setstripe"
4964         test_mkdir -p $DIR/$tdir/dd1
4965         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4966                 error "stripe info inherit failed"
4967 }
4968 run_test 65h "directory stripe info inherit ===================="
4969
4970 test_65i() { # bug6367
4971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4972         $SETSTRIPE -S 65536 -c -1 $MOUNT
4973 }
4974 run_test 65i "set non-default striping on root directory (bug 6367)="
4975
4976 test_65ia() { # bug12836
4977         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4978         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4979 }
4980 run_test 65ia "getstripe on -1 default directory striping"
4981
4982 test_65ib() { # bug12836
4983         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4984         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4985 }
4986 run_test 65ib "getstripe -v on -1 default directory striping"
4987
4988 test_65ic() { # bug12836
4989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4990         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4991 }
4992 run_test 65ic "new find on -1 default directory striping"
4993
4994 test_65j() { # bug6367
4995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4996         sync; sleep 1
4997         # if we aren't already remounting for each test, do so for this test
4998         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4999                 cleanup || error "failed to unmount"
5000                 setup
5001         fi
5002         $SETSTRIPE -d $MOUNT || error "setstripe failed"
5003 }
5004 run_test 65j "set default striping on root directory (bug 6367)="
5005
5006 test_65k() { # bug11679
5007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5008         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
5009         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5010
5011     echo "Check OST status: "
5012     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
5013               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
5014
5015     for OSC in $MDS_OSCS; do
5016         echo $OSC "is activate"
5017         do_facet $SINGLEMDS lctl --device %$OSC activate
5018     done
5019
5020     mkdir -p $DIR/$tdir
5021     for INACTIVE_OSC in $MDS_OSCS; do
5022         echo "Deactivate: " $INACTIVE_OSC
5023         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
5024         for STRIPE_OSC in $MDS_OSCS; do
5025             OST=`osc_to_ost $STRIPE_OSC`
5026             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
5027                  awk -F: /$OST/'{ print $1 }' | head -n 1`
5028
5029             [ -f $DIR/$tdir/$IDX ] && continue
5030             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
5031             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
5032             RC=$?
5033             [ $RC -ne 0 ] && error "setstripe should have succeeded"
5034         done
5035         rm -f $DIR/$tdir/*
5036         echo $INACTIVE_OSC "is Activate."
5037         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
5038     done
5039 }
5040 run_test 65k "validate manual striping works properly with deactivated OSCs"
5041
5042 test_65l() { # bug 12836
5043         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5044         test_mkdir -p $DIR/$tdir/test_dir
5045         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
5046         $LFS find -mtime -1 $DIR/$tdir >/dev/null
5047 }
5048 run_test 65l "lfs find on -1 stripe dir ========================"
5049
5050 # bug 2543 - update blocks count on client
5051 test_66() {
5052         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5053         COUNT=${COUNT:-8}
5054         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
5055         sync; sync_all_data; sync; sync_all_data
5056         cancel_lru_locks osc
5057         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5058         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5059 }
5060 run_test 66 "update inode blocks count on client ==============="
5061
5062 LLOOP=
5063 LLITELOOPLOAD=
5064 cleanup_68() {
5065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5066         trap 0
5067         if [ ! -z "$LLOOP" ]; then
5068                 if swapon -s | grep -q $LLOOP; then
5069                         swapoff $LLOOP || error "swapoff failed"
5070                 fi
5071
5072                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5073                 rm -f $LLOOP
5074                 unset LLOOP
5075         fi
5076         if [ ! -z "$LLITELOOPLOAD" ]; then
5077                 rmmod llite_lloop
5078                 unset LLITELOOPLOAD
5079         fi
5080         rm -f $DIR/f68*
5081 }
5082
5083 meminfo() {
5084         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5085 }
5086
5087 swap_used() {
5088         swapon -s | awk '($1 == "'$1'") { print $4 }'
5089 }
5090
5091 # test case for lloop driver, basic function
5092 test_68a() {
5093         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5094         [ "$UID" != 0 ] && skip_env "must run as root" && return
5095         llite_lloop_enabled || \
5096                 { skip_env "llite_lloop module disabled" && return; }
5097
5098         trap cleanup_68 EXIT
5099
5100         if ! module_loaded llite_lloop; then
5101                 if load_module llite/llite_lloop; then
5102                         LLITELOOPLOAD=yes
5103                 else
5104                         skip_env "can't find module llite_lloop"
5105                         return
5106                 fi
5107         fi
5108
5109         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5110         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5111         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5112
5113         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5114         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5115
5116         cleanup_68
5117 }
5118 run_test 68a "lloop driver - basic test ========================"
5119
5120 # excercise swapping to lustre by adding a high priority swapfile entry
5121 # and then consuming memory until it is used.
5122 test_68b() {  # was test_68
5123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5124         [ "$UID" != 0 ] && skip_env "must run as root" && return
5125         lctl get_param -n devices | grep -q obdfilter && \
5126                 skip "local OST" && return
5127
5128         grep -q llite_lloop /proc/modules
5129         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5130
5131         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5132                 skip "can't reliably test swap with TCP" && return
5133
5134         MEMTOTAL=`meminfo MemTotal`
5135         NR_BLOCKS=$((MEMTOTAL>>8))
5136         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5137
5138         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5139         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5140         mkswap $DIR/f68b
5141
5142         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5143
5144         trap cleanup_68 EXIT
5145
5146         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5147
5148         echo "before: `swapon -s | grep $LLOOP`"
5149         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5150         echo "after: `swapon -s | grep $LLOOP`"
5151         SWAPUSED=`swap_used $LLOOP`
5152
5153         cleanup_68
5154
5155         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5156 }
5157 run_test 68b "support swapping to Lustre ========================"
5158
5159 # bug5265, obdfilter oa2dentry return -ENOENT
5160 # #define OBD_FAIL_OST_ENOENT 0x217
5161 test_69() {
5162         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5163         remote_ost_nodsh && skip "remote OST with nodsh" && return
5164
5165         f="$DIR/$tfile"
5166         $SETSTRIPE -c 1 -i 0 $f
5167
5168         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5169
5170         do_facet ost1 lctl set_param fail_loc=0x217
5171         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5172         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5173
5174         do_facet ost1 lctl set_param fail_loc=0
5175         $DIRECTIO write $f 0 2 || error "write error"
5176
5177         cancel_lru_locks osc
5178         $DIRECTIO read $f 0 1 || error "read error"
5179
5180         do_facet ost1 lctl set_param fail_loc=0x217
5181         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5182
5183         do_facet ost1 lctl set_param fail_loc=0
5184         rm -f $f
5185 }
5186 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5187
5188 test_71() {
5189     test_mkdir -p $DIR/$tdir
5190     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5191 }
5192 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5193
5194 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5196         [ "$RUNAS_ID" = "$UID" ] &&
5197                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5198
5199         # Check that testing environment is properly set up. Skip if not
5200         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5201                 skip_env "User $RUNAS_ID does not exist - skipping"
5202                 return 0
5203         }
5204         # We had better clear the $DIR to get enough space for dd
5205         rm -rf $DIR/*
5206         touch $DIR/$tfile
5207         chmod 777 $DIR/$tfile
5208         chmod ug+s $DIR/$tfile
5209         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5210                 error "$RUNAS dd $DIR/$tfile failed"
5211         # See if we are still setuid/sgid
5212         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5213                 error "S/gid is not dropped on write"
5214         # Now test that MDS is updated too
5215         cancel_lru_locks mdc
5216         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5217                 error "S/gid is not dropped on MDS"
5218         rm -f $DIR/$tfile
5219 }
5220 run_test 72a "Test that remove suid works properly (bug5695) ===="
5221
5222 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5223         local perm
5224
5225         [ "$RUNAS_ID" = "$UID" ] && \
5226                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5227         [ "$RUNAS_ID" -eq 0 ] && \
5228                 skip_env "RUNAS_ID = 0 -- skipping" && return
5229
5230         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5231         # Check that testing environment is properly set up. Skip if not
5232         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5233                 skip_env "User $RUNAS_ID does not exist - skipping"
5234                 return 0
5235         }
5236         touch $DIR/${tfile}-f{g,u}
5237         test_mkdir $DIR/${tfile}-dg
5238         test_mkdir $DIR/${tfile}-du
5239         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5240         chmod g+s $DIR/${tfile}-{f,d}g
5241         chmod u+s $DIR/${tfile}-{f,d}u
5242         for perm in 777 2777 4777; do
5243                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5244                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5245                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5246                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5247         done
5248         true
5249 }
5250 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5251
5252 # bug 3462 - multiple simultaneous MDC requests
5253 test_73() {
5254         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5255         test_mkdir $DIR/d73-1
5256         test_mkdir $DIR/d73-2
5257         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5258         pid1=$!
5259
5260         lctl set_param fail_loc=0x80000129
5261         $MULTIOP $DIR/d73-1/f73-2 Oc &
5262         sleep 1
5263         lctl set_param fail_loc=0
5264
5265         $MULTIOP $DIR/d73-2/f73-3 Oc &
5266         pid3=$!
5267
5268         kill -USR1 $pid1
5269         wait $pid1 || return 1
5270
5271         sleep 25
5272
5273         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5274         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5275         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5276
5277         rm -rf $DIR/d73-*
5278 }
5279 run_test 73 "multiple MDC requests (should not deadlock)"
5280
5281 test_74a() { # bug 6149, 6184
5282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5283         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5284         #
5285         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5286         # will spin in a tight reconnection loop
5287         touch $DIR/f74a
5288         lctl set_param fail_loc=0x8000030e
5289         # get any lock that won't be difficult - lookup works.
5290         ls $DIR/f74a
5291         lctl set_param fail_loc=0
5292         true
5293         rm -f $DIR/f74a
5294 }
5295 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5296
5297 test_74b() { # bug 13310
5298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5299         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5300         #
5301         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5302         # will spin in a tight reconnection loop
5303         lctl set_param fail_loc=0x8000030e
5304         # get a "difficult" lock
5305         touch $DIR/f74b
5306         lctl set_param fail_loc=0
5307         true
5308         rm -f $DIR/f74b
5309 }
5310 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5311
5312 test_74c() {
5313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5314 #define OBD_FAIL_LDLM_NEW_LOCK
5315         lctl set_param fail_loc=0x80000319
5316         touch $DIR/$tfile && error "Touch successful"
5317         true
5318 }
5319 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5320
5321 num_inodes() {
5322         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5323 }
5324
5325 get_inode_slab_tunables() {
5326         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5327 }
5328
5329 set_inode_slab_tunables() {
5330         echo "lustre_inode_cache $1" > /proc/slabinfo
5331 }
5332
5333 test_76() { # Now for bug 20433, added originally in bug 1443
5334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5335         local SLAB_SETTINGS=`get_inode_slab_tunables`
5336         local CPUS=`getconf _NPROCESSORS_ONLN`
5337         # we cannot set limit below 1 which means 1 inode in each
5338         # per-cpu cache is still allowed
5339         set_inode_slab_tunables "1 1 0"
5340         cancel_lru_locks osc
5341         BEFORE_INODES=`num_inodes`
5342         echo "before inodes: $BEFORE_INODES"
5343         local COUNT=1000
5344         [ "$SLOW" = "no" ] && COUNT=100
5345         for i in `seq $COUNT`; do
5346                 touch $DIR/$tfile
5347                 rm -f $DIR/$tfile
5348         done
5349         cancel_lru_locks osc
5350         AFTER_INODES=`num_inodes`
5351         echo "after inodes: $AFTER_INODES"
5352         local wait=0
5353         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5354                 sleep 2
5355                 AFTER_INODES=`num_inodes`
5356                 wait=$((wait+2))
5357                 echo "wait $wait seconds inodes: $AFTER_INODES"
5358                 if [ $wait -gt 30 ]; then
5359                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5360                 fi
5361         done
5362         set_inode_slab_tunables "$SLAB_SETTINGS"
5363 }
5364 run_test 76 "confirm clients recycle inodes properly ===="
5365
5366
5367 export ORIG_CSUM=""
5368 set_checksums()
5369 {
5370         # Note: in sptlrpc modes which enable its own bulk checksum, the
5371         # original crc32_le bulk checksum will be automatically disabled,
5372         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5373         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5374         # In this case set_checksums() will not be no-op, because sptlrpc
5375         # bulk checksum will be enabled all through the test.
5376
5377         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5378         lctl set_param -n osc.*.checksums $1
5379         return 0
5380 }
5381
5382 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5383                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5384 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5385 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5386 set_checksum_type()
5387 {
5388         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5389         log "set checksum type to $1"
5390         return 0
5391 }
5392 F77_TMP=$TMP/f77-temp
5393 F77SZ=8
5394 setup_f77() {
5395         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5396                 error "error writing to $F77_TMP"
5397 }
5398
5399 test_77a() { # bug 10889
5400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5401         $GSS && skip "could not run with gss" && return
5402         [ ! -f $F77_TMP ] && setup_f77
5403         set_checksums 1
5404         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5405         set_checksums 0
5406         rm -f $DIR/$tfile
5407 }
5408 run_test 77a "normal checksum read/write operation"
5409
5410 test_77b() { # bug 10889
5411         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5412         $GSS && skip "could not run with gss" && return
5413         [ ! -f $F77_TMP ] && setup_f77
5414         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5415         $LCTL set_param fail_loc=0x80000409
5416         set_checksums 1
5417
5418         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5419                 error "dd error: $?"
5420         $LCTL set_param fail_loc=0
5421
5422         for algo in $CKSUM_TYPES; do
5423                 cancel_lru_locks osc
5424                 set_checksum_type $algo
5425                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5426                 $LCTL set_param fail_loc=0x80000408
5427                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5428                 $LCTL set_param fail_loc=0
5429         done
5430         set_checksums 0
5431         set_checksum_type $ORIG_CSUM_TYPE
5432         rm -f $DIR/$tfile
5433 }
5434 run_test 77b "checksum error on client write, read"
5435
5436 test_77d() { # bug 10889
5437         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5438         $GSS && skip "could not run with gss" && return
5439         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5440         $LCTL set_param fail_loc=0x80000409
5441         set_checksums 1
5442         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5443                 error "direct write: rc=$?"
5444         $LCTL set_param fail_loc=0
5445         set_checksums 0
5446
5447         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5448         $LCTL set_param fail_loc=0x80000408
5449         set_checksums 1
5450         cancel_lru_locks osc
5451         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5452                 error "direct read: rc=$?"
5453         $LCTL set_param fail_loc=0
5454         set_checksums 0
5455 }
5456 run_test 77d "checksum error on OST direct write, read"
5457
5458 test_77f() { # bug 10889
5459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5460         $GSS && skip "could not run with gss" && return
5461         set_checksums 1
5462         for algo in $CKSUM_TYPES; do
5463                 cancel_lru_locks osc
5464                 set_checksum_type $algo
5465                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5466                 $LCTL set_param fail_loc=0x409
5467                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5468                         error "direct write succeeded"
5469                 $LCTL set_param fail_loc=0
5470         done
5471         set_checksum_type $ORIG_CSUM_TYPE
5472         set_checksums 0
5473 }
5474 run_test 77f "repeat checksum error on write (expect error)"
5475
5476 test_77g() { # bug 10889
5477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5478         $GSS && skip "could not run with gss" && return
5479         remote_ost_nodsh && skip "remote OST with nodsh" && return
5480
5481         [ ! -f $F77_TMP ] && setup_f77
5482
5483         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5484         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5485         do_facet ost1 lctl set_param fail_loc=0x8000021a
5486         set_checksums 1
5487         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5488                 error "write error: rc=$?"
5489         do_facet ost1 lctl set_param fail_loc=0
5490         set_checksums 0
5491
5492         cancel_lru_locks osc
5493         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5494         do_facet ost1 lctl set_param fail_loc=0x8000021b
5495         set_checksums 1
5496         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5497         do_facet ost1 lctl set_param fail_loc=0
5498         set_checksums 0
5499 }
5500 run_test 77g "checksum error on OST write, read"
5501
5502 test_77i() { # bug 13805
5503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5504         $GSS && skip "could not run with gss" && return
5505         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5506         lctl set_param fail_loc=0x40b
5507         remount_client $MOUNT
5508         lctl set_param fail_loc=0
5509         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5510                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5511                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5512                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5513         done
5514         remount_client $MOUNT
5515 }
5516 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5517
5518 test_77j() { # bug 13805
5519         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5520         $GSS && skip "could not run with gss" && return
5521         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5522         lctl set_param fail_loc=0x40c
5523         remount_client $MOUNT
5524         lctl set_param fail_loc=0
5525         sleep 2 # wait async osc connect to finish
5526         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5527                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5528                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5529                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5530         done
5531         remount_client $MOUNT
5532 }
5533 run_test 77j "client only supporting ADLER32"
5534
5535 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5536 rm -f $F77_TMP
5537 unset F77_TMP
5538
5539 test_78() { # bug 10901
5540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5541         remote_ost || { skip_env "local OST" && return; }
5542
5543         NSEQ=5
5544         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5545         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5546         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5547         echo "MemTotal: $MEMTOTAL"
5548 # reserve 256MB of memory for the kernel and other running processes,
5549 # and then take 1/2 of the remaining memory for the read/write buffers.
5550     if [ $MEMTOTAL -gt 512 ] ;then
5551         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5552     else
5553         # for those poor memory-starved high-end clusters...
5554         MEMTOTAL=$((MEMTOTAL / 2))
5555     fi
5556         echo "Mem to use for directio: $MEMTOTAL"
5557         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5558         [ $F78SIZE -gt 512 ] && F78SIZE=512
5559         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5560         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5561         echo "Smallest OST: $SMALLESTOST"
5562         [ $SMALLESTOST -lt 10240 ] && \
5563                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5564
5565         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5566                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5567
5568         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5569         echo "File size: $F78SIZE"
5570         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5571         for i in `seq 1 $NSEQ`
5572         do
5573                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5574                 echo directIO rdwr round $i of $NSEQ
5575                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5576         done
5577
5578         rm -f $DIR/$tfile
5579 }
5580 run_test 78 "handle large O_DIRECT writes correctly ============"
5581
5582 test_79() { # bug 12743
5583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5584         wait_delete_completed
5585
5586         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5587         BKFREE=$(calc_osc_kbytes kbytesfree)
5588         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5589
5590         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5591         DFTOTAL=`echo $STRING | cut -d, -f1`
5592         DFUSED=`echo $STRING  | cut -d, -f2`
5593         DFAVAIL=`echo $STRING | cut -d, -f3`
5594         DFFREE=$(($DFTOTAL - $DFUSED))
5595
5596         ALLOWANCE=$((64 * $OSTCOUNT))
5597
5598         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5599            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5600                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5601         fi
5602         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5603            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5604                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5605         fi
5606         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5607            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5608                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5609         fi
5610 }
5611 run_test 79 "df report consistency check ======================="
5612
5613 test_80() { # bug 10718
5614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5615         # relax strong synchronous semantics for slow backends like ZFS
5616         local soc="obdfilter.*.sync_on_lock_cancel"
5617         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5618         local hosts=
5619         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5620                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5621                           facet_active_host $host; done | sort -u)
5622                 do_nodes $hosts lctl set_param $soc=never
5623         fi
5624
5625         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5626         sync; sleep 1; sync
5627         local BEFORE=`date +%s`
5628         cancel_lru_locks osc
5629         local AFTER=`date +%s`
5630         local DIFF=$((AFTER-BEFORE))
5631         if [ $DIFF -gt 1 ] ; then
5632                 error "elapsed for 1M@1T = $DIFF"
5633         fi
5634
5635         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5636
5637         rm -f $DIR/$tfile
5638 }
5639 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5640
5641 test_81a() { # LU-456
5642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5643         remote_ost_nodsh && skip "remote OST with nodsh" && return
5644         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5645         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5646         do_facet ost1 lctl set_param fail_loc=0x80000228
5647
5648         # write should trigger a retry and success
5649         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5650         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5651         RC=$?
5652         if [ $RC -ne 0 ] ; then
5653                 error "write should success, but failed for $RC"
5654         fi
5655 }
5656 run_test 81a "OST should retry write when get -ENOSPC ==============="
5657
5658 test_81b() { # LU-456
5659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5660         remote_ost_nodsh && skip "remote OST with nodsh" && return
5661         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5662         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5663         do_facet ost1 lctl set_param fail_loc=0x228
5664
5665         # write should retry several times and return -ENOSPC finally
5666         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5667         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5668         RC=$?
5669         ENOSPC=28
5670         if [ $RC -ne $ENOSPC ] ; then
5671                 error "dd should fail for -ENOSPC, but succeed."
5672         fi
5673 }
5674 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5675
5676 test_82() { # LU-1031
5677         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5678         local gid1=14091995
5679         local gid2=16022000
5680
5681         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5682         local MULTIPID1=$!
5683         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5684         local MULTIPID2=$!
5685         kill -USR1 $MULTIPID2
5686         sleep 2
5687         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5688                 error "First grouplock does not block second one"
5689         else
5690                 echo "Second grouplock blocks first one"
5691         fi
5692         kill -USR1 $MULTIPID1
5693         wait $MULTIPID1
5694         wait $MULTIPID2
5695 }
5696 run_test 82 "Basic grouplock test ==============================="
5697
5698 test_99a() {
5699         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5700                 return
5701         test_mkdir -p $DIR/d99cvsroot
5702         chown $RUNAS_ID $DIR/d99cvsroot
5703         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5704         cd $TMP
5705
5706         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5707         cd $oldPWD
5708 }
5709 run_test 99a "cvs init ========================================="
5710
5711 test_99b() {
5712         [ -z "$(which cvs 2>/dev/null)" ] &&
5713                 skip_env "could not find cvs" && return
5714         [ ! -d $DIR/d99cvsroot ] && test_99a
5715         cd /etc/init.d
5716         # some versions of cvs import exit(1) when asked to import links or
5717         # files they can't read.  ignore those files.
5718         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5719                         ! -perm +4 -printf '-I %f\n')
5720         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5721                 d99reposname vtag rtag
5722 }
5723 run_test 99b "cvs import ======================================="
5724
5725 test_99c() {
5726         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5727         [ ! -d $DIR/d99cvsroot ] && test_99b
5728         cd $DIR
5729         test_mkdir -p $DIR/d99reposname
5730         chown $RUNAS_ID $DIR/d99reposname
5731         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5732 }
5733 run_test 99c "cvs checkout ====================================="
5734
5735 test_99d() {
5736         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5737         [ ! -d $DIR/d99cvsroot ] && test_99c
5738         cd $DIR/d99reposname
5739         $RUNAS touch foo99
5740         $RUNAS cvs add -m 'addmsg' foo99
5741 }
5742 run_test 99d "cvs add =========================================="
5743
5744 test_99e() {
5745         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5746         [ ! -d $DIR/d99cvsroot ] && test_99c
5747         cd $DIR/d99reposname
5748         $RUNAS cvs update
5749 }
5750 run_test 99e "cvs update ======================================="
5751
5752 test_99f() {
5753         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5754         [ ! -d $DIR/d99cvsroot ] && test_99d
5755         cd $DIR/d99reposname
5756         $RUNAS cvs commit -m 'nomsg' foo99
5757     rm -fr $DIR/d99cvsroot
5758 }
5759 run_test 99f "cvs commit ======================================="
5760
5761 test_100() {
5762         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5763         [ "$NETTYPE" = tcp ] || \
5764                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5765                         return ; }
5766
5767         remote_ost_nodsh && skip "remote OST with nodsh" && return
5768         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5769         remote_servers || \
5770                 { skip "useless for local single node setup" && return; }
5771
5772         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5773                 [ "$PROT" != "tcp" ] && continue
5774                 RPORT=$(echo $REMOTE | cut -d: -f2)
5775                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5776
5777                 rc=0
5778                 LPORT=`echo $LOCAL | cut -d: -f2`
5779                 if [ $LPORT -ge 1024 ]; then
5780                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5781                         netstat -tna
5782                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5783                 fi
5784         done
5785         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5786 }
5787 run_test 100 "check local port using privileged port ==========="
5788
5789 function get_named_value()
5790 {
5791     local tag
5792
5793     tag=$1
5794     while read ;do
5795         line=$REPLY
5796         case $line in
5797         $tag*)
5798             echo $line | sed "s/^$tag[ ]*//"
5799             break
5800             ;;
5801         esac
5802     done
5803 }
5804
5805 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5806                    awk '/^max_cached_mb/ { print $2 }')
5807
5808 cleanup_101a() {
5809         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5810         trap 0
5811 }
5812
5813 test_101a() {
5814         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5815         [ $MDSCOUNT -ge 2 ] && skip "skip now for >= 2 MDTs" && return #LU-4322
5816         local s
5817         local discard
5818         local nreads=10000
5819         local cache_limit=32
5820
5821         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5822         trap cleanup_101a EXIT
5823         $LCTL set_param -n llite.*.read_ahead_stats 0
5824         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5825
5826         #
5827         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5828         #
5829         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5830         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5831
5832         discard=0
5833         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5834                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5835                         discard=$(($discard + $s))
5836         done
5837         cleanup_101a
5838
5839         if [ $(($discard * 10)) -gt $nreads ] ;then
5840                 $LCTL get_param osc.*-osc*.rpc_stats
5841                 $LCTL get_param llite.*.read_ahead_stats
5842                 error "too many ($discard) discarded pages"
5843         fi
5844         rm -f $DIR/$tfile || true
5845 }
5846 run_test 101a "check read-ahead for random reads ================"
5847
5848 setup_test101bc() {
5849         test_mkdir -p $DIR/$tdir
5850         STRIPE_SIZE=1048576
5851         STRIPE_COUNT=$OSTCOUNT
5852         STRIPE_OFFSET=0
5853
5854         local list=$(comma_list $(osts_nodes))
5855         set_osd_param $list '' read_cache_enable 0
5856         set_osd_param $list '' writethrough_cache_enable 0
5857
5858         trap cleanup_test101bc EXIT
5859         # prepare the read-ahead file
5860         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5861
5862         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5863 }
5864
5865 cleanup_test101bc() {
5866         trap 0
5867         rm -rf $DIR/$tdir
5868         rm -f $DIR/$tfile
5869
5870         local list=$(comma_list $(osts_nodes))
5871         set_osd_param $list '' read_cache_enable 1
5872         set_osd_param $list '' writethrough_cache_enable 1
5873 }
5874
5875 calc_total() {
5876         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5877 }
5878
5879 ra_check_101() {
5880         local READ_SIZE=$1
5881         local STRIPE_SIZE=1048576
5882         local RA_INC=1048576
5883         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5884         local FILE_LENGTH=$((64*100))
5885         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5886                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5887         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5888                         get_named_value 'read but discarded' | \
5889                         cut -d" " -f1 | calc_total`
5890         if [ $DISCARD -gt $discard_limit ]; then
5891                 $LCTL get_param llite.*.read_ahead_stats
5892                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5893         else
5894                 echo "Read-ahead success for size ${READ_SIZE}"
5895         fi
5896 }
5897
5898 test_101b() {
5899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5900         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5901         local STRIPE_SIZE=1048576
5902         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5903         local FILE_LENGTH=$((STRIPE_SIZE*100))
5904         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5905         # prepare the read-ahead file
5906         setup_test101bc
5907         cancel_lru_locks osc
5908         for BIDX in 2 4 8 16 32 64 128 256
5909         do
5910                 local BSIZE=$((BIDX*4096))
5911                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5912                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5913                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5914                 $LCTL set_param -n llite.*.read_ahead_stats 0
5915                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5916                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5917                 cancel_lru_locks osc
5918                 ra_check_101 $BSIZE
5919         done
5920         cleanup_test101bc
5921         true
5922 }
5923 run_test 101b "check stride-io mode read-ahead ================="
5924
5925 test_101c() {
5926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5927         local STRIPE_SIZE=1048576
5928         local FILE_LENGTH=$((STRIPE_SIZE*100))
5929         local nreads=10000
5930         local osc_rpc_stats
5931
5932         setup_test101bc
5933
5934         cancel_lru_locks osc
5935         $LCTL set_param osc.*.rpc_stats 0
5936         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5937         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5938                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5939                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5940                 local size
5941
5942                 if [ $lines -le 20 ]; then
5943                         continue
5944                 fi
5945                 for size in 1 2 4 8; do
5946                         local rpc=$(echo "$stats" |
5947                                     awk '($1 == "'$size':") {print $2; exit; }')
5948                         [ $rpc != 0 ] &&
5949                                 error "Small $((size*4))k read IO $rpc !"
5950                 done
5951                 echo "$osc_rpc_stats check passed!"
5952         done
5953         cleanup_test101bc
5954         true
5955 }
5956 run_test 101c "check stripe_size aligned read-ahead ================="
5957
5958 set_read_ahead() {
5959    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5960    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5961 }
5962
5963 test_101d() {
5964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5965         local file=$DIR/$tfile
5966         local size=${FILESIZE_101c:-500}
5967         local ra_MB=${READAHEAD_MB:-40}
5968
5969         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5970         [ $space -gt $((size * 1024)) ] ||
5971                 { skip "Need free space ${size}M, have ${space}K" && return; }
5972
5973         echo "Creating test file $file of size ${size}M with ${space}K free space"
5974         $SETSTRIPE -c -1 $file || error "setstripe failed"
5975         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5976         echo Cancel LRU locks on lustre client to flush the client cache
5977         cancel_lru_locks osc
5978
5979     echo Disable read-ahead
5980     local old_READAHEAD=$(set_read_ahead 0)
5981
5982     echo Reading the test file $file with read-ahead disabled
5983     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5984
5985     echo Cancel LRU locks on lustre client to flush the client cache
5986     cancel_lru_locks osc
5987     echo Enable read-ahead with ${ra_MB}MB
5988     set_read_ahead $ra_MB
5989
5990     echo Reading the test file $file with read-ahead enabled
5991     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5992
5993     echo read-ahead disabled time read $time_ra_OFF
5994     echo read-ahead enabled  time read $time_ra_ON
5995
5996         set_read_ahead $old_READAHEAD
5997         rm -f $file
5998         wait_delete_completed
5999
6000     [ $time_ra_ON -lt $time_ra_OFF ] ||
6001         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
6002                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
6003 }
6004 run_test 101d "file read with and without read-ahead enabled  ================="
6005
6006 test_101e() {
6007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6008     local file=$DIR/$tfile
6009     local size=500  #KB
6010     local count=100
6011     local blksize=1024
6012
6013     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
6014     local need_space=$((count * size))
6015     [ $space -gt $need_space ] ||
6016         { skip_env "Need free space $need_space, have $space" && return; }
6017
6018     echo Creating $count ${size}K test files
6019     for ((i = 0; i < $count; i++)); do
6020         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
6021     done
6022
6023     echo Cancel LRU locks on lustre client to flush the client cache
6024     cancel_lru_locks osc
6025
6026     echo Reset readahead stats
6027     $LCTL set_param -n llite.*.read_ahead_stats 0
6028
6029     for ((i = 0; i < $count; i++)); do
6030         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
6031     done
6032
6033     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
6034           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6035
6036     for ((i = 0; i < $count; i++)); do
6037         rm -rf ${file}_${i} 2>/dev/null
6038     done
6039
6040     #10000 means 20% reads are missing in readahead
6041     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
6042 }
6043 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
6044
6045 cleanup_test101f() {
6046     trap 0
6047     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
6048     rm -rf $DIR/$tfile 2>/dev/null
6049 }
6050
6051 test_101f() {
6052         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6053     local file=$DIR/$tfile
6054     local nreads=1000
6055
6056     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
6057     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
6058     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6059     trap cleanup_test101f EXIT
6060
6061     echo Cancel LRU locks on lustre client to flush the client cache
6062     cancel_lru_locks osc
6063
6064     echo Reset readahead stats
6065     $LCTL set_param -n llite.*.read_ahead_stats 0
6066     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6067     # readahead should read in 2M file on second read, so only miss
6068     # 2 pages.
6069     echo Random 4K reads on 2M file for 1000 times
6070     $READS -f $file -s 2097152 -b 4096 -n $nreads
6071
6072     echo checking missing pages
6073     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6074           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6075
6076     [ $miss -lt 3 ] || error "misses too much pages!"
6077     cleanup_test101f
6078 }
6079 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6080
6081 setup_test102() {
6082         test_mkdir -p $DIR/$tdir
6083         chown $RUNAS_ID $DIR/$tdir
6084         STRIPE_SIZE=65536
6085         STRIPE_OFFSET=1
6086         STRIPE_COUNT=$OSTCOUNT
6087         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6088
6089         trap cleanup_test102 EXIT
6090         cd $DIR
6091         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6092         cd $DIR/$tdir
6093         for num in 1 2 3 4; do
6094                 for count in $(seq 1 $STRIPE_COUNT); do
6095                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6096                                 local size=`expr $STRIPE_SIZE \* $num`
6097                                 local file=file"$num-$idx-$count"
6098                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6099                         done
6100                 done
6101         done
6102
6103         cd $DIR
6104         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6105 }
6106
6107 cleanup_test102() {
6108         trap 0
6109         rm -f $TMP/f102.tar
6110         rm -rf $DIR/d0.sanity/d102
6111 }
6112
6113 test_102a() {
6114         local testfile=$DIR/xattr_testfile
6115
6116         touch $testfile
6117
6118         [ "$UID" != 0 ] && skip_env "must run as root" && return
6119         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6120                 skip_env "must have user_xattr" && return
6121
6122         [ -z "$(which setfattr 2>/dev/null)" ] &&
6123                 skip_env "could not find setfattr" && return
6124
6125         echo "set/get xattr..."
6126         setfattr -n trusted.name1 -v value1 $testfile ||
6127                 error "setfattr -n trusted.name1=value1 $testfile failed"
6128         getfattr -n trusted.name1 $testfile 2> /dev/null |
6129           grep "trusted.name1=.value1" ||
6130                 error "$testfile missing trusted.name1=value1"
6131
6132         setfattr -n user.author1 -v author1 $testfile ||
6133                 error "setfattr -n user.author1=author1 $testfile failed"
6134         getfattr -n user.author1 $testfile 2> /dev/null |
6135           grep "user.author1=.author1" ||
6136                 error "$testfile missing trusted.author1=author1"
6137
6138         echo "listxattr..."
6139         setfattr -n trusted.name2 -v value2 $testfile ||
6140                 error "$testfile unable to set trusted.name2"
6141         setfattr -n trusted.name3 -v value3 $testfile ||
6142                 error "$testfile unable to set trusted.name3"
6143         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6144             grep "trusted.name" | wc -l) -eq 3 ] ||
6145                 error "$testfile missing 3 trusted.name xattrs"
6146
6147         setfattr -n user.author2 -v author2 $testfile ||
6148                 error "$testfile unable to set user.author2"
6149         setfattr -n user.author3 -v author3 $testfile ||
6150                 error "$testfile unable to set user.author3"
6151         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6152             grep "user.author" | wc -l) -eq 3 ] ||
6153                 error "$testfile missing 3 user.author xattrs"
6154
6155         echo "remove xattr..."
6156         setfattr -x trusted.name1 $testfile ||
6157                 error "$testfile error deleting trusted.name1"
6158         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6159                 error "$testfile did not delete trusted.name1 xattr"
6160
6161         setfattr -x user.author1 $testfile ||
6162                 error "$testfile error deleting user.author1"
6163         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6164                 error "$testfile did not delete trusted.name1 xattr"
6165
6166         # b10667: setting lustre special xattr be silently discarded
6167         echo "set lustre special xattr ..."
6168         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6169                 error "$testfile allowed setting trusted.lov"
6170 }
6171 run_test 102a "user xattr test =================================="
6172
6173 test_102b() {
6174         # b10930: get/set/list trusted.lov xattr
6175         echo "get/set/list trusted.lov xattr ..."
6176         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6177         local testfile=$DIR/$tfile
6178         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6179                 error "setstripe failed"
6180         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6181                 error "getstripe failed"
6182         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6183         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6184
6185         local testfile2=${testfile}2
6186         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6187                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6188
6189         $MCREATE $testfile2
6190         setfattr -n trusted.lov -v $value $testfile2
6191         local stripe_size=$($GETSTRIPE -S $testfile2)
6192         local stripe_count=$($GETSTRIPE -c $testfile2)
6193         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6194         [ $stripe_count -eq $STRIPECOUNT ] ||
6195                 error "stripe count $stripe_count != $STRIPECOUNT"
6196         rm -f $DIR/$tfile
6197 }
6198 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6199
6200 test_102c() {
6201         # b10930: get/set/list lustre.lov xattr
6202         echo "get/set/list lustre.lov xattr ..."
6203         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6204         test_mkdir -p $DIR/$tdir
6205         chown $RUNAS_ID $DIR/$tdir
6206         local testfile=$DIR/$tdir/$tfile
6207         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6208                 error "setstripe failed"
6209         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6210                 error "getstripe failed"
6211         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6212         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6213
6214         local testfile2=${testfile}2
6215         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6216                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6217
6218         $RUNAS $MCREATE $testfile2
6219         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6220         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6221         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6222         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6223         [ $stripe_count -eq $STRIPECOUNT ] ||
6224                 error "stripe count $stripe_count != $STRIPECOUNT"
6225 }
6226 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6227
6228 compare_stripe_info1() {
6229         local stripe_index_all_zero=true
6230
6231         for num in 1 2 3 4; do
6232                 for count in $(seq 1 $STRIPE_COUNT); do
6233                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6234                                 local size=$((STRIPE_SIZE * num))
6235                                 local file=file"$num-$offset-$count"
6236                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6237                                 [ $stripe_size -ne $size ] &&
6238                                     error "$file: size $stripe_size != $size"
6239                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6240                                 # allow fewer stripes to be created, ORI-601
6241                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6242                                     error "$file: count $stripe_count != $count"
6243                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6244                                 [ $stripe_index -ne 0 ] &&
6245                                         stripe_index_all_zero=false
6246                         done
6247                 done
6248         done
6249         $stripe_index_all_zero &&
6250                 error "all files are being extracted starting from OST index 0"
6251         return 0
6252 }
6253
6254 find_lustre_tar() {
6255         [ -n "$(which tar 2>/dev/null)" ] &&
6256                 strings $(which tar) | grep -q "lustre" && echo tar
6257 }
6258
6259 test_102d() {
6260         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6261         # b10930: tar test for trusted.lov xattr
6262         TAR=$(find_lustre_tar)
6263         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6264         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6265         setup_test102
6266         test_mkdir -p $DIR/d102d
6267         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6268         cd $DIR/d102d/$tdir
6269         compare_stripe_info1
6270 }
6271 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6272
6273 test_102f() {
6274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6275         # b10930: tar test for trusted.lov xattr
6276         TAR=$(find_lustre_tar)
6277         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6278         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6279         setup_test102
6280         test_mkdir -p $DIR/d102f
6281         cd $DIR
6282         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6283         cd $DIR/d102f/$tdir
6284         compare_stripe_info1
6285 }
6286 run_test 102f "tar copy files, not keep osts ==========="
6287
6288 grow_xattr() {
6289         local xsize=${1:-1024}  # in bytes
6290         local file=$DIR/$tfile
6291
6292         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6293                 skip "must have user_xattr" && return 0
6294         [ -z "$(which setfattr 2>/dev/null)" ] &&
6295                 skip_env "could not find setfattr" && return 0
6296         [ -z "$(which getfattr 2>/dev/null)" ] &&
6297                 skip_env "could not find getfattr" && return 0
6298
6299         touch $file
6300
6301         local value="$(generate_string $xsize)"
6302
6303         local xbig=trusted.big
6304         log "save $xbig on $file"
6305         setfattr -n $xbig -v $value $file ||
6306                 error "saving $xbig on $file failed"
6307
6308         local orig=$(get_xattr_value $xbig $file)
6309         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6310
6311         local xsml=trusted.sml
6312         log "save $xsml on $file"
6313         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6314
6315         local new=$(get_xattr_value $xbig $file)
6316         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6317
6318         log "grow $xsml on $file"
6319         setfattr -n $xsml -v "$value" $file ||
6320                 error "growing $xsml on $file failed"
6321
6322         new=$(get_xattr_value $xbig $file)
6323         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6324         log "$xbig still valid after growing $xsml"
6325
6326         rm -f $file
6327 }
6328
6329 test_102h() { # bug 15777
6330         grow_xattr 1024
6331 }
6332 run_test 102h "grow xattr from inside inode to external block"
6333
6334 test_102ha() {
6335         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6336         grow_xattr $(max_xattr_size)
6337 }
6338 run_test 102ha "grow xattr from inside inode to external inode"
6339
6340 test_102i() { # bug 17038
6341         touch $DIR/$tfile
6342         ln -s $DIR/$tfile $DIR/${tfile}link
6343         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6344         getfattr -h -n trusted.lov $DIR/${tfile}link 2>&1 | grep -i "no such attr" || error "error for lgetxattr on $DIR/${tfile}link is not ENODATA"
6345         rm -f $DIR/$tfile $DIR/${tfile}link
6346 }
6347 run_test 102i "lgetxattr test on symbolic link ============"
6348
6349 test_102j() {
6350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6351         TAR=$(find_lustre_tar)
6352         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6353         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6354         setup_test102 "$RUNAS"
6355         test_mkdir -p $DIR/d102j
6356         chown $RUNAS_ID $DIR/d102j
6357         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6358         cd $DIR/d102j/$tdir
6359         compare_stripe_info1 "$RUNAS"
6360 }
6361 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6362
6363 test_102k() {
6364         touch $DIR/$tfile
6365         # b22187 just check that does not crash for regular file.
6366         setfattr -n trusted.lov $DIR/$tfile
6367         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6368         local test_kdir=$DIR/d102k
6369         test_mkdir $test_kdir
6370         local default_size=`$GETSTRIPE -S $test_kdir`
6371         local default_count=`$GETSTRIPE -c $test_kdir`
6372         local default_offset=`$GETSTRIPE -i $test_kdir`
6373         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6374                 error 'dir setstripe failed'
6375         setfattr -n trusted.lov $test_kdir
6376         local stripe_size=`$GETSTRIPE -S $test_kdir`
6377         local stripe_count=`$GETSTRIPE -c $test_kdir`
6378         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6379         [ $stripe_size -eq $default_size ] ||
6380                 error "stripe size $stripe_size != $default_size"
6381         [ $stripe_count -eq $default_count ] ||
6382                 error "stripe count $stripe_count != $default_count"
6383         [ $stripe_offset -eq $default_offset ] ||
6384                 error "stripe offset $stripe_offset != $default_offset"
6385         rm -rf $DIR/$tfile $test_kdir
6386 }
6387 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6388
6389 test_102l() {
6390         # LU-532 trusted. xattr is invisible to non-root
6391         local testfile=$DIR/$tfile
6392
6393         touch $testfile
6394
6395         echo "listxattr as user..."
6396         chown $RUNAS_ID $testfile
6397         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6398             grep -q "trusted" &&
6399                 error "$testfile trusted xattrs are user visible"
6400
6401         return 0;
6402 }
6403 run_test 102l "listxattr size test =================================="
6404
6405 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6406         local path=$DIR/$tfile
6407         touch $path
6408
6409         listxattr_size_check $path || error "listattr_size_check $path failed"
6410 }
6411 run_test 102m "Ensure listxattr fails on small bufffer ========"
6412
6413 cleanup_test102
6414
6415 getxattr() { # getxattr path name
6416         # Return the base64 encoding of the value of xattr name on path.
6417         local path=$1
6418         local name=$2
6419
6420         # # getfattr --absolute-names --encoding=base64 --name=trusted.lov $path
6421         # file: $path
6422         # trusted.lov=0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6423         #
6424         # We print just 0s0AvRCwEAAAAGAAAAAAAAAAAEAAACAAAAAAAQAAEAA...AAAAAAAAA=
6425
6426         getfattr --absolute-names --encoding=base64 --name=$name $path |
6427                 awk -F= -v name=$name '$1 == name {
6428                         print substr($0, index($0, "=") + 1);
6429         }'
6430 }
6431
6432 test_102n() { # LU-4101 mdt: protect internal xattrs
6433         local file0=$DIR/$tfile.0
6434         local file1=$DIR/$tfile.1
6435         local xattr0=$TMP/$tfile.0
6436         local xattr1=$TMP/$tfile.1
6437         local name
6438         local value
6439
6440         if [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.5.50) ]
6441         then
6442                 skip "MDT < 2.5.50 allows setxattr on internal trusted xattrs"
6443                 return
6444         fi
6445
6446         rm -rf $file0 $file1 $xattr0 $xattr1
6447         touch $file0 $file1
6448
6449         # Get 'before' xattrs of $file1.
6450         getfattr --absolute-names --dump --match=- $file1 > $xattr0
6451
6452         for name in lov lma lmv link fid version som hsm lfsck_namespace; do
6453                 # Try to copy xattr from $file0 to $file1.
6454                 value=$(getxattr $file0 trusted.$name 2> /dev/null)
6455
6456                 setfattr --name=trusted.$name --value="$value" $file1 ||
6457                         error "setxattr 'trusted.$name' failed"
6458
6459                 # Try to set a garbage xattr.
6460                 value=0sVGhlIHF1aWNrIGJyb3duIGZveCBqdW1wcyBvdmVyIGl0c2VsZi4=
6461
6462                 setfattr --name=trusted.$name --value="$value" $file1 ||
6463                         error "setxattr 'trusted.$name' failed"
6464
6465                 # Try to remove the xattr from $file1. We don't care if this
6466                 # appears to succeed or fail, we just don't want there to be
6467                 # any changes or crashes.
6468                 setfattr --remove=$trusted.$name $file1 2> /dev/null
6469         done
6470
6471         # Get 'after' xattrs of file1.
6472         getfattr --absolute-names --dump --match=- $file1 > $xattr1
6473
6474         if ! diff $xattr0 $xattr1; then
6475                 error "before and after xattrs of '$file1' differ"
6476         fi
6477
6478         rm -rf $file0 $file1 $xattr0 $xattr1
6479
6480         return 0
6481 }
6482 run_test 102n "silently ignore setxattr on internal trusted xattrs"
6483
6484 run_acl_subtest()
6485 {
6486     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6487     return $?
6488 }
6489
6490 test_103 () {
6491         [ "$UID" != 0 ] && skip_env "must run as root" && return
6492         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6493                 skip "must have acl enabled" && return
6494         [ -z "$(which setfacl 2>/dev/null)" ] &&
6495                 skip_env "could not find setfacl" && return
6496         $GSS && skip "could not run under gss" && return
6497
6498         declare -a identity_old
6499
6500         for num in $(seq $MDSCOUNT); do
6501                 switch_identity $num true || identity_old[$num]=$?
6502         done
6503
6504         SAVE_UMASK=$(umask)
6505         umask 0022
6506         cd $DIR
6507
6508         echo "performing cp ..."
6509         run_acl_subtest cp || error "run_acl_subtest cp failed"
6510         echo "performing getfacl-noacl..."
6511         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6512         echo "performing misc..."
6513         run_acl_subtest misc || error  "misc test failed"
6514         echo "performing permissions..."
6515         run_acl_subtest permissions || error "permissions failed"
6516         echo "performing setfacl..."
6517         run_acl_subtest setfacl || error  "setfacl test failed"
6518
6519         # inheritance test got from HP
6520         echo "performing inheritance..."
6521         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6522         chmod +x make-tree || error "chmod +x failed"
6523         run_acl_subtest inheritance || error "inheritance test failed"
6524         rm -f make-tree
6525
6526         echo "LU-974 ignore umask when acl is enabled..."
6527         run_acl_subtest 974 || error "LU-974 umask test failed"
6528         if [ $MDSCOUNT -ge 2 ]; then
6529                 run_acl_subtest 974_remote ||
6530                         error "LU-974 umask test failed under remote dir"
6531         fi
6532
6533         echo "LU-2561 newly created file is same size as directory..."
6534         run_acl_subtest 2561 || error "LU-2561 test failed"
6535
6536         cd $SAVE_PWD
6537         umask $SAVE_UMASK
6538
6539         for num in $(seq $MDSCOUNT); do
6540                 if [ "${identity_old[$num]}" = 1 ]; then
6541                         switch_identity $num false || identity_old[$num]=$?
6542                 fi
6543         done
6544 }
6545 run_test 103 "acl test ========================================="
6546
6547 test_104a() {
6548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6549         touch $DIR/$tfile
6550         lfs df || error "lfs df failed"
6551         lfs df -ih || error "lfs df -ih failed"
6552         lfs df -h $DIR || error "lfs df -h $DIR failed"
6553         lfs df -i $DIR || error "lfs df -i $DIR failed"
6554         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6555         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6556
6557         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6558         lctl --device %$OSC deactivate
6559         lfs df || error "lfs df with deactivated OSC failed"
6560         lctl --device %$OSC activate
6561         # wait the osc back to normal
6562         wait_osc_import_state client ost FULL
6563
6564         lfs df || error "lfs df with reactivated OSC failed"
6565         rm -f $DIR/$tfile
6566 }
6567 run_test 104a "lfs df [-ih] [path] test ========================="
6568
6569 test_104b() {
6570         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6571         [ $RUNAS_ID -eq $UID ] &&
6572                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6573         chmod 666 /dev/obd
6574         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6575                         grep "Permission denied" | wc -l)))
6576         if [ $denied_cnt -ne 0 ]; then
6577                 error "lfs check servers test failed"
6578         fi
6579 }
6580 run_test 104b "$RUNAS lfs check servers test ===================="
6581
6582 test_105a() {
6583         # doesn't work on 2.4 kernels
6584         touch $DIR/$tfile
6585         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6586                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6587         else
6588                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6589         fi
6590         rm -f $DIR/$tfile
6591 }
6592 run_test 105a "flock when mounted without -o flock test ========"
6593
6594 test_105b() {
6595         touch $DIR/$tfile
6596         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6597                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6598         else
6599                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6600         fi
6601         rm -f $DIR/$tfile
6602 }
6603 run_test 105b "fcntl when mounted without -o flock test ========"
6604
6605 test_105c() {
6606         touch $DIR/$tfile
6607         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6608                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6609         else
6610                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6611         fi
6612         rm -f $DIR/$tfile
6613 }
6614 run_test 105c "lockf when mounted without -o flock test ========"
6615
6616 test_105d() { # bug 15924
6617         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6618         test_mkdir -p $DIR/$tdir
6619         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6620                 skip "mount w/o flock enabled" && return
6621         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6622         $LCTL set_param fail_loc=0x80000315
6623         flocks_test 2 $DIR/$tdir
6624 }
6625 run_test 105d "flock race (should not freeze) ========"
6626
6627 test_105e() { # bug 22660 && 22040
6628         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6629                 skip "mount w/o flock enabled" && return
6630         touch $DIR/$tfile
6631         flocks_test 3 $DIR/$tfile
6632 }
6633 run_test 105e "Two conflicting flocks from same process ======="
6634
6635 test_106() { #bug 10921
6636         test_mkdir -p $DIR/$tdir
6637         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6638         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6639 }
6640 run_test 106 "attempt exec of dir followed by chown of that dir"
6641
6642 test_107() {
6643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6644         CDIR=`pwd`
6645         cd $DIR
6646
6647         local file=core
6648         rm -f $file
6649
6650         local save_pattern=$(sysctl -n kernel.core_pattern)
6651         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6652         sysctl -w kernel.core_pattern=$file
6653         sysctl -w kernel.core_uses_pid=0
6654
6655         ulimit -c unlimited
6656         sleep 60 &
6657         SLEEPPID=$!
6658
6659         sleep 1
6660
6661         kill -s 11 $SLEEPPID
6662         wait $SLEEPPID
6663         if [ -e $file ]; then
6664                 size=`stat -c%s $file`
6665                 [ $size -eq 0 ] && error "Fail to create core file $file"
6666         else
6667                 error "Fail to create core file $file"
6668         fi
6669         rm -f $file
6670         sysctl -w kernel.core_pattern=$save_pattern
6671         sysctl -w kernel.core_uses_pid=$save_uses_pid
6672         cd $CDIR
6673 }
6674 run_test 107 "Coredump on SIG"
6675
6676 test_110() {
6677         test_mkdir -p $DIR/$tdir
6678         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6679                 error "mkdir with 255 char failed"
6680         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6681                 error "mkdir with 256 char should fail, but did not"
6682         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6683                 error "create with 255 char failed"
6684         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6685                 error "create with 256 char should fail, but did not"
6686
6687         ls -l $DIR/$tdir
6688         rm -rf $DIR/$tdir
6689 }
6690 run_test 110 "filename length checking"
6691
6692 test_115() {
6693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6694         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6695             cut -c11-20)
6696         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6697             return
6698         echo "Starting with $OSTIO_pre threads"
6699
6700         NUMTEST=20000
6701         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6702         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6703         echo "$NUMTEST creates/unlinks"
6704         test_mkdir -p $DIR/$tdir
6705         createmany -o $DIR/$tdir/$tfile $NUMTEST
6706         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6707
6708         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6709             cut -c11-20)
6710
6711         # don't return an error
6712         [ $OSTIO_post == $OSTIO_pre ] && echo \
6713             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6714             echo "This may be fine, depending on what ran before this test" &&
6715             echo "and how fast this system is." && return
6716
6717         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6718 }
6719 run_test 115 "verify dynamic thread creation===================="
6720
6721 free_min_max () {
6722         wait_delete_completed
6723         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6724         echo OST kbytes available: ${AVAIL[@]}
6725         MAXI=0; MAXV=${AVAIL[0]}
6726         MINI=0; MINV=${AVAIL[0]}
6727         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6728             #echo OST $i: ${AVAIL[i]}kb
6729             if [ ${AVAIL[i]} -gt $MAXV ]; then
6730                 MAXV=${AVAIL[i]}; MAXI=$i
6731             fi
6732             if [ ${AVAIL[i]} -lt $MINV ]; then
6733                 MINV=${AVAIL[i]}; MINI=$i
6734             fi
6735         done
6736         echo Min free space: OST $MINI: $MINV
6737         echo Max free space: OST $MAXI: $MAXV
6738 }
6739
6740 test_116a() { # was previously test_116()
6741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6742         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6743
6744         echo -n "Free space priority "
6745         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6746                 head -1
6747         declare -a AVAIL
6748         free_min_max
6749
6750         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6751         trap simple_cleanup_common EXIT
6752
6753         # Check if we need to generate uneven OSTs
6754         test_mkdir -p $DIR/$tdir/OST${MINI}
6755         local FILL=$(($MINV / 4))
6756         local DIFF=$(($MAXV - $MINV))
6757         local DIFF2=$(($DIFF * 100 / $MINV))
6758
6759         local threshold=$(do_facet $SINGLEMDS \
6760                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6761         threshold=${threshold%%%}
6762         echo -n "Check for uneven OSTs: "
6763         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6764
6765         if [ $DIFF2 -gt $threshold ]; then
6766                 echo "ok"
6767                 echo "Don't need to fill OST$MINI"
6768         else
6769                 # generate uneven OSTs. Write 2% over the QOS threshold value
6770                 echo "no"
6771                 DIFF=$(($threshold - $DIFF2 + 2))
6772                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6773                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6774                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6775                         error "setstripe failed"
6776                 DIFF=$(($DIFF2 / 2048))
6777                 i=0
6778                 while [ $i -lt $DIFF ]; do
6779                         i=$(($i + 1))
6780                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6781                                 bs=2M count=1 2>/dev/null
6782                         echo -n .
6783                 done
6784                 echo .
6785                 sync
6786                 sleep_maxage
6787                 free_min_max
6788         fi
6789
6790         DIFF=$(($MAXV - $MINV))
6791         DIFF2=$(($DIFF * 100 / $MINV))
6792         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6793         if [ $DIFF2 -gt $threshold ]; then
6794                 echo "ok"
6795         else
6796                 echo "failed - QOS mode won't be used"
6797                 skip "QOS imbalance criteria not met"
6798                 simple_cleanup_common
6799                 return
6800         fi
6801
6802         MINI1=$MINI; MINV1=$MINV
6803         MAXI1=$MAXI; MAXV1=$MAXV
6804
6805         # now fill using QOS
6806         $SETSTRIPE -c 1 $DIR/$tdir
6807         FILL=$(($FILL / 200))
6808         if [ $FILL -gt 600 ]; then
6809                 FILL=600
6810         fi
6811         echo "writing $FILL files to QOS-assigned OSTs"
6812         i=0
6813         while [ $i -lt $FILL ]; do
6814                 i=$(($i + 1))
6815                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6816                         count=1 2>/dev/null
6817                 echo -n .
6818         done
6819         echo "wrote $i 200k files"
6820         sync
6821         sleep_maxage
6822
6823         echo "Note: free space may not be updated, so measurements might be off"
6824         free_min_max
6825         DIFF2=$(($MAXV - $MINV))
6826         echo "free space delta: orig $DIFF final $DIFF2"
6827         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6828         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6829         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6830         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6831         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6832         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6833         [ $DIFF -gt 0 ] &&
6834                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6835
6836         # Figure out which files were written where
6837         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6838                   awk '/'$MINI1': / {print $2; exit}')
6839         echo $UUID
6840         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6841         echo "$MINC files created on smaller OST $MINI1"
6842         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6843                   awk '/'$MAXI1': / {print $2; exit}')
6844         echo $UUID
6845         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6846         echo "$MAXC files created on larger OST $MAXI1"
6847         FILL=$(($MAXC * 100 / $MINC - 100))
6848         [ $MINC -gt 0 ] &&
6849                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6850         [ $MAXC -gt $MINC ] ||
6851                 error_ignore LU-9 "stripe QOS didn't balance free space"
6852         simple_cleanup_common
6853 }
6854 run_test 116a "stripe QOS: free space balance ==================="
6855
6856 test_116b() { # LU-2093
6857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6858 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6859         local old_rr
6860         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6861         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6862         mkdir -p $DIR/$tdir
6863         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6864         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6865         do_facet $SINGLEMDS lctl set_param fail_loc=0
6866         rm -rf $DIR/$tdir
6867         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6868 }
6869 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6870
6871 test_117() # bug 10891
6872 {
6873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6874         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6875         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6876         lctl set_param fail_loc=0x21e
6877         > $DIR/$tfile || error "truncate failed"
6878         lctl set_param fail_loc=0
6879         echo "Truncate succeeded."
6880         rm -f $DIR/$tfile
6881 }
6882 run_test 117 "verify osd extend =========="
6883
6884 NO_SLOW_RESENDCOUNT=4
6885 export OLD_RESENDCOUNT=""
6886 set_resend_count () {
6887         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6888         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6889         lctl set_param -n $PROC_RESENDCOUNT $1
6890         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6891 }
6892
6893 # for reduce test_118* time (b=14842)
6894 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6895
6896 # Reset async IO behavior after error case
6897 reset_async() {
6898         FILE=$DIR/reset_async
6899
6900         # Ensure all OSCs are cleared
6901         $SETSTRIPE -c -1 $FILE
6902         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6903         sync
6904         rm $FILE
6905 }
6906
6907 test_118a() #bug 11710
6908 {
6909         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6910         reset_async
6911
6912         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6913         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6914         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6915
6916         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6917                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6918                 return 1;
6919         fi
6920         rm -f $DIR/$tfile
6921 }
6922 run_test 118a "verify O_SYNC works =========="
6923
6924 test_118b()
6925 {
6926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6927         remote_ost_nodsh && skip "remote OST with nodsh" && return
6928
6929         reset_async
6930
6931         #define OBD_FAIL_OST_ENOENT 0x217
6932         set_nodes_failloc "$(osts_nodes)" 0x217
6933         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6934         RC=$?
6935         set_nodes_failloc "$(osts_nodes)" 0
6936         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6937         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6938                     grep -c writeback)
6939
6940         if [[ $RC -eq 0 ]]; then
6941                 error "Must return error due to dropped pages, rc=$RC"
6942                 return 1;
6943         fi
6944
6945         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6946                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6947                 return 1;
6948         fi
6949
6950         echo "Dirty pages not leaked on ENOENT"
6951
6952         # Due to the above error the OSC will issue all RPCs syncronously
6953         # until a subsequent RPC completes successfully without error.
6954         $MULTIOP $DIR/$tfile Ow4096yc
6955         rm -f $DIR/$tfile
6956
6957         return 0
6958 }
6959 run_test 118b "Reclaim dirty pages on fatal error =========="
6960
6961 test_118c()
6962 {
6963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6964
6965         # for 118c, restore the original resend count, LU-1940
6966         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6967                                 set_resend_count $OLD_RESENDCOUNT
6968         remote_ost_nodsh && skip "remote OST with nodsh" && return
6969
6970         reset_async
6971
6972         #define OBD_FAIL_OST_EROFS               0x216
6973         set_nodes_failloc "$(osts_nodes)" 0x216
6974
6975         # multiop should block due to fsync until pages are written
6976         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6977         MULTIPID=$!
6978         sleep 1
6979
6980         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6981                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6982         fi
6983
6984         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6985                     grep -c writeback)
6986         if [[ $WRITEBACK -eq 0 ]]; then
6987                 error "No page in writeback, writeback=$WRITEBACK"
6988         fi
6989
6990         set_nodes_failloc "$(osts_nodes)" 0
6991         wait $MULTIPID
6992         RC=$?
6993         if [[ $RC -ne 0 ]]; then
6994                 error "Multiop fsync failed, rc=$RC"
6995         fi
6996
6997         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6998         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6999                     grep -c writeback)
7000         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7001                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7002         fi
7003
7004         rm -f $DIR/$tfile
7005         echo "Dirty pages flushed via fsync on EROFS"
7006         return 0
7007 }
7008 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
7009
7010 # continue to use small resend count to reduce test_118* time (b=14842)
7011 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
7012
7013 test_118d()
7014 {
7015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7016         remote_ost_nodsh && skip "remote OST with nodsh" && return
7017
7018         reset_async
7019
7020         #define OBD_FAIL_OST_BRW_PAUSE_BULK
7021         set_nodes_failloc "$(osts_nodes)" 0x214
7022         # multiop should block due to fsync until pages are written
7023         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7024         MULTIPID=$!
7025         sleep 1
7026
7027         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
7028                 error "Multiop failed to block on fsync, pid=$MULTIPID"
7029         fi
7030
7031         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7032                     grep -c writeback)
7033         if [[ $WRITEBACK -eq 0 ]]; then
7034                 error "No page in writeback, writeback=$WRITEBACK"
7035         fi
7036
7037         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
7038         set_nodes_failloc "$(osts_nodes)" 0
7039
7040         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7041         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7042                     grep -c writeback)
7043         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7044                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7045         fi
7046
7047         rm -f $DIR/$tfile
7048         echo "Dirty pages gaurenteed flushed via fsync"
7049         return 0
7050 }
7051 run_test 118d "Fsync validation inject a delay of the bulk =========="
7052
7053 test_118f() {
7054         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7055         reset_async
7056
7057         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
7058         lctl set_param fail_loc=0x8000040a
7059
7060         # Should simulate EINVAL error which is fatal
7061         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7062         RC=$?
7063         if [[ $RC -eq 0 ]]; then
7064                 error "Must return error due to dropped pages, rc=$RC"
7065         fi
7066
7067         lctl set_param fail_loc=0x0
7068
7069         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7070         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7071         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7072                     grep -c writeback)
7073         if [[ $LOCKED -ne 0 ]]; then
7074                 error "Locked pages remain in cache, locked=$LOCKED"
7075         fi
7076
7077         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7078                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7079         fi
7080
7081         rm -f $DIR/$tfile
7082         echo "No pages locked after fsync"
7083
7084         reset_async
7085         return 0
7086 }
7087 run_test 118f "Simulate unrecoverable OSC side error =========="
7088
7089 test_118g() {
7090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7091         reset_async
7092
7093         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
7094         lctl set_param fail_loc=0x406
7095
7096         # simulate local -ENOMEM
7097         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7098         RC=$?
7099
7100         lctl set_param fail_loc=0
7101         if [[ $RC -eq 0 ]]; then
7102                 error "Must return error due to dropped pages, rc=$RC"
7103         fi
7104
7105         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7106         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7107         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7108                         grep -c writeback)
7109         if [[ $LOCKED -ne 0 ]]; then
7110                 error "Locked pages remain in cache, locked=$LOCKED"
7111         fi
7112
7113         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7114                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7115         fi
7116
7117         rm -f $DIR/$tfile
7118         echo "No pages locked after fsync"
7119
7120         reset_async
7121         return 0
7122 }
7123 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
7124
7125 test_118h() {
7126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7127         remote_ost_nodsh && skip "remote OST with nodsh" && return
7128
7129         reset_async
7130
7131         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7132         set_nodes_failloc "$(osts_nodes)" 0x20e
7133         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7134         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7135         RC=$?
7136
7137         set_nodes_failloc "$(osts_nodes)" 0
7138         if [[ $RC -eq 0 ]]; then
7139                 error "Must return error due to dropped pages, rc=$RC"
7140         fi
7141
7142         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7143         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7144         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7145                     grep -c writeback)
7146         if [[ $LOCKED -ne 0 ]]; then
7147                 error "Locked pages remain in cache, locked=$LOCKED"
7148         fi
7149
7150         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7151                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7152         fi
7153
7154         rm -f $DIR/$tfile
7155         echo "No pages locked after fsync"
7156
7157         return 0
7158 }
7159 run_test 118h "Verify timeout in handling recoverables errors  =========="
7160
7161 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7162
7163 test_118i() {
7164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7165         remote_ost_nodsh && skip "remote OST with nodsh" && return
7166
7167         reset_async
7168
7169         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7170         set_nodes_failloc "$(osts_nodes)" 0x20e
7171
7172         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7173         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7174         PID=$!
7175         sleep 5
7176         set_nodes_failloc "$(osts_nodes)" 0
7177
7178         wait $PID
7179         RC=$?
7180         if [[ $RC -ne 0 ]]; then
7181                 error "got error, but should be not, rc=$RC"
7182         fi
7183
7184         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7185         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7186         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7187         if [[ $LOCKED -ne 0 ]]; then
7188                 error "Locked pages remain in cache, locked=$LOCKED"
7189         fi
7190
7191         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7192                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7193         fi
7194
7195         rm -f $DIR/$tfile
7196         echo "No pages locked after fsync"
7197
7198         return 0
7199 }
7200 run_test 118i "Fix error before timeout in recoverable error  =========="
7201
7202 [ "$SLOW" = "no" ] && set_resend_count 4
7203
7204 test_118j() {
7205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7206         remote_ost_nodsh && skip "remote OST with nodsh" && return
7207
7208         reset_async
7209
7210         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7211         set_nodes_failloc "$(osts_nodes)" 0x220
7212
7213         # return -EIO from OST
7214         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7215         RC=$?
7216         set_nodes_failloc "$(osts_nodes)" 0x0
7217         if [[ $RC -eq 0 ]]; then
7218                 error "Must return error due to dropped pages, rc=$RC"
7219         fi
7220
7221         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7222         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7223         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7224         if [[ $LOCKED -ne 0 ]]; then
7225                 error "Locked pages remain in cache, locked=$LOCKED"
7226         fi
7227
7228         # in recoverable error on OST we want resend and stay until it finished
7229         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7230                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7231         fi
7232
7233         rm -f $DIR/$tfile
7234         echo "No pages locked after fsync"
7235
7236         return 0
7237 }
7238 run_test 118j "Simulate unrecoverable OST side error =========="
7239
7240 test_118k()
7241 {
7242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7243         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7244
7245         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7246         set_nodes_failloc "$(osts_nodes)" 0x20e
7247         test_mkdir -p $DIR/$tdir
7248
7249         for ((i=0;i<10;i++)); do
7250                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7251                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7252                 SLEEPPID=$!
7253                 sleep 0.500s
7254                 kill $SLEEPPID
7255                 wait $SLEEPPID
7256         done
7257
7258         set_nodes_failloc "$(osts_nodes)" 0
7259         rm -rf $DIR/$tdir
7260 }
7261 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7262
7263 test_118l()
7264 {
7265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7266         # LU-646
7267         test_mkdir -p $DIR/$tdir
7268         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7269         rm -rf $DIR/$tdir
7270 }
7271 run_test 118l "fsync dir ========="
7272
7273 test_118m() # LU-3066
7274 {
7275         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7276         test_mkdir -p $DIR/$tdir
7277         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7278         rm -rf $DIR/$tdir
7279 }
7280 run_test 118m "fdatasync dir ========="
7281
7282 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7283
7284 test_119a() # bug 11737
7285 {
7286         BSIZE=$((512 * 1024))
7287         directio write $DIR/$tfile 0 1 $BSIZE
7288         # We ask to read two blocks, which is more than a file size.
7289         # directio will indicate an error when requested and actual
7290         # sizes aren't equeal (a normal situation in this case) and
7291         # print actual read amount.
7292         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7293         if [ "$NOB" != "$BSIZE" ]; then
7294                 error "read $NOB bytes instead of $BSIZE"
7295         fi
7296         rm -f $DIR/$tfile
7297 }
7298 run_test 119a "Short directIO read must return actual read amount"
7299
7300 test_119b() # bug 11737
7301 {
7302         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7303
7304         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7305         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7306         sync
7307         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7308                 error "direct read failed"
7309         rm -f $DIR/$tfile
7310 }
7311 run_test 119b "Sparse directIO read must return actual read amount"
7312
7313 test_119c() # bug 13099
7314 {
7315         BSIZE=1048576
7316         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7317         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7318         rm -f $DIR/$tfile
7319 }
7320 run_test 119c "Testing for direct read hitting hole"
7321
7322 test_119d() # bug 15950
7323 {
7324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7325         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7326         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7327         BSIZE=1048576
7328         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7329         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7330         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7331         lctl set_param fail_loc=0x40d
7332         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7333         pid_dio=$!
7334         sleep 1
7335         cat $DIR/$tfile > /dev/null &
7336         lctl set_param fail_loc=0
7337         pid_reads=$!
7338         wait $pid_dio
7339         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7340         sleep 2
7341         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7342         error "the read rpcs have not completed in 2s"
7343         rm -f $DIR/$tfile
7344         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7345 }
7346 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7347
7348 test_120a() {
7349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7350         test_mkdir -p $DIR/$tdir
7351         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7352                skip "no early lock cancel on server" && return 0
7353
7354         lru_resize_disable mdc
7355         lru_resize_disable osc
7356         cancel_lru_locks mdc
7357         # asynchronous object destroy at MDT could cause bl ast to client
7358         cancel_lru_locks osc
7359
7360         stat $DIR/$tdir > /dev/null
7361         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7362         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7363         test_mkdir $DIR/$tdir/d1
7364         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7365         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7366         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7367         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7368         lru_resize_enable mdc
7369         lru_resize_enable osc
7370 }
7371 run_test 120a "Early Lock Cancel: mkdir test"
7372
7373 test_120b() {
7374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7375         test_mkdir -p $DIR/$tdir
7376         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7377                skip "no early lock cancel on server" && return 0
7378         lru_resize_disable mdc
7379         lru_resize_disable osc
7380         cancel_lru_locks mdc
7381         stat $DIR/$tdir > /dev/null
7382         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7383         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7384         touch $DIR/$tdir/f1
7385         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7386         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7387         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7388         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7389         lru_resize_enable mdc
7390         lru_resize_enable osc
7391 }
7392 run_test 120b "Early Lock Cancel: create test"
7393
7394 test_120c() {
7395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7396         test_mkdir -p $DIR/$tdir
7397         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7398                skip "no early lock cancel on server" && return 0
7399         lru_resize_disable mdc
7400         lru_resize_disable osc
7401         test_mkdir -p $DIR/$tdir/d1
7402         test_mkdir -p $DIR/$tdir/d2
7403         touch $DIR/$tdir/d1/f1
7404         cancel_lru_locks mdc
7405         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7406         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7407         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7408         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7409         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7410         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7411         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7412         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7413         lru_resize_enable mdc
7414         lru_resize_enable osc
7415 }
7416 run_test 120c "Early Lock Cancel: link test"
7417
7418 test_120d() {
7419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7420         test_mkdir -p $DIR/$tdir
7421         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7422                skip "no early lock cancel on server" && return 0
7423         lru_resize_disable mdc
7424         lru_resize_disable osc
7425         touch $DIR/$tdir
7426         cancel_lru_locks mdc
7427         stat $DIR/$tdir > /dev/null
7428         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7429         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7430         chmod a+x $DIR/$tdir
7431         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7432         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7433         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7434         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7435         lru_resize_enable mdc
7436         lru_resize_enable osc
7437 }
7438 run_test 120d "Early Lock Cancel: setattr test"
7439
7440 test_120e() {
7441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7442         test_mkdir -p $DIR/$tdir
7443         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7444                skip "no early lock cancel on server" && return 0
7445         lru_resize_disable mdc
7446         lru_resize_disable osc
7447         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7448         cancel_lru_locks mdc
7449         cancel_lru_locks osc
7450         dd if=$DIR/$tdir/f1 of=/dev/null
7451         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7452         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7453               awk '/ldlm_cancel/ {print $2}'`
7454         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7455               awk '/ldlm_bl_callback/ {print $2}'`
7456         unlink $DIR/$tdir/f1
7457         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7458               awk '/ldlm_cancel/ {print $2}'`
7459         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7460               awk '/ldlm_bl_callback/ {print $2}'`
7461         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7462         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7463         lru_resize_enable mdc
7464         lru_resize_enable osc
7465 }
7466 run_test 120e "Early Lock Cancel: unlink test"
7467
7468 test_120f() {
7469         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7470         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7471                skip "no early lock cancel on server" && return 0
7472         test_mkdir -p $DIR/$tdir
7473         lru_resize_disable mdc
7474         lru_resize_disable osc
7475         test_mkdir -p $DIR/$tdir/d1
7476         test_mkdir -p $DIR/$tdir/d2
7477         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7478         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7479         cancel_lru_locks mdc
7480         cancel_lru_locks osc
7481         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7482         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7483         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7484         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7485               awk '/ldlm_cancel/ {print $2}'`
7486         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7487               awk '/ldlm_bl_callback/ {print $2}'`
7488         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7489         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7490               awk '/ldlm_cancel/ {print $2}'`
7491         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7492               awk '/ldlm_bl_callback/ {print $2}'`
7493         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7494         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7495         lru_resize_enable mdc
7496         lru_resize_enable osc
7497 }
7498 run_test 120f "Early Lock Cancel: rename test"
7499
7500 test_120g() {
7501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7502         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7503                skip "no early lock cancel on server" && return 0
7504         lru_resize_disable mdc
7505         lru_resize_disable osc
7506         count=10000
7507         echo create $count files
7508         test_mkdir -p $DIR/$tdir
7509         cancel_lru_locks mdc
7510         cancel_lru_locks osc
7511         t0=`date +%s`
7512
7513         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7514               awk '/ldlm_cancel/ {print $2}'`
7515         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7516               awk '/ldlm_bl_callback/ {print $2}'`
7517         createmany -o $DIR/$tdir/f $count
7518         sync
7519         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7520               awk '/ldlm_cancel/ {print $2}'`
7521         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7522               awk '/ldlm_bl_callback/ {print $2}'`
7523         t1=`date +%s`
7524         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7525         echo rm $count files
7526         rm -r $DIR/$tdir
7527         sync
7528         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7529               awk '/ldlm_cancel/ {print $2}'`
7530         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7531               awk '/ldlm_bl_callback/ {print $2}'`
7532         t2=`date +%s`
7533         echo total: $count removes in $((t2-t1))
7534         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7535         sleep 2
7536         # wait for commitment of removal
7537         lru_resize_enable mdc
7538         lru_resize_enable osc
7539 }
7540 run_test 120g "Early Lock Cancel: performance test"
7541
7542 test_121() { #bug #10589
7543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7544         rm -rf $DIR/$tfile
7545         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7546 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7547         lctl set_param fail_loc=0x310
7548         cancel_lru_locks osc > /dev/null
7549         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7550         lctl set_param fail_loc=0
7551         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7552 }
7553 run_test 121 "read cancel race ========="
7554
7555 test_123a() { # was test 123, statahead(bug 11401)
7556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7557         SLOWOK=0
7558         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7559             log "testing on UP system. Performance may be not as good as expected."
7560                         SLOWOK=1
7561         fi
7562
7563         rm -rf $DIR/$tdir
7564         test_mkdir -p $DIR/$tdir
7565         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7566         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7567         MULT=10
7568         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7569                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7570
7571                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7572                 lctl set_param -n llite.*.statahead_max 0
7573                 lctl get_param llite.*.statahead_max
7574                 cancel_lru_locks mdc
7575                 cancel_lru_locks osc
7576                 stime=`date +%s`
7577                 time ls -l $DIR/$tdir | wc -l
7578                 etime=`date +%s`
7579                 delta=$((etime - stime))
7580                 log "ls $i files without statahead: $delta sec"
7581                 lctl set_param llite.*.statahead_max=$max
7582
7583                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7584                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7585                 cancel_lru_locks mdc
7586                 cancel_lru_locks osc
7587                 stime=`date +%s`
7588                 time ls -l $DIR/$tdir | wc -l
7589                 etime=`date +%s`
7590                 delta_sa=$((etime - stime))
7591                 log "ls $i files with statahead: $delta_sa sec"
7592                 lctl get_param -n llite.*.statahead_stats
7593                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7594
7595                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7596                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7597
7598                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7599                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7600                     lctl set_param -n llite.*.statahead_max 0
7601                     lctl get_param llite.*.statahead_max
7602                     cancel_lru_locks mdc
7603                     cancel_lru_locks osc
7604                     stime=`date +%s`
7605                     time ls -l $DIR/$tdir | wc -l
7606                     etime=`date +%s`
7607                     delta=$((etime - stime))
7608                     log "ls $i files again without statahead: $delta sec"
7609                     lctl set_param llite.*.statahead_max=$max
7610                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7611                         if [  $SLOWOK -eq 0 ]; then
7612                                 error "ls $i files is slower with statahead!"
7613                         else
7614                                 log "ls $i files is slower with statahead!"
7615                         fi
7616                         break
7617                     fi
7618                 fi
7619
7620                 [ $delta -gt 20 ] && break
7621                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7622                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7623         done
7624         log "ls done"
7625
7626         stime=`date +%s`
7627         rm -r $DIR/$tdir
7628         sync
7629         etime=`date +%s`
7630         delta=$((etime - stime))
7631         log "rm -r $DIR/$tdir/: $delta seconds"
7632         log "rm done"
7633         lctl get_param -n llite.*.statahead_stats
7634 }
7635 run_test 123a "verify statahead work"
7636
7637 test_123b () { # statahead(bug 15027)
7638         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7639         test_mkdir -p $DIR/$tdir
7640         createmany -o $DIR/$tdir/$tfile-%d 1000
7641
7642         cancel_lru_locks mdc
7643         cancel_lru_locks osc
7644
7645 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7646         lctl set_param fail_loc=0x80000803
7647         ls -lR $DIR/$tdir > /dev/null
7648         log "ls done"
7649         lctl set_param fail_loc=0x0
7650         lctl get_param -n llite.*.statahead_stats
7651         rm -r $DIR/$tdir
7652         sync
7653
7654 }
7655 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7656
7657 test_124a() {
7658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7659         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7660                skip "no lru resize on server" && return 0
7661         local NR=2000
7662         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7663
7664         log "create $NR files at $DIR/$tdir"
7665         createmany -o $DIR/$tdir/f $NR ||
7666                 error "failed to create $NR files in $DIR/$tdir"
7667
7668         cancel_lru_locks mdc
7669         ls -l $DIR/$tdir > /dev/null
7670
7671         local NSDIR=""
7672         local LRU_SIZE=0
7673         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7674                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7675                 LRU_SIZE=$(lctl get_param -n $PARAM)
7676                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7677                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7678                                                 log "NSDIR=$NSDIR"
7679                         log "NS=$(basename $NSDIR)"
7680                         break
7681                 fi
7682         done
7683
7684         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7685                 skip "Not enough cached locks created!"
7686                 return 0
7687         fi
7688         log "LRU=$LRU_SIZE"
7689
7690         local SLEEP=30
7691
7692         # We know that lru resize allows one client to hold $LIMIT locks
7693         # for 10h. After that locks begin to be killed by client.
7694         local MAX_HRS=10
7695         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7696                 log "LIMIT=$LIMIT"
7697
7698         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7699         # killing locks. Some time was spent for creating locks. This means
7700         # that up to the moment of sleep finish we must have killed some of
7701         # them (10-100 locks). This depends on how fast ther were created.
7702         # Many of them were touched in almost the same moment and thus will
7703         # be killed in groups.
7704         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7705
7706         # Use $LRU_SIZE_B here to take into account real number of locks
7707         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7708         local LRU_SIZE_B=$LRU_SIZE
7709         log "LVF=$LVF"
7710         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7711                 log "OLD_LVF=$OLD_LVF"
7712         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7713
7714         # Let's make sure that we really have some margin. Client checks
7715         # cached locks every 10 sec.
7716         SLEEP=$((SLEEP+20))
7717         log "Sleep ${SLEEP} sec"
7718         local SEC=0
7719         while ((SEC<$SLEEP)); do
7720                 echo -n "..."
7721                 sleep 5
7722                 SEC=$((SEC+5))
7723                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7724                 echo -n "$LRU_SIZE"
7725         done
7726         echo ""
7727         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7728         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7729
7730         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7731                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7732                 unlinkmany $DIR/$tdir/f $NR
7733                 return
7734         }
7735
7736         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7737         log "unlink $NR files at $DIR/$tdir"
7738         unlinkmany $DIR/$tdir/f $NR
7739 }
7740 run_test 124a "lru resize ======================================="
7741
7742 get_max_pool_limit()
7743 {
7744         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7745         local max=0
7746         for l in $limit; do
7747                 if test $l -gt $max; then
7748                         max=$l
7749                 fi
7750         done
7751         echo $max
7752 }
7753
7754 test_124b() {
7755         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7756         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7757                skip "no lru resize on server" && return 0
7758
7759         LIMIT=`get_max_pool_limit`
7760
7761         NR=$(($(default_lru_size)*20))
7762         if [ $NR -gt $LIMIT ]; then
7763                 log "Limit lock number by $LIMIT locks"
7764                 NR=$LIMIT
7765         fi
7766         lru_resize_disable mdc
7767         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7768                 error "failed to create $DIR/$tdir/disable_lru_resize"
7769
7770         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7771         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7772         cancel_lru_locks mdc
7773         stime=`date +%s`
7774         PID=""
7775         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7776         PID="$PID $!"
7777         sleep 2
7778         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7779         PID="$PID $!"
7780         sleep 2
7781         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7782         PID="$PID $!"
7783         wait $PID
7784         etime=`date +%s`
7785         nolruresize_delta=$((etime-stime))
7786         log "ls -la time: $nolruresize_delta seconds"
7787         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7788         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7789
7790         lru_resize_enable mdc
7791         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7792                 error "failed to create $DIR/$tdir/enable_lru_resize"
7793
7794         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7795         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7796         cancel_lru_locks mdc
7797         stime=`date +%s`
7798         PID=""
7799         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7800         PID="$PID $!"
7801         sleep 2
7802         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7803         PID="$PID $!"
7804         sleep 2
7805         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7806         PID="$PID $!"
7807         wait $PID
7808         etime=`date +%s`
7809         lruresize_delta=$((etime-stime))
7810         log "ls -la time: $lruresize_delta seconds"
7811         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7812
7813         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7814                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7815         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7816                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7817         else
7818                 log "lru resize performs the same with no lru resize"
7819         fi
7820         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7821 }
7822 run_test 124b "lru resize (performance test) ======================="
7823
7824 test_125() { # 13358
7825         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7826         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7827         test_mkdir -p $DIR/d125 || error "mkdir failed"
7828         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7829         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7830         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7831 }
7832 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7833
7834 test_126() { # bug 12829/13455
7835         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7836         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7837         $GSS && skip "must run as gss disabled" && return
7838
7839         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7840         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7841         rm -f $DIR/$tfile
7842         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7843 }
7844 run_test 126 "check that the fsgid provided by the client is taken into account"
7845
7846 test_127a() { # bug 15521
7847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7848         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7849         $LCTL set_param osc.*.stats=0
7850         FSIZE=$((2048 * 1024))
7851         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7852         cancel_lru_locks osc
7853         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7854
7855         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7856         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7857                 echo "got $COUNT $NAME"
7858                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7859                 eval $NAME=$COUNT || error "Wrong proc format"
7860
7861                 case $NAME in
7862                         read_bytes|write_bytes)
7863                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7864                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7865                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7866                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7867                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7868                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7869                                 error "sumsquare is too small: $SUMSQ"
7870                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7871                                 error "sumsquare is too big: $SUMSQ"
7872                         ;;
7873                         *) ;;
7874                 esac
7875         done < $DIR/${tfile}.tmp
7876
7877         #check that we actually got some stats
7878         [ "$read_bytes" ] || error "Missing read_bytes stats"
7879         [ "$write_bytes" ] || error "Missing write_bytes stats"
7880         [ "$read_bytes" != 0 ] || error "no read done"
7881         [ "$write_bytes" != 0 ] || error "no write done"
7882 }
7883 run_test 127a "verify the client stats are sane"
7884
7885 test_127b() { # bug LU-333
7886         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7887         $LCTL set_param llite.*.stats=0
7888         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7889         # perform 2 reads and writes so MAX is different from SUM.
7890         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7891         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7892         cancel_lru_locks osc
7893         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7894         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7895
7896         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7897         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7898                 echo "got $COUNT $NAME"
7899                 eval $NAME=$COUNT || error "Wrong proc format"
7900
7901         case $NAME in
7902                 read_bytes)
7903                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7904                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7905                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7906                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7907                         ;;
7908                 write_bytes)
7909                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7910                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7911                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7912                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7913                         ;;
7914                         *) ;;
7915                 esac
7916         done < $TMP/${tfile}.tmp
7917
7918         #check that we actually got some stats
7919         [ "$read_bytes" ] || error "Missing read_bytes stats"
7920         [ "$write_bytes" ] || error "Missing write_bytes stats"
7921         [ "$read_bytes" != 0 ] || error "no read done"
7922         [ "$write_bytes" != 0 ] || error "no write done"
7923 }
7924 run_test 127b "verify the llite client stats are sane"
7925
7926 test_128() { # bug 15212
7927         touch $DIR/$tfile
7928         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7929                 find $DIR/$tfile
7930                 find $DIR/$tfile
7931         EOF
7932
7933         result=$(grep error $TMP/$tfile.log)
7934         rm -f $DIR/$tfile
7935         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7936 }
7937 run_test 128 "interactive lfs for 2 consecutive find's"
7938
7939 set_dir_limits () {
7940         local mntdev
7941         local canondev
7942         local node
7943
7944         local LDPROC=/proc/fs/ldiskfs
7945         local facets=$(get_facets MDS)
7946
7947         for facet in ${facets//,/ }; do
7948                 canondev=$(ldiskfs_canon \
7949                            *.$(convert_facet2label $facet).mntdev $facet)
7950                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7951                                                 LDPROC=/sys/fs/ldiskfs
7952                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7953         done
7954 }
7955
7956 test_129() {
7957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7958         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7959                 skip "Only applicable to ldiskfs-based MDTs"
7960                 return
7961         fi
7962         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7963
7964         ENOSPC=28
7965         EFBIG=27
7966
7967         test_mkdir -p $DIR/$tdir
7968
7969         MAX=$(stat -c%s "$DIR/$tdir")
7970         set_dir_limits $MAX
7971         local I=0
7972         local J=0
7973         while [ ! $I -gt $MAX ]; do
7974                 $MULTIOP $DIR/$tdir/$J Oc
7975                 rc=$?
7976                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7977                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7978                 #and EFBIG for previous versions
7979                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7980                         set_dir_limits 0
7981                         echo "return code $rc received as expected"
7982                         multiop $DIR/$tdir/$J Oc
7983                         rc=$?
7984                         I=$(stat -c%s "$DIR/$tdir")
7985                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7986                                 return 0
7987                         else
7988                                 error_exit "return code $rc current dir size $I " \
7989                                            "previous limit $MAX"
7990                         fi
7991                 elif [ $rc -ne 0 ]; then
7992                         set_dir_limits 0
7993                         error_exit "return code $rc received instead of expected " \
7994                                    "$EFBIG or $ENOSPC, files in dir $I"
7995                 fi
7996                 J=$((J+1))
7997                 I=$(stat -c%s "$DIR/$tdir")
7998         done
7999
8000         set_dir_limits 0
8001         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
8002 }
8003 run_test 129 "test directory size limit ========================"
8004
8005 OLDIFS="$IFS"
8006 cleanup_130() {
8007         trap 0
8008         IFS="$OLDIFS"
8009 }
8010
8011 test_130a() {
8012         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8013         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8014                 return
8015
8016         trap cleanup_130 EXIT RETURN
8017
8018         local fm_file=$DIR/$tfile
8019         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
8020         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
8021                 error "dd failed for $fm_file"
8022
8023         # LU-1795: test filefrag/FIEMAP once, even if unsupported
8024         filefrag -ves $fm_file
8025         RC=$?
8026         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8027                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8028         [ $RC != 0 ] && error "filefrag $fm_file failed"
8029
8030         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8031                       grep -v "ext:" | grep -v "found")
8032         lun=$($GETSTRIPE -i $fm_file)
8033
8034         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
8035         IFS=$'\n'
8036         tot_len=0
8037         for line in $filefrag_op
8038         do
8039                 frag_lun=`echo $line | cut -d: -f5`
8040                 ext_len=`echo $line | cut -d: -f4`
8041                 if (( $frag_lun != $lun )); then
8042                         cleanup_130
8043                         error "FIEMAP on 1-stripe file($fm_file) failed"
8044                         return
8045                 fi
8046                 (( tot_len += ext_len ))
8047         done
8048
8049         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
8050                 cleanup_130
8051                 error "FIEMAP on 1-stripe file($fm_file) failed;"
8052                 return
8053         fi
8054
8055         cleanup_130
8056
8057         echo "FIEMAP on single striped file succeeded"
8058 }
8059 run_test 130a "FIEMAP (1-stripe file)"
8060
8061 test_130b() {
8062         [ "$OSTCOUNT" -lt "2" ] &&
8063                 skip_env "skipping FIEMAP on 2-stripe file test" && return
8064
8065         [ "$OSTCOUNT" -ge "10" ] &&
8066                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8067
8068         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8069         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
8070                 return
8071
8072         trap cleanup_130 EXIT RETURN
8073
8074         local fm_file=$DIR/$tfile
8075         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8076         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8077                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8078
8079         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
8080                 error "dd failed on $fm_file"
8081
8082         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8083         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
8084                       grep -v "ext:" | grep -v "found")
8085
8086         last_lun=$(echo $filefrag_op | cut -d: -f5)
8087
8088         IFS=$'\n'
8089         tot_len=0
8090         num_luns=1
8091         for line in $filefrag_op
8092         do
8093                 frag_lun=`echo $line | cut -d: -f5`
8094                 ext_len=`echo $line | cut -d: -f4`
8095                 if (( $frag_lun != $last_lun )); then
8096                         if (( tot_len != 1024 )); then
8097                                 cleanup_130
8098                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
8099                                 return
8100                         else
8101                                 (( num_luns += 1 ))
8102                                 tot_len=0
8103                         fi
8104                 fi
8105                 (( tot_len += ext_len ))
8106                 last_lun=$frag_lun
8107         done
8108         if (( num_luns != 2 || tot_len != 1024 )); then
8109                 cleanup_130
8110                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8111                 return
8112         fi
8113
8114         cleanup_130
8115
8116         echo "FIEMAP on 2-stripe file succeeded"
8117 }
8118 run_test 130b "FIEMAP (2-stripe file)"
8119
8120 test_130c() {
8121         [ "$OSTCOUNT" -lt "2" ] &&
8122                 skip_env "skipping FIEMAP on 2-stripe file" && return
8123
8124         [ "$OSTCOUNT" -ge "10" ] &&
8125                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8126
8127         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8128         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8129                 return
8130
8131         trap cleanup_130 EXIT RETURN
8132
8133         local fm_file=$DIR/$tfile
8134         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8135         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8136                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8137
8138         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8139
8140         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8141         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8142
8143         last_lun=`echo $filefrag_op | cut -d: -f5`
8144
8145         IFS=$'\n'
8146         tot_len=0
8147         num_luns=1
8148         for line in $filefrag_op
8149         do
8150                 frag_lun=`echo $line | cut -d: -f5`
8151                 ext_len=`echo $line | cut -d: -f4`
8152                 if (( $frag_lun != $last_lun )); then
8153                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8154                         if (( logical != 512 )); then
8155                                 cleanup_130
8156                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8157                                 return
8158                         fi
8159                         if (( tot_len != 512 )); then
8160                                 cleanup_130
8161                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8162                                 return
8163                         else
8164                                 (( num_luns += 1 ))
8165                                 tot_len=0
8166                         fi
8167                 fi
8168                 (( tot_len += ext_len ))
8169                 last_lun=$frag_lun
8170         done
8171         if (( num_luns != 2 || tot_len != 512 )); then
8172                 cleanup_130
8173                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8174                 return
8175         fi
8176
8177         cleanup_130
8178
8179         echo "FIEMAP on 2-stripe file with hole succeeded"
8180 }
8181 run_test 130c "FIEMAP (2-stripe file with hole)"
8182
8183 test_130d() {
8184         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8185
8186         [ "$OSTCOUNT" -ge "10" ] &&
8187                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8188
8189         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8190         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8191
8192         trap cleanup_130 EXIT RETURN
8193
8194         local fm_file=$DIR/$tfile
8195         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8196         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8197                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8198
8199         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8200         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8201                 error "dd failed on $fm_file"
8202
8203         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8204         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8205                 grep -v "ext:" | grep -v "found"`
8206
8207         last_lun=`echo $filefrag_op | cut -d: -f5`
8208
8209         IFS=$'\n'
8210         tot_len=0
8211         num_luns=1
8212         for line in $filefrag_op
8213         do
8214                 frag_lun=`echo $line | cut -d: -f5`
8215                 ext_len=`echo $line | cut -d: -f4`
8216                 if (( $frag_lun != $last_lun )); then
8217                         if (( tot_len != 1024 )); then
8218                                 cleanup_130
8219                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8220                                 return
8221                         else
8222                                 (( num_luns += 1 ))
8223                                 tot_len=0
8224                         fi
8225                 fi
8226                 (( tot_len += ext_len ))
8227                 last_lun=$frag_lun
8228         done
8229         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8230                 cleanup_130
8231                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8232                 return
8233         fi
8234
8235         cleanup_130
8236
8237         echo "FIEMAP on N-stripe file succeeded"
8238 }
8239 run_test 130d "FIEMAP (N-stripe file)"
8240
8241 test_130e() {
8242         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8243
8244         [ "$OSTCOUNT" -ge "10" ] &&
8245                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8246
8247         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8248         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8249
8250         trap cleanup_130 EXIT RETURN
8251
8252         local fm_file=$DIR/$tfile
8253         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8254         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8255                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8256
8257         NUM_BLKS=512
8258         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8259         for ((i = 0; i < $NUM_BLKS; i++))
8260         do
8261                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8262         done
8263
8264         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8265         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8266
8267         last_lun=`echo $filefrag_op | cut -d: -f5`
8268
8269         IFS=$'\n'
8270         tot_len=0
8271         num_luns=1
8272         for line in $filefrag_op
8273         do
8274                 frag_lun=`echo $line | cut -d: -f5`
8275                 ext_len=`echo $line | cut -d: -f4`
8276                 if (( $frag_lun != $last_lun )); then
8277                         if (( tot_len != $EXPECTED_LEN )); then
8278                                 cleanup_130
8279                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8280                                 return
8281                         else
8282                                 (( num_luns += 1 ))
8283                                 tot_len=0
8284                         fi
8285                 fi
8286                 (( tot_len += ext_len ))
8287                 last_lun=$frag_lun
8288         done
8289         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8290                 cleanup_130
8291                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8292                 return
8293         fi
8294
8295         cleanup_130
8296
8297         echo "FIEMAP with continuation calls succeeded"
8298 }
8299 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8300
8301 # Test for writev/readv
8302 test_131a() {
8303         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8304         error "writev test failed"
8305         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8306         error "readv failed"
8307         rm -f $DIR/$tfile
8308 }
8309 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8310
8311 test_131b() {
8312         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8313         error "append writev test failed"
8314         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8315         error "append writev test failed"
8316         rm -f $DIR/$tfile
8317 }
8318 run_test 131b "test append writev"
8319
8320 test_131c() {
8321         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8322         error "NOT PASS"
8323 }
8324 run_test 131c "test read/write on file w/o objects"
8325
8326 test_131d() {
8327         rwv -f $DIR/$tfile -w -n 1 1572864
8328         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8329         if [ "$NOB" != 1572864 ]; then
8330                 error "Short read filed: read $NOB bytes instead of 1572864"
8331         fi
8332         rm -f $DIR/$tfile
8333 }
8334 run_test 131d "test short read"
8335
8336 test_131e() {
8337         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8338         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8339         error "read hitting hole failed"
8340         rm -f $DIR/$tfile
8341 }
8342 run_test 131e "test read hitting hole"
8343
8344 get_ost_param() {
8345         local token=$1
8346         local gl_sum=0
8347         for node in $(osts_nodes); do
8348                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8349                 [ x$gl = x"" ] && gl=0
8350                 gl_sum=$((gl_sum + gl))
8351         done
8352         echo $gl_sum
8353 }
8354
8355 som_mode_switch() {
8356         local som=$1
8357         local gl1=$2
8358         local gl2=$3
8359
8360         if [ x$som = x"enabled" ]; then
8361                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8362                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8363                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8364         else
8365                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8366                 MOUNTOPT="$MOUNTOPT,som_preview"
8367                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8368         fi
8369
8370         # do remount to make new mount-conf parameters actual
8371         echo remounting...
8372         sync
8373         stopall
8374         setupall
8375 }
8376
8377 test_132() { #1028, SOM
8378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8379         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8380         local num=$(get_mds_dir $DIR)
8381         local mymds=mds${num}
8382         local MOUNTOPT_SAVE=$MOUNTOPT
8383
8384         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8385         cancel_lru_locks osc
8386
8387         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8388
8389         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8390         stat $DIR/$tfile >/dev/null
8391         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8392         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8393         rm $DIR/$tfile
8394         som_mode_switch $som1 $gl1 $gl2
8395
8396         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8397         cancel_lru_locks osc
8398
8399         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8400         if [ $som1 == $som2 ]; then
8401             error "som is still "$som2
8402             if [ x$som2 = x"enabled" ]; then
8403                 som2="disabled"
8404             else
8405                 som2="enabled"
8406             fi
8407         fi
8408
8409         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8410         stat $DIR/$tfile >/dev/null
8411         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8412         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8413         som_mode_switch $som2 $gl1 $gl2
8414         MOUNTOPT=$MOUNTOPT_SAVE
8415 }
8416 run_test 132 "som avoids glimpse rpc"
8417
8418 check_stats() {
8419         local res
8420         local count
8421         case $1 in
8422         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8423                  ;;
8424         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8425                  ;;
8426         *) error "Wrong argument $1" ;;
8427         esac
8428         echo $res
8429         count=`echo $res | awk '{print $2}'`
8430         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8431         # if the argument $3 is zero, it means any stat increment is ok.
8432         if [ $3 -gt 0 ] ; then
8433                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8434         fi
8435 }
8436
8437 test_133a() {
8438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8439         remote_ost_nodsh && skip "remote OST with nodsh" && return
8440         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8441
8442         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8443                 { skip "MDS doesn't support rename stats"; return; }
8444         local testdir=$DIR/${tdir}/stats_testdir
8445         mkdir -p $DIR/${tdir}
8446
8447         # clear stats.
8448         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8449         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8450
8451         # verify mdt stats first.
8452         mkdir ${testdir} || error "mkdir failed"
8453         check_stats $SINGLEMDS "mkdir" 1
8454         touch ${testdir}/${tfile} || "touch failed"
8455         check_stats $SINGLEMDS "open" 1
8456         check_stats $SINGLEMDS "close" 1
8457         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8458         check_stats $SINGLEMDS "mknod" 1
8459         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8460         check_stats $SINGLEMDS "unlink" 1
8461         rm -f ${testdir}/${tfile} || error "file remove failed"
8462         check_stats $SINGLEMDS "unlink" 2
8463
8464         # remove working dir and check mdt stats again.
8465         rmdir ${testdir} || error "rmdir failed"
8466         check_stats $SINGLEMDS "rmdir" 1
8467
8468         local testdir1=$DIR/${tdir}/stats_testdir1
8469         mkdir -p ${testdir}
8470         mkdir -p ${testdir1}
8471         touch ${testdir1}/test1
8472         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8473         check_stats $SINGLEMDS "crossdir_rename" 1
8474
8475         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8476         check_stats $SINGLEMDS "samedir_rename" 1
8477
8478         rm -rf $DIR/${tdir}
8479 }
8480 run_test 133a "Verifying MDT stats ========================================"
8481
8482 test_133b() {
8483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8484         remote_ost_nodsh && skip "remote OST with nodsh" && return
8485         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8486         local testdir=$DIR/${tdir}/stats_testdir
8487         mkdir -p ${testdir} || error "mkdir failed"
8488         touch ${testdir}/${tfile} || "touch failed"
8489         cancel_lru_locks mdc
8490
8491         # clear stats.
8492         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8493         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8494
8495         # extra mdt stats verification.
8496         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8497         check_stats $SINGLEMDS "setattr" 1
8498         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8499         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8500         then            # LU-1740
8501                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8502                 check_stats $SINGLEMDS "getattr" 1
8503         fi
8504         $LFS df || error "lfs failed"
8505         check_stats $SINGLEMDS "statfs" 1
8506
8507         rm -rf $DIR/${tdir}
8508 }
8509 run_test 133b "Verifying extra MDT stats =================================="
8510
8511 test_133c() {
8512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8513         remote_ost_nodsh && skip "remote OST with nodsh" && return
8514         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8515         local testdir=$DIR/${tdir}/stats_testdir
8516         test_mkdir -p ${testdir} || error "mkdir failed"
8517
8518         # verify obdfilter stats.
8519         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8520         sync
8521         cancel_lru_locks osc
8522         wait_delete_completed
8523
8524         # clear stats.
8525         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8526         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8527
8528         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8529         sync
8530         cancel_lru_locks osc
8531         check_stats ost "write" 1
8532
8533         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8534         check_stats ost "read" 1
8535
8536         > ${testdir}/${tfile} || error "truncate failed"
8537         check_stats ost "punch" 1
8538
8539         rm -f ${testdir}/${tfile} || error "file remove failed"
8540         wait_delete_completed
8541         check_stats ost "destroy" 1
8542
8543         rm -rf $DIR/${tdir}
8544 }
8545 run_test 133c "Verifying OST stats ========================================"
8546
8547 order_2() {
8548     local value=$1
8549     local orig=$value
8550     local order=1
8551
8552     while [ $value -ge 2 ]; do
8553         order=$((order*2))
8554         value=$((value/2))
8555     done
8556
8557     if [ $orig -gt $order ]; then
8558         order=$((order*2))
8559     fi
8560     echo $order
8561 }
8562
8563 size_in_KMGT() {
8564     local value=$1
8565     local size=('K' 'M' 'G' 'T');
8566     local i=0
8567     local size_string=$value
8568
8569     while [ $value -ge 1024 ]; do
8570         if [ $i -gt 3 ]; then
8571             #T is the biggest unit we get here, if that is bigger,
8572             #just return XXXT
8573             size_string=${value}T
8574             break
8575         fi
8576         value=$((value >> 10))
8577         if [ $value -lt 1024 ]; then
8578             size_string=${value}${size[$i]}
8579             break
8580         fi
8581         i=$((i + 1))
8582     done
8583
8584     echo $size_string
8585 }
8586
8587 get_rename_size() {
8588     local size=$1
8589     local context=${2:-.}
8590     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8591                 grep -A1 $context |
8592                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8593     echo $sample
8594 }
8595
8596 test_133d() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8598         remote_ost_nodsh && skip "remote OST with nodsh" && return
8599         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8600         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8601         { skip "MDS doesn't support rename stats"; return; }
8602
8603         local testdir1=$DIR/${tdir}/stats_testdir1
8604         local testdir2=$DIR/${tdir}/stats_testdir2
8605
8606         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8607
8608         mkdir -p ${testdir1} || error "mkdir failed"
8609         mkdir -p ${testdir2} || error "mkdir failed"
8610
8611         createmany -o $testdir1/test 512 || error "createmany failed"
8612
8613         # check samedir rename size
8614         mv ${testdir1}/test0 ${testdir1}/test_0
8615
8616         local testdir1_size=$(ls -l $DIR/${tdir} |
8617                 awk '/stats_testdir1/ {print $5}')
8618         local testdir2_size=$(ls -l $DIR/${tdir} |
8619                 awk '/stats_testdir2/ {print $5}')
8620
8621         testdir1_size=$(order_2 $testdir1_size)
8622         testdir2_size=$(order_2 $testdir2_size)
8623
8624         testdir1_size=$(size_in_KMGT $testdir1_size)
8625         testdir2_size=$(size_in_KMGT $testdir2_size)
8626
8627         echo "source rename dir size: ${testdir1_size}"
8628         echo "target rename dir size: ${testdir2_size}"
8629
8630         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8631         eval $cmd || error "$cmd failed"
8632         local samedir=$($cmd | grep 'same_dir')
8633         local same_sample=$(get_rename_size $testdir1_size)
8634         [ -z "$samedir" ] && error "samedir_rename_size count error"
8635         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8636         echo "Check same dir rename stats success"
8637
8638         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8639
8640         # check crossdir rename size
8641         mv ${testdir1}/test_0 ${testdir2}/test_0
8642
8643         testdir1_size=$(ls -l $DIR/${tdir} |
8644                 awk '/stats_testdir1/ {print $5}')
8645         testdir2_size=$(ls -l $DIR/${tdir} |
8646                 awk '/stats_testdir2/ {print $5}')
8647
8648         testdir1_size=$(order_2 $testdir1_size)
8649         testdir2_size=$(order_2 $testdir2_size)
8650
8651         testdir1_size=$(size_in_KMGT $testdir1_size)
8652         testdir2_size=$(size_in_KMGT $testdir2_size)
8653
8654         echo "source rename dir size: ${testdir1_size}"
8655         echo "target rename dir size: ${testdir2_size}"
8656
8657         eval $cmd || error "$cmd failed"
8658         local crossdir=$($cmd | grep 'crossdir')
8659         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8660         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8661         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8662         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8663         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8664         echo "Check cross dir rename stats success"
8665         rm -rf $DIR/${tdir}
8666 }
8667 run_test 133d "Verifying rename_stats ========================================"
8668
8669 test_133e() {
8670         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8671         local testdir=$DIR/${tdir}/stats_testdir
8672         local ctr f0 f1 bs=32768 count=42 sum
8673
8674         remote_ost_nodsh && skip "remote OST with nodsh" && return
8675         mkdir -p ${testdir} || error "mkdir failed"
8676
8677         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8678
8679         for ctr in {write,read}_bytes; do
8680                 sync
8681                 cancel_lru_locks osc
8682
8683                 do_facet ost1 $LCTL set_param -n \
8684                         "obdfilter.*.exports.clear=clear"
8685
8686                 if [ $ctr = write_bytes ]; then
8687                         f0=/dev/zero
8688                         f1=${testdir}/${tfile}
8689                 else
8690                         f0=${testdir}/${tfile}
8691                         f1=/dev/null
8692                 fi
8693
8694                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8695                         error "dd failed"
8696                 sync
8697                 cancel_lru_locks osc
8698
8699                 sum=$(do_facet ost1 $LCTL get_param \
8700                                 "obdfilter.*.exports.*.stats" | \
8701                           awk -v ctr=$ctr '\
8702                                 BEGIN { sum = 0 }
8703                                 $1 == ctr { sum += $7 }
8704                                 END { print sum }')
8705
8706                 if ((sum != bs * count)); then
8707                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8708                 fi
8709         done
8710
8711         rm -rf $DIR/${tdir}
8712 }
8713 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8714
8715 test_133f() {
8716         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8717         local facet
8718
8719         # First without trusting modes.
8720         find $proc_dirs \
8721                 -exec cat '{}' \; &> /dev/null
8722
8723         # Second verifying readability.
8724         find $proc_dirs \
8725                 -type f \
8726                 -readable \
8727                 -exec cat '{}' \; > /dev/null ||
8728                         error "proc file read failed"
8729
8730         for facet in $SINGLEMDS ost1; do
8731                 do_facet $facet find $proc_dirs \
8732                         -not -name req_history \
8733                         -exec cat '{}' \\\; &> /dev/null
8734
8735             do_facet $facet     find $proc_dirs \
8736                         -not -name req_history \
8737                         -type f \
8738                         -readable \
8739                         -exec cat '{}' \\\; > /dev/null ||
8740                                 error "proc file read failed"
8741         done
8742 }
8743 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8744
8745 test_140() { #bug-17379
8746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8747         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8748         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8749         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8750
8751         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8752         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8753         local i=0
8754         while i=`expr $i + 1`; do
8755                 test_mkdir -p $i || error "Creating dir $i"
8756                 cd $i || error "Changing to $i"
8757                 ln -s ../stat stat || error "Creating stat symlink"
8758                 # Read the symlink until ELOOP present,
8759                 # not LBUGing the system is considered success,
8760                 # we didn't overrun the stack.
8761                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8762                 [ $ret -ne 0 ] && {
8763                         if [ $ret -eq 40 ]; then
8764                                 break  # -ELOOP
8765                         else
8766                                 error "Open stat symlink"
8767                                 return
8768                         fi
8769                 }
8770         done
8771         i=`expr $i - 1`
8772         echo "The symlink depth = $i"
8773         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8774                                         error "Invalid symlink depth"
8775
8776         # Test recursive symlink
8777         ln -s symlink_self symlink_self
8778         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8779         echo "open symlink_self returns $ret"
8780         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8781 }
8782 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8783
8784 test_150() {
8785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8786         local TF="$TMP/$tfile"
8787
8788         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8789         cp $TF $DIR/$tfile
8790         cancel_lru_locks osc
8791         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8792         remount_client $MOUNT
8793         df -P $MOUNT
8794         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8795
8796         $TRUNCATE $TF 6000
8797         $TRUNCATE $DIR/$tfile 6000
8798         cancel_lru_locks osc
8799         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8800
8801         echo "12345" >>$TF
8802         echo "12345" >>$DIR/$tfile
8803         cancel_lru_locks osc
8804         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8805
8806         echo "12345" >>$TF
8807         echo "12345" >>$DIR/$tfile
8808         cancel_lru_locks osc
8809         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8810
8811         rm -f $TF
8812         true
8813 }
8814 run_test 150 "truncate/append tests"
8815
8816 #LU-2902 roc_hit was not able to read all values from lproc
8817 function roc_hit_init() {
8818         local list=$(comma_list $(osts_nodes))
8819         local dir=$DIR/$tdir-check
8820         local file=$dir/file
8821         local BEFORE
8822         local AFTER
8823         local idx
8824
8825         test_mkdir -p $dir
8826         #use setstripe to do a write to every ost
8827         for i in $(seq 0 $((OSTCOUNT-1))); do
8828                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8829                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8830                 idx=$(printf %04x $i)
8831                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8832                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8833                 if [ -z "$BEFORE" ]; then
8834                         BEFORE=0
8835                 fi
8836
8837                 cancel_lru_locks osc
8838                 cat $file >/dev/null
8839
8840                 AFTER=$(get_osd_param $list *OST*$idx stats |
8841                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8842
8843                 echo BEFORE:$BEFORE AFTER:$AFTER
8844                 if ! let "AFTER - BEFORE == 4"; then
8845                         rm -rf $dir
8846                         error "roc_hit is not safe to use"
8847                 fi
8848                 rm $file
8849         done
8850
8851         rm -rf $dir
8852 }
8853
8854 function roc_hit() {
8855         local list=$(comma_list $(osts_nodes))
8856         echo $(get_osd_param $list '' stats |
8857                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8858 }
8859
8860 function set_cache() {
8861         local on=1
8862
8863         if [ "$2" == "off" ]; then
8864                 on=0;
8865         fi
8866         local list=$(comma_list $(osts_nodes))
8867         set_osd_param $list '' $1_cache_enable $on
8868
8869         cancel_lru_locks osc
8870 }
8871
8872 test_151() {
8873         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8874         remote_ost_nodsh && skip "remote OST with nodsh" && return
8875
8876         local CPAGES=3
8877         local list=$(comma_list $(osts_nodes))
8878
8879         # check whether obdfilter is cache capable at all
8880         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8881                 echo "not cache-capable obdfilter"
8882                 return 0
8883         fi
8884
8885         # check cache is enabled on all obdfilters
8886         if get_osd_param $list '' read_cache_enable | grep 0; then
8887                 echo "oss cache is disabled"
8888                 return 0
8889         fi
8890
8891         set_osd_param $list '' writethrough_cache_enable 1
8892
8893         # check write cache is enabled on all obdfilters
8894         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8895                 echo "oss write cache is NOT enabled"
8896                 return 0
8897         fi
8898
8899         roc_hit_init
8900
8901         #define OBD_FAIL_OBD_NO_LRU  0x609
8902         do_nodes $list $LCTL set_param fail_loc=0x609
8903
8904         # pages should be in the case right after write
8905         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8906                 error "dd failed"
8907
8908         local BEFORE=$(roc_hit)
8909         cancel_lru_locks osc
8910         cat $DIR/$tfile >/dev/null
8911         local AFTER=$(roc_hit)
8912
8913         do_nodes $list $LCTL set_param fail_loc=0
8914
8915         if ! let "AFTER - BEFORE == CPAGES"; then
8916                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8917         fi
8918
8919         # the following read invalidates the cache
8920         cancel_lru_locks osc
8921         set_osd_param $list '' read_cache_enable 0
8922         cat $DIR/$tfile >/dev/null
8923
8924         # now data shouldn't be found in the cache
8925         BEFORE=$(roc_hit)
8926         cancel_lru_locks osc
8927         cat $DIR/$tfile >/dev/null
8928         AFTER=$(roc_hit)
8929         if let "AFTER - BEFORE != 0"; then
8930                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8931         fi
8932
8933         set_osd_param $list '' read_cache_enable 1
8934         rm -f $DIR/$tfile
8935 }
8936 run_test 151 "test cache on oss and controls ==============================="
8937
8938 test_152() {
8939         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8940         local TF="$TMP/$tfile"
8941
8942         # simulate ENOMEM during write
8943 #define OBD_FAIL_OST_NOMEM      0x226
8944         lctl set_param fail_loc=0x80000226
8945         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8946         cp $TF $DIR/$tfile
8947         sync || error "sync failed"
8948         lctl set_param fail_loc=0
8949
8950         # discard client's cache
8951         cancel_lru_locks osc
8952
8953         # simulate ENOMEM during read
8954         lctl set_param fail_loc=0x80000226
8955         cmp $TF $DIR/$tfile || error "cmp failed"
8956         lctl set_param fail_loc=0
8957
8958         rm -f $TF
8959 }
8960 run_test 152 "test read/write with enomem ============================"
8961
8962 test_153() {
8963         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8964 }
8965 run_test 153 "test if fdatasync does not crash ======================="
8966
8967 dot_lustre_fid_permission_check() {
8968         local fid=$1
8969         local ffid=$MOUNT/.lustre/fid/$fid
8970         local test_dir=$2
8971
8972         echo "stat fid $fid"
8973         stat $ffid > /dev/null || error "stat $ffid failed."
8974         echo "touch fid $fid"
8975         touch $ffid || error "touch $ffid failed."
8976         echo "write to fid $fid"
8977         cat /etc/hosts > $ffid || error "write $ffid failed."
8978         echo "read fid $fid"
8979         diff /etc/hosts $ffid || error "read $ffid failed."
8980         echo "append write to fid $fid"
8981         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8982         echo "rename fid $fid"
8983         mv $ffid $test_dir/$tfile.1 &&
8984                 error "rename $ffid to $tfile.1 should fail."
8985         touch $test_dir/$tfile.1
8986         mv $test_dir/$tfile.1 $ffid &&
8987                 error "rename $tfile.1 to $ffid should fail."
8988         rm -f $test_dir/$tfile.1
8989         echo "truncate fid $fid"
8990         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8991         echo "link fid $fid"
8992         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8993         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8994                 echo "setfacl fid $fid"
8995                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8996                 echo "getfacl fid $fid"
8997                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8998         fi
8999         echo "unlink fid $fid"
9000         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
9001         echo "mknod fid $fid"
9002         mknod $ffid c 1 3 && error "mknod $ffid should fail."
9003
9004         fid=[0xf00000400:0x1:0x0]
9005         ffid=$MOUNT/.lustre/fid/$fid
9006
9007         echo "stat non-exist fid $fid"
9008         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
9009         echo "write to non-exist fid $fid"
9010         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
9011         echo "link new fid $fid"
9012         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
9013
9014         mkdir -p $test_dir/$tdir
9015         touch $test_dir/$tdir/$tfile
9016         fid=$($LFS path2fid $test_dir/$tdir)
9017         rc=$?
9018         [ $rc -ne 0 ] &&
9019                 error "error: could not get fid for $test_dir/$dir/$tfile."
9020
9021         ffid=$MOUNT/.lustre/fid/$fid
9022
9023         echo "ls $fid"
9024         ls $ffid > /dev/null || error "ls $ffid failed."
9025         echo "touch $fid/$tfile.1"
9026         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
9027
9028         echo "touch $MOUNT/.lustre/fid/$tfile"
9029         touch $MOUNT/.lustre/fid/$tfile && \
9030                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
9031
9032         echo "setxattr to $MOUNT/.lustre/fid"
9033         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
9034
9035         echo "listxattr for $MOUNT/.lustre/fid"
9036         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
9037
9038         echo "delxattr from $MOUNT/.lustre/fid"
9039         setfattr -x trusted.name1 $MOUNT/.lustre/fid
9040
9041         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
9042         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
9043                 error "touch invalid fid should fail."
9044
9045         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
9046         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
9047                 error "touch non-normal fid should fail."
9048
9049         echo "rename $tdir to $MOUNT/.lustre/fid"
9050         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
9051                 error "rename to $MOUNT/.lustre/fid should fail."
9052
9053         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
9054         then            # LU-3547
9055                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
9056                 local new_obf_mode=777
9057
9058                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
9059                 chmod $new_obf_mode $DIR/.lustre/fid ||
9060                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
9061
9062                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
9063                 [ $obf_mode -eq $new_obf_mode ] ||
9064                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
9065
9066                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
9067                 chmod $old_obf_mode $DIR/.lustre/fid ||
9068                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
9069         fi
9070
9071         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
9072         fid=$($LFS path2fid $test_dir/$tfile-2)
9073         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
9074         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
9075                 error "create lov data thru .lustre should fail."
9076         echo "cp /etc/passwd $test_dir/$tfile-2"
9077         cp /etc/passwd $test_dir/$tfile-2 ||
9078                 error "copy to $test_dir/$tfile-2 failed."
9079         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
9080         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
9081                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
9082
9083         rm -rf $test_dir/tfile.lnk
9084         rm -rf $test_dir/$tfile-2
9085 }
9086
9087 test_154A() {
9088         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9089                 skip "Need MDS version at least 2.4.1" && return
9090
9091         touch $DIR/$tfile
9092         local FID=$($LFS path2fid $DIR/$tfile)
9093         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
9094
9095         # check that we get the same pathname back
9096         local FOUND=$($LFS fid2path $MOUNT $FID)
9097         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
9098         [ "$FOUND" != "$DIR/$tfile" ] &&
9099                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
9100
9101         rm -rf $DIR/$tfile
9102 }
9103 run_test 154A "lfs path2fid and fid2path basic checks"
9104
9105 test_154a() {
9106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9107         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9108                 { skip "Need MDS version at least 2.2.51"; return 0; }
9109
9110         cp /etc/hosts $DIR/$tfile
9111
9112         fid=$($LFS path2fid $DIR/$tfile)
9113         rc=$?
9114         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
9115
9116         dot_lustre_fid_permission_check "$fid" $DIR ||
9117                 error "dot lustre permission check $fid failed"
9118
9119         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
9120
9121         touch $MOUNT/.lustre/file &&
9122                 error "creation is not allowed under .lustre"
9123
9124         mkdir $MOUNT/.lustre/dir &&
9125                 error "mkdir is not allowed under .lustre"
9126
9127         rm -rf $DIR/$tfile
9128 }
9129 run_test 154a "Open-by-FID"
9130
9131 test_154b() {
9132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9133         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9134                 { skip "Need MDS version at least 2.2.51"; return 0; }
9135
9136         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9137
9138         local remote_dir=$DIR/$tdir/remote_dir
9139         local MDTIDX=1
9140         local rc=0
9141
9142         mkdir -p $DIR/$tdir
9143         $LFS mkdir -i $MDTIDX $remote_dir ||
9144                 error "create remote directory failed"
9145
9146         cp /etc/hosts $remote_dir/$tfile
9147
9148         fid=$($LFS path2fid $remote_dir/$tfile)
9149         rc=$?
9150         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9151
9152         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9153                 error "dot lustre permission check $fid failed"
9154         rm -rf $DIR/$tdir
9155 }
9156 run_test 154b "Open-by-FID for remote directory"
9157
9158 test_154c() {
9159         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9160                 skip "Need MDS version at least 2.4.1" && return
9161
9162         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9163         local FID1=$($LFS path2fid $DIR/$tfile.1)
9164         local FID2=$($LFS path2fid $DIR/$tfile.2)
9165         local FID3=$($LFS path2fid $DIR/$tfile.3)
9166
9167         local N=1
9168         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9169                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9170                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9171                 local want=FID$N
9172                 [ "$FID" = "${!want}" ] ||
9173                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9174                 N=$((N + 1))
9175         done
9176
9177         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9178                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9179                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9180                 N=$((N + 1))
9181         done
9182 }
9183 run_test 154c "lfs path2fid and fid2path multiple arguments"
9184
9185 test_155_small_load() {
9186     local temp=$TMP/$tfile
9187     local file=$DIR/$tfile
9188
9189     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9190         error "dd of=$temp bs=6096 count=1 failed"
9191     cp $temp $file
9192     cancel_lru_locks osc
9193     cmp $temp $file || error "$temp $file differ"
9194
9195     $TRUNCATE $temp 6000
9196     $TRUNCATE $file 6000
9197     cmp $temp $file || error "$temp $file differ (truncate1)"
9198
9199     echo "12345" >>$temp
9200     echo "12345" >>$file
9201     cmp $temp $file || error "$temp $file differ (append1)"
9202
9203     echo "12345" >>$temp
9204     echo "12345" >>$file
9205     cmp $temp $file || error "$temp $file differ (append2)"
9206
9207     rm -f $temp $file
9208     true
9209 }
9210
9211 test_155_big_load() {
9212     remote_ost_nodsh && skip "remote OST with nodsh" && return
9213     local temp=$TMP/$tfile
9214     local file=$DIR/$tfile
9215
9216     free_min_max
9217     local cache_size=$(do_facet ost$((MAXI+1)) \
9218         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9219     local large_file_size=$((cache_size * 2))
9220
9221     echo "OSS cache size: $cache_size KB"
9222     echo "Large file size: $large_file_size KB"
9223
9224     [ $MAXV -le $large_file_size ] && \
9225         skip_env "max available OST size needs > $large_file_size KB" && \
9226         return 0
9227
9228     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9229
9230     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9231         error "dd of=$temp bs=$large_file_size count=1k failed"
9232     cp $temp $file
9233     ls -lh $temp $file
9234     cancel_lru_locks osc
9235     cmp $temp $file || error "$temp $file differ"
9236
9237     rm -f $temp $file
9238     true
9239 }
9240
9241 test_155a() {
9242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9243         set_cache read on
9244         set_cache writethrough on
9245         test_155_small_load
9246 }
9247 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9248
9249 test_155b() {
9250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9251         set_cache read on
9252         set_cache writethrough off
9253         test_155_small_load
9254 }
9255 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9256
9257 test_155c() {
9258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9259         set_cache read off
9260         set_cache writethrough on
9261         test_155_small_load
9262 }
9263 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9264
9265 test_155d() {
9266         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9267         set_cache read off
9268         set_cache writethrough off
9269         test_155_small_load
9270 }
9271 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9272
9273 test_155e() {
9274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9275         set_cache read on
9276         set_cache writethrough on
9277         test_155_big_load
9278 }
9279 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9280
9281 test_155f() {
9282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9283         set_cache read on
9284         set_cache writethrough off
9285         test_155_big_load
9286 }
9287 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9288
9289 test_155g() {
9290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9291         set_cache read off
9292         set_cache writethrough on
9293         test_155_big_load
9294 }
9295 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9296
9297 test_155h() {
9298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9299         set_cache read off
9300         set_cache writethrough off
9301         test_155_big_load
9302 }
9303 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9304
9305 test_156() {
9306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9307         local CPAGES=3
9308         local BEFORE
9309         local AFTER
9310         local file="$DIR/$tfile"
9311
9312         [ "$(facet_fstype ost1)" = "zfs" ] &&
9313                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9314                 return
9315
9316         roc_hit_init
9317
9318     log "Turn on read and write cache"
9319     set_cache read on
9320     set_cache writethrough on
9321
9322     log "Write data and read it back."
9323     log "Read should be satisfied from the cache."
9324     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9325     BEFORE=`roc_hit`
9326     cancel_lru_locks osc
9327     cat $file >/dev/null
9328     AFTER=`roc_hit`
9329     if ! let "AFTER - BEFORE == CPAGES"; then
9330         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9331     else
9332         log "cache hits:: before: $BEFORE, after: $AFTER"
9333     fi
9334
9335     log "Read again; it should be satisfied from the cache."
9336     BEFORE=$AFTER
9337     cancel_lru_locks osc
9338     cat $file >/dev/null
9339     AFTER=`roc_hit`
9340     if ! let "AFTER - BEFORE == CPAGES"; then
9341         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9342     else
9343         log "cache hits:: before: $BEFORE, after: $AFTER"
9344     fi
9345
9346
9347     log "Turn off the read cache and turn on the write cache"
9348     set_cache read off
9349     set_cache writethrough on
9350
9351     log "Read again; it should be satisfied from the cache."
9352     BEFORE=`roc_hit`
9353     cancel_lru_locks osc
9354     cat $file >/dev/null
9355     AFTER=`roc_hit`
9356     if ! let "AFTER - BEFORE == CPAGES"; then
9357         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9358     else
9359         log "cache hits:: before: $BEFORE, after: $AFTER"
9360     fi
9361
9362     log "Read again; it should not be satisfied from the cache."
9363     BEFORE=$AFTER
9364     cancel_lru_locks osc
9365     cat $file >/dev/null
9366     AFTER=`roc_hit`
9367     if ! let "AFTER - BEFORE == 0"; then
9368         error "IN CACHE: before: $BEFORE, after: $AFTER"
9369     else
9370         log "cache hits:: before: $BEFORE, after: $AFTER"
9371     fi
9372
9373     log "Write data and read it back."
9374     log "Read should be satisfied from the cache."
9375     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9376     BEFORE=`roc_hit`
9377     cancel_lru_locks osc
9378     cat $file >/dev/null
9379     AFTER=`roc_hit`
9380     if ! let "AFTER - BEFORE == CPAGES"; then
9381         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9382     else
9383         log "cache hits:: before: $BEFORE, after: $AFTER"
9384     fi
9385
9386     log "Read again; it should not be satisfied from the cache."
9387     BEFORE=$AFTER
9388     cancel_lru_locks osc
9389     cat $file >/dev/null
9390     AFTER=`roc_hit`
9391     if ! let "AFTER - BEFORE == 0"; then
9392         error "IN CACHE: before: $BEFORE, after: $AFTER"
9393     else
9394         log "cache hits:: before: $BEFORE, after: $AFTER"
9395     fi
9396
9397
9398     log "Turn off read and write cache"
9399     set_cache read off
9400     set_cache writethrough off
9401
9402     log "Write data and read it back"
9403     log "It should not be satisfied from the cache."
9404     rm -f $file
9405     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9406     cancel_lru_locks osc
9407     BEFORE=`roc_hit`
9408     cat $file >/dev/null
9409     AFTER=`roc_hit`
9410         if ! let "AFTER - BEFORE == 0"; then
9411                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9412         else
9413                 log "cache hits:: before: $BEFORE, after: $AFTER"
9414         fi
9415
9416     log "Turn on the read cache and turn off the write cache"
9417     set_cache read on
9418     set_cache writethrough off
9419
9420     log "Write data and read it back"
9421     log "It should not be satisfied from the cache."
9422     rm -f $file
9423     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9424     BEFORE=`roc_hit`
9425     cancel_lru_locks osc
9426     cat $file >/dev/null
9427     AFTER=`roc_hit`
9428         if ! let "AFTER - BEFORE == 0"; then
9429                 error_ignore bz20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9430         else
9431                 log "cache hits:: before: $BEFORE, after: $AFTER"
9432         fi
9433
9434     log "Read again; it should be satisfied from the cache."
9435     BEFORE=`roc_hit`
9436     cancel_lru_locks osc
9437     cat $file >/dev/null
9438     AFTER=`roc_hit`
9439     if ! let "AFTER - BEFORE == CPAGES"; then
9440         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9441     else
9442         log "cache hits:: before: $BEFORE, after: $AFTER"
9443     fi
9444
9445     rm -f $file
9446 }
9447 run_test 156 "Verification of tunables ============================"
9448
9449 #Changelogs
9450 err17935 () {
9451         if [ $MDSCOUNT -gt 1 ]; then
9452                 error_ignore bz17935 $*
9453         else
9454                 error $*
9455         fi
9456 }
9457
9458 changelog_chmask()
9459 {
9460         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9461
9462         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9463
9464         if [ $MASK -eq 1 ]; then
9465                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9466         else
9467                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9468         fi
9469 }
9470
9471 changelog_extract_field() {
9472         local mdt=$1
9473         local cltype=$2
9474         local file=$3
9475         local identifier=$4
9476
9477         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9478                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9479                 tail -1
9480 }
9481
9482 test_160a() {
9483         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9485         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9486                 { skip "Need MDS version at least 2.2.0"; return; }
9487
9488         local CL_USERS="mdd.$MDT0.changelog_users"
9489         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9490         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9491         echo "Registered as changelog user $USER"
9492         $GET_CL_USERS | grep -q $USER ||
9493                 error "User $USER not found in changelog_users"
9494
9495         # change something
9496         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9497         touch $DIR/$tdir/pics/2008/zachy/timestamp
9498         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9499         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9500         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9501         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9502         rm $DIR/$tdir/pics/desktop.jpg
9503
9504         $LFS changelog $MDT0 | tail -5
9505
9506         echo "verifying changelog mask"
9507         changelog_chmask "MKDIR"
9508         changelog_chmask "CLOSE"
9509
9510         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9511         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9512
9513         changelog_chmask "MKDIR"
9514         changelog_chmask "CLOSE"
9515
9516         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9517         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9518
9519         $LFS changelog $MDT0
9520         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9521         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9522         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9523         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9524
9525         # verify contents
9526         echo "verifying target fid"
9527         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9528         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9529         [ "$fidc" == "$fidf" ] ||
9530                 err17935 "fid in changelog $fidc != file fid $fidf"
9531         echo "verifying parent fid"
9532         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9533         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9534         [ "$fidc" == "$fidf" ] ||
9535                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9536
9537         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9538         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9539         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9540         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9541         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9542                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9543
9544         MIN_REC=$($GET_CL_USERS |
9545                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9546         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9547         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9548         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9549                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9550
9551         # LU-3446 changelog index reset on MDT restart
9552         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9553         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9554         $LFS changelog_clear $MDT0 $USER 0
9555         stop $SINGLEMDS || error "Fail to stop MDT."
9556         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9557         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9558         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9559         [ $CUR_REC1 == $CUR_REC2 ] ||
9560                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9561
9562         echo "verifying user deregister"
9563         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9564         $GET_CL_USERS | grep -q $USER &&
9565                 error "User $USER still in changelog_users"
9566
9567         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9568         if [ $USERS -eq 0 ]; then
9569                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9570                 touch $DIR/$tdir/chloe
9571                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9572                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9573                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9574         else
9575                 echo "$USERS other changelog users; can't verify off"
9576         fi
9577 }
9578 run_test 160a "changelog sanity"
9579
9580 test_160b() { # LU-3587
9581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9582         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9583         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9584                 { skip "Need MDS version at least 2.2.0"; return; }
9585
9586         local CL_USERS="mdd.$MDT0.changelog_users"
9587         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9588         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9589         echo "Registered as changelog user $USER"
9590         $GET_CL_USERS | grep -q $USER ||
9591                 error "User $USER not found in changelog_users"
9592
9593         local LONGNAME1=$(str_repeat a 255)
9594         local LONGNAME2=$(str_repeat b 255)
9595
9596         cd $DIR
9597         echo "creating very long named file"
9598         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9599         echo "moving very long named file"
9600         mv $LONGNAME1 $LONGNAME2
9601
9602         $LFS changelog $MDT0 | grep RENME
9603
9604         echo "deregistering $USER"
9605         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9606
9607         rm -f $LONGNAME2
9608 }
9609 run_test 160b "Verify that very long rename doesn't crash in changelog"
9610
9611 test_161a() {
9612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9613     test_mkdir -p $DIR/$tdir
9614     cp /etc/hosts $DIR/$tdir/$tfile
9615     test_mkdir $DIR/$tdir/foo1
9616     test_mkdir $DIR/$tdir/foo2
9617     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9618     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9619     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9620     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9621         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9622         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9623                 $LFS fid2path $DIR $FID
9624                 err17935 "bad link ea"
9625         fi
9626     # middle
9627     rm $DIR/$tdir/foo2/zachary
9628     # last
9629     rm $DIR/$tdir/foo2/thor
9630     # first
9631     rm $DIR/$tdir/$tfile
9632     # rename
9633     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9634     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9635         then
9636         $LFS fid2path $DIR $FID
9637         err17935 "bad link rename"
9638     fi
9639     rm $DIR/$tdir/foo2/maggie
9640
9641     # overflow the EA
9642     local longname=filename_avg_len_is_thirty_two_
9643     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9644         error "failed to hardlink many files"
9645     links=$($LFS fid2path $DIR $FID | wc -l)
9646     echo -n "${links}/1000 links in link EA"
9647     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9648     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9649         error "failed to unlink many hardlinks"
9650 }
9651 run_test 161a "link ea sanity"
9652
9653 test_161b() {
9654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9655         [ $MDSCOUNT -lt 2 ] &&
9656                 skip "skipping remote directory test" && return
9657         local MDTIDX=1
9658         local remote_dir=$DIR/$tdir/remote_dir
9659
9660         mkdir -p $DIR/$tdir
9661         $LFS mkdir -i $MDTIDX $remote_dir ||
9662                 error "create remote directory failed"
9663
9664         cp /etc/hosts $remote_dir/$tfile
9665         mkdir -p $remote_dir/foo1
9666         mkdir -p $remote_dir/foo2
9667         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9668         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9669         ln $remote_dir/$tfile $remote_dir/foo1/luna
9670         ln $remote_dir/$tfile $remote_dir/foo2/thor
9671
9672         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9673                      tr -d ']')
9674         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9675                 $LFS fid2path $DIR $FID
9676                 err17935 "bad link ea"
9677         fi
9678         # middle
9679         rm $remote_dir/foo2/zachary
9680         # last
9681         rm $remote_dir/foo2/thor
9682         # first
9683         rm $remote_dir/$tfile
9684         # rename
9685         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9686         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9687         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9688                 $LFS fid2path $DIR $FID
9689                 err17935 "bad link rename"
9690         fi
9691         rm $remote_dir/foo2/maggie
9692
9693         # overflow the EA
9694         local longname=filename_avg_len_is_thirty_two_
9695         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9696                 error "failed to hardlink many files"
9697         links=$($LFS fid2path $DIR $FID | wc -l)
9698         echo -n "${links}/1000 links in link EA"
9699         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9700         unlinkmany $remote_dir/foo2/$longname 1000 ||
9701         error "failed to unlink many hardlinks"
9702 }
9703 run_test 161b "link ea sanity under remote directory"
9704
9705 test_161c() {
9706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9707         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9708                 skip "Need MDS version at least 2.1.5" && return
9709
9710         # define CLF_RENAME_LAST 0x0001
9711         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9712         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9713                 changelog_register -n)
9714         rm -rf $DIR/$tdir
9715         mkdir -p $DIR/$tdir
9716         touch $DIR/$tdir/foo_161c
9717         touch $DIR/$tdir/bar_161c
9718         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9719         $LFS changelog $MDT0 | grep RENME
9720         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9721                 cut -f5 -d' ')
9722         $LFS changelog_clear $MDT0 $USER 0
9723         if [ x$flags != "x0x1" ]; then
9724                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9725                         $USER
9726                 error "flag $flags is not 0x1"
9727         fi
9728         echo "rename overwrite a target having nlink = 1," \
9729                 "changelog record has flags of $flags"
9730
9731         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9732         touch $DIR/$tdir/foo_161c
9733         touch $DIR/$tdir/bar_161c
9734         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9735         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9736         $LFS changelog $MDT0 | grep RENME
9737         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9738         $LFS changelog_clear $MDT0 $USER 0
9739         if [ x$flags != "x0x0" ]; then
9740                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9741                         $USER
9742                 error "flag $flags is not 0x0"
9743         fi
9744         echo "rename overwrite a target having nlink > 1," \
9745                 "changelog record has flags of $flags"
9746
9747         # rename doesn't overwrite a target (changelog flag 0x0)
9748         touch $DIR/$tdir/foo_161c
9749         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9750         $LFS changelog $MDT0 | grep RENME
9751         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9752         $LFS changelog_clear $MDT0 $USER 0
9753         if [ x$flags != "x0x0" ]; then
9754                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9755                         $USER
9756                 error "flag $flags is not 0x0"
9757         fi
9758         echo "rename doesn't overwrite a target," \
9759                 "changelog record has flags of $flags"
9760
9761         # define CLF_UNLINK_LAST 0x0001
9762         # unlink a file having nlink = 1 (changelog flag 0x1)
9763         rm -f $DIR/$tdir/foo2_161c
9764         $LFS changelog $MDT0 | grep UNLNK
9765         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9766         $LFS changelog_clear $MDT0 $USER 0
9767         if [ x$flags != "x0x1" ]; then
9768                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9769                         $USER
9770                 error "flag $flags is not 0x1"
9771         fi
9772         echo "unlink a file having nlink = 1," \
9773                 "changelog record has flags of $flags"
9774
9775         # unlink a file having nlink > 1 (changelog flag 0x0)
9776         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9777         rm -f $DIR/$tdir/foobar_161c
9778         $LFS changelog $MDT0 | grep UNLNK
9779         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9780         $LFS changelog_clear $MDT0 $USER 0
9781         if [ x$flags != "x0x0" ]; then
9782                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9783                         $USER
9784                 error "flag $flags is not 0x0"
9785         fi
9786         echo "unlink a file having nlink > 1," \
9787                 "changelog record has flags of $flags"
9788         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9789 }
9790 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9791
9792 check_path() {
9793     local expected=$1
9794     shift
9795     local fid=$2
9796
9797     local path=$(${LFS} fid2path $*)
9798     RC=$?
9799
9800     if [ $RC -ne 0 ]; then
9801         err17935 "path looked up of $expected failed. Error $RC"
9802         return $RC
9803     elif [ "${path}" != "${expected}" ]; then
9804         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9805         return 2
9806     fi
9807     echo "fid $fid resolves to path $path (expected $expected)"
9808 }
9809
9810 test_162() {
9811         # Make changes to filesystem
9812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9813         test_mkdir -p $DIR/$tdir/d2
9814         touch $DIR/$tdir/d2/$tfile
9815         touch $DIR/$tdir/d2/x1
9816         touch $DIR/$tdir/d2/x2
9817         test_mkdir -p $DIR/$tdir/d2/a/b/c
9818         test_mkdir -p $DIR/$tdir/d2/p/q/r
9819         # regular file
9820         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9821         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9822
9823         # softlink
9824         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9825         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9826         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9827
9828         # softlink to wrong file
9829         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9830         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9831         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9832
9833         # hardlink
9834         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9835         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9836         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9837         # fid2path dir/fsname should both work
9838         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9839         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9840
9841         # hardlink count: check that there are 2 links
9842         # Doesnt work with CMD yet: 17935
9843         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9844                 err17935 "expected 2 links"
9845
9846         # hardlink indexing: remove the first link
9847         rm $DIR/$tdir/d2/p/q/r/hlink
9848         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9849
9850         return 0
9851 }
9852 run_test 162 "path lookup sanity"
9853
9854 test_169() {
9855         # do directio so as not to populate the page cache
9856         log "creating a 10 Mb file"
9857         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9858         log "starting reads"
9859         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9860         log "truncating the file"
9861         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9862         log "killing dd"
9863         kill %+ || true # reads might have finished
9864         echo "wait until dd is finished"
9865         wait
9866         log "removing the temporary file"
9867         rm -rf $DIR/$tfile || error "tmp file removal failed"
9868 }
9869 run_test 169 "parallel read and truncate should not deadlock"
9870
9871 test_170() {
9872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9873         $LCTL clear     # bug 18514
9874         $LCTL debug_daemon start $TMP/${tfile}_log_good
9875         touch $DIR/$tfile
9876         $LCTL debug_daemon stop
9877         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9878                error "sed failed to read log_good"
9879
9880         $LCTL debug_daemon start $TMP/${tfile}_log_good
9881         rm -rf $DIR/$tfile
9882         $LCTL debug_daemon stop
9883
9884         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9885                error "lctl df log_bad failed"
9886
9887         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9888         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9889
9890         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9891         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9892
9893         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9894                 error "bad_line good_line1 good_line2 are empty"
9895
9896         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9897         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9898         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9899
9900         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9901         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9902         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9903
9904         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9905                 error "bad_line_new good_line_new are empty"
9906
9907         local expected_good=$((good_line1 + good_line2*2))
9908
9909         rm -f $TMP/${tfile}*
9910         # LU-231, short malformed line may not be counted into bad lines
9911         if [ $bad_line -ne $bad_line_new ] &&
9912                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9913                 error "expected $bad_line bad lines, but got $bad_line_new"
9914                 return 1
9915         fi
9916
9917         if [ $expected_good -ne $good_line_new ]; then
9918                 error "expected $expected_good good lines, but got $good_line_new"
9919                 return 2
9920         fi
9921         true
9922 }
9923 run_test 170 "test lctl df to handle corrupted log ====================="
9924
9925 test_171() { # bug20592
9926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9927 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9928         $LCTL set_param fail_loc=0x50e
9929         $LCTL set_param fail_val=3000
9930         multiop_bg_pause $DIR/$tfile O_s || true
9931         local MULTIPID=$!
9932         kill -USR1 $MULTIPID
9933         # cause log dump
9934         sleep 3
9935         wait $MULTIPID
9936         if dmesg | grep "recursive fault"; then
9937                 error "caught a recursive fault"
9938         fi
9939         $LCTL set_param fail_loc=0
9940         true
9941 }
9942 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9943
9944 # it would be good to share it with obdfilter-survey/libecho code
9945 setup_obdecho_osc () {
9946         local rc=0
9947         local ost_nid=$1
9948         local obdfilter_name=$2
9949         echo "Creating new osc for $obdfilter_name on $ost_nid"
9950         # make sure we can find loopback nid
9951         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9952
9953         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9954                            ${obdfilter_name}_osc_UUID || rc=2; }
9955         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9956                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9957         return $rc
9958 }
9959
9960 cleanup_obdecho_osc () {
9961         local obdfilter_name=$1
9962         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9963         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9964         return 0
9965 }
9966
9967 obdecho_test() {
9968         local OBD=$1
9969         local node=$2
9970         local pages=${3:-64}
9971         local rc=0
9972         local id
9973
9974         local count=10
9975         local obd_size=$(get_obd_size $node $OBD)
9976         local page_size=$(get_page_size $node)
9977         if [[ -n "$obd_size" ]]; then
9978                 local new_count=$((obd_size / (pages * page_size / 1024)))
9979                 [[ $new_count -ge $count ]] || count=$new_count
9980         fi
9981
9982         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9983         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9984                            rc=2; }
9985         if [ $rc -eq 0 ]; then
9986             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9987             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9988         fi
9989         echo "New object id is $id"
9990         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9991                            rc=4; }
9992         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9993                            "test_brw $count w v $pages $id" || rc=4; }
9994         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9995                            rc=4; }
9996         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9997                                         "cleanup" || rc=5; }
9998         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9999                                         "detach" || rc=6; }
10000         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
10001         return $rc
10002 }
10003
10004 test_180a() {
10005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10006         remote_ost_nodsh && skip "remote OST with nodsh" && return
10007         local rc=0
10008         local rmmod_local=0
10009
10010         if ! module_loaded obdecho; then
10011             load_module obdecho/obdecho
10012             rmmod_local=1
10013         fi
10014
10015         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
10016         local host=$(lctl get_param -n osc.$osc.import |
10017                              awk '/current_connection:/ {print $2}' )
10018         local target=$(lctl get_param -n osc.$osc.import |
10019                              awk '/target:/ {print $2}' )
10020         target=${target%_UUID}
10021
10022         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
10023         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
10024         [[ -n $target ]] && cleanup_obdecho_osc $target
10025         [ $rmmod_local -eq 1 ] && rmmod obdecho
10026         return $rc
10027 }
10028 run_test 180a "test obdecho on osc"
10029
10030 test_180b() {
10031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10032         remote_ost_nodsh && skip "remote OST with nodsh" && return
10033         local rc=0
10034         local rmmod_remote=0
10035
10036         do_facet ost1 "lsmod | grep -q obdecho || "                      \
10037                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
10038                       "modprobe obdecho; }" && rmmod_remote=1
10039         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
10040         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
10041         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
10042         return $rc
10043 }
10044 run_test 180b "test obdecho directly on obdfilter"
10045
10046 test_180c() { # LU-2598
10047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10048         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
10049                 skip "Need MDS version at least 2.4.0" && return
10050
10051         local rc=0
10052         local rmmod_remote=false
10053         local pages=16384 # 64MB bulk I/O RPC size
10054         local target
10055
10056         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
10057                 rmmod_remote=true || error "failed to load module obdecho"
10058
10059         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
10060         if [[ -n $target ]]; then
10061                 obdecho_test "$target" ost1 "$pages" ||
10062                         rc=${PIPESTATUS[0]}
10063         else
10064                 echo "there is no obdfilter target on ost1"
10065                 rc=2
10066         fi
10067         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
10068         return $rc
10069 }
10070 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
10071
10072 test_181() { # bug 22177
10073         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10074         # create enough files to index the directory
10075         createmany -o $DIR/$tdir/foobar 4000
10076         # print attributes for debug purpose
10077         lsattr -d .
10078         # open dir
10079         multiop_bg_pause $DIR/$tdir D_Sc || return 1
10080         MULTIPID=$!
10081         # remove the files & current working dir
10082         unlinkmany $DIR/$tdir/foobar 4000
10083         rmdir $DIR/$tdir
10084         kill -USR1 $MULTIPID
10085         wait $MULTIPID
10086         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
10087         return 0
10088 }
10089 run_test 181 "Test open-unlinked dir ========================"
10090
10091 test_182() {
10092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10093         # disable MDC RPC lock wouldn't crash client
10094         local fcount=1000
10095         local tcount=4
10096
10097         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10098 #define OBD_FAIL_MDC_RPCS_SEM           0x804
10099         $LCTL set_param fail_loc=0x804
10100
10101         for (( i=0; i < $tcount; i++ )) ; do
10102                 mkdir $DIR/$tdir/$i
10103                 createmany -o $DIR/$tdir/$i/f- $fcount &
10104         done
10105         wait
10106
10107         for (( i=0; i < $tcount; i++ )) ; do
10108                 unlinkmany $DIR/$tdir/$i/f- $fcount &
10109         done
10110         wait
10111
10112         rm -rf $DIR/$tdir
10113
10114         $LCTL set_param fail_loc=0
10115 }
10116 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
10117
10118 test_183() { # LU-2275
10119         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
10120                 skip "Need MDS version at least 2.3.56" && return
10121
10122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10123         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10124         echo aaa > $DIR/$tdir/$tfile
10125
10126 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
10127         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
10128
10129         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
10130         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
10131
10132         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
10133
10134         # Flush negative dentry cache
10135         touch $DIR/$tdir/$tfile
10136
10137         # We are not checking for any leaked references here, they'll
10138         # become evident next time we do cleanup with module unload.
10139         rm -rf $DIR/$tdir
10140 }
10141 run_test 183 "No crash or request leak in case of strange dispositions ========"
10142
10143 # test suite 184 is for LU-2016, LU-2017
10144 test_184a() {
10145         check_swap_layouts_support && return 0
10146
10147         dir0=$DIR/$tdir/$testnum
10148         test_mkdir -p $dir0 || error "creating dir $dir0"
10149         ref1=/etc/passwd
10150         ref2=/etc/group
10151         file1=$dir0/f1
10152         file2=$dir0/f2
10153         $SETSTRIPE -c1 $file1
10154         cp $ref1 $file1
10155         $SETSTRIPE -c2 $file2
10156         cp $ref2 $file2
10157         gen1=$($GETSTRIPE -g $file1)
10158         gen2=$($GETSTRIPE -g $file2)
10159
10160         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10161         gen=$($GETSTRIPE -g $file1)
10162         [[ $gen1 != $gen ]] ||
10163                 "Layout generation on $file1 does not change"
10164         gen=$($GETSTRIPE -g $file2)
10165         [[ $gen2 != $gen ]] ||
10166                 "Layout generation on $file2 does not change"
10167
10168         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10169         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10170 }
10171 run_test 184a "Basic layout swap"
10172
10173 test_184b() {
10174         check_swap_layouts_support && return 0
10175
10176         dir0=$DIR/$tdir/$testnum
10177         mkdir -p $dir0 || error "creating dir $dir0"
10178         file1=$dir0/f1
10179         file2=$dir0/f2
10180         file3=$dir0/f3
10181         dir1=$dir0/d1
10182         dir2=$dir0/d2
10183         mkdir $dir1 $dir2
10184         $SETSTRIPE -c1 $file1
10185         $SETSTRIPE -c2 $file2
10186         $SETSTRIPE -c1 $file3
10187         chown $RUNAS_ID $file3
10188         gen1=$($GETSTRIPE -g $file1)
10189         gen2=$($GETSTRIPE -g $file2)
10190
10191         $LFS swap_layouts $dir1 $dir2 &&
10192                 error "swap of directories layouts should fail"
10193         $LFS swap_layouts $dir1 $file1 &&
10194                 error "swap of directory and file layouts should fail"
10195         $RUNAS $LFS swap_layouts $file1 $file2 &&
10196                 error "swap of file we cannot write should fail"
10197         $LFS swap_layouts $file1 $file3 &&
10198                 error "swap of file with different owner should fail"
10199         /bin/true # to clear error code
10200 }
10201 run_test 184b "Forbidden layout swap (will generate errors)"
10202
10203 test_184c() {
10204         check_swap_layouts_support && return 0
10205
10206         local dir0=$DIR/$tdir/$testnum
10207         mkdir -p $dir0 || error "creating dir $dir0"
10208
10209         local ref1=$dir0/ref1
10210         local ref2=$dir0/ref2
10211         local file1=$dir0/file1
10212         local file2=$dir0/file2
10213         # create a file large enough for the concurent test
10214         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10215         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10216         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10217
10218         cp $ref2 $file2
10219         dd if=$ref1 of=$file1 bs=16k &
10220         local DD_PID=$!
10221
10222         # Make sure dd starts to copy file
10223         while [ ! -f $file1 ]; do sleep 0.1; done
10224
10225         $LFS swap_layouts $file1 $file2
10226         local rc=$?
10227         wait $DD_PID
10228         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10229         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10230
10231         # how many bytes copied before swapping layout
10232         local copied=`stat -c %s $file2`
10233         local remaining=`stat -c %s $ref1`
10234         remaining=$((remaining - copied))
10235         echo "Copied $copied bytes before swapping layout..."
10236
10237         cmp -n $copied $file1 $ref2 | grep differ &&
10238                 error "Content mismatch [0, $copied) of ref2 and file1"
10239         cmp -n $copied $file2 $ref1 ||
10240                 error "Content mismatch [0, $copied) of ref1 and file2"
10241         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10242                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10243
10244         # clean up
10245         rm -f $ref1 $ref2 $file1 $file2
10246 }
10247 run_test 184c "Concurrent write and layout swap"
10248
10249 test_184d() {
10250         check_swap_layouts_support && return 0
10251
10252         local file1=$DIR/$tdir/$tfile-1
10253         local file2=$DIR/$tdir/$tfile-2
10254         local file3=$DIR/$tdir/$tfile-3
10255         local lovea1
10256         local lovea2
10257
10258         mkdir -p $DIR/$tdir
10259         touch $file1 || error "create $file1 failed"
10260         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10261                 error "create $file2 failed"
10262         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10263                 error "create $file3 failed"
10264         lovea1=$($LFS getstripe $file1 | sed 1d)
10265
10266         $LFS swap_layouts $file2 $file3 ||
10267                 error "swap $file2 $file3 layouts failed"
10268         $LFS swap_layouts $file1 $file2 ||
10269                 error "swap $file1 $file2 layouts failed"
10270
10271         lovea2=$($LFS getstripe $file2 | sed 1d)
10272         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10273
10274         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10275         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10276 }
10277 run_test 184d "allow stripeless layouts swap"
10278
10279
10280 test_185() { # LU-2441
10281         # LU-3553 - no volatile file support in old servers
10282         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10283                 { skip "Need MDS version at least 2.3.60"; return 0; }
10284
10285         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10286         touch $DIR/$tdir/spoo
10287         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10288         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10289                 error "cannot create/write a volatile file"
10290         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10291                 error "FID is still valid after close"
10292
10293         multiop_bg_pause $DIR/$tdir vVw4096_c
10294         local multi_pid=$!
10295
10296         local OLD_IFS=$IFS
10297         IFS=":"
10298         local fidv=($fid)
10299         IFS=$OLD_IFS
10300         # assume that the next FID for this client is sequential, since stdout
10301         # is unfortunately eaten by multiop_bg_pause
10302         local n=$((${fidv[1]} + 1))
10303         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10304         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10305                 error "FID is missing before close"
10306         kill -USR1 $multi_pid
10307         # 1 second delay, so if mtime change we will see it
10308         sleep 1
10309         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10310         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10311 }
10312 run_test 185 "Volatile file support"
10313
10314 test_187a() {
10315         local dir0=$DIR/$tdir/$testnum
10316         mkdir -p $dir0 || error "creating dir $dir0"
10317
10318         local file=$dir0/file1
10319         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10320         local dv1=$($LFS data_version $file)
10321         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10322         local dv2=$($LFS data_version $file)
10323         [[ $dv1 != $dv2 ]] ||
10324                 error "data version did not change on write $dv1 == $dv2"
10325
10326         # clean up
10327         rm -f $file1
10328 }
10329 run_test 187a "Test data version change"
10330
10331 test_187b() {
10332         local dir0=$DIR/$tdir/$testnum
10333         mkdir -p $dir0 || error "creating dir $dir0"
10334
10335         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10336         [[ ${DV[0]} != ${DV[1]} ]] ||
10337                 error "data version did not change on write"\
10338                       " ${DV[0]} == ${DV[1]}"
10339
10340         # clean up
10341         rm -f $file1
10342 }
10343 run_test 187b "Test data version change on volatile file"
10344
10345 # OST pools tests
10346 check_file_in_pool()
10347 {
10348         local file=$1
10349         local pool=$2
10350         local tlist="$3"
10351         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10352         for i in $res
10353         do
10354                 for t in $tlist ; do
10355                         [ "$i" -eq "$t" ] && continue 2
10356                 done
10357
10358                 echo "pool list: $tlist"
10359                 echo "striping: $res"
10360                 error_noexit "$file not allocated in $pool"
10361                 return 1
10362         done
10363         return 0
10364 }
10365
10366 pool_add() {
10367         echo "Creating new pool"
10368         local pool=$1
10369
10370         create_pool $FSNAME.$pool ||
10371                 { error_noexit "No pool created, result code $?"; return 1; }
10372         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10373                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10374 }
10375
10376 pool_add_targets() {
10377         echo "Adding targets to pool"
10378         local pool=$1
10379         local first=$2
10380         local last=$3
10381         local step=${4:-1}
10382
10383         local list=$(seq $first $step $last)
10384
10385         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10386         do_facet mgs $LCTL pool_add \
10387                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10388         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10389                         | sort -u | tr '\n' ' ' " "$t" || { 
10390                 error_noexit "Add to pool failed"
10391                 return 1
10392         }
10393         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10394         local addcount=$(((last - first) / step + 1))
10395         [ $lfscount -eq $addcount ] || {
10396                 error_noexit "lfs pool_list bad ost count" \
10397                                                 "$lfscount != $addcount"
10398                 return 2
10399         }
10400 }
10401
10402 pool_set_dir() {
10403         local pool=$1
10404         local tdir=$2
10405         echo "Setting pool on directory $tdir"
10406
10407         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10408
10409         error_noexit "Cannot set pool $pool to $tdir"
10410         return 1
10411 }
10412
10413 pool_check_dir() {
10414         local pool=$1
10415         local tdir=$2
10416         echo "Checking pool on directory $tdir"
10417
10418         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10419         [ "$res" = "$pool" ] && return 0
10420
10421         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10422         return 1
10423 }
10424
10425 pool_dir_rel_path() {
10426         echo "Testing relative path works well"
10427         local pool=$1
10428         local tdir=$2
10429         local root=$3
10430
10431         mkdir -p $root/$tdir/$tdir
10432         cd $root/$tdir
10433         pool_set_dir $pool $tdir          || return 1
10434         pool_set_dir $pool ./$tdir        || return 2
10435         pool_set_dir $pool ../$tdir       || return 3
10436         pool_set_dir $pool ../$tdir/$tdir || return 4
10437         rm -rf $tdir; cd - > /dev/null
10438 }
10439
10440 pool_alloc_files() {
10441         echo "Checking files allocation from directory pool"
10442         local pool=$1
10443         local tdir=$2
10444         local count=$3
10445         local tlist="$4"
10446
10447         local failed=0
10448         for i in $(seq -w 1 $count)
10449         do
10450                 local file=$tdir/file-$i
10451                 touch $file
10452                 check_file_in_pool $file $pool "$tlist" || \
10453                         failed=$((failed + 1))
10454         done
10455         [ "$failed" = 0 ] && return 0
10456
10457         error_noexit "$failed files not allocated in $pool"
10458         return 1
10459 }
10460
10461 pool_create_files() {
10462         echo "Creating files in pool"
10463         local pool=$1
10464         local tdir=$2
10465         local count=$3
10466         local tlist="$4"
10467
10468         mkdir -p $tdir
10469         local failed=0
10470         for i in $(seq -w 1 $count)
10471         do
10472                 local file=$tdir/spoo-$i
10473                 $SETSTRIPE -p $pool $file
10474                 check_file_in_pool $file $pool "$tlist" || \
10475                         failed=$((failed + 1))
10476         done
10477         [ "$failed" = 0 ] && return 0
10478
10479         error_noexit "$failed files not allocated in $pool"
10480         return 1
10481 }
10482
10483 pool_lfs_df() {
10484         echo "Checking 'lfs df' output"
10485         local pool=$1
10486
10487         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10488                         tr '\n' ' ')
10489         local res=$($LFS df --pool $FSNAME.$pool |
10490                         awk '{print $1}' |
10491                         grep "$FSNAME-OST" |
10492                         tr '\n' ' ')
10493         [ "$res" = "$t" ] && return 0
10494
10495         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10496         return 1
10497 }
10498
10499 pool_file_rel_path() {
10500         echo "Creating files in a pool with relative pathname"
10501         local pool=$1
10502         local tdir=$2
10503
10504         mkdir -p $tdir ||
10505                 { error_noexit "unable to create $tdir"; return 1 ; }
10506         local file="/..$tdir/$tfile-1"
10507         $SETSTRIPE -p $pool $file ||
10508                 { error_noexit "unable to create $file" ; return 2 ; }
10509
10510         cd $tdir
10511         $SETSTRIPE -p $pool $tfile-2 || {
10512                 error_noexit "unable to create $tfile-2 in $tdir"
10513                 return 3
10514         }
10515 }
10516
10517 pool_remove_first_target() {
10518         echo "Removing first target from a pool"
10519         local pool=$1
10520
10521         local pname="lov.$FSNAME-*.pools.$pool"
10522         local t=$($LCTL get_param -n $pname | head -1)
10523         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10524         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10525                 error_noexit "$t not removed from $FSNAME.$pool"
10526                 return 1
10527         }
10528 }
10529
10530 pool_remove_all_targets() {
10531         echo "Removing all targets from pool"
10532         local pool=$1
10533         local file=$2
10534         local pname="lov.$FSNAME-*.pools.$pool"
10535         for t in $($LCTL get_param -n $pname | sort -u)
10536         do
10537                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10538         done
10539         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10540                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10541                 return 1
10542         }
10543         # striping on an empty/nonexistant pool should fall back 
10544         # to "pool of everything"
10545         touch $file || {
10546                 error_noexit "failed to use fallback striping for empty pool"
10547                 return 2
10548         }
10549         # setstripe on an empty pool should fail
10550         $SETSTRIPE -p $pool $file 2>/dev/null && {
10551                 error_noexit "expected failure when creating file" \
10552                                                         "with empty pool"
10553                 return 3
10554         }
10555         return 0
10556 }
10557
10558 pool_remove() {
10559         echo "Destroying pool"
10560         local pool=$1
10561         local file=$2
10562
10563         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10564
10565         sleep 2
10566         # striping on an empty/nonexistant pool should fall back 
10567         # to "pool of everything"
10568         touch $file || {
10569                 error_noexit "failed to use fallback striping for missing pool"
10570                 return 1
10571         }
10572         # setstripe on an empty pool should fail
10573         $SETSTRIPE -p $pool $file 2>/dev/null && {
10574                 error_noexit "expected failure when creating file" \
10575                                                         "with missing pool"
10576                 return 2
10577         }
10578
10579         # get param should return err once pool is gone
10580         if wait_update $HOSTNAME "lctl get_param -n \
10581                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10582         then
10583                 remove_pool_from_list $FSNAME.$pool
10584                 return 0
10585         fi
10586         error_noexit "Pool $FSNAME.$pool is not destroyed"
10587         return 3
10588 }
10589
10590 test_200() {
10591         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10592         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10593
10594         local POOL=${POOL:-cea1}
10595         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10596         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10597         # Pool OST targets
10598         local first_ost=0
10599         local last_ost=$(($OSTCOUNT - 1))
10600         local ost_step=2
10601         local ost_list=$(seq $first_ost $ost_step $last_ost)
10602         local ost_range="$first_ost $last_ost $ost_step"
10603         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10604         local file_dir=$POOL_ROOT/file_tst
10605
10606         local rc=0
10607         while : ; do
10608                 # former test_200a test_200b
10609                 pool_add $POOL                          || { rc=$? ; break; }
10610                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10611                 # former test_200c test_200d
10612                 mkdir -p $test_path
10613                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10614                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10615                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10616                                                         || { rc=$? ; break; }
10617                 # former test_200e test_200f
10618                 local files=$((OSTCOUNT*3))
10619                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10620                                                         || { rc=$? ; break; }
10621                 pool_create_files $POOL $file_dir $files "$ost_list" \
10622                                                         || { rc=$? ; break; }
10623                 # former test_200g test_200h
10624                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10625                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10626
10627                 # former test_201a test_201b test_201c
10628                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10629
10630                 local f=$test_path/$tfile
10631                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10632                 pool_remove $POOL $f                    || { rc=$? ; break; }
10633                 break
10634         done
10635
10636         cleanup_pools
10637         return $rc
10638 }
10639 run_test 200 "OST pools"
10640
10641 # usage: default_attr <count | size | offset>
10642 default_attr() {
10643         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10644 }
10645
10646 # usage: check_default_stripe_attr
10647 check_default_stripe_attr() {
10648         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10649         case $1 in
10650         --stripe-count|--count)
10651                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10652         --stripe-size|--size)
10653                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10654         --stripe-index|--index)
10655                 EXPECTED=-1;;
10656         *)
10657                 error "unknown getstripe attr '$1'"
10658         esac
10659
10660         [ $ACTUAL != $EXPECTED ] &&
10661                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10662 }
10663
10664 test_204a() {
10665         test_mkdir -p $DIR/$tdir
10666         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10667
10668         check_default_stripe_attr --stripe-count
10669         check_default_stripe_attr --stripe-size
10670         check_default_stripe_attr --stripe-index
10671
10672         return 0
10673 }
10674 run_test 204a "Print default stripe attributes ================="
10675
10676 test_204b() {
10677         test_mkdir -p $DIR/$tdir
10678         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10679
10680         check_default_stripe_attr --stripe-size
10681         check_default_stripe_attr --stripe-index
10682
10683         return 0
10684 }
10685 run_test 204b "Print default stripe size and offset  ==========="
10686
10687 test_204c() {
10688         test_mkdir -p $DIR/$tdir
10689         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10690
10691         check_default_stripe_attr --stripe-count
10692         check_default_stripe_attr --stripe-index
10693
10694         return 0
10695 }
10696 run_test 204c "Print default stripe count and offset ==========="
10697
10698 test_204d() {
10699         test_mkdir -p $DIR/$tdir
10700         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10701
10702         check_default_stripe_attr --stripe-count
10703         check_default_stripe_attr --stripe-size
10704
10705         return 0
10706 }
10707 run_test 204d "Print default stripe count and size ============="
10708
10709 test_204e() {
10710         test_mkdir -p $DIR/$tdir
10711         $SETSTRIPE -d $DIR/$tdir
10712
10713         check_default_stripe_attr --stripe-count --raw
10714         check_default_stripe_attr --stripe-size --raw
10715         check_default_stripe_attr --stripe-index --raw
10716
10717         return 0
10718 }
10719 run_test 204e "Print raw stripe attributes ================="
10720
10721 test_204f() {
10722         test_mkdir -p $DIR/$tdir
10723         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10724
10725         check_default_stripe_attr --stripe-size --raw
10726         check_default_stripe_attr --stripe-index --raw
10727
10728         return 0
10729 }
10730 run_test 204f "Print raw stripe size and offset  ==========="
10731
10732 test_204g() {
10733         test_mkdir -p $DIR/$tdir
10734         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10735
10736         check_default_stripe_attr --stripe-count --raw
10737         check_default_stripe_attr --stripe-index --raw
10738
10739         return 0
10740 }
10741 run_test 204g "Print raw stripe count and offset ==========="
10742
10743 test_204h() {
10744         test_mkdir -p $DIR/$tdir
10745         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10746
10747         check_default_stripe_attr --stripe-count --raw
10748         check_default_stripe_attr --stripe-size --raw
10749
10750         return 0
10751 }
10752 run_test 204h "Print raw stripe count and size ============="
10753
10754 # Figure out which job scheduler is being used, if any,
10755 # or use a fake one
10756 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10757         JOBENV=SLURM_JOB_ID
10758 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10759         JOBENV=LSB_JOBID
10760 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10761         JOBENV=PBS_JOBID
10762 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10763         JOBENV=LOADL_STEP_ID
10764 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10765         JOBENV=JOB_ID
10766 else
10767         JOBENV=FAKE_JOBID
10768 fi
10769
10770 verify_jobstats() {
10771         local cmd=$1
10772         local target=$2
10773
10774         # clear old jobstats
10775         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10776         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10777
10778         # use a new JobID for this test, or we might see an old one
10779         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10780
10781         JOBVAL=${!JOBENV}
10782         log "Test: $cmd"
10783         log "Using JobID environment variable $JOBENV=$JOBVAL"
10784
10785         if [ $JOBENV = "FAKE_JOBID" ]; then
10786                 FAKE_JOBID=$JOBVAL $cmd
10787         else
10788                 $cmd
10789         fi
10790
10791         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10792                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10793                 do_facet $FACET lctl get_param mdt.*.job_stats |
10794                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10795         fi
10796         if [ "$target" = "ost" -o "$target" = "both" ]; then
10797                 FACET=ost1
10798                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10799                         grep $JOBVAL || error "No job stats found on OST $FACET"
10800         fi
10801 }
10802
10803 jobstats_set() {
10804         trap 0
10805         NEW_JOBENV=${1:-$OLD_JOBENV}
10806         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10807         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10808 }
10809
10810 test_205() { # Job stats
10811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10812         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10813                 skip "Server doesn't support jobstats" && return 0
10814
10815         local cmd
10816         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10817         if [ $OLD_JOBENV != $JOBENV ]; then
10818                 jobstats_set $JOBENV
10819                 trap jobstats_set EXIT
10820         fi
10821
10822         # mkdir
10823         cmd="mkdir $DIR/$tfile"
10824         verify_jobstats "$cmd" "mdt"
10825         # rmdir
10826         cmd="rm -fr $DIR/$tfile"
10827         verify_jobstats "$cmd" "mdt"
10828         # mknod
10829         cmd="mknod $DIR/$tfile c 1 3"
10830         verify_jobstats "$cmd" "mdt"
10831         # unlink
10832         cmd="rm -f $DIR/$tfile"
10833         verify_jobstats "$cmd" "mdt"
10834         # open & close
10835         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10836         verify_jobstats "$cmd" "mdt"
10837         # setattr
10838         cmd="touch $DIR/$tfile"
10839         verify_jobstats "$cmd" "both"
10840         # write
10841         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10842         verify_jobstats "$cmd" "ost"
10843         # read
10844         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10845         verify_jobstats "$cmd" "ost"
10846         # truncate
10847         cmd="$TRUNCATE $DIR/$tfile 0"
10848         verify_jobstats "$cmd" "both"
10849         # rename
10850         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10851         verify_jobstats "$cmd" "mdt"
10852
10853         # cleanup
10854         rm -f $DIR/jobstats_test_rename
10855
10856         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10857 }
10858 run_test 205 "Verify job stats"
10859
10860 # LU-1480, LU-1773 and LU-1657
10861 test_206() {
10862         mkdir -p $DIR/$tdir
10863         lfs setstripe -c -1 $DIR/$tdir
10864 #define OBD_FAIL_LOV_INIT 0x1403
10865         $LCTL set_param fail_loc=0xa0001403
10866         $LCTL set_param fail_val=1
10867         touch $DIR/$tdir/$tfile || true
10868 }
10869 run_test 206 "fail lov_init_raid0() doesn't lbug"
10870
10871 test_207a() {
10872         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10873         local fsz=`stat -c %s $DIR/$tfile`
10874         cancel_lru_locks mdc
10875
10876         # do not return layout in getattr intent
10877 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10878         $LCTL set_param fail_loc=0x170
10879         local sz=`stat -c %s $DIR/$tfile`
10880
10881         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10882
10883         rm -rf $DIR/$tfile
10884 }
10885 run_test 207a "can refresh layout at glimpse"
10886
10887 test_207b() {
10888         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10889         local cksum=`md5sum $DIR/$tfile`
10890         local fsz=`stat -c %s $DIR/$tfile`
10891         cancel_lru_locks mdc
10892         cancel_lru_locks osc
10893
10894         # do not return layout in getattr intent
10895 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10896         $LCTL set_param fail_loc=0x171
10897
10898         # it will refresh layout after the file is opened but before read issues
10899         echo checksum is "$cksum"
10900         echo "$cksum" |md5sum -c --quiet || error "file differs"
10901
10902         rm -rf $DIR/$tfile
10903 }
10904 run_test 207b "can refresh layout at open"
10905
10906 test_208() {
10907         # FIXME: in this test suite, only RD lease is used. This is okay
10908         # for now as only exclusive open is supported. After generic lease
10909         # is done, this test suite should be revised. - Jinshan
10910
10911         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10912                 { skip "Need MDS version at least 2.4.52"; return 0; }
10913
10914         echo "==== test 1: verify get lease work"
10915         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10916
10917         echo "==== test 2: verify lease can be broken by upcoming open"
10918         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10919         local PID=$!
10920         sleep 1
10921
10922         $MULTIOP $DIR/$tfile oO_RDONLY:c
10923         kill -USR1 $PID && wait $PID || error "break lease error"
10924
10925         echo "==== test 3: verify lease can't be granted if an open already exists"
10926         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10927         local PID=$!
10928         sleep 1
10929
10930         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10931         kill -USR1 $PID && wait $PID || error "open file error"
10932
10933         echo "==== test 4: lease can sustain over recovery"
10934         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10935         PID=$!
10936         sleep 1
10937
10938         fail mds1
10939
10940         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10941
10942         echo "==== test 5: lease broken can't be regained by replay"
10943         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10944         PID=$!
10945         sleep 1
10946
10947         # open file to break lease and then recovery
10948         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10949         fail mds1
10950
10951         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10952
10953         rm -f $DIR/$tfile
10954 }
10955 run_test 208 "Exclusive open"
10956
10957 test_209() {
10958         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep disp_stripe)" ] &&
10959                 skip_env "must have disp_stripe" && return
10960
10961         touch $DIR/$tfile
10962         sync; sleep 5; sync;
10963
10964         echo 3 > /proc/sys/vm/drop_caches
10965         req_before=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10966
10967         # open/close 500 times
10968         for i in $(seq 500); do
10969                 cat $DIR/$tfile
10970         done
10971
10972         echo 3 > /proc/sys/vm/drop_caches
10973         req_after=$(awk '/ptlrpc_cache / { print $2 }' /proc/slabinfo)
10974
10975         echo "before: $req_before, after: $req_after"
10976         [ $((req_after - req_before)) -ge 300 ] &&
10977                 error "open/close requests are not freed"
10978         return 0
10979 }
10980 run_test 209 "read-only open/close requests should be freed promptly"
10981
10982 test_212() {
10983         size=`date +%s`
10984         size=$((size % 8192 + 1))
10985         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10986         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10987         rm -f $DIR/f212 $DIR/f212.xyz
10988 }
10989 run_test 212 "Sendfile test ============================================"
10990
10991 test_213() {
10992         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10993         cancel_lru_locks osc
10994         lctl set_param fail_loc=0x8000040f
10995         # generate a read lock
10996         cat $DIR/$tfile > /dev/null
10997         # write to the file, it will try to cancel the above read lock.
10998         cat /etc/hosts >> $DIR/$tfile
10999 }
11000 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
11001
11002 test_214() { # for bug 20133
11003         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
11004         for (( i=0; i < 340; i++ )) ; do
11005                 touch $DIR/$tdir/d214c/a$i
11006         done
11007
11008         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
11009         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
11010         ls $DIR/d214c || error "ls $DIR/d214c failed"
11011         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
11012         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
11013 }
11014 run_test 214 "hash-indexed directory test - bug 20133"
11015
11016 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
11017 create_lnet_proc_files() {
11018         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
11019         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
11020
11021         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
11022         rm -f "$TMP/lnet_$1.sys_tmp"
11023 }
11024
11025 # counterpart of create_lnet_proc_files
11026 remove_lnet_proc_files() {
11027         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
11028 }
11029
11030 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11031 # 3rd arg as regexp for body
11032 check_lnet_proc_stats() {
11033         local l=$(cat "$TMP/lnet_$1" |wc -l)
11034         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
11035
11036         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
11037 }
11038
11039 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
11040 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
11041 # optional and can be regexp for 2nd line (lnet.routes case)
11042 check_lnet_proc_entry() {
11043         local blp=2            # blp stands for 'position of 1st line of body'
11044         [ "$5" = "" ] || blp=3 # lnet.routes case
11045
11046         local l=$(cat "$TMP/lnet_$1" |wc -l)
11047         # subtracting one from $blp because the body can be empty
11048         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
11049
11050         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
11051                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
11052
11053         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
11054                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
11055
11056         # bail out if any unexpected line happened
11057         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
11058         [ "$?" != 0 ] || error "$2 misformatted"
11059 }
11060
11061 test_215() { # for bugs 18102, 21079, 21517
11062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11063         local N='(0|[1-9][0-9]*)'       # non-negative numeric
11064         local P='[1-9][0-9]*'           # positive numeric
11065         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
11066         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
11067         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
11068         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
11069
11070         local L1 # regexp for 1st line
11071         local L2 # regexp for 2nd line (optional)
11072         local BR # regexp for the rest (body)
11073
11074         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
11075         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
11076         create_lnet_proc_files "stats"
11077         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
11078         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
11079         remove_lnet_proc_files "stats"
11080
11081         # /proc/sys/lnet/routes should look like this:
11082         # Routing disabled/enabled
11083         # net hops priority state router
11084         # where net is a string like tcp0, hops > 0, priority >= 0,
11085         # state is up/down,
11086         # router is a string like 192.168.1.1@tcp2
11087         L1="^Routing (disabled|enabled)$"
11088         L2="^net +hops +priority +state +router$"
11089         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
11090         create_lnet_proc_files "routes"
11091         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
11092         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
11093         remove_lnet_proc_files "routes"
11094
11095         # /proc/sys/lnet/routers should look like this:
11096         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
11097         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
11098         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
11099         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
11100         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
11101         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
11102         create_lnet_proc_files "routers"
11103         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
11104         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
11105         remove_lnet_proc_files "routers"
11106
11107         # /proc/sys/lnet/peers should look like this:
11108         # nid refs state last max rtr min tx min queue
11109         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
11110         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
11111         # numeric (0 or >0 or <0), queue >= 0.
11112         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
11113         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
11114         create_lnet_proc_files "peers"
11115         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
11116         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
11117         remove_lnet_proc_files "peers"
11118
11119         # /proc/sys/lnet/buffers  should look like this:
11120         # pages count credits min
11121         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
11122         L1="^pages +count +credits +min$"
11123         BR="^ +$N +$N +$I +$I$"
11124         create_lnet_proc_files "buffers"
11125         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
11126         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
11127         remove_lnet_proc_files "buffers"
11128
11129         # /proc/sys/lnet/nis should look like this:
11130         # nid status alive refs peer rtr max tx min
11131         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
11132         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
11133         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
11134         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
11135         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
11136         create_lnet_proc_files "nis"
11137         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
11138         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
11139         remove_lnet_proc_files "nis"
11140
11141         # can we successfully write to /proc/sys/lnet/stats?
11142         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
11143         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
11144 }
11145 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
11146
11147 test_216() { # bug 20317
11148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11149         remote_ost_nodsh && skip "remote OST with nodsh" && return
11150
11151         local node
11152         local facets=$(get_facets OST)
11153         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
11154
11155         save_lustre_params client "osc.*.contention_seconds" > $p
11156         save_lustre_params $facets \
11157                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
11158         save_lustre_params $facets \
11159                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11160         save_lustre_params $facets \
11161                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11162         clear_osc_stats
11163
11164         # agressive lockless i/o settings
11165         for node in $(osts_nodes); do
11166                 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'
11167         done
11168         lctl set_param -n osc.*.contention_seconds 60
11169
11170         $DIRECTIO write $DIR/$tfile 0 10 4096
11171         $CHECKSTAT -s 40960 $DIR/$tfile
11172
11173         # disable lockless i/o
11174         for node in $(osts_nodes); do
11175                 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'
11176         done
11177         lctl set_param -n osc.*.contention_seconds 0
11178         clear_osc_stats
11179
11180         dd if=/dev/zero of=$DIR/$tfile count=0
11181         $CHECKSTAT -s 0 $DIR/$tfile
11182
11183         restore_lustre_params <$p
11184         rm -f $p
11185         rm $DIR/$tfile
11186 }
11187 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11188
11189 test_217() { # bug 22430
11190         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11191         local node
11192         local nid
11193
11194         for node in $(nodes_list); do
11195                 nid=$(host_nids_address $node $NETTYPE)
11196                 if [[ $nid = *-* ]] ; then
11197                         echo "lctl ping $nid@$NETTYPE"
11198                         lctl ping $nid@$NETTYPE
11199                 else
11200                         echo "skipping $node (no hyphen detected)"
11201                 fi
11202         done
11203 }
11204 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11205
11206 test_218() {
11207        # do directio so as not to populate the page cache
11208        log "creating a 10 Mb file"
11209        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11210        log "starting reads"
11211        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11212        log "truncating the file"
11213        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11214        log "killing dd"
11215        kill %+ || true # reads might have finished
11216        echo "wait until dd is finished"
11217        wait
11218        log "removing the temporary file"
11219        rm -rf $DIR/$tfile || error "tmp file removal failed"
11220 }
11221 run_test 218 "parallel read and truncate should not deadlock ======================="
11222
11223 test_219() {
11224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11225         # write one partial page
11226         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11227         # set no grant so vvp_io_commit_write will do sync write
11228         $LCTL set_param fail_loc=0x411
11229         # write a full page at the end of file
11230         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11231
11232         $LCTL set_param fail_loc=0
11233         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11234         $LCTL set_param fail_loc=0x411
11235         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11236 }
11237 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11238
11239 test_220() { #LU-325
11240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11241         remote_ost_nodsh && skip "remote OST with nodsh" && return
11242         local OSTIDX=0
11243
11244         test_mkdir -p $DIR/$tdir
11245         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11246                 awk '{print $2}' | sed -e 's/_UUID$//')
11247
11248         # on the mdt's osc
11249         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11250         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11251                         osc.$mdtosc_proc1.prealloc_last_id)
11252         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11253                         osc.$mdtosc_proc1.prealloc_next_id)
11254
11255         $LFS df -i
11256
11257         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11258         #define OBD_FAIL_OST_ENOINO              0x229
11259         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11260         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11261         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11262
11263         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11264
11265         MDSOBJS=$((last_id - next_id))
11266         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11267
11268         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11269         echo "OST still has $count kbytes free"
11270
11271         echo "create $MDSOBJS files @next_id..."
11272         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11273
11274         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11275                         osc.$mdtosc_proc1.prealloc_last_id)
11276         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11277                         osc.$mdtosc_proc1.prealloc_next_id)
11278
11279         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11280         $LFS df -i
11281
11282         echo "cleanup..."
11283
11284         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11285         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11286
11287         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11288         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11289         echo "unlink $MDSOBJS files @$next_id..."
11290         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11291 }
11292 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11293
11294 test_221() {
11295         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11296         dd if=`which date` of=$MOUNT/date oflag=sync
11297         chmod +x $MOUNT/date
11298
11299         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11300         $LCTL set_param fail_loc=0x80001401
11301
11302         $MOUNT/date > /dev/null
11303         rm -f $MOUNT/date
11304 }
11305 run_test 221 "make sure fault and truncate race to not cause OOM"
11306
11307 test_222a () {
11308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11309        rm -rf $DIR/$tdir
11310        test_mkdir -p $DIR/$tdir
11311        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11312        createmany -o $DIR/$tdir/$tfile 10
11313        cancel_lru_locks mdc
11314        cancel_lru_locks osc
11315        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11316        $LCTL set_param fail_loc=0x31a
11317        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11318        $LCTL set_param fail_loc=0
11319        rm -r $DIR/$tdir
11320 }
11321 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11322
11323 test_222b () {
11324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11325        rm -rf $DIR/$tdir
11326        test_mkdir -p $DIR/$tdir
11327        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11328        createmany -o $DIR/$tdir/$tfile 10
11329        cancel_lru_locks mdc
11330        cancel_lru_locks osc
11331        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11332        $LCTL set_param fail_loc=0x31a
11333        rm -r $DIR/$tdir || "AGL for rmdir failed"
11334        $LCTL set_param fail_loc=0
11335 }
11336 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11337
11338 test_223 () {
11339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11340        rm -rf $DIR/$tdir
11341        test_mkdir -p $DIR/$tdir
11342        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11343        createmany -o $DIR/$tdir/$tfile 10
11344        cancel_lru_locks mdc
11345        cancel_lru_locks osc
11346        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11347        $LCTL set_param fail_loc=0x31b
11348        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11349        $LCTL set_param fail_loc=0
11350        rm -r $DIR/$tdir
11351 }
11352 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11353
11354 test_224a() { # LU-1039, MRP-303
11355         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11356         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11357         $LCTL set_param fail_loc=0x508
11358         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11359         $LCTL set_param fail_loc=0
11360         df $DIR
11361 }
11362 run_test 224a "Don't panic on bulk IO failure"
11363
11364 test_224b() { # LU-1039, MRP-303
11365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11366         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11367         cancel_lru_locks osc
11368         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11369         $LCTL set_param fail_loc=0x515
11370         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11371         $LCTL set_param fail_loc=0
11372         df $DIR
11373 }
11374 run_test 224b "Don't panic on bulk IO failure"
11375
11376 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11377 test_225a () {
11378         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11379         if [ -z ${MDSSURVEY} ]; then
11380               skip_env "mds-survey not found" && return
11381         fi
11382
11383         [ $MDSCOUNT -ge 2 ] &&
11384                 skip "skipping now for more than one MDT" && return
11385
11386        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11387             { skip "Need MDS version at least 2.2.51"; return; }
11388
11389        local mds=$(facet_host $SINGLEMDS)
11390        local target=$(do_nodes $mds 'lctl dl' | \
11391                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11392
11393        local cmd1="file_count=1000 thrhi=4"
11394        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11395        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11396        local cmd="$cmd1 $cmd2 $cmd3"
11397
11398        rm -f ${TMP}/mds_survey*
11399        echo + $cmd
11400        eval $cmd || error "mds-survey with zero-stripe failed"
11401        cat ${TMP}/mds_survey*
11402        rm -f ${TMP}/mds_survey*
11403 }
11404 run_test 225a "Metadata survey sanity with zero-stripe"
11405
11406 test_225b () {
11407         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11408
11409         if [ -z ${MDSSURVEY} ]; then
11410               skip_env "mds-survey not found" && return
11411         fi
11412         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11413             { skip "Need MDS version at least 2.2.51"; return; }
11414
11415         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11416               skip_env "Need to mount OST to test" && return
11417         fi
11418
11419         [ $MDSCOUNT -ge 2 ] &&
11420                 skip "skipping now for more than one MDT" && return
11421        local mds=$(facet_host $SINGLEMDS)
11422        local target=$(do_nodes $mds 'lctl dl' | \
11423                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11424
11425        local cmd1="file_count=1000 thrhi=4"
11426        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11427        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11428        local cmd="$cmd1 $cmd2 $cmd3"
11429
11430        rm -f ${TMP}/mds_survey*
11431        echo + $cmd
11432        eval $cmd || error "mds-survey with stripe_count failed"
11433        cat ${TMP}/mds_survey*
11434        rm -f ${TMP}/mds_survey*
11435 }
11436 run_test 225b "Metadata survey sanity with stripe_count = 1"
11437
11438 mcreate_path2fid () {
11439         local mode=$1
11440         local major=$2
11441         local minor=$3
11442         local name=$4
11443         local desc=$5
11444         local path=$DIR/$tdir/$name
11445         local fid
11446         local rc
11447         local fid_path
11448
11449         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11450                 error "cannot create $desc"
11451
11452         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11453         rc=$?
11454         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11455
11456         fid_path=$($LFS fid2path $MOUNT $fid)
11457         rc=$?
11458         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11459
11460         [ "$path" == "$fid_path" ] ||
11461                 error "fid2path returned $fid_path, expected $path"
11462
11463         echo "pass with $path and $fid"
11464 }
11465
11466 test_226a () {
11467         rm -rf $DIR/$tdir
11468         mkdir -p $DIR/$tdir
11469
11470         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11471         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11472         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11473         mcreate_path2fid 0040666 0 0 dir "directory"
11474         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11475         mcreate_path2fid 0100666 0 0 file "regular file"
11476         mcreate_path2fid 0120666 0 0 link "symbolic link"
11477         mcreate_path2fid 0140666 0 0 sock "socket"
11478 }
11479 run_test 226a "call path2fid and fid2path on files of all type"
11480
11481 test_226b () {
11482         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11483         rm -rf $DIR/$tdir
11484         local MDTIDX=1
11485
11486         mkdir -p $DIR/$tdir
11487         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11488                 error "create remote directory failed"
11489         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11490         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11491                                 "character special file (null)"
11492         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11493                                 "character special file (no device)"
11494         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11495         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11496                                 "block special file (loop)"
11497         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11498         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11499         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11500 }
11501 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11502
11503 # LU-1299 Executing or running ldd on a truncated executable does not
11504 # cause an out-of-memory condition.
11505 test_227() {
11506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11507         dd if=`which date` of=$MOUNT/date bs=1k count=1
11508         chmod +x $MOUNT/date
11509
11510         $MOUNT/date > /dev/null
11511         ldd $MOUNT/date > /dev/null
11512         rm -f $MOUNT/date
11513 }
11514 run_test 227 "running truncated executable does not cause OOM"
11515
11516 # LU-1512 try to reuse idle OI blocks
11517 test_228a() {
11518         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11519         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11520                 skip "non-ldiskfs backend" && return
11521
11522         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11523         local myDIR=$DIR/$tdir
11524
11525         mkdir -p $myDIR
11526         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11527         $LCTL set_param fail_loc=0x80001002
11528         createmany -o $myDIR/t- 10000
11529         $LCTL set_param fail_loc=0
11530         # The guard is current the largest FID holder
11531         touch $myDIR/guard
11532         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11533                     tr -d '[')
11534         local IDX=$(($SEQ % 64))
11535
11536         do_facet $SINGLEMDS sync
11537         # Make sure journal flushed.
11538         sleep 6
11539         local blk1=$(do_facet $SINGLEMDS \
11540                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11541                      grep Blockcount | awk '{print $4}')
11542
11543         # Remove old files, some OI blocks will become idle.
11544         unlinkmany $myDIR/t- 10000
11545         # Create new files, idle OI blocks should be reused.
11546         createmany -o $myDIR/t- 2000
11547         do_facet $SINGLEMDS sync
11548         # Make sure journal flushed.
11549         sleep 6
11550         local blk2=$(do_facet $SINGLEMDS \
11551                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11552                      grep Blockcount | awk '{print $4}')
11553
11554         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11555 }
11556 run_test 228a "try to reuse idle OI blocks"
11557
11558 test_228b() {
11559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11560         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11561                 skip "non-ldiskfs backend" && return
11562
11563         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11564         local myDIR=$DIR/$tdir
11565
11566         mkdir -p $myDIR
11567         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11568         $LCTL set_param fail_loc=0x80001002
11569         createmany -o $myDIR/t- 10000
11570         $LCTL set_param fail_loc=0
11571         # The guard is current the largest FID holder
11572         touch $myDIR/guard
11573         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11574                     tr -d '[')
11575         local IDX=$(($SEQ % 64))
11576
11577         do_facet $SINGLEMDS sync
11578         # Make sure journal flushed.
11579         sleep 6
11580         local blk1=$(do_facet $SINGLEMDS \
11581                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11582                      grep Blockcount | awk '{print $4}')
11583
11584         # Remove old files, some OI blocks will become idle.
11585         unlinkmany $myDIR/t- 10000
11586
11587         # stop the MDT
11588         stop $SINGLEMDS || error "Fail to stop MDT."
11589         # remount the MDT
11590         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11591
11592         df $MOUNT || error "Fail to df."
11593         # Create new files, idle OI blocks should be reused.
11594         createmany -o $myDIR/t- 2000
11595         do_facet $SINGLEMDS sync
11596         # Make sure journal flushed.
11597         sleep 6
11598         local blk2=$(do_facet $SINGLEMDS \
11599                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11600                      grep Blockcount | awk '{print $4}')
11601
11602         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11603 }
11604 run_test 228b "idle OI blocks can be reused after MDT restart"
11605
11606 #LU-1881
11607 test_228c() {
11608         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11609         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11610                 skip "non-ldiskfs backend" && return
11611
11612         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11613         local myDIR=$DIR/$tdir
11614
11615         mkdir -p $myDIR
11616         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11617         $LCTL set_param fail_loc=0x80001002
11618         # 20000 files can guarantee there are index nodes in the OI file
11619         createmany -o $myDIR/t- 20000
11620         $LCTL set_param fail_loc=0
11621         # The guard is current the largest FID holder
11622         touch $myDIR/guard
11623         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11624                     tr -d '[')
11625         local IDX=$(($SEQ % 64))
11626
11627         do_facet $SINGLEMDS sync
11628         # Make sure journal flushed.
11629         sleep 6
11630         local blk1=$(do_facet $SINGLEMDS \
11631                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11632                      grep Blockcount | awk '{print $4}')
11633
11634         # Remove old files, some OI blocks will become idle.
11635         unlinkmany $myDIR/t- 20000
11636         rm -f $myDIR/guard
11637         # The OI file should become empty now
11638
11639         # Create new files, idle OI blocks should be reused.
11640         createmany -o $myDIR/t- 2000
11641         do_facet $SINGLEMDS sync
11642         # Make sure journal flushed.
11643         sleep 6
11644         local blk2=$(do_facet $SINGLEMDS \
11645                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11646                      grep Blockcount | awk '{print $4}')
11647
11648         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11649 }
11650 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11651
11652 test_229() { # LU-2482, LU-3448
11653         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.53) ] &&
11654                 skip "No HSM support on MDS of $(get_lustre_version)," \
11655                          "need 2.4.53 at least" && return
11656         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11657         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11658
11659         rm -f $DIR/$tfile
11660
11661         # Create a file with a released layout and stripe count 2.
11662         $MULTIOP $DIR/$tfile H2c ||
11663                 error "failed to create file with released layout"
11664
11665         $GETSTRIPE -v $DIR/$tfile
11666
11667         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11668         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11669
11670         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11671         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11672         stat $DIR/$tfile || error "failed to stat released file"
11673
11674         chown $RUNAS_ID $DIR/$tfile ||
11675                 error "chown $RUNAS_ID $DIR/$tfile failed"
11676
11677         chgrp $RUNAS_ID $DIR/$tfile ||
11678                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11679
11680         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11681         rm $DIR/$tfile || error "failed to remove released file"
11682 }
11683 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11684
11685 test_230a() {
11686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11687         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11688         local MDTIDX=1
11689
11690         mkdir -p $DIR/$tdir/test_230_local
11691         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11692         [ $mdt_idx -ne 0 ] &&
11693                 error "create local directory on wrong MDT $mdt_idx"
11694
11695         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11696                         error "create remote directory failed"
11697         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11698         [ $mdt_idx -ne $MDTIDX ] &&
11699                 error "create remote directory on wrong MDT $mdt_idx"
11700
11701         createmany -o $DIR/$tdir/test_230/t- 10 ||
11702                 error "create files on remote directory failed"
11703         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11704         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11705         rm -r $DIR/$tdir || error "unlink remote directory failed"
11706 }
11707 run_test 230a "Create remote directory and files under the remote directory"
11708
11709 test_230b() {
11710         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11711         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11712         local MDTIDX=1
11713         local remote_dir=$DIR/$tdir/remote_dir
11714         local rc=0
11715
11716         mkdir -p $DIR/$tdir
11717         $LFS mkdir -i $MDTIDX $remote_dir ||
11718                 error "create remote directory failed"
11719
11720         $LFS mkdir -i 0 $remote_dir/new_dir &&
11721                 error "nested remote directory create succeed!"
11722
11723         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11724         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11725         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11726
11727         [ $rc -ne 0 ] &&
11728            error "create remote directory failed after set enable_remote_dir"
11729
11730         rm -rf $remote_dir || error "first unlink remote directory failed"
11731
11732         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11733                                                         error "chown worked"
11734
11735         do_facet mds$MDTIDX lctl set_param \
11736                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11737         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11738         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11739
11740         [ $rc -ne 0 ] &&
11741            error "create remote dir failed after set enable_remote_dir_gid"
11742
11743         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11744 }
11745 run_test 230b "nested remote directory should be failed"
11746
11747 test_231a()
11748 {
11749         # For simplicity this test assumes that max_pages_per_rpc
11750         # is the same across all OSCs
11751         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11752         local bulk_size=$((max_pages * 4096))
11753
11754         mkdir -p $DIR/$tdir
11755
11756         # clear the OSC stats
11757         $LCTL set_param osc.*.stats=0 &>/dev/null
11758
11759         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11760         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11761                 oflag=direct &>/dev/null || error "dd failed"
11762
11763         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11764         if [ x$nrpcs != "x1" ]; then
11765                 error "found $nrpc ost_write RPCs, not 1 as expected"
11766         fi
11767
11768         # Drop the OSC cache, otherwise we will read from it
11769         cancel_lru_locks osc
11770
11771         # clear the OSC stats
11772         $LCTL set_param osc.*.stats=0 &>/dev/null
11773
11774         # Client reads $bulk_size.
11775         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11776                 iflag=direct &>/dev/null || error "dd failed"
11777
11778         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11779         if [ x$nrpcs != "x1" ]; then
11780                 error "found $nrpc ost_read RPCs, not 1 as expected"
11781         fi
11782 }
11783 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11784
11785 test_231b() {
11786         mkdir -p $DIR/$tdir
11787         local i
11788         for i in {0..1023}; do
11789                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11790                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11791                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11792         done
11793         sync
11794 }
11795 run_test 231b "must not assert on fully utilized OST request buffer"
11796
11797 test_232() {
11798         mkdir -p $DIR/$tdir
11799         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11800         $LCTL set_param fail_loc=0x31c
11801
11802         # ignore dd failure
11803         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11804
11805         $LCTL set_param fail_loc=0
11806         umount_client $MOUNT || error "umount failed"
11807         mount_client $MOUNT || error "mount failed"
11808 }
11809 run_test 232 "failed lock should not block umount"
11810
11811 test_233a() {
11812         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11813         { skip "Need MDS version at least 2.3.64"; return; }
11814
11815         local fid=$($LFS path2fid $MOUNT)
11816         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11817                 error "cannot access $MOUNT using its FID '$fid'"
11818 }
11819 run_test 233a "checking that OBF of the FS root succeeds"
11820
11821 test_233b() {
11822         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.5.90) ] ||
11823         { skip "Need MDS version at least 2.5.90"; return; }
11824
11825         local fid=$($LFS path2fid $MOUNT/.lustre)
11826         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11827                 error "cannot access $MOUNT/.lustre using its FID '$fid'"
11828
11829         fid=$($LFS path2fid $MOUNT/.lustre/fid)
11830         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11831                 error "cannot access $MOUNT/.lustre/fid using its FID '$fid'"
11832 }
11833 run_test 233b "checking that OBF of the FS .lustre succeeds"
11834
11835 test_234() {
11836         local p="$TMP/sanityN-$TESTNAME.parameters"
11837         save_lustre_params client "llite.*.xattr_cache" > $p
11838         lctl set_param llite.*.xattr_cache 1 ||
11839                 { skip "xattr cache is not supported"; return 0; }
11840
11841         mkdir -p $DIR/$tdir || error "mkdir failed"
11842         touch $DIR/$tdir/$tfile || error "touch failed"
11843         # OBD_FAIL_LLITE_XATTR_ENOMEM
11844         $LCTL set_param fail_loc=0x1405
11845         if [ ! -f /etc/SuSE-release ]; then
11846                 # attr pre-2.4.44-7 had a bug with rc
11847                 # LU-3703 - SLES clients have older attr
11848                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11849                         error "getfattr should have failed with ENOMEM"
11850         fi
11851         $LCTL set_param fail_loc=0x0
11852         rm -rf $DIR/$tdir
11853
11854         restore_lustre_params < $p
11855         rm -f $p
11856 }
11857 run_test 234 "xattr cache should not crash on ENOMEM"
11858
11859 test_235() {
11860          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11861                 skip "Need MDS version at least 2.4.52" && return
11862         flock_deadlock $DIR/$tfile
11863         local RC=$?
11864         case $RC in
11865                 0)
11866                 ;;
11867                 124) error "process hangs on a deadlock"
11868                 ;;
11869                 *) error "error executing flock_deadlock $DIR/$tfile"
11870                 ;;
11871         esac
11872 }
11873 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11874
11875 #LU-2935
11876 test_236() {
11877         check_swap_layouts_support && return 0
11878         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11879
11880         local ref1=/etc/passwd
11881         local ref2=/etc/group
11882         local file1=$DIR/$tdir/f1
11883         local file2=$DIR/$tdir/f2
11884
11885         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11886         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11887         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11888         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11889         local fd=$(free_fd)
11890         local cmd="exec $fd<>$file2"
11891         eval $cmd
11892         rm $file2
11893         $LFS swap_layouts $file1 /proc/self/fd/${fd} ||
11894                 error "cannot swap layouts of '$file1' and /proc/self/fd/${fd}"
11895         cmd="exec $fd>&-"
11896         eval $cmd
11897         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11898
11899         #cleanup
11900         rm -rf $DIR/$tdir
11901 }
11902 run_test 236 "Layout swap on open unlinked file"
11903
11904 #
11905 # tests that do cleanup/setup should be run at the end
11906 #
11907
11908 test_900() {
11909         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11910         local ls
11911         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11912         $LCTL set_param fail_loc=0x903
11913         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11914         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11915                 echo "clear" > $ls
11916         done
11917         FAIL_ON_ERROR=true cleanup
11918         FAIL_ON_ERROR=true setup
11919 }
11920 run_test 900 "umount should not race with any mgc requeue thread"
11921
11922 complete $SECONDS
11923 check_and_cleanup_lustre
11924 if [ "$I_MOUNTED" != "yes" ]; then
11925         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11926 fi
11927 exit_status