Whamcloud - gitweb
LU-797 tests: improve test_23b of ost-pools.sh
[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="                27u   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 # Tests that fail on uml
21 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
22 #                                    buffer i/o errs             sock spc runas
23 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101a"
24
25 SRCDIR=$(cd $(dirname $0); echo $PWD)
26 export PATH=$PATH:/sbin
27
28 TMP=${TMP:-/tmp}
29
30 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
31 CREATETEST=${CREATETEST:-createtest}
32 LFS=${LFS:-lfs}
33 LFIND=${LFIND:-"$LFS find"}
34 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
35 LCTL=${LCTL:-lctl}
36 MCREATE=${MCREATE:-mcreate}
37 OPENFILE=${OPENFILE:-openfile}
38 OPENUNLINK=${OPENUNLINK:-openunlink}
39 export MULTIOP=${MULTIOP:-multiop}
40 READS=${READS:-"reads"}
41 MUNLINK=${MUNLINK:-munlink}
42 SOCKETSERVER=${SOCKETSERVER:-socketserver}
43 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
44 MEMHOG=${MEMHOG:-memhog}
45 DIRECTIO=${DIRECTIO:-directio}
46 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
47 UMOUNT=${UMOUNT:-"umount -d"}
48 STRIPES_PER_OBJ=-1
49 CHECK_GRANT=${CHECK_GRANT:-"yes"}
50 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
51
52 export NAME=${NAME:-local}
53
54 SAVE_PWD=$PWD
55
56 CLEANUP=${CLEANUP:-:}
57 SETUP=${SETUP:-:}
58 TRACE=${TRACE:-""}
59 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
60 . $LUSTRE/tests/test-framework.sh
61 init_test_env $@
62 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
63 init_logging
64
65 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 60c 63 64b 68 71 73 77f 78 101a 103 115 120g 124b"
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 if [ "$ONLY" == "cleanup" ]; then
93        sh llmountcleanup.sh
94        exit 0
95 fi
96
97 check_and_setup_lustre
98
99 DIR=${DIR:-$MOUNT}
100 assert_DIR
101
102 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
103     awk '{gsub(/_UUID/,""); print $1}' | head -1)
104 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
105 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
106 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
107 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
108 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
109 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
110
111 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
112 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
113 rm -rf $DIR/[Rdfs][0-9]*
114
115 # $RUNAS_ID may get set incorrectly somewhere else
116 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
117
118 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
119
120 build_test_filter
121
122 if [ "${ONLY}" = "MOUNT" ] ; then
123         echo "Lustre is up, please go on"
124         exit
125 fi
126
127 echo "preparing for tests involving mounts"
128 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
129 touch $EXT2_DEV
130 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
131 echo # add a newline after mke2fs.
132
133 umask 077
134
135 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
136 lctl set_param debug=-1 2> /dev/null || true
137 test_0() {
138         touch $DIR/$tfile
139         $CHECKSTAT -t file $DIR/$tfile || error
140         rm $DIR/$tfile
141         $CHECKSTAT -a $DIR/$tfile || error
142 }
143 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
144
145 test_0b() {
146         chmod 0755 $DIR || error
147         $CHECKSTAT -p 0755 $DIR || error
148 }
149 run_test 0b "chmod 0755 $DIR ============================="
150
151 test_0c() {
152     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
153     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
154 }
155 run_test 0c "check import proc ============================="
156
157 test_1a() {
158         mkdir $DIR/d1
159         mkdir $DIR/d1/d2
160         mkdir $DIR/d1/d2 && error "we expect EEXIST, but not returned"
161         $CHECKSTAT -t dir $DIR/d1/d2 || error
162 }
163 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
164
165 test_1b() {
166         rmdir $DIR/d1/d2
167         rmdir $DIR/d1
168         $CHECKSTAT -a $DIR/d1 || error
169 }
170 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
171
172 test_2a() {
173         mkdir $DIR/d2
174         touch $DIR/d2/f
175         $CHECKSTAT -t file $DIR/d2/f || error
176 }
177 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
178
179 test_2b() {
180         rm -r $DIR/d2
181         $CHECKSTAT -a $DIR/d2 || error
182 }
183 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
184
185 test_3a() {
186         mkdir $DIR/d3
187         $CHECKSTAT -t dir $DIR/d3 || error
188 }
189 run_test 3a "mkdir .../d3 ======================================"
190
191 test_3b() {
192         if [ ! -d $DIR/d3 ]; then
193                 mkdir $DIR/d3
194         fi
195         touch $DIR/d3/f
196         $CHECKSTAT -t file $DIR/d3/f || error
197 }
198 run_test 3b "touch .../d3/f ===================================="
199
200 test_3c() {
201         rm -r $DIR/d3
202         $CHECKSTAT -a $DIR/d3 || error
203 }
204 run_test 3c "rm -r .../d3 ======================================"
205
206 test_4a() {
207         mkdir $DIR/d4
208         $CHECKSTAT -t dir $DIR/d4 || error
209 }
210 run_test 4a "mkdir .../d4 ======================================"
211
212 test_4b() {
213         if [ ! -d $DIR/d4 ]; then
214                 mkdir $DIR/d4
215         fi
216         mkdir $DIR/d4/d2
217         $CHECKSTAT -t dir $DIR/d4/d2 || error
218 }
219 run_test 4b "mkdir .../d4/d2 ==================================="
220
221 test_5() {
222         mkdir $DIR/d5
223         mkdir $DIR/d5/d2
224         chmod 0707 $DIR/d5/d2
225         $CHECKSTAT -t dir -p 0707 $DIR/d5/d2 || error
226 }
227 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
228
229 test_6a() {
230         touch $DIR/f6a
231         chmod 0666 $DIR/f6a || error
232         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
233 }
234 run_test 6a "touch .../f6a; chmod .../f6a ======================"
235
236 test_6b() {
237         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
238         if [ ! -f $DIR/f6a ]; then
239                 touch $DIR/f6a
240                 chmod 0666 $DIR/f6a
241         fi
242         $RUNAS chmod 0444 $DIR/f6a && error
243         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/f6a || error
244 }
245 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
246
247 test_6c() {
248         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
249         touch $DIR/f6c
250         chown $RUNAS_ID $DIR/f6c || error
251         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
252 }
253 run_test 6c "touch .../f6c; chown .../f6c ======================"
254
255 test_6d() {
256         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
257         if [ ! -f $DIR/f6c ]; then
258                 touch $DIR/f6c
259                 chown $RUNAS_ID $DIR/f6c
260         fi
261         $RUNAS chown $UID $DIR/f6c && error
262         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/f6c || error
263 }
264 run_test 6d "$RUNAS chown .../f6c (should return error) =="
265
266 test_6e() {
267         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
268         touch $DIR/f6e
269         chgrp $RUNAS_ID $DIR/f6e || error
270         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
271 }
272 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
273
274 test_6f() {
275         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
276         if [ ! -f $DIR/f6e ]; then
277                 touch $DIR/f6e
278                 chgrp $RUNAS_ID $DIR/f6e
279         fi
280         $RUNAS chgrp $UID $DIR/f6e && error
281         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/f6e || error
282 }
283 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
284
285 test_6g() {
286         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
287         mkdir $DIR/d6g || error
288         chmod 777 $DIR/d6g || error
289         $RUNAS mkdir $DIR/d6g/d || error
290         chmod g+s $DIR/d6g/d || error
291         mkdir $DIR/d6g/d/subdir
292         $CHECKSTAT -g \#$RUNAS_GID $DIR/d6g/d/subdir || error
293 }
294 run_test 6g "Is new dir in sgid dir inheriting group?"
295
296 test_6h() { # bug 7331
297         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
298         touch $DIR/f6h || error "touch failed"
299         chown $RUNAS_ID:$RUNAS_GID $DIR/f6h || error "initial chown failed"
300         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/f6h && error "chown worked"
301         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/f6h || error
302 }
303 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
304
305 test_7a() {
306         mkdir $DIR/d7
307         $MCREATE $DIR/d7/f
308         chmod 0666 $DIR/d7/f
309         $CHECKSTAT -t file -p 0666 $DIR/d7/f || error
310 }
311 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
312
313 test_7b() {
314         if [ ! -d $DIR/d7 ]; then
315                 mkdir $DIR/d7
316         fi
317         $MCREATE $DIR/d7/f2
318         echo -n foo > $DIR/d7/f2
319         [ "`cat $DIR/d7/f2`" = "foo" ] || error
320         $CHECKSTAT -t file -s 3 $DIR/d7/f2 || error
321 }
322 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
323
324 test_8() {
325         mkdir $DIR/d8
326         touch $DIR/d8/f
327         chmod 0666 $DIR/d8/f
328         $CHECKSTAT -t file -p 0666 $DIR/d8/f || error
329 }
330 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
331
332 test_9() {
333         mkdir $DIR/d9
334         mkdir $DIR/d9/d2
335         mkdir $DIR/d9/d2/d3
336         $CHECKSTAT -t dir $DIR/d9/d2/d3 || error
337 }
338 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
339
340 test_10() {
341         mkdir $DIR/d10
342         mkdir $DIR/d10/d2
343         touch $DIR/d10/d2/f
344         $CHECKSTAT -t file $DIR/d10/d2/f || error
345 }
346 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
347
348 test_11() {
349         mkdir $DIR/d11
350         mkdir $DIR/d11/d2
351         chmod 0666 $DIR/d11/d2
352         chmod 0705 $DIR/d11/d2
353         $CHECKSTAT -t dir -p 0705 $DIR/d11/d2 || error
354 }
355 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
356
357 test_12() {
358         mkdir $DIR/d12
359         touch $DIR/d12/f
360         chmod 0666 $DIR/d12/f
361         chmod 0654 $DIR/d12/f
362         $CHECKSTAT -t file -p 0654 $DIR/d12/f || error
363 }
364 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
365
366 test_13() {
367         mkdir $DIR/d13
368         dd if=/dev/zero of=$DIR/d13/f count=10
369         >  $DIR/d13/f
370         $CHECKSTAT -t file -s 0 $DIR/d13/f || error
371 }
372 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
373
374 test_14() {
375         mkdir $DIR/d14
376         touch $DIR/d14/f
377         rm $DIR/d14/f
378         $CHECKSTAT -a $DIR/d14/f || error
379 }
380 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
381
382 test_15() {
383         mkdir $DIR/d15
384         touch $DIR/d15/f
385         mv $DIR/d15/f $DIR/d15/f2
386         $CHECKSTAT -t file $DIR/d15/f2 || error
387 }
388 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
389
390 test_16() {
391         mkdir $DIR/d16
392         touch $DIR/d16/f
393         rm -rf $DIR/d16/f
394         $CHECKSTAT -a $DIR/d16/f || error
395 }
396 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
397
398 test_17a() {
399         mkdir -p $DIR/d17
400         touch $DIR/d17/f
401         ln -s $DIR/d17/f $DIR/d17/l-exist
402         ls -l $DIR/d17
403         $CHECKSTAT -l $DIR/d17/f $DIR/d17/l-exist || error
404         $CHECKSTAT -f -t f $DIR/d17/l-exist || error
405         rm -f $DIR/d17/l-exist
406         $CHECKSTAT -a $DIR/d17/l-exist || error
407 }
408 run_test 17a "symlinks: create, remove (real) =================="
409
410 test_17b() {
411         mkdir -p $DIR/d17
412         ln -s no-such-file $DIR/d17/l-dangle
413         ls -l $DIR/d17
414         $CHECKSTAT -l no-such-file $DIR/d17/l-dangle || error
415         $CHECKSTAT -fa $DIR/d17/l-dangle || error
416         rm -f $DIR/d17/l-dangle
417         $CHECKSTAT -a $DIR/d17/l-dangle || error
418 }
419 run_test 17b "symlinks: create, remove (dangling) =============="
420
421 test_17c() { # bug 3440 - don't save failed open RPC for replay
422         mkdir -p $DIR/d17
423         ln -s foo $DIR/d17/f17c
424         cat $DIR/d17/f17c && error "opened non-existent symlink" || true
425 }
426 run_test 17c "symlinks: open dangling (should return error) ===="
427
428 test_17d() {
429         mkdir -p $DIR/d17
430         ln -s foo $DIR/d17/f17d
431         touch $DIR/d17/f17d || error "creating to new symlink"
432 }
433 run_test 17d "symlinks: create dangling ========================"
434
435 test_17e() {
436         mkdir -p $DIR/$tdir
437         local foo=$DIR/$tdir/$tfile
438         ln -s $foo $foo || error "create symlink failed"
439         ls -l $foo || error "ls -l failed"
440         ls $foo && error "ls not failed" || true
441 }
442 run_test 17e "symlinks: create recursive symlink (should return error) ===="
443
444 test_17f() {
445         mkdir -p $DIR/d17f
446         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
447         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
448         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
451         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
452         ls -l  $DIR/d17f
453 }
454 run_test 17f "symlinks: long and very long symlink name ========================"
455
456 # str_repeat(S, N) generate a string that is string S repeated N times
457 str_repeat() {
458         local s=$1
459         local n=$2
460         local ret=''
461         while [ $((n -= 1)) -ge 0 ]; do
462                 ret=$ret$s
463         done
464         echo $ret
465 }
466
467 # Long symlinks and LU-2241
468 test_17g() {
469         mkdir -p $DIR/$tdir
470         local TESTS="59 60 61 4094 4095"
471
472         for i in $TESTS; do
473                 local SYMNAME=$(str_repeat 'x' $i)
474                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
475                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
476         done
477 }
478 run_test 17g "symlinks: really long symlink name and inode boundaries"
479
480 test_17h() { #bug 17378
481         remote_mds_nodsh && skip "remote MDS with nodsh" && return
482         mkdir -p $DIR/$tdir
483         $SETSTRIPE -c -1 $DIR/$tdir
484 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
485         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000141
486         touch $DIR/$tdir/$tfile || true
487 }
488 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
489
490 test_17i() { #bug 20018
491         remote_mds_nodsh && skip "remote MDS with nodsh" && return
492         mkdir -p $DIR/$tdir
493         local foo=$DIR/$tdir/$tfile
494         ln -s $foo $foo || error "create symlink failed"
495 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
496         do_facet $SINGLEMDS lctl set_param fail_loc=0x80000143
497         ls -l $foo && error "error not detected"
498         return 0
499 }
500 run_test 17i "don't panic on short symlink"
501
502 test_17k() { #bug 22301
503         rsync --help | grep -q xattr ||
504                 skip_env "$(rsync --version| head -1) does not support xattrs"
505         mkdir -p $DIR/{$tdir,$tdir.new}
506         touch $DIR/$tdir/$tfile
507         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
508         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
509                 error "rsync failed with xattrs enabled"
510 }
511 run_test 17k "symlinks: rsync with xattrs enabled ========================="
512
513 test_17l() { # LU-279
514         mkdir -p $DIR/$tdir
515         touch $DIR/$tdir/$tfile
516         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
517         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
518                 # -h to not follow symlinks. -m '' to list all the xattrs.
519                 # grep to remove first line: '# file: $path'.
520                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
521                 do
522                         lgetxattr_size_check $path $xattr ||
523                                 error "lgetxattr_size_check $path $xattr failed"
524                 done
525         done
526 }
527 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
528
529 # LU-1540
530 test_17m() {
531         local short_sym="0123456789"
532         local WDIR=$DIR/${tdir}m
533         local mds_index
534         local devname
535         local cmd
536         local i
537         local rc=0
538
539         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
540         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
541                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
542
543         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
544                 skip "only for ldiskfs MDT" && return 0
545
546         mkdir -p $WDIR
547         long_sym=$short_sym
548         # create a long symlink file
549         for ((i = 0; i < 4; ++i)); do
550                 long_sym=${long_sym}${long_sym}
551         done
552
553         echo "create 512 short and long symlink files under $WDIR"
554         for ((i = 0; i < 256; ++i)); do
555                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
556                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
557         done
558
559         echo "erase them"
560         rm -f $WDIR/*
561         sync
562         wait_delete_completed
563
564         echo "recreate the 512 symlink files with a shorter string"
565         for ((i = 0; i < 512; ++i)); do
566                 # rewrite the symlink file with a shorter string
567                 ln -sf ${long_sym} $WDIR/long-$i
568                 ln -sf ${short_sym} $WDIR/short-$i
569         done
570
571         mds_index=$($LFS getstripe -M $WDIR)
572         mds_index=$((mds_index+1))
573         devname=$(mdsdevname $mds_index)
574         cmd="$E2FSCK -fnvd $devname"
575
576         echo "stop and checking mds${mds_index}: $cmd"
577         # e2fsck should not return error
578         stop mds${mds_index} -f
579         do_facet mds${mds_index} $cmd || rc=$?
580
581         start mds${mds_index} $devname $MDS_MOUNT_OPTS
582         df $MOUNT > /dev/null 2>&1
583         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
584                 "short/long symlink MDT: rc=$rc"
585         return $rc
586 }
587 run_test 17m "run e2fsck against MDT which contains short/long symlink"
588
589 test_18() {
590         touch $DIR/f
591         ls $DIR || error
592 }
593 run_test 18 "touch .../f ; ls ... =============================="
594
595 test_19a() {
596         touch $DIR/f19
597         ls -l $DIR
598         rm $DIR/f19
599         $CHECKSTAT -a $DIR/f19 || error
600 }
601 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
602
603 test_19b() {
604         ls -l $DIR/f19 && error || true
605 }
606 run_test 19b "ls -l .../f19 (should return error) =============="
607
608 test_19c() {
609         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
610         $RUNAS touch $DIR/f19 && error || true
611 }
612 run_test 19c "$RUNAS touch .../f19 (should return error) =="
613
614 test_19d() {
615         cat $DIR/f19 && error || true
616 }
617 run_test 19d "cat .../f19 (should return error) =============="
618
619 test_20() {
620         touch $DIR/f
621         rm $DIR/f
622         log "1 done"
623         touch $DIR/f
624         rm $DIR/f
625         log "2 done"
626         touch $DIR/f
627         rm $DIR/f
628         log "3 done"
629         $CHECKSTAT -a $DIR/f || error
630 }
631 run_test 20 "touch .../f ; ls -l ... ==========================="
632
633 test_21() {
634         mkdir $DIR/d21
635         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
636         ln -s dangle $DIR/d21/link
637         echo foo >> $DIR/d21/link
638         cat $DIR/d21/dangle
639         $CHECKSTAT -t link $DIR/d21/link || error
640         $CHECKSTAT -f -t file $DIR/d21/link || error
641 }
642 run_test 21 "write to dangling link ============================"
643
644 test_22() {
645         WDIR=$DIR/$tdir
646         mkdir -p $WDIR
647         chown $RUNAS_ID:$RUNAS_GID $WDIR
648         (cd $WDIR || error "cd $WDIR failed";
649         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
650         $RUNAS tar xf -)
651         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
652         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
653         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
654 }
655 run_test 22 "unpack tar archive as non-root user ==============="
656
657 # was test_23
658 test_23a() {
659         mkdir -p $DIR/$tdir
660         local file=$DIR/$tdir/$tfile
661
662         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
663         openfile -f O_CREAT:O_EXCL $file &&
664                 error "$file recreate succeeded" || true
665 }
666 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
667
668 test_23b() { # bug 18988
669         mkdir -p $DIR/$tdir
670         local file=$DIR/$tdir/$tfile
671
672         rm -f $file
673         echo foo > $file || error "write filed"
674         echo bar >> $file || error "append filed"
675         $CHECKSTAT -s 8 $file || error "wrong size"
676         rm $file
677 }
678 run_test 23b "O_APPEND check =========================="
679
680 test_24a() {
681         echo '== rename sanity =============================================='
682         echo '-- same directory rename'
683         mkdir $DIR/R1
684         touch $DIR/R1/f
685         mv $DIR/R1/f $DIR/R1/g
686         $CHECKSTAT -t file $DIR/R1/g || error
687 }
688 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
689
690 test_24b() {
691         mkdir $DIR/R2
692         touch $DIR/R2/{f,g}
693         mv $DIR/R2/f $DIR/R2/g
694         $CHECKSTAT -a $DIR/R2/f || error
695         $CHECKSTAT -t file $DIR/R2/g || error
696 }
697 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
698
699 test_24c() {
700         mkdir $DIR/R3
701         mkdir $DIR/R3/f
702         mv $DIR/R3/f $DIR/R3/g
703         $CHECKSTAT -a $DIR/R3/f || error
704         $CHECKSTAT -t dir $DIR/R3/g || error
705 }
706 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
707
708 test_24d() {
709         mkdir $DIR/R4
710         mkdir $DIR/R4/{f,g}
711         mrename $DIR/R4/f $DIR/R4/g
712         $CHECKSTAT -a $DIR/R4/f || error
713         $CHECKSTAT -t dir $DIR/R4/g || error
714 }
715 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
716
717 test_24e() {
718         echo '-- cross directory renames --'
719         mkdir $DIR/R5{a,b}
720         touch $DIR/R5a/f
721         mv $DIR/R5a/f $DIR/R5b/g
722         $CHECKSTAT -a $DIR/R5a/f || error
723         $CHECKSTAT -t file $DIR/R5b/g || error
724 }
725 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
726
727 test_24f() {
728         mkdir $DIR/R6{a,b}
729         touch $DIR/R6a/f $DIR/R6b/g
730         mv $DIR/R6a/f $DIR/R6b/g
731         $CHECKSTAT -a $DIR/R6a/f || error
732         $CHECKSTAT -t file $DIR/R6b/g || error
733 }
734 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
735
736 test_24g() {
737         mkdir $DIR/R7{a,b}
738         mkdir $DIR/R7a/d
739         mv $DIR/R7a/d $DIR/R7b/e
740         $CHECKSTAT -a $DIR/R7a/d || error
741         $CHECKSTAT -t dir $DIR/R7b/e || error
742 }
743 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
744
745 test_24h() {
746         mkdir $DIR/R8{a,b}
747         mkdir $DIR/R8a/d $DIR/R8b/e
748         mrename $DIR/R8a/d $DIR/R8b/e
749         $CHECKSTAT -a $DIR/R8a/d || error
750         $CHECKSTAT -t dir $DIR/R8b/e || error
751 }
752 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
753
754 test_24i() {
755         echo "-- rename error cases"
756         mkdir $DIR/R9
757         mkdir $DIR/R9/a
758         touch $DIR/R9/f
759         mrename $DIR/R9/f $DIR/R9/a
760         $CHECKSTAT -t file $DIR/R9/f || error
761         $CHECKSTAT -t dir  $DIR/R9/a || error
762         $CHECKSTAT -a $DIR/R9/a/f || error
763 }
764 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
765
766 test_24j() {
767         mkdir $DIR/R10
768         mrename $DIR/R10/f $DIR/R10/g
769         $CHECKSTAT -t dir $DIR/R10 || error
770         $CHECKSTAT -a $DIR/R10/f || error
771         $CHECKSTAT -a $DIR/R10/g || error
772 }
773 run_test 24j "source does not exist ============================"
774
775 test_24k() {
776         mkdir $DIR/R11a $DIR/R11a/d
777         touch $DIR/R11a/f
778         mv $DIR/R11a/f $DIR/R11a/d
779         $CHECKSTAT -a $DIR/R11a/f || error
780         $CHECKSTAT -t file $DIR/R11a/d/f || error
781 }
782 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
783
784 # bug 2429 - rename foo foo foo creates invalid file
785 test_24l() {
786         f="$DIR/f24l"
787         $MULTIOP $f OcNs || error
788 }
789 run_test 24l "Renaming a file to itself ========================"
790
791 test_24m() {
792         f="$DIR/f24m"
793         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
794         # on ext3 this does not remove either the source or target files
795         # though the "expected" operation would be to remove the source
796         $CHECKSTAT -t file ${f} || error "${f} missing"
797         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
798 }
799 run_test 24m "Renaming a file to a hard link to itself ========="
800
801 test_24n() {
802     f="$DIR/f24n"
803     # this stats the old file after it was renamed, so it should fail
804     touch ${f}
805     $CHECKSTAT ${f}
806     mv ${f} ${f}.rename
807     $CHECKSTAT ${f}.rename
808     $CHECKSTAT -a ${f}
809 }
810 run_test 24n "Statting the old file after renaming (Posix rename 2)"
811
812 test_24o() {
813         check_kernel_version 37 || return 0
814         mkdir -p $DIR/d24o
815         rename_many -s random -v -n 10 $DIR/d24o
816 }
817 run_test 24o "rename of files during htree split ==============="
818
819 test_24p() {
820         mkdir $DIR/R12{a,b}
821         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
822         mrename $DIR/R12a $DIR/R12b
823         $CHECKSTAT -a $DIR/R12a || error
824         $CHECKSTAT -t dir $DIR/R12b || error
825         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
826         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
827 }
828 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
829
830 test_24q() {
831         mkdir $DIR/R13{a,b}
832         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
833         multiop_bg_pause $DIR/R13b D_c || return 1
834         MULTIPID=$!
835
836         mrename $DIR/R13a $DIR/R13b
837         $CHECKSTAT -a $DIR/R13a || error
838         $CHECKSTAT -t dir $DIR/R13b || error
839         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
840         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
841         kill -USR1 $MULTIPID
842         wait $MULTIPID || error "multiop close failed"
843 }
844 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
845
846 test_24r() { #bug 3789
847         mkdir $DIR/R14a $DIR/R14a/b
848         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
849         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
850         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
851 }
852 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
853
854 test_24s() {
855         mkdir $DIR/R15a $DIR/R15a/b $DIR/R15a/b/c
856         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
857         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
858         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
859 }
860 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
861 test_24t() {
862         mkdir $DIR/R16a $DIR/R16a/b $DIR/R16a/b/c
863         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
864         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
865         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
866 }
867 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
868
869 test_24u() { # bug12192
870         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
871         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
872 }
873 run_test 24u "create stripe file"
874
875 page_size() {
876         getconf PAGE_SIZE
877 }
878
879 simple_cleanup_common() {
880         trap 0
881         rm -rf $DIR/$tdir
882         wait_delete_completed
883 }
884
885 test_24v() {
886         local NRFILES=100000
887         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
888         [ $FREE_INODES -lt $NRFILES ] && \
889                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
890                 return
891
892         trap simple_cleanup_common EXIT
893
894         mkdir -p $DIR/$tdir
895         createmany -m $DIR/$tdir/$tfile $NRFILES
896
897         cancel_lru_locks mdc
898         lctl set_param mdc.*.stats clear
899
900         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
901
902         # LU-5 large readdir
903         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
904         #               8 bytes for name(filename is mostly 5 in this test) +
905         #               8 bytes for luda_type
906         # take into account of overhead in lu_dirpage header and end mark in
907         # each page, plus one in RPC_NUM calculation.
908         DIRENT_SIZE=48
909         RPC_SIZE=$(($(lctl get_param -n mdc.*.max_pages_per_rpc)*$(page_size)))
910         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
911         mds_readpage=`lctl get_param mdc.*.stats | \
912                                 awk '/^mds_readpage/ {print $2}'`
913         [ $mds_readpage -gt $RPC_NUM ] && \
914                 error "large readdir doesn't take effect"
915
916         simple_cleanup_common
917 }
918 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
919
920 test_24w() { # bug21506
921         SZ1=234852
922         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
923         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
924         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
925         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
926         [ "$SZ1" = "$SZ2" ] || \
927                 error "Error reading at the end of the file $tfile"
928 }
929 run_test 24w "Reading a file larger than 4Gb"
930
931 test_25a() {
932         echo '== symlink sanity ============================================='
933
934         mkdir $DIR/d25
935         ln -s d25 $DIR/s25
936         touch $DIR/s25/foo || error
937 }
938 run_test 25a "create file in symlinked directory ==============="
939
940 test_25b() {
941         [ ! -d $DIR/d25 ] && test_25a
942         $CHECKSTAT -t file $DIR/s25/foo || error
943 }
944 run_test 25b "lookup file in symlinked directory ==============="
945
946 test_26a() {
947         mkdir $DIR/d26
948         mkdir $DIR/d26/d26-2
949         ln -s d26/d26-2 $DIR/s26
950         touch $DIR/s26/foo || error
951 }
952 run_test 26a "multiple component symlink ======================="
953
954 test_26b() {
955         mkdir -p $DIR/d26b/d26-2
956         ln -s d26b/d26-2/foo $DIR/s26-2
957         touch $DIR/s26-2 || error
958 }
959 run_test 26b "multiple component symlink at end of lookup ======"
960
961 test_26c() {
962         mkdir $DIR/d26.2
963         touch $DIR/d26.2/foo
964         ln -s d26.2 $DIR/s26.2-1
965         ln -s s26.2-1 $DIR/s26.2-2
966         ln -s s26.2-2 $DIR/s26.2-3
967         chmod 0666 $DIR/s26.2-3/foo
968 }
969 run_test 26c "chain of symlinks ================================"
970
971 # recursive symlinks (bug 439)
972 test_26d() {
973         ln -s d26-3/foo $DIR/d26-3
974 }
975 run_test 26d "create multiple component recursive symlink ======"
976
977 test_26e() {
978         [ ! -h $DIR/d26-3 ] && test_26d
979         rm $DIR/d26-3
980 }
981 run_test 26e "unlink multiple component recursive symlink ======"
982
983 # recursive symlinks (bug 7022)
984 test_26f() {
985         mkdir -p $DIR/$tdir
986         mkdir $DIR/$tdir/$tfile        || error "mkdir $DIR/$tdir/$tfile failed"
987         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
988         mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
989         mkdir $tfile             || error "mkdir $tfile failed"
990         cd $tfile                || error "cd $tfile failed"
991         ln -s .. dotdot          || error "ln dotdot failed"
992         ln -s dotdot/lndir lndir || error "ln lndir failed"
993         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
994         output=`ls $tfile/$tfile/lndir/bar1`
995         [ "$output" = bar1 ] && error "unexpected output"
996         rm -r $tfile             || error "rm $tfile failed"
997         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
998 }
999 run_test 26f "rm -r of a directory which has recursive symlink ="
1000
1001 test_27a() {
1002         echo '== stripe sanity =============================================='
1003         mkdir -p $DIR/d27 || error "mkdir failed"
1004         $GETSTRIPE $DIR/d27
1005         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1006         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1007         pass
1008         log "== test_27a: write to one stripe file ========================="
1009         cp /etc/hosts $DIR/d27/f0 || error
1010 }
1011 run_test 27a "one stripe file =================================="
1012
1013 test_27b() {
1014         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1015         mkdir -p $DIR/d27
1016         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1017         $GETSTRIPE -c $DIR/d27/f01
1018         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1019                 error "two-stripe file doesn't have two stripes"
1020 }
1021 run_test 27b "create two stripe file"
1022
1023 test_27c() {
1024         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1025
1026         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1027 }
1028 run_test 27c "write to two stripe file"
1029
1030 test_27d() {
1031         mkdir -p $DIR/d27
1032         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1033         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1034         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1035 }
1036 run_test 27d "create file with default settings ================"
1037
1038 test_27e() {
1039         mkdir -p $DIR/d27
1040         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1041         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1042         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1043 }
1044 run_test 27e "setstripe existing file (should return error) ======"
1045
1046 test_27f() {
1047         mkdir -p $DIR/d27
1048         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1049         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1050         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1051 }
1052 run_test 27f "setstripe with bad stripe size (should return error)"
1053
1054 test_27g() {
1055         mkdir -p $DIR/d27
1056         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1057         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1058                 error "$DIR/d27/fnone has object"
1059 }
1060 run_test 27g "$GETSTRIPE with no objects"
1061
1062 test_27i() {
1063         touch $DIR/d27/fsome || error "touch failed"
1064         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1065 }
1066 run_test 27i "$GETSTRIPE with some objects"
1067
1068 test_27j() {
1069         mkdir -p $DIR/d27
1070         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1071 }
1072 run_test 27j "setstripe with bad stripe offset (should return error)"
1073
1074 test_27k() { # bug 2844
1075         mkdir -p $DIR/d27
1076         FILE=$DIR/d27/f27k
1077         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1078         [ ! -d $DIR/d27 ] && mkdir -p $DIR/d27
1079         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1080         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1081         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1082         dd if=/dev/zero of=$FILE bs=4k count=1
1083         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1084         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1085 }
1086 run_test 27k "limit i_blksize for broken user apps ============="
1087
1088 test_27l() {
1089         mkdir -p $DIR/d27
1090         mcreate $DIR/f27l || error "creating file"
1091         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1092                 error "setstripe should have failed" || true
1093 }
1094 run_test 27l "check setstripe permissions (should return error)"
1095
1096 test_27m() {
1097         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1098                 return
1099         if [ $ORIGFREE -gt $MAXFREE ]; then
1100                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1101                 return
1102         fi
1103         trap simple_cleanup_common EXIT
1104         mkdir -p $DIR/$tdir
1105         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1106         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1107                 error "dd should fill OST0"
1108         i=2
1109         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1110                 i=`expr $i + 1`
1111                 [ $i -gt 256 ] && break
1112         done
1113         i=`expr $i + 1`
1114         touch $DIR/$tdir/f27m_$i
1115         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1116                 error "OST0 was full but new created file still use it"
1117         i=`expr $i + 1`
1118         touch $DIR/$tdir/f27m_$i
1119         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1120                 error "OST0 was full but new created file still use it"
1121         simple_cleanup_common
1122 }
1123 run_test 27m "create file while OST0 was full =================="
1124
1125 sleep_maxage() {
1126         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1127         sleep $DELAY
1128 }
1129
1130 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1131 # if the OST isn't full anymore.
1132 reset_enospc() {
1133         local OSTIDX=${1:-""}
1134
1135         local list=$(comma_list $(osts_nodes))
1136         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1137
1138         do_nodes $list lctl set_param fail_loc=0
1139         sync    # initiate all OST_DESTROYs from MDS to OST
1140         sleep_maxage
1141 }
1142
1143 exhaust_precreations() {
1144         local OSTIDX=$1
1145         local FAILLOC=$2
1146         local FAILIDX=${3:-$OSTIDX}
1147
1148         mkdir -p $DIR/$tdir
1149         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1150         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1151
1152         local OST=$(ostname_from_index $OSTIDX)
1153         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1154                           sed -e 's/_UUID$//;s/^.*-//')
1155
1156         # on the mdt's osc
1157         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1158         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1159         osc.$mdtosc_proc1.prealloc_last_id)
1160         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1161         osc.$mdtosc_proc1.prealloc_next_id)
1162
1163         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1164         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1165
1166         mkdir -p $DIR/$tdir/${OST}
1167         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1168 #define OBD_FAIL_OST_ENOSPC              0x215
1169         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1170         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1171         echo "Creating to objid $last_id on ost $OST..."
1172         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1173         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1174         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1175         sleep_maxage
1176 }
1177
1178 exhaust_all_precreations() {
1179         local i
1180         for (( i=0; i < OSTCOUNT; i++ )) ; do
1181                 exhaust_precreations $i $1 -1
1182         done
1183 }
1184
1185 test_27n() {
1186         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1187         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1188         remote_ost_nodsh && skip "remote OST with nodsh" && return
1189
1190         reset_enospc
1191         rm -f $DIR/$tdir/$tfile
1192         exhaust_precreations 0 0x80000215
1193         $SETSTRIPE -c -1 $DIR/$tdir
1194         touch $DIR/$tdir/$tfile || error
1195         $GETSTRIPE $DIR/$tdir/$tfile
1196         reset_enospc
1197 }
1198 run_test 27n "create file with some full OSTs =================="
1199
1200 test_27o() {
1201         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1202         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1203         remote_ost_nodsh && skip "remote OST with nodsh" && return
1204
1205         reset_enospc
1206         rm -f $DIR/$tdir/$tfile
1207         exhaust_all_precreations 0x215
1208
1209         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1210
1211         reset_enospc
1212         rm -rf $DIR/$tdir/*
1213 }
1214 run_test 27o "create file with all full OSTs (should error) ===="
1215
1216 test_27p() {
1217         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1218         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1219         remote_ost_nodsh && skip "remote OST with nodsh" && return
1220
1221         reset_enospc
1222         rm -f $DIR/$tdir/$tfile
1223         mkdir -p $DIR/$tdir
1224
1225         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1226         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1227         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1228
1229         exhaust_precreations 0 0x80000215
1230         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1231         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1232         $GETSTRIPE $DIR/$tdir/$tfile
1233
1234         reset_enospc
1235 }
1236 run_test 27p "append to a truncated file with some full OSTs ==="
1237
1238 test_27q() {
1239         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1240         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1241         remote_ost_nodsh && skip "remote OST with nodsh" && return
1242
1243         reset_enospc
1244         rm -f $DIR/$tdir/$tfile
1245
1246         mkdir -p $DIR/$tdir
1247         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1248         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1249         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1250
1251         exhaust_all_precreations 0x215
1252
1253         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1254         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1255
1256         reset_enospc
1257 }
1258 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1259
1260 test_27r() {
1261         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1262         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1263         remote_ost_nodsh && skip "remote OST with nodsh" && return
1264
1265         reset_enospc
1266         rm -f $DIR/$tdir/$tfile
1267         exhaust_precreations 0 0x80000215
1268
1269         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1270
1271         reset_enospc
1272 }
1273 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1274
1275 test_27s() { # bug 10725
1276         mkdir -p $DIR/$tdir
1277         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1278         local stripe_count=0
1279         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1280         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1281                 error "stripe width >= 2^32 succeeded" || true
1282
1283 }
1284 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1285
1286 test_27t() { # bug 10864
1287         WDIR=`pwd`
1288         WLFS=`which lfs`
1289         cd $DIR
1290         touch $tfile
1291         $WLFS getstripe $tfile
1292         cd $WDIR
1293 }
1294 run_test 27t "check that utils parse path correctly"
1295
1296 test_27u() { # bug 4900
1297         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1298         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1299
1300 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1301         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1302         mkdir -p $DIR/$tdir
1303         createmany -o $DIR/$tdir/t- 1000
1304         do_facet $SINGLEMDS lctl set_param fail_loc=0
1305
1306         TLOG=$DIR/$tfile.getstripe
1307         $GETSTRIPE $DIR/$tdir > $TLOG
1308         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1309         unlinkmany $DIR/$tdir/t- 1000
1310         [ $OBJS -gt 0 ] && \
1311                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1312 }
1313 run_test 27u "skip object creation on OSC w/o objects =========="
1314
1315 test_27v() { # bug 4900
1316         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1317         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1318         remote_ost_nodsh && skip "remote OST with nodsh" && return
1319
1320         exhaust_all_precreations 0x215
1321         reset_enospc
1322
1323         mkdir -p $DIR/$tdir
1324         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1325
1326         touch $DIR/$tdir/$tfile
1327         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1328         # all except ost1
1329         for (( i=1; i < OSTCOUNT; i++ )); do
1330                 do_facet ost$i lctl set_param fail_loc=0x705
1331         done
1332         local START=`date +%s`
1333         createmany -o $DIR/$tdir/$tfile 32
1334
1335         local FINISH=`date +%s`
1336         local TIMEOUT=`lctl get_param -n timeout`
1337         local PROCESS=$((FINISH - START))
1338         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1339                error "$FINISH - $START >= $TIMEOUT / 2"
1340         sleep $((TIMEOUT / 2 - PROCESS))
1341         reset_enospc
1342 }
1343 run_test 27v "skip object creation on slow OST ================="
1344
1345 test_27w() { # bug 10997
1346         mkdir -p $DIR/$tdir || error "mkdir failed"
1347         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1348         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1349                 error "stripe size $size != 65536" || true
1350         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1351                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1352 }
1353 run_test 27w "check $SETSTRIPE -S option"
1354
1355 test_27wa() {
1356         [ "$OSTCOUNT" -lt "2" ] &&
1357                 skip_env "skipping multiple stripe count/offset test" && return
1358
1359         mkdir -p $DIR/$tdir || error "mkdir failed"
1360         for i in $(seq 1 $OSTCOUNT); do
1361                 offset=$((i - 1))
1362                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1363                         error "setstripe -c $i -i $offset failed"
1364                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1365                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1366                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1367                 [ $index -ne $offset ] &&
1368                         error "stripe offset $index != $offset" || true
1369         done
1370 }
1371 run_test 27wa "check $SETSTRIPE -c -i options"
1372
1373 test_27x() {
1374         remote_ost_nodsh && skip "remote OST with nodsh" && return
1375         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1376         OFFSET=$(($OSTCOUNT - 1))
1377         OSTIDX=0
1378         local OST=$(ostname_from_index $OSTIDX)
1379
1380         mkdir -p $DIR/$tdir
1381         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1382         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1383         sleep_maxage
1384         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1385         for i in `seq 0 $OFFSET`; do
1386                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1387                 error "OST0 was degraded but new created file still use it"
1388         done
1389         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1390 }
1391 run_test 27x "create files while OST0 is degraded"
1392
1393 test_27y() {
1394         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1395         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1396         remote_ost_nodsh && skip "remote OST with nodsh" && return
1397
1398         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1399         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1400             osc.$mdtosc.prealloc_last_id)
1401         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1402             osc.$mdtosc.prealloc_next_id)
1403         local fcount=$((last_id - next_id))
1404         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1405         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1406
1407         MDS_OSCS=`do_facet $SINGLEMDS lctl dl | awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
1408         OFFSET=$(($OSTCOUNT-1))
1409         OST=-1
1410         for OSC in $MDS_OSCS; do
1411                 if [ $OST == -1 ]; then {
1412                         OST=`osc_to_ost $OSC`
1413                 } else {
1414                         echo $OSC "is Deactivate:"
1415                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1416                 } fi
1417         done
1418
1419         OSTIDX=$(index_from_ostuuid $OST)
1420         mkdir -p $DIR/$tdir
1421         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1422
1423         do_facet ost$((OSTIDX+1)) lctl set_param -n obdfilter.$OST.degraded 1
1424         sleep_maxage
1425         createmany -o $DIR/$tdir/$tfile $fcount
1426         do_facet ost$((OSTIDX+1)) lctl set_param -n obdfilter.$OST.degraded 0
1427
1428         for i in `seq 0 $OFFSET`; do
1429                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "$OSTIDX"` ] || \
1430                       error "files created on deactivated OSTs instead of degraded OST"
1431         done
1432         for OSC in $MDS_OSCS; do
1433                 [ `osc_to_ost $OSC` != $OST  ] && {
1434                         echo $OSC "is activate"
1435                         do_facet $SINGLEMDS lctl --device %$OSC activate
1436                 }
1437         done
1438 }
1439 run_test 27y "create files while OST0 is degraded and the rest inactive"
1440
1441 check_seq_oid()
1442 {
1443         log "check file $1"
1444
1445         lmm_count=$($GETSTRIPE -c $1)
1446         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1447         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1448
1449         local old_ifs="$IFS"
1450         IFS=$'[:]'
1451         fid=($($LFS path2fid $1))
1452         IFS="$old_ifs"
1453
1454         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1455         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1456
1457         # compare lmm_seq and lu_fid->f_seq
1458         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1459         # compare lmm_object_id and lu_fid->oid
1460         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1461
1462         # check the trusted.fid attribute of the OST objects of the file
1463         local have_obdidx=false
1464         local stripe_nr=0
1465         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1466                 # skip lines up to and including "obdidx"
1467                 [ -z "$obdidx" ] && break
1468                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1469                 $have_obdidx || continue
1470
1471                 local ost=$((obdidx + 1))
1472                 local dev=$(ostdevname $ost)
1473
1474                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1475                         echo "Currently only works with ldiskfs-based OSTs"
1476                         continue
1477                 fi
1478
1479                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1480
1481                 #don't unmount/remount the OSTs if we don't need to do that
1482                 #local dir=$(facet_mntpt ost$ost)
1483                 #stop ost$dev
1484                 #do_facet ost$dev mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1485                 #       { error "mounting $dev as $FSTYPE failed"; return 3; }
1486                 #local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid)
1487                 #local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1488
1489                 local obj_file="O/$seq/d$((oid %32))/$oid"
1490                 local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1491                            $dev 2>/dev/null" | grep "parent=")
1492
1493                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1494
1495                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1496
1497                 #do_facet ost$ost umount -d $dir
1498                 #start ost$ost $dev $OST_MOUNT_OPTS
1499
1500                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1501                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1502                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1503                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1504                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1505                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1506
1507                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1508                 [ $ff_pseq = $lmm_seq ] ||
1509                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1510                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1511                 [ $ff_poid = $lmm_oid ] ||
1512                         error "FF parent OID $ff_poid != $lmm_oid"
1513                 [ $ff_pstripe = $stripe_nr ] ||
1514                         error "FF stripe $ff_pstripe != $stripe_nr"
1515
1516                 stripe_nr=$((stripe_nr + 1))
1517         done
1518 }
1519
1520 test_27z() {
1521         remote_ost_nodsh && skip "remote OST with nodsh" && return
1522         mkdir -p $DIR/$tdir
1523
1524         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1525                 { error "setstripe -c -1 failed"; return 1; }
1526         # We need to send a write to every object to get parent FID info set.
1527         # This _should_ also work for setattr, but does not currently.
1528         # touch $DIR/$tdir/$tfile-1 ||
1529         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1530                 { error "dd $tfile-1 failed"; return 2; }
1531         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1532                 { error "setstripe -c -1 failed"; return 3; }
1533         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1534                 { error "dd $tfile-2 failed"; return 4; }
1535
1536         # make sure write RPCs have been sent to OSTs
1537         sync; sleep 5; sync
1538
1539         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1540         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1541 }
1542 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1543
1544 test_27A() { # b=19102
1545         local restore_size=$($GETSTRIPE -S $MOUNT)
1546         local restore_count=$($GETSTRIPE -c $MOUNT)
1547         local restore_offset=$($GETSTRIPE -i $MOUNT)
1548         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1549         local default_size=$($GETSTRIPE -S $MOUNT)
1550         local default_count=$($GETSTRIPE -c $MOUNT)
1551         local default_offset=$($GETSTRIPE -i $MOUNT)
1552         local dsize=$((1024 * 1024))
1553         [ $default_size -eq $dsize ] ||
1554                 error "stripe size $default_size != $dsize"
1555         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1556         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1557         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1558 }
1559 run_test 27A "check filesystem-wide default LOV EA values"
1560
1561 # createtest also checks that device nodes are created and
1562 # then visible correctly (#2091)
1563 test_28() { # bug 2091
1564         mkdir $DIR/d28
1565         $CREATETEST $DIR/d28/ct || error
1566 }
1567 run_test 28 "create/mknod/mkdir with bad file types ============"
1568
1569 test_29() {
1570         cancel_lru_locks mdc
1571         mkdir $DIR/d29
1572         touch $DIR/d29/foo
1573         log 'first d29'
1574         ls -l $DIR/d29
1575
1576         declare -i LOCKCOUNTORIG=0
1577         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1578                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1579         done
1580         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1581
1582         declare -i LOCKUNUSEDCOUNTORIG=0
1583         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1584                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1585         done
1586
1587         log 'second d29'
1588         ls -l $DIR/d29
1589         log 'done'
1590
1591         declare -i LOCKCOUNTCURRENT=0
1592         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1593                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1594         done
1595
1596         declare -i LOCKUNUSEDCOUNTCURRENT=0
1597         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1598                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1599         done
1600
1601         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1602                 lctl set_param -n ldlm.dump_namespaces ""
1603                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1604                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1605                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1606                 return 2
1607         fi
1608         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1609                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1610                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1611                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1612                 return 3
1613         fi
1614 }
1615 run_test 29 "IT_GETATTR regression  ============================"
1616
1617 test_30a() { # was test_30
1618         cp `which ls` $DIR || cp /bin/ls $DIR
1619         $DIR/ls / || error
1620         rm $DIR/ls
1621 }
1622 run_test 30a "execute binary from Lustre (execve) =============="
1623
1624 test_30b() {
1625         cp `which ls` $DIR || cp /bin/ls $DIR
1626         chmod go+rx $DIR/ls
1627         $RUNAS $DIR/ls / || error
1628         rm $DIR/ls
1629 }
1630 run_test 30b "execute binary from Lustre as non-root ==========="
1631
1632 test_30c() { # b=22376
1633         cp `which ls` $DIR || cp /bin/ls $DIR
1634         chmod a-rw $DIR/ls
1635         cancel_lru_locks mdc
1636         cancel_lru_locks osc
1637         $RUNAS $DIR/ls / || error
1638         rm -f $DIR/ls
1639 }
1640 run_test 30c "execute binary from Lustre without read perms ===="
1641
1642 test_31a() {
1643         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1644         $CHECKSTAT -a $DIR/f31 || error
1645 }
1646 run_test 31a "open-unlink file =================================="
1647
1648 test_31b() {
1649         touch $DIR/f31 || error
1650         ln $DIR/f31 $DIR/f31b || error
1651         $MULTIOP $DIR/f31b Ouc || error
1652         $CHECKSTAT -t file $DIR/f31 || error
1653 }
1654 run_test 31b "unlink file with multiple links while open ======="
1655
1656 test_31c() {
1657         touch $DIR/f31 || error
1658         ln $DIR/f31 $DIR/f31c || error
1659         multiop_bg_pause $DIR/f31 O_uc || return 1
1660         MULTIPID=$!
1661         $MULTIOP $DIR/f31c Ouc
1662         kill -USR1 $MULTIPID
1663         wait $MULTIPID
1664 }
1665 run_test 31c "open-unlink file with multiple links ============="
1666
1667 test_31d() {
1668         opendirunlink $DIR/d31d $DIR/d31d || error
1669         $CHECKSTAT -a $DIR/d31d || error
1670 }
1671 run_test 31d "remove of open directory ========================="
1672
1673 test_31e() { # bug 2904
1674         check_kernel_version 34 || return 0
1675         openfilleddirunlink $DIR/d31e || error
1676 }
1677 run_test 31e "remove of open non-empty directory ==============="
1678
1679 test_31f() { # bug 4554
1680         set -vx
1681         mkdir $DIR/d31f
1682         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1683         cp /etc/hosts $DIR/d31f
1684         ls -l $DIR/d31f
1685         $GETSTRIPE $DIR/d31f/hosts
1686         multiop_bg_pause $DIR/d31f D_c || return 1
1687         MULTIPID=$!
1688
1689         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1690         mkdir $DIR/d31f
1691         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1692         cp /etc/hosts $DIR/d31f
1693         ls -l $DIR/d31f
1694         $GETSTRIPE $DIR/d31f/hosts
1695         multiop_bg_pause $DIR/d31f D_c || return 1
1696         MULTIPID2=$!
1697
1698         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1699         wait $MULTIPID || error "first opendir $MULTIPID failed"
1700
1701         sleep 6
1702
1703         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1704         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1705         set +vx
1706 }
1707 run_test 31f "remove of open directory with open-unlink file ==="
1708
1709 test_31g() {
1710         echo "-- cross directory link --"
1711         mkdir $DIR/d31g{a,b}
1712         touch $DIR/d31ga/f
1713         ln $DIR/d31ga/f $DIR/d31gb/g
1714         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1715         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1716         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1717         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1718 }
1719 run_test 31g "cross directory link==============="
1720
1721 test_31h() {
1722         echo "-- cross directory link --"
1723         mkdir $DIR/d31h
1724         mkdir $DIR/d31h/dir
1725         touch $DIR/d31h/f
1726         ln $DIR/d31h/f $DIR/d31h/dir/g
1727         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1728         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1729         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1730         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1731 }
1732 run_test 31h "cross directory link under child==============="
1733
1734 test_31i() {
1735         echo "-- cross directory link --"
1736         mkdir $DIR/d31i
1737         mkdir $DIR/d31i/dir
1738         touch $DIR/d31i/dir/f
1739         ln $DIR/d31i/dir/f $DIR/d31i/g
1740         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1741         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1742         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1743         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1744 }
1745 run_test 31i "cross directory link under parent==============="
1746
1747
1748 test_31j() {
1749         mkdir $DIR/d31j
1750         mkdir $DIR/d31j/dir1
1751         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1752         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1753         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1754         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1755         return 0
1756 }
1757 run_test 31j "link for directory==============="
1758
1759
1760 test_31k() {
1761         mkdir $DIR/d31k
1762         touch $DIR/d31k/s
1763         touch $DIR/d31k/exist
1764         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1765         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1766         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1767         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1768         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1769         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1770         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1771         return 0
1772 }
1773 run_test 31k "link to file: the same, non-existing, dir==============="
1774
1775 test_31m() {
1776         mkdir $DIR/d31m
1777         touch $DIR/d31m/s
1778         mkdir $DIR/d31m2
1779         touch $DIR/d31m2/exist
1780         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1781         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1782         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1783         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1784         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1785         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1786         return 0
1787 }
1788 run_test 31m "link to file: the same, non-existing, dir==============="
1789
1790 cleanup_test32_mount() {
1791         trap 0
1792         $UMOUNT $DIR/$tdir/ext2-mountpoint
1793 }
1794
1795 test_32a() {
1796         echo "== more mountpoints and symlinks ================="
1797         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1798         trap cleanup_test32_mount EXIT
1799         mkdir -p $DIR/$tdir/ext2-mountpoint
1800         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1801         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
1802         cleanup_test32_mount
1803 }
1804 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
1805
1806 test_32b() {
1807         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1808         trap cleanup_test32_mount EXIT
1809         mkdir -p $DIR/$tdir/ext2-mountpoint
1810         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1811         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
1812         cleanup_test32_mount
1813 }
1814 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
1815
1816 test_32c() {
1817         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1818         trap cleanup_test32_mount EXIT
1819         mkdir -p $DIR/$tdir/ext2-mountpoint
1820         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1821         mkdir -p $DIR/$tdir/d2/test_dir
1822         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
1823         cleanup_test32_mount
1824 }
1825 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
1826
1827 test_32d() {
1828         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1829         trap cleanup_test32_mount EXIT
1830         mkdir -p $DIR/$tdir/ext2-mountpoint
1831         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1832         mkdir -p $DIR/$tdir/d2/test_dir
1833         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
1834         cleanup_test32_mount
1835 }
1836 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
1837
1838 test_32e() {
1839         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
1840         mkdir -p $DIR/d32e/tmp
1841         TMP_DIR=$DIR/d32e/tmp
1842         ln -s $DIR/d32e $TMP_DIR/symlink11
1843         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1844         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
1845         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
1846 }
1847 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
1848
1849 test_32f() {
1850         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
1851         mkdir -p $DIR/d32f/tmp
1852         TMP_DIR=$DIR/d32f/tmp
1853         ln -s $DIR/d32f $TMP_DIR/symlink11
1854         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1855         ls $DIR/d32f/tmp/symlink11  || error
1856         ls $DIR/d32f/symlink01 || error
1857 }
1858 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
1859
1860 test_32g() {
1861         TMP_DIR=$DIR/$tdir/tmp
1862         mkdir -p $TMP_DIR $DIR/${tdir}2
1863         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1864         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1865         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
1866         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
1867         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
1868         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
1869 }
1870 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1871
1872 test_32h() {
1873         rm -fr $DIR/$tdir $DIR/${tdir}2
1874         TMP_DIR=$DIR/$tdir/tmp
1875         mkdir -p $TMP_DIR $DIR/${tdir}2
1876         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
1877         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1878         ls $TMP_DIR/symlink12 || error
1879         ls $DIR/$tdir/symlink02  || error
1880 }
1881 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
1882
1883 test_32i() {
1884         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1885         trap cleanup_test32_mount EXIT
1886         mkdir -p $DIR/$tdir/ext2-mountpoint
1887         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1888         touch $DIR/$tdir/test_file
1889         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
1890         cleanup_test32_mount
1891 }
1892 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
1893
1894 test_32j() {
1895         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1896         trap cleanup_test32_mount EXIT
1897         mkdir -p $DIR/$tdir/ext2-mountpoint
1898         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1899         touch $DIR/$tdir/test_file
1900         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
1901         cleanup_test32_mount
1902 }
1903 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
1904
1905 test_32k() {
1906         rm -fr $DIR/$tdir
1907         trap cleanup_test32_mount EXIT
1908         mkdir -p $DIR/$tdir/ext2-mountpoint
1909         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
1910         mkdir -p $DIR/$tdir/d2
1911         touch $DIR/$tdir/d2/test_file || error
1912         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
1913         cleanup_test32_mount
1914 }
1915 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
1916
1917 test_32l() {
1918         rm -fr $DIR/$tdir
1919         trap cleanup_test32_mount EXIT
1920         mkdir -p $DIR/$tdir/ext2-mountpoint
1921         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
1922         mkdir -p $DIR/$tdir/d2
1923         touch $DIR/$tdir/d2/test_file
1924         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
1925         cleanup_test32_mount
1926 }
1927 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
1928
1929 test_32m() {
1930         rm -fr $DIR/d32m
1931         mkdir -p $DIR/d32m/tmp
1932         TMP_DIR=$DIR/d32m/tmp
1933         ln -s $DIR $TMP_DIR/symlink11
1934         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1935         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
1936         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
1937 }
1938 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
1939
1940 test_32n() {
1941         rm -fr $DIR/d32n
1942         mkdir -p $DIR/d32n/tmp
1943         TMP_DIR=$DIR/d32n/tmp
1944         ln -s $DIR $TMP_DIR/symlink11
1945         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
1946         ls -l $DIR/d32n/tmp/symlink11  || error
1947         ls -l $DIR/d32n/symlink01 || error
1948 }
1949 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
1950
1951 test_32o() {
1952         rm -fr $DIR/d32o $DIR/$tfile
1953         touch $DIR/$tfile
1954         mkdir -p $DIR/d32o/tmp
1955         TMP_DIR=$DIR/d32o/tmp
1956         ln -s $DIR/$tfile $TMP_DIR/symlink12
1957         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1958         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
1959         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
1960         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
1961         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
1962 }
1963 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
1964
1965 test_32p() {
1966     log 32p_1
1967         rm -fr $DIR/d32p
1968     log 32p_2
1969         rm -f $DIR/$tfile
1970     log 32p_3
1971         touch $DIR/$tfile
1972     log 32p_4
1973         mkdir -p $DIR/d32p/tmp
1974     log 32p_5
1975         TMP_DIR=$DIR/d32p/tmp
1976     log 32p_6
1977         ln -s $DIR/$tfile $TMP_DIR/symlink12
1978     log 32p_7
1979         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
1980     log 32p_8
1981         cat $DIR/d32p/tmp/symlink12 || error
1982     log 32p_9
1983         cat $DIR/d32p/symlink02 || error
1984     log 32p_10
1985 }
1986 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
1987
1988 cleanup_testdir_mount() {
1989         trap 0
1990         $UMOUNT $DIR/$tdir
1991 }
1992
1993 test_32q() {
1994         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
1995         trap cleanup_testdir_mount EXIT
1996         mkdir -p $DIR/$tdir
1997         touch $DIR/$tdir/under_the_mount
1998         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
1999         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2000         cleanup_testdir_mount
2001 }
2002 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2003
2004 test_32r() {
2005         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2006         trap cleanup_testdir_mount EXIT
2007         mkdir -p $DIR/$tdir
2008         touch $DIR/$tdir/under_the_mount
2009         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2010         ls $DIR/$tdir | grep -q under_the_mount && error || true
2011         cleanup_testdir_mount
2012 }
2013 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2014
2015 test_33() {
2016         rm -f $DIR/$tfile
2017         touch $DIR/$tfile
2018         chmod 444 $DIR/$tfile
2019         chown $RUNAS_ID $DIR/$tfile
2020         log 33_1
2021         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2022         log 33_2
2023 }
2024 run_test 33 "write file with mode 444 (should return error) ===="
2025
2026 test_33a() {
2027         rm -fr $DIR/d33
2028         mkdir -p $DIR/d33
2029         chown $RUNAS_ID $DIR/d33
2030         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2031         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2032                 error "open RDWR" || true
2033 }
2034 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2035
2036 test_33b() {
2037         rm -fr $DIR/d33
2038         mkdir -p $DIR/d33
2039         chown $RUNAS_ID $DIR/d33
2040         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2041 }
2042 run_test 33b "test open file with malformed flags (No panic and return error)"
2043
2044 test_33c() {
2045         local ostnum
2046         local ostname
2047         local write_bytes
2048         local all_zeros
2049
2050         remote_ost_nodsh && skip "remote OST with nodsh" && return
2051         all_zeros=:
2052         rm -fr $DIR/d33
2053         mkdir -p $DIR/d33
2054         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2055
2056         sync
2057         for ostnum in $(seq $OSTCOUNT); do
2058                 # test-framework's OST numbering is one-based, while Lustre's
2059                 # is zero-based
2060                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2061                 # Parsing llobdstat's output sucks; we could grep the /proc
2062                 # path, but that's likely to not be as portable as using the
2063                 # llobdstat utility.  So we parse lctl output instead.
2064                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2065                         obdfilter/$ostname/stats |
2066                         awk '/^write_bytes/ {print $7}' )
2067                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2068                 if (( ${write_bytes:-0} > 0 ))
2069                 then
2070                         all_zeros=false
2071                         break;
2072                 fi
2073         done
2074
2075         $all_zeros || return 0
2076
2077         # Write four bytes
2078         echo foo > $DIR/d33/bar
2079         # Really write them
2080         sync
2081
2082         # Total up write_bytes after writing.  We'd better find non-zeros.
2083         for ostnum in $(seq $OSTCOUNT); do
2084                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2085                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2086                         obdfilter/$ostname/stats |
2087                         awk '/^write_bytes/ {print $7}' )
2088                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2089                 if (( ${write_bytes:-0} > 0 ))
2090                 then
2091                         all_zeros=false
2092                         break;
2093                 fi
2094         done
2095
2096         if $all_zeros
2097         then
2098                 for ostnum in $(seq $OSTCOUNT); do
2099                         ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2100                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2101                         do_facet ost$ostnum lctl get_param -n \
2102                                 obdfilter/$ostname/stats
2103                 done
2104                 error "OST not keeping write_bytes stats (b22312)"
2105         fi
2106 }
2107 run_test 33c "test llobdstat and write_bytes"
2108
2109 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2110 test_34a() {
2111         rm -f $DIR/f34
2112         $MCREATE $DIR/f34 || error
2113         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2114         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2115         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2116         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2117 }
2118 run_test 34a "truncate file that has not been opened ==========="
2119
2120 test_34b() {
2121         [ ! -f $DIR/f34 ] && test_34a
2122         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2123         $OPENFILE -f O_RDONLY $DIR/f34
2124         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2125         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2126 }
2127 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2128
2129 test_34c() {
2130         [ ! -f $DIR/f34 ] && test_34a
2131         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2132         $OPENFILE -f O_RDWR $DIR/f34
2133         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2134         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2135 }
2136 run_test 34c "O_RDWR opening file-with-size works =============="
2137
2138 test_34d() {
2139         [ ! -f $DIR/f34 ] && test_34a
2140         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2141         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2142         rm $DIR/f34
2143 }
2144 run_test 34d "write to sparse file ============================="
2145
2146 test_34e() {
2147         rm -f $DIR/f34e
2148         $MCREATE $DIR/f34e || error
2149         $TRUNCATE $DIR/f34e 1000 || error
2150         $CHECKSTAT -s 1000 $DIR/f34e || error
2151         $OPENFILE -f O_RDWR $DIR/f34e
2152         $CHECKSTAT -s 1000 $DIR/f34e || error
2153 }
2154 run_test 34e "create objects, some with size and some without =="
2155
2156 test_34f() { # bug 6242, 6243
2157         SIZE34F=48000
2158         rm -f $DIR/f34f
2159         $MCREATE $DIR/f34f || error
2160         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2161         dd if=$DIR/f34f of=$TMP/f34f
2162         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2163         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2164         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2165         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2166         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2167 }
2168 run_test 34f "read from a file with no objects until EOF ======="
2169
2170 test_34g() {
2171         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2172         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2173         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2174         cancel_lru_locks osc
2175         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2176                 error "wrong size after lock cancel"
2177
2178         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2179         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2180                 error "expanding truncate failed"
2181         cancel_lru_locks osc
2182         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2183                 error "wrong expanded size after lock cancel"
2184 }
2185 run_test 34g "truncate long file ==============================="
2186
2187 test_34h() {
2188         local gid=10
2189         local sz=1000
2190
2191         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2192         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2193         MULTIPID=$!
2194         sleep 2
2195
2196         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2197                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2198                 kill -9 $MULTIPID
2199         fi
2200         wait $MULTIPID
2201         local nsz=`stat -c %s $DIR/$tfile`
2202         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2203 }
2204 run_test 34h "ftruncate file under grouplock should not block"
2205
2206 test_35a() {
2207         cp /bin/sh $DIR/f35a
2208         chmod 444 $DIR/f35a
2209         chown $RUNAS_ID $DIR/f35a
2210         $RUNAS $DIR/f35a && error || true
2211         rm $DIR/f35a
2212 }
2213 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2214
2215 test_36a() {
2216         rm -f $DIR/f36
2217         utime $DIR/f36 || error
2218 }
2219 run_test 36a "MDS utime check (mknod, utime) ==================="
2220
2221 test_36b() {
2222         echo "" > $DIR/f36
2223         utime $DIR/f36 || error
2224 }
2225 run_test 36b "OST utime check (open, utime) ===================="
2226
2227 test_36c() {
2228         rm -f $DIR/d36/f36
2229         mkdir $DIR/d36
2230         chown $RUNAS_ID $DIR/d36
2231         $RUNAS utime $DIR/d36/f36 || error
2232 }
2233 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2234
2235 test_36d() {
2236         [ ! -d $DIR/d36 ] && test_36c
2237         echo "" > $DIR/d36/f36
2238         $RUNAS utime $DIR/d36/f36 || error
2239 }
2240 run_test 36d "non-root OST utime check (open, utime) ==========="
2241
2242 test_36e() {
2243         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2244         mkdir -p $DIR/$tdir
2245         touch $DIR/$tdir/$tfile
2246         $RUNAS utime $DIR/$tdir/$tfile && \
2247                 error "utime worked, expected failure" || true
2248 }
2249 run_test 36e "utime on non-owned file (should return error) ===="
2250
2251 subr_36fh() {
2252         local fl="$1"
2253         local LANG_SAVE=$LANG
2254         local LC_LANG_SAVE=$LC_LANG
2255         export LANG=C LC_LANG=C # for date language
2256
2257         DATESTR="Dec 20  2000"
2258         mkdir -p $DIR/$tdir
2259         lctl set_param fail_loc=$fl
2260         date; date +%s
2261         cp /etc/hosts $DIR/$tdir/$tfile
2262         sync & # write RPC generated with "current" inode timestamp, but delayed
2263         sleep 1
2264         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2265         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2266         cancel_lru_locks osc
2267         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2268         date; date +%s
2269         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2270                 echo "BEFORE: $LS_BEFORE" && \
2271                 echo "AFTER : $LS_AFTER" && \
2272                 echo "WANT  : $DATESTR" && \
2273                 error "$DIR/$tdir/$tfile timestamps changed" || true
2274
2275         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2276 }
2277
2278 test_36f() {
2279         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2280         subr_36fh "0x80000214"
2281 }
2282 run_test 36f "utime on file racing with OST BRW write =========="
2283
2284 test_36g() {
2285         remote_ost_nodsh && skip "remote OST with nodsh" && return
2286         local fmd_max_age
2287         local fmd_before
2288         local fmd_after
2289
2290         mkdir -p $DIR/$tdir
2291         fmd_max_age=$(do_facet ost1 \
2292                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2293                 head -n 1")
2294
2295         fmd_before=$(do_facet ost1 \
2296                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2297         touch $DIR/$tdir/$tfile
2298         sleep $((fmd_max_age + 12))
2299         fmd_after=$(do_facet ost1 \
2300                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2301
2302         echo "fmd_before: $fmd_before"
2303         echo "fmd_after: $fmd_after"
2304         [ "$fmd_after" -gt "$fmd_before" ] && \
2305                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2306                 error "fmd didn't expire after ping" || true
2307 }
2308 run_test 36g "filter mod data cache expiry ====================="
2309
2310 test_36h() {
2311         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2312         subr_36fh "0x80000227"
2313 }
2314 run_test 36h "utime on file racing with OST BRW write =========="
2315
2316 # test_37 - duplicate with tests 32q 32r
2317
2318 test_38() {
2319         local file=$DIR/$tfile
2320         touch $file
2321         openfile -f O_DIRECTORY $file
2322         local RC=$?
2323         local ENOTDIR=20
2324         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2325         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2326 }
2327 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2328
2329 test_39() {
2330         touch $DIR/$tfile
2331         touch $DIR/${tfile}2
2332 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2333 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2334 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2335         sleep 2
2336         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2337         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2338                 echo "mtime"
2339                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2340                 echo "atime"
2341                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2342                 echo "ctime"
2343                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2344                 error "O_TRUNC didn't change timestamps"
2345         fi
2346 }
2347 run_test 39 "mtime changed on create ==========================="
2348
2349 test_39b() {
2350         mkdir -p $DIR/$tdir
2351         cp -p /etc/passwd $DIR/$tdir/fopen
2352         cp -p /etc/passwd $DIR/$tdir/flink
2353         cp -p /etc/passwd $DIR/$tdir/funlink
2354         cp -p /etc/passwd $DIR/$tdir/frename
2355         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2356
2357         sleep 1
2358         echo "aaaaaa" >> $DIR/$tdir/fopen
2359         echo "aaaaaa" >> $DIR/$tdir/flink
2360         echo "aaaaaa" >> $DIR/$tdir/funlink
2361         echo "aaaaaa" >> $DIR/$tdir/frename
2362
2363         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2364         local link_new=`stat -c %Y $DIR/$tdir/flink`
2365         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2366         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2367
2368         cat $DIR/$tdir/fopen > /dev/null
2369         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2370         rm -f $DIR/$tdir/funlink2
2371         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2372
2373         for (( i=0; i < 2; i++ )) ; do
2374                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2375                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2376                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2377                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2378
2379                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2380                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2381                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2382                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2383
2384                 cancel_lru_locks osc
2385                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2386         done
2387 }
2388 run_test 39b "mtime change on open, link, unlink, rename  ======"
2389
2390 # this should be set to past
2391 TEST_39_MTIME=`date -d "1 year ago" +%s`
2392
2393 # bug 11063
2394 test_39c() {
2395         touch $DIR1/$tfile
2396         sleep 2
2397         local mtime0=`stat -c %Y $DIR1/$tfile`
2398
2399         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2400         local mtime1=`stat -c %Y $DIR1/$tfile`
2401         [ "$mtime1" = $TEST_39_MTIME ] || \
2402                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2403
2404         local d1=`date +%s`
2405         echo hello >> $DIR1/$tfile
2406         local d2=`date +%s`
2407         local mtime2=`stat -c %Y $DIR1/$tfile`
2408         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2409                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2410
2411         mv $DIR1/$tfile $DIR1/$tfile-1
2412
2413         for (( i=0; i < 2; i++ )) ; do
2414                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2415                 [ "$mtime2" = "$mtime3" ] || \
2416                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2417
2418                 cancel_lru_locks osc
2419                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2420         done
2421 }
2422 run_test 39c "mtime change on rename ==========================="
2423
2424 # bug 21114
2425 test_39d() {
2426         touch $DIR1/$tfile
2427
2428         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2429
2430         for (( i=0; i < 2; i++ )) ; do
2431                 local mtime=`stat -c %Y $DIR1/$tfile`
2432                 [ $mtime = $TEST_39_MTIME ] || \
2433                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2434
2435                 cancel_lru_locks osc
2436                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2437         done
2438 }
2439 run_test 39d "create, utime, stat =============================="
2440
2441 # bug 21114
2442 test_39e() {
2443         touch $DIR1/$tfile
2444         local mtime1=`stat -c %Y $DIR1/$tfile`
2445
2446         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2447
2448         for (( i=0; i < 2; i++ )) ; do
2449                 local mtime2=`stat -c %Y $DIR1/$tfile`
2450                 [ $mtime2 = $TEST_39_MTIME ] || \
2451                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2452
2453                 cancel_lru_locks osc
2454                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2455         done
2456 }
2457 run_test 39e "create, stat, utime, stat ========================"
2458
2459 # bug 21114
2460 test_39f() {
2461         touch $DIR1/$tfile
2462         mtime1=`stat -c %Y $DIR1/$tfile`
2463
2464         sleep 2
2465         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2466
2467         for (( i=0; i < 2; i++ )) ; do
2468                 local mtime2=`stat -c %Y $DIR1/$tfile`
2469                 [ $mtime2 = $TEST_39_MTIME ] || \
2470                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2471
2472                 cancel_lru_locks osc
2473                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2474         done
2475 }
2476 run_test 39f "create, stat, sleep, utime, stat ================="
2477
2478 # bug 11063
2479 test_39g() {
2480         echo hello >> $DIR1/$tfile
2481         local mtime1=`stat -c %Y $DIR1/$tfile`
2482
2483         sleep 2
2484         chmod o+r $DIR1/$tfile
2485
2486         for (( i=0; i < 2; i++ )) ; do
2487                 local mtime2=`stat -c %Y $DIR1/$tfile`
2488                 [ "$mtime1" = "$mtime2" ] || \
2489                         error "lost mtime: $mtime2, should be $mtime1"
2490
2491                 cancel_lru_locks osc
2492                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2493         done
2494 }
2495 run_test 39g "write, chmod, stat ==============================="
2496
2497 # bug 11063
2498 test_39h() {
2499         touch $DIR1/$tfile
2500         sleep 1
2501
2502         local d1=`date`
2503         echo hello >> $DIR1/$tfile
2504         local mtime1=`stat -c %Y $DIR1/$tfile`
2505
2506         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2507         local d2=`date`
2508         if [ "$d1" != "$d2" ]; then
2509                 echo "write and touch not within one second"
2510         else
2511                 for (( i=0; i < 2; i++ )) ; do
2512                         local mtime2=`stat -c %Y $DIR1/$tfile`
2513                         [ "$mtime2" = $TEST_39_MTIME ] || \
2514                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2515
2516                         cancel_lru_locks osc
2517                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2518                 done
2519         fi
2520 }
2521 run_test 39h "write, utime within one second, stat ============="
2522
2523 test_39i() {
2524         touch $DIR1/$tfile
2525         sleep 1
2526
2527         echo hello >> $DIR1/$tfile
2528         local mtime1=`stat -c %Y $DIR1/$tfile`
2529
2530         mv $DIR1/$tfile $DIR1/$tfile-1
2531
2532         for (( i=0; i < 2; i++ )) ; do
2533                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2534
2535                 [ "$mtime1" = "$mtime2" ] || \
2536                         error "lost mtime: $mtime2, should be $mtime1"
2537
2538                 cancel_lru_locks osc
2539                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2540         done
2541 }
2542 run_test 39i "write, rename, stat =============================="
2543
2544 test_39j() {
2545         start_full_debug_logging
2546         touch $DIR1/$tfile
2547         sleep 1
2548
2549         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2550         lctl set_param fail_loc=0x80000412
2551         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2552                 error "multiop failed"
2553         local multipid=$!
2554         local mtime1=`stat -c %Y $DIR1/$tfile`
2555
2556         mv $DIR1/$tfile $DIR1/$tfile-1
2557
2558         kill -USR1 $multipid
2559         wait $multipid || error "multiop close failed"
2560
2561         for (( i=0; i < 2; i++ )) ; do
2562                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2563                 [ "$mtime1" = "$mtime2" ] ||
2564                         error "mtime is lost on close: $mtime2, " \
2565                               "should be $mtime1"
2566
2567                 cancel_lru_locks osc
2568                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2569         done
2570         lctl set_param fail_loc=0
2571         stop_full_debug_logging
2572 }
2573 run_test 39j "write, rename, close, stat ======================="
2574
2575 test_39k() {
2576         touch $DIR1/$tfile
2577         sleep 1
2578
2579         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2580         local multipid=$!
2581         local mtime1=`stat -c %Y $DIR1/$tfile`
2582
2583         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2584
2585         kill -USR1 $multipid
2586         wait $multipid || error "multiop close failed"
2587
2588         for (( i=0; i < 2; i++ )) ; do
2589                 local mtime2=`stat -c %Y $DIR1/$tfile`
2590
2591                 [ "$mtime2" = $TEST_39_MTIME ] || \
2592                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2593
2594                 cancel_lru_locks osc
2595                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2596         done
2597 }
2598 run_test 39k "write, utime, close, stat ========================"
2599
2600 # this should be set to future
2601 TEST_39_ATIME=`date -d "1 year" +%s`
2602
2603 test_39l() {
2604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2605         local atime_diff=$(do_facet $SINGLEMDS lctl get_param -n mdd.*.atime_diff)
2606
2607         mkdir -p $DIR/$tdir
2608
2609         # test setting directory atime to future
2610         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2611         local atime=$(stat -c %X $DIR/$tdir)
2612         [ "$atime" = $TEST_39_ATIME ] || \
2613                 error "atime is not set to future: $atime, should be $TEST_39_ATIME"
2614
2615         # test setting directory atime from future to now
2616         local d1=$(date +%s)
2617         ls $DIR/$tdir
2618         local d2=$(date +%s)
2619
2620         cancel_lru_locks mdc
2621         atime=$(stat -c %X $DIR/$tdir)
2622         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2623                 error "atime is not updated from future: $atime, should be $d1<atime<$d2"
2624
2625         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=2
2626         sleep 3
2627
2628         # test setting directory atime when now > dir atime + atime_diff
2629         d1=$(date +%s)
2630         ls $DIR/$tdir
2631         d2=$(date +%s)
2632         cancel_lru_locks mdc
2633         atime=$(stat -c %X $DIR/$tdir)
2634         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2635                 error "atime is not updated  : $atime, should be $d2"
2636
2637         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=60
2638         sleep 3
2639
2640         # test not setting directory atime when now < dir atime + atime_diff
2641         ls $DIR/$tdir
2642         cancel_lru_locks mdc
2643         atime=$(stat -c %X $DIR/$tdir)
2644         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2645                 error "atime is updated to $atime, should remain $d1<atime<$d2"
2646
2647         do_facet $SINGLEMDS lctl set_param -n mdd.*.atime_diff=$atime_diff
2648 }
2649 run_test 39l "directory atime update ==========================="
2650
2651 test_39m() {
2652         touch $DIR1/$tfile
2653         sleep 2
2654         local far_past_mtime=$(date -d "May 29 1953" +%s)
2655         local far_past_atime=$(date -d "Dec 17 1903" +%s)
2656
2657         touch -m -d @$far_past_mtime $DIR1/$tfile
2658         touch -a -d @$far_past_atime $DIR1/$tfile
2659
2660         for (( i=0; i < 2; i++ )) ; do
2661                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2662                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2663                         error "atime or mtime set incorrectly"
2664
2665                 cancel_lru_locks osc
2666                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2667         done
2668 }
2669 run_test 39m "test atime and mtime before 1970"
2670
2671 test_40() {
2672         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2673         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2674         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2675 }
2676 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2677
2678 test_41() {
2679         # bug 1553
2680         small_write $DIR/f41 18
2681 }
2682 run_test 41 "test small file write + fstat ====================="
2683
2684 count_ost_writes() {
2685         lctl get_param -n osc.*.stats |
2686             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2687 }
2688
2689 # decent default
2690 WRITEBACK_SAVE=500
2691 DIRTY_RATIO_SAVE=40
2692 MAX_DIRTY_RATIO=50
2693 BG_DIRTY_RATIO_SAVE=10
2694 MAX_BG_DIRTY_RATIO=25
2695
2696 start_writeback() {
2697         trap 0
2698         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2699         # dirty_ratio, dirty_background_ratio
2700         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2701                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2702                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2703                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2704         else
2705                 # if file not here, we are a 2.4 kernel
2706                 kill -CONT `pidof kupdated`
2707         fi
2708 }
2709
2710 stop_writeback() {
2711         # setup the trap first, so someone cannot exit the test at the
2712         # exact wrong time and mess up a machine
2713         trap start_writeback EXIT
2714         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2715         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2716                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2717                 sysctl -w vm.dirty_writeback_centisecs=0
2718                 sysctl -w vm.dirty_writeback_centisecs=0
2719                 # save and increase /proc/sys/vm/dirty_ratio
2720                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2721                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2722                 # save and increase /proc/sys/vm/dirty_background_ratio
2723                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2724                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2725         else
2726                 # if file not here, we are a 2.4 kernel
2727                 kill -STOP `pidof kupdated`
2728         fi
2729 }
2730
2731 # ensure that all stripes have some grant before we test client-side cache
2732 setup_test42() {
2733         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
2734                 dd if=/dev/zero of=$i bs=4k count=1
2735                 rm $i
2736         done
2737 }
2738
2739 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
2740 # file truncation, and file removal.
2741 test_42a() {
2742         setup_test42
2743         cancel_lru_locks osc
2744         stop_writeback
2745         sync; sleep 1; sync # just to be safe
2746         BEFOREWRITES=`count_ost_writes`
2747         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
2748         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
2749         AFTERWRITES=`count_ost_writes`
2750         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2751                 error "$BEFOREWRITES < $AFTERWRITES"
2752         start_writeback
2753 }
2754 run_test 42a "ensure that we don't flush on close =============="
2755
2756 test_42b() {
2757         setup_test42
2758         cancel_lru_locks osc
2759         stop_writeback
2760         sync
2761         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
2762         BEFOREWRITES=`count_ost_writes`
2763         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
2764         AFTERWRITES=`count_ost_writes`
2765         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2766                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
2767         fi
2768         BEFOREWRITES=`count_ost_writes`
2769         sync || error "sync: $?"
2770         AFTERWRITES=`count_ost_writes`
2771         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
2772                 error "$BEFOREWRITES < $AFTERWRITES on sync"
2773         fi
2774         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
2775         start_writeback
2776         return 0
2777 }
2778 run_test 42b "test destroy of file with cached dirty data ======"
2779
2780 # if these tests just want to test the effect of truncation,
2781 # they have to be very careful.  consider:
2782 # - the first open gets a {0,EOF}PR lock
2783 # - the first write conflicts and gets a {0, count-1}PW
2784 # - the rest of the writes are under {count,EOF}PW
2785 # - the open for truncate tries to match a {0,EOF}PR
2786 #   for the filesize and cancels the PWs.
2787 # any number of fixes (don't get {0,EOF} on open, match
2788 # composite locks, do smarter file size management) fix
2789 # this, but for now we want these tests to verify that
2790 # the cancellation with truncate intent works, so we
2791 # start the file with a full-file pw lock to match against
2792 # until the truncate.
2793 trunc_test() {
2794         test=$1
2795         file=$DIR/$test
2796         offset=$2
2797         cancel_lru_locks osc
2798         stop_writeback
2799         # prime the file with 0,EOF PW to match
2800         touch $file
2801         $TRUNCATE $file 0
2802         sync; sync
2803         # now the real test..
2804         dd if=/dev/zero of=$file bs=1024 count=100
2805         BEFOREWRITES=`count_ost_writes`
2806         $TRUNCATE $file $offset
2807         cancel_lru_locks osc
2808         AFTERWRITES=`count_ost_writes`
2809         start_writeback
2810 }
2811
2812 test_42c() {
2813         trunc_test 42c 1024
2814         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
2815             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
2816         rm $file
2817 }
2818 run_test 42c "test partial truncate of file with cached dirty data"
2819
2820 test_42d() {
2821         trunc_test 42d 0
2822         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
2823             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
2824         rm $file
2825 }
2826 run_test 42d "test complete truncate of file with cached dirty data"
2827
2828 test_42e() { # bug22074
2829         local TDIR=$DIR/${tdir}e
2830         local pagesz=$(page_size)
2831         local pages=16 # hardcoded 16 pages, don't change it.
2832         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
2833         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
2834         local max_dirty_mb
2835         local warmup_files
2836
2837         mkdir -p $TDIR
2838         $SETSTRIPE -c 1 $TDIR
2839         createmany -o $TDIR/f $files
2840
2841         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
2842
2843         # we assume that with $OSTCOUNT files, at least one of them will
2844         # be allocated on OST0.
2845         warmup_files=$((OSTCOUNT * max_dirty_mb))
2846         createmany -o $TDIR/w $warmup_files
2847
2848         # write a large amount of data into one file and sync, to get good
2849         # avail_grant number from OST.
2850         for ((i=0; i<$warmup_files; i++)); do
2851                 idx=$($GETSTRIPE -i $TDIR/w$i)
2852                 [ $idx -ne 0 ] && continue
2853                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
2854                 break
2855         done
2856         [ $i -gt $warmup_files ] && error "OST0 is still cold"
2857         sync
2858         $LCTL get_param $proc_osc0/cur_dirty_bytes
2859         $LCTL get_param $proc_osc0/cur_grant_bytes
2860
2861         # create as much dirty pages as we can while not to trigger the actual
2862         # RPCs directly. but depends on the env, VFS may trigger flush during this
2863         # period, hopefully we are good.
2864         for ((i=0; i<$warmup_files; i++)); do
2865                 idx=$($GETSTRIPE -i $TDIR/w$i)
2866                 [ $idx -ne 0 ] && continue
2867                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
2868         done
2869         $LCTL get_param $proc_osc0/cur_dirty_bytes
2870         $LCTL get_param $proc_osc0/cur_grant_bytes
2871
2872         # perform the real test
2873         $LCTL set_param $proc_osc0/rpc_stats 0
2874         for ((;i<$files; i++)); do
2875                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
2876                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
2877         done
2878         sync
2879         $LCTL get_param $proc_osc0/rpc_stats
2880
2881         local percent=0
2882         local have_ppr=false
2883         $LCTL get_param $proc_osc0/rpc_stats |
2884                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
2885                         # skip lines until we are at the RPC histogram data
2886                         [ "$PPR" == "pages" ] && have_ppr=true && continue
2887                         $have_ppr || continue
2888
2889                         # we only want the percent stat for < 16 pages
2890                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
2891
2892                         percent=$((percent + WPCT))
2893                         if [ $percent -gt 15 ]; then
2894                                 error "less than 16-pages write RPCs" \
2895                                       "$percent% > 15%"
2896                                 break
2897                         fi
2898                 done
2899         rm -rf $TDIR
2900 }
2901 run_test 42e "verify sub-RPC writes are not done synchronously"
2902
2903 test_43() {
2904         mkdir -p $DIR/$tdir
2905         cp -p /bin/ls $DIR/$tdir/$tfile
2906         $MULTIOP $DIR/$tdir/$tfile Ow_c &
2907         pid=$!
2908         # give multiop a chance to open
2909         sleep 1
2910
2911         $DIR/$tdir/$tfile && error || true
2912         kill -USR1 $pid
2913 }
2914 run_test 43 "execution of file opened for write should return -ETXTBSY"
2915
2916 test_43a() {
2917         mkdir -p $DIR/d43
2918         cp -p `which $MULTIOP` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2919         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2920         MULTIOP_PID=$!
2921         $MULTIOP $DIR/d43/multiop Oc && error "expected error, got success"
2922         kill -USR1 $MULTIOP_PID || return 2
2923         wait $MULTIOP_PID || return 3
2924         rm $TMP/test43.junk
2925 }
2926 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
2927
2928 test_43b() {
2929         mkdir -p $DIR/d43
2930         cp -p `which $MULTIOP` $DIR/d43/multiop || cp -p multiop $DIR/d43/multiop
2931         MULTIOP_PROG=$DIR/d43/multiop multiop_bg_pause $TMP/test43.junk O_c || return 1
2932         MULTIOP_PID=$!
2933         $TRUNCATE $DIR/d43/multiop 0 && error "expected error, got success"
2934         kill -USR1 $MULTIOP_PID || return 2
2935         wait $MULTIOP_PID || return 3
2936         rm $TMP/test43.junk
2937 }
2938 run_test 43b "truncate of file being executed should return -ETXTBSY"
2939
2940 test_43c() {
2941         local testdir="$DIR/d43c"
2942         mkdir -p $testdir
2943         cp $SHELL $testdir/
2944         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
2945                 ( cd $testdir && md5sum -c)
2946 }
2947 run_test 43c "md5sum of copy into lustre========================"
2948
2949 test_44() {
2950         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
2951         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
2952         dd if=$DIR/f1 bs=4k count=1 > /dev/null
2953 }
2954 run_test 44 "zero length read from a sparse stripe ============="
2955
2956 test_44a() {
2957     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
2958                          awk '{print $2}'`
2959     [ -z "$nstripe" ] && skip "can't get stripe info" && return
2960     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
2961     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
2962                       awk '{print $2}'`
2963     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
2964         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
2965     fi
2966
2967     OFFSETS="0 $((stride/2)) $((stride-1))"
2968     for offset in $OFFSETS ; do
2969       for i in `seq 0 $((nstripe-1))`; do
2970         local GLOBALOFFSETS=""
2971         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
2972         local myfn=$DIR/d44a-$size
2973         echo "--------writing $myfn at $size"
2974         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
2975         GLOBALOFFSETS="$GLOBALOFFSETS $size"
2976         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2977                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2978
2979         for j in `seq 0 $((nstripe-1))`; do
2980             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
2981             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
2982             GLOBALOFFSETS="$GLOBALOFFSETS $size"
2983         done
2984         ll_sparseness_verify $myfn $GLOBALOFFSETS \
2985                             || error "ll_sparseness_verify $GLOBALOFFSETS"
2986         rm -f $myfn
2987       done
2988     done
2989 }
2990 run_test 44a "test sparse pwrite ==============================="
2991
2992 dirty_osc_total() {
2993         tot=0
2994         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
2995                 tot=$(($tot + $d))
2996         done
2997         echo $tot
2998 }
2999 do_dirty_record() {
3000         before=`dirty_osc_total`
3001         echo executing "\"$*\""
3002         eval $*
3003         after=`dirty_osc_total`
3004         echo before $before, after $after
3005 }
3006 test_45() {
3007         f="$DIR/f45"
3008         # Obtain grants from OST if it supports it
3009         echo blah > ${f}_grant
3010         stop_writeback
3011         sync
3012         do_dirty_record "echo blah > $f"
3013         [ $before -eq $after ] && error "write wasn't cached"
3014         do_dirty_record "> $f"
3015         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3016         do_dirty_record "echo blah > $f"
3017         [ $before -eq $after ] && error "write wasn't cached"
3018         do_dirty_record "sync"
3019         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3020         do_dirty_record "echo blah > $f"
3021         [ $before -eq $after ] && error "write wasn't cached"
3022         do_dirty_record "cancel_lru_locks osc"
3023         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3024         start_writeback
3025 }
3026 run_test 45 "osc io page accounting ============================"
3027
3028 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3029 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3030 # objects offset and an assert hit when an rpc was built with 1023's mapped
3031 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3032 test_46() {
3033         f="$DIR/f46"
3034         stop_writeback
3035         sync
3036         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3037         sync
3038         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3039         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3040         sync
3041         start_writeback
3042 }
3043 run_test 46 "dirtying a previously written page ================"
3044
3045 # test_47 is removed "Device nodes check" is moved to test_28
3046
3047 test_48a() { # bug 2399
3048         check_kernel_version 34 || return 0
3049         mkdir -p $DIR/d48a
3050         cd $DIR/d48a
3051         mv $DIR/d48a $DIR/d48.new || error "move directory failed"
3052         mkdir $DIR/d48a || error "recreate directory failed"
3053         touch foo || error "'touch foo' failed after recreating cwd"
3054         mkdir bar || error "'mkdir foo' failed after recreating cwd"
3055         if check_kernel_version 44; then
3056                 touch .foo || error "'touch .foo' failed after recreating cwd"
3057                 mkdir .bar || error "'mkdir .foo' failed after recreating cwd"
3058         fi
3059         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3060         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3061         cd . || error "'cd .' failed after recreating cwd"
3062         mkdir . && error "'mkdir .' worked after recreating cwd"
3063         rmdir . && error "'rmdir .' worked after recreating cwd"
3064         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3065         cd .. || error "'cd ..' failed after recreating cwd"
3066 }
3067 run_test 48a "Access renamed working dir (should return errors)="
3068
3069 test_48b() { # bug 2399
3070         check_kernel_version 34 || return 0
3071         mkdir -p $DIR/d48b
3072         cd $DIR/d48b
3073         rmdir $DIR/d48b || error "remove cwd $DIR/d48b failed"
3074         touch foo && error "'touch foo' worked after removing cwd"
3075         mkdir foo && error "'mkdir foo' worked after removing cwd"
3076         if check_kernel_version 44; then
3077                 touch .foo && error "'touch .foo' worked after removing cwd"
3078                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3079         fi
3080         ls . > /dev/null && error "'ls .' worked after removing cwd"
3081         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3082         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3083         mkdir . && error "'mkdir .' worked after removing cwd"
3084         rmdir . && error "'rmdir .' worked after removing cwd"
3085         ln -s . foo && error "'ln -s .' worked after removing cwd"
3086         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3087 }
3088 run_test 48b "Access removed working dir (should return errors)="
3089
3090 test_48c() { # bug 2350
3091         check_kernel_version 36 || return 0
3092         #lctl set_param debug=-1
3093         #set -vx
3094         mkdir -p $DIR/d48c/dir
3095         cd $DIR/d48c/dir
3096         $TRACE rmdir $DIR/d48c/dir || error "remove cwd $DIR/d48c/dir failed"
3097         $TRACE touch foo && error "'touch foo' worked after removing cwd"
3098         $TRACE mkdir foo && error "'mkdir foo' worked after removing cwd"
3099         if check_kernel_version 44; then
3100                 touch .foo && error "'touch .foo' worked after removing cwd"
3101                 mkdir .foo && error "'mkdir .foo' worked after removing cwd"
3102         fi
3103         $TRACE ls . && error "'ls .' worked after removing cwd"
3104         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3105         is_patchless || ( $TRACE cd . && error "'cd .' worked after removing cwd" )
3106         $TRACE mkdir . && error "'mkdir .' worked after removing cwd"
3107         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3108         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3109         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3110 }
3111 run_test 48c "Access removed working subdir (should return errors)"
3112
3113 test_48d() { # bug 2350
3114         check_kernel_version 36 || return 0
3115         #lctl set_param debug=-1
3116         #set -vx
3117         mkdir -p $DIR/d48d/dir
3118         cd $DIR/d48d/dir
3119         $TRACE rmdir $DIR/d48d/dir || error "remove cwd $DIR/d48d/dir failed"
3120         $TRACE rmdir $DIR/d48d || error "remove parent $DIR/d48d failed"
3121         $TRACE touch foo && error "'touch foo' worked after removing parent"
3122         $TRACE mkdir foo && error "'mkdir foo' worked after removing parent"
3123         if check_kernel_version 44; then
3124                 touch .foo && error "'touch .foo' worked after removing parent"
3125                 mkdir .foo && error "'mkdir .foo' worked after removing parent"
3126         fi
3127         $TRACE ls . && error "'ls .' worked after removing parent"
3128         $TRACE ls .. && error "'ls ..' worked after removing parent"
3129         is_patchless || ( $TRACE cd . && error "'cd .' worked after recreate parent" )
3130         $TRACE mkdir . && error "'mkdir .' worked after removing parent"
3131         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3132         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3133         is_patchless || ( $TRACE cd .. && error "'cd ..' worked after removing parent" || true )
3134 }
3135 run_test 48d "Access removed parent subdir (should return errors)"
3136
3137 test_48e() { # bug 4134
3138         check_kernel_version 41 || return 0
3139         #lctl set_param debug=-1
3140         #set -vx
3141         mkdir -p $DIR/d48e/dir
3142         cd $DIR/d48e/dir
3143         $TRACE rmdir $DIR/d48e/dir || error "remove cwd $DIR/d48e/dir failed"
3144         $TRACE rmdir $DIR/d48e || error "remove parent $DIR/d48e failed"
3145         $TRACE touch $DIR/d48e || error "'touch $DIR/d48e' failed"
3146         $TRACE chmod +x $DIR/d48e || error "'chmod +x $DIR/d48e' failed"
3147         # On a buggy kernel addition of "touch foo" after cd .. will
3148         # produce kernel oops in lookup_hash_it
3149         touch ../foo && error "'cd ..' worked after recreate parent"
3150         cd $DIR
3151         $TRACE rm $DIR/d48e || error "rm '$DIR/d48e' failed"
3152 }
3153 run_test 48e "Access to recreated parent subdir (should return errors)"
3154
3155 test_49() { # LU-1030
3156         # get ost1 size - lustre-OST0000
3157         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3158         # write 800M at maximum
3159         [ $ost1_size -gt 819200 ] && ost1_size=819200
3160
3161         lfs setstripe -c 1 -i 0 $DIR/$tfile
3162         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3163         local dd_pid=$!
3164
3165         # change max_pages_per_rpc while writing the file
3166         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3167         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3168         # loop until dd process exits
3169         while ps ax -opid | grep -wq $dd_pid; do
3170                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3171                 sleep $((RANDOM % 5 + 1))
3172         done
3173         # restore original max_pages_per_rpc
3174         $LCTL set_param $osc1_mppc=$orig_mppc
3175         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3176 }
3177 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3178
3179 test_50() {
3180         # bug 1485
3181         mkdir $DIR/d50
3182         cd $DIR/d50
3183         ls /proc/$$/cwd || error
3184 }
3185 run_test 50 "special situations: /proc symlinks  ==============="
3186
3187 test_51a() {    # was test_51
3188         # bug 1516 - create an empty entry right after ".." then split dir
3189         mkdir $DIR/d51
3190         touch $DIR/d51/foo
3191         $MCREATE $DIR/d51/bar
3192         rm $DIR/d51/foo
3193         createmany -m $DIR/d51/longfile 201
3194         FNUM=202
3195         while [ `ls -sd $DIR/d51 | awk '{ print $1 }'` -eq 4 ]; do
3196                 $MCREATE $DIR/d51/longfile$FNUM
3197                 FNUM=$(($FNUM + 1))
3198                 echo -n "+"
3199         done
3200         echo
3201         ls -l $DIR/d51 > /dev/null || error
3202 }
3203 run_test 51a "special situations: split htree with empty entry =="
3204
3205 export NUMTEST=70000
3206 test_51b() {
3207         local BASE=$DIR/$tdir
3208         mkdir -p $BASE
3209
3210         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3211         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3212         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3213                 return
3214
3215         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3216                 echo "reduced count to $NUMTEST due to inodes"
3217
3218         # need to check free space for the directories as well
3219         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3220         numfree=$((blkfree / 4))
3221         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3222                 echo "reduced count to $NUMTEST due to blocks"
3223
3224         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3225                 echo "failed" > $BASE/fnum
3226 }
3227 run_test 51b "exceed 64k subdirectory nlink limit"
3228
3229 test_51ba() { # LU-993
3230         local BASE=$DIR/$tdir
3231         # unlink all but 100 subdirectories, then check it still works
3232         local LEFT=100
3233         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3234
3235         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3236         local DELETE=$((NUMTEST - LEFT))
3237
3238         # continue on to run this test even if 51b didn't finish,
3239         # just to delete the many subdirectories created.
3240         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3241
3242         # for ldiskfs the nlink count should be 1, but this is OSD specific
3243         # and so this is listed for informational purposes only
3244         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3245         unlinkmany -d $BASE/d $DELETE
3246         RC=$?
3247
3248         if [ $RC -ne 0 ]; then
3249                 if [ "$NUMPREV" == "failed" ]; then
3250                         skip "previous setup failed"
3251                         return 0
3252                 else
3253                         error "unlink of first $DELETE subdirs failed"
3254                         return $RC
3255                 fi
3256         fi
3257
3258         echo "nlink between: $(stat -c %h $BASE)"
3259         # trim the first line of ls output
3260         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3261         [ $FOUND -ne $LEFT ] &&
3262                 error "can't find subdirs: found only $FOUND/$LEFT"
3263
3264         unlinkmany -d $BASE/d $DELETE $LEFT ||
3265                 error "unlink of second $LEFT subdirs failed"
3266         # regardless of whether the backing filesystem tracks nlink accurately
3267         # or not, the nlink count shouldn't be more than "." and ".." here
3268         local AFTER=$(stat -c %h $BASE)
3269         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3270                 echo "nlink after: $AFTER"
3271 }
3272 run_test 51ba "verify nlink for many subdirectory cleanup"
3273
3274 test_51bb() {
3275         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
3276
3277         local ndirs=${TEST51BB_NDIRS:-10}
3278         local nfiles=${TEST51BB_NFILES:-100}
3279
3280         local numfree=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
3281
3282         [ $numfree -lt $(( ndirs * nfiles)) ] && \
3283                 nfiles=$(( numfree / ndirs - 10 ))
3284
3285         local dir=$DIR/d51bb
3286         mkdir -p $dir
3287         local savePOLICY=$(lctl get_param -n lmv.*.placement)
3288         lctl set_param -n lmv.*.placement=CHAR
3289
3290         lfs df -i $dir
3291         local IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3292         OLDUSED=($IUSED)
3293
3294         declare -a dirs
3295         for ((i=0; i < $ndirs; i++)); do
3296                 dirs[i]=$dir/$RANDOM
3297                 echo Creating directory ${dirs[i]}
3298                 mkdir -p ${dirs[i]}
3299                 ls $dir
3300                 echo Creating $nfiles in dir ${dirs[i]} ...
3301                 echo "createmany -o ${dirs[i]}/$tfile- $nfiles"
3302                 createmany -o ${dirs[i]}/$tfile- $nfiles
3303         done
3304         ls $dir
3305
3306         sleep 1
3307
3308         IUSED=$(lfs df -i $dir | grep MDT | awk '{print $3}')
3309         NEWUSED=($IUSED)
3310
3311         local rc=0
3312         for ((i=0; i<${#NEWUSED[@]}; i++)); do
3313                 echo "mds $i: inodes count OLD ${OLDUSED[$i]} NEW ${NEWUSED[$i]}"
3314                 [ ${OLDUSED[$i]} -lt ${NEWUSED[$i]} ] || rc=$((rc + 1))
3315         done
3316
3317         lctl set_param -n lmv.*.placement=$savePOLICY
3318
3319         [ $rc -ne $MDSCOUNT ] || \
3320                 error "Objects/inodes are not distributed over all mds servers"
3321 }
3322 run_test 51bb "mkdir createmany CMD $MDSCOUNT  ===================="
3323
3324 test_51d() {
3325         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3326         mkdir -p $DIR/d51d
3327         createmany -o $DIR/d51d/t- 1000
3328         $GETSTRIPE $DIR/d51d > $TMP/files
3329         for N in `seq 0 $((OSTCOUNT - 1))`; do
3330             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3331             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3332             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3333         done
3334         unlinkmany $DIR/d51d/t- 1000
3335
3336         NLAST=0
3337         for N in `seq 1 $((OSTCOUNT - 1))`; do
3338             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3339                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3340             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3341                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3342
3343             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3344                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3345             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3346                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3347             NLAST=$N
3348         done
3349 }
3350 run_test 51d "check object distribution ===================="
3351
3352 test_52a() {
3353         [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
3354         mkdir -p $DIR/d52a
3355         touch $DIR/d52a/foo
3356         chattr +a $DIR/d52a/foo || error "chattr +a failed"
3357         echo bar >> $DIR/d52a/foo || error "append bar failed"
3358         cp /etc/hosts $DIR/d52a/foo && error "cp worked"
3359         rm -f $DIR/d52a/foo 2>/dev/null && error "rm worked"
3360         link $DIR/d52a/foo $DIR/d52a/foo_link 2>/dev/null && error "link worked"
3361         echo foo >> $DIR/d52a/foo || error "append foo failed"
3362         mrename $DIR/d52a/foo $DIR/d52a/foo_ren && error "rename worked"
3363         lsattr $DIR/d52a/foo | egrep -q "^-+a[-e]+ $DIR/d52a/foo" || error "lsattr"
3364         chattr -a $DIR/d52a/foo || error "chattr -a failed"
3365         cp -r $DIR/d52a /tmp/
3366         rm -fr $DIR/d52a || error "cleanup rm failed"
3367 }
3368 run_test 52a "append-only flag test (should return errors) ====="
3369
3370 test_52b() {
3371         [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
3372         mkdir -p $DIR/d52b
3373         touch $DIR/d52b/foo
3374         chattr +i $DIR/d52b/foo || error "chattr +i failed"
3375         cat test > $DIR/d52b/foo && error "cat test worked"
3376         cp /etc/hosts $DIR/d52b/foo && error "cp worked"
3377         rm -f $DIR/d52b/foo 2>/dev/null && error "rm worked"
3378         link $DIR/d52b/foo $DIR/d52b/foo_link 2>/dev/null && error  "link worked"
3379         echo foo >> $DIR/d52b/foo && error "echo worked"
3380         mrename $DIR/d52b/foo $DIR/d52b/foo_ren && error "rename worked"
3381         [ -f $DIR/d52b/foo ] || error
3382         [ -f $DIR/d52b/foo_ren ] && error
3383         lsattr $DIR/d52b/foo | egrep -q "^-+i[-e]+ $DIR/d52b/foo" || error "lsattr"
3384         chattr -i $DIR/d52b/foo || error "chattr failed"
3385
3386         rm -fr $DIR/d52b || error
3387 }
3388 run_test 52b "immutable flag test (should return errors) ======="
3389
3390 test_53() {
3391         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3392         remote_ost_nodsh && skip "remote OST with nodsh" && return
3393
3394         local param
3395         local ostname
3396         local mds_last
3397         local ost_last
3398         local ostnum
3399
3400         # only test MDT0000
3401         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3402         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3403                 param=`echo ${value[0]} | cut -d "=" -f1`
3404                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3405                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3406                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
3407                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
3408                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3409                 if [ $ost_last != $mds_last ]; then
3410                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3411                 fi
3412         done
3413 }
3414 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3415
3416 test_54a() {
3417         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3418         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3419         $SOCKETSERVER $DIR/socket
3420         $SOCKETCLIENT $DIR/socket || error
3421         $MUNLINK $DIR/socket
3422 }
3423 run_test 54a "unix domain socket test =========================="
3424
3425 test_54b() {
3426         f="$DIR/f54b"
3427         mknod $f c 1 3
3428         chmod 0666 $f
3429         dd if=/dev/zero of=$f bs=`page_size` count=1
3430 }
3431 run_test 54b "char device works in lustre ======================"
3432
3433 find_loop_dev() {
3434         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3435         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3436         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3437
3438         for i in `seq 3 7`; do
3439                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3440                 LOOPDEV=$LOOPBASE$i
3441                 LOOPNUM=$i
3442                 break
3443         done
3444 }
3445
3446 test_54c() {
3447         tfile="$DIR/f54c"
3448         tdir="$DIR/d54c"
3449         loopdev="$DIR/loop54c"
3450
3451         find_loop_dev
3452         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3453         mknod $loopdev b 7 $LOOPNUM
3454         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3455         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3456         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3457         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3458         mkdir -p $tdir
3459         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3460         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3461         df $tdir
3462         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3463         $UMOUNT $tdir
3464         losetup -d $loopdev
3465         rm $loopdev
3466 }
3467 run_test 54c "block device works in lustre ====================="
3468
3469 test_54d() {
3470         f="$DIR/f54d"
3471         string="aaaaaa"
3472         mknod $f p
3473         [ "$string" = `echo $string > $f | cat $f` ] || error
3474 }
3475 run_test 54d "fifo device works in lustre ======================"
3476
3477 test_54e() {
3478         check_kernel_version 46 || return 0
3479         f="$DIR/f54e"
3480         string="aaaaaa"
3481         cp -aL /dev/console $f
3482         echo $string > $f || error
3483 }
3484 run_test 54e "console/tty device works in lustre ======================"
3485
3486 #The test_55 used to be iopen test and it was removed by bz#24037.
3487 #run_test 55 "check iopen_connect_dentry() ======================"
3488
3489 test_56a() {    # was test_56
3490         rm -rf $DIR/d56
3491         $SETSTRIPE -d $DIR
3492         mkdir $DIR/d56
3493         mkdir $DIR/d56/dir
3494         NUMFILES=3
3495         NUMFILESx2=$(($NUMFILES * 2))
3496         for i in `seq 1 $NUMFILES` ; do
3497                 touch $DIR/d56/file$i
3498                 touch $DIR/d56/dir/file$i
3499         done
3500
3501         # test lfs getstripe with --recursive
3502         FILENUM=`$GETSTRIPE --recursive $DIR/d56 | grep -c obdidx`
3503         [ $FILENUM -eq $NUMFILESx2 ] ||
3504                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3505         FILENUM=`$GETSTRIPE $DIR/d56 | grep -c obdidx`
3506         [ $FILENUM -eq $NUMFILES ] ||
3507                 error "$GETSTRIPE $DIR/d56: found $FILENUM, not $NUMFILES"
3508         echo "$GETSTRIPE --recursive passed."
3509
3510         # test lfs getstripe with file instead of dir
3511         FILENUM=`$GETSTRIPE $DIR/d56/file1 | grep -c obdidx`
3512         [ $FILENUM  -eq 1 ] || error \
3513                  "$GETSTRIPE $DIR/d56/file1: found $FILENUM, not 1"
3514         echo "$GETSTRIPE file1 passed."
3515
3516         #test lfs getstripe with --verbose
3517         [ `$GETSTRIPE --verbose $DIR/d56 | grep -c lmm_magic` -eq $NUMFILES ] ||
3518                 error "$GETSTRIPE --verbose $DIR/d56: want $NUMFILES lmm_magic"
3519         [ `$GETSTRIPE $DIR/d56 | grep -c lmm_magic` -eq 0 ] ||
3520             error "$GETSTRIPE $DIR/d56: showed lmm_magic"
3521         echo "$GETSTRIPE --verbose passed."
3522
3523         #test lfs getstripe with --obd
3524         $GETSTRIPE --obd wrong_uuid $DIR/d56 2>&1 | grep -q "unknown obduuid" ||
3525                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3526
3527         [  "$OSTCOUNT" -lt 2 ] &&
3528                 skip_env "skipping other $GETSTRIPE --obd test" && return
3529
3530         OSTIDX=1
3531         OBDUUID=$(ostuuid_from_index $OSTIDX)
3532         FILENUM=`$GETSTRIPE -ir $DIR/d56 | grep -x $OSTIDX | wc -l`
3533         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/d56 | grep obdidx | wc -l`
3534         [ $FOUND -eq $FILENUM ] ||
3535                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3536         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/d56 |
3537                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3538                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3539                 error "$GETSTRIPE --obd: should not show file on other obd"
3540         echo "$GETSTRIPE --obd passed"
3541 }
3542 run_test 56a "check $GETSTRIPE"
3543
3544 NUMFILES=3
3545 NUMDIRS=3
3546 setup_56() {
3547         local LOCAL_NUMFILES="$1"
3548         local LOCAL_NUMDIRS="$2"
3549         local MKDIR_PARAMS="$3"
3550
3551         if [ ! -d "$TDIR" ] ; then
3552                 mkdir -p $TDIR
3553                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3554                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3555                         touch $TDIR/file$i
3556                 done
3557                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3558                         mkdir $TDIR/dir$i
3559                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3560                                 touch $TDIR/dir$i/file$j
3561                         done
3562                 done
3563         fi
3564 }
3565
3566 setup_56_special() {
3567         LOCAL_NUMFILES=$1
3568         LOCAL_NUMDIRS=$2
3569         setup_56 $1 $2
3570         if [ ! -e "$TDIR/loop1b" ] ; then
3571                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3572                         mknod $TDIR/loop${i}b b 7 $i
3573                         mknod $TDIR/null${i}c c 1 3
3574                         ln -s $TDIR/file1 $TDIR/link${i}l
3575                 done
3576                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3577                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3578                         mknod $TDIR/dir$i/null${i}c c 1 3
3579                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3580                 done
3581         fi
3582 }
3583
3584 test_56g() {
3585         $SETSTRIPE -d $DIR
3586
3587         TDIR=$DIR/${tdir}g
3588         setup_56 $NUMFILES $NUMDIRS
3589
3590         EXPECTED=$(($NUMDIRS + 2))
3591         # test lfs find with -name
3592         for i in $(seq 1 $NUMFILES) ; do
3593                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3594                 [ $NUMS -eq $EXPECTED ] ||
3595                         error "lfs find -name \"*$i\" $TDIR wrong: "\
3596                               "found $NUMS, expected $EXPECTED"
3597         done
3598 }
3599 run_test 56g "check lfs find -name ============================="
3600
3601 test_56h() {
3602         $SETSTRIPE -d $DIR
3603
3604         TDIR=$DIR/${tdir}g
3605         setup_56 $NUMFILES $NUMDIRS
3606
3607         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
3608         # test lfs find with ! -name
3609         for i in $(seq 1 $NUMFILES) ; do
3610                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
3611                 [ $NUMS -eq $EXPECTED ] ||
3612                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
3613                               "found $NUMS, expected $EXPECTED"
3614         done
3615 }
3616 run_test 56h "check lfs find ! -name ============================="
3617
3618 test_56i() {
3619        tdir=${tdir}i
3620        mkdir -p $DIR/$tdir
3621        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3622        CMD="$LFIND -ost $UUID $DIR/$tdir"
3623        OUT=$($CMD)
3624        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
3625 }
3626 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3627
3628 test_56j() {
3629         TDIR=$DIR/${tdir}g
3630         setup_56_special $NUMFILES $NUMDIRS
3631
3632         EXPECTED=$((NUMDIRS + 1))
3633         CMD="$LFIND -type d $TDIR"
3634         NUMS=$($CMD | wc -l)
3635         [ $NUMS -eq $EXPECTED ] ||
3636                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3637 }
3638 run_test 56j "check lfs find -type d ============================="
3639
3640 test_56k() {
3641         TDIR=$DIR/${tdir}g
3642         setup_56_special $NUMFILES $NUMDIRS
3643
3644         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3645         CMD="$LFIND -type f $TDIR"
3646         NUMS=$($CMD | wc -l)
3647         [ $NUMS -eq $EXPECTED ] ||
3648                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3649 }
3650 run_test 56k "check lfs find -type f ============================="
3651
3652 test_56l() {
3653         TDIR=$DIR/${tdir}g
3654         setup_56_special $NUMFILES $NUMDIRS
3655
3656         EXPECTED=$((NUMDIRS + NUMFILES))
3657         CMD="$LFIND -type b $TDIR"
3658         NUMS=$($CMD | wc -l)
3659         [ $NUMS -eq $EXPECTED ] ||
3660                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3661 }
3662 run_test 56l "check lfs find -type b ============================="
3663
3664 test_56m() {
3665         TDIR=$DIR/${tdir}g
3666         setup_56_special $NUMFILES $NUMDIRS
3667
3668         EXPECTED=$((NUMDIRS + NUMFILES))
3669         CMD="$LFIND -type c $TDIR"
3670         NUMS=$($CMD | wc -l)
3671         [ $NUMS -eq $EXPECTED ] ||
3672                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3673 }
3674 run_test 56m "check lfs find -type c ============================="
3675
3676 test_56n() {
3677         TDIR=$DIR/${tdir}g
3678         setup_56_special $NUMFILES $NUMDIRS
3679
3680         EXPECTED=$((NUMDIRS + NUMFILES))
3681         CMD="$LFIND -type l $TDIR"
3682         NUMS=$($CMD | wc -l)
3683         [ $NUMS -eq $EXPECTED ] ||
3684                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3685 }
3686 run_test 56n "check lfs find -type l ============================="
3687
3688 test_56o() {
3689         TDIR=$DIR/${tdir}o
3690         setup_56 $NUMFILES $NUMDIRS
3691
3692         utime $TDIR/file1 > /dev/null || error "utime (1)"
3693         utime $TDIR/file2 > /dev/null || error "utime (2)"
3694         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3695         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3696         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3697         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
3698
3699         EXPECTED=4
3700         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
3701         [ $NUMS -eq $EXPECTED ] || \
3702                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
3703
3704         EXPECTED=12
3705         CMD="$LFIND -mtime 0 $TDIR"
3706         NUMS=$($CMD | wc -l)
3707         [ $NUMS -eq $EXPECTED ] ||
3708                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3709 }
3710 run_test 56o "check lfs find -mtime for old files =========================="
3711
3712 test_56p() {
3713         [ $RUNAS_ID -eq $UID ] &&
3714                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3715
3716         TDIR=$DIR/${tdir}p
3717         setup_56 $NUMFILES $NUMDIRS
3718
3719         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3720         EXPECTED=$NUMFILES
3721         CMD="$LFIND -uid $RUNAS_ID $TDIR"
3722         NUMS=$($CMD | wc -l)
3723         [ $NUMS -eq $EXPECTED ] || \
3724                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3725
3726         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
3727         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
3728         NUMS=$($CMD | wc -l)
3729         [ $NUMS -eq $EXPECTED ] || \
3730                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3731 }
3732 run_test 56p "check lfs find -uid and ! -uid ==============================="
3733
3734 test_56q() {
3735         [ $RUNAS_ID -eq $UID ] &&
3736                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3737
3738         TDIR=$DIR/${tdir}q
3739         setup_56 $NUMFILES $NUMDIRS
3740
3741         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
3742
3743         EXPECTED=$NUMFILES
3744         CMD="$LFIND -gid $RUNAS_GID $TDIR"
3745         NUMS=$($CMD | wc -l)
3746         [ $NUMS -eq $EXPECTED ] ||
3747                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3748
3749         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3750         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
3751         NUMS=$($CMD | wc -l)
3752         [ $NUMS -eq $EXPECTED ] ||
3753                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3754 }
3755 run_test 56q "check lfs find -gid and ! -gid ==============================="
3756
3757 test_56r() {
3758         TDIR=$DIR/${tdir}r
3759         setup_56 $NUMFILES $NUMDIRS
3760
3761         EXPECTED=12
3762         CMD="$LFIND -size 0 -type f $TDIR"
3763         NUMS=$($CMD | wc -l)
3764         [ $NUMS -eq $EXPECTED ] ||
3765                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3766         EXPECTED=0
3767         CMD="$LFIND ! -size 0 -type f $TDIR"
3768         NUMS=$($CMD | wc -l)
3769         [ $NUMS -eq $EXPECTED ] ||
3770                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3771         echo "test" > $TDIR/$tfile
3772         echo "test2" > $TDIR/$tfile.2 && sync
3773         EXPECTED=1
3774         CMD="$LFIND -size 5 -type f $TDIR"
3775         NUMS=$($CMD | wc -l)
3776         [ $NUMS -eq $EXPECTED ] ||
3777                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3778         EXPECTED=1
3779         CMD="$LFIND -size +5 -type f $TDIR"
3780         NUMS=$($CMD | wc -l)
3781         [ $NUMS -eq $EXPECTED ] ||
3782                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3783         EXPECTED=2
3784         CMD="$LFIND -size +0 -type f $TDIR"
3785         NUMS=$($CMD | wc -l)
3786         [ $NUMS -eq $EXPECTED ] ||
3787                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3788         EXPECTED=2
3789         CMD="$LFIND ! -size -5 -type f $TDIR"
3790         NUMS=$($CMD | wc -l)
3791         [ $NUMS -eq $EXPECTED ] ||
3792                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3793         EXPECTED=12
3794         CMD="$LFIND -size -5 -type f $TDIR"
3795         NUMS=$($CMD | wc -l)
3796         [ $NUMS -eq $EXPECTED ] ||
3797                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3798 }
3799 run_test 56r "check lfs find -size works =========================="
3800
3801 test_56s() { # LU-611
3802         TDIR=$DIR/${tdir}s
3803         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
3804
3805         if [ $OSTCOUNT -gt 1 ]; then
3806                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
3807                 ONESTRIPE=4
3808                 EXTRA=4
3809         else
3810                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
3811                 EXTRA=0
3812         fi
3813
3814         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3815         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
3816         NUMS=$($CMD | wc -l)
3817         [ $NUMS -eq $EXPECTED ] ||
3818                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3819
3820         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
3821         CMD="$LFIND -stripe-count +0 -type f $TDIR"
3822         NUMS=$($CMD | wc -l)
3823         [ $NUMS -eq $EXPECTED ] ||
3824                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3825
3826         EXPECTED=$ONESTRIPE
3827         CMD="$LFIND -stripe-count 1 -type f $TDIR"
3828         NUMS=$($CMD | wc -l)
3829         [ $NUMS -eq $EXPECTED ] ||
3830                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3831
3832         CMD="$LFIND -stripe-count -2 -type f $TDIR"
3833         NUMS=$($CMD | wc -l)
3834         [ $NUMS -eq $EXPECTED ] ||
3835                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3836
3837         EXPECTED=0
3838         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
3839         NUMS=$($CMD | wc -l)
3840         [ $NUMS -eq $EXPECTED ] ||
3841                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3842 }
3843 run_test 56s "check lfs find -stripe-count works"
3844
3845 test_56t() { # LU-611
3846         TDIR=$DIR/${tdir}t
3847         setup_56 $NUMFILES $NUMDIRS "-s 512k"
3848
3849         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
3850
3851         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3852         CMD="$LFIND -stripe-size 512k -type f $TDIR"
3853         NUMS=$($CMD | wc -l)
3854         [ $NUMS -eq $EXPECTED ] ||
3855                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3856
3857         CMD="$LFIND -stripe-size +320k -type f $TDIR"
3858         NUMS=$($CMD | wc -l)
3859         [ $NUMS -eq $EXPECTED ] ||
3860                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3861
3862         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
3863         CMD="$LFIND -stripe-size +200k -type f $TDIR"
3864         NUMS=$($CMD | wc -l)
3865         [ $NUMS -eq $EXPECTED ] ||
3866                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3867
3868         CMD="$LFIND -stripe-size -640k -type f $TDIR"
3869         NUMS=$($CMD | wc -l)
3870         [ $NUMS -eq $EXPECTED ] ||
3871                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3872
3873         EXPECTED=4
3874         CMD="$LFIND -stripe-size 256k -type f $TDIR"
3875         NUMS=$($CMD | wc -l)
3876         [ $NUMS -eq $EXPECTED ] ||
3877                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3878
3879         CMD="$LFIND -stripe-size -320k -type f $TDIR"
3880         NUMS=$($CMD | wc -l)
3881         [ $NUMS -eq $EXPECTED ] ||
3882                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3883
3884         EXPECTED=0
3885         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
3886         NUMS=$($CMD | wc -l)
3887         [ $NUMS -eq $EXPECTED ] ||
3888                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3889 }
3890 run_test 56t "check lfs find -stripe-size works"
3891
3892 test_56u() { # LU-611
3893         TDIR=$DIR/${tdir}u
3894         setup_56 $NUMFILES $NUMDIRS "-i 0"
3895
3896         if [ $OSTCOUNT -gt 1 ]; then
3897                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
3898                 ONESTRIPE=4
3899         else
3900                 ONESTRIPE=0
3901         fi
3902
3903         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3904         CMD="$LFIND -stripe-index 0 -type f $TDIR"
3905         NUMS=$($CMD | wc -l)
3906         [ $NUMS -eq $EXPECTED ] ||
3907                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3908
3909         EXPECTED=$ONESTRIPE
3910         CMD="$LFIND -stripe-index 1 -type f $TDIR"
3911         NUMS=$($CMD | wc -l)
3912         [ $NUMS -eq $EXPECTED ] ||
3913                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3914
3915         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
3916         NUMS=$($CMD | wc -l)
3917         [ $NUMS -eq $EXPECTED ] ||
3918                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3919
3920         EXPECTED=0
3921         # This should produce an error and not return any files
3922         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
3923         NUMS=$($CMD 2>/dev/null | wc -l)
3924         [ $NUMS -eq $EXPECTED ] ||
3925                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3926
3927         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
3928         CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
3929         NUMS=$($CMD | wc -l)
3930         [ $NUMS -eq $EXPECTED ] ||
3931                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3932 }
3933 run_test 56u "check lfs find -stripe-index works"
3934
3935 test_56v() {
3936     local MDT_IDX=0
3937
3938     TDIR=$DIR/${tdir}v
3939     rm -rf $TDIR
3940     setup_56 $NUMFILES $NUMDIRS
3941
3942     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
3943     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
3944
3945     for file in $($LFIND -mdt $UUID $TDIR); do
3946         file_mdt_idx=$($GETSTRIPE -M $file)
3947         [ $file_mdt_idx -eq $MDT_IDX ] ||
3948             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
3949     done
3950 }
3951 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
3952
3953 # Get and check the actual stripe count of one file.
3954 # Usage: check_stripe_count <file> <expected_stripe_count>
3955 check_stripe_count() {
3956     local file=$1
3957     local expected=$2
3958     local actual
3959
3960     [[ -z "$file" || -z "$expected" ]] &&
3961         error "check_stripe_count: invalid argument!"
3962
3963     local cmd="$GETSTRIPE -c $file"
3964     actual=$($cmd) || error "$cmd failed"
3965     actual=${actual%% *}
3966
3967     if [[ $actual -ne $expected ]]; then
3968         [[ $expected -eq -1 ]] ||
3969             error "$cmd wrong: found $actual, expected $expected"
3970         [[ $actual -eq $OSTCOUNT ]] ||
3971             error "$cmd wrong: found $actual, expected $OSTCOUNT"
3972     fi
3973 }
3974
3975 test_56w() {
3976     TDIR=$DIR/${tdir}w
3977
3978     rm -rf $TDIR || error "remove $TDIR failed"
3979     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
3980
3981     local stripe_size
3982     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
3983         error "$GETSTRIPE -S -d $TDIR failed"
3984     stripe_size=${stripe_size%% *}
3985
3986     local file_size=$((stripe_size * OSTCOUNT))
3987     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
3988     local required_space=$((file_num * file_size))
3989     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
3990     [[ $free_space -le $((required_space / 1024)) ]] &&
3991         skip_env "need at least $required_space bytes free space," \
3992                  "have $free_space kbytes" && return
3993
3994     local dd_bs=65536
3995     local dd_count=$((file_size / dd_bs))
3996
3997     # write data into the files
3998     local i
3999     local j
4000     local file
4001     for i in $(seq 1 $NUMFILES); do
4002         file=$TDIR/file$i
4003         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4004             error "write data into $file failed"
4005     done
4006     for i in $(seq 1 $NUMDIRS); do
4007         for j in $(seq 1 $NUMFILES); do
4008             file=$TDIR/dir$i/file$j
4009             yes | dd bs=$dd_bs count=$dd_count of=$file \
4010                 >/dev/null 2>&1 ||
4011                 error "write data into $file failed"
4012         done
4013     done
4014
4015     local expected=-1
4016     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4017
4018     # lfs_migrate file
4019     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4020     echo "$cmd"
4021     eval $cmd || error "$cmd failed"
4022
4023     check_stripe_count $TDIR/file1 $expected
4024
4025     # lfs_migrate dir
4026     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4027     echo "$cmd"
4028     eval $cmd || error "$cmd failed"
4029
4030     for j in $(seq 1 $NUMFILES); do
4031         check_stripe_count $TDIR/dir1/file$j $expected
4032     done
4033
4034     # lfs_migrate works with lfs find
4035     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4036          $LFS_MIGRATE -y -c $expected"
4037     echo "$cmd"
4038     eval $cmd || error "$cmd failed"
4039
4040     for i in $(seq 2 $NUMFILES); do
4041         check_stripe_count $TDIR/file$i $expected
4042     done
4043     for i in $(seq 2 $NUMDIRS); do
4044         for j in $(seq 1 $NUMFILES); do
4045             check_stripe_count $TDIR/dir$i/file$j $expected
4046         done
4047     done
4048 }
4049 run_test 56w "check lfs_migrate -c stripe_count works"
4050
4051 test_57a() {
4052         # note test will not do anything if MDS is not local
4053         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4054                 skip "Only applicable to ldiskfs-based MDTs"
4055                 return
4056         fi
4057
4058         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4059         local MNTDEV="osd*.*MDT*.mntdev"
4060         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4061         [ -z "$DEV" ] && error "can't access $MNTDEV"
4062         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4063                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4064                         error "can't access $DEV"
4065                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4066                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4067                 rm $TMP/t57a.dump
4068         done
4069 }
4070 run_test 57a "verify MDS filesystem created with large inodes =="
4071
4072 test_57b() {
4073         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4074                 skip "Only applicable to ldiskfs-based MDTs"
4075                 return
4076         fi
4077
4078         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4079         local dir=$DIR/d57b
4080
4081         local FILECOUNT=100
4082         local FILE1=$dir/f1
4083         local FILEN=$dir/f$FILECOUNT
4084
4085         rm -rf $dir || error "removing $dir"
4086         mkdir -p $dir || error "creating $dir"
4087         local num=$(get_mds_dir $dir)
4088         local mymds=mds$num
4089
4090         echo "mcreating $FILECOUNT files"
4091         createmany -m $dir/f 1 $FILECOUNT || \
4092                 error "creating files in $dir"
4093
4094         # verify that files do not have EAs yet
4095         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4096         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4097
4098         sync
4099         sleep 1
4100         df $dir  #make sure we get new statfs data
4101         local MDSFREE=$(do_facet $mymds \
4102                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4103         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4104         echo "opening files to create objects/EAs"
4105         local FILE
4106         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4107                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4108         done
4109
4110         # verify that files have EAs now
4111         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4112         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4113
4114         sleep 1  #make sure we get new statfs data
4115         df $dir
4116         local MDSFREE2=$(do_facet $mymds \
4117                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4118         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4119         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4120                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4121                         error "MDC before $MDCFREE != after $MDCFREE2"
4122                 else
4123                         echo "MDC before $MDCFREE != after $MDCFREE2"
4124                         echo "unable to confirm if MDS has large inodes"
4125                 fi
4126         fi
4127         rm -rf $dir
4128 }
4129 run_test 57b "default LOV EAs are stored inside large inodes ==="
4130
4131 test_58() {
4132     [ -z "$(which wiretest 2>/dev/null)" ] && skip_env "could not find wiretest" && return
4133     wiretest
4134 }
4135 run_test 58 "verify cross-platform wire constants =============="
4136
4137 test_59() {
4138         echo "touch 130 files"
4139         createmany -o $DIR/f59- 130
4140         echo "rm 130 files"
4141         unlinkmany $DIR/f59- 130
4142         sync
4143         # wait for commitment of removal
4144         wait_delete_completed
4145 }
4146 run_test 59 "verify cancellation of llog records async ========="
4147
4148 TEST60_HEAD="test_60 run $RANDOM"
4149 test_60a() {
4150         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4151         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4152         log "$TEST60_HEAD - from kernel mode"
4153         do_facet mgs sh run-llog.sh
4154 }
4155 run_test 60a "llog sanity tests run from kernel module =========="
4156
4157 test_60b() { # bug 6411
4158         dmesg > $DIR/$tfile
4159         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4160                                  /llog.test/ {
4161                                          if (marker)
4162                                                  from_marker++
4163                                          from_begin++
4164                                  }
4165                                  END {
4166                                          if (marker)
4167                                                  print from_marker
4168                                          else
4169                                                  print from_begin
4170                                  }"`
4171         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4172 }
4173 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4174
4175 test_60c() {
4176         echo "create 5000 files"
4177         createmany -o $DIR/f60c- 5000
4178 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4179         lctl set_param fail_loc=0x80000137
4180         unlinkmany $DIR/f60c- 5000
4181         lctl set_param fail_loc=0
4182 }
4183 run_test 60c "unlink file when mds full"
4184
4185 test_60d() {
4186         SAVEPRINTK=$(lctl get_param -n printk)
4187
4188         # verify "lctl mark" is even working"
4189         MESSAGE="test message ID $RANDOM $$"
4190         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4191         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4192
4193         lctl set_param printk=0 || error "set lnet.printk failed"
4194         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4195         MESSAGE="new test message ID $RANDOM $$"
4196         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4197         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4198         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4199
4200         lctl set_param -n printk="$SAVEPRINTK"
4201 }
4202 run_test 60d "test printk console message masking"
4203
4204 test_61() {
4205         f="$DIR/f61"
4206         dd if=/dev/zero of=$f bs=`page_size` count=1
4207         cancel_lru_locks osc
4208         $MULTIOP $f OSMWUc || error
4209         sync
4210 }
4211 run_test 61 "mmap() writes don't make sync hang ================"
4212
4213 # bug 2330 - insufficient obd_match error checking causes LBUG
4214 test_62() {
4215         f="$DIR/f62"
4216         echo foo > $f
4217         cancel_lru_locks osc
4218         lctl set_param fail_loc=0x405
4219         cat $f && error "cat succeeded, expect -EIO"
4220         lctl set_param fail_loc=0
4221 }
4222 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4223 # match every page all of the time.
4224 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4225
4226 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4227 test_63a() {    # was test_63
4228         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4229         lctl set_param -n osc.*.max_dirty_mb 0
4230         for i in `seq 10` ; do
4231                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4232                 sleep 5
4233                 kill $!
4234                 sleep 1
4235         done
4236
4237         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4238         rm -f $DIR/f63 || true
4239 }
4240 run_test 63a "Verify oig_wait interruption does not crash ======="
4241
4242 # bug 2248 - async write errors didn't return to application on sync
4243 # bug 3677 - async write errors left page locked
4244 test_63b() {
4245         debugsave
4246         lctl set_param debug=-1
4247
4248         # ensure we have a grant to do async writes
4249         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4250         rm $DIR/$tfile
4251
4252         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4253         lctl set_param fail_loc=0x80000406
4254         $MULTIOP $DIR/$tfile Owy && \
4255                 error "sync didn't return ENOMEM"
4256         sync; sleep 2; sync     # do a real sync this time to flush page
4257         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4258                 error "locked page left in cache after async error" || true
4259         debugrestore
4260 }
4261 run_test 63b "async write errors should be returned to fsync ==="
4262
4263 test_64a () {
4264         df $DIR
4265         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4266 }
4267 run_test 64a "verify filter grant calculations (in kernel) ====="
4268
4269 test_64b () {
4270         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4271         sh oos.sh $MOUNT
4272 }
4273 run_test 64b "check out-of-space detection on client ==========="
4274
4275 # bug 1414 - set/get directories' stripe info
4276 test_65a() {
4277         mkdir -p $DIR/d65
4278         touch $DIR/d65/f1
4279         $LVERIFY $DIR/d65 $DIR/d65/f1 || error "lverify failed"
4280 }
4281 run_test 65a "directory with no stripe info ===================="
4282
4283 test_65b() {
4284         mkdir -p $DIR/d65
4285         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65||error "setstripe"
4286         touch $DIR/d65/f2
4287         $LVERIFY $DIR/d65 $DIR/d65/f2 || error "lverify failed"
4288 }
4289 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4290
4291 test_65c() {
4292         if [ $OSTCOUNT -gt 1 ]; then
4293                 mkdir -p $DIR/d65
4294                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4295                         -c $(($OSTCOUNT - 1)) $DIR/d65 || error "setstripe"
4296                 touch $DIR/d65/f3
4297                 $LVERIFY $DIR/d65 $DIR/d65/f3 || error "lverify failed"
4298         fi
4299 }
4300 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4301
4302 test_65d() {
4303         mkdir -p $DIR/d65
4304         if [ $STRIPECOUNT -le 0 ]; then
4305                 sc=1
4306         elif [ $STRIPECOUNT -gt 2000 ]; then
4307 #LOV_MAX_STRIPE_COUNT is 2000
4308                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4309         else
4310                 sc=$(($STRIPECOUNT - 1))
4311         fi
4312         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/d65 || error "setstripe"
4313         touch $DIR/d65/f4 $DIR/d65/f5
4314         $LVERIFY $DIR/d65 $DIR/d65/f4 $DIR/d65/f5 || error "lverify failed"
4315 }
4316 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4317
4318 test_65e() {
4319         mkdir -p $DIR/d65
4320
4321         $SETSTRIPE $DIR/d65 || error "setstripe"
4322         $GETSTRIPE -v $DIR/d65 | grep "Default" || error "no stripe info failed"
4323         touch $DIR/d65/f6
4324         $LVERIFY $DIR/d65 $DIR/d65/f6 || error "lverify failed"
4325 }
4326 run_test 65e "directory setstripe defaults ======================="
4327
4328 test_65f() {
4329         mkdir -p $DIR/d65f
4330         $RUNAS $SETSTRIPE $DIR/d65f && error "setstripe succeeded" || true
4331 }
4332 run_test 65f "dir setstripe permission (should return error) ==="
4333
4334 test_65g() {
4335         mkdir -p $DIR/d65
4336         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65 ||error "setstripe"
4337         $SETSTRIPE -d $DIR/d65 || error "setstripe"
4338         $GETSTRIPE -v $DIR/d65 | grep "Default" || \
4339                 error "delete default stripe failed"
4340 }
4341 run_test 65g "directory setstripe -d ==========================="
4342
4343 test_65h() {
4344         mkdir -p $DIR/d65
4345         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/d65 ||error "setstripe"
4346         mkdir -p $DIR/d65/dd1
4347         [ $($GETSTRIPE -c $DIR/d65) == $($GETSTRIPE -c $DIR/d65/dd1) ] ||
4348                 error "stripe info inherit failed"
4349 }
4350 run_test 65h "directory stripe info inherit ===================="
4351
4352 test_65i() { # bug6367
4353         $SETSTRIPE -S 65536 -c -1 $MOUNT
4354 }
4355 run_test 65i "set non-default striping on root directory (bug 6367)="
4356
4357 test_65ia() { # bug12836
4358         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4359 }
4360 run_test 65ia "getstripe on -1 default directory striping"
4361
4362 test_65ib() { # bug12836
4363         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4364 }
4365 run_test 65ib "getstripe -v on -1 default directory striping"
4366
4367 test_65ic() { # bug12836
4368         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4369 }
4370 run_test 65ic "new find on -1 default directory striping"
4371
4372 test_65j() { # bug6367
4373         sync; sleep 1
4374         # if we aren't already remounting for each test, do so for this test
4375         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4376                 cleanup || error "failed to unmount"
4377                 setup
4378         fi
4379         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4380 }
4381 run_test 65j "set default striping on root directory (bug 6367)="
4382
4383 test_65k() { # bug11679
4384     [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4385     remote_mds_nodsh && skip "remote MDS with nodsh" && return
4386
4387     echo "Check OST status: "
4388     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4389               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4390
4391     for OSC in $MDS_OSCS; do
4392         echo $OSC "is activate"
4393         do_facet $SINGLEMDS lctl --device %$OSC activate
4394     done
4395
4396     do_facet client mkdir -p $DIR/$tdir
4397     for INACTIVE_OSC in $MDS_OSCS; do
4398         echo "Deactivate: " $INACTIVE_OSC
4399         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4400         for STRIPE_OSC in $MDS_OSCS; do
4401             OST=`osc_to_ost $STRIPE_OSC`
4402             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4403                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4404
4405             [ -f $DIR/$tdir/$IDX ] && continue
4406             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4407             do_facet client $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4408             RC=$?
4409             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4410         done
4411         do_facet client rm -f $DIR/$tdir/*
4412         echo $INACTIVE_OSC "is Activate."
4413         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4414     done
4415 }
4416 run_test 65k "validate manual striping works properly with deactivated OSCs"
4417
4418 test_65l() { # bug 12836
4419         mkdir -p $DIR/$tdir/test_dir
4420         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4421         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4422 }
4423 run_test 65l "lfs find on -1 stripe dir ========================"
4424
4425 # bug 2543 - update blocks count on client
4426 test_66() {
4427         COUNT=${COUNT:-8}
4428         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4429         sync; sync_all_data; sync; sync_all_data
4430         cancel_lru_locks osc
4431         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4432         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4433 }
4434 run_test 66 "update inode blocks count on client ==============="
4435
4436 LLOOP=
4437 LLITELOOPLOAD=
4438 cleanup_68() {
4439         trap 0
4440         if [ ! -z "$LLOOP" ]; then
4441                 if swapon -s | grep -q $LLOOP; then
4442                         swapoff $LLOOP || error "swapoff failed"
4443                 fi
4444
4445                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4446                 rm -f $LLOOP
4447                 unset LLOOP
4448         fi
4449         if [ ! -z "$LLITELOOPLOAD" ]; then
4450                 rmmod llite_lloop
4451                 unset LLITELOOPLOAD
4452         fi
4453         rm -f $DIR/f68*
4454 }
4455
4456 meminfo() {
4457         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4458 }
4459
4460 swap_used() {
4461         swapon -s | awk '($1 == "'$1'") { print $4 }'
4462 }
4463
4464 # test case for lloop driver, basic function
4465 test_68a() {
4466         [ "$UID" != 0 ] && skip_env "must run as root" && return
4467         llite_lloop_enabled || \
4468                 { skip_env "llite_lloop module disabled" && return; }
4469
4470         trap cleanup_68 EXIT
4471
4472         if ! module_loaded llite_lloop; then
4473                 if load_module llite/llite_lloop; then
4474                         LLITELOOPLOAD=yes
4475                 else
4476                         skip_env "can't find module llite_lloop"
4477                         return
4478                 fi
4479         fi
4480
4481         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4482         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4483         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4484
4485         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4486         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4487
4488         cleanup_68
4489 }
4490 run_test 68a "lloop driver - basic test ========================"
4491
4492 # excercise swapping to lustre by adding a high priority swapfile entry
4493 # and then consuming memory until it is used.
4494 test_68b() {  # was test_68
4495         [ "$UID" != 0 ] && skip_env "must run as root" && return
4496         lctl get_param -n devices | grep -q obdfilter && \
4497                 skip "local OST" && return
4498
4499         grep -q llite_lloop /proc/modules
4500         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4501
4502         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4503                 skip "can't reliably test swap with TCP" && return
4504
4505         MEMTOTAL=`meminfo MemTotal`
4506         NR_BLOCKS=$((MEMTOTAL>>8))
4507         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4508
4509         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4510         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4511         mkswap $DIR/f68b
4512
4513         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4514
4515         trap cleanup_68 EXIT
4516
4517         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4518
4519         echo "before: `swapon -s | grep $LLOOP`"
4520         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4521         echo "after: `swapon -s | grep $LLOOP`"
4522         SWAPUSED=`swap_used $LLOOP`
4523
4524         cleanup_68
4525
4526         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
4527 }
4528 run_test 68b "support swapping to Lustre ========================"
4529
4530 # bug5265, obdfilter oa2dentry return -ENOENT
4531 # #define OBD_FAIL_OST_ENOENT 0x217
4532 test_69() {
4533         remote_ost_nodsh && skip "remote OST with nodsh" && return
4534
4535         f="$DIR/$tfile"
4536         $SETSTRIPE -c 1 -i 0 $f
4537
4538         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
4539
4540         do_facet ost1 lctl set_param fail_loc=0x217
4541         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
4542         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
4543
4544         do_facet ost1 lctl set_param fail_loc=0
4545         $DIRECTIO write $f 0 2 || error "write error"
4546
4547         cancel_lru_locks osc
4548         $DIRECTIO read $f 0 1 || error "read error"
4549
4550         do_facet ost1 lctl set_param fail_loc=0x217
4551         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
4552
4553         do_facet ost1 lctl set_param fail_loc=0
4554         rm -f $f
4555 }
4556 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
4557
4558 test_71() {
4559     mkdir -p $DIR/$tdir
4560     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
4561 }
4562 run_test 71 "Running dbench on lustre (don't segment fault) ===="
4563
4564 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
4565         check_kernel_version 43 || return 0
4566         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4567
4568         # Check that testing environment is properly set up. Skip if not
4569         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
4570                 skip_env "User $RUNAS_ID does not exist - skipping"
4571                 return 0
4572         }
4573         # We had better clear the $DIR to get enough space for dd
4574         rm -rf $DIR/*
4575         touch $DIR/f72
4576         chmod 777 $DIR/f72
4577         chmod ug+s $DIR/f72
4578         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
4579         # See if we are still setuid/sgid
4580         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
4581         # Now test that MDS is updated too
4582         cancel_lru_locks mdc
4583         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
4584         rm -f $DIR/f72
4585 }
4586 run_test 72a "Test that remove suid works properly (bug5695) ===="
4587
4588 test_72b() { # bug 24226 -- keep mode setting when size is not changing
4589         local perm
4590
4591         [ "$RUNAS_ID" = "$UID" ] && \
4592                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4593         [ "$RUNAS_ID" -eq 0 ] && \
4594                 skip_env "RUNAS_ID = 0 -- skipping" && return
4595
4596         # Check that testing environment is properly set up. Skip if not
4597         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4598                 skip_env "User $RUNAS_ID does not exist - skipping"
4599                 return 0
4600         }
4601         touch $DIR/${tfile}-f{g,u}
4602         mkdir $DIR/${tfile}-d{g,u}
4603         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4604         chmod g+s $DIR/${tfile}-{f,d}g
4605         chmod u+s $DIR/${tfile}-{f,d}u
4606         for perm in 777 2777 4777; do
4607                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4608                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4609                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4610                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4611         done
4612         true
4613 }
4614 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4615
4616 # bug 3462 - multiple simultaneous MDC requests
4617 test_73() {
4618         mkdir $DIR/d73-1
4619         mkdir $DIR/d73-2
4620         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4621         pid1=$!
4622
4623         lctl set_param fail_loc=0x80000129
4624         $MULTIOP $DIR/d73-1/f73-2 Oc &
4625         sleep 1
4626         lctl set_param fail_loc=0
4627
4628         $MULTIOP $DIR/d73-2/f73-3 Oc &
4629         pid3=$!
4630
4631         kill -USR1 $pid1
4632         wait $pid1 || return 1
4633
4634         sleep 25
4635
4636         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4637         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4638         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4639
4640         rm -rf $DIR/d73-*
4641 }
4642 run_test 73 "multiple MDC requests (should not deadlock)"
4643
4644 test_74a() { # bug 6149, 6184
4645         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4646         #
4647         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4648         # will spin in a tight reconnection loop
4649         touch $DIR/f74a
4650         lctl set_param fail_loc=0x8000030e
4651         # get any lock that won't be difficult - lookup works.
4652         ls $DIR/f74a
4653         lctl set_param fail_loc=0
4654         true
4655         rm -f $DIR/f74a
4656 }
4657 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4658
4659 test_74b() { # bug 13310
4660         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4661         #
4662         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4663         # will spin in a tight reconnection loop
4664         lctl set_param fail_loc=0x8000030e
4665         # get a "difficult" lock
4666         touch $DIR/f74b
4667         lctl set_param fail_loc=0
4668         true
4669         rm -f $DIR/f74b
4670 }
4671 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4672
4673 test_74c() {
4674 #define OBD_FAIL_LDLM_NEW_LOCK
4675         lctl set_param fail_loc=0x80000319
4676         touch $DIR/$tfile && error "Touch successful"
4677         true
4678 }
4679 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4680
4681 num_inodes() {
4682         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4683 }
4684
4685 get_inode_slab_tunables() {
4686         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4687 }
4688
4689 set_inode_slab_tunables() {
4690         echo "lustre_inode_cache $1" > /proc/slabinfo
4691 }
4692
4693 test_76() { # Now for bug 20433, added originally in bug 1443
4694         local SLAB_SETTINGS=`get_inode_slab_tunables`
4695         local CPUS=`getconf _NPROCESSORS_ONLN`
4696         # we cannot set limit below 1 which means 1 inode in each
4697         # per-cpu cache is still allowed
4698         set_inode_slab_tunables "1 1 0"
4699         cancel_lru_locks osc
4700         BEFORE_INODES=`num_inodes`
4701         echo "before inodes: $BEFORE_INODES"
4702         local COUNT=1000
4703         [ "$SLOW" = "no" ] && COUNT=100
4704         for i in `seq $COUNT`; do
4705                 touch $DIR/$tfile
4706                 rm -f $DIR/$tfile
4707         done
4708         cancel_lru_locks osc
4709         AFTER_INODES=`num_inodes`
4710         echo "after inodes: $AFTER_INODES"
4711         local wait=0
4712         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
4713                 sleep 2
4714                 AFTER_INODES=`num_inodes`
4715                 wait=$((wait+2))
4716                 echo "wait $wait seconds inodes: $AFTER_INODES"
4717                 if [ $wait -gt 30 ]; then
4718                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
4719                 fi
4720         done
4721         set_inode_slab_tunables "$SLAB_SETTINGS"
4722 }
4723 run_test 76 "confirm clients recycle inodes properly ===="
4724
4725
4726 export ORIG_CSUM=""
4727 set_checksums()
4728 {
4729         # Note: in sptlrpc modes which enable its own bulk checksum, the
4730         # original crc32_le bulk checksum will be automatically disabled,
4731         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
4732         # will be checked by sptlrpc code against sptlrpc bulk checksum.
4733         # In this case set_checksums() will not be no-op, because sptlrpc
4734         # bulk checksum will be enabled all through the test.
4735
4736         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
4737         lctl set_param -n osc.*.checksums $1
4738         return 0
4739 }
4740
4741 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
4742                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
4743 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
4744 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
4745 set_checksum_type()
4746 {
4747         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
4748         log "set checksum type to $1"
4749         return 0
4750 }
4751 F77_TMP=$TMP/f77-temp
4752 F77SZ=8
4753 setup_f77() {
4754         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
4755                 error "error writing to $F77_TMP"
4756 }
4757
4758 test_77a() { # bug 10889
4759         $GSS && skip "could not run with gss" && return
4760         [ ! -f $F77_TMP ] && setup_f77
4761         set_checksums 1
4762         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
4763         set_checksums 0
4764         rm -f $DIR/$tfile
4765 }
4766 run_test 77a "normal checksum read/write operation ============="
4767
4768 test_77b() { # bug 10889
4769         $GSS && skip "could not run with gss" && return
4770         [ ! -f $F77_TMP ] && setup_f77
4771         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4772         lctl set_param fail_loc=0x80000409
4773         set_checksums 1
4774         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
4775                 error "dd error: $?"
4776         lctl set_param fail_loc=0
4777         set_checksums 0
4778 }
4779 run_test 77b "checksum error on client write ===================="
4780
4781 test_77c() { # bug 10889
4782         $GSS && skip "could not run with gss" && return
4783         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
4784         set_checksums 1
4785         for algo in $CKSUM_TYPES; do
4786                 cancel_lru_locks osc
4787                 set_checksum_type $algo
4788                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4789                 lctl set_param fail_loc=0x80000408
4790                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
4791                 lctl set_param fail_loc=0
4792         done
4793         set_checksums 0
4794         set_checksum_type $ORIG_CSUM_TYPE
4795         rm -f $DIR/f77b
4796 }
4797 run_test 77c "checksum error on client read ==================="
4798
4799 test_77d() { # bug 10889
4800         $GSS && skip "could not run with gss" && return
4801         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4802         lctl set_param fail_loc=0x80000409
4803         set_checksums 1
4804         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4805                 error "direct write: rc=$?"
4806         lctl set_param fail_loc=0
4807         set_checksums 0
4808 }
4809 run_test 77d "checksum error on OST direct write ==============="
4810
4811 test_77e() { # bug 10889
4812         $GSS && skip "could not run with gss" && return
4813         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
4814         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
4815         lctl set_param fail_loc=0x80000408
4816         set_checksums 1
4817         cancel_lru_locks osc
4818         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
4819                 error "direct read: rc=$?"
4820         lctl set_param fail_loc=0
4821         set_checksums 0
4822 }
4823 run_test 77e "checksum error on OST direct read ================"
4824
4825 test_77f() { # bug 10889
4826         $GSS && skip "could not run with gss" && return
4827         set_checksums 1
4828         for algo in $CKSUM_TYPES; do
4829                 cancel_lru_locks osc
4830                 set_checksum_type $algo
4831                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
4832                 lctl set_param fail_loc=0x409
4833                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
4834                         error "direct write succeeded"
4835                 lctl set_param fail_loc=0
4836         done
4837         set_checksum_type $ORIG_CSUM_TYPE
4838         set_checksums 0
4839 }
4840 run_test 77f "repeat checksum error on write (expect error) ===="
4841
4842 test_77g() { # bug 10889
4843         $GSS && skip "could not run with gss" && return
4844         remote_ost_nodsh && skip "remote OST with nodsh" && return
4845
4846         [ ! -f $F77_TMP ] && setup_f77
4847
4848         $SETSTRIPE -c 1 -i 0 $DIR/f77g
4849         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
4850         do_facet ost1 lctl set_param fail_loc=0x8000021a
4851         set_checksums 1
4852         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
4853                 error "write error: rc=$?"
4854         do_facet ost1 lctl set_param fail_loc=0
4855         set_checksums 0
4856 }
4857 run_test 77g "checksum error on OST write ======================"
4858
4859 test_77h() { # bug 10889
4860         $GSS && skip "could not run with gss" && return
4861         remote_ost_nodsh && skip "remote OST with nodsh" && return
4862
4863         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
4864         cancel_lru_locks osc
4865         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
4866         do_facet ost1 lctl set_param fail_loc=0x8000021b
4867         set_checksums 1
4868         cmp $F77_TMP $DIR/f77g || error "file compare failed"
4869         do_facet ost1 lctl set_param fail_loc=0
4870         set_checksums 0
4871 }
4872 run_test 77h "checksum error on OST read ======================="
4873
4874 test_77i() { # bug 13805
4875         $GSS && skip "could not run with gss" && return
4876         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
4877         lctl set_param fail_loc=0x40b
4878         remount_client $MOUNT
4879         lctl set_param fail_loc=0
4880         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4881                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4882                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4883                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4884         done
4885         remount_client $MOUNT
4886 }
4887 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
4888
4889 test_77j() { # bug 13805
4890         $GSS && skip "could not run with gss" && return
4891         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
4892         lctl set_param fail_loc=0x40c
4893         remount_client $MOUNT
4894         lctl set_param fail_loc=0
4895         sleep 2 # wait async osc connect to finish
4896         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
4897                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
4898                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
4899                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
4900         done
4901         remount_client $MOUNT
4902 }
4903 run_test 77j "client only supporting ADLER32 ===================="
4904
4905 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
4906 rm -f $F77_TMP
4907 unset F77_TMP
4908
4909 test_78() { # bug 10901
4910         remote_ost || { skip_env "local OST" && return; }
4911
4912         NSEQ=5
4913         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
4914         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
4915         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
4916         echo "MemTotal: $MEMTOTAL"
4917 # reserve 256MB of memory for the kernel and other running processes,
4918 # and then take 1/2 of the remaining memory for the read/write buffers.
4919     if [ $MEMTOTAL -gt 512 ] ;then
4920         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
4921     else
4922         # for those poor memory-starved high-end clusters...
4923         MEMTOTAL=$((MEMTOTAL / 2))
4924     fi
4925         echo "Mem to use for directio: $MEMTOTAL"
4926         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
4927         [ $F78SIZE -gt 512 ] && F78SIZE=512
4928         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
4929         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
4930         echo "Smallest OST: $SMALLESTOST"
4931         [ $SMALLESTOST -lt 10240 ] && \
4932                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
4933
4934         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
4935                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
4936
4937         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
4938         echo "File size: $F78SIZE"
4939         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
4940         for i in `seq 1 $NSEQ`
4941         do
4942                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
4943                 echo directIO rdwr round $i of $NSEQ
4944                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
4945         done
4946
4947         rm -f $DIR/$tfile
4948 }
4949 run_test 78 "handle large O_DIRECT writes correctly ============"
4950
4951 test_79() { # bug 12743
4952         wait_delete_completed
4953
4954         BKTOTAL=$(calc_osc_kbytes kbytestotal)
4955         BKFREE=$(calc_osc_kbytes kbytesfree)
4956         BKAVAIL=$(calc_osc_kbytes kbytesavail)
4957
4958         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
4959         DFTOTAL=`echo $STRING | cut -d, -f1`
4960         DFUSED=`echo $STRING  | cut -d, -f2`
4961         DFAVAIL=`echo $STRING | cut -d, -f3`
4962         DFFREE=$(($DFTOTAL - $DFUSED))
4963
4964         ALLOWANCE=$((64 * $OSTCOUNT))
4965
4966         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
4967            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
4968                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
4969         fi
4970         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
4971            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
4972                 error "df free($DFFREE) mismatch OST free($BKFREE)"
4973         fi
4974         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
4975            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
4976                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
4977         fi
4978 }
4979 run_test 79 "df report consistency check ======================="
4980
4981 test_80() { # bug 10718
4982         # relax strong synchronous semantics for slow backends like ZFS
4983         local soc="obdfilter.*.sync_on_lock_cancel"
4984         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
4985         local hosts=
4986         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
4987                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
4988                           facet_active_host $host; done | sort -u)
4989                 do_nodes $hosts lctl set_param $soc=never
4990         fi
4991
4992         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
4993         sync; sleep 1; sync
4994         local BEFORE=`date +%s`
4995         cancel_lru_locks osc
4996         local AFTER=`date +%s`
4997         local DIFF=$((AFTER-BEFORE))
4998         if [ $DIFF -gt 1 ] ; then
4999                 error "elapsed for 1M@1T = $DIFF"
5000         fi
5001
5002         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5003
5004         rm -f $DIR/$tfile
5005 }
5006 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5007
5008 test_81a() { # LU-456
5009         remote_ost_nodsh && skip "remote OST with nodsh" && return
5010         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5011         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5012         do_facet ost1 lctl set_param fail_loc=0x80000228
5013
5014         # write should trigger a retry and success
5015         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5016         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5017         RC=$?
5018         if [ $RC -ne 0 ] ; then
5019                 error "write should success, but failed for $RC"
5020         fi
5021 }
5022 run_test 81a "OST should retry write when get -ENOSPC ==============="
5023
5024 test_81b() { # LU-456
5025         remote_ost_nodsh && skip "remote OST with nodsh" && return
5026         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5027         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5028         do_facet ost1 lctl set_param fail_loc=0x228
5029
5030         # write should retry several times and return -ENOSPC finally
5031         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5032         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5033         RC=$?
5034         ENOSPC=28
5035         if [ $RC -ne $ENOSPC ] ; then
5036                 error "dd should fail for -ENOSPC, but succeed."
5037         fi
5038 }
5039 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5040
5041 test_82() { # LU-1031
5042         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5043         local gid1=14091995
5044         local gid2=16022000
5045
5046         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5047         local MULTIPID1=$!
5048         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5049         local MULTIPID2=$!
5050         kill -USR1 $MULTIPID2
5051         sleep 2
5052         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5053                 error "First grouplock does not block second one"
5054         else
5055                 echo "Second grouplock blocks first one"
5056         fi
5057         kill -USR1 $MULTIPID1
5058         wait $MULTIPID1
5059         wait $MULTIPID2
5060 }
5061 run_test 82 "Basic grouplock test ==============================="
5062
5063 test_99a() {
5064         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
5065             return
5066         mkdir -p $DIR/d99cvsroot
5067         chown $RUNAS_ID $DIR/d99cvsroot
5068         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5069         cd $TMP
5070
5071         $RUNAS cvs -d $DIR/d99cvsroot init || error
5072         cd $oldPWD
5073 }
5074 run_test 99a "cvs init ========================================="
5075
5076 test_99b() {
5077         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5078         [ ! -d $DIR/d99cvsroot ] && test_99a
5079         cd /etc/init.d
5080         # some versions of cvs import exit(1) when asked to import links or
5081         # files they can't read.  ignore those files.
5082         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5083                         ! -perm +4 -printf '-I %f\n')
5084         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5085                 d99reposname vtag rtag
5086 }
5087 run_test 99b "cvs import ======================================="
5088
5089 test_99c() {
5090         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5091         [ ! -d $DIR/d99cvsroot ] && test_99b
5092         cd $DIR
5093         mkdir -p $DIR/d99reposname
5094         chown $RUNAS_ID $DIR/d99reposname
5095         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5096 }
5097 run_test 99c "cvs checkout ====================================="
5098
5099 test_99d() {
5100         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5101         [ ! -d $DIR/d99cvsroot ] && test_99c
5102         cd $DIR/d99reposname
5103         $RUNAS touch foo99
5104         $RUNAS cvs add -m 'addmsg' foo99
5105 }
5106 run_test 99d "cvs add =========================================="
5107
5108 test_99e() {
5109         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5110         [ ! -d $DIR/d99cvsroot ] && test_99c
5111         cd $DIR/d99reposname
5112         $RUNAS cvs update
5113 }
5114 run_test 99e "cvs update ======================================="
5115
5116 test_99f() {
5117         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5118         [ ! -d $DIR/d99cvsroot ] && test_99d
5119         cd $DIR/d99reposname
5120         $RUNAS cvs commit -m 'nomsg' foo99
5121     rm -fr $DIR/d99cvsroot
5122 }
5123 run_test 99f "cvs commit ======================================="
5124
5125 test_100() {
5126         [ "$NETTYPE" = tcp ] || \
5127                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5128                         return ; }
5129
5130         remote_ost_nodsh && skip "remote OST with nodsh" && return
5131         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5132         remote_servers || \
5133                 { skip "useless for local single node setup" && return; }
5134
5135         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5136                 [ "$PROT" != "tcp" ] && continue
5137                 RPORT=$(echo $REMOTE | cut -d: -f2)
5138                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5139
5140                 rc=0
5141                 LPORT=`echo $LOCAL | cut -d: -f2`
5142                 if [ $LPORT -ge 1024 ]; then
5143                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5144                         netstat -tna
5145                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5146                 fi
5147         done
5148         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5149 }
5150 run_test 100 "check local port using privileged port ==========="
5151
5152 function get_named_value()
5153 {
5154     local tag
5155
5156     tag=$1
5157     while read ;do
5158         line=$REPLY
5159         case $line in
5160         $tag*)
5161             echo $line | sed "s/^$tag[ ]*//"
5162             break
5163             ;;
5164         esac
5165     done
5166 }
5167
5168 export CACHE_MAX=`$LCTL get_param -n llite.*.max_cached_mb | head -n 1`
5169 cleanup_101a() {
5170         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5171         trap 0
5172 }
5173
5174 test_101a() {
5175         local s
5176         local discard
5177         local nreads=10000
5178         [ "$CPU" = "UML" ] && nreads=1000
5179         local cache_limit=32
5180
5181         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5182         trap cleanup_101a EXIT
5183         $LCTL set_param -n llite.*.read_ahead_stats 0
5184         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5185
5186         #
5187         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5188         #
5189         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5190         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5191
5192         discard=0
5193         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5194                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5195                         discard=$(($discard + $s))
5196         done
5197         cleanup_101a
5198
5199         if [ $(($discard * 10)) -gt $nreads ] ;then
5200                 $LCTL get_param osc.*-osc*.rpc_stats
5201                 $LCTL get_param llite.*.read_ahead_stats
5202                 error "too many ($discard) discarded pages"
5203         fi
5204         rm -f $DIR/$tfile || true
5205 }
5206 run_test 101a "check read-ahead for random reads ================"
5207
5208 setup_test101bc() {
5209         mkdir -p $DIR/$tdir
5210         STRIPE_SIZE=1048576
5211         STRIPE_COUNT=$OSTCOUNT
5212         STRIPE_OFFSET=0
5213
5214         local list=$(comma_list $(osts_nodes))
5215         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=0
5216         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=0
5217
5218         trap cleanup_test101bc EXIT
5219         # prepare the read-ahead file
5220         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5221
5222         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5223 }
5224
5225 cleanup_test101bc() {
5226         trap 0
5227         rm -rf $DIR/$tdir
5228         rm -f $DIR/$tfile
5229
5230         local list=$(comma_list $(osts_nodes))
5231         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=1
5232         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=1
5233 }
5234
5235 calc_total() {
5236         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5237 }
5238
5239 ra_check_101() {
5240         local READ_SIZE=$1
5241         local STRIPE_SIZE=1048576
5242         local RA_INC=1048576
5243         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5244         local FILE_LENGTH=$((64*100))
5245         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5246                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5247         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5248                         get_named_value 'read but discarded' | \
5249                         cut -d" " -f1 | calc_total`
5250         if [ $DISCARD -gt $discard_limit ]; then
5251                 $LCTL get_param llite.*.read_ahead_stats
5252                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5253         else
5254                 echo "Read-ahead success for size ${READ_SIZE}"
5255         fi
5256 }
5257
5258 test_101b() {
5259         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5260         local STRIPE_SIZE=1048576
5261         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5262         local FILE_LENGTH=$((STRIPE_SIZE*100))
5263         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5264         # prepare the read-ahead file
5265         setup_test101bc
5266         cancel_lru_locks osc
5267         for BIDX in 2 4 8 16 32 64 128 256
5268         do
5269                 local BSIZE=$((BIDX*4096))
5270                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5271                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5272                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5273                 $LCTL set_param -n llite.*.read_ahead_stats 0
5274                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5275                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5276                 cancel_lru_locks osc
5277                 ra_check_101 $BSIZE
5278         done
5279         cleanup_test101bc
5280         true
5281 }
5282 run_test 101b "check stride-io mode read-ahead ================="
5283
5284 test_101c() {
5285     local STRIPE_SIZE=1048576
5286     local FILE_LENGTH=$((STRIPE_SIZE*100))
5287     local nreads=10000
5288     local osc
5289
5290     setup_test101bc
5291
5292     cancel_lru_locks osc
5293     $LCTL set_param osc.*.rpc_stats 0
5294     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5295     for osc in $($LCTL get_param -N osc.*); do
5296         if [ "$osc" == "osc.num_refs" ]; then
5297             continue
5298         fi
5299
5300         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5301         if [ $lines -le 20 ]; then
5302             continue
5303         fi
5304
5305         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5306                                      awk '$1 == "1:" { print $2; exit; }')
5307         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5308                                      awk '$1 == "2:" { print $2; exit; }')
5309         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5310                                      awk '$1 == "4:" { print $2; exit; }')
5311         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5312                                      awk '$1 == "8:" { print $2; exit; }')
5313
5314         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5315         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5316         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5317         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5318         echo "${osc} rpc check passed!"
5319     done
5320     cleanup_test101bc
5321     true
5322 }
5323 run_test 101c "check stripe_size aligned read-ahead ================="
5324
5325 set_read_ahead() {
5326    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5327    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5328 }
5329
5330 test_101d() {
5331     local file=$DIR/$tfile
5332     local size=${FILESIZE_101c:-500}
5333     local ra_MB=${READAHEAD_MB:-40}
5334
5335     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5336     [ $space -gt $((size / 1024)) ] ||
5337         { skip "Need free space ${size}M, have $space" && return; }
5338
5339     echo Creating ${size}M test file $file
5340     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5341     echo Cancel LRU locks on lustre client to flush the client cache
5342     cancel_lru_locks osc
5343
5344     echo Disable read-ahead
5345     local old_READAHEAD=$(set_read_ahead 0)
5346
5347     echo Reading the test file $file with read-ahead disabled
5348     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5349
5350     echo Cancel LRU locks on lustre client to flush the client cache
5351     cancel_lru_locks osc
5352     echo Enable read-ahead with ${ra_MB}MB
5353     set_read_ahead $ra_MB
5354
5355     echo Reading the test file $file with read-ahead enabled
5356     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5357
5358     echo read-ahead disabled time read $time_ra_OFF
5359     echo read-ahead enabled  time read $time_ra_ON
5360
5361         set_read_ahead $old_READAHEAD
5362         rm -f $file
5363         wait_delete_completed
5364
5365     [ $time_ra_ON -lt $time_ra_OFF ] ||
5366         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5367                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5368 }
5369 run_test 101d "file read with and without read-ahead enabled  ================="
5370
5371 test_101e() {
5372     local file=$DIR/$tfile
5373     local size=500  #KB
5374     local count=100
5375     local blksize=1024
5376
5377     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5378     local need_space=$((count * size))
5379     [ $space -gt $need_space ] ||
5380         { skip_env "Need free space $need_space, have $space" && return; }
5381
5382     echo Creating $count ${size}K test files
5383     for ((i = 0; i < $count; i++)); do
5384         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5385     done
5386
5387     echo Cancel LRU locks on lustre client to flush the client cache
5388     cancel_lru_locks osc
5389
5390     echo Reset readahead stats
5391     $LCTL set_param -n llite.*.read_ahead_stats 0
5392
5393     for ((i = 0; i < $count; i++)); do
5394         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5395     done
5396
5397     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5398           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5399
5400     for ((i = 0; i < $count; i++)); do
5401         rm -rf ${file}_${i} 2>/dev/null
5402     done
5403
5404     #10000 means 20% reads are missing in readahead
5405     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5406 }
5407 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5408
5409 cleanup_test101f() {
5410     trap 0
5411     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5412     rm -rf $DIR/$tfile 2>/dev/null
5413 }
5414
5415 test_101f() {
5416     local file=$DIR/$tfile
5417     local nreads=1000
5418
5419     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5420     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5421     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5422     trap cleanup_test101f EXIT
5423
5424     echo Cancel LRU locks on lustre client to flush the client cache
5425     cancel_lru_locks osc
5426
5427     echo Reset readahead stats
5428     $LCTL set_param -n llite.*.read_ahead_stats 0
5429     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5430     # readahead should read in 2M file on second read, so only miss
5431     # 2 pages.
5432     echo Random 4K reads on 2M file for 1000 times
5433     $READS -f $file -s 2097152 -b 4096 -n $nreads
5434
5435     echo checking missing pages
5436     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5437           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5438
5439     [ $miss -lt 3 ] || error "misses too much pages!"
5440     cleanup_test101f
5441 }
5442 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5443
5444 setup_test102() {
5445         mkdir -p $DIR/$tdir
5446         chown $RUNAS_ID $DIR/$tdir
5447         STRIPE_SIZE=65536
5448         STRIPE_OFFSET=1
5449         STRIPE_COUNT=$OSTCOUNT
5450         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5451
5452         trap cleanup_test102 EXIT
5453         cd $DIR
5454         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5455         cd $DIR/$tdir
5456         for num in 1 2 3 4; do
5457                 for count in $(seq 1 $STRIPE_COUNT); do
5458                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5459                                 local size=`expr $STRIPE_SIZE \* $num`
5460                                 local file=file"$num-$idx-$count"
5461                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5462                         done
5463                 done
5464         done
5465
5466         cd $DIR
5467         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5468 }
5469
5470 cleanup_test102() {
5471         trap 0
5472         rm -f $TMP/f102.tar
5473         rm -rf $DIR/d0.sanity/d102
5474 }
5475
5476 test_102a() {
5477         local testfile=$DIR/xattr_testfile
5478
5479         touch $testfile
5480
5481         [ "$UID" != 0 ] && skip_env "must run as root" && return
5482         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5483                 skip_env "must have user_xattr" && return
5484
5485         [ -z "$(which setfattr 2>/dev/null)" ] &&
5486                 skip_env "could not find setfattr" && return
5487
5488         echo "set/get xattr..."
5489         setfattr -n trusted.name1 -v value1 $testfile || error
5490         getfattr -n trusted.name1 $testfile 2> /dev/null |
5491           grep "trusted.name1=.value1" ||
5492                 error "$testfile missing trusted.name1=value1"
5493
5494         setfattr -n user.author1 -v author1 $testfile || error
5495         getfattr -n user.author1 $testfile 2> /dev/null |
5496           grep "user.author1=.author1" ||
5497                 error "$testfile missing trusted.author1=author1"
5498
5499         echo "listxattr..."
5500         setfattr -n trusted.name2 -v value2 $testfile ||
5501                 error "$testfile unable to set trusted.name2"
5502         setfattr -n trusted.name3 -v value3 $testfile ||
5503                 error "$testfile unable to set trusted.name3"
5504         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
5505             grep "trusted.name" | wc -l) -eq 3 ] ||
5506                 error "$testfile missing 3 trusted.name xattrs"
5507
5508         setfattr -n user.author2 -v author2 $testfile ||
5509                 error "$testfile unable to set user.author2"
5510         setfattr -n user.author3 -v author3 $testfile ||
5511                 error "$testfile unable to set user.author3"
5512         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
5513             grep "user.author" | wc -l) -eq 3 ] ||
5514                 error "$testfile missing 3 user.author xattrs"
5515
5516         echo "remove xattr..."
5517         setfattr -x trusted.name1 $testfile ||
5518                 error "$testfile error deleting trusted.name1"
5519         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
5520                 error "$testfile did not delete trusted.name1 xattr"
5521
5522         setfattr -x user.author1 $testfile ||
5523                 error "$testfile error deleting user.author1"
5524         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
5525                 error "$testfile did not delete trusted.name1 xattr"
5526
5527         # b10667: setting lustre special xattr be silently discarded
5528         echo "set lustre special xattr ..."
5529         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
5530                 error "$testfile allowed setting trusted.lov"
5531 }
5532 run_test 102a "user xattr test =================================="
5533
5534 test_102b() {
5535         # b10930: get/set/list trusted.lov xattr
5536         echo "get/set/list trusted.lov xattr ..."
5537         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5538         local testfile=$DIR/$tfile
5539         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5540                 error "setstripe failed"
5541         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
5542                 error "getstripe failed"
5543         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
5544         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
5545
5546         local testfile2=${testfile}2
5547         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
5548                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
5549
5550         $MCREATE $testfile2
5551         setfattr -n trusted.lov -v $value $testfile2
5552         local stripe_size=$($GETSTRIPE -S $testfile2)
5553         local stripe_count=$($GETSTRIPE -c $testfile2)
5554         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5555         [ $stripe_count -eq $STRIPECOUNT ] ||
5556                 error "stripe count $stripe_count != $STRIPECOUNT"
5557         rm -f $DIR/$tfile
5558 }
5559 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
5560
5561 test_102c() {
5562         # b10930: get/set/list lustre.lov xattr
5563         echo "get/set/list lustre.lov xattr ..."
5564         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5565         mkdir -p $DIR/$tdir
5566         chown $RUNAS_ID $DIR/$tdir
5567         local testfile=$DIR/$tdir/$tfile
5568         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5569                 error "setstripe failed"
5570         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
5571                 error "getstripe failed"
5572         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
5573         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
5574
5575         local testfile2=${testfile}2
5576         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
5577                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
5578
5579         $RUNAS $MCREATE $testfile2
5580         $RUNAS setfattr -n lustre.lov -v $value $testfile2
5581         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
5582         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
5583         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5584         [ $stripe_count -eq $STRIPECOUNT ] ||
5585                 error "stripe count $stripe_count != $STRIPECOUNT"
5586 }
5587 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
5588
5589 compare_stripe_info1() {
5590         local stripe_index_all_zero=true
5591
5592         for num in 1 2 3 4; do
5593                 for count in $(seq 1 $STRIPE_COUNT); do
5594                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
5595                                 local size=$((STRIPE_SIZE * num))
5596                                 local file=file"$num-$offset-$count"
5597                                 stripe_size=$(lfs getstripe -S $PWD/$file)
5598                                 [ $stripe_size -ne $size ] &&
5599                                     error "$file: size $stripe_size != $size"
5600                                 stripe_count=$(lfs getstripe -c $PWD/$file)
5601                                 # allow fewer stripes to be created, ORI-601
5602                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
5603                                     error "$file: count $stripe_count != $count"
5604                                 stripe_index=$(lfs getstripe -i $PWD/$file)
5605                                 [ $stripe_index -ne 0 ] &&
5606                                         stripe_index_all_zero=false
5607                         done
5608                 done
5609         done
5610         $stripe_index_all_zero &&
5611                 error "all files are being extracted starting from OST index 0"
5612         return 0
5613 }
5614
5615 find_lustre_tar() {
5616         [ -n "$(which tar 2>/dev/null)" ] &&
5617                 strings $(which tar) | grep -q "lustre" && echo tar
5618 }
5619
5620 test_102d() {
5621         # b10930: tar test for trusted.lov xattr
5622         TAR=$(find_lustre_tar)
5623         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5624         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5625         setup_test102
5626         mkdir -p $DIR/d102d
5627         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
5628         cd $DIR/d102d/$tdir
5629         compare_stripe_info1
5630 }
5631 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
5632
5633 test_102f() {
5634         # b10930: tar test for trusted.lov xattr
5635         TAR=$(find_lustre_tar)
5636         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5637         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5638         setup_test102
5639         mkdir -p $DIR/d102f
5640         cd $DIR
5641         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
5642         cd $DIR/d102f/$tdir
5643         compare_stripe_info1
5644 }
5645 run_test 102f "tar copy files, not keep osts ==========="
5646
5647 grow_xattr() {
5648         local xsize=${1:-1024}  # in bytes
5649         local file=$DIR/$tfile
5650
5651         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
5652                 skip "must have user_xattr" && return 0
5653         [ -z "$(which setfattr 2>/dev/null)" ] &&
5654                 skip_env "could not find setfattr" && return 0
5655         [ -z "$(which getfattr 2>/dev/null)" ] &&
5656                 skip_env "could not find getfattr" && return 0
5657
5658         touch $file
5659
5660         local value="$(generate_string $xsize)"
5661
5662         local xbig=trusted.big
5663         log "save $xbig on $file"
5664         setfattr -n $xbig -v $value $file ||
5665                 error "saving $xbig on $file failed"
5666
5667         local orig=$(get_xattr_value $xbig $file)
5668         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
5669
5670         local xsml=trusted.sml
5671         log "save $xsml on $file"
5672         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
5673
5674         local new=$(get_xattr_value $xbig $file)
5675         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
5676
5677         log "grow $xsml on $file"
5678         setfattr -n $xsml -v "$value" $file ||
5679                 error "growing $xsml on $file failed"
5680
5681         new=$(get_xattr_value $xbig $file)
5682         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
5683         log "$xbig still valid after growing $xsml"
5684
5685         rm -f $file
5686 }
5687
5688 test_102h() { # bug 15777
5689         grow_xattr 1024
5690 }
5691 run_test 102h "grow xattr from inside inode to external block"
5692
5693 test_102ha() {
5694         large_xattr_enabled || { skip "large_xattr disabled" && return; }
5695         grow_xattr $(max_xattr_size)
5696 }
5697 run_test 102ha "grow xattr from inside inode to external inode"
5698
5699 test_102i() { # bug 17038
5700         touch $DIR/$tfile
5701         ln -s $DIR/$tfile $DIR/${tfile}link
5702         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
5703         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"
5704         rm -f $DIR/$tfile $DIR/${tfile}link
5705 }
5706 run_test 102i "lgetxattr test on symbolic link ============"
5707
5708 test_102j() {
5709         TAR=$(find_lustre_tar)
5710         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5711         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5712         setup_test102 "$RUNAS"
5713         mkdir -p $DIR/d102j
5714         chown $RUNAS_ID $DIR/d102j
5715         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
5716         cd $DIR/d102j/$tdir
5717         compare_stripe_info1 "$RUNAS"
5718 }
5719 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
5720
5721 test_102k() {
5722         touch $DIR/$tfile
5723         # b22187 just check that does not crash for regular file.
5724         setfattr -n trusted.lov $DIR/$tfile
5725         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
5726         local test_kdir=$DIR/d102k
5727         mkdir $test_kdir
5728         local default_size=`$GETSTRIPE -S $test_kdir`
5729         local default_count=`$GETSTRIPE -c $test_kdir`
5730         local default_offset=`$GETSTRIPE -i $test_kdir`
5731         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $test_kdir ||
5732                 error 'dir setstripe failed'
5733         setfattr -n trusted.lov $test_kdir
5734         local stripe_size=`$GETSTRIPE -S $test_kdir`
5735         local stripe_count=`$GETSTRIPE -c $test_kdir`
5736         local stripe_offset=`$GETSTRIPE -i $test_kdir`
5737         [ $stripe_size -eq $default_size ] ||
5738                 error "stripe size $stripe_size != $default_size"
5739         [ $stripe_count -eq $default_count ] ||
5740                 error "stripe count $stripe_count != $default_count"
5741         [ $stripe_offset -eq $default_offset ] ||
5742                 error "stripe offset $stripe_offset != $default_offset"
5743         rm -rf $DIR/$tfile $test_kdir
5744 }
5745 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
5746
5747 test_102l() {
5748         # LU-532 trusted. xattr is invisible to non-root
5749         local testfile=$DIR/$tfile
5750
5751         touch $testfile
5752
5753         echo "listxattr as user..."
5754         chown $RUNAS_ID $testfile
5755         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
5756             grep -q "trusted" &&
5757                 error "$testfile trusted xattrs are user visible"
5758
5759         return 0;
5760 }
5761 run_test 102l "listxattr filter test =================================="
5762
5763 cleanup_test102
5764
5765 run_acl_subtest()
5766 {
5767     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
5768     return $?
5769 }
5770
5771 test_103 () {
5772     [ "$UID" != 0 ] && skip_env "must run as root" && return
5773     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
5774     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
5775     $GSS && skip "could not run under gss" && return
5776
5777     declare -a identity_old
5778
5779     for num in `seq $MDSCOUNT`; do
5780         switch_identity $num true || identity_old[$num]=$?
5781     done
5782
5783     SAVE_UMASK=`umask`
5784     umask 0022
5785     cd $DIR
5786
5787     echo "performing cp ..."
5788     run_acl_subtest cp || error
5789     echo "performing getfacl-noacl..."
5790     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
5791     echo "performing misc..."
5792     run_acl_subtest misc || error  "misc test failed"
5793     echo "performing permissions..."
5794     run_acl_subtest permissions || error "permissions failed"
5795     echo "performing setfacl..."
5796     run_acl_subtest setfacl || error  "setfacl test failed"
5797
5798     # inheritance test got from HP
5799     echo "performing inheritance..."
5800     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
5801     chmod +x make-tree || error "chmod +x failed"
5802     run_acl_subtest inheritance || error "inheritance test failed"
5803     rm -f make-tree
5804
5805     echo "LU-974 ignore umask when acl is enabled..."
5806     mkdir $DIR/974
5807     cd $DIR/974
5808     run_acl_subtest 974 || error "LU-974 test failed"
5809     rm -rf $DIR/974
5810
5811     cd $SAVE_PWD
5812     umask $SAVE_UMASK
5813
5814     for num in `seq $MDSCOUNT`; do
5815         if [ "${identity_old[$num]}" = 1 ]; then
5816             switch_identity $num false || identity_old[$num]=$?
5817         fi
5818     done
5819 }
5820 run_test 103 "acl test ========================================="
5821
5822 test_104a() {
5823         touch $DIR/$tfile
5824         lfs df || error "lfs df failed"
5825         lfs df -ih || error "lfs df -ih failed"
5826         lfs df -h $DIR || error "lfs df -h $DIR failed"
5827         lfs df -i $DIR || error "lfs df -i $DIR failed"
5828         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
5829         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
5830
5831         OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
5832         lctl --device %$OSC deactivate
5833         lfs df || error "lfs df with deactivated OSC failed"
5834         lctl --device %$OSC activate
5835         # wait the osc back to normal
5836         wait_osc_import_state client ost FULL
5837
5838         lfs df || error "lfs df with reactivated OSC failed"
5839         rm -f $DIR/$tfile
5840 }
5841 run_test 104a "lfs df [-ih] [path] test ========================="
5842
5843 test_104b() {
5844         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5845         chmod 666 /dev/obd
5846         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
5847         if [ $denied_cnt -ne 0 ];
5848         then
5849                     error "lfs check servers test failed"
5850         fi
5851 }
5852 run_test 104b "$RUNAS lfs check servers test ===================="
5853
5854 test_105a() {
5855         # doesn't work on 2.4 kernels
5856         touch $DIR/$tfile
5857         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5858         then
5859                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
5860         else
5861                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
5862         fi
5863         rm -f $DIR/$tfile
5864 }
5865 run_test 105a "flock when mounted without -o flock test ========"
5866
5867 test_105b() {
5868         touch $DIR/$tfile
5869         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5870         then
5871                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
5872         else
5873                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
5874         fi
5875         rm -f $DIR/$tfile
5876 }
5877 run_test 105b "fcntl when mounted without -o flock test ========"
5878
5879 test_105c() {
5880         touch $DIR/$tfile
5881         if [ -n "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ];
5882         then
5883                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
5884         else
5885                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
5886         fi
5887         rm -f $DIR/$tfile
5888 }
5889 run_test 105c "lockf when mounted without -o flock test ========"
5890
5891 test_105d() { # bug 15924
5892         mkdir -p $DIR/$tdir
5893         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5894                 skip "mount w/o flock enabled" && return
5895         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
5896         $LCTL set_param fail_loc=0x80000315
5897         flocks_test 2 $DIR/$tdir
5898 }
5899 run_test 105d "flock race (should not freeze) ========"
5900
5901 test_105e() { # bug 22660 && 22040
5902         [ -z "`mount | grep \"$DIR.*flock\" | grep -v noflock`" ] && \
5903                 skip "mount w/o flock enabled" && return
5904         touch $DIR/$tfile
5905         flocks_test 3 $DIR/$tfile
5906 }
5907 run_test 105e "Two conflicting flocks from same process ======="
5908
5909 test_106() { #bug 10921
5910         mkdir -p $DIR/$tdir
5911         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
5912         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
5913 }
5914 run_test 106 "attempt exec of dir followed by chown of that dir"
5915
5916 test_107() {
5917         CDIR=`pwd`
5918         cd $DIR
5919
5920         local file=core
5921         rm -f $file
5922
5923         local save_pattern=$(sysctl -n kernel.core_pattern)
5924         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
5925         sysctl -w kernel.core_pattern=$file
5926         sysctl -w kernel.core_uses_pid=0
5927
5928         ulimit -c unlimited
5929         sleep 60 &
5930         SLEEPPID=$!
5931
5932         sleep 1
5933
5934         kill -s 11 $SLEEPPID
5935         wait $SLEEPPID
5936         if [ -e $file ]; then
5937                 size=`stat -c%s $file`
5938                 [ $size -eq 0 ] && error "Fail to create core file $file"
5939         else
5940                 error "Fail to create core file $file"
5941         fi
5942         rm -f $file
5943         sysctl -w kernel.core_pattern=$save_pattern
5944         sysctl -w kernel.core_uses_pid=$save_uses_pid
5945         cd $CDIR
5946 }
5947 run_test 107 "Coredump on SIG"
5948
5949 test_110() {
5950         mkdir -p $DIR/$tdir
5951         mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
5952                 error "mkdir with 255 char failed"
5953         mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
5954                 error "mkdir with 256 char should fail, but did not"
5955         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
5956                 error "create with 255 char failed"
5957         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
5958                 error "create with 256 char should fail, but did not"
5959
5960         ls -l $DIR/$tdir
5961         rm -rf $DIR/$tdir
5962 }
5963 run_test 110 "filename length checking"
5964
5965 test_115() {
5966         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5967             cut -c11-20)
5968         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
5969             return
5970         echo "Starting with $OSTIO_pre threads"
5971
5972         NUMTEST=20000
5973         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
5974         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
5975         echo "$NUMTEST creates/unlinks"
5976         mkdir -p $DIR/$tdir
5977         createmany -o $DIR/$tdir/$tfile $NUMTEST
5978         unlinkmany $DIR/$tdir/$tfile $NUMTEST
5979
5980         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
5981             cut -c11-20)
5982
5983         # don't return an error
5984         [ $OSTIO_post == $OSTIO_pre ] && echo \
5985             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
5986             echo "This may be fine, depending on what ran before this test" &&
5987             echo "and how fast this system is." && return
5988
5989         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
5990 }
5991 run_test 115 "verify dynamic thread creation===================="
5992
5993 free_min_max () {
5994         wait_delete_completed
5995         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
5996         echo OST kbytes available: ${AVAIL[@]}
5997         MAXI=0; MAXV=${AVAIL[0]}
5998         MINI=0; MINV=${AVAIL[0]}
5999         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6000             #echo OST $i: ${AVAIL[i]}kb
6001             if [ ${AVAIL[i]} -gt $MAXV ]; then
6002                 MAXV=${AVAIL[i]}; MAXI=$i
6003             fi
6004             if [ ${AVAIL[i]} -lt $MINV ]; then
6005                 MINV=${AVAIL[i]}; MINI=$i
6006             fi
6007         done
6008         echo Min free space: OST $MINI: $MINV
6009         echo Max free space: OST $MAXI: $MAXV
6010 }
6011
6012 test_116a() { # was previously test_116()
6013         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6014
6015         echo -n "Free space priority "
6016         lctl get_param -n lov.*-clilov-*.qos_prio_free
6017         declare -a AVAIL
6018         free_min_max
6019         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6020                 return
6021
6022         # generate uneven OSTs
6023         mkdir -p $DIR/$tdir/OST${MINI}
6024         declare -i FILL
6025         FILL=$(($MINV / 4))
6026         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6027         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6028         i=0
6029         while [ $FILL -gt 0 ]; do
6030             i=$(($i + 1))
6031             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6032             FILL=$(($FILL - 2048))
6033             echo -n .
6034         done
6035         FILL=$(($MINV / 4))
6036         sync
6037         sleep_maxage
6038
6039         free_min_max
6040         DIFF=$(($MAXV - $MINV))
6041         DIFF2=$(($DIFF * 100 / $MINV))
6042         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6043         if [ $DIFF2 -gt 20 ]; then
6044             echo "ok"
6045         else
6046             echo "failed - QOS mode won't be used"
6047             error_ignore "QOS imbalance criteria not met"
6048             return
6049         fi
6050
6051         MINI1=$MINI; MINV1=$MINV
6052         MAXI1=$MAXI; MAXV1=$MAXV
6053
6054         # now fill using QOS
6055         echo writing a bunch of files to QOS-assigned OSTs
6056         $SETSTRIPE -c 1 $DIR/$tdir
6057         i=0
6058         while [ $FILL -gt 0 ]; do
6059             i=$(($i + 1))
6060             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6061             FILL=$(($FILL - 200))
6062             echo -n .
6063         done
6064         echo "wrote $i 200k files"
6065         sync
6066         sleep_maxage
6067
6068         echo "Note: free space may not be updated, so measurements might be off"
6069         free_min_max
6070         DIFF2=$(($MAXV - $MINV))
6071         echo "free space delta: orig $DIFF final $DIFF2"
6072         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6073         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6074         echo "Wrote $DIFF to smaller OST $MINI1"
6075         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6076         echo "Wrote $DIFF2 to larger OST $MAXI1"
6077         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6078
6079         # Figure out which files were written where
6080         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6081                awk '/'$MINI1': / {print $2; exit}')
6082         echo $UUID
6083         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6084         echo "$MINC files created on smaller OST $MINI1"
6085         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6086                awk '/'$MAXI1': / {print $2; exit}')
6087         echo $UUID
6088         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6089         echo "$MAXC files created on larger OST $MAXI1"
6090         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6091         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6092
6093         rm -rf $DIR/$tdir
6094 }
6095 run_test 116a "stripe QOS: free space balance ==================="
6096
6097 test_116b() { # LU-2093
6098 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6099         local old_rr
6100         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6101         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6102         mkdir -p $DIR/$tdir
6103         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6104         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6105         do_facet $SINGLEMDS lctl set_param fail_loc=0
6106         rm -rf $DIR/$tdir
6107         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6108 }
6109 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6110
6111 test_117() # bug 10891
6112 {
6113         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6114         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6115         lctl set_param fail_loc=0x21e
6116         > $DIR/$tfile || error "truncate failed"
6117         lctl set_param fail_loc=0
6118         echo "Truncate succeeded."
6119         rm -f $DIR/$tfile
6120 }
6121 run_test 117 "verify fsfilt_extend =========="
6122
6123 export OLD_RESENDCOUNT=""
6124 set_resend_count () {
6125         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6126         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6127         lctl set_param -n $PROC_RESENDCOUNT $1
6128         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6129 }
6130
6131 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
6132
6133 # Reset async IO behavior after error case
6134 reset_async() {
6135         FILE=$DIR/reset_async
6136
6137         # Ensure all OSCs are cleared
6138         $SETSTRIPE -c -1 $FILE
6139         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6140         sync
6141         rm $FILE
6142 }
6143
6144 test_118a() #bug 11710
6145 {
6146         reset_async
6147
6148         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6149         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6150         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6151
6152         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6153                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6154                 return 1;
6155         fi
6156         rm -f $DIR/$tfile
6157 }
6158 run_test 118a "verify O_SYNC works =========="
6159
6160 test_118b()
6161 {
6162         remote_ost_nodsh && skip "remote OST with nodsh" && return
6163
6164         reset_async
6165
6166         #define OBD_FAIL_OST_ENOENT 0x217
6167         set_nodes_failloc "$(osts_nodes)" 0x217
6168         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6169         RC=$?
6170         set_nodes_failloc "$(osts_nodes)" 0
6171         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6172         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6173                     grep -c writeback)
6174
6175         if [[ $RC -eq 0 ]]; then
6176                 error "Must return error due to dropped pages, rc=$RC"
6177                 return 1;
6178         fi
6179
6180         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6181                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6182                 return 1;
6183         fi
6184
6185         echo "Dirty pages not leaked on ENOENT"
6186
6187         # Due to the above error the OSC will issue all RPCs syncronously
6188         # until a subsequent RPC completes successfully without error.
6189         $MULTIOP $DIR/$tfile Ow4096yc
6190         rm -f $DIR/$tfile
6191
6192         return 0
6193 }
6194 run_test 118b "Reclaim dirty pages on fatal error =========="
6195
6196 test_118c()
6197 {
6198         remote_ost_nodsh && skip "remote OST with nodsh" && return
6199
6200         reset_async
6201
6202         #define OBD_FAIL_OST_EROFS               0x216
6203         set_nodes_failloc "$(osts_nodes)" 0x216
6204
6205         # multiop should block due to fsync until pages are written
6206         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6207         MULTIPID=$!
6208         sleep 1
6209
6210         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6211                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6212         fi
6213
6214         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6215                     grep -c writeback)
6216         if [[ $WRITEBACK -eq 0 ]]; then
6217                 error "No page in writeback, writeback=$WRITEBACK"
6218         fi
6219
6220         set_nodes_failloc "$(osts_nodes)" 0
6221         wait $MULTIPID
6222         RC=$?
6223         if [[ $RC -ne 0 ]]; then
6224                 error "Multiop fsync failed, rc=$RC"
6225         fi
6226
6227         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6228         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6229                     grep -c writeback)
6230         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6231                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6232         fi
6233
6234         rm -f $DIR/$tfile
6235         echo "Dirty pages flushed via fsync on EROFS"
6236         return 0
6237 }
6238 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6239
6240 test_118d()
6241 {
6242         remote_ost_nodsh && skip "remote OST with nodsh" && return
6243
6244         reset_async
6245
6246         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6247         set_nodes_failloc "$(osts_nodes)" 0x214
6248         # multiop should block due to fsync until pages are written
6249         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6250         MULTIPID=$!
6251         sleep 1
6252
6253         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6254                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6255         fi
6256
6257         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6258                     grep -c writeback)
6259         if [[ $WRITEBACK -eq 0 ]]; then
6260                 error "No page in writeback, writeback=$WRITEBACK"
6261         fi
6262
6263         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6264         set_nodes_failloc "$(osts_nodes)" 0
6265
6266         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6267         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6268                     grep -c writeback)
6269         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6270                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6271         fi
6272
6273         rm -f $DIR/$tfile
6274         echo "Dirty pages gaurenteed flushed via fsync"
6275         return 0
6276 }
6277 run_test 118d "Fsync validation inject a delay of the bulk =========="
6278
6279 test_118f() {
6280         reset_async
6281
6282         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6283         lctl set_param fail_loc=0x8000040a
6284
6285         # Should simulate EINVAL error which is fatal
6286         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6287         RC=$?
6288         if [[ $RC -eq 0 ]]; then
6289                 error "Must return error due to dropped pages, rc=$RC"
6290         fi
6291
6292         lctl set_param fail_loc=0x0
6293
6294         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6295         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6296         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6297                     grep -c writeback)
6298         if [[ $LOCKED -ne 0 ]]; then
6299                 error "Locked pages remain in cache, locked=$LOCKED"
6300         fi
6301
6302         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6303                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6304         fi
6305
6306         rm -f $DIR/$tfile
6307         echo "No pages locked after fsync"
6308
6309         reset_async
6310         return 0
6311 }
6312 run_test 118f "Simulate unrecoverable OSC side error =========="
6313
6314 test_118g() {
6315         reset_async
6316
6317         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6318         lctl set_param fail_loc=0x406
6319
6320         # simulate local -ENOMEM
6321         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6322         RC=$?
6323
6324         lctl set_param fail_loc=0
6325         if [[ $RC -eq 0 ]]; then
6326                 error "Must return error due to dropped pages, rc=$RC"
6327         fi
6328
6329         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6330         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6331         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6332                         grep -c writeback)
6333         if [[ $LOCKED -ne 0 ]]; then
6334                 error "Locked pages remain in cache, locked=$LOCKED"
6335         fi
6336
6337         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6338                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6339         fi
6340
6341         rm -f $DIR/$tfile
6342         echo "No pages locked after fsync"
6343
6344         reset_async
6345         return 0
6346 }
6347 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6348
6349 test_118h() {
6350         remote_ost_nodsh && skip "remote OST with nodsh" && return
6351
6352         reset_async
6353
6354         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6355         set_nodes_failloc "$(osts_nodes)" 0x20e
6356         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6357         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6358         RC=$?
6359
6360         set_nodes_failloc "$(osts_nodes)" 0
6361         if [[ $RC -eq 0 ]]; then
6362                 error "Must return error due to dropped pages, rc=$RC"
6363         fi
6364
6365         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6366         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6367         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6368                     grep -c writeback)
6369         if [[ $LOCKED -ne 0 ]]; then
6370                 error "Locked pages remain in cache, locked=$LOCKED"
6371         fi
6372
6373         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6374                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6375         fi
6376
6377         rm -f $DIR/$tfile
6378         echo "No pages locked after fsync"
6379
6380         return 0
6381 }
6382 run_test 118h "Verify timeout in handling recoverables errors  =========="
6383
6384 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6385
6386 test_118i() {
6387         remote_ost_nodsh && skip "remote OST with nodsh" && return
6388
6389         reset_async
6390
6391         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6392         set_nodes_failloc "$(osts_nodes)" 0x20e
6393
6394         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6395         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6396         PID=$!
6397         sleep 5
6398         set_nodes_failloc "$(osts_nodes)" 0
6399
6400         wait $PID
6401         RC=$?
6402         if [[ $RC -ne 0 ]]; then
6403                 error "got error, but should be not, rc=$RC"
6404         fi
6405
6406         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6407         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6408         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6409         if [[ $LOCKED -ne 0 ]]; then
6410                 error "Locked pages remain in cache, locked=$LOCKED"
6411         fi
6412
6413         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6414                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6415         fi
6416
6417         rm -f $DIR/$tfile
6418         echo "No pages locked after fsync"
6419
6420         return 0
6421 }
6422 run_test 118i "Fix error before timeout in recoverable error  =========="
6423
6424 [ "$SLOW" = "no" ] && set_resend_count 4
6425
6426 test_118j() {
6427         remote_ost_nodsh && skip "remote OST with nodsh" && return
6428
6429         reset_async
6430
6431         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6432         set_nodes_failloc "$(osts_nodes)" 0x220
6433
6434         # return -EIO from OST
6435         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6436         RC=$?
6437         set_nodes_failloc "$(osts_nodes)" 0x0
6438         if [[ $RC -eq 0 ]]; then
6439                 error "Must return error due to dropped pages, rc=$RC"
6440         fi
6441
6442         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6443         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6444         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6445         if [[ $LOCKED -ne 0 ]]; then
6446                 error "Locked pages remain in cache, locked=$LOCKED"
6447         fi
6448
6449         # in recoverable error on OST we want resend and stay until it finished
6450         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6451                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6452         fi
6453
6454         rm -f $DIR/$tfile
6455         echo "No pages locked after fsync"
6456
6457         return 0
6458 }
6459 run_test 118j "Simulate unrecoverable OST side error =========="
6460
6461 test_118k()
6462 {
6463         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
6464
6465         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6466         set_nodes_failloc "$(osts_nodes)" 0x20e
6467         mkdir -p $DIR/$tdir
6468
6469         for ((i=0;i<10;i++)); do
6470                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
6471                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
6472                 SLEEPPID=$!
6473                 sleep 0.500s
6474                 kill $SLEEPPID
6475                 wait $SLEEPPID
6476         done
6477
6478         set_nodes_failloc "$(osts_nodes)" 0
6479         rm -rf $DIR/$tdir
6480 }
6481 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
6482
6483 test_118l()
6484 {
6485         # LU-646
6486         mkdir -p $DIR/$tdir
6487         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
6488         rm -rf $DIR/$tdir
6489 }
6490 run_test 118l "fsync dir ========="
6491
6492 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6493
6494 test_119a() # bug 11737
6495 {
6496         BSIZE=$((512 * 1024))
6497         directio write $DIR/$tfile 0 1 $BSIZE
6498         # We ask to read two blocks, which is more than a file size.
6499         # directio will indicate an error when requested and actual
6500         # sizes aren't equeal (a normal situation in this case) and
6501         # print actual read amount.
6502         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
6503         if [ "$NOB" != "$BSIZE" ]; then
6504                 error "read $NOB bytes instead of $BSIZE"
6505         fi
6506         rm -f $DIR/$tfile
6507 }
6508 run_test 119a "Short directIO read must return actual read amount"
6509
6510 test_119b() # bug 11737
6511 {
6512         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6513
6514         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
6515         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
6516         sync
6517         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
6518                 error "direct read failed"
6519         rm -f $DIR/$tfile
6520 }
6521 run_test 119b "Sparse directIO read must return actual read amount"
6522
6523 test_119c() # bug 13099
6524 {
6525         BSIZE=1048576
6526         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
6527         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
6528         rm -f $DIR/$tfile
6529 }
6530 run_test 119c "Testing for direct read hitting hole"
6531
6532 test_119d() # bug 15950
6533 {
6534         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
6535         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
6536         BSIZE=1048576
6537         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
6538         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
6539         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
6540         lctl set_param fail_loc=0x40d
6541         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
6542         pid_dio=$!
6543         sleep 1
6544         cat $DIR/$tfile > /dev/null &
6545         lctl set_param fail_loc=0
6546         pid_reads=$!
6547         wait $pid_dio
6548         log "the DIO writes have completed, now wait for the reads (should not block very long)"
6549         sleep 2
6550         [ -n "`ps h -p $pid_reads -o comm`" ] && \
6551         error "the read rpcs have not completed in 2s"
6552         rm -f $DIR/$tfile
6553         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
6554 }
6555 run_test 119d "The DIO path should try to send a new rpc once one is completed"
6556
6557 test_120a() {
6558         mkdir -p $DIR/$tdir
6559         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6560                skip "no early lock cancel on server" && return 0
6561         lru_resize_disable mdc
6562         lru_resize_disable osc
6563         cancel_lru_locks mdc
6564         stat $DIR/$tdir > /dev/null
6565         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6566         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6567         mkdir $DIR/$tdir/d1
6568         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6569         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6570         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6571         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6572         lru_resize_enable mdc
6573         lru_resize_enable osc
6574 }
6575 run_test 120a "Early Lock Cancel: mkdir test"
6576
6577 test_120b() {
6578         mkdir -p $DIR/$tdir
6579         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6580                skip "no early lock cancel on server" && return 0
6581         lru_resize_disable mdc
6582         lru_resize_disable osc
6583         cancel_lru_locks mdc
6584         stat $DIR/$tdir > /dev/null
6585         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6586         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6587         touch $DIR/$tdir/f1
6588         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6589         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6590         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6591         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6592         lru_resize_enable mdc
6593         lru_resize_enable osc
6594 }
6595 run_test 120b "Early Lock Cancel: create test"
6596
6597 test_120c() {
6598         mkdir -p $DIR/$tdir
6599         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6600                skip "no early lock cancel on server" && return 0
6601         lru_resize_disable mdc
6602         lru_resize_disable osc
6603         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6604         touch $DIR/$tdir/d1/f1
6605         cancel_lru_locks mdc
6606         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
6607         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6608         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6609         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
6610         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6611         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6612         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6613         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6614         lru_resize_enable mdc
6615         lru_resize_enable osc
6616 }
6617 run_test 120c "Early Lock Cancel: link test"
6618
6619 test_120d() {
6620         mkdir -p $DIR/$tdir
6621         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6622                skip "no early lock cancel on server" && return 0
6623         lru_resize_disable mdc
6624         lru_resize_disable osc
6625         touch $DIR/$tdir
6626         cancel_lru_locks mdc
6627         stat $DIR/$tdir > /dev/null
6628         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6629         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6630         chmod a+x $DIR/$tdir
6631         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6632         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6633         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6634         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6635         lru_resize_enable mdc
6636         lru_resize_enable osc
6637 }
6638 run_test 120d "Early Lock Cancel: setattr test"
6639
6640 test_120e() {
6641         mkdir -p $DIR/$tdir
6642         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6643                skip "no early lock cancel on server" && return 0
6644         lru_resize_disable mdc
6645         lru_resize_disable osc
6646         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
6647         cancel_lru_locks mdc
6648         cancel_lru_locks osc
6649         dd if=$DIR/$tdir/f1 of=/dev/null
6650         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
6651         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6652               awk '/ldlm_cancel/ {print $2}'`
6653         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6654               awk '/ldlm_bl_callback/ {print $2}'`
6655         unlink $DIR/$tdir/f1
6656         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6657               awk '/ldlm_cancel/ {print $2}'`
6658         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6659               awk '/ldlm_bl_callback/ {print $2}'`
6660         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6661         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6662         lru_resize_enable mdc
6663         lru_resize_enable osc
6664 }
6665 run_test 120e "Early Lock Cancel: unlink test"
6666
6667 test_120f() {
6668         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6669                skip "no early lock cancel on server" && return 0
6670         mkdir -p $DIR/$tdir
6671         lru_resize_disable mdc
6672         lru_resize_disable osc
6673         mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6674         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
6675         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
6676         cancel_lru_locks mdc
6677         cancel_lru_locks osc
6678         dd if=$DIR/$tdir/d1/f1 of=/dev/null
6679         dd if=$DIR/$tdir/d2/f2 of=/dev/null
6680         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
6681         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6682               awk '/ldlm_cancel/ {print $2}'`
6683         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6684               awk '/ldlm_bl_callback/ {print $2}'`
6685         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
6686         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6687               awk '/ldlm_cancel/ {print $2}'`
6688         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6689               awk '/ldlm_bl_callback/ {print $2}'`
6690         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6691         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6692         lru_resize_enable mdc
6693         lru_resize_enable osc
6694 }
6695 run_test 120f "Early Lock Cancel: rename test"
6696
6697 test_120g() {
6698         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6699                skip "no early lock cancel on server" && return 0
6700         lru_resize_disable mdc
6701         lru_resize_disable osc
6702         count=10000
6703         echo create $count files
6704         mkdir -p $DIR/$tdir
6705         cancel_lru_locks mdc
6706         cancel_lru_locks osc
6707         t0=`date +%s`
6708
6709         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6710               awk '/ldlm_cancel/ {print $2}'`
6711         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6712               awk '/ldlm_bl_callback/ {print $2}'`
6713         createmany -o $DIR/$tdir/f $count
6714         sync
6715         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6716               awk '/ldlm_cancel/ {print $2}'`
6717         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6718               awk '/ldlm_bl_callback/ {print $2}'`
6719         t1=`date +%s`
6720         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
6721         echo rm $count files
6722         rm -r $DIR/$tdir
6723         sync
6724         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
6725               awk '/ldlm_cancel/ {print $2}'`
6726         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
6727               awk '/ldlm_bl_callback/ {print $2}'`
6728         t2=`date +%s`
6729         echo total: $count removes in $((t2-t1))
6730         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
6731         sleep 2
6732         # wait for commitment of removal
6733         lru_resize_enable mdc
6734         lru_resize_enable osc
6735 }
6736 run_test 120g "Early Lock Cancel: performance test"
6737
6738 test_121() { #bug #10589
6739         rm -rf $DIR/$tfile
6740         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
6741 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
6742         lctl set_param fail_loc=0x310
6743         cancel_lru_locks osc > /dev/null
6744         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
6745         lctl set_param fail_loc=0
6746         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
6747 }
6748 run_test 121 "read cancel race ========="
6749
6750 test_123a() { # was test 123, statahead(bug 11401)
6751         SLOWOK=0
6752         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
6753             log "testing on UP system. Performance may be not as good as expected."
6754                         SLOWOK=1
6755         fi
6756
6757         rm -rf $DIR/$tdir
6758         mkdir -p $DIR/$tdir
6759         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6760         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
6761         MULT=10
6762         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
6763                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
6764
6765                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
6766                 lctl set_param -n llite.*.statahead_max 0
6767                 lctl get_param llite.*.statahead_max
6768                 cancel_lru_locks mdc
6769                 cancel_lru_locks osc
6770                 stime=`date +%s`
6771                 time ls -l $DIR/$tdir | wc -l
6772                 etime=`date +%s`
6773                 delta=$((etime - stime))
6774                 log "ls $i files without statahead: $delta sec"
6775                 lctl set_param llite.*.statahead_max=$max
6776
6777                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
6778                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
6779                 cancel_lru_locks mdc
6780                 cancel_lru_locks osc
6781                 stime=`date +%s`
6782                 time ls -l $DIR/$tdir | wc -l
6783                 etime=`date +%s`
6784                 delta_sa=$((etime - stime))
6785                 log "ls $i files with statahead: $delta_sa sec"
6786                 lctl get_param -n llite.*.statahead_stats
6787                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
6788
6789                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
6790                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
6791
6792                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
6793                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
6794                     lctl set_param -n llite.*.statahead_max 0
6795                     lctl get_param llite.*.statahead_max
6796                     cancel_lru_locks mdc
6797                     cancel_lru_locks osc
6798                     stime=`date +%s`
6799                     time ls -l $DIR/$tdir | wc -l
6800                     etime=`date +%s`
6801                     delta=$((etime - stime))
6802                     log "ls $i files again without statahead: $delta sec"
6803                     lctl set_param llite.*.statahead_max=$max
6804                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
6805                         if [  $SLOWOK -eq 0 ]; then
6806                                 error "ls $i files is slower with statahead!"
6807                         else
6808                                 log "ls $i files is slower with statahead!"
6809                         fi
6810                         break
6811                     fi
6812                 fi
6813
6814                 [ $delta -gt 20 ] && break
6815                 [ $delta -gt 8 ] && MULT=$((50 / delta))
6816                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
6817         done
6818         log "ls done"
6819
6820         stime=`date +%s`
6821         rm -r $DIR/$tdir
6822         sync
6823         etime=`date +%s`
6824         delta=$((etime - stime))
6825         log "rm -r $DIR/$tdir/: $delta seconds"
6826         log "rm done"
6827         lctl get_param -n llite.*.statahead_stats
6828 }
6829 run_test 123a "verify statahead work"
6830
6831 test_123b () { # statahead(bug 15027)
6832         mkdir -p $DIR/$tdir
6833         createmany -o $DIR/$tdir/$tfile-%d 1000
6834
6835         cancel_lru_locks mdc
6836         cancel_lru_locks osc
6837
6838 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
6839         lctl set_param fail_loc=0x80000803
6840         ls -lR $DIR/$tdir > /dev/null
6841         log "ls done"
6842         lctl set_param fail_loc=0x0
6843         lctl get_param -n llite.*.statahead_stats
6844         rm -r $DIR/$tdir
6845         sync
6846
6847 }
6848 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
6849
6850 test_124a() {
6851         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6852                skip "no lru resize on server" && return 0
6853         local NR=2000
6854         mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
6855
6856         log "create $NR files at $DIR/$tdir"
6857         createmany -o $DIR/$tdir/f $NR ||
6858                 error "failed to create $NR files in $DIR/$tdir"
6859
6860         cancel_lru_locks mdc
6861         ls -l $DIR/$tdir > /dev/null
6862
6863         local NSDIR=""
6864         local LRU_SIZE=0
6865         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
6866                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
6867                 LRU_SIZE=$(lctl get_param -n $PARAM)
6868                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
6869                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
6870                                                 log "NSDIR=$NSDIR"
6871                         log "NS=$(basename $NSDIR)"
6872                         break
6873                 fi
6874         done
6875
6876         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
6877                 skip "Not enough cached locks created!"
6878                 return 0
6879         fi
6880         log "LRU=$LRU_SIZE"
6881
6882         local SLEEP=30
6883
6884         # We know that lru resize allows one client to hold $LIMIT locks
6885         # for 10h. After that locks begin to be killed by client.
6886         local MAX_HRS=10
6887         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
6888                 log "LIMIT=$LIMIT"
6889
6890         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
6891         # killing locks. Some time was spent for creating locks. This means
6892         # that up to the moment of sleep finish we must have killed some of
6893         # them (10-100 locks). This depends on how fast ther were created.
6894         # Many of them were touched in almost the same moment and thus will
6895         # be killed in groups.
6896         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
6897
6898         # Use $LRU_SIZE_B here to take into account real number of locks
6899         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
6900         local LRU_SIZE_B=$LRU_SIZE
6901         log "LVF=$LVF"
6902         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
6903                 log "OLD_LVF=$OLD_LVF"
6904         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
6905
6906         # Let's make sure that we really have some margin. Client checks
6907         # cached locks every 10 sec.
6908         SLEEP=$((SLEEP+20))
6909         log "Sleep ${SLEEP} sec"
6910         local SEC=0
6911         while ((SEC<$SLEEP)); do
6912                 echo -n "..."
6913                 sleep 5
6914                 SEC=$((SEC+5))
6915                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
6916                 echo -n "$LRU_SIZE"
6917         done
6918         echo ""
6919         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
6920         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
6921
6922         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
6923                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
6924                 unlinkmany $DIR/$tdir/f $NR
6925                 return
6926         }
6927
6928         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
6929         log "unlink $NR files at $DIR/$tdir"
6930         unlinkmany $DIR/$tdir/f $NR
6931 }
6932 run_test 124a "lru resize ======================================="
6933
6934 get_max_pool_limit()
6935 {
6936         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
6937         local max=0
6938         for l in $limit; do
6939                 if test $l -gt $max; then
6940                         max=$l
6941                 fi
6942         done
6943         echo $max
6944 }
6945
6946 test_124b() {
6947         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
6948                skip "no lru resize on server" && return 0
6949
6950         LIMIT=`get_max_pool_limit`
6951
6952         NR=$(($(default_lru_size)*20))
6953         if [ $NR -gt $LIMIT ]; then
6954                 log "Limit lock number by $LIMIT locks"
6955                 NR=$LIMIT
6956         fi
6957         lru_resize_disable mdc
6958         mkdir -p $DIR/$tdir/disable_lru_resize ||
6959                 error "failed to create $DIR/$tdir/disable_lru_resize"
6960
6961         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
6962         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
6963         cancel_lru_locks mdc
6964         stime=`date +%s`
6965         PID=""
6966         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6967         PID="$PID $!"
6968         sleep 2
6969         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6970         PID="$PID $!"
6971         sleep 2
6972         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
6973         PID="$PID $!"
6974         wait $PID
6975         etime=`date +%s`
6976         nolruresize_delta=$((etime-stime))
6977         log "ls -la time: $nolruresize_delta seconds"
6978         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
6979         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
6980
6981         lru_resize_enable mdc
6982         mkdir -p $DIR/$tdir/enable_lru_resize ||
6983                 error "failed to create $DIR/$tdir/enable_lru_resize"
6984
6985         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
6986         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
6987         cancel_lru_locks mdc
6988         stime=`date +%s`
6989         PID=""
6990         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6991         PID="$PID $!"
6992         sleep 2
6993         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6994         PID="$PID $!"
6995         sleep 2
6996         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
6997         PID="$PID $!"
6998         wait $PID
6999         etime=`date +%s`
7000         lruresize_delta=$((etime-stime))
7001         log "ls -la time: $lruresize_delta seconds"
7002         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7003
7004         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7005                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7006         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7007                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7008         else
7009                 log "lru resize performs the same with no lru resize"
7010         fi
7011         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7012 }
7013 run_test 124b "lru resize (performance test) ======================="
7014
7015 test_125() { # 13358
7016         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7017         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7018         mkdir -p $DIR/d125 || error "mkdir failed"
7019         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7020         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7021         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7022 }
7023 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7024
7025 test_126() { # bug 12829/13455
7026         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7027         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7028         $GSS && skip "must run as gss disabled" && return
7029
7030         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7031         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7032         rm -f $DIR/$tfile
7033         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7034 }
7035 run_test 126 "check that the fsgid provided by the client is taken into account"
7036
7037 test_127a() { # bug 15521
7038         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7039         $LCTL set_param osc.*.stats=0
7040         FSIZE=$((2048 * 1024))
7041         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7042         cancel_lru_locks osc
7043         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7044
7045         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7046         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7047                 echo "got $COUNT $NAME"
7048                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7049                 eval $NAME=$COUNT || error "Wrong proc format"
7050
7051                 case $NAME in
7052                         read_bytes|write_bytes)
7053                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7054                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7055                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7056                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7057                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7058                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7059                                 error "sumsquare is too small: $SUMSQ"
7060                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7061                                 error "sumsquare is too big: $SUMSQ"
7062                         ;;
7063                         *) ;;
7064                 esac
7065         done < $DIR/${tfile}.tmp
7066
7067         #check that we actually got some stats
7068         [ "$read_bytes" ] || error "Missing read_bytes stats"
7069         [ "$write_bytes" ] || error "Missing write_bytes stats"
7070         [ "$read_bytes" != 0 ] || error "no read done"
7071         [ "$write_bytes" != 0 ] || error "no write done"
7072 }
7073 run_test 127a "verify the client stats are sane"
7074
7075 test_127b() { # bug LU-333
7076         $LCTL set_param llite.*.stats=0
7077         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7078         # perform 2 reads and writes so MAX is different from SUM.
7079         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7080         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7081         cancel_lru_locks osc
7082         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7083         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7084
7085         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7086         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7087                 echo "got $COUNT $NAME"
7088                 eval $NAME=$COUNT || error "Wrong proc format"
7089
7090         case $NAME in
7091                 read_bytes)
7092                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7093                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7094                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7095                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7096                         ;;
7097                 write_bytes)
7098                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7099                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7100                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7101                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7102                         ;;
7103                         *) ;;
7104                 esac
7105         done < $TMP/${tfile}.tmp
7106
7107         #check that we actually got some stats
7108         [ "$read_bytes" ] || error "Missing read_bytes stats"
7109         [ "$write_bytes" ] || error "Missing write_bytes stats"
7110         [ "$read_bytes" != 0 ] || error "no read done"
7111         [ "$write_bytes" != 0 ] || error "no write done"
7112 }
7113 run_test 127b "verify the llite client stats are sane"
7114
7115 test_128() { # bug 15212
7116         touch $DIR/$tfile
7117         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7118                 find $DIR/$tfile
7119                 find $DIR/$tfile
7120         EOF
7121
7122         result=$(grep error $TMP/$tfile.log)
7123         rm -f $DIR/$tfile
7124         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7125 }
7126 run_test 128 "interactive lfs for 2 consecutive find's"
7127
7128 set_dir_limits () {
7129         local mntdev
7130         local canondev
7131         local node
7132
7133         local LDPROC=/proc/fs/ldiskfs
7134
7135         for facet in $(get_facets MDS); do
7136                 canondev=$(ldiskfs_canon *.$(convert_facet2label $facet).mntdev $facet)
7137                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" || LDPROC=/sys/fs/ldiskfs
7138                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7139         done
7140 }
7141 test_129() {
7142         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7143                 skip "Only applicable to ldiskfs-based MDTs"
7144                 return
7145         fi
7146         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7147
7148         EFBIG=27
7149         MAX=16384
7150
7151         set_dir_limits $MAX
7152
7153         mkdir -p $DIR/$tdir
7154
7155         I=0
7156         J=0
7157         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7158                 $MULTIOP $DIR/$tdir/$J Oc
7159                 rc=$?
7160                 if [ $rc -eq $EFBIG ]; then
7161                         set_dir_limits 0
7162                         echo "return code $rc received as expected"
7163                         return 0
7164                 elif [ $rc -ne 0 ]; then
7165                         set_dir_limits 0
7166                         error_exit "return code $rc received instead of expected $EFBIG"
7167                 fi
7168                 J=$((J+1))
7169                 I=$(stat -c%s "$DIR/$tdir")
7170         done
7171
7172         set_dir_limits 0
7173         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7174 }
7175 run_test 129 "test directory size limit ========================"
7176
7177 OLDIFS="$IFS"
7178 cleanup_130() {
7179         trap 0
7180         IFS="$OLDIFS"
7181 }
7182
7183 test_130a() {
7184         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7185         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7186                 return
7187
7188         trap cleanup_130 EXIT RETURN
7189
7190         local fm_file=$DIR/$tfile
7191         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7192         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7193                 error "dd failed for $fm_file"
7194
7195         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7196         filefrag -ves $fm_file
7197         RC=$?
7198         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7199                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7200         [ $RC != 0 ] && error "filefrag $fm_file failed"
7201
7202         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7203                       grep -v "ext:" | grep -v "found")
7204         lun=$($GETSTRIPE -i $fm_file)
7205
7206         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7207         IFS=$'\n'
7208         tot_len=0
7209         for line in $filefrag_op
7210         do
7211                 frag_lun=`echo $line | cut -d: -f5`
7212                 ext_len=`echo $line | cut -d: -f4`
7213                 if (( $frag_lun != $lun )); then
7214                         cleanup_130
7215                         error "FIEMAP on 1-stripe file($fm_file) failed"
7216                         return
7217                 fi
7218                 (( tot_len += ext_len ))
7219         done
7220
7221         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7222                 cleanup_130
7223                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7224                 return
7225         fi
7226
7227         cleanup_130
7228
7229         echo "FIEMAP on single striped file succeeded"
7230 }
7231 run_test 130a "FIEMAP (1-stripe file)"
7232
7233 test_130b() {
7234         [ "$OSTCOUNT" -lt "2" ] &&
7235                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7236
7237         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7238         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7239                 return
7240
7241         trap cleanup_130 EXIT RETURN
7242
7243         local fm_file=$DIR/$tfile
7244         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7245         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7246                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7247
7248         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7249                 error "dd failed on $fm_file"
7250
7251         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7252         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7253                       grep -v "ext:" | grep -v "found")
7254
7255         last_lun=$(echo $filefrag_op | cut -d: -f5)
7256
7257         IFS=$'\n'
7258         tot_len=0
7259         num_luns=1
7260         for line in $filefrag_op
7261         do
7262                 frag_lun=`echo $line | cut -d: -f5`
7263                 ext_len=`echo $line | cut -d: -f4`
7264                 if (( $frag_lun != $last_lun )); then
7265                         if (( tot_len != 1024 )); then
7266                                 cleanup_130
7267                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7268                                 return
7269                         else
7270                                 (( num_luns += 1 ))
7271                                 tot_len=0
7272                         fi
7273                 fi
7274                 (( tot_len += ext_len ))
7275                 last_lun=$frag_lun
7276         done
7277         if (( num_luns != 2 || tot_len != 1024 )); then
7278                 cleanup_130
7279                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7280                 return
7281         fi
7282
7283         cleanup_130
7284
7285         echo "FIEMAP on 2-stripe file succeeded"
7286 }
7287 run_test 130b "FIEMAP (2-stripe file)"
7288
7289 test_130c() {
7290         [ "$OSTCOUNT" -lt "2" ] &&
7291                 skip_env "skipping FIEMAP on 2-stripe file" && return
7292
7293         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7294         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7295                 return
7296
7297         trap cleanup_130 EXIT RETURN
7298
7299         local fm_file=$DIR/$tfile
7300         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7301         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7302                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7303
7304         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7305
7306         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7307         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7308
7309         last_lun=`echo $filefrag_op | cut -d: -f5`
7310
7311         IFS=$'\n'
7312         tot_len=0
7313         num_luns=1
7314         for line in $filefrag_op
7315         do
7316                 frag_lun=`echo $line | cut -d: -f5`
7317                 ext_len=`echo $line | cut -d: -f4`
7318                 if (( $frag_lun != $last_lun )); then
7319                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7320                         if (( logical != 512 )); then
7321                                 cleanup_130
7322                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7323                                 return
7324                         fi
7325                         if (( tot_len != 512 )); then
7326                                 cleanup_130
7327                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7328                                 return
7329                         else
7330                                 (( num_luns += 1 ))
7331                                 tot_len=0
7332                         fi
7333                 fi
7334                 (( tot_len += ext_len ))
7335                 last_lun=$frag_lun
7336         done
7337         if (( num_luns != 2 || tot_len != 512 )); then
7338                 cleanup_130
7339                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7340                 return
7341         fi
7342
7343         cleanup_130
7344
7345         echo "FIEMAP on 2-stripe file with hole succeeded"
7346 }
7347 run_test 130c "FIEMAP (2-stripe file with hole)"
7348
7349 test_130d() {
7350         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7351
7352         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7353         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7354
7355         trap cleanup_130 EXIT RETURN
7356
7357         local fm_file=$DIR/$tfile
7358         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7359         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7360                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7361         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7362
7363         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7364         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7365
7366         last_lun=`echo $filefrag_op | cut -d: -f5`
7367
7368         IFS=$'\n'
7369         tot_len=0
7370         num_luns=1
7371         for line in $filefrag_op
7372         do
7373                 frag_lun=`echo $line | cut -d: -f5`
7374                 ext_len=`echo $line | cut -d: -f4`
7375                 if (( $frag_lun != $last_lun )); then
7376                         if (( tot_len != 1024 )); then
7377                                 cleanup_130
7378                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7379                                 return
7380                         else
7381                                 (( num_luns += 1 ))
7382                                 tot_len=0
7383                         fi
7384                 fi
7385                 (( tot_len += ext_len ))
7386                 last_lun=$frag_lun
7387         done
7388         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7389                 cleanup_130
7390                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7391                 return
7392         fi
7393
7394         cleanup_130
7395
7396         echo "FIEMAP on N-stripe file succeeded"
7397 }
7398 run_test 130d "FIEMAP (N-stripe file)"
7399
7400 test_130e() {
7401         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7402
7403         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7404         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7405
7406         trap cleanup_130 EXIT RETURN
7407
7408         local fm_file=$DIR/$tfile
7409         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7410         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7411                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7412
7413         NUM_BLKS=512
7414         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7415         for ((i = 0; i < $NUM_BLKS; i++))
7416         do
7417                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7418         done
7419
7420         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7421         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7422
7423         last_lun=`echo $filefrag_op | cut -d: -f5`
7424
7425         IFS=$'\n'
7426         tot_len=0
7427         num_luns=1
7428         for line in $filefrag_op
7429         do
7430                 frag_lun=`echo $line | cut -d: -f5`
7431                 ext_len=`echo $line | cut -d: -f4`
7432                 if (( $frag_lun != $last_lun )); then
7433                         if (( tot_len != $EXPECTED_LEN )); then
7434                                 cleanup_130
7435                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
7436                                 return
7437                         else
7438                                 (( num_luns += 1 ))
7439                                 tot_len=0
7440                         fi
7441                 fi
7442                 (( tot_len += ext_len ))
7443                 last_lun=$frag_lun
7444         done
7445         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
7446                 cleanup_130
7447                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7448                 return
7449         fi
7450
7451         cleanup_130
7452
7453         echo "FIEMAP with continuation calls succeeded"
7454 }
7455 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
7456
7457 # Test for writev/readv
7458 test_131a() {
7459         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
7460         error "writev test failed"
7461         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
7462         error "readv failed"
7463         rm -f $DIR/$tfile
7464 }
7465 run_test 131a "test iov's crossing stripe boundary for writev/readv"
7466
7467 test_131b() {
7468         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
7469         error "append writev test failed"
7470         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
7471         error "append writev test failed"
7472         rm -f $DIR/$tfile
7473 }
7474 run_test 131b "test append writev"
7475
7476 test_131c() {
7477         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
7478         error "NOT PASS"
7479 }
7480 run_test 131c "test read/write on file w/o objects"
7481
7482 test_131d() {
7483         rwv -f $DIR/$tfile -w -n 1 1572864
7484         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
7485         if [ "$NOB" != 1572864 ]; then
7486                 error "Short read filed: read $NOB bytes instead of 1572864"
7487         fi
7488         rm -f $DIR/$tfile
7489 }
7490 run_test 131d "test short read"
7491
7492 test_131e() {
7493         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
7494         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
7495         error "read hitting hole failed"
7496         rm -f $DIR/$tfile
7497 }
7498 run_test 131e "test read hitting hole"
7499
7500 get_ost_param() {
7501         local token=$1
7502         local gl_sum=0
7503         for node in $(osts_nodes); do
7504                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
7505                 [ x$gl = x"" ] && gl=0
7506                 gl_sum=$((gl_sum + gl))
7507         done
7508         echo $gl
7509 }
7510
7511 som_mode_switch() {
7512         local som=$1
7513         local gl1=$2
7514         local gl2=$3
7515
7516         if [ x$som = x"enabled" ]; then
7517                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
7518                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
7519                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
7520         else
7521                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
7522                 MOUNTOPT="$MOUNTOPT,som_preview"
7523                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
7524         fi
7525
7526         # do remount to make new mount-conf parameters actual
7527         echo remounting...
7528         sync
7529         stopall
7530         setupall
7531 }
7532
7533 test_132() { #1028, SOM
7534         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7535         local num=$(get_mds_dir $DIR)
7536         local mymds=mds${num}
7537         local MOUNTOPT_SAVE=$MOUNTOPT
7538
7539         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7540         cancel_lru_locks osc
7541
7542         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7543
7544         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7545         stat $DIR/$tfile >/dev/null
7546         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7547         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
7548         rm $DIR/$tfile
7549         som_mode_switch $som1 $gl1 $gl2
7550
7551         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7552         cancel_lru_locks osc
7553
7554         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7555         if [ $som1 == $som2 ]; then
7556             error "som is still "$som2
7557             if [ x$som2 = x"enabled" ]; then
7558                 som2="disabled"
7559             else
7560                 som2="enabled"
7561             fi
7562         fi
7563
7564         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7565         stat $DIR/$tfile >/dev/null
7566         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7567         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
7568         som_mode_switch $som2 $gl1 $gl2
7569         MOUNTOPT=$MOUNTOPT_SAVE
7570 }
7571 run_test 132 "som avoids glimpse rpc"
7572
7573 check_stats() {
7574         local res
7575         local count
7576         case $1 in
7577         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
7578                  ;;
7579         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
7580                  ;;
7581         *) error "Wrong argument $1" ;;
7582         esac
7583         echo $res
7584         count=`echo $res | awk '{print $2}'`
7585         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
7586         # if the argument $3 is zero, it means any stat increment is ok.
7587         if [ $3 -gt 0 ] ; then
7588                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
7589         fi
7590 }
7591
7592 test_133a() {
7593         remote_ost_nodsh && skip "remote OST with nodsh" && return
7594         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7595
7596         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7597                 { skip "MDS doesn't support rename stats"; return; }
7598         local testdir=$DIR/${tdir}/stats_testdir
7599         mkdir -p $DIR/${tdir}
7600
7601         # clear stats.
7602         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7603         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7604
7605         # verify mdt stats first.
7606         mkdir ${testdir} || error "mkdir failed"
7607         check_stats $SINGLEMDS "mkdir" 1
7608         touch ${testdir}/${tfile} || "touch failed"
7609         check_stats $SINGLEMDS "open" 1
7610         check_stats $SINGLEMDS "close" 1
7611         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
7612         check_stats $SINGLEMDS "mknod" 1
7613         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
7614         check_stats $SINGLEMDS "unlink" 1
7615         rm -f ${testdir}/${tfile} || error "file remove failed"
7616         check_stats $SINGLEMDS "unlink" 2
7617
7618         # remove working dir and check mdt stats again.
7619         rmdir ${testdir} || error "rmdir failed"
7620         check_stats $SINGLEMDS "rmdir" 1
7621
7622         local testdir1=$DIR/${tdir}/stats_testdir1
7623         mkdir -p ${testdir}
7624         mkdir -p ${testdir1}
7625         touch ${testdir1}/test1
7626         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
7627         check_stats $SINGLEMDS "crossdir_rename" 1
7628
7629         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
7630         check_stats $SINGLEMDS "samedir_rename" 1
7631
7632         rm -rf $DIR/${tdir}
7633 }
7634 run_test 133a "Verifying MDT stats ========================================"
7635
7636 test_133b() {
7637         remote_ost_nodsh && skip "remote OST with nodsh" && return
7638         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7639         local testdir=$DIR/${tdir}/stats_testdir
7640         mkdir -p ${testdir} || error "mkdir failed"
7641         touch ${testdir}/${tfile} || "touch failed"
7642         cancel_lru_locks mdc
7643
7644         # clear stats.
7645         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7646         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7647
7648         # extra mdt stats verification.
7649         chmod 444 ${testdir}/${tfile} || error "chmod failed"
7650         check_stats $SINGLEMDS "setattr" 1
7651         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7652         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
7653         then            # LU-1740
7654                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
7655                 check_stats $SINGLEMDS "getattr" 1
7656         fi
7657         $LFS df || error "lfs failed"
7658         check_stats $SINGLEMDS "statfs" 1
7659
7660         rm -rf $DIR/${tdir}
7661 }
7662 run_test 133b "Verifying extra MDT stats =================================="
7663
7664 test_133c() {
7665         remote_ost_nodsh && skip "remote OST with nodsh" && return
7666         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7667         local testdir=$DIR/${tdir}/stats_testdir
7668         mkdir -p ${testdir} || error "mkdir failed"
7669
7670         # verify obdfilter stats.
7671         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
7672         sync
7673         cancel_lru_locks osc
7674         wait_delete_completed
7675
7676         # clear stats.
7677         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7678         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7679
7680         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
7681         sync
7682         cancel_lru_locks osc
7683         check_stats ost "write" 1
7684
7685         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
7686         check_stats ost "read" 1
7687
7688         > ${testdir}/${tfile} || error "truncate failed"
7689         check_stats ost "punch" 1
7690
7691         rm -f ${testdir}/${tfile} || error "file remove failed"
7692         wait_delete_completed
7693         check_stats ost "destroy" 1
7694
7695         rm -rf $DIR/${tdir}
7696 }
7697 run_test 133c "Verifying OST stats ========================================"
7698
7699 order_2() {
7700     local value=$1
7701     local orig=$value
7702     local order=1
7703
7704     while [ $value -ge 2 ]; do
7705         order=$((order*2))
7706         value=$((value/2))
7707     done
7708
7709     if [ $orig -gt $order ]; then
7710         order=$((order*2))
7711     fi
7712     echo $order
7713 }
7714
7715 size_in_KMGT() {
7716     local value=$1
7717     local size=('K' 'M' 'G' 'T');
7718     local i=0
7719     local size_string=$value
7720
7721     while [ $value -ge 1024 ]; do
7722         if [ $i -gt 3 ]; then
7723             #T is the biggest unit we get here, if that is bigger,
7724             #just return XXXT
7725             size_string=${value}T
7726             break
7727         fi
7728         value=$((value >> 10))
7729         if [ $value -lt 1024 ]; then
7730             size_string=${value}${size[$i]}
7731             break
7732         fi
7733         i=$((i + 1))
7734     done
7735
7736     echo $size_string
7737 }
7738
7739 get_rename_size() {
7740     local size=$1
7741     local context=${2:-.}
7742     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
7743                 grep -A1 $context |
7744                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
7745     echo $sample
7746 }
7747
7748 test_133d() {
7749     remote_ost_nodsh && skip "remote OST with nodsh" && return
7750     remote_mds_nodsh && skip "remote MDS with nodsh" && return
7751     do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7752         { skip "MDS doesn't support rename stats"; return; }
7753
7754     local testdir1=$DIR/${tdir}/stats_testdir1
7755     local testdir2=$DIR/${tdir}/stats_testdir2
7756
7757     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
7758
7759     mkdir -p ${testdir1} || error "mkdir failed"
7760     mkdir -p ${testdir2} || error "mkdir failed"
7761
7762     createmany -o $testdir1/test 512 || error "createmany failed"
7763
7764         # check samedir rename size
7765         mv ${testdir1}/test0 ${testdir1}/test_0
7766
7767         local testdir1_size=$(ls -l $DIR/${tdir} |
7768                 awk '/stats_testdir1/ {print $5}')
7769         local testdir2_size=$(ls -l $DIR/${tdir} |
7770                 awk '/stats_testdir2/ {print $5}')
7771
7772         testdir1_size=$(order_2 $testdir1_size)
7773         testdir2_size=$(order_2 $testdir2_size)
7774
7775         testdir1_size=$(size_in_KMGT $testdir1_size)
7776         testdir2_size=$(size_in_KMGT $testdir2_size)
7777
7778         echo "source rename dir size: ${testdir1_size}"
7779         echo "target rename dir size: ${testdir2_size}"
7780
7781     local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
7782     eval $cmd || error "$cmd failed"
7783     local samedir=$($cmd | grep 'same_dir')
7784     local same_sample=$(get_rename_size $testdir1_size)
7785     [ -z "$samedir" ] && error "samedir_rename_size count error"
7786     [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
7787     echo "Check same dir rename stats success"
7788
7789     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
7790
7791     # check crossdir rename size
7792     mv ${testdir1}/test_0 ${testdir2}/test_0
7793
7794         testdir1_size=$(ls -l $DIR/${tdir} |
7795                 awk '/stats_testdir1/ {print $5}')
7796         testdir2_size=$(ls -l $DIR/${tdir} |
7797                 awk '/stats_testdir2/ {print $5}')
7798
7799         testdir1_size=$(order_2 $testdir1_size)
7800         testdir2_size=$(order_2 $testdir2_size)
7801
7802         testdir1_size=$(size_in_KMGT $testdir1_size)
7803         testdir2_size=$(size_in_KMGT $testdir2_size)
7804
7805         echo "source rename dir size: ${testdir1_size}"
7806         echo "target rename dir size: ${testdir2_size}"
7807
7808     eval $cmd || error "$cmd failed"
7809     local crossdir=$($cmd | grep 'crossdir')
7810     local src_sample=$(get_rename_size $testdir1_size crossdir_src)
7811     local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
7812     [ -z "$crossdir" ] && error "crossdir_rename_size count error"
7813     [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
7814     [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
7815     echo "Check cross dir rename stats success"
7816     rm -rf $DIR/${tdir}
7817 }
7818 run_test 133d "Verifying rename_stats ========================================"
7819
7820 test_140() { #bug-17379
7821         mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
7822         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
7823         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
7824
7825         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
7826         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
7827         local i=0
7828         while i=`expr $i + 1`; do
7829                 mkdir -p $i || error "Creating dir $i"
7830                 cd $i || error "Changing to $i"
7831                 ln -s ../stat stat || error "Creating stat symlink"
7832                 # Read the symlink until ELOOP present,
7833                 # not LBUGing the system is considered success,
7834                 # we didn't overrun the stack.
7835                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
7836                 [ $ret -ne 0 ] && {
7837                         if [ $ret -eq 40 ]; then
7838                                 break  # -ELOOP
7839                         else
7840                                 error "Open stat symlink"
7841                                 return
7842                         fi
7843                 }
7844         done
7845         i=`expr $i - 1`
7846         echo "The symlink depth = $i"
7847         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
7848                                         error "Invalid symlink depth"
7849
7850         # Test recursive symlink
7851         ln -s symlink_self symlink_self
7852         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
7853         echo "open symlink_self returns $ret"
7854         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
7855 }
7856 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
7857
7858 test_150() {
7859         local TF="$TMP/$tfile"
7860
7861         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
7862         cp $TF $DIR/$tfile
7863         cancel_lru_locks osc
7864         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
7865         remount_client $MOUNT
7866         df -P $MOUNT
7867         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
7868
7869         $TRUNCATE $TF 6000
7870         $TRUNCATE $DIR/$tfile 6000
7871         cancel_lru_locks osc
7872         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
7873
7874         echo "12345" >>$TF
7875         echo "12345" >>$DIR/$tfile
7876         cancel_lru_locks osc
7877         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
7878
7879         echo "12345" >>$TF
7880         echo "12345" >>$DIR/$tfile
7881         cancel_lru_locks osc
7882         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
7883
7884         rm -f $TF
7885         true
7886 }
7887 run_test 150 "truncate/append tests"
7888
7889 function roc_hit() {
7890         local list=$(comma_list $(osts_nodes))
7891
7892         echo $(get_obdfilter_param $list '' stats |
7893                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
7894 }
7895
7896 function set_cache() {
7897         local on=1
7898
7899         if [ "$2" == "off" ]; then
7900                 on=0;
7901         fi
7902         local list=$(comma_list $(osts_nodes))
7903         set_obdfilter_param $list '' $1_cache_enable $on
7904
7905         cancel_lru_locks osc
7906 }
7907
7908 test_151() {
7909         remote_ost_nodsh && skip "remote OST with nodsh" && return
7910
7911         local CPAGES=3
7912         local list=$(comma_list $(osts_nodes))
7913
7914         # check whether obdfilter is cache capable at all
7915         if ! get_obdfilter_param $list '' read_cache_enable >/dev/null; then
7916                 echo "not cache-capable obdfilter"
7917                 return 0
7918         fi
7919
7920         # check cache is enabled on all obdfilters
7921         if get_obdfilter_param $list '' read_cache_enable | grep 0; then
7922                 echo "oss cache is disabled"
7923                 return 0
7924         fi
7925
7926         set_obdfilter_param $list '' writethrough_cache_enable 1
7927
7928         # pages should be in the case right after write
7929         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
7930         local BEFORE=`roc_hit`
7931         cancel_lru_locks osc
7932         cat $DIR/$tfile >/dev/null
7933         local AFTER=`roc_hit`
7934         if ! let "AFTER - BEFORE == CPAGES"; then
7935                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
7936         fi
7937
7938         # the following read invalidates the cache
7939         cancel_lru_locks osc
7940         set_obdfilter_param $list '' read_cache_enable 0
7941         cat $DIR/$tfile >/dev/null
7942
7943         # now data shouldn't be found in the cache
7944         BEFORE=`roc_hit`
7945         cancel_lru_locks osc
7946         cat $DIR/$tfile >/dev/null
7947         AFTER=`roc_hit`
7948         if let "AFTER - BEFORE != 0"; then
7949                 error "IN CACHE: before: $BEFORE, after: $AFTER"
7950         fi
7951
7952         set_obdfilter_param $list '' read_cache_enable 1
7953         rm -f $DIR/$tfile
7954 }
7955 run_test 151 "test cache on oss and controls ==============================="
7956
7957 test_152() {
7958         local TF="$TMP/$tfile"
7959
7960         # simulate ENOMEM during write
7961 #define OBD_FAIL_OST_NOMEM      0x226
7962         lctl set_param fail_loc=0x80000226
7963         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
7964         cp $TF $DIR/$tfile
7965         sync || error "sync failed"
7966         lctl set_param fail_loc=0
7967
7968         # discard client's cache
7969         cancel_lru_locks osc
7970
7971         # simulate ENOMEM during read
7972         lctl set_param fail_loc=0x80000226
7973         cmp $TF $DIR/$tfile || error "cmp failed"
7974         lctl set_param fail_loc=0
7975
7976         rm -f $TF
7977 }
7978 run_test 152 "test read/write with enomem ============================"
7979
7980 test_153() {
7981         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
7982 }
7983 run_test 153 "test if fdatasync does not crash ======================="
7984
7985 test_154() {
7986         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
7987                 { skip "Need MDS version at least 2.2.51"; return 0; }
7988
7989         cp /etc/hosts $DIR/$tfile
7990
7991         fid=$($LFS path2fid $DIR/$tfile)
7992         rc=$?
7993         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
7994
7995         ffid=$DIR/.lustre/fid/$fid
7996
7997         echo "stat fid $fid"
7998         stat $ffid > /dev/null || error "stat $ffid failed."
7999         echo "touch fid $fid"
8000         touch $ffid || error "touch $ffid failed."
8001         echo "write to fid $fid"
8002         cat /etc/hosts > $ffid || error "write $ffid failed."
8003         echo "read fid $fid"
8004         diff /etc/hosts $ffid || error "read $ffid failed."
8005         echo "append write to fid $fid"
8006         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8007         echo "rename fid $fid"
8008         mv $ffid $DIR/$tfile.1 && error "rename $ffid to $tfile.1 should fail."
8009         touch $DIR/$tfile.1
8010         mv $DIR/$tfile.1 $ffid && error "rename $tfile.1 to $ffid should fail."
8011         rm -f $DIR/$tfile.1
8012         echo "truncate fid $fid"
8013         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8014         echo "link fid $fid"
8015         ln -f $ffid $DIR/tfile.lnk || error "link $ffid failed."
8016         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8017                 echo "setfacl fid $fid"
8018                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8019                 echo "getfacl fid $fid"
8020                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8021         fi
8022         echo "unlink fid $fid"
8023         unlink $DIR/.lustre/fid/$fid && error "unlink $ffid should fail."
8024         echo "mknod fid $fid"
8025         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8026
8027         fid=[0xf00000400:0x1:0x0]
8028         ffid=$DIR/.lustre/fid/$fid
8029
8030         echo "stat non-exist fid $fid"
8031         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8032         echo "write to non-exist fid $fid"
8033         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8034         echo "link new fid $fid"
8035         ln $DIR/$tfile $ffid && error "link $ffid should fail."
8036
8037         mkdir -p $DIR/$tdir
8038         touch $DIR/$tdir/$tfile
8039         fid=$($LFS path2fid $DIR/$tdir)
8040         rc=$?
8041         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8042
8043         ffid=$DIR/.lustre/fid/$fid
8044
8045         echo "ls $fid"
8046         ls $ffid > /dev/null || error "ls $ffid failed."
8047         echo "touch $fid/$tfile.1"
8048         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8049
8050         echo "touch $DIR/.lustre/fid/$tfile"
8051         touch $DIR/.lustre/fid/$tfile && \
8052                 error "touch $DIR/.lustre/fid/$tfile should fail."
8053
8054         echo "setxattr to $DIR/.lustre/fid"
8055         setfattr -n trusted.name1 -v value1 $DIR/.lustre/fid &&
8056                 error "setxattr should fail."
8057
8058         echo "listxattr for $DIR/.lustre/fid"
8059         getfattr -d -m "^trusted" $DIR/.lustre/fid &&
8060                 error "listxattr should fail."
8061
8062         echo "delxattr from $DIR/.lustre/fid"
8063         setfattr -x trusted.name1 $DIR/.lustre/fid &&
8064                 error "delxattr should fail."
8065
8066         echo "touch invalid fid: $DIR/.lustre/fid/[0x200000400:0x2:0x3]"
8067         touch $DIR/.lustre/fid/[0x200000400:0x2:0x3] &&
8068                 error "touch invalid fid should fail."
8069
8070         echo "touch non-normal fid: $DIR/.lustre/fid/[0x1:0x2:0x0]"
8071         touch $DIR/.lustre/fid/[0x1:0x2:0x0] &&
8072                 error "touch non-normal fid should fail."
8073
8074         echo "rename $tdir to $DIR/.lustre/fid"
8075         mrename $DIR/$tdir $DIR/.lustre/fid &&
8076                 error "rename to $DIR/.lustre/fid should fail."
8077
8078         echo "rename .lustre to itself"
8079         fid=$($LFS path2fid $DIR)
8080         mrename $DIR/.lustre $DIR/.lustre/fid/$fid/.lustre &&
8081                 error "rename .lustre to itself should fail."
8082
8083         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $DIR/$tfile-2
8084         fid=$($LFS path2fid $DIR/$tfile-2)
8085         echo "cp /etc/passwd $DIR/.lustre/fid/$fid"
8086         cp /etc/passwd $DIR/.lustre/fid/$fid &&
8087                 error "create lov data thru .lustre should fail."
8088         echo "cp /etc/passwd $DIR/$tfile-2"
8089         cp /etc/passwd $DIR/$tfile-2 || error "copy to $DIR/$tfile-2 failed."
8090         echo "diff /etc/passwd $DIR/.lustre/fid/$fid"
8091         diff /etc/passwd $DIR/.lustre/fid/$fid ||
8092                 error "diff /etc/passwd $DIR/.lustre/fid/$fid failed."
8093
8094         echo "Open-by-FID succeeded"
8095 }
8096 run_test 154 "Open-by-FID"
8097
8098 test_155_small_load() {
8099     local temp=$TMP/$tfile
8100     local file=$DIR/$tfile
8101
8102     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8103         error "dd of=$temp bs=6096 count=1 failed"
8104     cp $temp $file
8105     cancel_lru_locks osc
8106     cmp $temp $file || error "$temp $file differ"
8107
8108     $TRUNCATE $temp 6000
8109     $TRUNCATE $file 6000
8110     cmp $temp $file || error "$temp $file differ (truncate1)"
8111
8112     echo "12345" >>$temp
8113     echo "12345" >>$file
8114     cmp $temp $file || error "$temp $file differ (append1)"
8115
8116     echo "12345" >>$temp
8117     echo "12345" >>$file
8118     cmp $temp $file || error "$temp $file differ (append2)"
8119
8120     rm -f $temp $file
8121     true
8122 }
8123
8124 test_155_big_load() {
8125     remote_ost_nodsh && skip "remote OST with nodsh" && return
8126     local temp=$TMP/$tfile
8127     local file=$DIR/$tfile
8128
8129     free_min_max
8130     local cache_size=$(do_facet ost$((MAXI+1)) \
8131         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8132     local large_file_size=$((cache_size * 2))
8133
8134     echo "OSS cache size: $cache_size KB"
8135     echo "Large file size: $large_file_size KB"
8136
8137     [ $MAXV -le $large_file_size ] && \
8138         skip_env "max available OST size needs > $large_file_size KB" && \
8139         return 0
8140
8141     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8142
8143     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8144         error "dd of=$temp bs=$large_file_size count=1k failed"
8145     cp $temp $file
8146     ls -lh $temp $file
8147     cancel_lru_locks osc
8148     cmp $temp $file || error "$temp $file differ"
8149
8150     rm -f $temp $file
8151     true
8152 }
8153
8154 test_155a() {
8155     set_cache read on
8156     set_cache writethrough on
8157     test_155_small_load
8158 }
8159 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8160
8161 test_155b() {
8162     set_cache read on
8163     set_cache writethrough off
8164     test_155_small_load
8165 }
8166 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8167
8168 test_155c() {
8169     set_cache read off
8170     set_cache writethrough on
8171     test_155_small_load
8172 }
8173 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8174
8175 test_155d() {
8176     set_cache read off
8177     set_cache writethrough off
8178     test_155_small_load
8179 }
8180 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8181
8182 test_155e() {
8183     set_cache read on
8184     set_cache writethrough on
8185     test_155_big_load
8186 }
8187 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8188
8189 test_155f() {
8190     set_cache read on
8191     set_cache writethrough off
8192     test_155_big_load
8193 }
8194 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8195
8196 test_155g() {
8197     set_cache read off
8198     set_cache writethrough on
8199     test_155_big_load
8200 }
8201 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8202
8203 test_155h() {
8204     set_cache read off
8205     set_cache writethrough off
8206     test_155_big_load
8207 }
8208 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8209
8210 test_156() {
8211     local CPAGES=3
8212     local BEFORE
8213     local AFTER
8214     local file="$DIR/$tfile"
8215
8216         [ "$(facet_fstype ost1)" = "zfs" ] &&
8217                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8218                 return
8219
8220     log "Turn on read and write cache"
8221     set_cache read on
8222     set_cache writethrough on
8223
8224     log "Write data and read it back."
8225     log "Read should be satisfied from the cache."
8226     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8227     BEFORE=`roc_hit`
8228     cancel_lru_locks osc
8229     cat $file >/dev/null
8230     AFTER=`roc_hit`
8231     if ! let "AFTER - BEFORE == CPAGES"; then
8232         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8233     else
8234         log "cache hits:: before: $BEFORE, after: $AFTER"
8235     fi
8236
8237     log "Read again; it should be satisfied from the cache."
8238     BEFORE=$AFTER
8239     cancel_lru_locks osc
8240     cat $file >/dev/null
8241     AFTER=`roc_hit`
8242     if ! let "AFTER - BEFORE == CPAGES"; then
8243         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8244     else
8245         log "cache hits:: before: $BEFORE, after: $AFTER"
8246     fi
8247
8248
8249     log "Turn off the read cache and turn on the write cache"
8250     set_cache read off
8251     set_cache writethrough on
8252
8253     log "Read again; it should be satisfied from the cache."
8254     BEFORE=`roc_hit`
8255     cancel_lru_locks osc
8256     cat $file >/dev/null
8257     AFTER=`roc_hit`
8258     if ! let "AFTER - BEFORE == CPAGES"; then
8259         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8260     else
8261         log "cache hits:: before: $BEFORE, after: $AFTER"
8262     fi
8263
8264     log "Read again; it should not be satisfied from the cache."
8265     BEFORE=$AFTER
8266     cancel_lru_locks osc
8267     cat $file >/dev/null
8268     AFTER=`roc_hit`
8269     if ! let "AFTER - BEFORE == 0"; then
8270         error "IN CACHE: before: $BEFORE, after: $AFTER"
8271     else
8272         log "cache hits:: before: $BEFORE, after: $AFTER"
8273     fi
8274
8275     log "Write data and read it back."
8276     log "Read should be satisfied from the cache."
8277     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8278     BEFORE=`roc_hit`
8279     cancel_lru_locks osc
8280     cat $file >/dev/null
8281     AFTER=`roc_hit`
8282     if ! let "AFTER - BEFORE == CPAGES"; then
8283         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8284     else
8285         log "cache hits:: before: $BEFORE, after: $AFTER"
8286     fi
8287
8288     log "Read again; it should not be satisfied from the cache."
8289     BEFORE=$AFTER
8290     cancel_lru_locks osc
8291     cat $file >/dev/null
8292     AFTER=`roc_hit`
8293     if ! let "AFTER - BEFORE == 0"; then
8294         error "IN CACHE: before: $BEFORE, after: $AFTER"
8295     else
8296         log "cache hits:: before: $BEFORE, after: $AFTER"
8297     fi
8298
8299
8300     log "Turn off read and write cache"
8301     set_cache read off
8302     set_cache writethrough off
8303
8304     log "Write data and read it back"
8305     log "It should not be satisfied from the cache."
8306     rm -f $file
8307     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8308     cancel_lru_locks osc
8309     BEFORE=`roc_hit`
8310     cat $file >/dev/null
8311     AFTER=`roc_hit`
8312     if ! let "AFTER - BEFORE == 0"; then
8313         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8314     else
8315         log "cache hits:: before: $BEFORE, after: $AFTER"
8316     fi
8317
8318
8319     log "Turn on the read cache and turn off the write cache"
8320     set_cache read on
8321     set_cache writethrough off
8322
8323     log "Write data and read it back"
8324     log "It should not be satisfied from the cache."
8325     rm -f $file
8326     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8327     BEFORE=`roc_hit`
8328     cancel_lru_locks osc
8329     cat $file >/dev/null
8330     AFTER=`roc_hit`
8331     if ! let "AFTER - BEFORE == 0"; then
8332         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8333     else
8334         log "cache hits:: before: $BEFORE, after: $AFTER"
8335     fi
8336
8337     log "Read again; it should be satisfied from the cache."
8338     BEFORE=`roc_hit`
8339     cancel_lru_locks osc
8340     cat $file >/dev/null
8341     AFTER=`roc_hit`
8342     if ! let "AFTER - BEFORE == CPAGES"; then
8343         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8344     else
8345         log "cache hits:: before: $BEFORE, after: $AFTER"
8346     fi
8347
8348     rm -f $file
8349 }
8350 run_test 156 "Verification of tunables ============================"
8351
8352 #Changelogs
8353 err17935 () {
8354     if [ $MDSCOUNT -gt 1 ]; then
8355         error_ignore 17935 $*
8356     else
8357         error $*
8358     fi
8359 }
8360
8361 changelog_chmask()
8362 {
8363     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
8364            grep -c $1)
8365
8366     if [ $MASK -eq 1 ]; then
8367         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
8368     else
8369         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
8370     fi
8371 }
8372
8373 test_160() {
8374     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8375     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
8376         { skip "Need MDS version at least 2.2.0"; return; }
8377     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
8378     echo "Registered as changelog user $USER"
8379     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8380         grep -q $USER || error "User $USER not found in changelog_users"
8381
8382     # change something
8383     mkdir -p $DIR/$tdir/pics/2008/zachy
8384     touch $DIR/$tdir/pics/2008/zachy/timestamp
8385     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
8386     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
8387     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
8388     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
8389     rm $DIR/$tdir/pics/desktop.jpg
8390
8391     $LFS changelog $MDT0 | tail -5
8392
8393     echo "verifying changelog mask"
8394     changelog_chmask "MKDIR"
8395     changelog_chmask "CLOSE"
8396
8397     mkdir -p $DIR/$tdir/pics/zach/sofia
8398     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8399
8400     changelog_chmask "MKDIR"
8401     changelog_chmask "CLOSE"
8402
8403     mkdir -p $DIR/$tdir/pics/2008/sofia
8404     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8405
8406     $LFS changelog $MDT0
8407     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
8408     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
8409     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
8410     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
8411
8412     # verify contents
8413     echo "verifying target fid"
8414     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8415         tail -1 | awk '{print $6}')
8416     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
8417     [ "$fidc" == "t=$fidf" ] || \
8418         err17935 "fid in changelog $fidc != file fid $fidf"
8419     echo "verifying parent fid"
8420     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8421         tail -1 | awk '{print $7}')
8422     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
8423     [ "$fidc" == "p=$fidf" ] || \
8424         err17935 "pfid in changelog $fidc != dir fid $fidf"
8425
8426     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8427         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8428     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
8429     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8430         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8431     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
8432     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
8433         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
8434
8435     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
8436         awk 'min == "" || $2 < min {min = $2}; END {print min}')
8437     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
8438     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
8439     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
8440         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
8441
8442     echo "verifying user deregister"
8443     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
8444     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8445         grep -q $USER && error "User $USER still found in changelog_users"
8446
8447     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
8448         mdd.$MDT0.changelog_users | wc -l) - 2 ))
8449     if [ $USERS -eq 0 ]; then
8450         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8451             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8452         touch $DIR/$tdir/chloe
8453         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8454             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8455         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
8456         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
8457     else
8458         echo "$USERS other changelog users; can't verify off"
8459     fi
8460 }
8461 run_test 160 "changelog sanity"
8462
8463 test_161() {
8464     mkdir -p $DIR/$tdir
8465     cp /etc/hosts $DIR/$tdir/$tfile
8466     mkdir $DIR/$tdir/foo1
8467     mkdir $DIR/$tdir/foo2
8468     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
8469     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
8470     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
8471     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
8472     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
8473     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
8474         $LFS fid2path $DIR $FID
8475         err17935 "bad link ea"
8476     fi
8477     # middle
8478     rm $DIR/$tdir/foo2/zachary
8479     # last
8480     rm $DIR/$tdir/foo2/thor
8481     # first
8482     rm $DIR/$tdir/$tfile
8483     # rename
8484     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
8485     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
8486         then
8487         $LFS fid2path $DIR $FID
8488         err17935 "bad link rename"
8489     fi
8490     rm $DIR/$tdir/foo2/maggie
8491
8492     # overflow the EA
8493     local longname=filename_avg_len_is_thirty_two_
8494     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
8495         error "failed to hardlink many files"
8496     links=$($LFS fid2path $DIR $FID | wc -l)
8497     echo -n "${links}/1000 links in link EA"
8498     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
8499     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
8500         error "failed to unlink many hardlinks"
8501 }
8502 run_test 161 "link ea sanity"
8503
8504 check_path() {
8505     local expected=$1
8506     shift
8507     local fid=$2
8508
8509     local path=$(${LFS} fid2path $*)
8510     RC=$?
8511
8512     if [ $RC -ne 0 ]; then
8513         err17935 "path looked up of $expected failed. Error $RC"
8514         return $RC
8515     elif [ "${path}" != "${expected}" ]; then
8516         err17935 "path looked up \"${path}\" instead of \"${expected}\""
8517         return 2
8518     fi
8519     echo "fid $fid resolves to path $path (expected $expected)"
8520 }
8521
8522 test_162() {
8523         # Make changes to filesystem
8524         mkdir -p $DIR/$tdir/d2
8525         touch $DIR/$tdir/d2/$tfile
8526         touch $DIR/$tdir/d2/x1
8527         touch $DIR/$tdir/d2/x2
8528         mkdir -p $DIR/$tdir/d2/a/b/c
8529         mkdir -p $DIR/$tdir/d2/p/q/r
8530         # regular file
8531         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
8532         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
8533
8534         # softlink
8535         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
8536         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
8537         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
8538
8539         # softlink to wrong file
8540         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
8541         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
8542         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
8543
8544         # hardlink
8545         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
8546         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
8547         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
8548         # fid2path dir/fsname should both work
8549         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
8550         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
8551
8552         # hardlink count: check that there are 2 links
8553         # Doesnt work with CMD yet: 17935
8554         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
8555                 err17935 "expected 2 links"
8556
8557         # hardlink indexing: remove the first link
8558         rm $DIR/$tdir/d2/p/q/r/hlink
8559         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
8560
8561         return 0
8562 }
8563 run_test 162 "path lookup sanity"
8564
8565 test_163() {
8566         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8567         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
8568         copytool $FSNAME &
8569         sleep 1
8570         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
8571         # this proc file is temporary and linux-only
8572         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
8573          error "kernel->userspace send failed"
8574         kill -INT $!
8575 }
8576 run_test 163 "kernel <-> userspace comms"
8577
8578 test_169() {
8579         # do directio so as not to populate the page cache
8580         log "creating a 10 Mb file"
8581         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
8582         log "starting reads"
8583         dd if=$DIR/$tfile of=/dev/null bs=4096 &
8584         log "truncating the file"
8585         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
8586         log "killing dd"
8587         kill %+ || true # reads might have finished
8588         echo "wait until dd is finished"
8589         wait
8590         log "removing the temporary file"
8591         rm -rf $DIR/$tfile || error "tmp file removal failed"
8592 }
8593 run_test 169 "parallel read and truncate should not deadlock"
8594
8595 test_170() {
8596         $LCTL clear     # bug 18514
8597         $LCTL debug_daemon start $TMP/${tfile}_log_good
8598         touch $DIR/$tfile
8599         $LCTL debug_daemon stop
8600         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
8601                error "sed failed to read log_good"
8602
8603         $LCTL debug_daemon start $TMP/${tfile}_log_good
8604         rm -rf $DIR/$tfile
8605         $LCTL debug_daemon stop
8606
8607         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
8608                error "lctl df log_bad failed"
8609
8610         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
8611         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
8612
8613         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
8614         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
8615
8616         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
8617                 error "bad_line good_line1 good_line2 are empty"
8618
8619         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
8620         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
8621         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
8622
8623         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
8624         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
8625         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
8626
8627         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
8628                 error "bad_line_new good_line_new are empty"
8629
8630         local expected_good=$((good_line1 + good_line2*2))
8631
8632         rm -f $TMP/${tfile}*
8633         # LU-231, short malformed line may not be counted into bad lines
8634         if [ $bad_line -ne $bad_line_new ] &&
8635                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
8636                 error "expected $bad_line bad lines, but got $bad_line_new"
8637                 return 1
8638         fi
8639
8640         if [ $expected_good -ne $good_line_new ]; then
8641                 error "expected $expected_good good lines, but got $good_line_new"
8642                 return 2
8643         fi
8644         true
8645 }
8646 run_test 170 "test lctl df to handle corrupted log ====================="
8647
8648 test_171() { # bug20592
8649 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
8650         $LCTL set_param fail_loc=0x50e
8651         $LCTL set_param fail_val=3000
8652         multiop_bg_pause $DIR/$tfile O_s || true
8653         local MULTIPID=$!
8654         kill -USR1 $MULTIPID
8655         # cause log dump
8656         sleep 3
8657         wait $MULTIPID
8658         if dmesg | grep "recursive fault"; then
8659                 error "caught a recursive fault"
8660         fi
8661         $LCTL set_param fail_loc=0
8662         true
8663 }
8664 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
8665
8666 # it would be good to share it with obdfilter-survey/libecho code
8667 setup_obdecho_osc () {
8668         local rc=0
8669         local ost_nid=$1
8670         local obdfilter_name=$2
8671         echo "Creating new osc for $obdfilter_name on $ost_nid"
8672         # make sure we can find loopback nid
8673         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
8674
8675         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
8676                            ${obdfilter_name}_osc_UUID || rc=2; }
8677         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
8678                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
8679         return $rc
8680 }
8681
8682 cleanup_obdecho_osc () {
8683         local obdfilter_name=$1
8684         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
8685         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
8686         return 0
8687 }
8688
8689 obdecho_create_test() {
8690         local OBD=$1
8691         local node=$2
8692         local rc=0
8693         local id
8694         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
8695         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
8696                            rc=2; }
8697         if [ $rc -eq 0 ]; then
8698             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
8699             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
8700         fi
8701         echo "New object id is $id"
8702         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
8703                            rc=4; }
8704         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
8705                                         "cleanup" || rc=5; }
8706         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
8707                                         "detach" || rc=6; }
8708         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
8709         return $rc
8710 }
8711
8712 test_180a() {
8713         remote_ost_nodsh && skip "remote OST with nodsh" && return
8714         local rc=0
8715         local rmmod_local=0
8716
8717         if ! module_loaded obdecho; then
8718             load_module obdecho/obdecho
8719             rmmod_local=1
8720         fi
8721
8722         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
8723         local host=$(lctl get_param -n osc.$osc.import |
8724                              awk '/current_connection:/ {print $2}' )
8725         local target=$(lctl get_param -n osc.$osc.import |
8726                              awk '/target:/ {print $2}' )
8727         target=${target%_UUID}
8728
8729         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
8730         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
8731         [[ -n $target ]] && cleanup_obdecho_osc $target
8732         [ $rmmod_local -eq 1 ] && rmmod obdecho
8733         return $rc
8734 }
8735 run_test 180a "test obdecho on osc"
8736
8737 test_180b() {
8738         remote_ost_nodsh && skip "remote OST with nodsh" && return
8739         local rc=0
8740         local rmmod_remote=0
8741
8742         do_facet ost1 "lsmod | grep -q obdecho || "                      \
8743                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
8744                       "modprobe obdecho; }" && rmmod_remote=1
8745         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
8746         [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
8747         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
8748         return $rc
8749 }
8750 run_test 180b "test obdecho directly on obdfilter"
8751
8752 test_181() { # bug 22177
8753         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
8754         # create enough files to index the directory
8755         createmany -o $DIR/$tdir/foobar 4000
8756         # print attributes for debug purpose
8757         lsattr -d .
8758         # open dir
8759         multiop_bg_pause $DIR/$tdir D_Sc || return 1
8760         MULTIPID=$!
8761         # remove the files & current working dir
8762         unlinkmany $DIR/$tdir/foobar 4000
8763         rmdir $DIR/$tdir
8764         kill -USR1 $MULTIPID
8765         wait $MULTIPID
8766         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
8767         return 0
8768 }
8769 run_test 181 "Test open-unlinked dir ========================"
8770
8771 test_182() {
8772         # disable MDC RPC lock wouldn't crash client
8773         local fcount=1000
8774         local tcount=4
8775
8776         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
8777 #define OBD_FAIL_MDC_RPCS_SEM           0x804
8778         $LCTL set_param fail_loc=0x804
8779
8780         for (( i=0; i < $tcount; i++ )) ; do
8781                 mkdir $DIR/$tdir/$i
8782                 createmany -o $DIR/$tdir/$i/f- $fcount &
8783         done
8784         wait
8785
8786         for (( i=0; i < $tcount; i++ )) ; do
8787                 unlinkmany $DIR/$tdir/$i/f- $fcount &
8788         done
8789         wait
8790
8791         rm -rf $DIR/$tdir
8792
8793         $LCTL set_param fail_loc=0
8794 }
8795 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
8796
8797 test_183() { # LU-2275
8798         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
8799         echo aaa > $DIR/$tdir/$tfile
8800
8801 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
8802         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
8803
8804         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
8805         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
8806
8807         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
8808
8809         # Flush negative dentry cache
8810         touch $DIR/$tdir/$tfile
8811
8812         # We are not checking for any leaked references here, they'll
8813         # become evident next time we do cleanup with module unload.
8814         rm -rf $DIR/$tdir
8815 }
8816 run_test 183 "No crash or request leak in case of strange dispositions ========"
8817
8818 # OST pools tests
8819 check_file_in_pool()
8820 {
8821         local file=$1
8822         local pool=$2
8823         local tlist="$3"
8824         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
8825         for i in $res
8826         do
8827                 for t in $tlist ; do
8828                         [ "$i" -eq "$t" ] && continue 2
8829                 done
8830
8831                 echo "pool list: $tlist"
8832                 echo "striping: $res"
8833                 error_noexit "$file not allocated in $pool"
8834                 return 1
8835         done
8836         return 0
8837 }
8838
8839 pool_add() {
8840         echo "Creating new pool"
8841         local pool=$1
8842
8843         create_pool $FSNAME.$pool ||
8844                 { error_noexit "No pool created, result code $?"; return 1; }
8845         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
8846                 { error_noexit "$pool not in lfs pool_list"; return 2; }
8847 }
8848
8849 pool_add_targets() {
8850         echo "Adding targets to pool"
8851         local pool=$1
8852         local first=$2
8853         local last=$3
8854         local step=${4:-1}
8855
8856         local list=$(seq $first $step $last)
8857
8858         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
8859         do_facet mgs $LCTL pool_add \
8860                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
8861         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
8862                         | sort -u | tr '\n' ' ' " "$t" || { 
8863                 error_noexit "Add to pool failed"
8864                 return 1
8865         }
8866         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
8867         local addcount=$(((last - first) / step + 1))
8868         [ $lfscount -eq $addcount ] || {
8869                 error_noexit "lfs pool_list bad ost count" \
8870                                                 "$lfscount != $addcount"
8871                 return 2
8872         }
8873 }
8874
8875 pool_set_dir() {
8876         local pool=$1
8877         local tdir=$2
8878         echo "Setting pool on directory $tdir"
8879
8880         $SETSTRIPE -c 2 -p $pool $tdir && return 0
8881
8882         error_noexit "Cannot set pool $pool to $tdir"
8883         return 1
8884 }
8885
8886 pool_check_dir() {
8887         local pool=$1
8888         local tdir=$2
8889         echo "Checking pool on directory $tdir"
8890
8891         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
8892         [ "$res" = "$pool" ] && return 0
8893
8894         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
8895         return 1
8896 }
8897
8898 pool_dir_rel_path() {
8899         echo "Testing relative path works well"
8900         local pool=$1
8901         local tdir=$2
8902         local root=$3
8903
8904         mkdir -p $root/$tdir/$tdir
8905         cd $root/$tdir
8906         pool_set_dir $pool $tdir          || return 1
8907         pool_set_dir $pool ./$tdir        || return 2
8908         pool_set_dir $pool ../$tdir       || return 3
8909         pool_set_dir $pool ../$tdir/$tdir || return 4
8910         rm -rf $tdir; cd - > /dev/null
8911 }
8912
8913 pool_alloc_files() {
8914         echo "Checking files allocation from directory pool"
8915         local pool=$1
8916         local tdir=$2
8917         local count=$3
8918         local tlist="$4"
8919
8920         local failed=0
8921         for i in $(seq -w 1 $count)
8922         do
8923                 local file=$tdir/file-$i
8924                 touch $file
8925                 check_file_in_pool $file $pool "$tlist" || \
8926                         failed=$((failed + 1))
8927         done
8928         [ "$failed" = 0 ] && return 0
8929
8930         error_noexit "$failed files not allocated in $pool"
8931         return 1
8932 }
8933
8934 pool_create_files() {
8935         echo "Creating files in pool"
8936         local pool=$1
8937         local tdir=$2
8938         local count=$3
8939         local tlist="$4"
8940
8941         mkdir -p $tdir
8942         local failed=0
8943         for i in $(seq -w 1 $count)
8944         do
8945                 local file=$tdir/spoo-$i
8946                 $SETSTRIPE -p $pool $file
8947                 check_file_in_pool $file $pool "$tlist" || \
8948                         failed=$((failed + 1))
8949         done
8950         [ "$failed" = 0 ] && return 0
8951
8952         error_noexit "$failed files not allocated in $pool"
8953         return 1
8954 }
8955
8956 pool_lfs_df() {
8957         echo "Checking 'lfs df' output"
8958         local pool=$1
8959
8960         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
8961                         tr '\n' ' ')
8962         local res=$($LFS df --pool $FSNAME.$pool |
8963                         awk '{print $1}' |
8964                         grep "$FSNAME-OST" |
8965                         tr '\n' ' ')
8966         [ "$res" = "$t" ] && return 0
8967
8968         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
8969         return 1
8970 }
8971
8972 pool_file_rel_path() {
8973         echo "Creating files in a pool with relative pathname"
8974         local pool=$1
8975         local tdir=$2
8976
8977         mkdir -p $tdir ||
8978                 { error_noexit "unable to create $tdir"; return 1 ; }
8979         local file="/..$tdir/$tfile-1"
8980         $SETSTRIPE -p $pool $file ||
8981                 { error_noexit "unable to create $file" ; return 2 ; }
8982
8983         cd $tdir
8984         $SETSTRIPE -p $pool $tfile-2 || {
8985                 error_noexit "unable to create $tfile-2 in $tdir"
8986                 return 3
8987         }
8988 }
8989
8990 pool_remove_first_target() {
8991         echo "Removing first target from a pool"
8992         local pool=$1
8993
8994         local pname="lov.$FSNAME-*.pools.$pool"
8995         local t=$($LCTL get_param -n $pname | head -1)
8996         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
8997         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
8998                 error_noexit "$t not removed from $FSNAME.$pool"
8999                 return 1
9000         }
9001 }
9002
9003 pool_remove_all_targets() {
9004         echo "Removing all targets from pool"
9005         local pool=$1
9006         local file=$2
9007         local pname="lov.$FSNAME-*.pools.$pool"
9008         for t in $($LCTL get_param -n $pname | sort -u)
9009         do
9010                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9011         done
9012         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9013                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9014                 return 1
9015         }
9016         # striping on an empty/nonexistant pool should fall back 
9017         # to "pool of everything"
9018         touch $file || {
9019                 error_noexit "failed to use fallback striping for empty pool"
9020                 return 2
9021         }
9022         # setstripe on an empty pool should fail
9023         $SETSTRIPE -p $pool $file 2>/dev/null && {
9024                 error_noexit "expected failure when creating file" \
9025                                                         "with empty pool"
9026                 return 3
9027         }
9028         return 0
9029 }
9030
9031 pool_remove() {
9032         echo "Destroying pool"
9033         local pool=$1
9034         local file=$2
9035
9036         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9037
9038         sleep 2
9039         # striping on an empty/nonexistant pool should fall back 
9040         # to "pool of everything"
9041         touch $file || {
9042                 error_noexit "failed to use fallback striping for missing pool"
9043                 return 1
9044         }
9045         # setstripe on an empty pool should fail
9046         $SETSTRIPE -p $pool $file 2>/dev/null && {
9047                 error_noexit "expected failure when creating file" \
9048                                                         "with missing pool"
9049                 return 2
9050         }
9051
9052         # get param should return err once pool is gone
9053         if wait_update $HOSTNAME "lctl get_param -n \
9054                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9055         then
9056                 remove_pool_from_list $FSNAME.$pool
9057                 return 0
9058         fi
9059         error_noexit "Pool $FSNAME.$pool is not destroyed"
9060         return 3
9061 }
9062
9063 test_200() {
9064         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
9065
9066         local POOL=${POOL:-cea1}
9067         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
9068         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
9069         # Pool OST targets
9070         local first_ost=0
9071         local last_ost=$(($OSTCOUNT - 1))
9072         local ost_step=2
9073         local ost_list=$(seq $first_ost $ost_step $last_ost)
9074         local ost_range="$first_ost $last_ost $ost_step"
9075         local test_path=$POOL_ROOT/$POOL_DIR_NAME
9076         local file_dir=$POOL_ROOT/file_tst
9077
9078         local rc=0
9079         while : ; do
9080                 # former test_200a test_200b
9081                 pool_add $POOL                          || { rc=$? ; break; }
9082                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
9083                 # former test_200c test_200d
9084                 mkdir -p $test_path
9085                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
9086                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
9087                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
9088                                                         || { rc=$? ; break; }
9089                 # former test_200e test_200f
9090                 local files=$((OSTCOUNT*3))
9091                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
9092                                                         || { rc=$? ; break; }
9093                 pool_create_files $POOL $file_dir $files "$ost_list" \
9094                                                         || { rc=$? ; break; }
9095                 # former test_200g test_200h
9096                 pool_lfs_df $POOL                       || { rc=$? ; break; }
9097                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
9098
9099                 # former test_201a test_201b test_201c
9100                 pool_remove_first_target $POOL          || { rc=$? ; break; }
9101
9102                 local f=$test_path/$tfile
9103                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
9104                 pool_remove $POOL $f                    || { rc=$? ; break; }
9105                 break
9106         done
9107
9108         cleanup_pools
9109         return $rc
9110 }
9111 run_test 200 "OST pools"
9112
9113 # usage: default_attr <count | size | offset>
9114 default_attr() {
9115         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
9116 }
9117
9118 # usage: check_default_stripe_attr
9119 check_default_stripe_attr() {
9120         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
9121         case $1 in
9122         --stripe-count|--count)
9123                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
9124         --stripe-size|--size)
9125                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
9126         --stripe-index|--index)
9127                 EXPECTED=-1;;
9128         *)
9129                 error "unknown getstripe attr '$1'"
9130         esac
9131
9132         [ $ACTUAL != $EXPECTED ] &&
9133                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
9134 }
9135
9136 test_204a() {
9137         mkdir -p $DIR/$tdir
9138         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
9139
9140         check_default_stripe_attr --stripe-count
9141         check_default_stripe_attr --stripe-size
9142         check_default_stripe_attr --stripe-index
9143
9144         return 0
9145 }
9146 run_test 204a "Print default stripe attributes ================="
9147
9148 test_204b() {
9149         mkdir -p $DIR/$tdir
9150         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9151
9152         check_default_stripe_attr --stripe-size
9153         check_default_stripe_attr --stripe-index
9154
9155         return 0
9156 }
9157 run_test 204b "Print default stripe size and offset  ==========="
9158
9159 test_204c() {
9160         mkdir -p $DIR/$tdir
9161         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9162
9163         check_default_stripe_attr --stripe-count
9164         check_default_stripe_attr --stripe-index
9165
9166         return 0
9167 }
9168 run_test 204c "Print default stripe count and offset ==========="
9169
9170 test_204d() {
9171         mkdir -p $DIR/$tdir
9172         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9173
9174         check_default_stripe_attr --stripe-count
9175         check_default_stripe_attr --stripe-size
9176
9177         return 0
9178 }
9179 run_test 204d "Print default stripe count and size ============="
9180
9181 test_204e() {
9182         mkdir -p $DIR/$tdir
9183         $SETSTRIPE -d $DIR/$tdir
9184
9185         check_default_stripe_attr --stripe-count --raw
9186         check_default_stripe_attr --stripe-size --raw
9187         check_default_stripe_attr --stripe-index --raw
9188
9189         return 0
9190 }
9191 run_test 204e "Print raw stripe attributes ================="
9192
9193 test_204f() {
9194         mkdir -p $DIR/$tdir
9195         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9196
9197         check_default_stripe_attr --stripe-size --raw
9198         check_default_stripe_attr --stripe-index --raw
9199
9200         return 0
9201 }
9202 run_test 204f "Print raw stripe size and offset  ==========="
9203
9204 test_204g() {
9205         mkdir -p $DIR/$tdir
9206         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9207
9208         check_default_stripe_attr --stripe-count --raw
9209         check_default_stripe_attr --stripe-index --raw
9210
9211         return 0
9212 }
9213 run_test 204g "Print raw stripe count and offset ==========="
9214
9215 test_204h() {
9216         mkdir -p $DIR/$tdir
9217         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9218
9219         check_default_stripe_attr --stripe-count --raw
9220         check_default_stripe_attr --stripe-size --raw
9221
9222         return 0
9223 }
9224 run_test 204h "Print raw stripe count and size ============="
9225
9226 # Figure out which job scheduler is being used, if any,
9227 # or use a fake one
9228 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
9229         JOBENV=SLURM_JOB_ID
9230 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
9231         JOBENV=LSB_JOBID
9232 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
9233         JOBENV=PBS_JOBID
9234 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
9235         JOBENV=LOADL_STEP_ID
9236 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
9237         JOBENV=JOB_ID
9238 else
9239         JOBENV=FAKE_JOBID
9240 fi
9241
9242 verify_jobstats() {
9243         local cmd=$1
9244         local target=$2
9245
9246         # clear old jobstats
9247         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
9248         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
9249
9250         # use a new JobID for this test, or we might see an old one
9251         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
9252
9253         JOBVAL=${!JOBENV}
9254         log "Test: $cmd"
9255         log "Using JobID environment variable $JOBENV=$JOBVAL"
9256
9257         if [ $JOBENV = "FAKE_JOBID" ]; then
9258                 FAKE_JOBID=$JOBVAL $cmd
9259         else
9260                 $cmd
9261         fi
9262
9263         if [ "$target" = "mdt" -o "$target" = "both" ]; then
9264                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
9265                 do_facet $FACET lctl get_param mdt.*.job_stats |
9266                         grep $JOBVAL || error "No job stats found on MDT $FACET"
9267         fi
9268         if [ "$target" = "ost" -o "$target" = "both" ]; then
9269                 FACET=ost1
9270                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
9271                         grep $JOBVAL || error "No job stats found on OST $FACET"
9272         fi
9273 }
9274
9275 test_205() { # Job stats
9276         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
9277                 skip "Server doesn't support jobstats" && return 0
9278
9279         local cmd
9280         OLD_JOBENV=`$LCTL get_param -n jobid_var`
9281         if [ $OLD_JOBENV != $JOBENV ]; then
9282                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$JOBENV
9283                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9284                         $JOBENV || return 1
9285         fi
9286
9287         # mkdir
9288         cmd="mkdir $DIR/$tfile"
9289         verify_jobstats "$cmd" "mdt"
9290         # rmdir
9291         cmd="rm -fr $DIR/$tfile"
9292         verify_jobstats "$cmd" "mdt"
9293         # mknod
9294         cmd="mknod $DIR/$tfile c 1 3"
9295         verify_jobstats "$cmd" "mdt"
9296         # unlink
9297         cmd="rm -f $DIR/$tfile"
9298         verify_jobstats "$cmd" "mdt"
9299         # open & close
9300         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
9301         verify_jobstats "$cmd" "mdt"
9302         # setattr
9303         cmd="touch $DIR/$tfile"
9304         verify_jobstats "$cmd" "both"
9305         # write
9306         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
9307         verify_jobstats "$cmd" "ost"
9308         # read
9309         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
9310         verify_jobstats "$cmd" "ost"
9311         # truncate
9312         cmd="$TRUNCATE $DIR/$tfile 0"
9313         verify_jobstats "$cmd" "both"
9314         # rename
9315         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
9316         verify_jobstats "$cmd" "mdt"
9317
9318         # cleanup
9319         rm -f $DIR/jobstats_test_rename
9320
9321         if [ $OLD_JOBENV != $JOBENV ]; then
9322                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$OLD_JOBENV
9323                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9324                         $OLD_JOBENV || return 1
9325         fi
9326 }
9327 run_test 205 "Verify job stats"
9328
9329 # LU-1480, LU-1773 and LU-1657
9330 test_206() {
9331         mkdir -p $DIR/$tdir
9332         lfs setstripe -c -1 $DIR/$tdir
9333 #define OBD_FAIL_LOV_INIT 0x1403
9334         $LCTL set_param fail_loc=0xa0001403
9335         $LCTL set_param fail_val=1
9336         touch $DIR/$tdir/$tfile || true
9337 }
9338 run_test 206 "fail lov_init_raid0() doesn't lbug"
9339
9340 test_212() {
9341         size=`date +%s`
9342         size=$((size % 8192 + 1))
9343         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
9344         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
9345         rm -f $DIR/f212 $DIR/f212.xyz
9346 }
9347 run_test 212 "Sendfile test ============================================"
9348
9349 test_213() {
9350         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
9351         cancel_lru_locks osc
9352         lctl set_param fail_loc=0x8000040f
9353         # generate a read lock
9354         cat $DIR/$tfile > /dev/null
9355         # write to the file, it will try to cancel the above read lock.
9356         cat /etc/hosts >> $DIR/$tfile
9357 }
9358 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
9359
9360 test_214() { # for bug 20133
9361         mkdir -p $DIR/d214p/d214c
9362         for (( i=0; i < 340; i++ )) ; do
9363                 touch $DIR/d214p/d214c/a$i
9364         done
9365
9366         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
9367         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
9368         ls $DIR/d214c || error "ls $DIR/d214c failed"
9369         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
9370 }
9371 run_test 214 "hash-indexed directory test - bug 20133"
9372
9373 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
9374 create_lnet_proc_files() {
9375         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
9376         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
9377
9378         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
9379         rm -f "$TMP/lnet_$1.sys_tmp"
9380 }
9381
9382 # counterpart of create_lnet_proc_files
9383 remove_lnet_proc_files() {
9384         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
9385 }
9386
9387 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9388 # 3rd arg as regexp for body
9389 check_lnet_proc_stats() {
9390         local l=$(cat "$TMP/lnet_$1" |wc -l)
9391         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
9392
9393         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
9394 }
9395
9396 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9397 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
9398 # optional and can be regexp for 2nd line (lnet.routes case)
9399 check_lnet_proc_entry() {
9400         local blp=2            # blp stands for 'position of 1st line of body'
9401         [ "$5" = "" ] || blp=3 # lnet.routes case
9402
9403         local l=$(cat "$TMP/lnet_$1" |wc -l)
9404         # subtracting one from $blp because the body can be empty
9405         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
9406
9407         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
9408                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
9409
9410         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
9411                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
9412
9413         # bail out if any unexpected line happened
9414         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
9415         [ "$?" != 0 ] || error "$2 misformatted"
9416 }
9417
9418 test_215() { # for bugs 18102, 21079, 21517
9419         local N='(0|[1-9][0-9]*)'       # non-negative numeric
9420         local P='[1-9][0-9]*'           # positive numeric
9421         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
9422         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
9423         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
9424         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
9425
9426         local L1 # regexp for 1st line
9427         local L2 # regexp for 2nd line (optional)
9428         local BR # regexp for the rest (body)
9429
9430         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
9431         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
9432         create_lnet_proc_files "stats"
9433         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
9434         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
9435         remove_lnet_proc_files "stats"
9436
9437         # /proc/sys/lnet/routes should look like this:
9438         # Routing disabled/enabled
9439         # net hops state router
9440         # where net is a string like tcp0, hops >= 0, state is up/down,
9441         # router is a string like 192.168.1.1@tcp2
9442         L1="^Routing (disabled|enabled)$"
9443         L2="^net +hops +state +router$"
9444         BR="^$NET +$N +(up|down) +$NID$"
9445         create_lnet_proc_files "routes"
9446         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
9447         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
9448         remove_lnet_proc_files "routes"
9449
9450         # /proc/sys/lnet/routers should look like this:
9451         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
9452         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
9453         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
9454         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
9455         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
9456         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
9457         create_lnet_proc_files "routers"
9458         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
9459         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
9460         remove_lnet_proc_files "routers"
9461
9462         # /proc/sys/lnet/peers should look like this:
9463         # nid refs state last max rtr min tx min queue
9464         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
9465         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
9466         # numeric (0 or >0 or <0), queue >= 0.
9467         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
9468         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
9469         create_lnet_proc_files "peers"
9470         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
9471         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
9472         remove_lnet_proc_files "peers"
9473
9474         # /proc/sys/lnet/buffers  should look like this:
9475         # pages count credits min
9476         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
9477         L1="^pages +count +credits +min$"
9478         BR="^ +$N +$N +$I +$I$"
9479         create_lnet_proc_files "buffers"
9480         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
9481         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
9482         remove_lnet_proc_files "buffers"
9483
9484         # /proc/sys/lnet/nis should look like this:
9485         # nid status alive refs peer rtr max tx min
9486         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
9487         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
9488         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
9489         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
9490         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
9491         create_lnet_proc_files "nis"
9492         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
9493         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
9494         remove_lnet_proc_files "nis"
9495
9496         # can we successfully write to /proc/sys/lnet/stats?
9497         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
9498         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
9499 }
9500 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
9501
9502 test_216() { # bug 20317
9503         remote_ost_nodsh && skip "remote OST with nodsh" && return
9504         local node
9505         local p="$TMP/sanityN-$TESTNAME.parameters"
9506         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
9507         for node in $(osts_nodes); do
9508                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
9509                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
9510                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
9511         done
9512         clear_osc_stats
9513
9514         # agressive lockless i/o settings
9515         for node in $(osts_nodes); do
9516                 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'
9517         done
9518         lctl set_param -n osc.*.contention_seconds 60
9519
9520         $DIRECTIO write $DIR/$tfile 0 10 4096
9521         $CHECKSTAT -s 40960 $DIR/$tfile
9522
9523         # disable lockless i/o
9524         for node in $(osts_nodes); do
9525                 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'
9526         done
9527         lctl set_param -n osc.*.contention_seconds 0
9528         clear_osc_stats
9529
9530         dd if=/dev/zero of=$DIR/$tfile count=0
9531         $CHECKSTAT -s 0 $DIR/$tfile
9532
9533         restore_lustre_params <$p
9534         rm -f $p
9535         rm $DIR/$tfile
9536 }
9537 run_test 216 "check lockless direct write works and updates file size and kms correctly"
9538
9539 test_217() { # bug 22430
9540         local node
9541         local nid
9542
9543         for node in $(nodes_list); do
9544                 nid=$(host_nids_address $node $NETTYPE)
9545                 if [[ $nid = *-* ]] ; then
9546                         echo "lctl ping $nid@$NETTYPE"
9547                         lctl ping $nid@$NETTYPE
9548                 else
9549                         echo "skipping $node (no hyphen detected)"
9550                 fi
9551         done
9552 }
9553 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
9554
9555 test_218() {
9556        # do directio so as not to populate the page cache
9557        log "creating a 10 Mb file"
9558        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9559        log "starting reads"
9560        dd if=$DIR/$tfile of=/dev/null bs=4096 &
9561        log "truncating the file"
9562        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9563        log "killing dd"
9564        kill %+ || true # reads might have finished
9565        echo "wait until dd is finished"
9566        wait
9567        log "removing the temporary file"
9568        rm -rf $DIR/$tfile || error "tmp file removal failed"
9569 }
9570 run_test 218 "parallel read and truncate should not deadlock ======================="
9571
9572 test_219() {
9573         # write one partial page
9574         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
9575         # set no grant so vvp_io_commit_write will do sync write
9576         $LCTL set_param fail_loc=0x411
9577         # write a full page at the end of file
9578         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
9579
9580         $LCTL set_param fail_loc=0
9581         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
9582         $LCTL set_param fail_loc=0x411
9583         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
9584 }
9585 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
9586
9587 test_220() { #LU-325
9588         remote_ost_nodsh && skip "remote OST with nodsh" && return
9589         local OSTIDX=0
9590
9591         mkdir -p $DIR/$tdir
9592         local OST=$(lfs osts | grep ${OSTIDX}": " | \
9593                 awk '{print $2}' | sed -e 's/_UUID$//')
9594
9595         # on the mdt's osc
9596         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
9597         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
9598                         osc.$mdtosc_proc1.prealloc_last_id)
9599         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
9600                         osc.$mdtosc_proc1.prealloc_next_id)
9601
9602         $LFS df -i
9603
9604         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
9605         #define OBD_FAIL_OST_ENOINO              0x229
9606         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
9607         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
9608         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
9609
9610         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
9611
9612         MDSOBJS=$((last_id - next_id))
9613         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
9614
9615         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
9616         echo "OST still has $count kbytes free"
9617
9618         echo "create $MDSOBJS files @next_id..."
9619         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
9620
9621         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
9622                         osc.$mdtosc_proc1.prealloc_last_id)
9623         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
9624                         osc.$mdtosc_proc1.prealloc_next_id)
9625
9626         echo "after creation, last_id=$last_id2, next_id=$next_id2"
9627         $LFS df -i
9628
9629         echo "cleanup..."
9630
9631         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
9632         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
9633
9634         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
9635         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
9636         echo "unlink $MDSOBJS files @$next_id..."
9637         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
9638 }
9639 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
9640
9641 test_221() {
9642         dd if=`which date` of=$MOUNT/date oflag=sync
9643         chmod +x $MOUNT/date
9644
9645         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
9646         $LCTL set_param fail_loc=0x80001401
9647
9648         $MOUNT/date > /dev/null
9649         rm -f $MOUNT/date
9650 }
9651 run_test 221 "make sure fault and truncate race to not cause OOM"
9652
9653 test_222a () {
9654        rm -rf $DIR/$tdir
9655        mkdir -p $DIR/$tdir
9656        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9657        createmany -o $DIR/$tdir/$tfile 10
9658        cancel_lru_locks mdc
9659        cancel_lru_locks osc
9660        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
9661        $LCTL set_param fail_loc=0x31a
9662        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
9663        $LCTL set_param fail_loc=0
9664        rm -r $DIR/$tdir
9665 }
9666 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
9667
9668 test_222b () {
9669        rm -rf $DIR/$tdir
9670        mkdir -p $DIR/$tdir
9671        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9672        createmany -o $DIR/$tdir/$tfile 10
9673        cancel_lru_locks mdc
9674        cancel_lru_locks osc
9675        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
9676        $LCTL set_param fail_loc=0x31a
9677        rm -r $DIR/$tdir || "AGL for rmdir failed"
9678        $LCTL set_param fail_loc=0
9679 }
9680 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
9681
9682 test_223 () {
9683        rm -rf $DIR/$tdir
9684        mkdir -p $DIR/$tdir
9685        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
9686        createmany -o $DIR/$tdir/$tfile 10
9687        cancel_lru_locks mdc
9688        cancel_lru_locks osc
9689        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
9690        $LCTL set_param fail_loc=0x31b
9691        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
9692        $LCTL set_param fail_loc=0
9693        rm -r $DIR/$tdir
9694 }
9695 run_test 223 "osc reenqueue if without AGL lock granted ======================="
9696
9697 test_224a() { # LU-1039, MRP-303
9698         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
9699         $LCTL set_param fail_loc=0x508
9700         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
9701         $LCTL set_param fail_loc=0
9702         df $DIR
9703 }
9704 run_test 224a "Don't panic on bulk IO failure"
9705
9706 test_224b() { # LU-1039, MRP-303
9707         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
9708         cancel_lru_locks osc
9709         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
9710         $LCTL set_param fail_loc=0x515
9711         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
9712         $LCTL set_param fail_loc=0
9713         df $DIR
9714 }
9715 run_test 224b "Don't panic on bulk IO failure"
9716
9717 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
9718 test_225a () {
9719        if [ -z ${MDSSURVEY} ]; then
9720               skip_env "mds-survey not found" && return
9721        fi
9722        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
9723             { skip "Need MDS version at least 2.2.51"; return; }
9724
9725        local mds=$(facet_host $SINGLEMDS)
9726        local target=$(do_nodes $mds 'lctl dl' | \
9727                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
9728
9729        local cmd1="file_count=1000 thrhi=4"
9730        local cmd2="dir_count=2 layer=mdd stripe_count=0"
9731        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
9732        local cmd="$cmd1 $cmd2 $cmd3"
9733
9734        rm -f ${TMP}/mds_survey*
9735        echo + $cmd
9736        eval $cmd || error "mds-survey with zero-stripe failed"
9737        cat ${TMP}/mds_survey*
9738        rm -f ${TMP}/mds_survey*
9739 }
9740 run_test 225a "Metadata survey sanity with zero-stripe"
9741
9742 test_225b () {
9743        if [ -z ${MDSSURVEY} ]; then
9744               skip_env "mds-survey not found" && return
9745        fi
9746        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
9747             { skip "Need MDS version at least 2.2.51"; return; }
9748
9749        if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
9750               skip_env "Need to mount OST to test" && return
9751        fi
9752
9753        local mds=$(facet_host $SINGLEMDS)
9754        local target=$(do_nodes $mds 'lctl dl' | \
9755                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
9756
9757        local cmd1="file_count=1000 thrhi=4"
9758        local cmd2="dir_count=2 layer=mdd stripe_count=1"
9759        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
9760        local cmd="$cmd1 $cmd2 $cmd3"
9761
9762        rm -f ${TMP}/mds_survey*
9763        echo + $cmd
9764        eval $cmd || error "mds-survey with stripe_count failed"
9765        cat ${TMP}/mds_survey*
9766        rm -f ${TMP}/mds_survey*
9767 }
9768 run_test 225b "Metadata survey sanity with stripe_count = 1"
9769
9770 mcreate_path2fid () {
9771         local mode=$1
9772         local major=$2
9773         local minor=$3
9774         local name=$4
9775         local desc=$5
9776         local path=$DIR/$tdir/$name
9777         local fid
9778         local rc
9779         local fid_path
9780
9781         $MCREATE --mode=$1 --major=$2 --minor=$3 $path || \
9782                 error "error: cannot create $desc"
9783
9784         fid=$($LFS path2fid $path)
9785         rc=$?
9786         [ $rc -ne 0 ] && error "error: cannot get fid of a $desc"
9787
9788         fid_path=$($LFS fid2path $DIR $fid)
9789         rc=$?
9790         [ $rc -ne 0 ] && error "error: cannot get path of a $desc by fid"
9791
9792         [ "$path" == "$fid_path" ] || \
9793                 error "error: fid2path returned \`$fid_path', expected \`$path'"
9794 }
9795
9796 test_226 () {
9797         rm -rf $DIR/$tdir
9798         mkdir -p $DIR/$tdir
9799
9800         mcreate_path2fid 0010666 0 0 fifo "FIFO"
9801         mcreate_path2fid 0020666 1 3 null "character special file (null)"
9802         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
9803         mcreate_path2fid 0040666 0 0 dir "directory"
9804         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
9805         mcreate_path2fid 0100666 0 0 file "regular file"
9806         mcreate_path2fid 0120666 0 0 link "symbolic link"
9807         mcreate_path2fid 0140666 0 0 sock "socket"
9808 }
9809 run_test 226 "call path2fid and fid2path on files of all type"
9810
9811 # LU-1299 Executing or running ldd on a truncated executable does not
9812 # cause an out-of-memory condition.
9813 test_227() {
9814         dd if=`which date` of=$MOUNT/date bs=1k count=1
9815         chmod +x $MOUNT/date
9816
9817         $MOUNT/date > /dev/null
9818         ldd $MOUNT/date > /dev/null
9819         rm -f $MOUNT/date
9820 }
9821 run_test 227 "running truncated executable does not cause OOM"
9822
9823 # LU-1512 try to reuse idle OI blocks
9824 test_228a() {
9825         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
9826                 skip "non-ldiskfs backend" && return
9827
9828         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9829         local myDIR=$DIR/$tdir
9830
9831         mkdir -p $myDIR
9832         #define OBD_FAIL_SEQ_EXHAUST             0x1002
9833         $LCTL set_param fail_loc=0x80001002
9834         createmany -o $myDIR/t- 10000
9835         $LCTL set_param fail_loc=0
9836         # The guard is current the largest FID holder
9837         touch $myDIR/guard
9838         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9839                     tr -d '[')
9840         local IDX=$(($SEQ % 64))
9841
9842         do_facet $SINGLEMDS sync
9843         # Make sure journal flushed.
9844         sleep 6
9845         local blk1=$(do_facet $SINGLEMDS \
9846                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9847                      grep Blockcount | awk '{print $4}')
9848
9849         # Remove old files, some OI blocks will become idle.
9850         unlinkmany $myDIR/t- 10000
9851         # Create new files, idle OI blocks should be reused.
9852         createmany -o $myDIR/t- 2000
9853         do_facet $SINGLEMDS sync
9854         # Make sure journal flushed.
9855         sleep 6
9856         local blk2=$(do_facet $SINGLEMDS \
9857                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9858                      grep Blockcount | awk '{print $4}')
9859
9860         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9861 }
9862 run_test 228a "try to reuse idle OI blocks"
9863
9864 test_228b() {
9865         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
9866                 skip "non-ldiskfs backend" && return
9867
9868         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9869         local myDIR=$DIR/$tdir
9870
9871         mkdir -p $myDIR
9872         #define OBD_FAIL_SEQ_EXHAUST             0x1002
9873         $LCTL set_param fail_loc=0x80001002
9874         createmany -o $myDIR/t- 10000
9875         $LCTL set_param fail_loc=0
9876         # The guard is current the largest FID holder
9877         touch $myDIR/guard
9878         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9879                     tr -d '[')
9880         local IDX=$(($SEQ % 64))
9881
9882         do_facet $SINGLEMDS sync
9883         # Make sure journal flushed.
9884         sleep 6
9885         local blk1=$(do_facet $SINGLEMDS \
9886                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9887                      grep Blockcount | awk '{print $4}')
9888
9889         # Remove old files, some OI blocks will become idle.
9890         unlinkmany $myDIR/t- 10000
9891
9892         # stop the MDT
9893         stop $SINGLEMDS || error "Fail to stop MDT."
9894         # remount the MDT
9895         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9896
9897         df $MOUNT || error "Fail to df."
9898         # Create new files, idle OI blocks should be reused.
9899         createmany -o $myDIR/t- 2000
9900         do_facet $SINGLEMDS sync
9901         # Make sure journal flushed.
9902         sleep 6
9903         local blk2=$(do_facet $SINGLEMDS \
9904                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9905                      grep Blockcount | awk '{print $4}')
9906
9907         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9908 }
9909 run_test 228b "idle OI blocks can be reused after MDT restart"
9910
9911 #LU-1881
9912 test_228c() {
9913         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
9914                 skip "non-ldiskfs backend" && return
9915
9916         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9917         local myDIR=$DIR/$tdir
9918
9919         mkdir -p $myDIR
9920         #define OBD_FAIL_SEQ_EXHAUST             0x1002
9921         $LCTL set_param fail_loc=0x80001002
9922         # 20000 files can guarantee there are index nodes in the OI file
9923         createmany -o $myDIR/t- 20000
9924         $LCTL set_param fail_loc=0
9925         # The guard is current the largest FID holder
9926         touch $myDIR/guard
9927         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
9928                     tr -d '[')
9929         local IDX=$(($SEQ % 64))
9930
9931         do_facet $SINGLEMDS sync
9932         # Make sure journal flushed.
9933         sleep 6
9934         local blk1=$(do_facet $SINGLEMDS \
9935                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9936                      grep Blockcount | awk '{print $4}')
9937
9938         # Remove old files, some OI blocks will become idle.
9939         unlinkmany $myDIR/t- 20000
9940         rm -f $myDIR/guard
9941         # The OI file should become empty now
9942
9943         # Create new files, idle OI blocks should be reused.
9944         createmany -o $myDIR/t- 2000
9945         do_facet $SINGLEMDS sync
9946         # Make sure journal flushed.
9947         sleep 6
9948         local blk2=$(do_facet $SINGLEMDS \
9949                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
9950                      grep Blockcount | awk '{print $4}')
9951
9952         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
9953 }
9954 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
9955
9956 #
9957 # tests that do cleanup/setup should be run at the end
9958 #
9959
9960 test_900() {
9961         local ls
9962         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
9963         $LCTL set_param fail_loc=0x903
9964         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
9965         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
9966                 echo "clear" > $ls
9967         done
9968         FAIL_ON_ERROR=true cleanup
9969         FAIL_ON_ERROR=true setup
9970 }
9971 run_test 900 "umount should not race with any mgc requeue thread"
9972
9973 complete $SECONDS
9974 check_and_cleanup_lustre
9975 if [ "$I_MOUNTED" != "yes" ]; then
9976         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
9977 fi
9978 exit_status