Whamcloud - gitweb
LU-2858 mdt: check .lustre before reint operation.
[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 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 60c 63 64b 68 71 73 77f 78 101a 103 115 120g 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-2834 LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 18      34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 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         test_mkdir -p $DIR/$tdir
159         test_mkdir -p $DIR/$tdir/d2
160         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
161         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
162 }
163 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
164
165 test_1b() {
166         rmdir $DIR/$tdir/d2
167         rmdir $DIR/$tdir
168         $CHECKSTAT -a $DIR/$tdir || error
169 }
170 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
171
172 test_2a() {
173         test_mkdir $DIR/$tdir
174         touch $DIR/$tdir/$tfile
175         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
176 }
177 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
178
179 test_2b() {
180         rm -r $DIR/$tdir
181         $CHECKSTAT -a $DIR/$tdir || error
182 }
183 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
184
185 test_3a() {
186         test_mkdir -p $DIR/$tdir
187         $CHECKSTAT -t dir $DIR/$tdir || error
188 }
189 run_test 3a "mkdir .../d3 ======================================"
190
191 test_3b() {
192         if [ ! -d $DIR/$tdir ]; then
193                 mkdir $DIR/$tdir
194         fi
195         touch $DIR/$tdir/$tfile
196         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
197 }
198 run_test 3b "touch .../d3/f ===================================="
199
200 test_3c() {
201         rm -r $DIR/$tdir
202         $CHECKSTAT -a $DIR/$tdir || error
203 }
204 run_test 3c "rm -r .../d3 ======================================"
205
206 test_4a() {
207         test_mkdir -p $DIR/$tdir
208         $CHECKSTAT -t dir $DIR/$tdir || error
209 }
210 run_test 4a "mkdir .../d4 ======================================"
211
212 test_4b() {
213         if [ ! -d $DIR/$tdir ]; then
214                 test_mkdir $DIR/$tdir
215         fi
216         test_mkdir $DIR/$tdir/d2
217         mkdir $DIR/$tdir/d2
218         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
219 }
220 run_test 4b "mkdir .../d4/d2 ==================================="
221
222 test_5() {
223         test_mkdir $DIR/$tdir
224         test_mkdir $DIR/$tdir/d2
225         chmod 0707 $DIR/$tdir/d2
226         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error
227 }
228 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
229
230 test_6a() {
231         touch $DIR/$tfile
232         chmod 0666 $DIR/$tfile || error
233         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
234 }
235 run_test 6a "touch .../f6a; chmod .../f6a ======================"
236
237 test_6b() {
238         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
239         if [ ! -f $DIR/$tfile ]; then
240                 touch $DIR/$tfile
241                 chmod 0666 $DIR/$tfile
242         fi
243         $RUNAS chmod 0444 $DIR/$tfile && error
244         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
245 }
246 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
247
248 test_6c() {
249         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
250         touch $DIR/$tfile
251         chown $RUNAS_ID $DIR/$tfile || error
252         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
253 }
254 run_test 6c "touch .../f6c; chown .../f6c ======================"
255
256 test_6d() {
257         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
258         if [ ! -f $DIR/$tfile ]; then
259                 touch $DIR/$tfile
260                 chown $RUNAS_ID $DIR/$tfile
261         fi
262         $RUNAS chown $UID $DIR/$tfile && error
263         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
264 }
265 run_test 6d "$RUNAS chown .../f6c (should return error) =="
266
267 test_6e() {
268         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
269         touch $DIR/$tfile
270         chgrp $RUNAS_ID $DIR/$tfile || error
271         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
272 }
273 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
274
275 test_6f() {
276         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
277         if [ ! -f $DIR/$tfile ]; then
278                 touch $DIR/$tfile
279                 chgrp $RUNAS_ID $DIR/$tfile
280         fi
281         $RUNAS chgrp $UID $DIR/$tfile && error
282         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
283 }
284 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
285
286 test_6g() {
287         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
288         test_mkdir $DIR/$tdir || error
289         chmod 777 $DIR/$tdir || error
290         $RUNAS mkdir $DIR/$tdir/d || error
291         chmod g+s $DIR/$tdir/d || error
292         test_mkdir $DIR/$tdir/d/subdir
293         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir || error
294 }
295 run_test 6g "Is new dir in sgid dir inheriting group?"
296
297 test_6h() { # bug 7331
298         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
299         touch $DIR/$tfile || error "touch failed"
300         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
301         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
302                 error "chown worked"
303         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile || error
304 }
305 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
306
307 test_7a() {
308         test_mkdir $DIR/$tdir
309         $MCREATE $DIR/$tdir/$tfile
310         chmod 0666 $DIR/$tdir/$tfile
311         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
312 }
313 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
314
315 test_7b() {
316         if [ ! -d $DIR/$tdir ]; then
317                 mkdir $DIR/$tdir
318         fi
319         $MCREATE $DIR/$tdir/$tfile
320         echo -n foo > $DIR/$tdir/$tfile
321         [ "`cat $DIR/$tdir/$tfile`" = "foo" ] || error
322         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error
323 }
324 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
325
326 test_8() {
327         test_mkdir $DIR/$tdir
328         touch $DIR/$tdir/$tfile
329         chmod 0666 $DIR/$tdir/$tfile
330         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
331 }
332 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
333
334 test_9() {
335         test_mkdir $DIR/$tdir
336         test_mkdir $DIR/$tdir/d2
337         test_mkdir $DIR/$tdir/d2/d3
338         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error
339 }
340 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
341
342 test_10() {
343         test_mkdir $DIR/$tdir
344         test_mkdir $DIR/$tdir/d2
345         touch $DIR/$tdir/d2/$tfile
346         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile || error
347 }
348 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
349
350 test_11() {
351         test_mkdir $DIR/$tdir
352         test_mkdir $DIR/$tdir/d2
353         chmod 0666 $DIR/$tdir/d2
354         chmod 0705 $DIR/$tdir/d2
355         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 || error
356 }
357 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
358
359 test_12() {
360         test_mkdir $DIR/$tdir
361         touch $DIR/$tdir/$tfile
362         chmod 0666 $DIR/$tdir/$tfile
363         chmod 0654 $DIR/$tdir/$tfile
364         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile || error
365 }
366 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
367
368 test_13() {
369         test_mkdir $DIR/$tdir
370         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
371         >  $DIR/$tdir/$tfile
372         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile || error
373 }
374 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
375
376 test_14() {
377         test_mkdir $DIR/$tdir
378         touch $DIR/$tdir/$tfile
379         rm $DIR/$tdir/$tfile
380         $CHECKSTAT -a $DIR/$tdir/$tfile || error
381 }
382 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
383
384 test_15() {
385         test_mkdir $DIR/$tdir
386         touch $DIR/$tdir/$tfile
387         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
388         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 || error
389 }
390 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
391
392 test_16() {
393         test_mkdir $DIR/$tdir
394         touch $DIR/$tdir/$tfile
395         rm -rf $DIR/$tdir/$tfile
396         $CHECKSTAT -a $DIR/$tdir/$tfile || error
397 }
398 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
399
400 test_17a() {
401         test_mkdir -p $DIR/$tdir
402         touch $DIR/$tdir/$tfile
403         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
404         ls -l $DIR/$tdir
405         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist || error
406         $CHECKSTAT -f -t f $DIR/$tdir/l-exist || error
407         rm -f $DIR/$tdir/l-exist
408         $CHECKSTAT -a $DIR/$tdir/l-exist || error
409 }
410 run_test 17a "symlinks: create, remove (real) =================="
411
412 test_17b() {
413         test_mkdir -p $DIR/$tdir
414         ln -s no-such-file $DIR/$tdir/l-dangle
415         ls -l $DIR/$tdir
416         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle || error
417         $CHECKSTAT -fa $DIR/$tdir/l-dangle || error
418         rm -f $DIR/$tdir/l-dangle
419         $CHECKSTAT -a $DIR/$tdir/l-dangle || error
420 }
421 run_test 17b "symlinks: create, remove (dangling) =============="
422
423 test_17c() { # bug 3440 - don't save failed open RPC for replay
424         test_mkdir -p $DIR/$tdir
425         ln -s foo $DIR/$tdir/$tfile
426         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
427 }
428 run_test 17c "symlinks: open dangling (should return error) ===="
429
430 test_17d() {
431         test_mkdir -p $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         touch $DIR/$tdir/$tfile || error "creating to new symlink"
434 }
435 run_test 17d "symlinks: create dangling ========================"
436
437 test_17e() {
438         test_mkdir -p $DIR/$tdir
439         local foo=$DIR/$tdir/$tfile
440         ln -s $foo $foo || error "create symlink failed"
441         ls -l $foo || error "ls -l failed"
442         ls $foo && error "ls not failed" || true
443 }
444 run_test 17e "symlinks: create recursive symlink (should return error) ===="
445
446 test_17f() {
447         test_mkdir -p $DIR/d17f
448         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
449         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
453         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
454         ls -l  $DIR/d17f
455 }
456 run_test 17f "symlinks: long and very long symlink name ========================"
457
458 # str_repeat(S, N) generate a string that is string S repeated N times
459 str_repeat() {
460         local s=$1
461         local n=$2
462         local ret=''
463         while [ $((n -= 1)) -ge 0 ]; do
464                 ret=$ret$s
465         done
466         echo $ret
467 }
468
469 # Long symlinks and LU-2241
470 test_17g() {
471         test_mkdir -p $DIR/$tdir
472         local TESTS="59 60 61 4094 4095"
473
474         for i in $TESTS; do
475                 local SYMNAME=$(str_repeat 'x' $i)
476                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
477                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
478         done
479 }
480 run_test 17g "symlinks: really long symlink name and inode boundaries"
481
482 test_17h() { #bug 17378
483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
485         local mdt_idx
486         test_mkdir -p $DIR/$tdir
487         if [ $MDSCOUNT -gt 1 ]; then
488                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
489         else
490                 mdt_idx=0
491         fi
492         $SETSTRIPE -c -1 $DIR/$tdir
493 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
494         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
495         touch $DIR/$tdir/$tfile || true
496 }
497 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
498
499 test_17i() { #bug 20018
500         remote_mds_nodsh && skip "remote MDS with nodsh" && return
501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
502         test_mkdir -p $DIR/$tdir
503         local foo=$DIR/$tdir/$tfile
504         local mdt_idx
505         if [ $MDSCOUNT -gt 1 ]; then
506                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
507         else
508                 mdt_idx=0
509         fi
510         ln -s $foo $foo || error "create symlink failed"
511 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
512         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
513         ls -l $foo && error "error not detected"
514         return 0
515 }
516 run_test 17i "don't panic on short symlink"
517
518 test_17k() { #bug 22301
519         rsync --help | grep -q xattr ||
520                 skip_env "$(rsync --version| head -1) does not support xattrs"
521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
522         test_mkdir -p $DIR/$tdir
523         test_mkdir -p $DIR/$tdir.new
524         touch $DIR/$tdir/$tfile
525         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
526         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
527                 error "rsync failed with xattrs enabled"
528 }
529 run_test 17k "symlinks: rsync with xattrs enabled ========================="
530
531 test_17l() { # LU-279
532         mkdir -p $DIR/$tdir
533         touch $DIR/$tdir/$tfile
534         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
535         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
536                 # -h to not follow symlinks. -m '' to list all the xattrs.
537                 # grep to remove first line: '# file: $path'.
538                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
539                 do
540                         lgetxattr_size_check $path $xattr ||
541                                 error "lgetxattr_size_check $path $xattr failed"
542                 done
543         done
544 }
545 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
546
547 # LU-1540
548 test_17m() {
549         local short_sym="0123456789"
550         local WDIR=$DIR/${tdir}m
551         local mds_index
552         local devname
553         local cmd
554         local i
555         local rc=0
556
557         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
558         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
559                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
560
561         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
562                 skip "only for ldiskfs MDT" && return 0
563
564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
565
566         mkdir -p $WDIR
567         long_sym=$short_sym
568         # create a long symlink file
569         for ((i = 0; i < 4; ++i)); do
570                 long_sym=${long_sym}${long_sym}
571         done
572
573         echo "create 512 short and long symlink files under $WDIR"
574         for ((i = 0; i < 256; ++i)); do
575                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
576                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
577         done
578
579         echo "erase them"
580         rm -f $WDIR/*
581         sync
582         wait_delete_completed
583
584         echo "recreate the 512 symlink files with a shorter string"
585         for ((i = 0; i < 512; ++i)); do
586                 # rewrite the symlink file with a shorter string
587                 ln -sf ${long_sym} $WDIR/long-$i
588                 ln -sf ${short_sym} $WDIR/short-$i
589         done
590
591         mds_index=$($LFS getstripe -M $WDIR)
592         mds_index=$((mds_index+1))
593         devname=$(mdsdevname $mds_index)
594         cmd="$E2FSCK -fnvd $devname"
595
596         echo "stop and checking mds${mds_index}: $cmd"
597         # e2fsck should not return error
598         stop mds${mds_index} -f
599         do_facet mds${mds_index} $cmd || rc=$?
600
601         start mds${mds_index} $devname $MDS_MOUNT_OPTS
602         df $MOUNT > /dev/null 2>&1
603         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
604                 "short/long symlink MDT: rc=$rc"
605         return $rc
606 }
607 run_test 17m "run e2fsck against MDT which contains short/long symlink"
608
609 check_fs_consistency_17n() {
610         local mdt_index
611         local devname
612         local cmd
613         local rc=0
614
615         for mdt_index in $(seq 1 $MDSCOUNT); do
616                 devname=$(mdsdevname $mdt_index)
617                 cmd="$E2FSCK -fnvd $devname"
618
619                 echo "stop and checking mds${mdt_index}: $cmd"
620                 # e2fsck should not return error
621                 stop mds${mdt_index}
622                 do_facet mds${mdt_index} $cmd || rc=$?
623
624                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
625                 df $MOUNT > /dev/null 2>&1
626                 [ $rc -ne 0 ] && break
627         done
628         return $rc
629 }
630
631 test_17n() {
632         local i
633
634         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
635         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
636                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
637
638         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
639                 skip "only for ldiskfs MDT" && return 0
640
641         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
642
643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
644
645         mkdir -p $DIR/$tdir
646         for ((i=0; i<10; i++)); do
647                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
648                         error "create remote dir error $i"
649                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
650                         error "create files under remote dir failed $i"
651         done
652
653         check_fs_consistency_17n || error "e2fsck report error"
654
655         for ((i=0;i<10;i++)); do
656                 rm -rf $DIR/$tdir/remote_dir_${i} ||
657                         error "destroy remote dir error $i"
658         done
659
660         check_fs_consistency_17n || error "e2fsck report error"
661 }
662 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
663
664 test_18() {
665         touch $DIR/f
666         ls $DIR || error
667 }
668 run_test 18 "touch .../f ; ls ... =============================="
669
670 test_19a() {
671         touch $DIR/f19
672         ls -l $DIR
673         rm $DIR/f19
674         $CHECKSTAT -a $DIR/f19 || error
675 }
676 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
677
678 test_19b() {
679         ls -l $DIR/f19 && error || true
680 }
681 run_test 19b "ls -l .../f19 (should return error) =============="
682
683 test_19c() {
684         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
685         $RUNAS touch $DIR/f19 && error || true
686 }
687 run_test 19c "$RUNAS touch .../f19 (should return error) =="
688
689 test_19d() {
690         cat $DIR/f19 && error || true
691 }
692 run_test 19d "cat .../f19 (should return error) =============="
693
694 test_20() {
695         touch $DIR/f
696         rm $DIR/f
697         log "1 done"
698         touch $DIR/f
699         rm $DIR/f
700         log "2 done"
701         touch $DIR/f
702         rm $DIR/f
703         log "3 done"
704         $CHECKSTAT -a $DIR/f || error
705 }
706 run_test 20 "touch .../f ; ls -l ... ==========================="
707
708 test_21() {
709         test_mkdir $DIR/d21
710         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
711         ln -s dangle $DIR/d21/link
712         echo foo >> $DIR/d21/link
713         cat $DIR/d21/dangle
714         $CHECKSTAT -t link $DIR/d21/link || error
715         $CHECKSTAT -f -t file $DIR/d21/link || error
716 }
717 run_test 21 "write to dangling link ============================"
718
719 test_22() {
720         WDIR=$DIR/$tdir
721         test_mkdir -p $DIR/$tdir
722         chown $RUNAS_ID:$RUNAS_GID $WDIR
723         (cd $WDIR || error "cd $WDIR failed";
724         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
725         $RUNAS tar xf -)
726         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
727         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
728         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
729 }
730 run_test 22 "unpack tar archive as non-root user ==============="
731
732 # was test_23
733 test_23a() {
734         test_mkdir -p $DIR/$tdir
735         local file=$DIR/$tdir/$tfile
736
737         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
738         openfile -f O_CREAT:O_EXCL $file &&
739                 error "$file recreate succeeded" || true
740 }
741 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
742
743 test_23b() { # bug 18988
744         test_mkdir -p $DIR/$tdir
745         local file=$DIR/$tdir/$tfile
746
747         rm -f $file
748         echo foo > $file || error "write filed"
749         echo bar >> $file || error "append filed"
750         $CHECKSTAT -s 8 $file || error "wrong size"
751         rm $file
752 }
753 run_test 23b "O_APPEND check =========================="
754
755 test_24a() {
756         echo '== rename sanity =============================================='
757         echo '-- same directory rename'
758         test_mkdir $DIR/R1
759         touch $DIR/R1/f
760         mv $DIR/R1/f $DIR/R1/g
761         $CHECKSTAT -t file $DIR/R1/g || error
762 }
763 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
764
765 test_24b() {
766         test_mkdir $DIR/R2
767         touch $DIR/R2/{f,g}
768         mv $DIR/R2/f $DIR/R2/g
769         $CHECKSTAT -a $DIR/R2/f || error
770         $CHECKSTAT -t file $DIR/R2/g || error
771 }
772 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
773
774 test_24c() {
775         test_mkdir $DIR/R3
776         test_mkdir $DIR/R3/f
777         mv $DIR/R3/f $DIR/R3/g
778         $CHECKSTAT -a $DIR/R3/f || error
779         $CHECKSTAT -t dir $DIR/R3/g || error
780 }
781 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
782
783 test_24d() {
784         test_mkdir $DIR/R4
785         test_mkdir $DIR/R4/f
786         test_mkdir $DIR/R4/g
787         mrename $DIR/R4/f $DIR/R4/g
788         $CHECKSTAT -a $DIR/R4/f || error
789         $CHECKSTAT -t dir $DIR/R4/g || error
790 }
791 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
792
793 test_24e() {
794         echo '-- cross directory renames --'
795         test_mkdir $DIR/R5a
796         test_mkdir $DIR/R5b
797         touch $DIR/R5a/f
798         mv $DIR/R5a/f $DIR/R5b/g
799         $CHECKSTAT -a $DIR/R5a/f || error
800         $CHECKSTAT -t file $DIR/R5b/g || error
801 }
802 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
803
804 test_24f() {
805         test_mkdir $DIR/R6a
806         test_mkdir $DIR/R6b
807         touch $DIR/R6a/f $DIR/R6b/g
808         mv $DIR/R6a/f $DIR/R6b/g
809         $CHECKSTAT -a $DIR/R6a/f || error
810         $CHECKSTAT -t file $DIR/R6b/g || error
811 }
812 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
813
814 test_24g() {
815         test_mkdir $DIR/R7a
816         test_mkdir $DIR/R7b
817         test_mkdir $DIR/R7a/d
818         mv $DIR/R7a/d $DIR/R7b/e
819         $CHECKSTAT -a $DIR/R7a/d || error
820         $CHECKSTAT -t dir $DIR/R7b/e || error
821 }
822 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
823
824 test_24h() {
825         test_mkdir $DIR/R8a
826         test_mkdir $DIR/R8b
827         test_mkdir $DIR/R8a/d
828         test_mkdir $DIR/R8b/e
829         mrename $DIR/R8a/d $DIR/R8b/e
830         $CHECKSTAT -a $DIR/R8a/d || error
831         $CHECKSTAT -t dir $DIR/R8b/e || error
832 }
833 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
834
835 test_24i() {
836         echo "-- rename error cases"
837         test_mkdir $DIR/R9
838         test_mkdir $DIR/R9/a
839         touch $DIR/R9/f
840         mrename $DIR/R9/f $DIR/R9/a
841         $CHECKSTAT -t file $DIR/R9/f || error
842         $CHECKSTAT -t dir  $DIR/R9/a || error
843         $CHECKSTAT -a $DIR/R9/a/f || error
844 }
845 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
846
847 test_24j() {
848         test_mkdir $DIR/R10
849         mrename $DIR/R10/f $DIR/R10/g
850         $CHECKSTAT -t dir $DIR/R10 || error
851         $CHECKSTAT -a $DIR/R10/f || error
852         $CHECKSTAT -a $DIR/R10/g || error
853 }
854 run_test 24j "source does not exist ============================"
855
856 test_24k() {
857         test_mkdir $DIR/R11a
858         test_mkdir $DIR/R11a/d
859         touch $DIR/R11a/f
860         mv $DIR/R11a/f $DIR/R11a/d
861         $CHECKSTAT -a $DIR/R11a/f || error
862         $CHECKSTAT -t file $DIR/R11a/d/f || error
863 }
864 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
865
866 # bug 2429 - rename foo foo foo creates invalid file
867 test_24l() {
868         f="$DIR/f24l"
869         $MULTIOP $f OcNs || error
870 }
871 run_test 24l "Renaming a file to itself ========================"
872
873 test_24m() {
874         f="$DIR/f24m"
875         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
876         # on ext3 this does not remove either the source or target files
877         # though the "expected" operation would be to remove the source
878         $CHECKSTAT -t file ${f} || error "${f} missing"
879         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
880 }
881 run_test 24m "Renaming a file to a hard link to itself ========="
882
883 test_24n() {
884     f="$DIR/f24n"
885     # this stats the old file after it was renamed, so it should fail
886     touch ${f}
887     $CHECKSTAT ${f}
888     mv ${f} ${f}.rename
889     $CHECKSTAT ${f}.rename
890     $CHECKSTAT -a ${f}
891 }
892 run_test 24n "Statting the old file after renaming (Posix rename 2)"
893
894 test_24o() {
895         check_kernel_version 37 || return 0
896         test_mkdir -p $DIR/d24o
897         rename_many -s random -v -n 10 $DIR/d24o
898 }
899 run_test 24o "rename of files during htree split ==============="
900
901 test_24p() {
902         test_mkdir $DIR/R12a
903         test_mkdir $DIR/R12b
904         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
905         mrename $DIR/R12a $DIR/R12b
906         $CHECKSTAT -a $DIR/R12a || error
907         $CHECKSTAT -t dir $DIR/R12b || error
908         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
909         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
910 }
911 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
912
913 cleanup_multiop_pause() {
914         trap 0
915         kill -USR1 $MULTIPID
916 }
917
918 test_24q() {
919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
920         test_mkdir $DIR/R13a
921         test_mkdir $DIR/R13b
922         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
923         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
924         MULTIPID=$!
925
926         trap cleanup_multiop_pause EXIT
927         mrename $DIR/R13a $DIR/R13b
928         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
929         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
930         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
931         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
932         cleanup_multiop_pause
933         wait $MULTIPID || error "multiop close failed"
934 }
935 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
936
937 test_24r() { #bug 3789
938         test_mkdir $DIR/R14a
939         test_mkdir $DIR/R14a/b
940         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
941         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
942         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
943 }
944 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
945
946 test_24s() {
947         test_mkdir $DIR/R15a
948         test_mkdir $DIR/R15a/b
949         test_mkdir $DIR/R15a/b/c
950         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
951         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
952         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
953 }
954 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
955 test_24t() {
956         test_mkdir $DIR/R16a
957         test_mkdir $DIR/R16a/b
958         test_mkdir $DIR/R16a/b/c
959         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
960         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
961         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
962 }
963 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
964
965 test_24u() { # bug12192
966         rm -rf $DIR/$tfile
967         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
968         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
969 }
970 run_test 24u "create stripe file"
971
972 page_size() {
973         getconf PAGE_SIZE
974 }
975
976 simple_cleanup_common() {
977         trap 0
978         rm -rf $DIR/$tdir
979         wait_delete_completed
980 }
981
982 max_pages_per_rpc() {
983         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
984 }
985
986 test_24v() {
987         local NRFILES=100000
988         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
989         [ $FREE_INODES -lt $NRFILES ] && \
990                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
991                 return
992
993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
994         trap simple_cleanup_common EXIT
995
996         mkdir -p $DIR/$tdir
997         createmany -m $DIR/$tdir/$tfile $NRFILES
998
999         cancel_lru_locks mdc
1000         lctl set_param mdc.*.stats clear
1001
1002         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1003
1004         # LU-5 large readdir
1005         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1006         #               8 bytes for name(filename is mostly 5 in this test) +
1007         #               8 bytes for luda_type
1008         # take into account of overhead in lu_dirpage header and end mark in
1009         # each page, plus one in RPC_NUM calculation.
1010         DIRENT_SIZE=48
1011         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1012         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1013         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1014                                 awk '/^mds_readpage/ {print $2}')
1015         [ $mds_readpage -gt $RPC_NUM ] && \
1016                 error "large readdir doesn't take effect"
1017
1018         simple_cleanup_common
1019 }
1020 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1021
1022 test_24w() { # bug21506
1023         SZ1=234852
1024         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1025         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1026         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1027         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1028         [ "$SZ1" = "$SZ2" ] || \
1029                 error "Error reading at the end of the file $tfile"
1030 }
1031 run_test 24w "Reading a file larger than 4Gb"
1032
1033 test_24x() {
1034         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1036         local MDTIDX=1
1037         local remote_dir=$DIR/$tdir/remote_dir
1038
1039         mkdir -p $DIR/$tdir
1040         $LFS mkdir -i $MDTIDX $remote_dir ||
1041                 error "create remote directory failed"
1042
1043         mkdir -p $DIR/$tdir/src_dir
1044         touch $DIR/$tdir/src_file
1045         mkdir -p $remote_dir/tgt_dir
1046         touch $remote_dir/tgt_file
1047
1048         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1049                 error "rename dir cross MDT works!"
1050
1051         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1052                 error "rename file cross MDT works!"
1053
1054         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1055                 error "ln file cross MDT should not work!"
1056
1057         rm -rf $DIR/$tdir || error "Can not delete directories"
1058 }
1059 run_test 24x "cross rename/link should be failed"
1060
1061 test_24y() {
1062         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1063         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1064         local MDTIDX=1
1065         local remote_dir=$DIR/$tdir/remote_dir
1066
1067         mkdir -p $DIR/$tdir
1068         $LFS mkdir -i $MDTIDX $remote_dir ||
1069                    error "create remote directory failed"
1070
1071         mkdir -p $remote_dir/src_dir
1072         touch $remote_dir/src_file
1073         mkdir -p $remote_dir/tgt_dir
1074         touch $remote_dir/tgt_file
1075
1076         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1077                 error "rename subdir in the same remote dir failed!"
1078
1079         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1080                 error "rename files in the same remote dir failed!"
1081
1082         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1083                 error "link files in the same remote dir failed!"
1084
1085         rm -rf $DIR/$tdir || error "Can not delete directories"
1086 }
1087 run_test 24y "rename/link on the same dir should succeed"
1088
1089 test_24z() {
1090         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1091         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1092         local MDTIDX=1
1093         local remote_src=$DIR/$tdir/remote_dir
1094         local remote_tgt=$DIR/$tdir/remote_tgt
1095
1096         mkdir -p $DIR/$tdir
1097         $LFS mkdir -i $MDTIDX $remote_src ||
1098                    error "create remote directory failed"
1099
1100         $LFS mkdir -i $MDTIDX $remote_tgt ||
1101                    error "create remote directory failed"
1102
1103         mrename $remote_src $remote_tgt &&
1104                 error "rename remote dirs should not work!"
1105
1106         rm -rf $DIR/$tdir || error "Can not delete directories"
1107 }
1108 run_test 24z "rename one remote dir to another remote dir should fail"
1109
1110 test_25a() {
1111         echo '== symlink sanity ============================================='
1112
1113         test_mkdir $DIR/d25
1114         ln -s d25 $DIR/s25
1115         touch $DIR/s25/foo || error
1116 }
1117 run_test 25a "create file in symlinked directory ==============="
1118
1119 test_25b() {
1120         [ ! -d $DIR/d25 ] && test_25a
1121         $CHECKSTAT -t file $DIR/s25/foo || error
1122 }
1123 run_test 25b "lookup file in symlinked directory ==============="
1124
1125 test_26a() {
1126         test_mkdir $DIR/d26
1127         test_mkdir $DIR/d26/d26-2
1128         ln -s d26/d26-2 $DIR/s26
1129         touch $DIR/s26/foo || error
1130 }
1131 run_test 26a "multiple component symlink ======================="
1132
1133 test_26b() {
1134         test_mkdir -p $DIR/d26b/d26-2
1135         ln -s d26b/d26-2/foo $DIR/s26-2
1136         touch $DIR/s26-2 || error
1137 }
1138 run_test 26b "multiple component symlink at end of lookup ======"
1139
1140 test_26c() {
1141         test_mkdir $DIR/d26.2
1142         touch $DIR/d26.2/foo
1143         ln -s d26.2 $DIR/s26.2-1
1144         ln -s s26.2-1 $DIR/s26.2-2
1145         ln -s s26.2-2 $DIR/s26.2-3
1146         chmod 0666 $DIR/s26.2-3/foo
1147 }
1148 run_test 26c "chain of symlinks ================================"
1149
1150 # recursive symlinks (bug 439)
1151 test_26d() {
1152         ln -s d26-3/foo $DIR/d26-3
1153 }
1154 run_test 26d "create multiple component recursive symlink ======"
1155
1156 test_26e() {
1157         [ ! -h $DIR/d26-3 ] && test_26d
1158         rm $DIR/d26-3
1159 }
1160 run_test 26e "unlink multiple component recursive symlink ======"
1161
1162 # recursive symlinks (bug 7022)
1163 test_26f() {
1164         test_mkdir -p $DIR/$tdir
1165         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1166         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1167         test_mkdir -p lndir bar1      || error "mkdir lndir/bar1 failed"
1168         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1169         cd $tfile                || error "cd $tfile failed"
1170         ln -s .. dotdot          || error "ln dotdot failed"
1171         ln -s dotdot/lndir lndir || error "ln lndir failed"
1172         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1173         output=`ls $tfile/$tfile/lndir/bar1`
1174         [ "$output" = bar1 ] && error "unexpected output"
1175         rm -r $tfile             || error "rm $tfile failed"
1176         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1177 }
1178 run_test 26f "rm -r of a directory which has recursive symlink ="
1179
1180 test_27a() {
1181         echo '== stripe sanity =============================================='
1182         test_mkdir -p $DIR/d27 || error "mkdir failed"
1183         $GETSTRIPE $DIR/d27
1184         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1185         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1186         pass
1187         log "== test_27a: write to one stripe file ========================="
1188         cp /etc/hosts $DIR/d27/f0 || error
1189 }
1190 run_test 27a "one stripe file =================================="
1191
1192 test_27b() {
1193         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1194         test_mkdir -p $DIR/d27
1195         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1196         $GETSTRIPE -c $DIR/d27/f01
1197         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1198                 error "two-stripe file doesn't have two stripes"
1199 }
1200 run_test 27b "create two stripe file"
1201
1202 test_27c() {
1203         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1204
1205         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1206 }
1207 run_test 27c "write to two stripe file"
1208
1209 test_27d() {
1210         test_mkdir -p $DIR/d27
1211         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1212         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1213         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1214 }
1215 run_test 27d "create file with default settings ================"
1216
1217 test_27e() {
1218         test_mkdir -p $DIR/d27
1219         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1220         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1221         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1222 }
1223 run_test 27e "setstripe existing file (should return error) ======"
1224
1225 test_27f() {
1226         test_mkdir -p $DIR/d27
1227         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1228         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1229         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1230 }
1231 run_test 27f "setstripe with bad stripe size (should return error)"
1232
1233 test_27g() {
1234         test_mkdir -p $DIR/d27
1235         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1236         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1237                 error "$DIR/d27/fnone has object"
1238 }
1239 run_test 27g "$GETSTRIPE with no objects"
1240
1241 test_27i() {
1242         touch $DIR/d27/fsome || error "touch failed"
1243         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1244 }
1245 run_test 27i "$GETSTRIPE with some objects"
1246
1247 test_27j() {
1248         test_mkdir -p $DIR/d27
1249         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1250 }
1251 run_test 27j "setstripe with bad stripe offset (should return error)"
1252
1253 test_27k() { # bug 2844
1254         test_mkdir -p $DIR/d27
1255         FILE=$DIR/d27/f27k
1256         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1257         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1258         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1259         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1260         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1261         dd if=/dev/zero of=$FILE bs=4k count=1
1262         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1263         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1264 }
1265 run_test 27k "limit i_blksize for broken user apps ============="
1266
1267 test_27l() {
1268         test_mkdir -p $DIR/d27
1269         mcreate $DIR/f27l || error "creating file"
1270         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1271                 error "setstripe should have failed" || true
1272 }
1273 run_test 27l "check setstripe permissions (should return error)"
1274
1275 test_27m() {
1276         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1277                 return
1278         if [ $ORIGFREE -gt $MAXFREE ]; then
1279                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1280                 return
1281         fi
1282         trap simple_cleanup_common EXIT
1283         test_mkdir -p $DIR/$tdir
1284         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1285         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1286                 error "dd should fill OST0"
1287         i=2
1288         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1289                 i=`expr $i + 1`
1290                 [ $i -gt 256 ] && break
1291         done
1292         i=`expr $i + 1`
1293         touch $DIR/$tdir/f27m_$i
1294         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1295                 error "OST0 was full but new created file still use it"
1296         i=`expr $i + 1`
1297         touch $DIR/$tdir/f27m_$i
1298         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1299                 error "OST0 was full but new created file still use it"
1300         simple_cleanup_common
1301 }
1302 run_test 27m "create file while OST0 was full =================="
1303
1304 sleep_maxage() {
1305         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1306         sleep $DELAY
1307 }
1308
1309 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1310 # if the OST isn't full anymore.
1311 reset_enospc() {
1312         local OSTIDX=${1:-""}
1313
1314         local list=$(comma_list $(osts_nodes))
1315         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1316
1317         do_nodes $list lctl set_param fail_loc=0
1318         sync    # initiate all OST_DESTROYs from MDS to OST
1319         sleep_maxage
1320 }
1321
1322 exhaust_precreations() {
1323         local OSTIDX=$1
1324         local FAILLOC=$2
1325         local FAILIDX=${3:-$OSTIDX}
1326
1327         test_mkdir -p $DIR/$tdir
1328         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1329         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1330
1331         local OST=$(ostname_from_index $OSTIDX)
1332         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1333                           sed -e 's/_UUID$//;s/^.*-//')
1334
1335         # on the mdt's osc
1336         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1337         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1338         osc.$mdtosc_proc1.prealloc_last_id)
1339         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1340         osc.$mdtosc_proc1.prealloc_next_id)
1341
1342         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1343         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1344
1345         test_mkdir -p $DIR/$tdir/${OST}
1346         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1347 #define OBD_FAIL_OST_ENOSPC              0x215
1348         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1349         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1350         echo "Creating to objid $last_id on ost $OST..."
1351         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1352         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1353         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1354         sleep_maxage
1355 }
1356
1357 exhaust_all_precreations() {
1358         local i
1359         for (( i=0; i < OSTCOUNT; i++ )) ; do
1360                 exhaust_precreations $i $1 -1
1361         done
1362 }
1363
1364 test_27n() {
1365         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1367         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1368         remote_ost_nodsh && skip "remote OST with nodsh" && return
1369
1370         reset_enospc
1371         rm -f $DIR/$tdir/$tfile
1372         exhaust_precreations 0 0x80000215
1373         $SETSTRIPE -c -1 $DIR/$tdir
1374         touch $DIR/$tdir/$tfile || error
1375         $GETSTRIPE $DIR/$tdir/$tfile
1376         reset_enospc
1377 }
1378 run_test 27n "create file with some full OSTs =================="
1379
1380 test_27o() {
1381         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1383         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1384         remote_ost_nodsh && skip "remote OST with nodsh" && return
1385
1386         reset_enospc
1387         rm -f $DIR/$tdir/$tfile
1388         exhaust_all_precreations 0x215
1389
1390         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1391
1392         reset_enospc
1393         rm -rf $DIR/$tdir/*
1394 }
1395 run_test 27o "create file with all full OSTs (should error) ===="
1396
1397 test_27p() {
1398         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1400         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1401         remote_ost_nodsh && skip "remote OST with nodsh" && return
1402
1403         reset_enospc
1404         rm -f $DIR/$tdir/$tfile
1405         test_mkdir -p $DIR/$tdir
1406
1407         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1408         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1409         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1410
1411         exhaust_precreations 0 0x80000215
1412         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1413         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1414         $GETSTRIPE $DIR/$tdir/$tfile
1415
1416         reset_enospc
1417 }
1418 run_test 27p "append to a truncated file with some full OSTs ==="
1419
1420 test_27q() {
1421         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1423         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1424         remote_ost_nodsh && skip "remote OST with nodsh" && return
1425
1426         reset_enospc
1427         rm -f $DIR/$tdir/$tfile
1428
1429         test_mkdir -p $DIR/$tdir
1430         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1431         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1432         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1433
1434         exhaust_all_precreations 0x215
1435
1436         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1437         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1438
1439         reset_enospc
1440 }
1441 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1442
1443 test_27r() {
1444         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1447         remote_ost_nodsh && skip "remote OST with nodsh" && return
1448
1449         reset_enospc
1450         rm -f $DIR/$tdir/$tfile
1451         exhaust_precreations 0 0x80000215
1452
1453         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1454
1455         reset_enospc
1456 }
1457 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1458
1459 test_27s() { # bug 10725
1460         test_mkdir -p $DIR/$tdir
1461         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1462         local stripe_count=0
1463         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1464         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1465                 error "stripe width >= 2^32 succeeded" || true
1466
1467 }
1468 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1469
1470 test_27t() { # bug 10864
1471         WDIR=`pwd`
1472         WLFS=`which lfs`
1473         cd $DIR
1474         touch $tfile
1475         $WLFS getstripe $tfile
1476         cd $WDIR
1477 }
1478 run_test 27t "check that utils parse path correctly"
1479
1480 test_27u() { # bug 4900
1481         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1482         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1483
1484 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1485         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1486         test_mkdir -p $DIR/$tdir
1487         createmany -o $DIR/$tdir/t- 1000
1488         do_facet $SINGLEMDS lctl set_param fail_loc=0
1489
1490         TLOG=$DIR/$tfile.getstripe
1491         $GETSTRIPE $DIR/$tdir > $TLOG
1492         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1493         unlinkmany $DIR/$tdir/t- 1000
1494         [ $OBJS -gt 0 ] && \
1495                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1496 }
1497 run_test 27u "skip object creation on OSC w/o objects =========="
1498
1499 test_27v() { # bug 4900
1500         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1502         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1503         remote_ost_nodsh && skip "remote OST with nodsh" && return
1504
1505         exhaust_all_precreations 0x215
1506         reset_enospc
1507
1508         test_mkdir -p $DIR/$tdir
1509         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1510
1511         touch $DIR/$tdir/$tfile
1512         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1513         # all except ost1
1514         for (( i=1; i < OSTCOUNT; i++ )); do
1515                 do_facet ost$i lctl set_param fail_loc=0x705
1516         done
1517         local START=`date +%s`
1518         createmany -o $DIR/$tdir/$tfile 32
1519
1520         local FINISH=`date +%s`
1521         local TIMEOUT=`lctl get_param -n timeout`
1522         local PROCESS=$((FINISH - START))
1523         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1524                error "$FINISH - $START >= $TIMEOUT / 2"
1525         sleep $((TIMEOUT / 2 - PROCESS))
1526         reset_enospc
1527 }
1528 run_test 27v "skip object creation on slow OST ================="
1529
1530 test_27w() { # bug 10997
1531         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1532         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1533         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1534                 error "stripe size $size != 65536" || true
1535         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1536                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1537 }
1538 run_test 27w "check $SETSTRIPE -S option"
1539
1540 test_27wa() {
1541         [ "$OSTCOUNT" -lt "2" ] &&
1542                 skip_env "skipping multiple stripe count/offset test" && return
1543
1544         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1545         for i in $(seq 1 $OSTCOUNT); do
1546                 offset=$((i - 1))
1547                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1548                         error "setstripe -c $i -i $offset failed"
1549                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1550                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1551                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1552                 [ $index -ne $offset ] &&
1553                         error "stripe offset $index != $offset" || true
1554         done
1555 }
1556 run_test 27wa "check $SETSTRIPE -c -i options"
1557
1558 test_27x() {
1559         remote_ost_nodsh && skip "remote OST with nodsh" && return
1560         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1562         OFFSET=$(($OSTCOUNT - 1))
1563         OSTIDX=0
1564         local OST=$(ostname_from_index $OSTIDX)
1565
1566         test_mkdir -p $DIR/$tdir
1567         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1568         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1569         sleep_maxage
1570         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1571         for i in `seq 0 $OFFSET`; do
1572                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1573                 error "OST0 was degraded but new created file still use it"
1574         done
1575         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1576 }
1577 run_test 27x "create files while OST0 is degraded"
1578
1579 test_27y() {
1580         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1581         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1582         remote_ost_nodsh && skip "remote OST with nodsh" && return
1583         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1584
1585         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1586         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1587             osc.$mdtosc.prealloc_last_id)
1588         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1589             osc.$mdtosc.prealloc_next_id)
1590         local fcount=$((last_id - next_id))
1591         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1592         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1593
1594         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1595                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1596         local OST_DEACTIVE_IDX=-1
1597         local OSC
1598         local OSTIDX
1599         local OST
1600
1601         for OSC in $MDS_OSCS; do
1602                 OST=$(osc_to_ost $OSC)
1603                 OSTIDX=$(index_from_ostuuid $OST)
1604                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1605                         OST_DEACTIVE_IDX=$OSTIDX
1606                 fi
1607                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1608                         echo $OSC "is Deactivated:"
1609                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1610                 fi
1611         done
1612
1613         OSTIDX=$(index_from_ostuuid $OST)
1614         mkdir -p $DIR/$tdir
1615         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1616
1617         for OSC in $MDS_OSCS; do
1618                 OST=$(osc_to_ost $OSC)
1619                 OSTIDX=$(index_from_ostuuid $OST)
1620                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1621                         echo $OST "is degraded:"
1622                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1623                                                 obdfilter.$OST.degraded=1
1624                 fi
1625         done
1626
1627         sleep_maxage
1628         createmany -o $DIR/$tdir/$tfile $fcount
1629
1630         for OSC in $MDS_OSCS; do
1631                 OST=$(osc_to_ost $OSC)
1632                 OSTIDX=$(index_from_ostuuid $OST)
1633                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1634                         echo $OST "is recovered from degraded:"
1635                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1636                                                 obdfilter.$OST.degraded=0
1637                 else
1638                         do_facet $SINGLEMDS lctl --device %$OSC activate
1639                 fi
1640         done
1641 }
1642 run_test 27y "create files while OST0 is degraded and the rest inactive"
1643
1644 check_seq_oid()
1645 {
1646         log "check file $1"
1647
1648         lmm_count=$($GETSTRIPE -c $1)
1649         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1650         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1651
1652         local old_ifs="$IFS"
1653         IFS=$'[:]'
1654         fid=($($LFS path2fid $1))
1655         IFS="$old_ifs"
1656
1657         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1658         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1659
1660         # compare lmm_seq and lu_fid->f_seq
1661         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1662         # compare lmm_object_id and lu_fid->oid
1663         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1664
1665         # check the trusted.fid attribute of the OST objects of the file
1666         local have_obdidx=false
1667         local stripe_nr=0
1668         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1669                 # skip lines up to and including "obdidx"
1670                 [ -z "$obdidx" ] && break
1671                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1672                 $have_obdidx || continue
1673
1674                 local ost=$((obdidx + 1))
1675                 local dev=$(ostdevname $ost)
1676
1677                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1678                         echo "Currently only works with ldiskfs-based OSTs"
1679                         continue
1680                 fi
1681
1682                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1683
1684                 #don't unmount/remount the OSTs if we don't need to do that
1685                 #local dir=$(facet_mntpt ost$ost)
1686                 #stop ost$dev
1687                 #do_facet ost$dev mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1688                 #       { error "mounting $dev as $FSTYPE failed"; return 3; }
1689                 #local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid)
1690                 #local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1691                 seq=$(echo $seq | sed -e "s/^0x//g")
1692                 if [ $seq == 0 ]; then
1693                         oid_hex=$(echo $oid)
1694                 else
1695                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1696                 fi
1697                 local obj_file="O/$seq/d$((oid %32))/$oid_hex"
1698                 local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1699                            $dev 2>/dev/null" | grep "parent=")
1700
1701                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1702
1703                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1704
1705                 #do_facet ost$ost umount -d $dir
1706                 #start ost$ost $dev $OST_MOUNT_OPTS
1707
1708                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1709                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1710                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1711                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1712                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1713                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1714
1715                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1716                 [ $ff_pseq = $lmm_seq ] ||
1717                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1718                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1719                 [ $ff_poid = $lmm_oid ] ||
1720                         error "FF parent OID $ff_poid != $lmm_oid"
1721                 [ $ff_pstripe = $stripe_nr ] ||
1722                         error "FF stripe $ff_pstripe != $stripe_nr"
1723
1724                 stripe_nr=$((stripe_nr + 1))
1725         done
1726 }
1727
1728 test_27z() {
1729         remote_ost_nodsh && skip "remote OST with nodsh" && return
1730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1731         test_mkdir -p $DIR/$tdir
1732
1733         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1734                 { error "setstripe -c -1 failed"; return 1; }
1735         # We need to send a write to every object to get parent FID info set.
1736         # This _should_ also work for setattr, but does not currently.
1737         # touch $DIR/$tdir/$tfile-1 ||
1738         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1739                 { error "dd $tfile-1 failed"; return 2; }
1740         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1741                 { error "setstripe -c -1 failed"; return 3; }
1742         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1743                 { error "dd $tfile-2 failed"; return 4; }
1744
1745         # make sure write RPCs have been sent to OSTs
1746         sync; sleep 5; sync
1747
1748         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1749         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1750 }
1751 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1752
1753 test_27A() { # b=19102
1754         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1755         local restore_size=$($GETSTRIPE -S $MOUNT)
1756         local restore_count=$($GETSTRIPE -c $MOUNT)
1757         local restore_offset=$($GETSTRIPE -i $MOUNT)
1758         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1759         local default_size=$($GETSTRIPE -S $MOUNT)
1760         local default_count=$($GETSTRIPE -c $MOUNT)
1761         local default_offset=$($GETSTRIPE -i $MOUNT)
1762         local dsize=$((1024 * 1024))
1763         [ $default_size -eq $dsize ] ||
1764                 error "stripe size $default_size != $dsize"
1765         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1766         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1767         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1768 }
1769 run_test 27A "check filesystem-wide default LOV EA values"
1770
1771 # createtest also checks that device nodes are created and
1772 # then visible correctly (#2091)
1773 test_28() { # bug 2091
1774         test_mkdir $DIR/d28
1775         $CREATETEST $DIR/d28/ct || error
1776 }
1777 run_test 28 "create/mknod/mkdir with bad file types ============"
1778
1779 test_29() {
1780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1781         cancel_lru_locks mdc
1782         test_mkdir $DIR/d29
1783         touch $DIR/d29/foo
1784         log 'first d29'
1785         ls -l $DIR/d29
1786
1787         declare -i LOCKCOUNTORIG=0
1788         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1789                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1790         done
1791         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1792
1793         declare -i LOCKUNUSEDCOUNTORIG=0
1794         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1795                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1796         done
1797
1798         log 'second d29'
1799         ls -l $DIR/d29
1800         log 'done'
1801
1802         declare -i LOCKCOUNTCURRENT=0
1803         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1804                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1805         done
1806
1807         declare -i LOCKUNUSEDCOUNTCURRENT=0
1808         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1809                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1810         done
1811
1812         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1813                 lctl set_param -n ldlm.dump_namespaces ""
1814                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1815                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1816                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1817                 return 2
1818         fi
1819         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1820                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1821                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1822                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1823                 return 3
1824         fi
1825 }
1826 run_test 29 "IT_GETATTR regression  ============================"
1827
1828 test_30a() { # was test_30
1829         cp `which ls` $DIR || cp /bin/ls $DIR
1830         $DIR/ls / || error
1831         rm $DIR/ls
1832 }
1833 run_test 30a "execute binary from Lustre (execve) =============="
1834
1835 test_30b() {
1836         cp `which ls` $DIR || cp /bin/ls $DIR
1837         chmod go+rx $DIR/ls
1838         $RUNAS $DIR/ls / || error
1839         rm $DIR/ls
1840 }
1841 run_test 30b "execute binary from Lustre as non-root ==========="
1842
1843 test_30c() { # b=22376
1844         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1845         cp `which ls` $DIR || cp /bin/ls $DIR
1846         chmod a-rw $DIR/ls
1847         cancel_lru_locks mdc
1848         cancel_lru_locks osc
1849         $RUNAS $DIR/ls / || error
1850         rm -f $DIR/ls
1851 }
1852 run_test 30c "execute binary from Lustre without read perms ===="
1853
1854 test_31a() {
1855         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1856         $CHECKSTAT -a $DIR/f31 || error
1857 }
1858 run_test 31a "open-unlink file =================================="
1859
1860 test_31b() {
1861         touch $DIR/f31 || error
1862         ln $DIR/f31 $DIR/f31b || error
1863         $MULTIOP $DIR/f31b Ouc || error
1864         $CHECKSTAT -t file $DIR/f31 || error
1865 }
1866 run_test 31b "unlink file with multiple links while open ======="
1867
1868 test_31c() {
1869         touch $DIR/f31 || error
1870         ln $DIR/f31 $DIR/f31c || error
1871         multiop_bg_pause $DIR/f31 O_uc || return 1
1872         MULTIPID=$!
1873         $MULTIOP $DIR/f31c Ouc
1874         kill -USR1 $MULTIPID
1875         wait $MULTIPID
1876 }
1877 run_test 31c "open-unlink file with multiple links ============="
1878
1879 test_31d() {
1880         opendirunlink $DIR/d31d $DIR/d31d || error
1881         $CHECKSTAT -a $DIR/d31d || error
1882 }
1883 run_test 31d "remove of open directory ========================="
1884
1885 test_31e() { # bug 2904
1886         check_kernel_version 34 || return 0
1887         openfilleddirunlink $DIR/d31e || error
1888 }
1889 run_test 31e "remove of open non-empty directory ==============="
1890
1891 test_31f() { # bug 4554
1892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1893         set -vx
1894         test_mkdir $DIR/d31f
1895         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1896         cp /etc/hosts $DIR/d31f
1897         ls -l $DIR/d31f
1898         $GETSTRIPE $DIR/d31f/hosts
1899         multiop_bg_pause $DIR/d31f D_c || return 1
1900         MULTIPID=$!
1901
1902         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1903         test_mkdir $DIR/d31f
1904         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1905         cp /etc/hosts $DIR/d31f
1906         ls -l $DIR/d31f
1907         $GETSTRIPE $DIR/d31f/hosts
1908         multiop_bg_pause $DIR/d31f D_c || return 1
1909         MULTIPID2=$!
1910
1911         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1912         wait $MULTIPID || error "first opendir $MULTIPID failed"
1913
1914         sleep 6
1915
1916         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1917         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1918         set +vx
1919 }
1920 run_test 31f "remove of open directory with open-unlink file ==="
1921
1922 test_31g() {
1923         echo "-- cross directory link --"
1924         test_mkdir $DIR/d31ga
1925         test_mkdir $DIR/d31gb
1926         touch $DIR/d31ga/f
1927         ln $DIR/d31ga/f $DIR/d31gb/g
1928         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1929         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1930         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1931         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1932 }
1933 run_test 31g "cross directory link==============="
1934
1935 test_31h() {
1936         echo "-- cross directory link --"
1937         test_mkdir $DIR/d31h
1938         test_mkdir $DIR/d31h/dir
1939         touch $DIR/d31h/f
1940         ln $DIR/d31h/f $DIR/d31h/dir/g
1941         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1942         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1943         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1944         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1945 }
1946 run_test 31h "cross directory link under child==============="
1947
1948 test_31i() {
1949         echo "-- cross directory link --"
1950         test_mkdir $DIR/d31i
1951         test_mkdir $DIR/d31i/dir
1952         touch $DIR/d31i/dir/f
1953         ln $DIR/d31i/dir/f $DIR/d31i/g
1954         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1955         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1956         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1957         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1958 }
1959 run_test 31i "cross directory link under parent==============="
1960
1961
1962 test_31j() {
1963         test_mkdir $DIR/d31j
1964         test_mkdir $DIR/d31j/dir1
1965         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1966         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1967         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1968         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1969         return 0
1970 }
1971 run_test 31j "link for directory==============="
1972
1973
1974 test_31k() {
1975         test_mkdir $DIR/d31k
1976         touch $DIR/d31k/s
1977         touch $DIR/d31k/exist
1978         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1979         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1980         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1981         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1982         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1983         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1984         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1985         return 0
1986 }
1987 run_test 31k "link to file: the same, non-existing, dir==============="
1988
1989 test_31m() {
1990         test_mkdir $DIR/d31m
1991         touch $DIR/d31m/s
1992         test_mkdir $DIR/d31m2
1993         touch $DIR/d31m2/exist
1994         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1995         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1996         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1997         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1998         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1999         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2000         return 0
2001 }
2002 run_test 31m "link to file: the same, non-existing, dir==============="
2003
2004 test_31n() {
2005         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2006         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2007         nlink=$(stat --format=%h $DIR/$tfile)
2008         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2009         exec 173<$DIR/$tfile
2010         trap "exec 173<&-" EXIT
2011         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2012         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2013         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2014         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2015         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2016         exec 173<&-
2017 }
2018 run_test 31n "check link count of unlinked file"
2019
2020 cleanup_test32_mount() {
2021         trap 0
2022         $UMOUNT $DIR/$tdir/ext2-mountpoint
2023 }
2024
2025 test_32a() {
2026         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2027         echo "== more mountpoints and symlinks ================="
2028         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2029         trap cleanup_test32_mount EXIT
2030         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2031         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2032         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2033         cleanup_test32_mount
2034 }
2035 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2036
2037 test_32b() {
2038         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2039         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2040         trap cleanup_test32_mount EXIT
2041         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2042         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2043         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2044         cleanup_test32_mount
2045 }
2046 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2047
2048 test_32c() {
2049         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2050         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2051         trap cleanup_test32_mount EXIT
2052         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2053         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2054         test_mkdir -p $DIR/$tdir/d2/test_dir
2055         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2056         cleanup_test32_mount
2057 }
2058 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2059
2060 test_32d() {
2061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2062         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2063         trap cleanup_test32_mount EXIT
2064         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2065         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2066         test_mkdir -p $DIR/$tdir/d2/test_dir
2067         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2068         cleanup_test32_mount
2069 }
2070 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2071
2072 test_32e() {
2073         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2074         test_mkdir -p $DIR/d32e/tmp
2075         TMP_DIR=$DIR/d32e/tmp
2076         ln -s $DIR/d32e $TMP_DIR/symlink11
2077         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2078         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2079         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2080 }
2081 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2082
2083 test_32f() {
2084         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2085         test_mkdir -p $DIR/d32f/tmp
2086         TMP_DIR=$DIR/d32f/tmp
2087         ln -s $DIR/d32f $TMP_DIR/symlink11
2088         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2089         ls $DIR/d32f/tmp/symlink11  || error
2090         ls $DIR/d32f/symlink01 || error
2091 }
2092 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2093
2094 test_32g() {
2095         TMP_DIR=$DIR/$tdir/tmp
2096         test_mkdir -p $DIR/$tdir/tmp
2097         test_mkdir $DIR/${tdir}2
2098         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2099         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2100         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2101         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2102         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2103         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2104 }
2105 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2106
2107 test_32h() {
2108         rm -fr $DIR/$tdir $DIR/${tdir}2
2109         TMP_DIR=$DIR/$tdir/tmp
2110         test_mkdir -p $DIR/$tdir/tmp
2111         test_mkdir $DIR/${tdir}2
2112         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2113         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2114         ls $TMP_DIR/symlink12 || error
2115         ls $DIR/$tdir/symlink02  || error
2116 }
2117 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2118
2119 test_32i() {
2120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2121         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2122         trap cleanup_test32_mount EXIT
2123         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2124         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2125         touch $DIR/$tdir/test_file
2126         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2127         cleanup_test32_mount
2128 }
2129 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2130
2131 test_32j() {
2132         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2133         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2134         trap cleanup_test32_mount EXIT
2135         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2136         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2137         touch $DIR/$tdir/test_file
2138         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2139         cleanup_test32_mount
2140 }
2141 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2142
2143 test_32k() {
2144         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2145         rm -fr $DIR/$tdir
2146         trap cleanup_test32_mount EXIT
2147         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2148         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2149         test_mkdir -p $DIR/$tdir/d2
2150         touch $DIR/$tdir/d2/test_file || error
2151         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2152         cleanup_test32_mount
2153 }
2154 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2155
2156 test_32l() {
2157         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2158         rm -fr $DIR/$tdir
2159         trap cleanup_test32_mount EXIT
2160         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2161         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2162         test_mkdir -p $DIR/$tdir/d2
2163         touch $DIR/$tdir/d2/test_file
2164         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2165         cleanup_test32_mount
2166 }
2167 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2168
2169 test_32m() {
2170         rm -fr $DIR/d32m
2171         test_mkdir -p $DIR/d32m/tmp
2172         TMP_DIR=$DIR/d32m/tmp
2173         ln -s $DIR $TMP_DIR/symlink11
2174         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2175         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2176         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2177 }
2178 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2179
2180 test_32n() {
2181         rm -fr $DIR/d32n
2182         test_mkdir -p $DIR/d32n/tmp
2183         TMP_DIR=$DIR/d32n/tmp
2184         ln -s $DIR $TMP_DIR/symlink11
2185         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2186         ls -l $DIR/d32n/tmp/symlink11  || error
2187         ls -l $DIR/d32n/symlink01 || error
2188 }
2189 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2190
2191 test_32o() {
2192         rm -fr $DIR/d32o $DIR/$tfile
2193         touch $DIR/$tfile
2194         test_mkdir -p $DIR/d32o/tmp
2195         TMP_DIR=$DIR/d32o/tmp
2196         ln -s $DIR/$tfile $TMP_DIR/symlink12
2197         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2198         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2199         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2200         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2201         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2202 }
2203 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2204
2205 test_32p() {
2206     log 32p_1
2207         rm -fr $DIR/d32p
2208     log 32p_2
2209         rm -f $DIR/$tfile
2210     log 32p_3
2211         touch $DIR/$tfile
2212     log 32p_4
2213         test_mkdir -p $DIR/d32p/tmp
2214     log 32p_5
2215         TMP_DIR=$DIR/d32p/tmp
2216     log 32p_6
2217         ln -s $DIR/$tfile $TMP_DIR/symlink12
2218     log 32p_7
2219         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2220     log 32p_8
2221         cat $DIR/d32p/tmp/symlink12 || error
2222     log 32p_9
2223         cat $DIR/d32p/symlink02 || error
2224     log 32p_10
2225 }
2226 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2227
2228 cleanup_testdir_mount() {
2229         trap 0
2230         $UMOUNT $DIR/$tdir
2231 }
2232
2233 test_32q() {
2234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2235         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2236         trap cleanup_testdir_mount EXIT
2237         test_mkdir -p $DIR/$tdir
2238         touch $DIR/$tdir/under_the_mount
2239         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2240         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2241         cleanup_testdir_mount
2242 }
2243 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2244
2245 test_32r() {
2246         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2247         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2248         trap cleanup_testdir_mount EXIT
2249         test_mkdir -p $DIR/$tdir
2250         touch $DIR/$tdir/under_the_mount
2251         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2252         ls $DIR/$tdir | grep -q under_the_mount && error || true
2253         cleanup_testdir_mount
2254 }
2255 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2256
2257 test_33aa() {
2258         rm -f $DIR/$tfile
2259         touch $DIR/$tfile
2260         chmod 444 $DIR/$tfile
2261         chown $RUNAS_ID $DIR/$tfile
2262         log 33_1
2263         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2264         log 33_2
2265 }
2266 run_test 33aa "write file with mode 444 (should return error) ===="
2267
2268 test_33a() {
2269         rm -fr $DIR/d33
2270         test_mkdir -p $DIR/d33
2271         chown $RUNAS_ID $DIR/d33
2272         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2273         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2274                 error "open RDWR" || true
2275 }
2276 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2277
2278 test_33b() {
2279         rm -fr $DIR/d33
2280         test_mkdir -p $DIR/d33
2281         chown $RUNAS_ID $DIR/d33
2282         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2283 }
2284 run_test 33b "test open file with malformed flags (No panic and return error)"
2285
2286 test_33c() {
2287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2288         local ostnum
2289         local ostname
2290         local write_bytes
2291         local all_zeros
2292
2293         remote_ost_nodsh && skip "remote OST with nodsh" && return
2294         all_zeros=:
2295         rm -fr $DIR/d33
2296         test_mkdir -p $DIR/d33
2297         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2298
2299         sync
2300         for ostnum in $(seq $OSTCOUNT); do
2301                 # test-framework's OST numbering is one-based, while Lustre's
2302                 # is zero-based
2303                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2304                 # Parsing llobdstat's output sucks; we could grep the /proc
2305                 # path, but that's likely to not be as portable as using the
2306                 # llobdstat utility.  So we parse lctl output instead.
2307                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2308                         obdfilter/$ostname/stats |
2309                         awk '/^write_bytes/ {print $7}' )
2310                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2311                 if (( ${write_bytes:-0} > 0 ))
2312                 then
2313                         all_zeros=false
2314                         break;
2315                 fi
2316         done
2317
2318         $all_zeros || return 0
2319
2320         # Write four bytes
2321         echo foo > $DIR/d33/bar
2322         # Really write them
2323         sync
2324
2325         # Total up write_bytes after writing.  We'd better find non-zeros.
2326         for ostnum in $(seq $OSTCOUNT); do
2327                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2328                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2329                         obdfilter/$ostname/stats |
2330                         awk '/^write_bytes/ {print $7}' )
2331                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2332                 if (( ${write_bytes:-0} > 0 ))
2333                 then
2334                         all_zeros=false
2335                         break;
2336                 fi
2337         done
2338
2339         if $all_zeros
2340         then
2341                 for ostnum in $(seq $OSTCOUNT); do
2342                         ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2343                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2344                         do_facet ost$ostnum lctl get_param -n \
2345                                 obdfilter/$ostname/stats
2346                 done
2347                 error "OST not keeping write_bytes stats (b22312)"
2348         fi
2349 }
2350 run_test 33c "test llobdstat and write_bytes"
2351
2352 test_33d() {
2353         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2355         local MDTIDX=1
2356         local remote_dir=$DIR/$tdir/remote_dir
2357
2358         mkdir -p $DIR/$tdir
2359         $LFS mkdir -i $MDTIDX $remote_dir ||
2360                 error "create remote directory failed"
2361
2362         touch $remote_dir/$tfile
2363         chmod 444 $remote_dir/$tfile
2364         chown $RUNAS_ID $remote_dir/$tfile
2365
2366         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2367
2368         chown $RUNAS_ID $remote_dir
2369         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2370                                         error "create" || true
2371         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2372                                     error "open RDWR" || true
2373         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2374                                     error "create" || true
2375 }
2376 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2377
2378 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2379 test_34a() {
2380         rm -f $DIR/f34
2381         $MCREATE $DIR/f34 || error
2382         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2383         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2384         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2385         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2386 }
2387 run_test 34a "truncate file that has not been opened ==========="
2388
2389 test_34b() {
2390         [ ! -f $DIR/f34 ] && test_34a
2391         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2392         $OPENFILE -f O_RDONLY $DIR/f34
2393         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2394         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2395 }
2396 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2397
2398 test_34c() {
2399         [ ! -f $DIR/f34 ] && test_34a
2400         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2401         $OPENFILE -f O_RDWR $DIR/f34
2402         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2403         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2404 }
2405 run_test 34c "O_RDWR opening file-with-size works =============="
2406
2407 test_34d() {
2408         [ ! -f $DIR/f34 ] && test_34a
2409         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2410         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2411         rm $DIR/f34
2412 }
2413 run_test 34d "write to sparse file ============================="
2414
2415 test_34e() {
2416         rm -f $DIR/f34e
2417         $MCREATE $DIR/f34e || error
2418         $TRUNCATE $DIR/f34e 1000 || error
2419         $CHECKSTAT -s 1000 $DIR/f34e || error
2420         $OPENFILE -f O_RDWR $DIR/f34e
2421         $CHECKSTAT -s 1000 $DIR/f34e || error
2422 }
2423 run_test 34e "create objects, some with size and some without =="
2424
2425 test_34f() { # bug 6242, 6243
2426         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2427         SIZE34F=48000
2428         rm -f $DIR/f34f
2429         $MCREATE $DIR/f34f || error
2430         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2431         dd if=$DIR/f34f of=$TMP/f34f
2432         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2433         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2434         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2435         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2436         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2437 }
2438 run_test 34f "read from a file with no objects until EOF ======="
2439
2440 test_34g() {
2441         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2442         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2443         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2444         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2445         cancel_lru_locks osc
2446         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2447                 error "wrong size after lock cancel"
2448
2449         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2450         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2451                 error "expanding truncate failed"
2452         cancel_lru_locks osc
2453         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2454                 error "wrong expanded size after lock cancel"
2455 }
2456 run_test 34g "truncate long file ==============================="
2457
2458 test_34h() {
2459         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2460         local gid=10
2461         local sz=1000
2462
2463         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2464         sync # Flush the cache so that multiop below does not block on cache
2465              # flush when getting the group lock
2466         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2467         MULTIPID=$!
2468         sleep 2
2469
2470         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2471                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2472                 kill -9 $MULTIPID
2473         fi
2474         wait $MULTIPID
2475         local nsz=`stat -c %s $DIR/$tfile`
2476         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2477 }
2478 run_test 34h "ftruncate file under grouplock should not block"
2479
2480 test_35a() {
2481         cp /bin/sh $DIR/f35a
2482         chmod 444 $DIR/f35a
2483         chown $RUNAS_ID $DIR/f35a
2484         $RUNAS $DIR/f35a && error || true
2485         rm $DIR/f35a
2486 }
2487 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2488
2489 test_36a() {
2490         rm -f $DIR/f36
2491         utime $DIR/f36 || error
2492 }
2493 run_test 36a "MDS utime check (mknod, utime) ==================="
2494
2495 test_36b() {
2496         echo "" > $DIR/f36
2497         utime $DIR/f36 || error
2498 }
2499 run_test 36b "OST utime check (open, utime) ===================="
2500
2501 test_36c() {
2502         rm -f $DIR/d36/f36
2503         test_mkdir $DIR/d36
2504         chown $RUNAS_ID $DIR/d36
2505         $RUNAS utime $DIR/d36/f36 || error
2506 }
2507 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2508
2509 test_36d() {
2510         [ ! -d $DIR/d36 ] && test_36c
2511         echo "" > $DIR/d36/f36
2512         $RUNAS utime $DIR/d36/f36 || error
2513 }
2514 run_test 36d "non-root OST utime check (open, utime) ==========="
2515
2516 test_36e() {
2517         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2518         test_mkdir -p $DIR/$tdir
2519         touch $DIR/$tdir/$tfile
2520         $RUNAS utime $DIR/$tdir/$tfile && \
2521                 error "utime worked, expected failure" || true
2522 }
2523 run_test 36e "utime on non-owned file (should return error) ===="
2524
2525 subr_36fh() {
2526         local fl="$1"
2527         local LANG_SAVE=$LANG
2528         local LC_LANG_SAVE=$LC_LANG
2529         export LANG=C LC_LANG=C # for date language
2530
2531         DATESTR="Dec 20  2000"
2532         test_mkdir -p $DIR/$tdir
2533         lctl set_param fail_loc=$fl
2534         date; date +%s
2535         cp /etc/hosts $DIR/$tdir/$tfile
2536         sync & # write RPC generated with "current" inode timestamp, but delayed
2537         sleep 1
2538         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2539         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2540         cancel_lru_locks osc
2541         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2542         date; date +%s
2543         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2544                 echo "BEFORE: $LS_BEFORE" && \
2545                 echo "AFTER : $LS_AFTER" && \
2546                 echo "WANT  : $DATESTR" && \
2547                 error "$DIR/$tdir/$tfile timestamps changed" || true
2548
2549         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2550 }
2551
2552 test_36f() {
2553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2554         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2555         subr_36fh "0x80000214"
2556 }
2557 run_test 36f "utime on file racing with OST BRW write =========="
2558
2559 test_36g() {
2560         remote_ost_nodsh && skip "remote OST with nodsh" && return
2561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2562         local fmd_max_age
2563         local fmd_before
2564         local fmd_after
2565
2566         test_mkdir -p $DIR/$tdir
2567         fmd_max_age=$(do_facet ost1 \
2568                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2569                 head -n 1")
2570
2571         fmd_before=$(do_facet ost1 \
2572                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2573         touch $DIR/$tdir/$tfile
2574         sleep $((fmd_max_age + 12))
2575         fmd_after=$(do_facet ost1 \
2576                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2577
2578         echo "fmd_before: $fmd_before"
2579         echo "fmd_after: $fmd_after"
2580         [ "$fmd_after" -gt "$fmd_before" ] && \
2581                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2582                 error "fmd didn't expire after ping" || true
2583 }
2584 run_test 36g "filter mod data cache expiry ====================="
2585
2586 test_36h() {
2587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2588         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2589         subr_36fh "0x80000227"
2590 }
2591 run_test 36h "utime on file racing with OST BRW write =========="
2592
2593 # test_37 - duplicate with tests 32q 32r
2594
2595 test_38() {
2596         local file=$DIR/$tfile
2597         touch $file
2598         openfile -f O_DIRECTORY $file
2599         local RC=$?
2600         local ENOTDIR=20
2601         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2602         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2603 }
2604 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2605
2606 test_39() {
2607         touch $DIR/$tfile
2608         touch $DIR/${tfile}2
2609 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2610 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2611 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2612         sleep 2
2613         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2614         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2615                 echo "mtime"
2616                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2617                 echo "atime"
2618                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2619                 echo "ctime"
2620                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2621                 error "O_TRUNC didn't change timestamps"
2622         fi
2623 }
2624 run_test 39 "mtime changed on create ==========================="
2625
2626 test_39b() {
2627         test_mkdir -p $DIR/$tdir
2628         cp -p /etc/passwd $DIR/$tdir/fopen
2629         cp -p /etc/passwd $DIR/$tdir/flink
2630         cp -p /etc/passwd $DIR/$tdir/funlink
2631         cp -p /etc/passwd $DIR/$tdir/frename
2632         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2633
2634         sleep 1
2635         echo "aaaaaa" >> $DIR/$tdir/fopen
2636         echo "aaaaaa" >> $DIR/$tdir/flink
2637         echo "aaaaaa" >> $DIR/$tdir/funlink
2638         echo "aaaaaa" >> $DIR/$tdir/frename
2639
2640         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2641         local link_new=`stat -c %Y $DIR/$tdir/flink`
2642         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2643         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2644
2645         cat $DIR/$tdir/fopen > /dev/null
2646         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2647         rm -f $DIR/$tdir/funlink2
2648         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2649
2650         for (( i=0; i < 2; i++ )) ; do
2651                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2652                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2653                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2654                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2655
2656                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2657                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2658                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2659                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2660
2661                 cancel_lru_locks osc
2662                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2663         done
2664 }
2665 run_test 39b "mtime change on open, link, unlink, rename  ======"
2666
2667 # this should be set to past
2668 TEST_39_MTIME=`date -d "1 year ago" +%s`
2669
2670 # bug 11063
2671 test_39c() {
2672         touch $DIR1/$tfile
2673         sleep 2
2674         local mtime0=`stat -c %Y $DIR1/$tfile`
2675
2676         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2677         local mtime1=`stat -c %Y $DIR1/$tfile`
2678         [ "$mtime1" = $TEST_39_MTIME ] || \
2679                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2680
2681         local d1=`date +%s`
2682         echo hello >> $DIR1/$tfile
2683         local d2=`date +%s`
2684         local mtime2=`stat -c %Y $DIR1/$tfile`
2685         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2686                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2687
2688         mv $DIR1/$tfile $DIR1/$tfile-1
2689
2690         for (( i=0; i < 2; i++ )) ; do
2691                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2692                 [ "$mtime2" = "$mtime3" ] || \
2693                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2694
2695                 cancel_lru_locks osc
2696                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2697         done
2698 }
2699 run_test 39c "mtime change on rename ==========================="
2700
2701 # bug 21114
2702 test_39d() {
2703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2704         touch $DIR1/$tfile
2705
2706         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2707
2708         for (( i=0; i < 2; i++ )) ; do
2709                 local mtime=`stat -c %Y $DIR1/$tfile`
2710                 [ $mtime = $TEST_39_MTIME ] || \
2711                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2712
2713                 cancel_lru_locks osc
2714                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2715         done
2716 }
2717 run_test 39d "create, utime, stat =============================="
2718
2719 # bug 21114
2720 test_39e() {
2721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2722         touch $DIR1/$tfile
2723         local mtime1=`stat -c %Y $DIR1/$tfile`
2724
2725         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2726
2727         for (( i=0; i < 2; i++ )) ; do
2728                 local mtime2=`stat -c %Y $DIR1/$tfile`
2729                 [ $mtime2 = $TEST_39_MTIME ] || \
2730                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2731
2732                 cancel_lru_locks osc
2733                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2734         done
2735 }
2736 run_test 39e "create, stat, utime, stat ========================"
2737
2738 # bug 21114
2739 test_39f() {
2740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2741         touch $DIR1/$tfile
2742         mtime1=`stat -c %Y $DIR1/$tfile`
2743
2744         sleep 2
2745         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2746
2747         for (( i=0; i < 2; i++ )) ; do
2748                 local mtime2=`stat -c %Y $DIR1/$tfile`
2749                 [ $mtime2 = $TEST_39_MTIME ] || \
2750                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2751
2752                 cancel_lru_locks osc
2753                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2754         done
2755 }
2756 run_test 39f "create, stat, sleep, utime, stat ================="
2757
2758 # bug 11063
2759 test_39g() {
2760         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2761         echo hello >> $DIR1/$tfile
2762         local mtime1=`stat -c %Y $DIR1/$tfile`
2763
2764         sleep 2
2765         chmod o+r $DIR1/$tfile
2766
2767         for (( i=0; i < 2; i++ )) ; do
2768                 local mtime2=`stat -c %Y $DIR1/$tfile`
2769                 [ "$mtime1" = "$mtime2" ] || \
2770                         error "lost mtime: $mtime2, should be $mtime1"
2771
2772                 cancel_lru_locks osc
2773                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2774         done
2775 }
2776 run_test 39g "write, chmod, stat ==============================="
2777
2778 # bug 11063
2779 test_39h() {
2780         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2781         touch $DIR1/$tfile
2782         sleep 1
2783
2784         local d1=`date`
2785         echo hello >> $DIR1/$tfile
2786         local mtime1=`stat -c %Y $DIR1/$tfile`
2787
2788         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2789         local d2=`date`
2790         if [ "$d1" != "$d2" ]; then
2791                 echo "write and touch not within one second"
2792         else
2793                 for (( i=0; i < 2; i++ )) ; do
2794                         local mtime2=`stat -c %Y $DIR1/$tfile`
2795                         [ "$mtime2" = $TEST_39_MTIME ] || \
2796                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2797
2798                         cancel_lru_locks osc
2799                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2800                 done
2801         fi
2802 }
2803 run_test 39h "write, utime within one second, stat ============="
2804
2805 test_39i() {
2806         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2807         touch $DIR1/$tfile
2808         sleep 1
2809
2810         echo hello >> $DIR1/$tfile
2811         local mtime1=`stat -c %Y $DIR1/$tfile`
2812
2813         mv $DIR1/$tfile $DIR1/$tfile-1
2814
2815         for (( i=0; i < 2; i++ )) ; do
2816                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2817
2818                 [ "$mtime1" = "$mtime2" ] || \
2819                         error "lost mtime: $mtime2, should be $mtime1"
2820
2821                 cancel_lru_locks osc
2822                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2823         done
2824 }
2825 run_test 39i "write, rename, stat =============================="
2826
2827 test_39j() {
2828         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2829         start_full_debug_logging
2830         touch $DIR1/$tfile
2831         sleep 1
2832
2833         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2834         lctl set_param fail_loc=0x80000412
2835         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2836                 error "multiop failed"
2837         local multipid=$!
2838         local mtime1=`stat -c %Y $DIR1/$tfile`
2839
2840         mv $DIR1/$tfile $DIR1/$tfile-1
2841
2842         kill -USR1 $multipid
2843         wait $multipid || error "multiop close failed"
2844
2845         for (( i=0; i < 2; i++ )) ; do
2846                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2847                 [ "$mtime1" = "$mtime2" ] ||
2848                         error "mtime is lost on close: $mtime2, " \
2849                               "should be $mtime1"
2850
2851                 cancel_lru_locks osc
2852                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2853         done
2854         lctl set_param fail_loc=0
2855         stop_full_debug_logging
2856 }
2857 run_test 39j "write, rename, close, stat ======================="
2858
2859 test_39k() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2861         touch $DIR1/$tfile
2862         sleep 1
2863
2864         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2865         local multipid=$!
2866         local mtime1=`stat -c %Y $DIR1/$tfile`
2867
2868         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2869
2870         kill -USR1 $multipid
2871         wait $multipid || error "multiop close failed"
2872
2873         for (( i=0; i < 2; i++ )) ; do
2874                 local mtime2=`stat -c %Y $DIR1/$tfile`
2875
2876                 [ "$mtime2" = $TEST_39_MTIME ] || \
2877                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2878
2879                 cancel_lru_locks osc
2880                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2881         done
2882 }
2883 run_test 39k "write, utime, close, stat ========================"
2884
2885 # this should be set to future
2886 TEST_39_ATIME=`date -d "1 year" +%s`
2887
2888 test_39l() {
2889         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2890         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2891         local atime_diff=$(do_facet $SINGLEMDS \
2892                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
2893         rm -rf $DIR/$tdir
2894         mkdir -p $DIR/$tdir
2895
2896         # test setting directory atime to future
2897         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2898         local atime=$(stat -c %X $DIR/$tdir)
2899         [ "$atime" = $TEST_39_ATIME ] || \
2900                 error "atime is not set to future: $atime, $TEST_39_ATIME"
2901
2902         # test setting directory atime from future to now
2903         local d1=$(date +%s)
2904         ls $DIR/$tdir
2905         local d2=$(date +%s)
2906
2907         cancel_lru_locks mdc
2908         atime=$(stat -c %X $DIR/$tdir)
2909         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2910                 error "atime is not updated from future: $atime, $d1<atime<$d2"
2911
2912         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
2913         sleep 3
2914
2915         # test setting directory atime when now > dir atime + atime_diff
2916         d1=$(date +%s)
2917         ls $DIR/$tdir
2918         d2=$(date +%s)
2919         cancel_lru_locks mdc
2920         atime=$(stat -c %X $DIR/$tdir)
2921         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2922                 error "atime is not updated  : $atime, should be $d2"
2923
2924         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
2925         sleep 3
2926
2927         # test not setting directory atime when now < dir atime + atime_diff
2928         ls $DIR/$tdir
2929         cancel_lru_locks mdc
2930         atime=$(stat -c %X $DIR/$tdir)
2931         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2932                 error "atime is updated to $atime, should remain $d1<atime<$d2"
2933
2934         do_facet $SINGLEMDS \
2935                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
2936 }
2937 run_test 39l "directory atime update ==========================="
2938
2939 test_39m() {
2940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2941         touch $DIR1/$tfile
2942         sleep 2
2943         local far_past_mtime=$(date -d "May 29 1953" +%s)
2944         local far_past_atime=$(date -d "Dec 17 1903" +%s)
2945
2946         touch -m -d @$far_past_mtime $DIR1/$tfile
2947         touch -a -d @$far_past_atime $DIR1/$tfile
2948
2949         for (( i=0; i < 2; i++ )) ; do
2950                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2951                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2952                         error "atime or mtime set incorrectly"
2953
2954                 cancel_lru_locks osc
2955                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2956         done
2957 }
2958 run_test 39m "test atime and mtime before 1970"
2959
2960 test_40() {
2961         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2962         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2963         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2964 }
2965 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2966
2967 test_41() {
2968         # bug 1553
2969         small_write $DIR/f41 18
2970 }
2971 run_test 41 "test small file write + fstat ====================="
2972
2973 count_ost_writes() {
2974         lctl get_param -n osc.*.stats |
2975             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2976 }
2977
2978 # decent default
2979 WRITEBACK_SAVE=500
2980 DIRTY_RATIO_SAVE=40
2981 MAX_DIRTY_RATIO=50
2982 BG_DIRTY_RATIO_SAVE=10
2983 MAX_BG_DIRTY_RATIO=25
2984
2985 start_writeback() {
2986         trap 0
2987         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2988         # dirty_ratio, dirty_background_ratio
2989         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2990                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2991                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2992                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2993         else
2994                 # if file not here, we are a 2.4 kernel
2995                 kill -CONT `pidof kupdated`
2996         fi
2997 }
2998
2999 stop_writeback() {
3000         # setup the trap first, so someone cannot exit the test at the
3001         # exact wrong time and mess up a machine
3002         trap start_writeback EXIT
3003         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3004         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3005                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3006                 sysctl -w vm.dirty_writeback_centisecs=0
3007                 sysctl -w vm.dirty_writeback_centisecs=0
3008                 # save and increase /proc/sys/vm/dirty_ratio
3009                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3010                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3011                 # save and increase /proc/sys/vm/dirty_background_ratio
3012                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3013                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3014         else
3015                 # if file not here, we are a 2.4 kernel
3016                 kill -STOP `pidof kupdated`
3017         fi
3018 }
3019
3020 # ensure that all stripes have some grant before we test client-side cache
3021 setup_test42() {
3022         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3023                 dd if=/dev/zero of=$i bs=4k count=1
3024                 rm $i
3025         done
3026 }
3027
3028 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3029 # file truncation, and file removal.
3030 test_42a() {
3031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3032         setup_test42
3033         cancel_lru_locks osc
3034         stop_writeback
3035         sync; sleep 1; sync # just to be safe
3036         BEFOREWRITES=`count_ost_writes`
3037         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3038         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3039         AFTERWRITES=`count_ost_writes`
3040         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3041                 error "$BEFOREWRITES < $AFTERWRITES"
3042         start_writeback
3043 }
3044 run_test 42a "ensure that we don't flush on close =============="
3045
3046 test_42b() {
3047         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3048         setup_test42
3049         cancel_lru_locks osc
3050         stop_writeback
3051         sync
3052         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3053         BEFOREWRITES=`count_ost_writes`
3054         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3055         AFTERWRITES=`count_ost_writes`
3056         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3057                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3058         fi
3059         BEFOREWRITES=`count_ost_writes`
3060         sync || error "sync: $?"
3061         AFTERWRITES=`count_ost_writes`
3062         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3063                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3064         fi
3065         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3066         start_writeback
3067         return 0
3068 }
3069 run_test 42b "test destroy of file with cached dirty data ======"
3070
3071 # if these tests just want to test the effect of truncation,
3072 # they have to be very careful.  consider:
3073 # - the first open gets a {0,EOF}PR lock
3074 # - the first write conflicts and gets a {0, count-1}PW
3075 # - the rest of the writes are under {count,EOF}PW
3076 # - the open for truncate tries to match a {0,EOF}PR
3077 #   for the filesize and cancels the PWs.
3078 # any number of fixes (don't get {0,EOF} on open, match
3079 # composite locks, do smarter file size management) fix
3080 # this, but for now we want these tests to verify that
3081 # the cancellation with truncate intent works, so we
3082 # start the file with a full-file pw lock to match against
3083 # until the truncate.
3084 trunc_test() {
3085         test=$1
3086         file=$DIR/$test
3087         offset=$2
3088         cancel_lru_locks osc
3089         stop_writeback
3090         # prime the file with 0,EOF PW to match
3091         touch $file
3092         $TRUNCATE $file 0
3093         sync; sync
3094         # now the real test..
3095         dd if=/dev/zero of=$file bs=1024 count=100
3096         BEFOREWRITES=`count_ost_writes`
3097         $TRUNCATE $file $offset
3098         cancel_lru_locks osc
3099         AFTERWRITES=`count_ost_writes`
3100         start_writeback
3101 }
3102
3103 test_42c() {
3104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3105         trunc_test 42c 1024
3106         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3107             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3108         rm $file
3109 }
3110 run_test 42c "test partial truncate of file with cached dirty data"
3111
3112 test_42d() {
3113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3114         trunc_test 42d 0
3115         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3116             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3117         rm $file
3118 }
3119 run_test 42d "test complete truncate of file with cached dirty data"
3120
3121 test_42e() { # bug22074
3122         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3123         local TDIR=$DIR/${tdir}e
3124         local pagesz=$(page_size)
3125         local pages=16 # hardcoded 16 pages, don't change it.
3126         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3127         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3128         local max_dirty_mb
3129         local warmup_files
3130
3131         test_mkdir -p $DIR/${tdir}e
3132         $SETSTRIPE -c 1 $TDIR
3133         createmany -o $TDIR/f $files
3134
3135         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3136
3137         # we assume that with $OSTCOUNT files, at least one of them will
3138         # be allocated on OST0.
3139         warmup_files=$((OSTCOUNT * max_dirty_mb))
3140         createmany -o $TDIR/w $warmup_files
3141
3142         # write a large amount of data into one file and sync, to get good
3143         # avail_grant number from OST.
3144         for ((i=0; i<$warmup_files; i++)); do
3145                 idx=$($GETSTRIPE -i $TDIR/w$i)
3146                 [ $idx -ne 0 ] && continue
3147                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3148                 break
3149         done
3150         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3151         sync
3152         $LCTL get_param $proc_osc0/cur_dirty_bytes
3153         $LCTL get_param $proc_osc0/cur_grant_bytes
3154
3155         # create as much dirty pages as we can while not to trigger the actual
3156         # RPCs directly. but depends on the env, VFS may trigger flush during this
3157         # period, hopefully we are good.
3158         for ((i=0; i<$warmup_files; i++)); do
3159                 idx=$($GETSTRIPE -i $TDIR/w$i)
3160                 [ $idx -ne 0 ] && continue
3161                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3162         done
3163         $LCTL get_param $proc_osc0/cur_dirty_bytes
3164         $LCTL get_param $proc_osc0/cur_grant_bytes
3165
3166         # perform the real test
3167         $LCTL set_param $proc_osc0/rpc_stats 0
3168         for ((;i<$files; i++)); do
3169                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3170                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3171         done
3172         sync
3173         $LCTL get_param $proc_osc0/rpc_stats
3174
3175         local percent=0
3176         local have_ppr=false
3177         $LCTL get_param $proc_osc0/rpc_stats |
3178                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3179                         # skip lines until we are at the RPC histogram data
3180                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3181                         $have_ppr || continue
3182
3183                         # we only want the percent stat for < 16 pages
3184                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3185
3186                         percent=$((percent + WPCT))
3187                         if [ $percent -gt 15 ]; then
3188                                 error "less than 16-pages write RPCs" \
3189                                       "$percent% > 15%"
3190                                 break
3191                         fi
3192                 done
3193         rm -rf $TDIR
3194 }
3195 run_test 42e "verify sub-RPC writes are not done synchronously"
3196
3197 test_43() {
3198         test_mkdir -p $DIR/$tdir
3199         cp -p /bin/ls $DIR/$tdir/$tfile
3200         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3201         pid=$!
3202         # give multiop a chance to open
3203         sleep 1
3204
3205         $DIR/$tdir/$tfile && error || true
3206         kill -USR1 $pid
3207 }
3208 run_test 43 "execution of file opened for write should return -ETXTBSY"
3209
3210 test_43a() {
3211         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3212         test_mkdir -p $DIR/$tdir
3213         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3214                         cp -p multiop $DIR/$tdir/multiop
3215         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3216                         return 1
3217         MULTIOP_PID=$!
3218         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3219         kill -USR1 $MULTIOP_PID || return 2
3220         wait $MULTIOP_PID || return 3
3221         rm $TMP/test43.junk
3222 }
3223 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3224
3225 test_43b() {
3226         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3227         test_mkdir -p $DIR/$tdir
3228         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3229                         cp -p multiop $DIR/$tdir/multiop
3230         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3231                         return 1
3232         MULTIOP_PID=$!
3233         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3234         kill -USR1 $MULTIOP_PID || return 2
3235         wait $MULTIOP_PID || return 3
3236         rm $TMP/test43.junk
3237 }
3238 run_test 43b "truncate of file being executed should return -ETXTBSY"
3239
3240 test_43c() {
3241         local testdir="$DIR/$tdir"
3242         test_mkdir -p $DIR/$tdir
3243         cp $SHELL $testdir/
3244         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3245                 ( cd $testdir && md5sum -c)
3246 }
3247 run_test 43c "md5sum of copy into lustre========================"
3248
3249 test_44() {
3250         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3251         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3252         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3253 }
3254 run_test 44 "zero length read from a sparse stripe ============="
3255
3256 test_44a() {
3257     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3258                          awk '{print $2}'`
3259     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3260     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3261     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3262                       awk '{print $2}'`
3263     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3264         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3265     fi
3266
3267     OFFSETS="0 $((stride/2)) $((stride-1))"
3268     for offset in $OFFSETS ; do
3269       for i in `seq 0 $((nstripe-1))`; do
3270         local GLOBALOFFSETS=""
3271         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3272         local myfn=$DIR/d44a-$size
3273         echo "--------writing $myfn at $size"
3274         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3275         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3276         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3277                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3278
3279         for j in `seq 0 $((nstripe-1))`; do
3280             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3281             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3282             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3283         done
3284         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3285                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3286         rm -f $myfn
3287       done
3288     done
3289 }
3290 run_test 44a "test sparse pwrite ==============================="
3291
3292 dirty_osc_total() {
3293         tot=0
3294         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3295                 tot=$(($tot + $d))
3296         done
3297         echo $tot
3298 }
3299 do_dirty_record() {
3300         before=`dirty_osc_total`
3301         echo executing "\"$*\""
3302         eval $*
3303         after=`dirty_osc_total`
3304         echo before $before, after $after
3305 }
3306 test_45() {
3307         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3308         f="$DIR/f45"
3309         # Obtain grants from OST if it supports it
3310         echo blah > ${f}_grant
3311         stop_writeback
3312         sync
3313         do_dirty_record "echo blah > $f"
3314         [ $before -eq $after ] && error "write wasn't cached"
3315         do_dirty_record "> $f"
3316         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3317         do_dirty_record "echo blah > $f"
3318         [ $before -eq $after ] && error "write wasn't cached"
3319         do_dirty_record "sync"
3320         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3321         do_dirty_record "echo blah > $f"
3322         [ $before -eq $after ] && error "write wasn't cached"
3323         do_dirty_record "cancel_lru_locks osc"
3324         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3325         start_writeback
3326 }
3327 run_test 45 "osc io page accounting ============================"
3328
3329 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3330 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3331 # objects offset and an assert hit when an rpc was built with 1023's mapped
3332 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3333 test_46() {
3334         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3335         f="$DIR/f46"
3336         stop_writeback
3337         sync
3338         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3339         sync
3340         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3341         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3342         sync
3343         start_writeback
3344 }
3345 run_test 46 "dirtying a previously written page ================"
3346
3347 # test_47 is removed "Device nodes check" is moved to test_28
3348
3349 test_48a() { # bug 2399
3350         check_kernel_version 34 || return 0
3351         test_mkdir -p $DIR/$tdir
3352         cd $DIR/$tdir
3353         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3354         test_mkdir $DIR/$tdir || error "recreate directory failed"
3355         touch foo || error "'touch foo' failed after recreating cwd"
3356         test_mkdir $DIR/$tdir/bar ||
3357                      error "'mkdir foo' failed after recreating cwd"
3358         if check_kernel_version 44; then
3359                 touch .foo || error "'touch .foo' failed after recreating cwd"
3360                 test_mkdir $DIR/$tdir/.bar ||
3361                               error "'mkdir .foo' failed after recreating cwd"
3362         fi
3363         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3364         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3365         cd . || error "'cd .' failed after recreating cwd"
3366         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3367         rmdir . && error "'rmdir .' worked after recreating cwd"
3368         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3369         cd .. || error "'cd ..' failed after recreating cwd"
3370 }
3371 run_test 48a "Access renamed working dir (should return errors)="
3372
3373 test_48b() { # bug 2399
3374         check_kernel_version 34 || return 0
3375         rm -rf $DIR/$tdir
3376         test_mkdir -p $DIR/$tdir
3377         cd $DIR/$tdir
3378         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3379         touch foo && error "'touch foo' worked after removing cwd"
3380         test_mkdir $DIR/$tdir/foo &&
3381                      error "'mkdir foo' worked after removing cwd"
3382         if check_kernel_version 44; then
3383                 touch .foo && error "'touch .foo' worked after removing cwd"
3384                 test_mkdir $DIR/$tdir/.foo &&
3385                               error "'mkdir .foo' worked after removing cwd"
3386         fi
3387         ls . > /dev/null && error "'ls .' worked after removing cwd"
3388         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3389         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3390         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3391         rmdir . && error "'rmdir .' worked after removing cwd"
3392         ln -s . foo && error "'ln -s .' worked after removing cwd"
3393         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3394 }
3395 run_test 48b "Access removed working dir (should return errors)="
3396
3397 test_48c() { # bug 2350
3398         check_kernel_version 36 || return 0
3399         #lctl set_param debug=-1
3400         #set -vx
3401         rm -rf $DIR/$tdir
3402         test_mkdir -p $DIR/$tdir/dir
3403         cd $DIR/$tdir/dir
3404         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3405         $TRACE touch foo && error "touch foo worked after removing cwd"
3406         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3407         if check_kernel_version 44; then
3408                 touch .foo && error "touch .foo worked after removing cwd"
3409                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3410         fi
3411         $TRACE ls . && error "'ls .' worked after removing cwd"
3412         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3413         is_patchless || ( $TRACE cd . &&
3414                         error "'cd .' worked after removing cwd" )
3415         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3416         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3417         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3418         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3419 }
3420 run_test 48c "Access removed working subdir (should return errors)"
3421
3422 test_48d() { # bug 2350
3423         check_kernel_version 36 || return 0
3424         #lctl set_param debug=-1
3425         #set -vx
3426         rm -rf $DIR/$tdir
3427         test_mkdir -p $DIR/$tdir/dir
3428         cd $DIR/$tdir/dir
3429         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3430         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3431         $TRACE touch foo && error "'touch foo' worked after removing parent"
3432         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3433         if check_kernel_version 44; then
3434                 touch .foo && error "'touch .foo' worked after removing parent"
3435                 test_mkdir .foo &&
3436                               error "mkdir .foo worked after removing parent"
3437         fi
3438         $TRACE ls . && error "'ls .' worked after removing parent"
3439         $TRACE ls .. && error "'ls ..' worked after removing parent"
3440         is_patchless || ( $TRACE cd . &&
3441                         error "'cd .' worked after recreate parent" )
3442         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3443         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3444         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3445         is_patchless || ( $TRACE cd .. &&
3446                         error "'cd ..' worked after removing parent" || true )
3447 }
3448 run_test 48d "Access removed parent subdir (should return errors)"
3449
3450 test_48e() { # bug 4134
3451         check_kernel_version 41 || return 0
3452         #lctl set_param debug=-1
3453         #set -vx
3454         rm -rf $DIR/$tdir
3455         test_mkdir -p $DIR/$tdir/dir
3456         cd $DIR/$tdir/dir
3457         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3458         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3459         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3460         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3461         # On a buggy kernel addition of "touch foo" after cd .. will
3462         # produce kernel oops in lookup_hash_it
3463         touch ../foo && error "'cd ..' worked after recreate parent"
3464         cd $DIR
3465         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3466 }
3467 run_test 48e "Access to recreated parent subdir (should return errors)"
3468
3469 test_49() { # LU-1030
3470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3471         # get ost1 size - lustre-OST0000
3472         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3473         # write 800M at maximum
3474         [ $ost1_size -gt 819200 ] && ost1_size=819200
3475
3476         lfs setstripe -c 1 -i 0 $DIR/$tfile
3477         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3478         local dd_pid=$!
3479
3480         # change max_pages_per_rpc while writing the file
3481         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3482         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3483         # loop until dd process exits
3484         while ps ax -opid | grep -wq $dd_pid; do
3485                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3486                 sleep $((RANDOM % 5 + 1))
3487         done
3488         # restore original max_pages_per_rpc
3489         $LCTL set_param $osc1_mppc=$orig_mppc
3490         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3491 }
3492 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3493
3494 test_50() {
3495         # bug 1485
3496         test_mkdir $DIR/$tdir
3497         cd $DIR/$tdir
3498         ls /proc/$$/cwd || error
3499 }
3500 run_test 50 "special situations: /proc symlinks  ==============="
3501
3502 test_51a() {    # was test_51
3503         # bug 1516 - create an empty entry right after ".." then split dir
3504         test_mkdir -p $DIR/$tdir
3505         touch $DIR/$tdir/foo
3506         $MCREATE $DIR/$tdir/bar
3507         rm $DIR/$tdir/foo
3508         createmany -m $DIR/$tdir/longfile 201
3509         FNUM=202
3510         while [ `ls -sd $DIR/$tdir | awk '{ print $1 }'` -eq 4 ]; do
3511                 $MCREATE $DIR/$tdir/longfile$FNUM
3512                 FNUM=$(($FNUM + 1))
3513                 echo -n "+"
3514         done
3515         echo
3516         ls -l $DIR/$tdir > /dev/null || error
3517 }
3518 run_test 51a "special situations: split htree with empty entry =="
3519
3520 export NUMTEST=70000
3521 test_51b() {
3522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3523         local BASE=$DIR/$tdir
3524
3525         # cleanup the directory
3526         rm -fr $BASE
3527
3528         test_mkdir -p $BASE
3529
3530         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3531         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3532         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3533                 return
3534
3535         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3536                 echo "reduced count to $NUMTEST due to inodes"
3537
3538         # need to check free space for the directories as well
3539         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3540         numfree=$((blkfree / 4))
3541         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3542                 echo "reduced count to $NUMTEST due to blocks"
3543
3544         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3545                 echo "failed" > $BASE/fnum
3546 }
3547 run_test 51b "exceed 64k subdirectory nlink limit"
3548
3549 test_51ba() { # LU-993
3550         local BASE=$DIR/$tdir
3551         # unlink all but 100 subdirectories, then check it still works
3552         local LEFT=100
3553         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3554
3555         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3556         local DELETE=$((NUMTEST - LEFT))
3557
3558         # continue on to run this test even if 51b didn't finish,
3559         # just to delete the many subdirectories created.
3560         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3561
3562         # for ldiskfs the nlink count should be 1, but this is OSD specific
3563         # and so this is listed for informational purposes only
3564         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3565         unlinkmany -d $BASE/d $DELETE
3566         RC=$?
3567
3568         if [ $RC -ne 0 ]; then
3569                 if [ "$NUMPREV" == "failed" ]; then
3570                         skip "previous setup failed"
3571                         return 0
3572                 else
3573                         error "unlink of first $DELETE subdirs failed"
3574                         return $RC
3575                 fi
3576         fi
3577
3578         echo "nlink between: $(stat -c %h $BASE)"
3579         # trim the first line of ls output
3580         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3581         [ $FOUND -ne $LEFT ] &&
3582                 error "can't find subdirs: found only $FOUND/$LEFT"
3583
3584         unlinkmany -d $BASE/d $DELETE $LEFT ||
3585                 error "unlink of second $LEFT subdirs failed"
3586         # regardless of whether the backing filesystem tracks nlink accurately
3587         # or not, the nlink count shouldn't be more than "." and ".." here
3588         local AFTER=$(stat -c %h $BASE)
3589         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3590                 echo "nlink after: $AFTER"
3591 }
3592 run_test 51ba "verify nlink for many subdirectory cleanup"
3593
3594 test_51d() {
3595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3596         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3597         test_mkdir -p $DIR/$tdir
3598         createmany -o $DIR/$tdir/t- 1000
3599         $GETSTRIPE $DIR/$tdir > $TMP/files
3600         for N in `seq 0 $((OSTCOUNT - 1))`; do
3601             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3602             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3603             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3604         done
3605         unlinkmany $DIR/$tdir/t- 1000
3606
3607         NLAST=0
3608         for N in `seq 1 $((OSTCOUNT - 1))`; do
3609             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3610                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3611             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3612                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3613
3614             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3615                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3616             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3617                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3618             NLAST=$N
3619         done
3620 }
3621 run_test 51d "check object distribution ===================="
3622
3623 test_52a() {
3624         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3625         test_mkdir -p $DIR/$tdir
3626         touch $DIR/$tdir/foo
3627         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3628         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3629         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3630         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3631         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3632                                         error "link worked"
3633         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3634         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3635         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3636                                                      error "lsattr"
3637         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3638         cp -r $DIR/$tdir /tmp/
3639         rm -fr $DIR/$tdir || error "cleanup rm failed"
3640 }
3641 run_test 52a "append-only flag test (should return errors) ====="
3642
3643 test_52b() {
3644         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3645         test_mkdir -p $DIR/$tdir
3646         touch $DIR/$tdir/foo
3647         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3648         cat test > $DIR/$tdir/foo && error "cat test worked"
3649         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3650         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3651         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3652                                         error "link worked"
3653         echo foo >> $DIR/$tdir/foo && error "echo worked"
3654         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3655         [ -f $DIR/$tdir/foo ] || error
3656         [ -f $DIR/$tdir/foo_ren ] && error
3657         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3658                                                         error "lsattr"
3659         chattr -i $DIR/$tdir/foo || error "chattr failed"
3660
3661         rm -fr $DIR/$tdir || error
3662 }
3663 run_test 52b "immutable flag test (should return errors) ======="
3664
3665 test_53() {
3666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3667         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3668         remote_ost_nodsh && skip "remote OST with nodsh" && return
3669
3670         local param
3671         local ostname
3672         local mds_last
3673         local ost_last
3674         local ostnum
3675         local node
3676
3677         # only test MDT0000
3678         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3679         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3680                 param=`echo ${value[0]} | cut -d "=" -f1`
3681                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3682                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3683                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3684                 node=$(facet_active_host ost$((ostnum+1)))
3685                 param="obdfilter.$ostname.last_id"
3686                 ost_last=$(do_node $node lctl get_param -n $param | head -n 1)
3687                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3688                 if [ $ost_last != $mds_last ]; then
3689                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3690                 fi
3691         done
3692 }
3693 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3694
3695 test_54a() {
3696         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3697         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3698         $SOCKETSERVER $DIR/socket
3699         $SOCKETCLIENT $DIR/socket || error
3700         $MUNLINK $DIR/socket
3701 }
3702 run_test 54a "unix domain socket test =========================="
3703
3704 test_54b() {
3705         f="$DIR/f54b"
3706         mknod $f c 1 3
3707         chmod 0666 $f
3708         dd if=/dev/zero of=$f bs=`page_size` count=1
3709 }
3710 run_test 54b "char device works in lustre ======================"
3711
3712 find_loop_dev() {
3713         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3714         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3715         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3716
3717         for i in `seq 3 7`; do
3718                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3719                 LOOPDEV=$LOOPBASE$i
3720                 LOOPNUM=$i
3721                 break
3722         done
3723 }
3724
3725 test_54c() {
3726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3727         tfile="$DIR/f54c"
3728         tdir="$DIR/d54c"
3729         loopdev="$DIR/loop54c"
3730
3731         find_loop_dev
3732         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3733         mknod $loopdev b 7 $LOOPNUM
3734         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3735         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3736         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3737         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3738         test_mkdir -p $tdir
3739         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3740         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3741         df $tdir
3742         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3743         $UMOUNT $tdir
3744         losetup -d $loopdev
3745         rm $loopdev
3746 }
3747 run_test 54c "block device works in lustre ====================="
3748
3749 test_54d() {
3750         f="$DIR/f54d"
3751         string="aaaaaa"
3752         mknod $f p
3753         [ "$string" = `echo $string > $f | cat $f` ] || error
3754 }
3755 run_test 54d "fifo device works in lustre ======================"
3756
3757 test_54e() {
3758         check_kernel_version 46 || return 0
3759         f="$DIR/f54e"
3760         string="aaaaaa"
3761         cp -aL /dev/console $f
3762         echo $string > $f || error
3763 }
3764 run_test 54e "console/tty device works in lustre ======================"
3765
3766 #The test_55 used to be iopen test and it was removed by bz#24037.
3767 #run_test 55 "check iopen_connect_dentry() ======================"
3768
3769 test_56a() {    # was test_56
3770         rm -rf $DIR/$tdir
3771         $SETSTRIPE -d $DIR
3772         test_mkdir $DIR/$tdir
3773         test_mkdir $DIR/$tdir/dir
3774         NUMFILES=3
3775         NUMFILESx2=$(($NUMFILES * 2))
3776         for i in `seq 1 $NUMFILES` ; do
3777                 touch $DIR/$tdir/file$i
3778                 touch $DIR/$tdir/dir/file$i
3779         done
3780
3781         # test lfs getstripe with --recursive
3782         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3783         [ $FILENUM -eq $NUMFILESx2 ] ||
3784                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3785         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3786         [ $FILENUM -eq $NUMFILES ] ||
3787                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3788         echo "$GETSTRIPE --recursive passed."
3789
3790         # test lfs getstripe with file instead of dir
3791         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3792         [ $FILENUM  -eq 1 ] || error \
3793                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3794         echo "$GETSTRIPE file1 passed."
3795
3796         #test lfs getstripe with --verbose
3797         [ `$GETSTRIPE --verbose $DIR/$tdir |
3798                         grep -c lmm_magic` -eq $NUMFILES ] ||
3799                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3800         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3801             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3802         echo "$GETSTRIPE --verbose passed."
3803
3804         #test lfs getstripe with --obd
3805         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3806                                         grep -q "unknown obduuid" ||
3807                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3808
3809         [  "$OSTCOUNT" -lt 2 ] &&
3810                 skip_env "skipping other $GETSTRIPE --obd test" && return
3811
3812         OSTIDX=1
3813         OBDUUID=$(ostuuid_from_index $OSTIDX)
3814         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
3815         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
3816         [ $FOUND -eq $FILENUM ] ||
3817                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3818         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
3819                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3820                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3821                 error "$GETSTRIPE --obd: should not show file on other obd"
3822         echo "$GETSTRIPE --obd passed"
3823 }
3824 run_test 56a "check $GETSTRIPE"
3825
3826 NUMFILES=3
3827 NUMDIRS=3
3828 setup_56() {
3829         local LOCAL_NUMFILES="$1"
3830         local LOCAL_NUMDIRS="$2"
3831         local MKDIR_PARAMS="$3"
3832
3833         if [ ! -d "$TDIR" ] ; then
3834                 test_mkdir -p $TDIR
3835                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3836                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3837                         touch $TDIR/file$i
3838                 done
3839                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3840                         test_mkdir $TDIR/dir$i
3841                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3842                                 touch $TDIR/dir$i/file$j
3843                         done
3844                 done
3845         fi
3846 }
3847
3848 setup_56_special() {
3849         LOCAL_NUMFILES=$1
3850         LOCAL_NUMDIRS=$2
3851         setup_56 $1 $2
3852         if [ ! -e "$TDIR/loop1b" ] ; then
3853                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3854                         mknod $TDIR/loop${i}b b 7 $i
3855                         mknod $TDIR/null${i}c c 1 3
3856                         ln -s $TDIR/file1 $TDIR/link${i}l
3857                 done
3858                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3859                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3860                         mknod $TDIR/dir$i/null${i}c c 1 3
3861                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3862                 done
3863         fi
3864 }
3865
3866 test_56g() {
3867         $SETSTRIPE -d $DIR
3868
3869         TDIR=$DIR/${tdir}g
3870         setup_56 $NUMFILES $NUMDIRS
3871
3872         EXPECTED=$(($NUMDIRS + 2))
3873         # test lfs find with -name
3874         for i in $(seq 1 $NUMFILES) ; do
3875                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3876                 [ $NUMS -eq $EXPECTED ] ||
3877                         error "lfs find -name \"*$i\" $TDIR wrong: "\
3878                               "found $NUMS, expected $EXPECTED"
3879         done
3880 }
3881 run_test 56g "check lfs find -name ============================="
3882
3883 test_56h() {
3884         $SETSTRIPE -d $DIR
3885
3886         TDIR=$DIR/${tdir}g
3887         setup_56 $NUMFILES $NUMDIRS
3888
3889         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
3890         # test lfs find with ! -name
3891         for i in $(seq 1 $NUMFILES) ; do
3892                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
3893                 [ $NUMS -eq $EXPECTED ] ||
3894                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
3895                               "found $NUMS, expected $EXPECTED"
3896         done
3897 }
3898 run_test 56h "check lfs find ! -name ============================="
3899
3900 test_56i() {
3901        tdir=${tdir}i
3902        test_mkdir -p $DIR/$tdir
3903        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3904        CMD="$LFIND -ost $UUID $DIR/$tdir"
3905        OUT=$($CMD)
3906        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
3907 }
3908 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3909
3910 test_56j() {
3911         TDIR=$DIR/${tdir}g
3912         setup_56_special $NUMFILES $NUMDIRS
3913
3914         EXPECTED=$((NUMDIRS + 1))
3915         CMD="$LFIND -type d $TDIR"
3916         NUMS=$($CMD | wc -l)
3917         [ $NUMS -eq $EXPECTED ] ||
3918                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3919 }
3920 run_test 56j "check lfs find -type d ============================="
3921
3922 test_56k() {
3923         TDIR=$DIR/${tdir}g
3924         setup_56_special $NUMFILES $NUMDIRS
3925
3926         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3927         CMD="$LFIND -type f $TDIR"
3928         NUMS=$($CMD | wc -l)
3929         [ $NUMS -eq $EXPECTED ] ||
3930                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3931 }
3932 run_test 56k "check lfs find -type f ============================="
3933
3934 test_56l() {
3935         TDIR=$DIR/${tdir}g
3936         setup_56_special $NUMFILES $NUMDIRS
3937
3938         EXPECTED=$((NUMDIRS + NUMFILES))
3939         CMD="$LFIND -type b $TDIR"
3940         NUMS=$($CMD | wc -l)
3941         [ $NUMS -eq $EXPECTED ] ||
3942                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3943 }
3944 run_test 56l "check lfs find -type b ============================="
3945
3946 test_56m() {
3947         TDIR=$DIR/${tdir}g
3948         setup_56_special $NUMFILES $NUMDIRS
3949
3950         EXPECTED=$((NUMDIRS + NUMFILES))
3951         CMD="$LFIND -type c $TDIR"
3952         NUMS=$($CMD | wc -l)
3953         [ $NUMS -eq $EXPECTED ] ||
3954                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3955 }
3956 run_test 56m "check lfs find -type c ============================="
3957
3958 test_56n() {
3959         TDIR=$DIR/${tdir}g
3960         setup_56_special $NUMFILES $NUMDIRS
3961
3962         EXPECTED=$((NUMDIRS + NUMFILES))
3963         CMD="$LFIND -type l $TDIR"
3964         NUMS=$($CMD | wc -l)
3965         [ $NUMS -eq $EXPECTED ] ||
3966                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3967 }
3968 run_test 56n "check lfs find -type l ============================="
3969
3970 test_56o() {
3971         TDIR=$DIR/${tdir}o
3972         setup_56 $NUMFILES $NUMDIRS
3973
3974         utime $TDIR/file1 > /dev/null || error "utime (1)"
3975         utime $TDIR/file2 > /dev/null || error "utime (2)"
3976         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3977         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3978         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3979         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
3980
3981         EXPECTED=4
3982         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
3983         [ $NUMS -eq $EXPECTED ] || \
3984                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
3985
3986         EXPECTED=12
3987         CMD="$LFIND -mtime 0 $TDIR"
3988         NUMS=$($CMD | wc -l)
3989         [ $NUMS -eq $EXPECTED ] ||
3990                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3991 }
3992 run_test 56o "check lfs find -mtime for old files =========================="
3993
3994 test_56p() {
3995         [ $RUNAS_ID -eq $UID ] &&
3996                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3997
3998         TDIR=$DIR/${tdir}p
3999         setup_56 $NUMFILES $NUMDIRS
4000
4001         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4002         EXPECTED=$NUMFILES
4003         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4004         NUMS=$($CMD | wc -l)
4005         [ $NUMS -eq $EXPECTED ] || \
4006                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4007
4008         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4009         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4010         NUMS=$($CMD | wc -l)
4011         [ $NUMS -eq $EXPECTED ] || \
4012                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4013 }
4014 run_test 56p "check lfs find -uid and ! -uid ==============================="
4015
4016 test_56q() {
4017         [ $RUNAS_ID -eq $UID ] &&
4018                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4019
4020         TDIR=$DIR/${tdir}q
4021         setup_56 $NUMFILES $NUMDIRS
4022
4023         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4024
4025         EXPECTED=$NUMFILES
4026         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4027         NUMS=$($CMD | wc -l)
4028         [ $NUMS -eq $EXPECTED ] ||
4029                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4030
4031         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4032         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4033         NUMS=$($CMD | wc -l)
4034         [ $NUMS -eq $EXPECTED ] ||
4035                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4036 }
4037 run_test 56q "check lfs find -gid and ! -gid ==============================="
4038
4039 test_56r() {
4040         TDIR=$DIR/${tdir}r
4041         setup_56 $NUMFILES $NUMDIRS
4042
4043         EXPECTED=12
4044         CMD="$LFIND -size 0 -type f $TDIR"
4045         NUMS=$($CMD | wc -l)
4046         [ $NUMS -eq $EXPECTED ] ||
4047                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4048         EXPECTED=0
4049         CMD="$LFIND ! -size 0 -type f $TDIR"
4050         NUMS=$($CMD | wc -l)
4051         [ $NUMS -eq $EXPECTED ] ||
4052                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4053         echo "test" > $TDIR/$tfile
4054         echo "test2" > $TDIR/$tfile.2 && sync
4055         EXPECTED=1
4056         CMD="$LFIND -size 5 -type f $TDIR"
4057         NUMS=$($CMD | wc -l)
4058         [ $NUMS -eq $EXPECTED ] ||
4059                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4060         EXPECTED=1
4061         CMD="$LFIND -size +5 -type f $TDIR"
4062         NUMS=$($CMD | wc -l)
4063         [ $NUMS -eq $EXPECTED ] ||
4064                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4065         EXPECTED=2
4066         CMD="$LFIND -size +0 -type f $TDIR"
4067         NUMS=$($CMD | wc -l)
4068         [ $NUMS -eq $EXPECTED ] ||
4069                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4070         EXPECTED=2
4071         CMD="$LFIND ! -size -5 -type f $TDIR"
4072         NUMS=$($CMD | wc -l)
4073         [ $NUMS -eq $EXPECTED ] ||
4074                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4075         EXPECTED=12
4076         CMD="$LFIND -size -5 -type f $TDIR"
4077         NUMS=$($CMD | wc -l)
4078         [ $NUMS -eq $EXPECTED ] ||
4079                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4080 }
4081 run_test 56r "check lfs find -size works =========================="
4082
4083 test_56s() { # LU-611
4084         TDIR=$DIR/${tdir}s
4085         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4086
4087         if [ $OSTCOUNT -gt 1 ]; then
4088                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4089                 ONESTRIPE=4
4090                 EXTRA=4
4091         else
4092                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4093                 EXTRA=0
4094         fi
4095
4096         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4097         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4098         NUMS=$($CMD | wc -l)
4099         [ $NUMS -eq $EXPECTED ] ||
4100                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4101
4102         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4103         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4104         NUMS=$($CMD | wc -l)
4105         [ $NUMS -eq $EXPECTED ] ||
4106                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4107
4108         EXPECTED=$ONESTRIPE
4109         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4110         NUMS=$($CMD | wc -l)
4111         [ $NUMS -eq $EXPECTED ] ||
4112                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4113
4114         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4115         NUMS=$($CMD | wc -l)
4116         [ $NUMS -eq $EXPECTED ] ||
4117                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4118
4119         EXPECTED=0
4120         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4121         NUMS=$($CMD | wc -l)
4122         [ $NUMS -eq $EXPECTED ] ||
4123                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4124 }
4125 run_test 56s "check lfs find -stripe-count works"
4126
4127 test_56t() { # LU-611
4128         TDIR=$DIR/${tdir}t
4129         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4130
4131         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4132
4133         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4134         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4135         NUMS=$($CMD | wc -l)
4136         [ $NUMS -eq $EXPECTED ] ||
4137                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4138
4139         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4140         NUMS=$($CMD | wc -l)
4141         [ $NUMS -eq $EXPECTED ] ||
4142                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4143
4144         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4145         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4146         NUMS=$($CMD | wc -l)
4147         [ $NUMS -eq $EXPECTED ] ||
4148                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4149
4150         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4151         NUMS=$($CMD | wc -l)
4152         [ $NUMS -eq $EXPECTED ] ||
4153                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4154
4155         EXPECTED=4
4156         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4157         NUMS=$($CMD | wc -l)
4158         [ $NUMS -eq $EXPECTED ] ||
4159                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4160
4161         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4162         NUMS=$($CMD | wc -l)
4163         [ $NUMS -eq $EXPECTED ] ||
4164                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4165
4166         EXPECTED=0
4167         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4168         NUMS=$($CMD | wc -l)
4169         [ $NUMS -eq $EXPECTED ] ||
4170                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4171 }
4172 run_test 56t "check lfs find -stripe-size works"
4173
4174 test_56u() { # LU-611
4175         TDIR=$DIR/${tdir}u
4176         setup_56 $NUMFILES $NUMDIRS "-i 0"
4177
4178         if [ $OSTCOUNT -gt 1 ]; then
4179                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4180                 ONESTRIPE=4
4181         else
4182                 ONESTRIPE=0
4183         fi
4184
4185         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4186         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4187         NUMS=$($CMD | wc -l)
4188         [ $NUMS -eq $EXPECTED ] ||
4189                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4190
4191         EXPECTED=$ONESTRIPE
4192         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4193         NUMS=$($CMD | wc -l)
4194         [ $NUMS -eq $EXPECTED ] ||
4195                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4196
4197         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4198         NUMS=$($CMD | wc -l)
4199         [ $NUMS -eq $EXPECTED ] ||
4200                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4201
4202         EXPECTED=0
4203         # This should produce an error and not return any files
4204         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4205         NUMS=$($CMD 2>/dev/null | wc -l)
4206         [ $NUMS -eq $EXPECTED ] ||
4207                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4208
4209         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4210         CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4211         NUMS=$($CMD | wc -l)
4212         [ $NUMS -eq $EXPECTED ] ||
4213                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4214 }
4215 run_test 56u "check lfs find -stripe-index works"
4216
4217 test_56v() {
4218     local MDT_IDX=0
4219
4220     TDIR=$DIR/${tdir}v
4221     rm -rf $TDIR
4222     setup_56 $NUMFILES $NUMDIRS
4223
4224     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4225     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4226
4227     for file in $($LFIND -mdt $UUID $TDIR); do
4228         file_mdt_idx=$($GETSTRIPE -M $file)
4229         [ $file_mdt_idx -eq $MDT_IDX ] ||
4230             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4231     done
4232 }
4233 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4234
4235 # Get and check the actual stripe count of one file.
4236 # Usage: check_stripe_count <file> <expected_stripe_count>
4237 check_stripe_count() {
4238     local file=$1
4239     local expected=$2
4240     local actual
4241
4242     [[ -z "$file" || -z "$expected" ]] &&
4243         error "check_stripe_count: invalid argument!"
4244
4245     local cmd="$GETSTRIPE -c $file"
4246     actual=$($cmd) || error "$cmd failed"
4247     actual=${actual%% *}
4248
4249     if [[ $actual -ne $expected ]]; then
4250         [[ $expected -eq -1 ]] ||
4251             error "$cmd wrong: found $actual, expected $expected"
4252         [[ $actual -eq $OSTCOUNT ]] ||
4253             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4254     fi
4255 }
4256
4257 test_56w() {
4258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4259         TDIR=$DIR/${tdir}w
4260
4261     rm -rf $TDIR || error "remove $TDIR failed"
4262     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4263
4264     local stripe_size
4265     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4266         error "$GETSTRIPE -S -d $TDIR failed"
4267     stripe_size=${stripe_size%% *}
4268
4269     local file_size=$((stripe_size * OSTCOUNT))
4270     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4271     local required_space=$((file_num * file_size))
4272     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4273     [[ $free_space -le $((required_space / 1024)) ]] &&
4274         skip_env "need at least $required_space bytes free space," \
4275                  "have $free_space kbytes" && return
4276
4277     local dd_bs=65536
4278     local dd_count=$((file_size / dd_bs))
4279
4280     # write data into the files
4281     local i
4282     local j
4283     local file
4284     for i in $(seq 1 $NUMFILES); do
4285         file=$TDIR/file$i
4286         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4287             error "write data into $file failed"
4288     done
4289     for i in $(seq 1 $NUMDIRS); do
4290         for j in $(seq 1 $NUMFILES); do
4291             file=$TDIR/dir$i/file$j
4292             yes | dd bs=$dd_bs count=$dd_count of=$file \
4293                 >/dev/null 2>&1 ||
4294                 error "write data into $file failed"
4295         done
4296     done
4297
4298     local expected=-1
4299     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4300
4301     # lfs_migrate file
4302     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4303     echo "$cmd"
4304     eval $cmd || error "$cmd failed"
4305
4306     check_stripe_count $TDIR/file1 $expected
4307
4308     # lfs_migrate dir
4309     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4310     echo "$cmd"
4311     eval $cmd || error "$cmd failed"
4312
4313     for j in $(seq 1 $NUMFILES); do
4314         check_stripe_count $TDIR/dir1/file$j $expected
4315     done
4316
4317     # lfs_migrate works with lfs find
4318     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4319          $LFS_MIGRATE -y -c $expected"
4320     echo "$cmd"
4321     eval $cmd || error "$cmd failed"
4322
4323     for i in $(seq 2 $NUMFILES); do
4324         check_stripe_count $TDIR/file$i $expected
4325     done
4326     for i in $(seq 2 $NUMDIRS); do
4327         for j in $(seq 1 $NUMFILES); do
4328             check_stripe_count $TDIR/dir$i/file$j $expected
4329         done
4330     done
4331 }
4332 run_test 56w "check lfs_migrate -c stripe_count works"
4333
4334 test_57a() {
4335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4336         # note test will not do anything if MDS is not local
4337         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4338                 skip "Only applicable to ldiskfs-based MDTs"
4339                 return
4340         fi
4341
4342         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4343         local MNTDEV="osd*.*MDT*.mntdev"
4344         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4345         [ -z "$DEV" ] && error "can't access $MNTDEV"
4346         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4347                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4348                         error "can't access $DEV"
4349                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4350                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4351                 rm $TMP/t57a.dump
4352         done
4353 }
4354 run_test 57a "verify MDS filesystem created with large inodes =="
4355
4356 test_57b() {
4357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4358         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4359                 skip "Only applicable to ldiskfs-based MDTs"
4360                 return
4361         fi
4362
4363         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4364         local dir=$DIR/d57b
4365
4366         local FILECOUNT=100
4367         local FILE1=$dir/f1
4368         local FILEN=$dir/f$FILECOUNT
4369
4370         rm -rf $dir || error "removing $dir"
4371         test_mkdir -p $dir || error "creating $dir"
4372         local num=$(get_mds_dir $dir)
4373         local mymds=mds$num
4374
4375         echo "mcreating $FILECOUNT files"
4376         createmany -m $dir/f 1 $FILECOUNT || \
4377                 error "creating files in $dir"
4378
4379         # verify that files do not have EAs yet
4380         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4381         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4382
4383         sync
4384         sleep 1
4385         df $dir  #make sure we get new statfs data
4386         local MDSFREE=$(do_facet $mymds \
4387                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4388         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4389         echo "opening files to create objects/EAs"
4390         local FILE
4391         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4392                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4393         done
4394
4395         # verify that files have EAs now
4396         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4397         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4398
4399         sleep 1  #make sure we get new statfs data
4400         df $dir
4401         local MDSFREE2=$(do_facet $mymds \
4402                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4403         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4404         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4405                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4406                         error "MDC before $MDCFREE != after $MDCFREE2"
4407                 else
4408                         echo "MDC before $MDCFREE != after $MDCFREE2"
4409                         echo "unable to confirm if MDS has large inodes"
4410                 fi
4411         fi
4412         rm -rf $dir
4413 }
4414 run_test 57b "default LOV EAs are stored inside large inodes ==="
4415
4416 test_58() {
4417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4418         [ -z "$(which wiretest 2>/dev/null)" ] &&
4419                         skip_env "could not find wiretest" && return
4420         wiretest
4421 }
4422 run_test 58 "verify cross-platform wire constants =============="
4423
4424 test_59() {
4425         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4426         echo "touch 130 files"
4427         createmany -o $DIR/f59- 130
4428         echo "rm 130 files"
4429         unlinkmany $DIR/f59- 130
4430         sync
4431         # wait for commitment of removal
4432         wait_delete_completed
4433 }
4434 run_test 59 "verify cancellation of llog records async ========="
4435
4436 TEST60_HEAD="test_60 run $RANDOM"
4437 test_60a() {
4438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4439         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4440         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4441         log "$TEST60_HEAD - from kernel mode"
4442         do_facet mgs sh run-llog.sh
4443 }
4444 run_test 60a "llog sanity tests run from kernel module =========="
4445
4446 test_60b() { # bug 6411
4447         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4448         dmesg > $DIR/$tfile
4449         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4450                                  /llog.test/ {
4451                                          if (marker)
4452                                                  from_marker++
4453                                          from_begin++
4454                                  }
4455                                  END {
4456                                          if (marker)
4457                                                  print from_marker
4458                                          else
4459                                                  print from_begin
4460                                  }"`
4461         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4462 }
4463 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4464
4465 test_60c() {
4466         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4467         echo "create 5000 files"
4468         createmany -o $DIR/f60c- 5000
4469 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4470         lctl set_param fail_loc=0x80000137
4471         unlinkmany $DIR/f60c- 5000
4472         lctl set_param fail_loc=0
4473 }
4474 run_test 60c "unlink file when mds full"
4475
4476 test_60d() {
4477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4478         SAVEPRINTK=$(lctl get_param -n printk)
4479
4480         # verify "lctl mark" is even working"
4481         MESSAGE="test message ID $RANDOM $$"
4482         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4483         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4484
4485         lctl set_param printk=0 || error "set lnet.printk failed"
4486         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4487         MESSAGE="new test message ID $RANDOM $$"
4488         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4489         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4490         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4491
4492         lctl set_param -n printk="$SAVEPRINTK"
4493 }
4494 run_test 60d "test printk console message masking"
4495
4496 test_61() {
4497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4498         f="$DIR/f61"
4499         dd if=/dev/zero of=$f bs=`page_size` count=1
4500         cancel_lru_locks osc
4501         $MULTIOP $f OSMWUc || error
4502         sync
4503 }
4504 run_test 61 "mmap() writes don't make sync hang ================"
4505
4506 # bug 2330 - insufficient obd_match error checking causes LBUG
4507 test_62() {
4508         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4509         f="$DIR/f62"
4510         echo foo > $f
4511         cancel_lru_locks osc
4512         lctl set_param fail_loc=0x405
4513         cat $f && error "cat succeeded, expect -EIO"
4514         lctl set_param fail_loc=0
4515 }
4516 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4517 # match every page all of the time.
4518 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4519
4520 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4521 test_63a() {    # was test_63
4522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4523         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4524         lctl set_param -n osc.*.max_dirty_mb 0
4525         for i in `seq 10` ; do
4526                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4527                 sleep 5
4528                 kill $!
4529                 sleep 1
4530         done
4531
4532         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4533         rm -f $DIR/f63 || true
4534 }
4535 run_test 63a "Verify oig_wait interruption does not crash ======="
4536
4537 # bug 2248 - async write errors didn't return to application on sync
4538 # bug 3677 - async write errors left page locked
4539 test_63b() {
4540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4541         debugsave
4542         lctl set_param debug=-1
4543
4544         # ensure we have a grant to do async writes
4545         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4546         rm $DIR/$tfile
4547
4548         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4549         lctl set_param fail_loc=0x80000406
4550         $MULTIOP $DIR/$tfile Owy && \
4551                 error "sync didn't return ENOMEM"
4552         sync; sleep 2; sync     # do a real sync this time to flush page
4553         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4554                 error "locked page left in cache after async error" || true
4555         debugrestore
4556 }
4557 run_test 63b "async write errors should be returned to fsync ==="
4558
4559 test_64a () {
4560         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4561         df $DIR
4562         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4563 }
4564 run_test 64a "verify filter grant calculations (in kernel) ====="
4565
4566 test_64b () {
4567         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4568         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4569         sh oos.sh $MOUNT
4570 }
4571 run_test 64b "check out-of-space detection on client ==========="
4572
4573 test_64c() {
4574         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4575 }
4576 run_test 64c "verify grant shrink ========================------"
4577
4578 # bug 1414 - set/get directories' stripe info
4579 test_65a() {
4580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4581         test_mkdir -p $DIR/$tdir
4582         touch $DIR/$tdir/f1
4583         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4584 }
4585 run_test 65a "directory with no stripe info ===================="
4586
4587 test_65b() {
4588         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4589         test_mkdir -p $DIR/$tdir
4590         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4591                                                 error "setstripe"
4592         touch $DIR/$tdir/f2
4593         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4594 }
4595 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4596
4597 test_65c() {
4598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4599         if [ $OSTCOUNT -gt 1 ]; then
4600                 test_mkdir -p $DIR/$tdir
4601                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4602                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4603                 touch $DIR/$tdir/f3
4604                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4605         fi
4606 }
4607 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4608
4609 test_65d() {
4610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4611         test_mkdir -p $DIR/$tdir
4612         if [ $STRIPECOUNT -le 0 ]; then
4613                 sc=1
4614         elif [ $STRIPECOUNT -gt 2000 ]; then
4615 #LOV_MAX_STRIPE_COUNT is 2000
4616                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4617         else
4618                 sc=$(($STRIPECOUNT - 1))
4619         fi
4620         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4621         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4622         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4623                                                 error "lverify failed"
4624 }
4625 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4626
4627 test_65e() {
4628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4629         test_mkdir -p $DIR/$tdir
4630
4631         $SETSTRIPE $DIR/$tdir || error "setstripe"
4632         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4633                                         error "no stripe info failed"
4634         touch $DIR/$tdir/f6
4635         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4636 }
4637 run_test 65e "directory setstripe defaults ======================="
4638
4639 test_65f() {
4640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4641         test_mkdir -p $DIR/${tdir}f
4642         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4643 }
4644 run_test 65f "dir setstripe permission (should return error) ==="
4645
4646 test_65g() {
4647         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4648         test_mkdir -p $DIR/$tdir
4649         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4650                                                         error "setstripe"
4651         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4652         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4653                 error "delete default stripe failed"
4654 }
4655 run_test 65g "directory setstripe -d ==========================="
4656
4657 test_65h() {
4658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4659         test_mkdir -p $DIR/$tdir
4660         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4661                                                         error "setstripe"
4662         test_mkdir -p $DIR/$tdir/dd1
4663         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4664                 error "stripe info inherit failed"
4665 }
4666 run_test 65h "directory stripe info inherit ===================="
4667
4668 test_65i() { # bug6367
4669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4670         $SETSTRIPE -S 65536 -c -1 $MOUNT
4671 }
4672 run_test 65i "set non-default striping on root directory (bug 6367)="
4673
4674 test_65ia() { # bug12836
4675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4676         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4677 }
4678 run_test 65ia "getstripe on -1 default directory striping"
4679
4680 test_65ib() { # bug12836
4681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4682         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4683 }
4684 run_test 65ib "getstripe -v on -1 default directory striping"
4685
4686 test_65ic() { # bug12836
4687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4688         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4689 }
4690 run_test 65ic "new find on -1 default directory striping"
4691
4692 test_65j() { # bug6367
4693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4694         sync; sleep 1
4695         # if we aren't already remounting for each test, do so for this test
4696         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4697                 cleanup || error "failed to unmount"
4698                 setup
4699         fi
4700         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4701 }
4702 run_test 65j "set default striping on root directory (bug 6367)="
4703
4704 test_65k() { # bug11679
4705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4706         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4707         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4708
4709     echo "Check OST status: "
4710     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4711               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4712
4713     for OSC in $MDS_OSCS; do
4714         echo $OSC "is activate"
4715         do_facet $SINGLEMDS lctl --device %$OSC activate
4716     done
4717
4718     mkdir -p $DIR/$tdir
4719     for INACTIVE_OSC in $MDS_OSCS; do
4720         echo "Deactivate: " $INACTIVE_OSC
4721         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4722         for STRIPE_OSC in $MDS_OSCS; do
4723             OST=`osc_to_ost $STRIPE_OSC`
4724             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4725                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4726
4727             [ -f $DIR/$tdir/$IDX ] && continue
4728             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4729             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4730             RC=$?
4731             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4732         done
4733         rm -f $DIR/$tdir/*
4734         echo $INACTIVE_OSC "is Activate."
4735         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4736     done
4737 }
4738 run_test 65k "validate manual striping works properly with deactivated OSCs"
4739
4740 test_65l() { # bug 12836
4741         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4742         test_mkdir -p $DIR/$tdir/test_dir
4743         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4744         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4745 }
4746 run_test 65l "lfs find on -1 stripe dir ========================"
4747
4748 # bug 2543 - update blocks count on client
4749 test_66() {
4750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4751         COUNT=${COUNT:-8}
4752         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4753         sync; sync_all_data; sync; sync_all_data
4754         cancel_lru_locks osc
4755         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4756         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4757 }
4758 run_test 66 "update inode blocks count on client ==============="
4759
4760 LLOOP=
4761 LLITELOOPLOAD=
4762 cleanup_68() {
4763         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4764         trap 0
4765         if [ ! -z "$LLOOP" ]; then
4766                 if swapon -s | grep -q $LLOOP; then
4767                         swapoff $LLOOP || error "swapoff failed"
4768                 fi
4769
4770                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4771                 rm -f $LLOOP
4772                 unset LLOOP
4773         fi
4774         if [ ! -z "$LLITELOOPLOAD" ]; then
4775                 rmmod llite_lloop
4776                 unset LLITELOOPLOAD
4777         fi
4778         rm -f $DIR/f68*
4779 }
4780
4781 meminfo() {
4782         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4783 }
4784
4785 swap_used() {
4786         swapon -s | awk '($1 == "'$1'") { print $4 }'
4787 }
4788
4789 # test case for lloop driver, basic function
4790 test_68a() {
4791         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4792         [ "$UID" != 0 ] && skip_env "must run as root" && return
4793         llite_lloop_enabled || \
4794                 { skip_env "llite_lloop module disabled" && return; }
4795
4796         trap cleanup_68 EXIT
4797
4798         if ! module_loaded llite_lloop; then
4799                 if load_module llite/llite_lloop; then
4800                         LLITELOOPLOAD=yes
4801                 else
4802                         skip_env "can't find module llite_lloop"
4803                         return
4804                 fi
4805         fi
4806
4807         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4808         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4809         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4810
4811         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4812         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4813
4814         cleanup_68
4815 }
4816 run_test 68a "lloop driver - basic test ========================"
4817
4818 # excercise swapping to lustre by adding a high priority swapfile entry
4819 # and then consuming memory until it is used.
4820 test_68b() {  # was test_68
4821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4822         [ "$UID" != 0 ] && skip_env "must run as root" && return
4823         lctl get_param -n devices | grep -q obdfilter && \
4824                 skip "local OST" && return
4825
4826         grep -q llite_lloop /proc/modules
4827         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4828
4829         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4830                 skip "can't reliably test swap with TCP" && return
4831
4832         MEMTOTAL=`meminfo MemTotal`
4833         NR_BLOCKS=$((MEMTOTAL>>8))
4834         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4835
4836         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4837         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4838         mkswap $DIR/f68b
4839
4840         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4841
4842         trap cleanup_68 EXIT
4843
4844         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4845
4846         echo "before: `swapon -s | grep $LLOOP`"
4847         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4848         echo "after: `swapon -s | grep $LLOOP`"
4849         SWAPUSED=`swap_used $LLOOP`
4850
4851         cleanup_68
4852
4853         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
4854 }
4855 run_test 68b "support swapping to Lustre ========================"
4856
4857 # bug5265, obdfilter oa2dentry return -ENOENT
4858 # #define OBD_FAIL_OST_ENOENT 0x217
4859 test_69() {
4860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4861         remote_ost_nodsh && skip "remote OST with nodsh" && return
4862
4863         f="$DIR/$tfile"
4864         $SETSTRIPE -c 1 -i 0 $f
4865
4866         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
4867
4868         do_facet ost1 lctl set_param fail_loc=0x217
4869         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
4870         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
4871
4872         do_facet ost1 lctl set_param fail_loc=0
4873         $DIRECTIO write $f 0 2 || error "write error"
4874
4875         cancel_lru_locks osc
4876         $DIRECTIO read $f 0 1 || error "read error"
4877
4878         do_facet ost1 lctl set_param fail_loc=0x217
4879         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
4880
4881         do_facet ost1 lctl set_param fail_loc=0
4882         rm -f $f
4883 }
4884 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
4885
4886 test_71() {
4887     test_mkdir -p $DIR/$tdir
4888     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
4889 }
4890 run_test 71 "Running dbench on lustre (don't segment fault) ===="
4891
4892 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
4893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4894         check_kernel_version 43 || return 0
4895         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4896
4897         # Check that testing environment is properly set up. Skip if not
4898         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
4899                 skip_env "User $RUNAS_ID does not exist - skipping"
4900                 return 0
4901         }
4902         # We had better clear the $DIR to get enough space for dd
4903         rm -rf $DIR/*
4904         touch $DIR/f72
4905         chmod 777 $DIR/f72
4906         chmod ug+s $DIR/f72
4907         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
4908         # See if we are still setuid/sgid
4909         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
4910         # Now test that MDS is updated too
4911         cancel_lru_locks mdc
4912         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
4913         rm -f $DIR/f72
4914 }
4915 run_test 72a "Test that remove suid works properly (bug5695) ===="
4916
4917 test_72b() { # bug 24226 -- keep mode setting when size is not changing
4918         local perm
4919
4920         [ "$RUNAS_ID" = "$UID" ] && \
4921                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4922         [ "$RUNAS_ID" -eq 0 ] && \
4923                 skip_env "RUNAS_ID = 0 -- skipping" && return
4924
4925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4926         # Check that testing environment is properly set up. Skip if not
4927         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4928                 skip_env "User $RUNAS_ID does not exist - skipping"
4929                 return 0
4930         }
4931         touch $DIR/${tfile}-f{g,u}
4932         test_mkdir $DIR/${tfile}-dg
4933         test_mkdir $DIR/${tfile}-du
4934         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4935         chmod g+s $DIR/${tfile}-{f,d}g
4936         chmod u+s $DIR/${tfile}-{f,d}u
4937         for perm in 777 2777 4777; do
4938                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4939                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4940                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4941                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4942         done
4943         true
4944 }
4945 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4946
4947 # bug 3462 - multiple simultaneous MDC requests
4948 test_73() {
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         test_mkdir $DIR/d73-1
4951         test_mkdir $DIR/d73-2
4952         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4953         pid1=$!
4954
4955         lctl set_param fail_loc=0x80000129
4956         $MULTIOP $DIR/d73-1/f73-2 Oc &
4957         sleep 1
4958         lctl set_param fail_loc=0
4959
4960         $MULTIOP $DIR/d73-2/f73-3 Oc &
4961         pid3=$!
4962
4963         kill -USR1 $pid1
4964         wait $pid1 || return 1
4965
4966         sleep 25
4967
4968         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4969         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4970         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4971
4972         rm -rf $DIR/d73-*
4973 }
4974 run_test 73 "multiple MDC requests (should not deadlock)"
4975
4976 test_74a() { # bug 6149, 6184
4977         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4978         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4979         #
4980         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4981         # will spin in a tight reconnection loop
4982         touch $DIR/f74a
4983         lctl set_param fail_loc=0x8000030e
4984         # get any lock that won't be difficult - lookup works.
4985         ls $DIR/f74a
4986         lctl set_param fail_loc=0
4987         true
4988         rm -f $DIR/f74a
4989 }
4990 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4991
4992 test_74b() { # bug 13310
4993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4994         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4995         #
4996         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4997         # will spin in a tight reconnection loop
4998         lctl set_param fail_loc=0x8000030e
4999         # get a "difficult" lock
5000         touch $DIR/f74b
5001         lctl set_param fail_loc=0
5002         true
5003         rm -f $DIR/f74b
5004 }
5005 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5006
5007 test_74c() {
5008         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5009 #define OBD_FAIL_LDLM_NEW_LOCK
5010         lctl set_param fail_loc=0x80000319
5011         touch $DIR/$tfile && error "Touch successful"
5012         true
5013 }
5014 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5015
5016 num_inodes() {
5017         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5018 }
5019
5020 get_inode_slab_tunables() {
5021         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5022 }
5023
5024 set_inode_slab_tunables() {
5025         echo "lustre_inode_cache $1" > /proc/slabinfo
5026 }
5027
5028 test_76() { # Now for bug 20433, added originally in bug 1443
5029         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5030         local SLAB_SETTINGS=`get_inode_slab_tunables`
5031         local CPUS=`getconf _NPROCESSORS_ONLN`
5032         # we cannot set limit below 1 which means 1 inode in each
5033         # per-cpu cache is still allowed
5034         set_inode_slab_tunables "1 1 0"
5035         cancel_lru_locks osc
5036         BEFORE_INODES=`num_inodes`
5037         echo "before inodes: $BEFORE_INODES"
5038         local COUNT=1000
5039         [ "$SLOW" = "no" ] && COUNT=100
5040         for i in `seq $COUNT`; do
5041                 touch $DIR/$tfile
5042                 rm -f $DIR/$tfile
5043         done
5044         cancel_lru_locks osc
5045         AFTER_INODES=`num_inodes`
5046         echo "after inodes: $AFTER_INODES"
5047         local wait=0
5048         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5049                 sleep 2
5050                 AFTER_INODES=`num_inodes`
5051                 wait=$((wait+2))
5052                 echo "wait $wait seconds inodes: $AFTER_INODES"
5053                 if [ $wait -gt 30 ]; then
5054                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5055                 fi
5056         done
5057         set_inode_slab_tunables "$SLAB_SETTINGS"
5058 }
5059 run_test 76 "confirm clients recycle inodes properly ===="
5060
5061
5062 export ORIG_CSUM=""
5063 set_checksums()
5064 {
5065         # Note: in sptlrpc modes which enable its own bulk checksum, the
5066         # original crc32_le bulk checksum will be automatically disabled,
5067         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5068         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5069         # In this case set_checksums() will not be no-op, because sptlrpc
5070         # bulk checksum will be enabled all through the test.
5071
5072         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5073         lctl set_param -n osc.*.checksums $1
5074         return 0
5075 }
5076
5077 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5078                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5079 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5080 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5081 set_checksum_type()
5082 {
5083         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5084         log "set checksum type to $1"
5085         return 0
5086 }
5087 F77_TMP=$TMP/f77-temp
5088 F77SZ=8
5089 setup_f77() {
5090         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5091                 error "error writing to $F77_TMP"
5092 }
5093
5094 test_77a() { # bug 10889
5095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5096         $GSS && skip "could not run with gss" && return
5097         [ ! -f $F77_TMP ] && setup_f77
5098         set_checksums 1
5099         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5100         set_checksums 0
5101         rm -f $DIR/$tfile
5102 }
5103 run_test 77a "normal checksum read/write operation ============="
5104
5105 test_77b() { # bug 10889
5106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5107         $GSS && skip "could not run with gss" && return
5108         [ ! -f $F77_TMP ] && setup_f77
5109         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5110         lctl set_param fail_loc=0x80000409
5111         set_checksums 1
5112         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
5113                 error "dd error: $?"
5114         lctl set_param fail_loc=0
5115         set_checksums 0
5116 }
5117 run_test 77b "checksum error on client write ===================="
5118
5119 test_77c() { # bug 10889
5120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5121         $GSS && skip "could not run with gss" && return
5122         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
5123         set_checksums 1
5124         for algo in $CKSUM_TYPES; do
5125                 cancel_lru_locks osc
5126                 set_checksum_type $algo
5127                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5128                 lctl set_param fail_loc=0x80000408
5129                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
5130                 lctl set_param fail_loc=0
5131         done
5132         set_checksums 0
5133         set_checksum_type $ORIG_CSUM_TYPE
5134         rm -f $DIR/f77b
5135 }
5136 run_test 77c "checksum error on client read ==================="
5137
5138 test_77d() { # bug 10889
5139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5140         $GSS && skip "could not run with gss" && return
5141         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5142         lctl set_param fail_loc=0x80000409
5143         set_checksums 1
5144         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5145                 error "direct write: rc=$?"
5146         lctl set_param fail_loc=0
5147         set_checksums 0
5148 }
5149 run_test 77d "checksum error on OST direct write ==============="
5150
5151 test_77e() { # bug 10889
5152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5153         $GSS && skip "could not run with gss" && return
5154         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
5155         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5156         lctl set_param fail_loc=0x80000408
5157         set_checksums 1
5158         cancel_lru_locks osc
5159         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5160                 error "direct read: rc=$?"
5161         lctl set_param fail_loc=0
5162         set_checksums 0
5163 }
5164 run_test 77e "checksum error on OST direct read ================"
5165
5166 test_77f() { # bug 10889
5167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5168         $GSS && skip "could not run with gss" && return
5169         set_checksums 1
5170         for algo in $CKSUM_TYPES; do
5171                 cancel_lru_locks osc
5172                 set_checksum_type $algo
5173                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5174                 lctl set_param fail_loc=0x409
5175                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
5176                         error "direct write succeeded"
5177                 lctl set_param fail_loc=0
5178         done
5179         set_checksum_type $ORIG_CSUM_TYPE
5180         set_checksums 0
5181 }
5182 run_test 77f "repeat checksum error on write (expect error) ===="
5183
5184 test_77g() { # bug 10889
5185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5186         $GSS && skip "could not run with gss" && return
5187         remote_ost_nodsh && skip "remote OST with nodsh" && return
5188
5189         [ ! -f $F77_TMP ] && setup_f77
5190
5191         $SETSTRIPE -c 1 -i 0 $DIR/f77g
5192         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5193         do_facet ost1 lctl set_param fail_loc=0x8000021a
5194         set_checksums 1
5195         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
5196                 error "write error: rc=$?"
5197         do_facet ost1 lctl set_param fail_loc=0
5198         set_checksums 0
5199 }
5200 run_test 77g "checksum error on OST write ======================"
5201
5202 test_77h() { # bug 10889
5203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5204         $GSS && skip "could not run with gss" && return
5205         remote_ost_nodsh && skip "remote OST with nodsh" && return
5206
5207         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
5208         cancel_lru_locks osc
5209         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5210         do_facet ost1 lctl set_param fail_loc=0x8000021b
5211         set_checksums 1
5212         cmp $F77_TMP $DIR/f77g || error "file compare failed"
5213         do_facet ost1 lctl set_param fail_loc=0
5214         set_checksums 0
5215 }
5216 run_test 77h "checksum error on OST read ======================="
5217
5218 test_77i() { # bug 13805
5219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5220         $GSS && skip "could not run with gss" && return
5221         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5222         lctl set_param fail_loc=0x40b
5223         remount_client $MOUNT
5224         lctl set_param fail_loc=0
5225         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5226                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5227                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5228                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5229         done
5230         remount_client $MOUNT
5231 }
5232 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
5233
5234 test_77j() { # bug 13805
5235         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5236         $GSS && skip "could not run with gss" && return
5237         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5238         lctl set_param fail_loc=0x40c
5239         remount_client $MOUNT
5240         lctl set_param fail_loc=0
5241         sleep 2 # wait async osc connect to finish
5242         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5243                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5244                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5245                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5246         done
5247         remount_client $MOUNT
5248 }
5249 run_test 77j "client only supporting ADLER32 ===================="
5250
5251 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5252 rm -f $F77_TMP
5253 unset F77_TMP
5254
5255 test_78() { # bug 10901
5256         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5257         remote_ost || { skip_env "local OST" && return; }
5258
5259         NSEQ=5
5260         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5261         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5262         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5263         echo "MemTotal: $MEMTOTAL"
5264 # reserve 256MB of memory for the kernel and other running processes,
5265 # and then take 1/2 of the remaining memory for the read/write buffers.
5266     if [ $MEMTOTAL -gt 512 ] ;then
5267         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5268     else
5269         # for those poor memory-starved high-end clusters...
5270         MEMTOTAL=$((MEMTOTAL / 2))
5271     fi
5272         echo "Mem to use for directio: $MEMTOTAL"
5273         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5274         [ $F78SIZE -gt 512 ] && F78SIZE=512
5275         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5276         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5277         echo "Smallest OST: $SMALLESTOST"
5278         [ $SMALLESTOST -lt 10240 ] && \
5279                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5280
5281         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5282                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5283
5284         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5285         echo "File size: $F78SIZE"
5286         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5287         for i in `seq 1 $NSEQ`
5288         do
5289                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5290                 echo directIO rdwr round $i of $NSEQ
5291                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5292         done
5293
5294         rm -f $DIR/$tfile
5295 }
5296 run_test 78 "handle large O_DIRECT writes correctly ============"
5297
5298 test_79() { # bug 12743
5299         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5300         wait_delete_completed
5301
5302         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5303         BKFREE=$(calc_osc_kbytes kbytesfree)
5304         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5305
5306         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5307         DFTOTAL=`echo $STRING | cut -d, -f1`
5308         DFUSED=`echo $STRING  | cut -d, -f2`
5309         DFAVAIL=`echo $STRING | cut -d, -f3`
5310         DFFREE=$(($DFTOTAL - $DFUSED))
5311
5312         ALLOWANCE=$((64 * $OSTCOUNT))
5313
5314         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5315            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5316                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5317         fi
5318         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5319            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5320                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5321         fi
5322         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5323            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5324                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5325         fi
5326 }
5327 run_test 79 "df report consistency check ======================="
5328
5329 test_80() { # bug 10718
5330         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5331         # relax strong synchronous semantics for slow backends like ZFS
5332         local soc="obdfilter.*.sync_on_lock_cancel"
5333         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5334         local hosts=
5335         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5336                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5337                           facet_active_host $host; done | sort -u)
5338                 do_nodes $hosts lctl set_param $soc=never
5339         fi
5340
5341         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5342         sync; sleep 1; sync
5343         local BEFORE=`date +%s`
5344         cancel_lru_locks osc
5345         local AFTER=`date +%s`
5346         local DIFF=$((AFTER-BEFORE))
5347         if [ $DIFF -gt 1 ] ; then
5348                 error "elapsed for 1M@1T = $DIFF"
5349         fi
5350
5351         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5352
5353         rm -f $DIR/$tfile
5354 }
5355 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5356
5357 test_81a() { # LU-456
5358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5359         remote_ost_nodsh && skip "remote OST with nodsh" && return
5360         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5361         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5362         do_facet ost1 lctl set_param fail_loc=0x80000228
5363
5364         # write should trigger a retry and success
5365         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5366         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5367         RC=$?
5368         if [ $RC -ne 0 ] ; then
5369                 error "write should success, but failed for $RC"
5370         fi
5371 }
5372 run_test 81a "OST should retry write when get -ENOSPC ==============="
5373
5374 test_81b() { # LU-456
5375         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5376         remote_ost_nodsh && skip "remote OST with nodsh" && return
5377         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5378         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5379         do_facet ost1 lctl set_param fail_loc=0x228
5380
5381         # write should retry several times and return -ENOSPC finally
5382         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5383         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5384         RC=$?
5385         ENOSPC=28
5386         if [ $RC -ne $ENOSPC ] ; then
5387                 error "dd should fail for -ENOSPC, but succeed."
5388         fi
5389 }
5390 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5391
5392 test_82() { # LU-1031
5393         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5394         local gid1=14091995
5395         local gid2=16022000
5396
5397         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5398         local MULTIPID1=$!
5399         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5400         local MULTIPID2=$!
5401         kill -USR1 $MULTIPID2
5402         sleep 2
5403         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5404                 error "First grouplock does not block second one"
5405         else
5406                 echo "Second grouplock blocks first one"
5407         fi
5408         kill -USR1 $MULTIPID1
5409         wait $MULTIPID1
5410         wait $MULTIPID2
5411 }
5412 run_test 82 "Basic grouplock test ==============================="
5413
5414 test_99a() {
5415         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
5416             return
5417         test_mkdir -p $DIR/d99cvsroot
5418         chown $RUNAS_ID $DIR/d99cvsroot
5419         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5420         cd $TMP
5421
5422         $RUNAS cvs -d $DIR/d99cvsroot init || error
5423         cd $oldPWD
5424 }
5425 run_test 99a "cvs init ========================================="
5426
5427 test_99b() {
5428         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5429         [ ! -d $DIR/d99cvsroot ] && test_99a
5430         cd /etc/init.d
5431         # some versions of cvs import exit(1) when asked to import links or
5432         # files they can't read.  ignore those files.
5433         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5434                         ! -perm +4 -printf '-I %f\n')
5435         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5436                 d99reposname vtag rtag
5437 }
5438 run_test 99b "cvs import ======================================="
5439
5440 test_99c() {
5441         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5442         [ ! -d $DIR/d99cvsroot ] && test_99b
5443         cd $DIR
5444         test_mkdir -p $DIR/d99reposname
5445         chown $RUNAS_ID $DIR/d99reposname
5446         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5447 }
5448 run_test 99c "cvs checkout ====================================="
5449
5450 test_99d() {
5451         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5452         [ ! -d $DIR/d99cvsroot ] && test_99c
5453         cd $DIR/d99reposname
5454         $RUNAS touch foo99
5455         $RUNAS cvs add -m 'addmsg' foo99
5456 }
5457 run_test 99d "cvs add =========================================="
5458
5459 test_99e() {
5460         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5461         [ ! -d $DIR/d99cvsroot ] && test_99c
5462         cd $DIR/d99reposname
5463         $RUNAS cvs update
5464 }
5465 run_test 99e "cvs update ======================================="
5466
5467 test_99f() {
5468         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5469         [ ! -d $DIR/d99cvsroot ] && test_99d
5470         cd $DIR/d99reposname
5471         $RUNAS cvs commit -m 'nomsg' foo99
5472     rm -fr $DIR/d99cvsroot
5473 }
5474 run_test 99f "cvs commit ======================================="
5475
5476 test_100() {
5477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5478         [ "$NETTYPE" = tcp ] || \
5479                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5480                         return ; }
5481
5482         remote_ost_nodsh && skip "remote OST with nodsh" && return
5483         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5484         remote_servers || \
5485                 { skip "useless for local single node setup" && return; }
5486
5487         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5488                 [ "$PROT" != "tcp" ] && continue
5489                 RPORT=$(echo $REMOTE | cut -d: -f2)
5490                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5491
5492                 rc=0
5493                 LPORT=`echo $LOCAL | cut -d: -f2`
5494                 if [ $LPORT -ge 1024 ]; then
5495                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5496                         netstat -tna
5497                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5498                 fi
5499         done
5500         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5501 }
5502 run_test 100 "check local port using privileged port ==========="
5503
5504 function get_named_value()
5505 {
5506     local tag
5507
5508     tag=$1
5509     while read ;do
5510         line=$REPLY
5511         case $line in
5512         $tag*)
5513             echo $line | sed "s/^$tag[ ]*//"
5514             break
5515             ;;
5516         esac
5517     done
5518 }
5519
5520 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5521                    awk '/^max_cached_mb/ { print $2 }')
5522
5523 cleanup_101a() {
5524         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5525         trap 0
5526 }
5527
5528 test_101a() {
5529         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5530         local s
5531         local discard
5532         local nreads=10000
5533         local cache_limit=32
5534
5535         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5536         trap cleanup_101a EXIT
5537         $LCTL set_param -n llite.*.read_ahead_stats 0
5538         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5539
5540         #
5541         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5542         #
5543         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5544         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5545
5546         discard=0
5547         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5548                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5549                         discard=$(($discard + $s))
5550         done
5551         cleanup_101a
5552
5553         if [ $(($discard * 10)) -gt $nreads ] ;then
5554                 $LCTL get_param osc.*-osc*.rpc_stats
5555                 $LCTL get_param llite.*.read_ahead_stats
5556                 error "too many ($discard) discarded pages"
5557         fi
5558         rm -f $DIR/$tfile || true
5559 }
5560 run_test 101a "check read-ahead for random reads ================"
5561
5562 setup_test101bc() {
5563         test_mkdir -p $DIR/$tdir
5564         STRIPE_SIZE=1048576
5565         STRIPE_COUNT=$OSTCOUNT
5566         STRIPE_OFFSET=0
5567
5568         local list=$(comma_list $(osts_nodes))
5569         set_osd_param $list '' read_cache_enable 0
5570         set_osd_param $list '' writethrough_cache_enable 0
5571
5572         trap cleanup_test101bc EXIT
5573         # prepare the read-ahead file
5574         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5575
5576         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5577 }
5578
5579 cleanup_test101bc() {
5580         trap 0
5581         rm -rf $DIR/$tdir
5582         rm -f $DIR/$tfile
5583
5584         local list=$(comma_list $(osts_nodes))
5585         set_osd_param $list '' read_cache_enable 1
5586         set_osd_param $list '' writethrough_cache_enable 1
5587 }
5588
5589 calc_total() {
5590         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5591 }
5592
5593 ra_check_101() {
5594         local READ_SIZE=$1
5595         local STRIPE_SIZE=1048576
5596         local RA_INC=1048576
5597         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5598         local FILE_LENGTH=$((64*100))
5599         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5600                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5601         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5602                         get_named_value 'read but discarded' | \
5603                         cut -d" " -f1 | calc_total`
5604         if [ $DISCARD -gt $discard_limit ]; then
5605                 $LCTL get_param llite.*.read_ahead_stats
5606                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5607         else
5608                 echo "Read-ahead success for size ${READ_SIZE}"
5609         fi
5610 }
5611
5612 test_101b() {
5613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5614         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5615         local STRIPE_SIZE=1048576
5616         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5617         local FILE_LENGTH=$((STRIPE_SIZE*100))
5618         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5619         # prepare the read-ahead file
5620         setup_test101bc
5621         cancel_lru_locks osc
5622         for BIDX in 2 4 8 16 32 64 128 256
5623         do
5624                 local BSIZE=$((BIDX*4096))
5625                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5626                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5627                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5628                 $LCTL set_param -n llite.*.read_ahead_stats 0
5629                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5630                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5631                 cancel_lru_locks osc
5632                 ra_check_101 $BSIZE
5633         done
5634         cleanup_test101bc
5635         true
5636 }
5637 run_test 101b "check stride-io mode read-ahead ================="
5638
5639 test_101c() {
5640         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5641         local STRIPE_SIZE=1048576
5642         local FILE_LENGTH=$((STRIPE_SIZE*100))
5643         local nreads=10000
5644         local osc
5645
5646     setup_test101bc
5647
5648     cancel_lru_locks osc
5649     $LCTL set_param osc.*.rpc_stats 0
5650     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5651     for osc in $($LCTL get_param -N osc.*); do
5652         if [ "$osc" == "osc.num_refs" ]; then
5653             continue
5654         fi
5655
5656         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5657         if [ $lines -le 20 ]; then
5658             continue
5659         fi
5660
5661         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5662                                      awk '$1 == "1:" { print $2; exit; }')
5663         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5664                                      awk '$1 == "2:" { print $2; exit; }')
5665         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5666                                      awk '$1 == "4:" { print $2; exit; }')
5667         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5668                                      awk '$1 == "8:" { print $2; exit; }')
5669
5670         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5671         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5672         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5673         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5674         echo "${osc} rpc check passed!"
5675     done
5676     cleanup_test101bc
5677     true
5678 }
5679 run_test 101c "check stripe_size aligned read-ahead ================="
5680
5681 set_read_ahead() {
5682    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5683    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5684 }
5685
5686 test_101d() {
5687         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5688         local file=$DIR/$tfile
5689         local size=${FILESIZE_101c:-500}
5690         local ra_MB=${READAHEAD_MB:-40}
5691
5692         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5693         [ $space -gt $((size * 1024)) ] ||
5694                 { skip "Need free space ${size}M, have $space" && return; }
5695
5696     echo Creating ${size}M test file $file
5697     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5698     echo Cancel LRU locks on lustre client to flush the client cache
5699     cancel_lru_locks osc
5700
5701     echo Disable read-ahead
5702     local old_READAHEAD=$(set_read_ahead 0)
5703
5704     echo Reading the test file $file with read-ahead disabled
5705     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5706
5707     echo Cancel LRU locks on lustre client to flush the client cache
5708     cancel_lru_locks osc
5709     echo Enable read-ahead with ${ra_MB}MB
5710     set_read_ahead $ra_MB
5711
5712     echo Reading the test file $file with read-ahead enabled
5713     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5714
5715     echo read-ahead disabled time read $time_ra_OFF
5716     echo read-ahead enabled  time read $time_ra_ON
5717
5718         set_read_ahead $old_READAHEAD
5719         rm -f $file
5720         wait_delete_completed
5721
5722     [ $time_ra_ON -lt $time_ra_OFF ] ||
5723         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5724                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5725 }
5726 run_test 101d "file read with and without read-ahead enabled  ================="
5727
5728 test_101e() {
5729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5730     local file=$DIR/$tfile
5731     local size=500  #KB
5732     local count=100
5733     local blksize=1024
5734
5735     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5736     local need_space=$((count * size))
5737     [ $space -gt $need_space ] ||
5738         { skip_env "Need free space $need_space, have $space" && return; }
5739
5740     echo Creating $count ${size}K test files
5741     for ((i = 0; i < $count; i++)); do
5742         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5743     done
5744
5745     echo Cancel LRU locks on lustre client to flush the client cache
5746     cancel_lru_locks osc
5747
5748     echo Reset readahead stats
5749     $LCTL set_param -n llite.*.read_ahead_stats 0
5750
5751     for ((i = 0; i < $count; i++)); do
5752         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5753     done
5754
5755     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5756           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5757
5758     for ((i = 0; i < $count; i++)); do
5759         rm -rf ${file}_${i} 2>/dev/null
5760     done
5761
5762     #10000 means 20% reads are missing in readahead
5763     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5764 }
5765 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5766
5767 cleanup_test101f() {
5768     trap 0
5769     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5770     rm -rf $DIR/$tfile 2>/dev/null
5771 }
5772
5773 test_101f() {
5774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5775     local file=$DIR/$tfile
5776     local nreads=1000
5777
5778     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5779     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5780     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5781     trap cleanup_test101f EXIT
5782
5783     echo Cancel LRU locks on lustre client to flush the client cache
5784     cancel_lru_locks osc
5785
5786     echo Reset readahead stats
5787     $LCTL set_param -n llite.*.read_ahead_stats 0
5788     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5789     # readahead should read in 2M file on second read, so only miss
5790     # 2 pages.
5791     echo Random 4K reads on 2M file for 1000 times
5792     $READS -f $file -s 2097152 -b 4096 -n $nreads
5793
5794     echo checking missing pages
5795     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5796           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5797
5798     [ $miss -lt 3 ] || error "misses too much pages!"
5799     cleanup_test101f
5800 }
5801 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5802
5803 setup_test102() {
5804         test_mkdir -p $DIR/$tdir
5805         chown $RUNAS_ID $DIR/$tdir
5806         STRIPE_SIZE=65536
5807         STRIPE_OFFSET=1
5808         STRIPE_COUNT=$OSTCOUNT
5809         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5810
5811         trap cleanup_test102 EXIT
5812         cd $DIR
5813         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5814         cd $DIR/$tdir
5815         for num in 1 2 3 4; do
5816                 for count in $(seq 1 $STRIPE_COUNT); do
5817                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5818                                 local size=`expr $STRIPE_SIZE \* $num`
5819                                 local file=file"$num-$idx-$count"
5820                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5821                         done
5822                 done
5823         done
5824
5825         cd $DIR
5826         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5827 }
5828
5829 cleanup_test102() {
5830         trap 0
5831         rm -f $TMP/f102.tar
5832         rm -rf $DIR/d0.sanity/d102
5833 }
5834
5835 test_102a() {
5836         local testfile=$DIR/xattr_testfile
5837
5838         touch $testfile
5839
5840         [ "$UID" != 0 ] && skip_env "must run as root" && return
5841         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5842                 skip_env "must have user_xattr" && return
5843
5844         [ -z "$(which setfattr 2>/dev/null)" ] &&
5845                 skip_env "could not find setfattr" && return
5846
5847         echo "set/get xattr..."
5848         setfattr -n trusted.name1 -v value1 $testfile || error
5849         getfattr -n trusted.name1 $testfile 2> /dev/null |
5850           grep "trusted.name1=.value1" ||
5851                 error "$testfile missing trusted.name1=value1"
5852
5853         setfattr -n user.author1 -v author1 $testfile || error
5854         getfattr -n user.author1 $testfile 2> /dev/null |
5855           grep "user.author1=.author1" ||
5856                 error "$testfile missing trusted.author1=author1"
5857
5858         echo "listxattr..."
5859         setfattr -n trusted.name2 -v value2 $testfile ||
5860                 error "$testfile unable to set trusted.name2"
5861         setfattr -n trusted.name3 -v value3 $testfile ||
5862                 error "$testfile unable to set trusted.name3"
5863         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
5864             grep "trusted.name" | wc -l) -eq 3 ] ||
5865                 error "$testfile missing 3 trusted.name xattrs"
5866
5867         setfattr -n user.author2 -v author2 $testfile ||
5868                 error "$testfile unable to set user.author2"
5869         setfattr -n user.author3 -v author3 $testfile ||
5870                 error "$testfile unable to set user.author3"
5871         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
5872             grep "user.author" | wc -l) -eq 3 ] ||
5873                 error "$testfile missing 3 user.author xattrs"
5874
5875         echo "remove xattr..."
5876         setfattr -x trusted.name1 $testfile ||
5877                 error "$testfile error deleting trusted.name1"
5878         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
5879                 error "$testfile did not delete trusted.name1 xattr"
5880
5881         setfattr -x user.author1 $testfile ||
5882                 error "$testfile error deleting user.author1"
5883         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
5884                 error "$testfile did not delete trusted.name1 xattr"
5885
5886         # b10667: setting lustre special xattr be silently discarded
5887         echo "set lustre special xattr ..."
5888         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
5889                 error "$testfile allowed setting trusted.lov"
5890 }
5891 run_test 102a "user xattr test =================================="
5892
5893 test_102b() {
5894         # b10930: get/set/list trusted.lov xattr
5895         echo "get/set/list trusted.lov xattr ..."
5896         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5897         local testfile=$DIR/$tfile
5898         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5899                 error "setstripe failed"
5900         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
5901                 error "getstripe failed"
5902         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
5903         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
5904
5905         local testfile2=${testfile}2
5906         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
5907                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
5908
5909         $MCREATE $testfile2
5910         setfattr -n trusted.lov -v $value $testfile2
5911         local stripe_size=$($GETSTRIPE -S $testfile2)
5912         local stripe_count=$($GETSTRIPE -c $testfile2)
5913         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5914         [ $stripe_count -eq $STRIPECOUNT ] ||
5915                 error "stripe count $stripe_count != $STRIPECOUNT"
5916         rm -f $DIR/$tfile
5917 }
5918 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
5919
5920 test_102c() {
5921         # b10930: get/set/list lustre.lov xattr
5922         echo "get/set/list lustre.lov xattr ..."
5923         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5924         test_mkdir -p $DIR/$tdir
5925         chown $RUNAS_ID $DIR/$tdir
5926         local testfile=$DIR/$tdir/$tfile
5927         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5928                 error "setstripe failed"
5929         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
5930                 error "getstripe failed"
5931         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
5932         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
5933
5934         local testfile2=${testfile}2
5935         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
5936                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
5937
5938         $RUNAS $MCREATE $testfile2
5939         $RUNAS setfattr -n lustre.lov -v $value $testfile2
5940         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
5941         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
5942         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5943         [ $stripe_count -eq $STRIPECOUNT ] ||
5944                 error "stripe count $stripe_count != $STRIPECOUNT"
5945 }
5946 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
5947
5948 compare_stripe_info1() {
5949         local stripe_index_all_zero=true
5950
5951         for num in 1 2 3 4; do
5952                 for count in $(seq 1 $STRIPE_COUNT); do
5953                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
5954                                 local size=$((STRIPE_SIZE * num))
5955                                 local file=file"$num-$offset-$count"
5956                                 stripe_size=$(lfs getstripe -S $PWD/$file)
5957                                 [ $stripe_size -ne $size ] &&
5958                                     error "$file: size $stripe_size != $size"
5959                                 stripe_count=$(lfs getstripe -c $PWD/$file)
5960                                 # allow fewer stripes to be created, ORI-601
5961                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
5962                                     error "$file: count $stripe_count != $count"
5963                                 stripe_index=$(lfs getstripe -i $PWD/$file)
5964                                 [ $stripe_index -ne 0 ] &&
5965                                         stripe_index_all_zero=false
5966                         done
5967                 done
5968         done
5969         $stripe_index_all_zero &&
5970                 error "all files are being extracted starting from OST index 0"
5971         return 0
5972 }
5973
5974 find_lustre_tar() {
5975         [ -n "$(which tar 2>/dev/null)" ] &&
5976                 strings $(which tar) | grep -q "lustre" && echo tar
5977 }
5978
5979 test_102d() {
5980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5981         # b10930: tar test for trusted.lov xattr
5982         TAR=$(find_lustre_tar)
5983         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5984         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5985         setup_test102
5986         test_mkdir -p $DIR/d102d
5987         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
5988         cd $DIR/d102d/$tdir
5989         compare_stripe_info1
5990 }
5991 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
5992
5993 test_102f() {
5994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5995         # b10930: tar test for trusted.lov xattr
5996         TAR=$(find_lustre_tar)
5997         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5998         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5999         setup_test102
6000         test_mkdir -p $DIR/d102f
6001         cd $DIR
6002         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6003         cd $DIR/d102f/$tdir
6004         compare_stripe_info1
6005 }
6006 run_test 102f "tar copy files, not keep osts ==========="
6007
6008 grow_xattr() {
6009         local xsize=${1:-1024}  # in bytes
6010         local file=$DIR/$tfile
6011
6012         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6013                 skip "must have user_xattr" && return 0
6014         [ -z "$(which setfattr 2>/dev/null)" ] &&
6015                 skip_env "could not find setfattr" && return 0
6016         [ -z "$(which getfattr 2>/dev/null)" ] &&
6017                 skip_env "could not find getfattr" && return 0
6018
6019         touch $file
6020
6021         local value="$(generate_string $xsize)"
6022
6023         local xbig=trusted.big
6024         log "save $xbig on $file"
6025         setfattr -n $xbig -v $value $file ||
6026                 error "saving $xbig on $file failed"
6027
6028         local orig=$(get_xattr_value $xbig $file)
6029         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6030
6031         local xsml=trusted.sml
6032         log "save $xsml on $file"
6033         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6034
6035         local new=$(get_xattr_value $xbig $file)
6036         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6037
6038         log "grow $xsml on $file"
6039         setfattr -n $xsml -v "$value" $file ||
6040                 error "growing $xsml on $file failed"
6041
6042         new=$(get_xattr_value $xbig $file)
6043         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6044         log "$xbig still valid after growing $xsml"
6045
6046         rm -f $file
6047 }
6048
6049 test_102h() { # bug 15777
6050         grow_xattr 1024
6051 }
6052 run_test 102h "grow xattr from inside inode to external block"
6053
6054 test_102ha() {
6055         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6056         grow_xattr $(max_xattr_size)
6057 }
6058 run_test 102ha "grow xattr from inside inode to external inode"
6059
6060 test_102i() { # bug 17038
6061         touch $DIR/$tfile
6062         ln -s $DIR/$tfile $DIR/${tfile}link
6063         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6064         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"
6065         rm -f $DIR/$tfile $DIR/${tfile}link
6066 }
6067 run_test 102i "lgetxattr test on symbolic link ============"
6068
6069 test_102j() {
6070         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6071         TAR=$(find_lustre_tar)
6072         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6073         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6074         setup_test102 "$RUNAS"
6075         test_mkdir -p $DIR/d102j
6076         chown $RUNAS_ID $DIR/d102j
6077         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6078         cd $DIR/d102j/$tdir
6079         compare_stripe_info1 "$RUNAS"
6080 }
6081 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6082
6083 test_102k() {
6084         touch $DIR/$tfile
6085         # b22187 just check that does not crash for regular file.
6086         setfattr -n trusted.lov $DIR/$tfile
6087         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6088         local test_kdir=$DIR/d102k
6089         test_mkdir $test_kdir
6090         local default_size=`$GETSTRIPE -S $test_kdir`
6091         local default_count=`$GETSTRIPE -c $test_kdir`
6092         local default_offset=`$GETSTRIPE -i $test_kdir`
6093         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $test_kdir ||
6094                 error 'dir setstripe failed'
6095         setfattr -n trusted.lov $test_kdir
6096         local stripe_size=`$GETSTRIPE -S $test_kdir`
6097         local stripe_count=`$GETSTRIPE -c $test_kdir`
6098         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6099         [ $stripe_size -eq $default_size ] ||
6100                 error "stripe size $stripe_size != $default_size"
6101         [ $stripe_count -eq $default_count ] ||
6102                 error "stripe count $stripe_count != $default_count"
6103         [ $stripe_offset -eq $default_offset ] ||
6104                 error "stripe offset $stripe_offset != $default_offset"
6105         rm -rf $DIR/$tfile $test_kdir
6106 }
6107 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6108
6109 test_102l() {
6110         # LU-532 trusted. xattr is invisible to non-root
6111         local testfile=$DIR/$tfile
6112
6113         touch $testfile
6114
6115         echo "listxattr as user..."
6116         chown $RUNAS_ID $testfile
6117         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6118             grep -q "trusted" &&
6119                 error "$testfile trusted xattrs are user visible"
6120
6121         return 0;
6122 }
6123 run_test 102l "listxattr filter test =================================="
6124
6125 cleanup_test102
6126
6127 run_acl_subtest()
6128 {
6129     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6130     return $?
6131 }
6132
6133 test_103 () {
6134     [ "$UID" != 0 ] && skip_env "must run as root" && return
6135     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6136     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
6137     $GSS && skip "could not run under gss" && return
6138
6139     declare -a identity_old
6140
6141         for num in $(seq $MDSCOUNT); do
6142                 switch_identity $num true || identity_old[$num]=$?
6143         done
6144
6145     SAVE_UMASK=`umask`
6146     umask 0022
6147     cd $DIR
6148
6149     echo "performing cp ..."
6150     run_acl_subtest cp || error
6151     echo "performing getfacl-noacl..."
6152     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6153     echo "performing misc..."
6154     run_acl_subtest misc || error  "misc test failed"
6155     echo "performing permissions..."
6156     run_acl_subtest permissions || error "permissions failed"
6157     echo "performing setfacl..."
6158     run_acl_subtest setfacl || error  "setfacl test failed"
6159
6160     # inheritance test got from HP
6161     echo "performing inheritance..."
6162     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6163     chmod +x make-tree || error "chmod +x failed"
6164     run_acl_subtest inheritance || error "inheritance test failed"
6165     rm -f make-tree
6166
6167     echo "LU-974 ignore umask when acl is enabled..."
6168     run_acl_subtest 974 || error "LU-974 test failed"
6169
6170     echo "LU-2561 newly created file is same size as directory..."
6171     run_acl_subtest 2561 || error "LU-2561 test failed"
6172
6173     cd $SAVE_PWD
6174     umask $SAVE_UMASK
6175
6176         for num in $(seq $MDSCOUNT); do
6177                 if [ "${identity_old[$num]}" = 1 ]; then
6178                         switch_identity $num false || identity_old[$num]=$?
6179                 fi
6180         done
6181 }
6182 run_test 103 "acl test ========================================="
6183
6184 test_104a() {
6185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6186         touch $DIR/$tfile
6187         lfs df || error "lfs df failed"
6188         lfs df -ih || error "lfs df -ih failed"
6189         lfs df -h $DIR || error "lfs df -h $DIR failed"
6190         lfs df -i $DIR || error "lfs df -i $DIR failed"
6191         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6192         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6193
6194         OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
6195         lctl --device %$OSC deactivate
6196         lfs df || error "lfs df with deactivated OSC failed"
6197         lctl --device %$OSC activate
6198         # wait the osc back to normal
6199         wait_osc_import_state client ost FULL
6200
6201         lfs df || error "lfs df with reactivated OSC failed"
6202         rm -f $DIR/$tfile
6203 }
6204 run_test 104a "lfs df [-ih] [path] test ========================="
6205
6206 test_104b() {
6207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6208         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6209         chmod 666 /dev/obd
6210         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
6211         if [ $denied_cnt -ne 0 ];
6212         then
6213                     error "lfs check servers test failed"
6214         fi
6215 }
6216 run_test 104b "$RUNAS lfs check servers test ===================="
6217
6218 test_105a() {
6219         # doesn't work on 2.4 kernels
6220         touch $DIR/$tfile
6221         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6222                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6223         else
6224                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6225         fi
6226         rm -f $DIR/$tfile
6227 }
6228 run_test 105a "flock when mounted without -o flock test ========"
6229
6230 test_105b() {
6231         touch $DIR/$tfile
6232         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6233                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6234         else
6235                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6236         fi
6237         rm -f $DIR/$tfile
6238 }
6239 run_test 105b "fcntl when mounted without -o flock test ========"
6240
6241 test_105c() {
6242         touch $DIR/$tfile
6243         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6244                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6245         else
6246                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6247         fi
6248         rm -f $DIR/$tfile
6249 }
6250 run_test 105c "lockf when mounted without -o flock test ========"
6251
6252 test_105d() { # bug 15924
6253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6254         test_mkdir -p $DIR/$tdir
6255         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6256                 skip "mount w/o flock enabled" && return
6257         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6258         $LCTL set_param fail_loc=0x80000315
6259         flocks_test 2 $DIR/$tdir
6260 }
6261 run_test 105d "flock race (should not freeze) ========"
6262
6263 test_105e() { # bug 22660 && 22040
6264         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6265                 skip "mount w/o flock enabled" && return
6266         touch $DIR/$tfile
6267         flocks_test 3 $DIR/$tfile
6268 }
6269 run_test 105e "Two conflicting flocks from same process ======="
6270
6271 test_106() { #bug 10921
6272         test_mkdir -p $DIR/$tdir
6273         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6274         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6275 }
6276 run_test 106 "attempt exec of dir followed by chown of that dir"
6277
6278 test_107() {
6279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6280         CDIR=`pwd`
6281         cd $DIR
6282
6283         local file=core
6284         rm -f $file
6285
6286         local save_pattern=$(sysctl -n kernel.core_pattern)
6287         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6288         sysctl -w kernel.core_pattern=$file
6289         sysctl -w kernel.core_uses_pid=0
6290
6291         ulimit -c unlimited
6292         sleep 60 &
6293         SLEEPPID=$!
6294
6295         sleep 1
6296
6297         kill -s 11 $SLEEPPID
6298         wait $SLEEPPID
6299         if [ -e $file ]; then
6300                 size=`stat -c%s $file`
6301                 [ $size -eq 0 ] && error "Fail to create core file $file"
6302         else
6303                 error "Fail to create core file $file"
6304         fi
6305         rm -f $file
6306         sysctl -w kernel.core_pattern=$save_pattern
6307         sysctl -w kernel.core_uses_pid=$save_uses_pid
6308         cd $CDIR
6309 }
6310 run_test 107 "Coredump on SIG"
6311
6312 test_110() {
6313         test_mkdir -p $DIR/$tdir
6314         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6315                 error "mkdir with 255 char failed"
6316         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6317                 error "mkdir with 256 char should fail, but did not"
6318         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6319                 error "create with 255 char failed"
6320         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6321                 error "create with 256 char should fail, but did not"
6322
6323         ls -l $DIR/$tdir
6324         rm -rf $DIR/$tdir
6325 }
6326 run_test 110 "filename length checking"
6327
6328 test_115() {
6329         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6330         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6331             cut -c11-20)
6332         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6333             return
6334         echo "Starting with $OSTIO_pre threads"
6335
6336         NUMTEST=20000
6337         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6338         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6339         echo "$NUMTEST creates/unlinks"
6340         test_mkdir -p $DIR/$tdir
6341         createmany -o $DIR/$tdir/$tfile $NUMTEST
6342         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6343
6344         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6345             cut -c11-20)
6346
6347         # don't return an error
6348         [ $OSTIO_post == $OSTIO_pre ] && echo \
6349             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6350             echo "This may be fine, depending on what ran before this test" &&
6351             echo "and how fast this system is." && return
6352
6353         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6354 }
6355 run_test 115 "verify dynamic thread creation===================="
6356
6357 free_min_max () {
6358         wait_delete_completed
6359         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6360         echo OST kbytes available: ${AVAIL[@]}
6361         MAXI=0; MAXV=${AVAIL[0]}
6362         MINI=0; MINV=${AVAIL[0]}
6363         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6364             #echo OST $i: ${AVAIL[i]}kb
6365             if [ ${AVAIL[i]} -gt $MAXV ]; then
6366                 MAXV=${AVAIL[i]}; MAXI=$i
6367             fi
6368             if [ ${AVAIL[i]} -lt $MINV ]; then
6369                 MINV=${AVAIL[i]}; MINI=$i
6370             fi
6371         done
6372         echo Min free space: OST $MINI: $MINV
6373         echo Max free space: OST $MAXI: $MAXV
6374 }
6375
6376 test_116a() { # was previously test_116()
6377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6378         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6379
6380         echo -n "Free space priority "
6381         lctl get_param -n lov.*-clilov-*.qos_prio_free
6382         declare -a AVAIL
6383         free_min_max
6384         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6385                 return
6386
6387         # generate uneven OSTs
6388         test_mkdir -p $DIR/$tdir/OST${MINI}
6389         declare -i FILL
6390         FILL=$(($MINV / 4))
6391         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6392         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6393         i=0
6394         while [ $FILL -gt 0 ]; do
6395             i=$(($i + 1))
6396             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6397             FILL=$(($FILL - 2048))
6398             echo -n .
6399         done
6400         FILL=$(($MINV / 4))
6401         sync
6402         sleep_maxage
6403
6404         free_min_max
6405         DIFF=$(($MAXV - $MINV))
6406         DIFF2=$(($DIFF * 100 / $MINV))
6407         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6408         if [ $DIFF2 -gt 20 ]; then
6409             echo "ok"
6410         else
6411             echo "failed - QOS mode won't be used"
6412             error_ignore "QOS imbalance criteria not met"
6413             return
6414         fi
6415
6416         MINI1=$MINI; MINV1=$MINV
6417         MAXI1=$MAXI; MAXV1=$MAXV
6418
6419         # now fill using QOS
6420         echo writing a bunch of files to QOS-assigned OSTs
6421         $SETSTRIPE -c 1 $DIR/$tdir
6422         i=0
6423         while [ $FILL -gt 0 ]; do
6424             i=$(($i + 1))
6425             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6426             FILL=$(($FILL - 200))
6427             echo -n .
6428         done
6429         echo "wrote $i 200k files"
6430         sync
6431         sleep_maxage
6432
6433         echo "Note: free space may not be updated, so measurements might be off"
6434         free_min_max
6435         DIFF2=$(($MAXV - $MINV))
6436         echo "free space delta: orig $DIFF final $DIFF2"
6437         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6438         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6439         echo "Wrote $DIFF to smaller OST $MINI1"
6440         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6441         echo "Wrote $DIFF2 to larger OST $MAXI1"
6442         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6443
6444         # Figure out which files were written where
6445         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6446                awk '/'$MINI1': / {print $2; exit}')
6447         echo $UUID
6448         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6449         echo "$MINC files created on smaller OST $MINI1"
6450         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6451                awk '/'$MAXI1': / {print $2; exit}')
6452         echo $UUID
6453         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6454         echo "$MAXC files created on larger OST $MAXI1"
6455         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6456         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6457
6458         rm -rf $DIR/$tdir
6459 }
6460 run_test 116a "stripe QOS: free space balance ==================="
6461
6462 test_116b() { # LU-2093
6463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6464 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6465         local old_rr
6466         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6467         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6468         mkdir -p $DIR/$tdir
6469         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6470         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6471         do_facet $SINGLEMDS lctl set_param fail_loc=0
6472         rm -rf $DIR/$tdir
6473         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6474 }
6475 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6476
6477 test_117() # bug 10891
6478 {
6479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6480         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6481         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6482         lctl set_param fail_loc=0x21e
6483         > $DIR/$tfile || error "truncate failed"
6484         lctl set_param fail_loc=0
6485         echo "Truncate succeeded."
6486         rm -f $DIR/$tfile
6487 }
6488 run_test 117 "verify fsfilt_extend =========="
6489
6490 NO_SLOW_RESENDCOUNT=4
6491 export OLD_RESENDCOUNT=""
6492 set_resend_count () {
6493         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6494         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6495         lctl set_param -n $PROC_RESENDCOUNT $1
6496         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6497 }
6498
6499 # for reduce test_118* time (b=14842)
6500 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6501
6502 # Reset async IO behavior after error case
6503 reset_async() {
6504         FILE=$DIR/reset_async
6505
6506         # Ensure all OSCs are cleared
6507         $SETSTRIPE -c -1 $FILE
6508         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6509         sync
6510         rm $FILE
6511 }
6512
6513 test_118a() #bug 11710
6514 {
6515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6516         reset_async
6517
6518         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6519         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6520         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6521
6522         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6523                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6524                 return 1;
6525         fi
6526         rm -f $DIR/$tfile
6527 }
6528 run_test 118a "verify O_SYNC works =========="
6529
6530 test_118b()
6531 {
6532         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6533         remote_ost_nodsh && skip "remote OST with nodsh" && return
6534
6535         reset_async
6536
6537         #define OBD_FAIL_OST_ENOENT 0x217
6538         set_nodes_failloc "$(osts_nodes)" 0x217
6539         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6540         RC=$?
6541         set_nodes_failloc "$(osts_nodes)" 0
6542         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6543         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6544                     grep -c writeback)
6545
6546         if [[ $RC -eq 0 ]]; then
6547                 error "Must return error due to dropped pages, rc=$RC"
6548                 return 1;
6549         fi
6550
6551         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6552                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6553                 return 1;
6554         fi
6555
6556         echo "Dirty pages not leaked on ENOENT"
6557
6558         # Due to the above error the OSC will issue all RPCs syncronously
6559         # until a subsequent RPC completes successfully without error.
6560         $MULTIOP $DIR/$tfile Ow4096yc
6561         rm -f $DIR/$tfile
6562
6563         return 0
6564 }
6565 run_test 118b "Reclaim dirty pages on fatal error =========="
6566
6567 test_118c()
6568 {
6569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6570
6571         # for 118c, restore the original resend count, LU-1940
6572         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6573                                 set_resend_count $OLD_RESENDCOUNT
6574         remote_ost_nodsh && skip "remote OST with nodsh" && return
6575
6576         reset_async
6577
6578         #define OBD_FAIL_OST_EROFS               0x216
6579         set_nodes_failloc "$(osts_nodes)" 0x216
6580
6581         # multiop should block due to fsync until pages are written
6582         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6583         MULTIPID=$!
6584         sleep 1
6585
6586         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6587                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6588         fi
6589
6590         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6591                     grep -c writeback)
6592         if [[ $WRITEBACK -eq 0 ]]; then
6593                 error "No page in writeback, writeback=$WRITEBACK"
6594         fi
6595
6596         set_nodes_failloc "$(osts_nodes)" 0
6597         wait $MULTIPID
6598         RC=$?
6599         if [[ $RC -ne 0 ]]; then
6600                 error "Multiop fsync failed, rc=$RC"
6601         fi
6602
6603         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6604         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6605                     grep -c writeback)
6606         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6607                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6608         fi
6609
6610         rm -f $DIR/$tfile
6611         echo "Dirty pages flushed via fsync on EROFS"
6612         return 0
6613 }
6614 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6615
6616 # continue to use small resend count to reduce test_118* time (b=14842)
6617 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6618
6619 test_118d()
6620 {
6621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6622         remote_ost_nodsh && skip "remote OST with nodsh" && return
6623
6624         reset_async
6625
6626         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6627         set_nodes_failloc "$(osts_nodes)" 0x214
6628         # multiop should block due to fsync until pages are written
6629         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6630         MULTIPID=$!
6631         sleep 1
6632
6633         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6634                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6635         fi
6636
6637         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6638                     grep -c writeback)
6639         if [[ $WRITEBACK -eq 0 ]]; then
6640                 error "No page in writeback, writeback=$WRITEBACK"
6641         fi
6642
6643         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6644         set_nodes_failloc "$(osts_nodes)" 0
6645
6646         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6647         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6648                     grep -c writeback)
6649         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6650                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6651         fi
6652
6653         rm -f $DIR/$tfile
6654         echo "Dirty pages gaurenteed flushed via fsync"
6655         return 0
6656 }
6657 run_test 118d "Fsync validation inject a delay of the bulk =========="
6658
6659 test_118f() {
6660         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6661         reset_async
6662
6663         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6664         lctl set_param fail_loc=0x8000040a
6665
6666         # Should simulate EINVAL error which is fatal
6667         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6668         RC=$?
6669         if [[ $RC -eq 0 ]]; then
6670                 error "Must return error due to dropped pages, rc=$RC"
6671         fi
6672
6673         lctl set_param fail_loc=0x0
6674
6675         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6676         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6677         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6678                     grep -c writeback)
6679         if [[ $LOCKED -ne 0 ]]; then
6680                 error "Locked pages remain in cache, locked=$LOCKED"
6681         fi
6682
6683         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6684                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6685         fi
6686
6687         rm -f $DIR/$tfile
6688         echo "No pages locked after fsync"
6689
6690         reset_async
6691         return 0
6692 }
6693 run_test 118f "Simulate unrecoverable OSC side error =========="
6694
6695 test_118g() {
6696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6697         reset_async
6698
6699         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6700         lctl set_param fail_loc=0x406
6701
6702         # simulate local -ENOMEM
6703         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6704         RC=$?
6705
6706         lctl set_param fail_loc=0
6707         if [[ $RC -eq 0 ]]; then
6708                 error "Must return error due to dropped pages, rc=$RC"
6709         fi
6710
6711         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6712         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6713         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6714                         grep -c writeback)
6715         if [[ $LOCKED -ne 0 ]]; then
6716                 error "Locked pages remain in cache, locked=$LOCKED"
6717         fi
6718
6719         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6720                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6721         fi
6722
6723         rm -f $DIR/$tfile
6724         echo "No pages locked after fsync"
6725
6726         reset_async
6727         return 0
6728 }
6729 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6730
6731 test_118h() {
6732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6733         remote_ost_nodsh && skip "remote OST with nodsh" && return
6734
6735         reset_async
6736
6737         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6738         set_nodes_failloc "$(osts_nodes)" 0x20e
6739         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6740         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6741         RC=$?
6742
6743         set_nodes_failloc "$(osts_nodes)" 0
6744         if [[ $RC -eq 0 ]]; then
6745                 error "Must return error due to dropped pages, rc=$RC"
6746         fi
6747
6748         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6749         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6750         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6751                     grep -c writeback)
6752         if [[ $LOCKED -ne 0 ]]; then
6753                 error "Locked pages remain in cache, locked=$LOCKED"
6754         fi
6755
6756         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6757                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6758         fi
6759
6760         rm -f $DIR/$tfile
6761         echo "No pages locked after fsync"
6762
6763         return 0
6764 }
6765 run_test 118h "Verify timeout in handling recoverables errors  =========="
6766
6767 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6768
6769 test_118i() {
6770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6771         remote_ost_nodsh && skip "remote OST with nodsh" && return
6772
6773         reset_async
6774
6775         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6776         set_nodes_failloc "$(osts_nodes)" 0x20e
6777
6778         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6779         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6780         PID=$!
6781         sleep 5
6782         set_nodes_failloc "$(osts_nodes)" 0
6783
6784         wait $PID
6785         RC=$?
6786         if [[ $RC -ne 0 ]]; then
6787                 error "got error, but should be not, rc=$RC"
6788         fi
6789
6790         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6791         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6792         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6793         if [[ $LOCKED -ne 0 ]]; then
6794                 error "Locked pages remain in cache, locked=$LOCKED"
6795         fi
6796
6797         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6798                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6799         fi
6800
6801         rm -f $DIR/$tfile
6802         echo "No pages locked after fsync"
6803
6804         return 0
6805 }
6806 run_test 118i "Fix error before timeout in recoverable error  =========="
6807
6808 [ "$SLOW" = "no" ] && set_resend_count 4
6809
6810 test_118j() {
6811         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6812         remote_ost_nodsh && skip "remote OST with nodsh" && return
6813
6814         reset_async
6815
6816         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6817         set_nodes_failloc "$(osts_nodes)" 0x220
6818
6819         # return -EIO from OST
6820         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6821         RC=$?
6822         set_nodes_failloc "$(osts_nodes)" 0x0
6823         if [[ $RC -eq 0 ]]; then
6824                 error "Must return error due to dropped pages, rc=$RC"
6825         fi
6826
6827         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6828         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6829         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6830         if [[ $LOCKED -ne 0 ]]; then
6831                 error "Locked pages remain in cache, locked=$LOCKED"
6832         fi
6833
6834         # in recoverable error on OST we want resend and stay until it finished
6835         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6836                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6837         fi
6838
6839         rm -f $DIR/$tfile
6840         echo "No pages locked after fsync"
6841
6842         return 0
6843 }
6844 run_test 118j "Simulate unrecoverable OST side error =========="
6845
6846 test_118k()
6847 {
6848         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6849         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
6850
6851         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6852         set_nodes_failloc "$(osts_nodes)" 0x20e
6853         test_mkdir -p $DIR/$tdir
6854
6855         for ((i=0;i<10;i++)); do
6856                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
6857                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
6858                 SLEEPPID=$!
6859                 sleep 0.500s
6860                 kill $SLEEPPID
6861                 wait $SLEEPPID
6862         done
6863
6864         set_nodes_failloc "$(osts_nodes)" 0
6865         rm -rf $DIR/$tdir
6866 }
6867 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
6868
6869 test_118l()
6870 {
6871         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6872         # LU-646
6873         test_mkdir -p $DIR/$tdir
6874         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
6875         rm -rf $DIR/$tdir
6876 }
6877 run_test 118l "fsync dir ========="
6878
6879 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6880
6881 test_119a() # bug 11737
6882 {
6883         BSIZE=$((512 * 1024))
6884         directio write $DIR/$tfile 0 1 $BSIZE
6885         # We ask to read two blocks, which is more than a file size.
6886         # directio will indicate an error when requested and actual
6887         # sizes aren't equeal (a normal situation in this case) and
6888         # print actual read amount.
6889         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
6890         if [ "$NOB" != "$BSIZE" ]; then
6891                 error "read $NOB bytes instead of $BSIZE"
6892         fi
6893         rm -f $DIR/$tfile
6894 }
6895 run_test 119a "Short directIO read must return actual read amount"
6896
6897 test_119b() # bug 11737
6898 {
6899         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6900
6901         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
6902         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
6903         sync
6904         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
6905                 error "direct read failed"
6906         rm -f $DIR/$tfile
6907 }
6908 run_test 119b "Sparse directIO read must return actual read amount"
6909
6910 test_119c() # bug 13099
6911 {
6912         BSIZE=1048576
6913         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
6914         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
6915         rm -f $DIR/$tfile
6916 }
6917 run_test 119c "Testing for direct read hitting hole"
6918
6919 test_119d() # bug 15950
6920 {
6921         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6922         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
6923         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
6924         BSIZE=1048576
6925         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
6926         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
6927         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
6928         lctl set_param fail_loc=0x40d
6929         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
6930         pid_dio=$!
6931         sleep 1
6932         cat $DIR/$tfile > /dev/null &
6933         lctl set_param fail_loc=0
6934         pid_reads=$!
6935         wait $pid_dio
6936         log "the DIO writes have completed, now wait for the reads (should not block very long)"
6937         sleep 2
6938         [ -n "`ps h -p $pid_reads -o comm`" ] && \
6939         error "the read rpcs have not completed in 2s"
6940         rm -f $DIR/$tfile
6941         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
6942 }
6943 run_test 119d "The DIO path should try to send a new rpc once one is completed"
6944
6945 test_120a() {
6946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6947         test_mkdir -p $DIR/$tdir
6948         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6949                skip "no early lock cancel on server" && return 0
6950         lru_resize_disable mdc
6951         lru_resize_disable osc
6952         cancel_lru_locks mdc
6953         stat $DIR/$tdir > /dev/null
6954         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6955         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6956         test_mkdir $DIR/$tdir/d1
6957         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6958         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6959         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6960         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6961         lru_resize_enable mdc
6962         lru_resize_enable osc
6963 }
6964 run_test 120a "Early Lock Cancel: mkdir test"
6965
6966 test_120b() {
6967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6968         test_mkdir -p $DIR/$tdir
6969         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6970                skip "no early lock cancel on server" && return 0
6971         lru_resize_disable mdc
6972         lru_resize_disable osc
6973         cancel_lru_locks mdc
6974         stat $DIR/$tdir > /dev/null
6975         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6976         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6977         touch $DIR/$tdir/f1
6978         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6979         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6980         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6981         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6982         lru_resize_enable mdc
6983         lru_resize_enable osc
6984 }
6985 run_test 120b "Early Lock Cancel: create test"
6986
6987 test_120c() {
6988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6989         test_mkdir -p $DIR/$tdir
6990         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6991                skip "no early lock cancel on server" && return 0
6992         lru_resize_disable mdc
6993         lru_resize_disable osc
6994         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6995         touch $DIR/$tdir/d1/f1
6996         cancel_lru_locks mdc
6997         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
6998         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6999         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7000         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7001         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7002         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7003         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7004         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7005         lru_resize_enable mdc
7006         lru_resize_enable osc
7007 }
7008 run_test 120c "Early Lock Cancel: link test"
7009
7010 test_120d() {
7011         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7012         test_mkdir -p $DIR/$tdir
7013         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7014                skip "no early lock cancel on server" && return 0
7015         lru_resize_disable mdc
7016         lru_resize_disable osc
7017         touch $DIR/$tdir
7018         cancel_lru_locks mdc
7019         stat $DIR/$tdir > /dev/null
7020         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7021         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7022         chmod a+x $DIR/$tdir
7023         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7024         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7025         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7026         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7027         lru_resize_enable mdc
7028         lru_resize_enable osc
7029 }
7030 run_test 120d "Early Lock Cancel: setattr test"
7031
7032 test_120e() {
7033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7034         test_mkdir -p $DIR/$tdir
7035         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7036                skip "no early lock cancel on server" && return 0
7037         lru_resize_disable mdc
7038         lru_resize_disable osc
7039         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7040         cancel_lru_locks mdc
7041         cancel_lru_locks osc
7042         dd if=$DIR/$tdir/f1 of=/dev/null
7043         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7044         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7045               awk '/ldlm_cancel/ {print $2}'`
7046         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7047               awk '/ldlm_bl_callback/ {print $2}'`
7048         unlink $DIR/$tdir/f1
7049         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7050               awk '/ldlm_cancel/ {print $2}'`
7051         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7052               awk '/ldlm_bl_callback/ {print $2}'`
7053         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7054         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7055         lru_resize_enable mdc
7056         lru_resize_enable osc
7057 }
7058 run_test 120e "Early Lock Cancel: unlink test"
7059
7060 test_120f() {
7061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7062         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7063                skip "no early lock cancel on server" && return 0
7064         test_mkdir -p $DIR/$tdir
7065         lru_resize_disable mdc
7066         lru_resize_disable osc
7067         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7068         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7069         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7070         cancel_lru_locks mdc
7071         cancel_lru_locks osc
7072         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7073         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7074         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7075         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7076               awk '/ldlm_cancel/ {print $2}'`
7077         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7078               awk '/ldlm_bl_callback/ {print $2}'`
7079         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7080         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7081               awk '/ldlm_cancel/ {print $2}'`
7082         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7083               awk '/ldlm_bl_callback/ {print $2}'`
7084         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7085         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7086         lru_resize_enable mdc
7087         lru_resize_enable osc
7088 }
7089 run_test 120f "Early Lock Cancel: rename test"
7090
7091 test_120g() {
7092         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7093         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7094                skip "no early lock cancel on server" && return 0
7095         lru_resize_disable mdc
7096         lru_resize_disable osc
7097         count=10000
7098         echo create $count files
7099         test_mkdir -p $DIR/$tdir
7100         cancel_lru_locks mdc
7101         cancel_lru_locks osc
7102         t0=`date +%s`
7103
7104         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7105               awk '/ldlm_cancel/ {print $2}'`
7106         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7107               awk '/ldlm_bl_callback/ {print $2}'`
7108         createmany -o $DIR/$tdir/f $count
7109         sync
7110         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7111               awk '/ldlm_cancel/ {print $2}'`
7112         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7113               awk '/ldlm_bl_callback/ {print $2}'`
7114         t1=`date +%s`
7115         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7116         echo rm $count files
7117         rm -r $DIR/$tdir
7118         sync
7119         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7120               awk '/ldlm_cancel/ {print $2}'`
7121         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7122               awk '/ldlm_bl_callback/ {print $2}'`
7123         t2=`date +%s`
7124         echo total: $count removes in $((t2-t1))
7125         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7126         sleep 2
7127         # wait for commitment of removal
7128         lru_resize_enable mdc
7129         lru_resize_enable osc
7130 }
7131 run_test 120g "Early Lock Cancel: performance test"
7132
7133 test_121() { #bug #10589
7134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7135         rm -rf $DIR/$tfile
7136         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7137 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7138         lctl set_param fail_loc=0x310
7139         cancel_lru_locks osc > /dev/null
7140         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7141         lctl set_param fail_loc=0
7142         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7143 }
7144 run_test 121 "read cancel race ========="
7145
7146 test_123a() { # was test 123, statahead(bug 11401)
7147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7148         SLOWOK=0
7149         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7150             log "testing on UP system. Performance may be not as good as expected."
7151                         SLOWOK=1
7152         fi
7153
7154         rm -rf $DIR/$tdir
7155         test_mkdir -p $DIR/$tdir
7156         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7157         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7158         MULT=10
7159         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7160                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7161
7162                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7163                 lctl set_param -n llite.*.statahead_max 0
7164                 lctl get_param llite.*.statahead_max
7165                 cancel_lru_locks mdc
7166                 cancel_lru_locks osc
7167                 stime=`date +%s`
7168                 time ls -l $DIR/$tdir | wc -l
7169                 etime=`date +%s`
7170                 delta=$((etime - stime))
7171                 log "ls $i files without statahead: $delta sec"
7172                 lctl set_param llite.*.statahead_max=$max
7173
7174                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7175                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7176                 cancel_lru_locks mdc
7177                 cancel_lru_locks osc
7178                 stime=`date +%s`
7179                 time ls -l $DIR/$tdir | wc -l
7180                 etime=`date +%s`
7181                 delta_sa=$((etime - stime))
7182                 log "ls $i files with statahead: $delta_sa sec"
7183                 lctl get_param -n llite.*.statahead_stats
7184                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7185
7186                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7187                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7188
7189                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7190                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7191                     lctl set_param -n llite.*.statahead_max 0
7192                     lctl get_param llite.*.statahead_max
7193                     cancel_lru_locks mdc
7194                     cancel_lru_locks osc
7195                     stime=`date +%s`
7196                     time ls -l $DIR/$tdir | wc -l
7197                     etime=`date +%s`
7198                     delta=$((etime - stime))
7199                     log "ls $i files again without statahead: $delta sec"
7200                     lctl set_param llite.*.statahead_max=$max
7201                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7202                         if [  $SLOWOK -eq 0 ]; then
7203                                 error "ls $i files is slower with statahead!"
7204                         else
7205                                 log "ls $i files is slower with statahead!"
7206                         fi
7207                         break
7208                     fi
7209                 fi
7210
7211                 [ $delta -gt 20 ] && break
7212                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7213                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7214         done
7215         log "ls done"
7216
7217         stime=`date +%s`
7218         rm -r $DIR/$tdir
7219         sync
7220         etime=`date +%s`
7221         delta=$((etime - stime))
7222         log "rm -r $DIR/$tdir/: $delta seconds"
7223         log "rm done"
7224         lctl get_param -n llite.*.statahead_stats
7225 }
7226 run_test 123a "verify statahead work"
7227
7228 test_123b () { # statahead(bug 15027)
7229         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7230         test_mkdir -p $DIR/$tdir
7231         createmany -o $DIR/$tdir/$tfile-%d 1000
7232
7233         cancel_lru_locks mdc
7234         cancel_lru_locks osc
7235
7236 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7237         lctl set_param fail_loc=0x80000803
7238         ls -lR $DIR/$tdir > /dev/null
7239         log "ls done"
7240         lctl set_param fail_loc=0x0
7241         lctl get_param -n llite.*.statahead_stats
7242         rm -r $DIR/$tdir
7243         sync
7244
7245 }
7246 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7247
7248 test_124a() {
7249         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7250         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7251                skip "no lru resize on server" && return 0
7252         local NR=2000
7253         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7254
7255         log "create $NR files at $DIR/$tdir"
7256         createmany -o $DIR/$tdir/f $NR ||
7257                 error "failed to create $NR files in $DIR/$tdir"
7258
7259         cancel_lru_locks mdc
7260         ls -l $DIR/$tdir > /dev/null
7261
7262         local NSDIR=""
7263         local LRU_SIZE=0
7264         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7265                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7266                 LRU_SIZE=$(lctl get_param -n $PARAM)
7267                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7268                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7269                                                 log "NSDIR=$NSDIR"
7270                         log "NS=$(basename $NSDIR)"
7271                         break
7272                 fi
7273         done
7274
7275         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7276                 skip "Not enough cached locks created!"
7277                 return 0
7278         fi
7279         log "LRU=$LRU_SIZE"
7280
7281         local SLEEP=30
7282
7283         # We know that lru resize allows one client to hold $LIMIT locks
7284         # for 10h. After that locks begin to be killed by client.
7285         local MAX_HRS=10
7286         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7287                 log "LIMIT=$LIMIT"
7288
7289         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7290         # killing locks. Some time was spent for creating locks. This means
7291         # that up to the moment of sleep finish we must have killed some of
7292         # them (10-100 locks). This depends on how fast ther were created.
7293         # Many of them were touched in almost the same moment and thus will
7294         # be killed in groups.
7295         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7296
7297         # Use $LRU_SIZE_B here to take into account real number of locks
7298         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7299         local LRU_SIZE_B=$LRU_SIZE
7300         log "LVF=$LVF"
7301         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7302                 log "OLD_LVF=$OLD_LVF"
7303         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7304
7305         # Let's make sure that we really have some margin. Client checks
7306         # cached locks every 10 sec.
7307         SLEEP=$((SLEEP+20))
7308         log "Sleep ${SLEEP} sec"
7309         local SEC=0
7310         while ((SEC<$SLEEP)); do
7311                 echo -n "..."
7312                 sleep 5
7313                 SEC=$((SEC+5))
7314                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7315                 echo -n "$LRU_SIZE"
7316         done
7317         echo ""
7318         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7319         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7320
7321         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7322                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7323                 unlinkmany $DIR/$tdir/f $NR
7324                 return
7325         }
7326
7327         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7328         log "unlink $NR files at $DIR/$tdir"
7329         unlinkmany $DIR/$tdir/f $NR
7330 }
7331 run_test 124a "lru resize ======================================="
7332
7333 get_max_pool_limit()
7334 {
7335         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7336         local max=0
7337         for l in $limit; do
7338                 if test $l -gt $max; then
7339                         max=$l
7340                 fi
7341         done
7342         echo $max
7343 }
7344
7345 test_124b() {
7346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7347         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7348                skip "no lru resize on server" && return 0
7349
7350         LIMIT=`get_max_pool_limit`
7351
7352         NR=$(($(default_lru_size)*20))
7353         if [ $NR -gt $LIMIT ]; then
7354                 log "Limit lock number by $LIMIT locks"
7355                 NR=$LIMIT
7356         fi
7357         lru_resize_disable mdc
7358         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7359                 error "failed to create $DIR/$tdir/disable_lru_resize"
7360
7361         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7362         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7363         cancel_lru_locks mdc
7364         stime=`date +%s`
7365         PID=""
7366         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7367         PID="$PID $!"
7368         sleep 2
7369         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7370         PID="$PID $!"
7371         sleep 2
7372         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7373         PID="$PID $!"
7374         wait $PID
7375         etime=`date +%s`
7376         nolruresize_delta=$((etime-stime))
7377         log "ls -la time: $nolruresize_delta seconds"
7378         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7379         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7380
7381         lru_resize_enable mdc
7382         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7383                 error "failed to create $DIR/$tdir/enable_lru_resize"
7384
7385         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7386         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7387         cancel_lru_locks mdc
7388         stime=`date +%s`
7389         PID=""
7390         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7391         PID="$PID $!"
7392         sleep 2
7393         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7394         PID="$PID $!"
7395         sleep 2
7396         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7397         PID="$PID $!"
7398         wait $PID
7399         etime=`date +%s`
7400         lruresize_delta=$((etime-stime))
7401         log "ls -la time: $lruresize_delta seconds"
7402         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7403
7404         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7405                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7406         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7407                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7408         else
7409                 log "lru resize performs the same with no lru resize"
7410         fi
7411         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7412 }
7413 run_test 124b "lru resize (performance test) ======================="
7414
7415 test_125() { # 13358
7416         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7417         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7418         test_mkdir -p $DIR/d125 || error "mkdir failed"
7419         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7420         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7421         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7422 }
7423 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7424
7425 test_126() { # bug 12829/13455
7426         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7427         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7428         $GSS && skip "must run as gss disabled" && return
7429
7430         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7431         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7432         rm -f $DIR/$tfile
7433         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7434 }
7435 run_test 126 "check that the fsgid provided by the client is taken into account"
7436
7437 test_127a() { # bug 15521
7438         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7439         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7440         $LCTL set_param osc.*.stats=0
7441         FSIZE=$((2048 * 1024))
7442         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7443         cancel_lru_locks osc
7444         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7445
7446         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7447         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7448                 echo "got $COUNT $NAME"
7449                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7450                 eval $NAME=$COUNT || error "Wrong proc format"
7451
7452                 case $NAME in
7453                         read_bytes|write_bytes)
7454                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7455                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7456                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7457                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7458                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7459                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7460                                 error "sumsquare is too small: $SUMSQ"
7461                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7462                                 error "sumsquare is too big: $SUMSQ"
7463                         ;;
7464                         *) ;;
7465                 esac
7466         done < $DIR/${tfile}.tmp
7467
7468         #check that we actually got some stats
7469         [ "$read_bytes" ] || error "Missing read_bytes stats"
7470         [ "$write_bytes" ] || error "Missing write_bytes stats"
7471         [ "$read_bytes" != 0 ] || error "no read done"
7472         [ "$write_bytes" != 0 ] || error "no write done"
7473 }
7474 run_test 127a "verify the client stats are sane"
7475
7476 test_127b() { # bug LU-333
7477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7478         $LCTL set_param llite.*.stats=0
7479         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7480         # perform 2 reads and writes so MAX is different from SUM.
7481         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7482         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7483         cancel_lru_locks osc
7484         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7485         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7486
7487         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7488         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7489                 echo "got $COUNT $NAME"
7490                 eval $NAME=$COUNT || error "Wrong proc format"
7491
7492         case $NAME in
7493                 read_bytes)
7494                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7495                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7496                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7497                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7498                         ;;
7499                 write_bytes)
7500                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7501                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7502                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7503                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7504                         ;;
7505                         *) ;;
7506                 esac
7507         done < $TMP/${tfile}.tmp
7508
7509         #check that we actually got some stats
7510         [ "$read_bytes" ] || error "Missing read_bytes stats"
7511         [ "$write_bytes" ] || error "Missing write_bytes stats"
7512         [ "$read_bytes" != 0 ] || error "no read done"
7513         [ "$write_bytes" != 0 ] || error "no write done"
7514 }
7515 run_test 127b "verify the llite client stats are sane"
7516
7517 test_128() { # bug 15212
7518         touch $DIR/$tfile
7519         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7520                 find $DIR/$tfile
7521                 find $DIR/$tfile
7522         EOF
7523
7524         result=$(grep error $TMP/$tfile.log)
7525         rm -f $DIR/$tfile
7526         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7527 }
7528 run_test 128 "interactive lfs for 2 consecutive find's"
7529
7530 set_dir_limits () {
7531         local mntdev
7532         local canondev
7533         local node
7534
7535         local LDPROC=/proc/fs/ldiskfs
7536         local facets=$(get_facets MDS)
7537
7538         for facet in ${facets//,/ }; do
7539                 canondev=$(ldiskfs_canon \
7540                            *.$(convert_facet2label $facet).mntdev $facet)
7541                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7542                                                 LDPROC=/sys/fs/ldiskfs
7543                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7544         done
7545 }
7546
7547 test_129() {
7548         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7549         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7550                 skip "Only applicable to ldiskfs-based MDTs"
7551                 return
7552         fi
7553         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7554
7555         EFBIG=27
7556         MAX=16384
7557
7558         set_dir_limits $MAX
7559         test_mkdir -p $DIR/$tdir
7560
7561         local I=0
7562         local J=0
7563         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7564                 $MULTIOP $DIR/$tdir/$J Oc
7565                 rc=$?
7566                 if [ $rc -eq $EFBIG ]; then
7567                         set_dir_limits 0
7568                         echo "return code $rc received as expected"
7569                         return 0
7570                 elif [ $rc -ne 0 ]; then
7571                         set_dir_limits 0
7572                         error_exit "return code $rc received instead of expected $EFBIG"
7573                 fi
7574                 J=$((J+1))
7575                 I=$(stat -c%s "$DIR/$tdir")
7576         done
7577
7578         set_dir_limits 0
7579         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7580 }
7581 run_test 129 "test directory size limit ========================"
7582
7583 OLDIFS="$IFS"
7584 cleanup_130() {
7585         trap 0
7586         IFS="$OLDIFS"
7587 }
7588
7589 test_130a() {
7590         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7591         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7592                 return
7593
7594         trap cleanup_130 EXIT RETURN
7595
7596         local fm_file=$DIR/$tfile
7597         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7598         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7599                 error "dd failed for $fm_file"
7600
7601         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7602         filefrag -ves $fm_file
7603         RC=$?
7604         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7605                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7606         [ $RC != 0 ] && error "filefrag $fm_file failed"
7607
7608         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7609                       grep -v "ext:" | grep -v "found")
7610         lun=$($GETSTRIPE -i $fm_file)
7611
7612         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7613         IFS=$'\n'
7614         tot_len=0
7615         for line in $filefrag_op
7616         do
7617                 frag_lun=`echo $line | cut -d: -f5`
7618                 ext_len=`echo $line | cut -d: -f4`
7619                 if (( $frag_lun != $lun )); then
7620                         cleanup_130
7621                         error "FIEMAP on 1-stripe file($fm_file) failed"
7622                         return
7623                 fi
7624                 (( tot_len += ext_len ))
7625         done
7626
7627         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7628                 cleanup_130
7629                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7630                 return
7631         fi
7632
7633         cleanup_130
7634
7635         echo "FIEMAP on single striped file succeeded"
7636 }
7637 run_test 130a "FIEMAP (1-stripe file)"
7638
7639 test_130b() {
7640         [ "$OSTCOUNT" -lt "2" ] &&
7641                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7642
7643         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7644         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7645                 return
7646
7647         trap cleanup_130 EXIT RETURN
7648
7649         local fm_file=$DIR/$tfile
7650         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7651         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7652                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7653
7654         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7655                 error "dd failed on $fm_file"
7656
7657         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7658         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7659                       grep -v "ext:" | grep -v "found")
7660
7661         last_lun=$(echo $filefrag_op | cut -d: -f5)
7662
7663         IFS=$'\n'
7664         tot_len=0
7665         num_luns=1
7666         for line in $filefrag_op
7667         do
7668                 frag_lun=`echo $line | cut -d: -f5`
7669                 ext_len=`echo $line | cut -d: -f4`
7670                 if (( $frag_lun != $last_lun )); then
7671                         if (( tot_len != 1024 )); then
7672                                 cleanup_130
7673                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7674                                 return
7675                         else
7676                                 (( num_luns += 1 ))
7677                                 tot_len=0
7678                         fi
7679                 fi
7680                 (( tot_len += ext_len ))
7681                 last_lun=$frag_lun
7682         done
7683         if (( num_luns != 2 || tot_len != 1024 )); then
7684                 cleanup_130
7685                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7686                 return
7687         fi
7688
7689         cleanup_130
7690
7691         echo "FIEMAP on 2-stripe file succeeded"
7692 }
7693 run_test 130b "FIEMAP (2-stripe file)"
7694
7695 test_130c() {
7696         [ "$OSTCOUNT" -lt "2" ] &&
7697                 skip_env "skipping FIEMAP on 2-stripe file" && return
7698
7699         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7700         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7701                 return
7702
7703         trap cleanup_130 EXIT RETURN
7704
7705         local fm_file=$DIR/$tfile
7706         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7707         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7708                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7709
7710         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7711
7712         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7713         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7714
7715         last_lun=`echo $filefrag_op | cut -d: -f5`
7716
7717         IFS=$'\n'
7718         tot_len=0
7719         num_luns=1
7720         for line in $filefrag_op
7721         do
7722                 frag_lun=`echo $line | cut -d: -f5`
7723                 ext_len=`echo $line | cut -d: -f4`
7724                 if (( $frag_lun != $last_lun )); then
7725                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7726                         if (( logical != 512 )); then
7727                                 cleanup_130
7728                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7729                                 return
7730                         fi
7731                         if (( tot_len != 512 )); then
7732                                 cleanup_130
7733                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7734                                 return
7735                         else
7736                                 (( num_luns += 1 ))
7737                                 tot_len=0
7738                         fi
7739                 fi
7740                 (( tot_len += ext_len ))
7741                 last_lun=$frag_lun
7742         done
7743         if (( num_luns != 2 || tot_len != 512 )); then
7744                 cleanup_130
7745                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7746                 return
7747         fi
7748
7749         cleanup_130
7750
7751         echo "FIEMAP on 2-stripe file with hole succeeded"
7752 }
7753 run_test 130c "FIEMAP (2-stripe file with hole)"
7754
7755 test_130d() {
7756         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7757
7758         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7759         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7760
7761         trap cleanup_130 EXIT RETURN
7762
7763         local fm_file=$DIR/$tfile
7764         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7765         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7766                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7767         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7768
7769         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7770         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7771
7772         last_lun=`echo $filefrag_op | cut -d: -f5`
7773
7774         IFS=$'\n'
7775         tot_len=0
7776         num_luns=1
7777         for line in $filefrag_op
7778         do
7779                 frag_lun=`echo $line | cut -d: -f5`
7780                 ext_len=`echo $line | cut -d: -f4`
7781                 if (( $frag_lun != $last_lun )); then
7782                         if (( tot_len != 1024 )); then
7783                                 cleanup_130
7784                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7785                                 return
7786                         else
7787                                 (( num_luns += 1 ))
7788                                 tot_len=0
7789                         fi
7790                 fi
7791                 (( tot_len += ext_len ))
7792                 last_lun=$frag_lun
7793         done
7794         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7795                 cleanup_130
7796                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7797                 return
7798         fi
7799
7800         cleanup_130
7801
7802         echo "FIEMAP on N-stripe file succeeded"
7803 }
7804 run_test 130d "FIEMAP (N-stripe file)"
7805
7806 test_130e() {
7807         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7808
7809         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7810         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7811
7812         trap cleanup_130 EXIT RETURN
7813
7814         local fm_file=$DIR/$tfile
7815         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7816         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7817                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7818
7819         NUM_BLKS=512
7820         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7821         for ((i = 0; i < $NUM_BLKS; i++))
7822         do
7823                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7824         done
7825
7826         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7827         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7828
7829         last_lun=`echo $filefrag_op | cut -d: -f5`
7830
7831         IFS=$'\n'
7832         tot_len=0
7833         num_luns=1
7834         for line in $filefrag_op
7835         do
7836                 frag_lun=`echo $line | cut -d: -f5`
7837                 ext_len=`echo $line | cut -d: -f4`
7838                 if (( $frag_lun != $last_lun )); then
7839                         if (( tot_len != $EXPECTED_LEN )); then
7840                                 cleanup_130
7841                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
7842                                 return
7843                         else
7844                                 (( num_luns += 1 ))
7845                                 tot_len=0
7846                         fi
7847                 fi
7848                 (( tot_len += ext_len ))
7849                 last_lun=$frag_lun
7850         done
7851         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
7852                 cleanup_130
7853                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7854                 return
7855         fi
7856
7857         cleanup_130
7858
7859         echo "FIEMAP with continuation calls succeeded"
7860 }
7861 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
7862
7863 # Test for writev/readv
7864 test_131a() {
7865         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
7866         error "writev test failed"
7867         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
7868         error "readv failed"
7869         rm -f $DIR/$tfile
7870 }
7871 run_test 131a "test iov's crossing stripe boundary for writev/readv"
7872
7873 test_131b() {
7874         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
7875         error "append writev test failed"
7876         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
7877         error "append writev test failed"
7878         rm -f $DIR/$tfile
7879 }
7880 run_test 131b "test append writev"
7881
7882 test_131c() {
7883         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
7884         error "NOT PASS"
7885 }
7886 run_test 131c "test read/write on file w/o objects"
7887
7888 test_131d() {
7889         rwv -f $DIR/$tfile -w -n 1 1572864
7890         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
7891         if [ "$NOB" != 1572864 ]; then
7892                 error "Short read filed: read $NOB bytes instead of 1572864"
7893         fi
7894         rm -f $DIR/$tfile
7895 }
7896 run_test 131d "test short read"
7897
7898 test_131e() {
7899         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
7900         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
7901         error "read hitting hole failed"
7902         rm -f $DIR/$tfile
7903 }
7904 run_test 131e "test read hitting hole"
7905
7906 get_ost_param() {
7907         local token=$1
7908         local gl_sum=0
7909         for node in $(osts_nodes); do
7910                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
7911                 [ x$gl = x"" ] && gl=0
7912                 gl_sum=$((gl_sum + gl))
7913         done
7914         echo $gl_sum
7915 }
7916
7917 som_mode_switch() {
7918         local som=$1
7919         local gl1=$2
7920         local gl2=$3
7921
7922         if [ x$som = x"enabled" ]; then
7923                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
7924                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
7925                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
7926         else
7927                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
7928                 MOUNTOPT="$MOUNTOPT,som_preview"
7929                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
7930         fi
7931
7932         # do remount to make new mount-conf parameters actual
7933         echo remounting...
7934         sync
7935         stopall
7936         setupall
7937 }
7938
7939 test_132() { #1028, SOM
7940         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7941         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7942         local num=$(get_mds_dir $DIR)
7943         local mymds=mds${num}
7944         local MOUNTOPT_SAVE=$MOUNTOPT
7945
7946         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7947         cancel_lru_locks osc
7948
7949         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7950
7951         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7952         stat $DIR/$tfile >/dev/null
7953         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7954         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
7955         rm $DIR/$tfile
7956         som_mode_switch $som1 $gl1 $gl2
7957
7958         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7959         cancel_lru_locks osc
7960
7961         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7962         if [ $som1 == $som2 ]; then
7963             error "som is still "$som2
7964             if [ x$som2 = x"enabled" ]; then
7965                 som2="disabled"
7966             else
7967                 som2="enabled"
7968             fi
7969         fi
7970
7971         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7972         stat $DIR/$tfile >/dev/null
7973         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7974         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
7975         som_mode_switch $som2 $gl1 $gl2
7976         MOUNTOPT=$MOUNTOPT_SAVE
7977 }
7978 run_test 132 "som avoids glimpse rpc"
7979
7980 check_stats() {
7981         local res
7982         local count
7983         case $1 in
7984         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
7985                  ;;
7986         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
7987                  ;;
7988         *) error "Wrong argument $1" ;;
7989         esac
7990         echo $res
7991         count=`echo $res | awk '{print $2}'`
7992         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
7993         # if the argument $3 is zero, it means any stat increment is ok.
7994         if [ $3 -gt 0 ] ; then
7995                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
7996         fi
7997 }
7998
7999 test_133a() {
8000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8001         remote_ost_nodsh && skip "remote OST with nodsh" && return
8002         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8003
8004         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8005                 { skip "MDS doesn't support rename stats"; return; }
8006         local testdir=$DIR/${tdir}/stats_testdir
8007         mkdir -p $DIR/${tdir}
8008
8009         # clear stats.
8010         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8011         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8012
8013         # verify mdt stats first.
8014         mkdir ${testdir} || error "mkdir failed"
8015         check_stats $SINGLEMDS "mkdir" 1
8016         touch ${testdir}/${tfile} || "touch failed"
8017         check_stats $SINGLEMDS "open" 1
8018         check_stats $SINGLEMDS "close" 1
8019         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8020         check_stats $SINGLEMDS "mknod" 1
8021         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8022         check_stats $SINGLEMDS "unlink" 1
8023         rm -f ${testdir}/${tfile} || error "file remove failed"
8024         check_stats $SINGLEMDS "unlink" 2
8025
8026         # remove working dir and check mdt stats again.
8027         rmdir ${testdir} || error "rmdir failed"
8028         check_stats $SINGLEMDS "rmdir" 1
8029
8030         local testdir1=$DIR/${tdir}/stats_testdir1
8031         mkdir -p ${testdir}
8032         mkdir -p ${testdir1}
8033         touch ${testdir1}/test1
8034         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8035         check_stats $SINGLEMDS "crossdir_rename" 1
8036
8037         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8038         check_stats $SINGLEMDS "samedir_rename" 1
8039
8040         rm -rf $DIR/${tdir}
8041 }
8042 run_test 133a "Verifying MDT stats ========================================"
8043
8044 test_133b() {
8045         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8046         remote_ost_nodsh && skip "remote OST with nodsh" && return
8047         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8048         local testdir=$DIR/${tdir}/stats_testdir
8049         mkdir -p ${testdir} || error "mkdir failed"
8050         touch ${testdir}/${tfile} || "touch failed"
8051         cancel_lru_locks mdc
8052
8053         # clear stats.
8054         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8055         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8056
8057         # extra mdt stats verification.
8058         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8059         check_stats $SINGLEMDS "setattr" 1
8060         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8061         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8062         then            # LU-1740
8063                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8064                 check_stats $SINGLEMDS "getattr" 1
8065         fi
8066         $LFS df || error "lfs failed"
8067         check_stats $SINGLEMDS "statfs" 1
8068
8069         rm -rf $DIR/${tdir}
8070 }
8071 run_test 133b "Verifying extra MDT stats =================================="
8072
8073 test_133c() {
8074         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8075         remote_ost_nodsh && skip "remote OST with nodsh" && return
8076         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8077         local testdir=$DIR/${tdir}/stats_testdir
8078         test_mkdir -p ${testdir} || error "mkdir failed"
8079
8080         # verify obdfilter stats.
8081         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8082         sync
8083         cancel_lru_locks osc
8084         wait_delete_completed
8085
8086         # clear stats.
8087         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8088         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8089
8090         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8091         sync
8092         cancel_lru_locks osc
8093         check_stats ost "write" 1
8094
8095         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8096         check_stats ost "read" 1
8097
8098         > ${testdir}/${tfile} || error "truncate failed"
8099         check_stats ost "punch" 1
8100
8101         rm -f ${testdir}/${tfile} || error "file remove failed"
8102         wait_delete_completed
8103         check_stats ost "destroy" 1
8104
8105         rm -rf $DIR/${tdir}
8106 }
8107 run_test 133c "Verifying OST stats ========================================"
8108
8109 order_2() {
8110     local value=$1
8111     local orig=$value
8112     local order=1
8113
8114     while [ $value -ge 2 ]; do
8115         order=$((order*2))
8116         value=$((value/2))
8117     done
8118
8119     if [ $orig -gt $order ]; then
8120         order=$((order*2))
8121     fi
8122     echo $order
8123 }
8124
8125 size_in_KMGT() {
8126     local value=$1
8127     local size=('K' 'M' 'G' 'T');
8128     local i=0
8129     local size_string=$value
8130
8131     while [ $value -ge 1024 ]; do
8132         if [ $i -gt 3 ]; then
8133             #T is the biggest unit we get here, if that is bigger,
8134             #just return XXXT
8135             size_string=${value}T
8136             break
8137         fi
8138         value=$((value >> 10))
8139         if [ $value -lt 1024 ]; then
8140             size_string=${value}${size[$i]}
8141             break
8142         fi
8143         i=$((i + 1))
8144     done
8145
8146     echo $size_string
8147 }
8148
8149 get_rename_size() {
8150     local size=$1
8151     local context=${2:-.}
8152     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8153                 grep -A1 $context |
8154                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8155     echo $sample
8156 }
8157
8158 test_133d() {
8159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8160     remote_ost_nodsh && skip "remote OST with nodsh" && return
8161     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8162     do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8163         { skip "MDS doesn't support rename stats"; return; }
8164
8165     local testdir1=$DIR/${tdir}/stats_testdir1
8166     local testdir2=$DIR/${tdir}/stats_testdir2
8167
8168     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8169
8170     test_mkdir -p ${testdir1} || error "mkdir failed"
8171     test_mkdir -p ${testdir2} || error "mkdir failed"
8172
8173     createmany -o $testdir1/test 512 || error "createmany failed"
8174
8175         # check samedir rename size
8176         mv ${testdir1}/test0 ${testdir1}/test_0
8177
8178         local testdir1_size=$(ls -l $DIR/${tdir} |
8179                 awk '/stats_testdir1/ {print $5}')
8180         local testdir2_size=$(ls -l $DIR/${tdir} |
8181                 awk '/stats_testdir2/ {print $5}')
8182
8183         testdir1_size=$(order_2 $testdir1_size)
8184         testdir2_size=$(order_2 $testdir2_size)
8185
8186         testdir1_size=$(size_in_KMGT $testdir1_size)
8187         testdir2_size=$(size_in_KMGT $testdir2_size)
8188
8189         echo "source rename dir size: ${testdir1_size}"
8190         echo "target rename dir size: ${testdir2_size}"
8191
8192     local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8193     eval $cmd || error "$cmd failed"
8194     local samedir=$($cmd | grep 'same_dir')
8195     local same_sample=$(get_rename_size $testdir1_size)
8196     [ -z "$samedir" ] && error "samedir_rename_size count error"
8197     [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8198     echo "Check same dir rename stats success"
8199
8200     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8201
8202     # check crossdir rename size
8203     mv ${testdir1}/test_0 ${testdir2}/test_0
8204
8205         testdir1_size=$(ls -l $DIR/${tdir} |
8206                 awk '/stats_testdir1/ {print $5}')
8207         testdir2_size=$(ls -l $DIR/${tdir} |
8208                 awk '/stats_testdir2/ {print $5}')
8209
8210         testdir1_size=$(order_2 $testdir1_size)
8211         testdir2_size=$(order_2 $testdir2_size)
8212
8213         testdir1_size=$(size_in_KMGT $testdir1_size)
8214         testdir2_size=$(size_in_KMGT $testdir2_size)
8215
8216         echo "source rename dir size: ${testdir1_size}"
8217         echo "target rename dir size: ${testdir2_size}"
8218
8219     eval $cmd || error "$cmd failed"
8220     local crossdir=$($cmd | grep 'crossdir')
8221     local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8222     local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8223     [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8224     [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8225     [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8226     echo "Check cross dir rename stats success"
8227     rm -rf $DIR/${tdir}
8228 }
8229 run_test 133d "Verifying rename_stats ========================================"
8230
8231 test_133e() {
8232         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8233         local testdir=$DIR/${tdir}/stats_testdir
8234         local ctr f0 f1 bs=32768 count=42 sum
8235
8236         remote_ost_nodsh && skip "remote OST with nodsh" && return
8237         mkdir -p ${testdir} || error "mkdir failed"
8238
8239         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8240
8241         for ctr in {write,read}_bytes; do
8242                 sync
8243                 cancel_lru_locks osc
8244
8245                 do_facet ost1 $LCTL set_param -n \
8246                         "obdfilter.*.exports.clear=clear"
8247
8248                 if [ $ctr = write_bytes ]; then
8249                         f0=/dev/zero
8250                         f1=${testdir}/${tfile}
8251                 else
8252                         f0=${testdir}/${tfile}
8253                         f1=/dev/null
8254                 fi
8255
8256                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8257                         error "dd failed"
8258                 sync
8259                 cancel_lru_locks osc
8260
8261                 sum=$(do_facet ost1 $LCTL get_param \
8262                                 "obdfilter.*.exports.*.stats" | \
8263                           awk -v ctr=$ctr '\
8264                                 BEGIN { sum = 0 }
8265                                 $1 == ctr { sum += $7 }
8266                                 END { print sum }')
8267
8268                 if ((sum != bs * count)); then
8269                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8270                 fi
8271         done
8272
8273         rm -rf $DIR/${tdir}
8274 }
8275 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8276
8277 test_133f() {
8278         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8279         local facet
8280
8281         # First without trusting modes.
8282         find $proc_dirs \
8283                 -exec cat '{}' \; &> /dev/null
8284
8285         # Second verifying readability.
8286         find $proc_dirs \
8287                 -type f \
8288                 -readable \
8289                 -exec cat '{}' \; > /dev/null ||
8290                         error "proc file read failed"
8291
8292         for facet in $SINGLEMDS ost1; do
8293                 do_facet $facet find $proc_dirs \
8294                         -not -name req_history \
8295                         -exec cat '{}' \\\; &> /dev/null
8296
8297             do_facet $facet     find $proc_dirs \
8298                         -not -name req_history \
8299                         -type f \
8300                         -readable \
8301                         -exec cat '{}' \\\; > /dev/null ||
8302                                 error "proc file read failed"
8303         done
8304 }
8305 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8306
8307 test_140() { #bug-17379
8308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8309         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8310         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8311         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8312
8313         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8314         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8315         local i=0
8316         while i=`expr $i + 1`; do
8317                 test_mkdir -p $i || error "Creating dir $i"
8318                 cd $i || error "Changing to $i"
8319                 ln -s ../stat stat || error "Creating stat symlink"
8320                 # Read the symlink until ELOOP present,
8321                 # not LBUGing the system is considered success,
8322                 # we didn't overrun the stack.
8323                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8324                 [ $ret -ne 0 ] && {
8325                         if [ $ret -eq 40 ]; then
8326                                 break  # -ELOOP
8327                         else
8328                                 error "Open stat symlink"
8329                                 return
8330                         fi
8331                 }
8332         done
8333         i=`expr $i - 1`
8334         echo "The symlink depth = $i"
8335         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8336                                         error "Invalid symlink depth"
8337
8338         # Test recursive symlink
8339         ln -s symlink_self symlink_self
8340         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8341         echo "open symlink_self returns $ret"
8342         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8343 }
8344 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8345
8346 test_150() {
8347         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8348         local TF="$TMP/$tfile"
8349
8350         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8351         cp $TF $DIR/$tfile
8352         cancel_lru_locks osc
8353         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8354         remount_client $MOUNT
8355         df -P $MOUNT
8356         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8357
8358         $TRUNCATE $TF 6000
8359         $TRUNCATE $DIR/$tfile 6000
8360         cancel_lru_locks osc
8361         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8362
8363         echo "12345" >>$TF
8364         echo "12345" >>$DIR/$tfile
8365         cancel_lru_locks osc
8366         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8367
8368         echo "12345" >>$TF
8369         echo "12345" >>$DIR/$tfile
8370         cancel_lru_locks osc
8371         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8372
8373         rm -f $TF
8374         true
8375 }
8376 run_test 150 "truncate/append tests"
8377
8378 function roc_hit() {
8379         local list=$(comma_list $(osts_nodes))
8380
8381         echo $(get_osd_param $list '' stats |
8382                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
8383 }
8384
8385 function set_cache() {
8386         local on=1
8387
8388         if [ "$2" == "off" ]; then
8389                 on=0;
8390         fi
8391         local list=$(comma_list $(osts_nodes))
8392         set_osd_param $list '' $1_cache_enable $on
8393
8394         cancel_lru_locks osc
8395 }
8396
8397 test_151() {
8398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8399         remote_ost_nodsh && skip "remote OST with nodsh" && return
8400
8401         local CPAGES=3
8402         local list=$(comma_list $(osts_nodes))
8403
8404         # check whether obdfilter is cache capable at all
8405         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8406                 echo "not cache-capable obdfilter"
8407                 return 0
8408         fi
8409
8410         # check cache is enabled on all obdfilters
8411         if get_osd_param $list '' read_cache_enable | grep 0; then
8412                 echo "oss cache is disabled"
8413                 return 0
8414         fi
8415
8416         set_osd_param $list '' writethrough_cache_enable 1
8417
8418         # pages should be in the case right after write
8419         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
8420         local BEFORE=`roc_hit`
8421         cancel_lru_locks osc
8422         cat $DIR/$tfile >/dev/null
8423         local AFTER=`roc_hit`
8424         if ! let "AFTER - BEFORE == CPAGES"; then
8425                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8426         fi
8427
8428         # the following read invalidates the cache
8429         cancel_lru_locks osc
8430         set_osd_param $list '' read_cache_enable 0
8431         cat $DIR/$tfile >/dev/null
8432
8433         # now data shouldn't be found in the cache
8434         BEFORE=`roc_hit`
8435         cancel_lru_locks osc
8436         cat $DIR/$tfile >/dev/null
8437         AFTER=`roc_hit`
8438         if let "AFTER - BEFORE != 0"; then
8439                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8440         fi
8441
8442         set_osd_param $list '' read_cache_enable 1
8443         rm -f $DIR/$tfile
8444 }
8445 run_test 151 "test cache on oss and controls ==============================="
8446
8447 test_152() {
8448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8449         local TF="$TMP/$tfile"
8450
8451         # simulate ENOMEM during write
8452 #define OBD_FAIL_OST_NOMEM      0x226
8453         lctl set_param fail_loc=0x80000226
8454         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8455         cp $TF $DIR/$tfile
8456         sync || error "sync failed"
8457         lctl set_param fail_loc=0
8458
8459         # discard client's cache
8460         cancel_lru_locks osc
8461
8462         # simulate ENOMEM during read
8463         lctl set_param fail_loc=0x80000226
8464         cmp $TF $DIR/$tfile || error "cmp failed"
8465         lctl set_param fail_loc=0
8466
8467         rm -f $TF
8468 }
8469 run_test 152 "test read/write with enomem ============================"
8470
8471 test_153() {
8472         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8473 }
8474 run_test 153 "test if fdatasync does not crash ======================="
8475
8476 dot_lustre_fid_permission_check() {
8477         local fid=$1
8478         local ffid=$MOUNT/.lustre/fid/$fid
8479         local test_dir=$2
8480
8481         echo "stat fid $fid"
8482         stat $ffid > /dev/null || error "stat $ffid failed."
8483         echo "touch fid $fid"
8484         touch $ffid || error "touch $ffid failed."
8485         echo "write to fid $fid"
8486         cat /etc/hosts > $ffid || error "write $ffid failed."
8487         echo "read fid $fid"
8488         diff /etc/hosts $ffid || error "read $ffid failed."
8489         echo "append write to fid $fid"
8490         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8491         echo "rename fid $fid"
8492         mv $ffid $test_dir/$tfile.1 &&
8493                 error "rename $ffid to $tfile.1 should fail."
8494         touch $test_dir/$tfile.1
8495         mv $test_dir/$tfile.1 $ffid &&
8496                 error "rename $tfile.1 to $ffid should fail."
8497         rm -f $test_dir/$tfile.1
8498         echo "truncate fid $fid"
8499         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8500         echo "link fid $fid"
8501         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8502         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8503                 echo "setfacl fid $fid"
8504                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8505                 echo "getfacl fid $fid"
8506                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8507         fi
8508         echo "unlink fid $fid"
8509         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8510         echo "mknod fid $fid"
8511         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8512
8513         fid=[0xf00000400:0x1:0x0]
8514         ffid=$MOUNT/.lustre/fid/$fid
8515
8516         echo "stat non-exist fid $fid"
8517         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8518         echo "write to non-exist fid $fid"
8519         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8520         echo "link new fid $fid"
8521         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8522
8523         mkdir -p $test_dir/$tdir
8524         touch $test_dir/$tdir/$tfile
8525         fid=$($LFS path2fid $test_dir/$tdir)
8526         rc=$?
8527         [ $rc -ne 0 ] &&
8528                 error "error: could not get fid for $test_dir/$dir/$tfile."
8529
8530         ffid=$MOUNT/.lustre/fid/$fid
8531
8532         echo "ls $fid"
8533         ls $ffid > /dev/null || error "ls $ffid failed."
8534         echo "touch $fid/$tfile.1"
8535         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8536
8537         echo "touch $MOUNT/.lustre/fid/$tfile"
8538         touch $MOUNT/.lustre/fid/$tfile && \
8539                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8540
8541         echo "setxattr to $MOUNT/.lustre/fid"
8542         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid &&
8543                 error "setxattr should fail."
8544
8545         echo "listxattr for $MOUNT/.lustre/fid"
8546         getfattr -d -m "^trusted" $MOUNT/.lustre/fid &&
8547                 error "listxattr should fail."
8548
8549         echo "delxattr from $MOUNT/.lustre/fid"
8550         setfattr -x trusted.name1 $MOUNT/.lustre/fid &&
8551                 error "delxattr should fail."
8552
8553         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8554         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8555                 error "touch invalid fid should fail."
8556
8557         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8558         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8559                 error "touch non-normal fid should fail."
8560
8561         echo "rename $tdir to $MOUNT/.lustre/fid"
8562         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8563                 error "rename to $MOUNT/.lustre/fid should fail."
8564
8565         echo "rename .lustre to itself"
8566         fid=$($LFS path2fid $MOUNT)
8567         mrename $MOUNT/.lustre $MOUNT/.lustre/fid/$fid/.lustre &&
8568                 error "rename .lustre to itself should fail."
8569
8570         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8571         fid=$($LFS path2fid $test_dir/$tfile-2)
8572         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8573         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8574                 error "create lov data thru .lustre should fail."
8575         echo "cp /etc/passwd $test_dir/$tfile-2"
8576         cp /etc/passwd $test_dir/$tfile-2 ||
8577                 error "copy to $test_dir/$tfile-2 failed."
8578         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8579         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8580                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8581
8582         rm -rf $test_dir/tfile.lnk
8583         rm -rf $test_dir/$tfile-2
8584 }
8585
8586 test_154a() {
8587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8588         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8589                 { skip "Need MDS version at least 2.2.51"; return 0; }
8590
8591         cp /etc/hosts $DIR/$tfile
8592
8593         fid=$($LFS path2fid $DIR/$tfile)
8594         rc=$?
8595         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8596
8597         dot_lustre_fid_permission_check "$fid" $DIR ||
8598                 error "dot lustre permission check $fid failed"
8599
8600         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8601         chmod 777 $MOUNT/.lustre && error ".lustre is not allowed to be chmod"
8602
8603         touch $MOUNT/.lustre/file &&
8604                 error "creation is not allowed under .lustre"
8605
8606         mkdir $MOUNT/.lustre/dir &&
8607                 error "mkdir is not allowed under .lustre"
8608
8609         rm -rf $DIR/$tfile
8610 }
8611 run_test 154a "Open-by-FID"
8612
8613 test_154b() {
8614         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8615         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8616                 { skip "Need MDS version at least 2.2.51"; return 0; }
8617
8618         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
8619
8620         local remote_dir=$DIR/$tdir/remote_dir
8621         local MDTIDX=1
8622         local rc=0
8623
8624         mkdir -p $DIR/$tdir
8625         $LFS mkdir -i $MDTIDX $remote_dir ||
8626                 error "create remote directory failed"
8627
8628         cp /etc/hosts $remote_dir/$tfile
8629
8630         fid=$($LFS path2fid $remote_dir/$tfile)
8631         rc=$?
8632         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
8633
8634         dot_lustre_fid_permission_check "$fid" $remote_dir ||
8635                 error "dot lustre permission check $fid failed"
8636         rm -rf $DIR/$tdir
8637 }
8638 run_test 154b "Open-by-FID for remote directory"
8639
8640 test_155_small_load() {
8641     local temp=$TMP/$tfile
8642     local file=$DIR/$tfile
8643
8644     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8645         error "dd of=$temp bs=6096 count=1 failed"
8646     cp $temp $file
8647     cancel_lru_locks osc
8648     cmp $temp $file || error "$temp $file differ"
8649
8650     $TRUNCATE $temp 6000
8651     $TRUNCATE $file 6000
8652     cmp $temp $file || error "$temp $file differ (truncate1)"
8653
8654     echo "12345" >>$temp
8655     echo "12345" >>$file
8656     cmp $temp $file || error "$temp $file differ (append1)"
8657
8658     echo "12345" >>$temp
8659     echo "12345" >>$file
8660     cmp $temp $file || error "$temp $file differ (append2)"
8661
8662     rm -f $temp $file
8663     true
8664 }
8665
8666 test_155_big_load() {
8667     remote_ost_nodsh && skip "remote OST with nodsh" && return
8668     local temp=$TMP/$tfile
8669     local file=$DIR/$tfile
8670
8671     free_min_max
8672     local cache_size=$(do_facet ost$((MAXI+1)) \
8673         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8674     local large_file_size=$((cache_size * 2))
8675
8676     echo "OSS cache size: $cache_size KB"
8677     echo "Large file size: $large_file_size KB"
8678
8679     [ $MAXV -le $large_file_size ] && \
8680         skip_env "max available OST size needs > $large_file_size KB" && \
8681         return 0
8682
8683     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8684
8685     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8686         error "dd of=$temp bs=$large_file_size count=1k failed"
8687     cp $temp $file
8688     ls -lh $temp $file
8689     cancel_lru_locks osc
8690     cmp $temp $file || error "$temp $file differ"
8691
8692     rm -f $temp $file
8693     true
8694 }
8695
8696 test_155a() {
8697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8698         set_cache read on
8699         set_cache writethrough on
8700         test_155_small_load
8701 }
8702 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8703
8704 test_155b() {
8705         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8706         set_cache read on
8707         set_cache writethrough off
8708         test_155_small_load
8709 }
8710 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8711
8712 test_155c() {
8713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8714         set_cache read off
8715         set_cache writethrough on
8716         test_155_small_load
8717 }
8718 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8719
8720 test_155d() {
8721         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8722         set_cache read off
8723         set_cache writethrough off
8724         test_155_small_load
8725 }
8726 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8727
8728 test_155e() {
8729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8730         set_cache read on
8731         set_cache writethrough on
8732         test_155_big_load
8733 }
8734 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8735
8736 test_155f() {
8737         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8738         set_cache read on
8739         set_cache writethrough off
8740         test_155_big_load
8741 }
8742 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8743
8744 test_155g() {
8745         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8746         set_cache read off
8747         set_cache writethrough on
8748         test_155_big_load
8749 }
8750 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8751
8752 test_155h() {
8753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8754         set_cache read off
8755         set_cache writethrough off
8756         test_155_big_load
8757 }
8758 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8759
8760 test_156() {
8761         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8762         local CPAGES=3
8763         local BEFORE
8764         local AFTER
8765         local file="$DIR/$tfile"
8766
8767         [ "$(facet_fstype ost1)" = "zfs" ] &&
8768                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8769                 return
8770
8771     log "Turn on read and write cache"
8772     set_cache read on
8773     set_cache writethrough on
8774
8775     log "Write data and read it back."
8776     log "Read should be satisfied from the cache."
8777     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8778     BEFORE=`roc_hit`
8779     cancel_lru_locks osc
8780     cat $file >/dev/null
8781     AFTER=`roc_hit`
8782     if ! let "AFTER - BEFORE == CPAGES"; then
8783         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8784     else
8785         log "cache hits:: before: $BEFORE, after: $AFTER"
8786     fi
8787
8788     log "Read again; it should be satisfied from the cache."
8789     BEFORE=$AFTER
8790     cancel_lru_locks osc
8791     cat $file >/dev/null
8792     AFTER=`roc_hit`
8793     if ! let "AFTER - BEFORE == CPAGES"; then
8794         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8795     else
8796         log "cache hits:: before: $BEFORE, after: $AFTER"
8797     fi
8798
8799
8800     log "Turn off the read cache and turn on the write cache"
8801     set_cache read off
8802     set_cache writethrough on
8803
8804     log "Read again; it should be satisfied from the cache."
8805     BEFORE=`roc_hit`
8806     cancel_lru_locks osc
8807     cat $file >/dev/null
8808     AFTER=`roc_hit`
8809     if ! let "AFTER - BEFORE == CPAGES"; then
8810         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8811     else
8812         log "cache hits:: before: $BEFORE, after: $AFTER"
8813     fi
8814
8815     log "Read again; it should not be satisfied from the cache."
8816     BEFORE=$AFTER
8817     cancel_lru_locks osc
8818     cat $file >/dev/null
8819     AFTER=`roc_hit`
8820     if ! let "AFTER - BEFORE == 0"; then
8821         error "IN CACHE: before: $BEFORE, after: $AFTER"
8822     else
8823         log "cache hits:: before: $BEFORE, after: $AFTER"
8824     fi
8825
8826     log "Write data and read it back."
8827     log "Read should be satisfied from the cache."
8828     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8829     BEFORE=`roc_hit`
8830     cancel_lru_locks osc
8831     cat $file >/dev/null
8832     AFTER=`roc_hit`
8833     if ! let "AFTER - BEFORE == CPAGES"; then
8834         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8835     else
8836         log "cache hits:: before: $BEFORE, after: $AFTER"
8837     fi
8838
8839     log "Read again; it should not be satisfied from the cache."
8840     BEFORE=$AFTER
8841     cancel_lru_locks osc
8842     cat $file >/dev/null
8843     AFTER=`roc_hit`
8844     if ! let "AFTER - BEFORE == 0"; then
8845         error "IN CACHE: before: $BEFORE, after: $AFTER"
8846     else
8847         log "cache hits:: before: $BEFORE, after: $AFTER"
8848     fi
8849
8850
8851     log "Turn off read and write cache"
8852     set_cache read off
8853     set_cache writethrough off
8854
8855     log "Write data and read it back"
8856     log "It should not be satisfied from the cache."
8857     rm -f $file
8858     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8859     cancel_lru_locks osc
8860     BEFORE=`roc_hit`
8861     cat $file >/dev/null
8862     AFTER=`roc_hit`
8863     if ! let "AFTER - BEFORE == 0"; then
8864         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8865     else
8866         log "cache hits:: before: $BEFORE, after: $AFTER"
8867     fi
8868
8869
8870     log "Turn on the read cache and turn off the write cache"
8871     set_cache read on
8872     set_cache writethrough off
8873
8874     log "Write data and read it back"
8875     log "It should not be satisfied from the cache."
8876     rm -f $file
8877     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8878     BEFORE=`roc_hit`
8879     cancel_lru_locks osc
8880     cat $file >/dev/null
8881     AFTER=`roc_hit`
8882     if ! let "AFTER - BEFORE == 0"; then
8883         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8884     else
8885         log "cache hits:: before: $BEFORE, after: $AFTER"
8886     fi
8887
8888     log "Read again; it should be satisfied from the cache."
8889     BEFORE=`roc_hit`
8890     cancel_lru_locks osc
8891     cat $file >/dev/null
8892     AFTER=`roc_hit`
8893     if ! let "AFTER - BEFORE == CPAGES"; then
8894         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8895     else
8896         log "cache hits:: before: $BEFORE, after: $AFTER"
8897     fi
8898
8899     rm -f $file
8900 }
8901 run_test 156 "Verification of tunables ============================"
8902
8903 #Changelogs
8904 err17935 () {
8905     if [ $MDSCOUNT -gt 1 ]; then
8906         error_ignore 17935 $*
8907     else
8908         error $*
8909     fi
8910 }
8911
8912 changelog_chmask()
8913 {
8914     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
8915            grep -c $1)
8916
8917     if [ $MASK -eq 1 ]; then
8918         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
8919     else
8920         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
8921     fi
8922 }
8923
8924 test_160() {
8925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8926     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8927     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
8928         { skip "Need MDS version at least 2.2.0"; return; }
8929     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
8930     echo "Registered as changelog user $USER"
8931     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8932         grep -q $USER || error "User $USER not found in changelog_users"
8933
8934     # change something
8935     test_mkdir -p $DIR/$tdir/pics/2008/zachy
8936     touch $DIR/$tdir/pics/2008/zachy/timestamp
8937     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
8938     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
8939     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
8940     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
8941     rm $DIR/$tdir/pics/desktop.jpg
8942
8943     $LFS changelog $MDT0 | tail -5
8944
8945     echo "verifying changelog mask"
8946     changelog_chmask "MKDIR"
8947     changelog_chmask "CLOSE"
8948
8949     test_mkdir -p $DIR/$tdir/pics/zach/sofia
8950     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8951
8952     changelog_chmask "MKDIR"
8953     changelog_chmask "CLOSE"
8954
8955     test_mkdir -p $DIR/$tdir/pics/2008/sofia
8956     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8957
8958     $LFS changelog $MDT0
8959     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
8960     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
8961     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
8962     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
8963
8964     # verify contents
8965     echo "verifying target fid"
8966     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8967         tail -1 | awk '{print $6}')
8968     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
8969     [ "$fidc" == "t=$fidf" ] || \
8970         err17935 "fid in changelog $fidc != file fid $fidf"
8971     echo "verifying parent fid"
8972     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8973         tail -1 | awk '{print $7}')
8974     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
8975     [ "$fidc" == "p=$fidf" ] || \
8976         err17935 "pfid in changelog $fidc != dir fid $fidf"
8977
8978     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8979         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8980     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
8981     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8982         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8983     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
8984     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
8985         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
8986
8987     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
8988         awk 'min == "" || $2 < min {min = $2}; END {print min}')
8989     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
8990     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
8991     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
8992         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
8993
8994     echo "verifying user deregister"
8995     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
8996     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8997         grep -q $USER && error "User $USER still found in changelog_users"
8998
8999     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
9000         mdd.$MDT0.changelog_users | wc -l) - 2 ))
9001     if [ $USERS -eq 0 ]; then
9002         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
9003             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9004         touch $DIR/$tdir/chloe
9005         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
9006             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9007         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
9008         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9009     else
9010         echo "$USERS other changelog users; can't verify off"
9011     fi
9012 }
9013 run_test 160 "changelog sanity"
9014
9015 test_161() {
9016         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9017     test_mkdir -p $DIR/$tdir
9018     cp /etc/hosts $DIR/$tdir/$tfile
9019     test_mkdir $DIR/$tdir/foo1
9020     test_mkdir $DIR/$tdir/foo2
9021     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9022     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9023     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9024     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9025     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
9026     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9027         $LFS fid2path $DIR $FID
9028         err17935 "bad link ea"
9029     fi
9030     # middle
9031     rm $DIR/$tdir/foo2/zachary
9032     # last
9033     rm $DIR/$tdir/foo2/thor
9034     # first
9035     rm $DIR/$tdir/$tfile
9036     # rename
9037     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9038     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9039         then
9040         $LFS fid2path $DIR $FID
9041         err17935 "bad link rename"
9042     fi
9043     rm $DIR/$tdir/foo2/maggie
9044
9045     # overflow the EA
9046     local longname=filename_avg_len_is_thirty_two_
9047     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9048         error "failed to hardlink many files"
9049     links=$($LFS fid2path $DIR $FID | wc -l)
9050     echo -n "${links}/1000 links in link EA"
9051     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9052     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9053         error "failed to unlink many hardlinks"
9054 }
9055 run_test 161 "link ea sanity"
9056
9057 check_path() {
9058     local expected=$1
9059     shift
9060     local fid=$2
9061
9062     local path=$(${LFS} fid2path $*)
9063     RC=$?
9064
9065     if [ $RC -ne 0 ]; then
9066         err17935 "path looked up of $expected failed. Error $RC"
9067         return $RC
9068     elif [ "${path}" != "${expected}" ]; then
9069         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9070         return 2
9071     fi
9072     echo "fid $fid resolves to path $path (expected $expected)"
9073 }
9074
9075 test_162() {
9076         # Make changes to filesystem
9077         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9078         test_mkdir -p $DIR/$tdir/d2
9079         touch $DIR/$tdir/d2/$tfile
9080         touch $DIR/$tdir/d2/x1
9081         touch $DIR/$tdir/d2/x2
9082         test_mkdir -p $DIR/$tdir/d2/a/b/c
9083         test_mkdir -p $DIR/$tdir/d2/p/q/r
9084         # regular file
9085         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9086         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9087
9088         # softlink
9089         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9090         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9091         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9092
9093         # softlink to wrong file
9094         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9095         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9096         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9097
9098         # hardlink
9099         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9100         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9101         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9102         # fid2path dir/fsname should both work
9103         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9104         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9105
9106         # hardlink count: check that there are 2 links
9107         # Doesnt work with CMD yet: 17935
9108         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9109                 err17935 "expected 2 links"
9110
9111         # hardlink indexing: remove the first link
9112         rm $DIR/$tdir/d2/p/q/r/hlink
9113         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9114
9115         return 0
9116 }
9117 run_test 162 "path lookup sanity"
9118
9119 test_163() {
9120         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9121         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9122         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
9123         copytool $FSNAME &
9124         sleep 1
9125         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
9126         # this proc file is temporary and linux-only
9127         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
9128          error "kernel->userspace send failed"
9129         kill -INT $!
9130 }
9131 run_test 163 "kernel <-> userspace comms"
9132
9133 test_169() {
9134         # do directio so as not to populate the page cache
9135         log "creating a 10 Mb file"
9136         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9137         log "starting reads"
9138         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9139         log "truncating the file"
9140         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9141         log "killing dd"
9142         kill %+ || true # reads might have finished
9143         echo "wait until dd is finished"
9144         wait
9145         log "removing the temporary file"
9146         rm -rf $DIR/$tfile || error "tmp file removal failed"
9147 }
9148 run_test 169 "parallel read and truncate should not deadlock"
9149
9150 test_170() {
9151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9152         $LCTL clear     # bug 18514
9153         $LCTL debug_daemon start $TMP/${tfile}_log_good
9154         touch $DIR/$tfile
9155         $LCTL debug_daemon stop
9156         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9157                error "sed failed to read log_good"
9158
9159         $LCTL debug_daemon start $TMP/${tfile}_log_good
9160         rm -rf $DIR/$tfile
9161         $LCTL debug_daemon stop
9162
9163         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9164                error "lctl df log_bad failed"
9165
9166         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9167         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9168
9169         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9170         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9171
9172         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9173                 error "bad_line good_line1 good_line2 are empty"
9174
9175         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9176         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9177         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9178
9179         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9180         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9181         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9182
9183         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9184                 error "bad_line_new good_line_new are empty"
9185
9186         local expected_good=$((good_line1 + good_line2*2))
9187
9188         rm -f $TMP/${tfile}*
9189         # LU-231, short malformed line may not be counted into bad lines
9190         if [ $bad_line -ne $bad_line_new ] &&
9191                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9192                 error "expected $bad_line bad lines, but got $bad_line_new"
9193                 return 1
9194         fi
9195
9196         if [ $expected_good -ne $good_line_new ]; then
9197                 error "expected $expected_good good lines, but got $good_line_new"
9198                 return 2
9199         fi
9200         true
9201 }
9202 run_test 170 "test lctl df to handle corrupted log ====================="
9203
9204 test_171() { # bug20592
9205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9206 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9207         $LCTL set_param fail_loc=0x50e
9208         $LCTL set_param fail_val=3000
9209         multiop_bg_pause $DIR/$tfile O_s || true
9210         local MULTIPID=$!
9211         kill -USR1 $MULTIPID
9212         # cause log dump
9213         sleep 3
9214         wait $MULTIPID
9215         if dmesg | grep "recursive fault"; then
9216                 error "caught a recursive fault"
9217         fi
9218         $LCTL set_param fail_loc=0
9219         true
9220 }
9221 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9222
9223 # it would be good to share it with obdfilter-survey/libecho code
9224 setup_obdecho_osc () {
9225         local rc=0
9226         local ost_nid=$1
9227         local obdfilter_name=$2
9228         echo "Creating new osc for $obdfilter_name on $ost_nid"
9229         # make sure we can find loopback nid
9230         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9231
9232         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9233                            ${obdfilter_name}_osc_UUID || rc=2; }
9234         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9235                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9236         return $rc
9237 }
9238
9239 cleanup_obdecho_osc () {
9240         local obdfilter_name=$1
9241         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9242         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9243         return 0
9244 }
9245
9246 obdecho_create_test() {
9247         local OBD=$1
9248         local node=$2
9249         local rc=0
9250         local id
9251         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9252         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9253                            rc=2; }
9254         if [ $rc -eq 0 ]; then
9255             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9256             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9257         fi
9258         echo "New object id is $id"
9259         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
9260                            rc=4; }
9261         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9262                                         "cleanup" || rc=5; }
9263         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9264                                         "detach" || rc=6; }
9265         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9266         return $rc
9267 }
9268
9269 test_180a() {
9270         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9271         remote_ost_nodsh && skip "remote OST with nodsh" && return
9272         local rc=0
9273         local rmmod_local=0
9274
9275         if ! module_loaded obdecho; then
9276             load_module obdecho/obdecho
9277             rmmod_local=1
9278         fi
9279
9280         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9281         local host=$(lctl get_param -n osc.$osc.import |
9282                              awk '/current_connection:/ {print $2}' )
9283         local target=$(lctl get_param -n osc.$osc.import |
9284                              awk '/target:/ {print $2}' )
9285         target=${target%_UUID}
9286
9287         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9288         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
9289         [[ -n $target ]] && cleanup_obdecho_osc $target
9290         [ $rmmod_local -eq 1 ] && rmmod obdecho
9291         return $rc
9292 }
9293 run_test 180a "test obdecho on osc"
9294
9295 test_180b() {
9296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9297         remote_ost_nodsh && skip "remote OST with nodsh" && return
9298         local rc=0
9299         local rmmod_remote=0
9300
9301         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9302                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9303                       "modprobe obdecho; }" && rmmod_remote=1
9304         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9305         [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
9306         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9307         return $rc
9308 }
9309 run_test 180b "test obdecho directly on obdfilter"
9310
9311 test_181() { # bug 22177
9312         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9313         # create enough files to index the directory
9314         createmany -o $DIR/$tdir/foobar 4000
9315         # print attributes for debug purpose
9316         lsattr -d .
9317         # open dir
9318         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9319         MULTIPID=$!
9320         # remove the files & current working dir
9321         unlinkmany $DIR/$tdir/foobar 4000
9322         rmdir $DIR/$tdir
9323         kill -USR1 $MULTIPID
9324         wait $MULTIPID
9325         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9326         return 0
9327 }
9328 run_test 181 "Test open-unlinked dir ========================"
9329
9330 test_182() {
9331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9332         # disable MDC RPC lock wouldn't crash client
9333         local fcount=1000
9334         local tcount=4
9335
9336         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9337 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9338         $LCTL set_param fail_loc=0x804
9339
9340         for (( i=0; i < $tcount; i++ )) ; do
9341                 mkdir $DIR/$tdir/$i
9342                 createmany -o $DIR/$tdir/$i/f- $fcount &
9343         done
9344         wait
9345
9346         for (( i=0; i < $tcount; i++ )) ; do
9347                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9348         done
9349         wait
9350
9351         rm -rf $DIR/$tdir
9352
9353         $LCTL set_param fail_loc=0
9354 }
9355 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9356
9357 test_183() { # LU-2275
9358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9359         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9360         echo aaa > $DIR/$tdir/$tfile
9361
9362 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9363         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9364
9365         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9366         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9367
9368         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9369
9370         # Flush negative dentry cache
9371         touch $DIR/$tdir/$tfile
9372
9373         # We are not checking for any leaked references here, they'll
9374         # become evident next time we do cleanup with module unload.
9375         rm -rf $DIR/$tdir
9376 }
9377 run_test 183 "No crash or request leak in case of strange dispositions ========"
9378
9379 test_185() { # LU-2441
9380         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9381         touch $DIR/$tdir/spoo
9382         local mtime1=$(stat -c "%Y" $DIR/$tdir)
9383         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
9384                 error "cannot create/write a volatile file"
9385         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
9386                 error "FID is still valid after close"
9387
9388         multiop_bg_pause $DIR/$tdir vVw4096_c
9389         local multi_pid=$!
9390
9391         local OLD_IFS=$IFS
9392         IFS=":"
9393         local fidv=($fid)
9394         IFS=$OLD_IFS
9395         # assume that the next FID for this client is sequential, since stdout
9396         # is unfortunately eaten by multiop_bg_pause
9397         local n=$((${fidv[1]} + 1))
9398         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
9399         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
9400                 error "FID is missing before close"
9401         kill -USR1 $multi_pid
9402         # 1 second delay, so if mtime change we will see it
9403         sleep 1
9404         local mtime2=$(stat -c "%Y" $DIR/$tdir)
9405         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
9406 }
9407 run_test 185 "Volatile file support"
9408
9409 check_swap_layouts_support()
9410 {
9411         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
9412                 { skip "Does not support layout lock."; return 0; }
9413         return 1
9414 }
9415
9416 # test suite 184 is for LU-2016, LU-2017
9417 test_184a() {
9418         check_swap_layouts_support && return 0
9419
9420         dir0=$DIR/$tdir/$testnum
9421         test_mkdir -p $dir0 || error "creating dir $dir0"
9422         ref1=/etc/passwd
9423         ref2=/etc/group
9424         file1=$dir0/f1
9425         file2=$dir0/f2
9426         $SETSTRIPE -c1 $file1
9427         cp $ref1 $file1
9428         $SETSTRIPE -c2 $file2
9429         cp $ref2 $file2
9430         gen1=$($GETSTRIPE -g $file1)
9431         gen2=$($GETSTRIPE -g $file2)
9432
9433         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
9434         gen=$($GETSTRIPE -g $file1)
9435         [[ $gen1 != $gen ]] ||
9436                 "Layout generation on $file1 does not change"
9437         gen=$($GETSTRIPE -g $file2)
9438         [[ $gen2 != $gen ]] ||
9439                 "Layout generation on $file2 does not change"
9440
9441         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
9442         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
9443 }
9444 run_test 184a "Basic layout swap"
9445
9446 test_184b() {
9447         check_swap_layouts_support && return 0
9448
9449         dir0=$DIR/$tdir/$testnum
9450         mkdir -p $dir0 || error "creating dir $dir0"
9451         file1=$dir0/f1
9452         file2=$dir0/f2
9453         file3=$dir0/f3
9454         dir1=$dir0/d1
9455         dir2=$dir0/d2
9456         mkdir $dir1 $dir2
9457         $SETSTRIPE -c1 $file1
9458         $SETSTRIPE -c2 $file2
9459         $SETSTRIPE -c1 $file3
9460         chown $RUNAS_ID $file3
9461         gen1=$($GETSTRIPE -g $file1)
9462         gen2=$($GETSTRIPE -g $file2)
9463
9464         $LFS swap_layouts $dir1 $dir2 &&
9465                 error "swap of directories layouts should fail"
9466         $LFS swap_layouts $dir1 $file1 &&
9467                 error "swap of directory and file layouts should fail"
9468         $RUNAS $LFS swap_layouts $file1 $file2 &&
9469                 error "swap of file we cannot write should fail"
9470         $LFS swap_layouts $file1 $file3 &&
9471                 error "swap of file with different owner should fail"
9472         /bin/true # to clear error code
9473 }
9474 run_test 184b "Forbidden layout swap (will generate errors)"
9475
9476 test_184c() {
9477         check_swap_layouts_support && return 0
9478
9479         local dir0=$DIR/$tdir/$testnum
9480         mkdir -p $dir0 || error "creating dir $dir0"
9481
9482         local ref1=$dir0/ref1
9483         local ref2=$dir0/ref2
9484         local file1=$dir0/file1
9485         local file2=$dir0/file2
9486         # create a file large enough for the concurent test
9487         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
9488         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
9489         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
9490
9491         cp $ref2 $file2
9492         dd if=$ref1 of=$file1 bs=16k &
9493         local DD_PID=$!
9494
9495         sleep 0.$((RANDOM % 5 + 1))
9496
9497         $LFS swap_layouts $file1 $file2
9498         local rc=$?
9499         wait $DD_PID
9500         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
9501         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
9502
9503         # how many bytes copied before swapping layout
9504         local copied=`stat -c %s $file2`
9505         local remaining=`stat -c %s $ref1`
9506         remaining=$((remaining - copied))
9507         echo "Copied $copied bytes before swapping layout..."
9508
9509         cmp -n $copied $file1 $ref2 | grep differ &&
9510                 error "Content mismatch [0, $copied) of ref2 and file1"
9511         cmp -n $copied $file2 $ref1 ||
9512                 error "Content mismatch [0, $copied) of ref1 and file2"
9513         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
9514                 error "Content mismatch [$copied, EOF) of ref1 and file1"
9515
9516         # clean up
9517         rm -f $ref1 $ref2 $file1 $file2
9518 }
9519 run_test 184c "Concurrent write and layout swap"
9520
9521 # OST pools tests
9522 check_file_in_pool()
9523 {
9524         local file=$1
9525         local pool=$2
9526         local tlist="$3"
9527         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
9528         for i in $res
9529         do
9530                 for t in $tlist ; do
9531                         [ "$i" -eq "$t" ] && continue 2
9532                 done
9533
9534                 echo "pool list: $tlist"
9535                 echo "striping: $res"
9536                 error_noexit "$file not allocated in $pool"
9537                 return 1
9538         done
9539         return 0
9540 }
9541
9542 pool_add() {
9543         echo "Creating new pool"
9544         local pool=$1
9545
9546         create_pool $FSNAME.$pool ||
9547                 { error_noexit "No pool created, result code $?"; return 1; }
9548         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
9549                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9550 }
9551
9552 pool_add_targets() {
9553         echo "Adding targets to pool"
9554         local pool=$1
9555         local first=$2
9556         local last=$3
9557         local step=${4:-1}
9558
9559         local list=$(seq $first $step $last)
9560
9561         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9562         do_facet mgs $LCTL pool_add \
9563                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
9564         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
9565                         | sort -u | tr '\n' ' ' " "$t" || { 
9566                 error_noexit "Add to pool failed"
9567                 return 1
9568         }
9569         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
9570         local addcount=$(((last - first) / step + 1))
9571         [ $lfscount -eq $addcount ] || {
9572                 error_noexit "lfs pool_list bad ost count" \
9573                                                 "$lfscount != $addcount"
9574                 return 2
9575         }
9576 }
9577
9578 pool_set_dir() {
9579         local pool=$1
9580         local tdir=$2
9581         echo "Setting pool on directory $tdir"
9582
9583         $SETSTRIPE -c 2 -p $pool $tdir && return 0
9584
9585         error_noexit "Cannot set pool $pool to $tdir"
9586         return 1
9587 }
9588
9589 pool_check_dir() {
9590         local pool=$1
9591         local tdir=$2
9592         echo "Checking pool on directory $tdir"
9593
9594         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
9595         [ "$res" = "$pool" ] && return 0
9596
9597         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9598         return 1
9599 }
9600
9601 pool_dir_rel_path() {
9602         echo "Testing relative path works well"
9603         local pool=$1
9604         local tdir=$2
9605         local root=$3
9606
9607         mkdir -p $root/$tdir/$tdir
9608         cd $root/$tdir
9609         pool_set_dir $pool $tdir          || return 1
9610         pool_set_dir $pool ./$tdir        || return 2
9611         pool_set_dir $pool ../$tdir       || return 3
9612         pool_set_dir $pool ../$tdir/$tdir || return 4
9613         rm -rf $tdir; cd - > /dev/null
9614 }
9615
9616 pool_alloc_files() {
9617         echo "Checking files allocation from directory pool"
9618         local pool=$1
9619         local tdir=$2
9620         local count=$3
9621         local tlist="$4"
9622
9623         local failed=0
9624         for i in $(seq -w 1 $count)
9625         do
9626                 local file=$tdir/file-$i
9627                 touch $file
9628                 check_file_in_pool $file $pool "$tlist" || \
9629                         failed=$((failed + 1))
9630         done
9631         [ "$failed" = 0 ] && return 0
9632
9633         error_noexit "$failed files not allocated in $pool"
9634         return 1
9635 }
9636
9637 pool_create_files() {
9638         echo "Creating files in pool"
9639         local pool=$1
9640         local tdir=$2
9641         local count=$3
9642         local tlist="$4"
9643
9644         mkdir -p $tdir
9645         local failed=0
9646         for i in $(seq -w 1 $count)
9647         do
9648                 local file=$tdir/spoo-$i
9649                 $SETSTRIPE -p $pool $file
9650                 check_file_in_pool $file $pool "$tlist" || \
9651                         failed=$((failed + 1))
9652         done
9653         [ "$failed" = 0 ] && return 0
9654
9655         error_noexit "$failed files not allocated in $pool"
9656         return 1
9657 }
9658
9659 pool_lfs_df() {
9660         echo "Checking 'lfs df' output"
9661         local pool=$1
9662
9663         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9664                         tr '\n' ' ')
9665         local res=$($LFS df --pool $FSNAME.$pool |
9666                         awk '{print $1}' |
9667                         grep "$FSNAME-OST" |
9668                         tr '\n' ' ')
9669         [ "$res" = "$t" ] && return 0
9670
9671         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9672         return 1
9673 }
9674
9675 pool_file_rel_path() {
9676         echo "Creating files in a pool with relative pathname"
9677         local pool=$1
9678         local tdir=$2
9679
9680         mkdir -p $tdir ||
9681                 { error_noexit "unable to create $tdir"; return 1 ; }
9682         local file="/..$tdir/$tfile-1"
9683         $SETSTRIPE -p $pool $file ||
9684                 { error_noexit "unable to create $file" ; return 2 ; }
9685
9686         cd $tdir
9687         $SETSTRIPE -p $pool $tfile-2 || {
9688                 error_noexit "unable to create $tfile-2 in $tdir"
9689                 return 3
9690         }
9691 }
9692
9693 pool_remove_first_target() {
9694         echo "Removing first target from a pool"
9695         local pool=$1
9696
9697         local pname="lov.$FSNAME-*.pools.$pool"
9698         local t=$($LCTL get_param -n $pname | head -1)
9699         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9700         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9701                 error_noexit "$t not removed from $FSNAME.$pool"
9702                 return 1
9703         }
9704 }
9705
9706 pool_remove_all_targets() {
9707         echo "Removing all targets from pool"
9708         local pool=$1
9709         local file=$2
9710         local pname="lov.$FSNAME-*.pools.$pool"
9711         for t in $($LCTL get_param -n $pname | sort -u)
9712         do
9713                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9714         done
9715         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9716                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9717                 return 1
9718         }
9719         # striping on an empty/nonexistant pool should fall back 
9720         # to "pool of everything"
9721         touch $file || {
9722                 error_noexit "failed to use fallback striping for empty pool"
9723                 return 2
9724         }
9725         # setstripe on an empty pool should fail
9726         $SETSTRIPE -p $pool $file 2>/dev/null && {
9727                 error_noexit "expected failure when creating file" \
9728                                                         "with empty pool"
9729                 return 3
9730         }
9731         return 0
9732 }
9733
9734 pool_remove() {
9735         echo "Destroying pool"
9736         local pool=$1
9737         local file=$2
9738
9739         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9740
9741         sleep 2
9742         # striping on an empty/nonexistant pool should fall back 
9743         # to "pool of everything"
9744         touch $file || {
9745                 error_noexit "failed to use fallback striping for missing pool"
9746                 return 1
9747         }
9748         # setstripe on an empty pool should fail
9749         $SETSTRIPE -p $pool $file 2>/dev/null && {
9750                 error_noexit "expected failure when creating file" \
9751                                                         "with missing pool"
9752                 return 2
9753         }
9754
9755         # get param should return err once pool is gone
9756         if wait_update $HOSTNAME "lctl get_param -n \
9757                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9758         then
9759                 remove_pool_from_list $FSNAME.$pool
9760                 return 0
9761         fi
9762         error_noexit "Pool $FSNAME.$pool is not destroyed"
9763         return 3
9764 }
9765
9766 test_200() {
9767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9768         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
9769
9770         local POOL=${POOL:-cea1}
9771         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
9772         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
9773         # Pool OST targets
9774         local first_ost=0
9775         local last_ost=$(($OSTCOUNT - 1))
9776         local ost_step=2
9777         local ost_list=$(seq $first_ost $ost_step $last_ost)
9778         local ost_range="$first_ost $last_ost $ost_step"
9779         local test_path=$POOL_ROOT/$POOL_DIR_NAME
9780         local file_dir=$POOL_ROOT/file_tst
9781
9782         local rc=0
9783         while : ; do
9784                 # former test_200a test_200b
9785                 pool_add $POOL                          || { rc=$? ; break; }
9786                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
9787                 # former test_200c test_200d
9788                 mkdir -p $test_path
9789                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
9790                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
9791                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
9792                                                         || { rc=$? ; break; }
9793                 # former test_200e test_200f
9794                 local files=$((OSTCOUNT*3))
9795                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
9796                                                         || { rc=$? ; break; }
9797                 pool_create_files $POOL $file_dir $files "$ost_list" \
9798                                                         || { rc=$? ; break; }
9799                 # former test_200g test_200h
9800                 pool_lfs_df $POOL                       || { rc=$? ; break; }
9801                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
9802
9803                 # former test_201a test_201b test_201c
9804                 pool_remove_first_target $POOL          || { rc=$? ; break; }
9805
9806                 local f=$test_path/$tfile
9807                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
9808                 pool_remove $POOL $f                    || { rc=$? ; break; }
9809                 break
9810         done
9811
9812         cleanup_pools
9813         return $rc
9814 }
9815 run_test 200 "OST pools"
9816
9817 # usage: default_attr <count | size | offset>
9818 default_attr() {
9819         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
9820 }
9821
9822 # usage: check_default_stripe_attr
9823 check_default_stripe_attr() {
9824         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
9825         case $1 in
9826         --stripe-count|--count)
9827                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
9828         --stripe-size|--size)
9829                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
9830         --stripe-index|--index)
9831                 EXPECTED=-1;;
9832         *)
9833                 error "unknown getstripe attr '$1'"
9834         esac
9835
9836         [ $ACTUAL != $EXPECTED ] &&
9837                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
9838 }
9839
9840 test_204a() {
9841         test_mkdir -p $DIR/$tdir
9842         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
9843
9844         check_default_stripe_attr --stripe-count
9845         check_default_stripe_attr --stripe-size
9846         check_default_stripe_attr --stripe-index
9847
9848         return 0
9849 }
9850 run_test 204a "Print default stripe attributes ================="
9851
9852 test_204b() {
9853         test_mkdir -p $DIR/$tdir
9854         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9855
9856         check_default_stripe_attr --stripe-size
9857         check_default_stripe_attr --stripe-index
9858
9859         return 0
9860 }
9861 run_test 204b "Print default stripe size and offset  ==========="
9862
9863 test_204c() {
9864         test_mkdir -p $DIR/$tdir
9865         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9866
9867         check_default_stripe_attr --stripe-count
9868         check_default_stripe_attr --stripe-index
9869
9870         return 0
9871 }
9872 run_test 204c "Print default stripe count and offset ==========="
9873
9874 test_204d() {
9875         test_mkdir -p $DIR/$tdir
9876         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9877
9878         check_default_stripe_attr --stripe-count
9879         check_default_stripe_attr --stripe-size
9880
9881         return 0
9882 }
9883 run_test 204d "Print default stripe count and size ============="
9884
9885 test_204e() {
9886         test_mkdir -p $DIR/$tdir
9887         $SETSTRIPE -d $DIR/$tdir
9888
9889         check_default_stripe_attr --stripe-count --raw
9890         check_default_stripe_attr --stripe-size --raw
9891         check_default_stripe_attr --stripe-index --raw
9892
9893         return 0
9894 }
9895 run_test 204e "Print raw stripe attributes ================="
9896
9897 test_204f() {
9898         test_mkdir -p $DIR/$tdir
9899         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9900
9901         check_default_stripe_attr --stripe-size --raw
9902         check_default_stripe_attr --stripe-index --raw
9903
9904         return 0
9905 }
9906 run_test 204f "Print raw stripe size and offset  ==========="
9907
9908 test_204g() {
9909         test_mkdir -p $DIR/$tdir
9910         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9911
9912         check_default_stripe_attr --stripe-count --raw
9913         check_default_stripe_attr --stripe-index --raw
9914
9915         return 0
9916 }
9917 run_test 204g "Print raw stripe count and offset ==========="
9918
9919 test_204h() {
9920         test_mkdir -p $DIR/$tdir
9921         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9922
9923         check_default_stripe_attr --stripe-count --raw
9924         check_default_stripe_attr --stripe-size --raw
9925
9926         return 0
9927 }
9928 run_test 204h "Print raw stripe count and size ============="
9929
9930 # Figure out which job scheduler is being used, if any,
9931 # or use a fake one
9932 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
9933         JOBENV=SLURM_JOB_ID
9934 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
9935         JOBENV=LSB_JOBID
9936 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
9937         JOBENV=PBS_JOBID
9938 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
9939         JOBENV=LOADL_STEP_ID
9940 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
9941         JOBENV=JOB_ID
9942 else
9943         JOBENV=FAKE_JOBID
9944 fi
9945
9946 verify_jobstats() {
9947         local cmd=$1
9948         local target=$2
9949
9950         # clear old jobstats
9951         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
9952         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
9953
9954         # use a new JobID for this test, or we might see an old one
9955         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
9956
9957         JOBVAL=${!JOBENV}
9958         log "Test: $cmd"
9959         log "Using JobID environment variable $JOBENV=$JOBVAL"
9960
9961         if [ $JOBENV = "FAKE_JOBID" ]; then
9962                 FAKE_JOBID=$JOBVAL $cmd
9963         else
9964                 $cmd
9965         fi
9966
9967         if [ "$target" = "mdt" -o "$target" = "both" ]; then
9968                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
9969                 do_facet $FACET lctl get_param mdt.*.job_stats |
9970                         grep $JOBVAL || error "No job stats found on MDT $FACET"
9971         fi
9972         if [ "$target" = "ost" -o "$target" = "both" ]; then
9973                 FACET=ost1
9974                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
9975                         grep $JOBVAL || error "No job stats found on OST $FACET"
9976         fi
9977 }
9978
9979 test_205() { # Job stats
9980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9981         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
9982                 skip "Server doesn't support jobstats" && return 0
9983
9984         local cmd
9985         OLD_JOBENV=`$LCTL get_param -n jobid_var`
9986         if [ $OLD_JOBENV != $JOBENV ]; then
9987                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$JOBENV
9988                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9989                         $JOBENV || return 1
9990         fi
9991
9992         # mkdir
9993         cmd="mkdir $DIR/$tfile"
9994         verify_jobstats "$cmd" "mdt"
9995         # rmdir
9996         cmd="rm -fr $DIR/$tfile"
9997         verify_jobstats "$cmd" "mdt"
9998         # mknod
9999         cmd="mknod $DIR/$tfile c 1 3"
10000         verify_jobstats "$cmd" "mdt"
10001         # unlink
10002         cmd="rm -f $DIR/$tfile"
10003         verify_jobstats "$cmd" "mdt"
10004         # open & close
10005         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10006         verify_jobstats "$cmd" "mdt"
10007         # setattr
10008         cmd="touch $DIR/$tfile"
10009         verify_jobstats "$cmd" "both"
10010         # write
10011         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10012         verify_jobstats "$cmd" "ost"
10013         # read
10014         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10015         verify_jobstats "$cmd" "ost"
10016         # truncate
10017         cmd="$TRUNCATE $DIR/$tfile 0"
10018         verify_jobstats "$cmd" "both"
10019         # rename
10020         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10021         verify_jobstats "$cmd" "mdt"
10022
10023         # cleanup
10024         rm -f $DIR/jobstats_test_rename
10025
10026         if [ $OLD_JOBENV != $JOBENV ]; then
10027                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$OLD_JOBENV
10028                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
10029                         $OLD_JOBENV || return 1
10030         fi
10031 }
10032 run_test 205 "Verify job stats"
10033
10034 # LU-1480, LU-1773 and LU-1657
10035 test_206() {
10036         mkdir -p $DIR/$tdir
10037         lfs setstripe -c -1 $DIR/$tdir
10038 #define OBD_FAIL_LOV_INIT 0x1403
10039         $LCTL set_param fail_loc=0xa0001403
10040         $LCTL set_param fail_val=1
10041         touch $DIR/$tdir/$tfile || true
10042 }
10043 run_test 206 "fail lov_init_raid0() doesn't lbug"
10044
10045 test_207a() {
10046         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10047         local fsz=`stat -c %s $DIR/$tfile`
10048         cancel_lru_locks mdc
10049
10050         # do not return layout in getattr intent
10051 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10052         $LCTL set_param fail_loc=0x170
10053         local sz=`stat -c %s $DIR/$tfile`
10054
10055         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10056
10057         rm -rf $DIR/$tfile
10058 }
10059 run_test 207a "can refresh layout at glimpse"
10060
10061 test_207b() {
10062         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10063         local cksum=`md5sum $DIR/$tfile`
10064         local fsz=`stat -c %s $DIR/$tfile`
10065         cancel_lru_locks mdc
10066         cancel_lru_locks osc
10067
10068         # do not return layout in getattr intent
10069 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10070         $LCTL set_param fail_loc=0x171
10071
10072         # it will refresh layout after the file is opened but before read issues
10073         echo checksum is "$cksum"
10074         echo "$cksum" |md5sum -c --quiet || error "file differs"
10075
10076         rm -rf $DIR/$tfile
10077 }
10078 run_test 207b "can refresh layout at open"
10079
10080 test_212() {
10081         size=`date +%s`
10082         size=$((size % 8192 + 1))
10083         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10084         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10085         rm -f $DIR/f212 $DIR/f212.xyz
10086 }
10087 run_test 212 "Sendfile test ============================================"
10088
10089 test_213() {
10090         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10091         cancel_lru_locks osc
10092         lctl set_param fail_loc=0x8000040f
10093         # generate a read lock
10094         cat $DIR/$tfile > /dev/null
10095         # write to the file, it will try to cancel the above read lock.
10096         cat /etc/hosts >> $DIR/$tfile
10097 }
10098 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10099
10100 test_214() { # for bug 20133
10101         test_mkdir -p $DIR/d214p/d214c
10102         for (( i=0; i < 340; i++ )) ; do
10103                 touch $DIR/d214p/d214c/a$i
10104         done
10105
10106         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
10107         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10108         ls $DIR/d214c || error "ls $DIR/d214c failed"
10109         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10110 }
10111 run_test 214 "hash-indexed directory test - bug 20133"
10112
10113 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10114 create_lnet_proc_files() {
10115         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10116         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10117
10118         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10119         rm -f "$TMP/lnet_$1.sys_tmp"
10120 }
10121
10122 # counterpart of create_lnet_proc_files
10123 remove_lnet_proc_files() {
10124         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10125 }
10126
10127 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10128 # 3rd arg as regexp for body
10129 check_lnet_proc_stats() {
10130         local l=$(cat "$TMP/lnet_$1" |wc -l)
10131         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10132
10133         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10134 }
10135
10136 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10137 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10138 # optional and can be regexp for 2nd line (lnet.routes case)
10139 check_lnet_proc_entry() {
10140         local blp=2            # blp stands for 'position of 1st line of body'
10141         [ "$5" = "" ] || blp=3 # lnet.routes case
10142
10143         local l=$(cat "$TMP/lnet_$1" |wc -l)
10144         # subtracting one from $blp because the body can be empty
10145         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10146
10147         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10148                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10149
10150         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10151                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10152
10153         # bail out if any unexpected line happened
10154         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10155         [ "$?" != 0 ] || error "$2 misformatted"
10156 }
10157
10158 test_215() { # for bugs 18102, 21079, 21517
10159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10160         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10161         local P='[1-9][0-9]*'           # positive numeric
10162         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10163         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10164         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10165         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10166
10167         local L1 # regexp for 1st line
10168         local L2 # regexp for 2nd line (optional)
10169         local BR # regexp for the rest (body)
10170
10171         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10172         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10173         create_lnet_proc_files "stats"
10174         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10175         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10176         remove_lnet_proc_files "stats"
10177
10178         # /proc/sys/lnet/routes should look like this:
10179         # Routing disabled/enabled
10180         # net hops state router
10181         # where net is a string like tcp0, hops >= 0, state is up/down,
10182         # router is a string like 192.168.1.1@tcp2
10183         L1="^Routing (disabled|enabled)$"
10184         L2="^net +hops +state +router$"
10185         BR="^$NET +$N +(up|down) +$NID$"
10186         create_lnet_proc_files "routes"
10187         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10188         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10189         remove_lnet_proc_files "routes"
10190
10191         # /proc/sys/lnet/routers should look like this:
10192         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10193         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10194         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10195         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10196         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10197         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10198         create_lnet_proc_files "routers"
10199         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10200         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10201         remove_lnet_proc_files "routers"
10202
10203         # /proc/sys/lnet/peers should look like this:
10204         # nid refs state last max rtr min tx min queue
10205         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10206         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10207         # numeric (0 or >0 or <0), queue >= 0.
10208         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10209         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10210         create_lnet_proc_files "peers"
10211         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10212         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10213         remove_lnet_proc_files "peers"
10214
10215         # /proc/sys/lnet/buffers  should look like this:
10216         # pages count credits min
10217         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10218         L1="^pages +count +credits +min$"
10219         BR="^ +$N +$N +$I +$I$"
10220         create_lnet_proc_files "buffers"
10221         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10222         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10223         remove_lnet_proc_files "buffers"
10224
10225         # /proc/sys/lnet/nis should look like this:
10226         # nid status alive refs peer rtr max tx min
10227         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10228         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10229         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10230         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10231         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10232         create_lnet_proc_files "nis"
10233         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10234         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10235         remove_lnet_proc_files "nis"
10236
10237         # can we successfully write to /proc/sys/lnet/stats?
10238         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10239         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10240 }
10241 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10242
10243 test_216() { # bug 20317
10244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10245         remote_ost_nodsh && skip "remote OST with nodsh" && return
10246         local node
10247         local p="$TMP/sanityN-$TESTNAME.parameters"
10248         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
10249         for node in $(osts_nodes); do
10250                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10251                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
10252                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
10253         done
10254         clear_osc_stats
10255
10256         # agressive lockless i/o settings
10257         for node in $(osts_nodes); do
10258                 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'
10259         done
10260         lctl set_param -n osc.*.contention_seconds 60
10261
10262         $DIRECTIO write $DIR/$tfile 0 10 4096
10263         $CHECKSTAT -s 40960 $DIR/$tfile
10264
10265         # disable lockless i/o
10266         for node in $(osts_nodes); do
10267                 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'
10268         done
10269         lctl set_param -n osc.*.contention_seconds 0
10270         clear_osc_stats
10271
10272         dd if=/dev/zero of=$DIR/$tfile count=0
10273         $CHECKSTAT -s 0 $DIR/$tfile
10274
10275         restore_lustre_params <$p
10276         rm -f $p
10277         rm $DIR/$tfile
10278 }
10279 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10280
10281 test_217() { # bug 22430
10282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10283         local node
10284         local nid
10285
10286         for node in $(nodes_list); do
10287                 nid=$(host_nids_address $node $NETTYPE)
10288                 if [[ $nid = *-* ]] ; then
10289                         echo "lctl ping $nid@$NETTYPE"
10290                         lctl ping $nid@$NETTYPE
10291                 else
10292                         echo "skipping $node (no hyphen detected)"
10293                 fi
10294         done
10295 }
10296 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10297
10298 test_218() {
10299        # do directio so as not to populate the page cache
10300        log "creating a 10 Mb file"
10301        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10302        log "starting reads"
10303        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10304        log "truncating the file"
10305        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10306        log "killing dd"
10307        kill %+ || true # reads might have finished
10308        echo "wait until dd is finished"
10309        wait
10310        log "removing the temporary file"
10311        rm -rf $DIR/$tfile || error "tmp file removal failed"
10312 }
10313 run_test 218 "parallel read and truncate should not deadlock ======================="
10314
10315 test_219() {
10316         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10317         # write one partial page
10318         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
10319         # set no grant so vvp_io_commit_write will do sync write
10320         $LCTL set_param fail_loc=0x411
10321         # write a full page at the end of file
10322         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
10323
10324         $LCTL set_param fail_loc=0
10325         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
10326         $LCTL set_param fail_loc=0x411
10327         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
10328 }
10329 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
10330
10331 test_220() { #LU-325
10332         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10333         remote_ost_nodsh && skip "remote OST with nodsh" && return
10334         local OSTIDX=0
10335
10336         test_mkdir -p $DIR/$tdir
10337         local OST=$(lfs osts | grep ${OSTIDX}": " | \
10338                 awk '{print $2}' | sed -e 's/_UUID$//')
10339
10340         # on the mdt's osc
10341         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
10342         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
10343                         osc.$mdtosc_proc1.prealloc_last_id)
10344         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
10345                         osc.$mdtosc_proc1.prealloc_next_id)
10346
10347         $LFS df -i
10348
10349         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
10350         #define OBD_FAIL_OST_ENOINO              0x229
10351         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
10352         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
10353         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
10354
10355         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
10356
10357         MDSOBJS=$((last_id - next_id))
10358         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
10359
10360         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
10361         echo "OST still has $count kbytes free"
10362
10363         echo "create $MDSOBJS files @next_id..."
10364         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
10365
10366         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10367                         osc.$mdtosc_proc1.prealloc_last_id)
10368         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10369                         osc.$mdtosc_proc1.prealloc_next_id)
10370
10371         echo "after creation, last_id=$last_id2, next_id=$next_id2"
10372         $LFS df -i
10373
10374         echo "cleanup..."
10375
10376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
10377         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
10378
10379         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
10380         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
10381         echo "unlink $MDSOBJS files @$next_id..."
10382         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
10383 }
10384 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
10385
10386 test_221() {
10387         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10388         dd if=`which date` of=$MOUNT/date oflag=sync
10389         chmod +x $MOUNT/date
10390
10391         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
10392         $LCTL set_param fail_loc=0x80001401
10393
10394         $MOUNT/date > /dev/null
10395         rm -f $MOUNT/date
10396 }
10397 run_test 221 "make sure fault and truncate race to not cause OOM"
10398
10399 test_222a () {
10400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10401        rm -rf $DIR/$tdir
10402        test_mkdir -p $DIR/$tdir
10403        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10404        createmany -o $DIR/$tdir/$tfile 10
10405        cancel_lru_locks mdc
10406        cancel_lru_locks osc
10407        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10408        $LCTL set_param fail_loc=0x31a
10409        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
10410        $LCTL set_param fail_loc=0
10411        rm -r $DIR/$tdir
10412 }
10413 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
10414
10415 test_222b () {
10416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10417        rm -rf $DIR/$tdir
10418        test_mkdir -p $DIR/$tdir
10419        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10420        createmany -o $DIR/$tdir/$tfile 10
10421        cancel_lru_locks mdc
10422        cancel_lru_locks osc
10423        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10424        $LCTL set_param fail_loc=0x31a
10425        rm -r $DIR/$tdir || "AGL for rmdir failed"
10426        $LCTL set_param fail_loc=0
10427 }
10428 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
10429
10430 test_223 () {
10431         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10432        rm -rf $DIR/$tdir
10433        test_mkdir -p $DIR/$tdir
10434        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10435        createmany -o $DIR/$tdir/$tfile 10
10436        cancel_lru_locks mdc
10437        cancel_lru_locks osc
10438        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
10439        $LCTL set_param fail_loc=0x31b
10440        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
10441        $LCTL set_param fail_loc=0
10442        rm -r $DIR/$tdir
10443 }
10444 run_test 223 "osc reenqueue if without AGL lock granted ======================="
10445
10446 test_224a() { # LU-1039, MRP-303
10447         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10448         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
10449         $LCTL set_param fail_loc=0x508
10450         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
10451         $LCTL set_param fail_loc=0
10452         df $DIR
10453 }
10454 run_test 224a "Don't panic on bulk IO failure"
10455
10456 test_224b() { # LU-1039, MRP-303
10457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10458         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
10459         cancel_lru_locks osc
10460         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
10461         $LCTL set_param fail_loc=0x515
10462         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
10463         $LCTL set_param fail_loc=0
10464         df $DIR
10465 }
10466 run_test 224b "Don't panic on bulk IO failure"
10467
10468 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
10469 test_225a () {
10470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10471        if [ -z ${MDSSURVEY} ]; then
10472               skip_env "mds-survey not found" && return
10473        fi
10474        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10475             { skip "Need MDS version at least 2.2.51"; return; }
10476
10477        local mds=$(facet_host $SINGLEMDS)
10478        local target=$(do_nodes $mds 'lctl dl' | \
10479                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10480
10481        local cmd1="file_count=1000 thrhi=4"
10482        local cmd2="dir_count=2 layer=mdd stripe_count=0"
10483        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10484        local cmd="$cmd1 $cmd2 $cmd3"
10485
10486        rm -f ${TMP}/mds_survey*
10487        echo + $cmd
10488        eval $cmd || error "mds-survey with zero-stripe failed"
10489        cat ${TMP}/mds_survey*
10490        rm -f ${TMP}/mds_survey*
10491 }
10492 run_test 225a "Metadata survey sanity with zero-stripe"
10493
10494 test_225b () {
10495         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10496        if [ -z ${MDSSURVEY} ]; then
10497               skip_env "mds-survey not found" && return
10498        fi
10499        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10500             { skip "Need MDS version at least 2.2.51"; return; }
10501
10502        if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
10503               skip_env "Need to mount OST to test" && return
10504        fi
10505
10506        local mds=$(facet_host $SINGLEMDS)
10507        local target=$(do_nodes $mds 'lctl dl' | \
10508                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10509
10510        local cmd1="file_count=1000 thrhi=4"
10511        local cmd2="dir_count=2 layer=mdd stripe_count=1"
10512        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10513        local cmd="$cmd1 $cmd2 $cmd3"
10514
10515        rm -f ${TMP}/mds_survey*
10516        echo + $cmd
10517        eval $cmd || error "mds-survey with stripe_count failed"
10518        cat ${TMP}/mds_survey*
10519        rm -f ${TMP}/mds_survey*
10520 }
10521 run_test 225b "Metadata survey sanity with stripe_count = 1"
10522
10523 mcreate_path2fid () {
10524         local mode=$1
10525         local major=$2
10526         local minor=$3
10527         local name=$4
10528         local desc=$5
10529         local path=$DIR/$tdir/$name
10530         local fid
10531         local rc
10532         local fid_path
10533
10534         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
10535                 error "cannot create $desc"
10536
10537         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
10538         rc=$?
10539         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
10540
10541         fid_path=$($LFS fid2path $MOUNT $fid)
10542         rc=$?
10543         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
10544
10545         [ "$path" == "$fid_path" ] ||
10546                 error "fid2path returned $fid_path, expected $path"
10547
10548         echo "pass with $path and $fid"
10549 }
10550
10551 test_226 () {
10552         rm -rf $DIR/$tdir
10553         mkdir -p $DIR/$tdir
10554
10555         mcreate_path2fid 0010666 0 0 fifo "FIFO"
10556         mcreate_path2fid 0020666 1 3 null "character special file (null)"
10557         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
10558         mcreate_path2fid 0040666 0 0 dir "directory"
10559         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
10560         mcreate_path2fid 0100666 0 0 file "regular file"
10561         mcreate_path2fid 0120666 0 0 link "symbolic link"
10562         mcreate_path2fid 0140666 0 0 sock "socket"
10563 }
10564 run_test 226 "call path2fid and fid2path on files of all type"
10565
10566 # LU-1299 Executing or running ldd on a truncated executable does not
10567 # cause an out-of-memory condition.
10568 test_227() {
10569         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10570         dd if=`which date` of=$MOUNT/date bs=1k count=1
10571         chmod +x $MOUNT/date
10572
10573         $MOUNT/date > /dev/null
10574         ldd $MOUNT/date > /dev/null
10575         rm -f $MOUNT/date
10576 }
10577 run_test 227 "running truncated executable does not cause OOM"
10578
10579 # LU-1512 try to reuse idle OI blocks
10580 test_228a() {
10581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10582         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10583                 skip "non-ldiskfs backend" && return
10584
10585         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10586         local myDIR=$DIR/$tdir
10587
10588         mkdir -p $myDIR
10589         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10590         $LCTL set_param fail_loc=0x80001002
10591         createmany -o $myDIR/t- 10000
10592         $LCTL set_param fail_loc=0
10593         # The guard is current the largest FID holder
10594         touch $myDIR/guard
10595         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10596                     tr -d '[')
10597         local IDX=$(($SEQ % 64))
10598
10599         do_facet $SINGLEMDS sync
10600         # Make sure journal flushed.
10601         sleep 6
10602         local blk1=$(do_facet $SINGLEMDS \
10603                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10604                      grep Blockcount | awk '{print $4}')
10605
10606         # Remove old files, some OI blocks will become idle.
10607         unlinkmany $myDIR/t- 10000
10608         # Create new files, idle OI blocks should be reused.
10609         createmany -o $myDIR/t- 2000
10610         do_facet $SINGLEMDS sync
10611         # Make sure journal flushed.
10612         sleep 6
10613         local blk2=$(do_facet $SINGLEMDS \
10614                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10615                      grep Blockcount | awk '{print $4}')
10616
10617         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10618 }
10619 run_test 228a "try to reuse idle OI blocks"
10620
10621 test_228b() {
10622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10623         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10624                 skip "non-ldiskfs backend" && return
10625
10626         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10627         local myDIR=$DIR/$tdir
10628
10629         mkdir -p $myDIR
10630         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10631         $LCTL set_param fail_loc=0x80001002
10632         createmany -o $myDIR/t- 10000
10633         $LCTL set_param fail_loc=0
10634         # The guard is current the largest FID holder
10635         touch $myDIR/guard
10636         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10637                     tr -d '[')
10638         local IDX=$(($SEQ % 64))
10639
10640         do_facet $SINGLEMDS sync
10641         # Make sure journal flushed.
10642         sleep 6
10643         local blk1=$(do_facet $SINGLEMDS \
10644                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10645                      grep Blockcount | awk '{print $4}')
10646
10647         # Remove old files, some OI blocks will become idle.
10648         unlinkmany $myDIR/t- 10000
10649
10650         # stop the MDT
10651         stop $SINGLEMDS || error "Fail to stop MDT."
10652         # remount the MDT
10653         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10654
10655         df $MOUNT || error "Fail to df."
10656         # Create new files, idle OI blocks should be reused.
10657         createmany -o $myDIR/t- 2000
10658         do_facet $SINGLEMDS sync
10659         # Make sure journal flushed.
10660         sleep 6
10661         local blk2=$(do_facet $SINGLEMDS \
10662                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10663                      grep Blockcount | awk '{print $4}')
10664
10665         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10666 }
10667 run_test 228b "idle OI blocks can be reused after MDT restart"
10668
10669 #LU-1881
10670 test_228c() {
10671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10672         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10673                 skip "non-ldiskfs backend" && return
10674
10675         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10676         local myDIR=$DIR/$tdir
10677
10678         mkdir -p $myDIR
10679         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10680         $LCTL set_param fail_loc=0x80001002
10681         # 20000 files can guarantee there are index nodes in the OI file
10682         createmany -o $myDIR/t- 20000
10683         $LCTL set_param fail_loc=0
10684         # The guard is current the largest FID holder
10685         touch $myDIR/guard
10686         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10687                     tr -d '[')
10688         local IDX=$(($SEQ % 64))
10689
10690         do_facet $SINGLEMDS sync
10691         # Make sure journal flushed.
10692         sleep 6
10693         local blk1=$(do_facet $SINGLEMDS \
10694                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10695                      grep Blockcount | awk '{print $4}')
10696
10697         # Remove old files, some OI blocks will become idle.
10698         unlinkmany $myDIR/t- 20000
10699         rm -f $myDIR/guard
10700         # The OI file should become empty now
10701
10702         # Create new files, idle OI blocks should be reused.
10703         createmany -o $myDIR/t- 2000
10704         do_facet $SINGLEMDS sync
10705         # Make sure journal flushed.
10706         sleep 6
10707         local blk2=$(do_facet $SINGLEMDS \
10708                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10709                      grep Blockcount | awk '{print $4}')
10710
10711         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10712 }
10713 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
10714
10715 test_230a() {
10716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10717         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10718         local MDTIDX=1
10719
10720         mkdir -p $DIR/$tdir/test_230_local
10721         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
10722         [ $mdt_idx -ne 0 ] &&
10723                 error "create local directory on wrong MDT $mdt_idx"
10724
10725         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
10726                         error "create remote directory failed"
10727         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
10728         [ $mdt_idx -ne $MDTIDX ] &&
10729                 error "create remote directory on wrong MDT $mdt_idx"
10730
10731         createmany -o $DIR/$tdir/test_230/t- 10 ||
10732                 error "create files on remote directory failed"
10733         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
10734         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
10735         rm -r $DIR/$tdir || error "unlink remote directory failed"
10736 }
10737 run_test 230a "Create remote directory and files under the remote directory"
10738
10739 test_230b() {
10740         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10741         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10742         local MDTIDX=1
10743         local remote_dir=$DIR/$tdir/remote_dir
10744         local rc=0
10745
10746         mkdir -p $DIR/$tdir
10747         $LFS mkdir -i $MDTIDX $remote_dir ||
10748                 error "create remote directory failed"
10749
10750         $LFS mkdir -i 0 $remote_dir/new_dir &&
10751                 error "nested remote directory create succeed!"
10752
10753         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
10754         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
10755         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
10756
10757         [ $rc -ne 0 ] &&
10758            error "create remote directory failed after set enable_remote_dir"
10759
10760         rm -r $DIR/$tdir || error "unlink remote directory failed"
10761 }
10762 run_test 230b "nested remote directory should be failed"
10763
10764 test_231a()
10765 {
10766         # For simplicity this test assumes that max_pages_per_rpc
10767         # is the same across all OSCs
10768         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
10769         local bulk_size=$((max_pages * 4096))
10770
10771         mkdir -p $DIR/$tdir
10772
10773         # clear the OSC stats
10774         $LCTL set_param osc.*.stats=0 &>/dev/null
10775
10776         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
10777         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
10778                 oflag=direct &>/dev/null || error "dd failed"
10779
10780         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
10781         if [ x$nrpcs != "x1" ]; then
10782                 error "found $nrpc ost_write RPCs, not 1 as expected"
10783         fi
10784
10785         # Drop the OSC cache, otherwise we will read from it
10786         cancel_lru_locks osc
10787
10788         # clear the OSC stats
10789         $LCTL set_param osc.*.stats=0 &>/dev/null
10790
10791         # Client reads $bulk_size.
10792         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
10793                 iflag=direct &>/dev/null || error "dd failed"
10794
10795         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
10796         if [ x$nrpcs != "x1" ]; then
10797                 error "found $nrpc ost_read RPCs, not 1 as expected"
10798         fi
10799 }
10800 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
10801
10802 test_231b() {
10803         mkdir -p $DIR/$tdir
10804         local i
10805         for i in {0..1023}; do
10806                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
10807                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
10808                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
10809         done
10810         sync
10811 }
10812 run_test 231b "must not assert on fully utilized OST request buffer"
10813
10814 #
10815 # tests that do cleanup/setup should be run at the end
10816 #
10817
10818 test_900() {
10819         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10820         local ls
10821         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
10822         $LCTL set_param fail_loc=0x903
10823         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
10824         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
10825                 echo "clear" > $ls
10826         done
10827         FAIL_ON_ERROR=true cleanup
10828         FAIL_ON_ERROR=true setup
10829 }
10830 run_test 900 "umount should not race with any mgc requeue thread"
10831
10832 complete $SECONDS
10833 check_and_cleanup_lustre
10834 if [ "$I_MOUNTED" != "yes" ]; then
10835         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
10836 fi
10837 exit_status