Whamcloud - gitweb
LU-1187 tests: Add parallel sanity tests to dne
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                27u   42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 # Tests that fail on uml
21 CPU=`awk '/model/ {print $4}' /proc/cpuinfo`
22 #                                    buffer i/o errs             sock spc runas
23 [ "$CPU" = "UML" ] && EXCEPT="$EXCEPT 27m 27n 27o 27p 27q 27r 31d 54a  64b 99a 99b 99c 99d 99e 99f 101a"
24
25 SRCDIR=$(cd $(dirname $0); echo $PWD)
26 export PATH=$PATH:/sbin
27
28 TMP=${TMP:-/tmp}
29
30 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
31 CREATETEST=${CREATETEST:-createtest}
32 LFS=${LFS:-lfs}
33 LFIND=${LFIND:-"$LFS find"}
34 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
35 LCTL=${LCTL:-lctl}
36 MCREATE=${MCREATE:-mcreate}
37 OPENFILE=${OPENFILE:-openfile}
38 OPENUNLINK=${OPENUNLINK:-openunlink}
39 export MULTIOP=${MULTIOP:-multiop}
40 READS=${READS:-"reads"}
41 MUNLINK=${MUNLINK:-munlink}
42 SOCKETSERVER=${SOCKETSERVER:-socketserver}
43 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
44 MEMHOG=${MEMHOG:-memhog}
45 DIRECTIO=${DIRECTIO:-directio}
46 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
47 UMOUNT=${UMOUNT:-"umount -d"}
48 STRIPES_PER_OBJ=-1
49 CHECK_GRANT=${CHECK_GRANT:-"yes"}
50 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
51 export PARALLEL=${PARALLEL:-"no"}
52
53 export NAME=${NAME:-local}
54
55 SAVE_PWD=$PWD
56
57 CLEANUP=${CLEANUP:-:}
58 SETUP=${SETUP:-:}
59 TRACE=${TRACE:-""}
60 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
61 . $LUSTRE/tests/test-framework.sh
62 init_test_env $@
63 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
64 init_logging
65
66 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 24v 27m 36f 36g 36h 51b 60c 63 64b 68 71 73 77f 78 101a 103 115 120g 124b"
67
68 FAIL_ON_ERROR=false
69
70 cleanup() {
71         echo -n "cln.."
72         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
73         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
74 }
75 setup() {
76         echo -n "mnt.."
77         load_modules
78         setupall || exit 10
79         echo "done"
80 }
81
82 check_kernel_version() {
83         WANT_VER=$1
84         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
85         case $GOT_VER in
86         patchless|patchless_client) return 0;;
87         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
88         esac
89         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
90         return 1
91 }
92
93 if [ "$ONLY" == "cleanup" ]; then
94        sh llmountcleanup.sh
95        exit 0
96 fi
97
98 check_and_setup_lustre
99
100 DIR=${DIR:-$MOUNT}
101 assert_DIR
102
103 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
104     awk '{gsub(/_UUID/,""); print $1}' | head -1)
105 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
106 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
107 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
108 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
109 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
110 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
111
112 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
113 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
114 rm -rf $DIR/[Rdfs][0-9]*
115
116 # $RUNAS_ID may get set incorrectly somewhere else
117 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
118
119 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
120
121 build_test_filter
122
123 if [ "${ONLY}" = "MOUNT" ] ; then
124         echo "Lustre is up, please go on"
125         exit
126 fi
127
128 echo "preparing for tests involving mounts"
129 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
130 touch $EXT2_DEV
131 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
132 echo # add a newline after mke2fs.
133
134 umask 077
135
136 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
137 lctl set_param debug=-1 2> /dev/null || true
138 test_0() {
139         touch $DIR/$tfile
140         $CHECKSTAT -t file $DIR/$tfile || error
141         rm $DIR/$tfile
142         $CHECKSTAT -a $DIR/$tfile || error
143 }
144 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
145
146 test_0b() {
147         chmod 0755 $DIR || error
148         $CHECKSTAT -p 0755 $DIR || error
149 }
150 run_test 0b "chmod 0755 $DIR ============================="
151
152 test_0c() {
153     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
154     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
155 }
156 run_test 0c "check import proc ============================="
157
158 test_1a() {
159         test_mkdir -p $DIR/$tdir
160         test_mkdir -p $DIR/$tdir/d2
161         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
162         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
163 }
164 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
165
166 test_1b() {
167         rmdir $DIR/$tdir/d2
168         rmdir $DIR/$tdir
169         $CHECKSTAT -a $DIR/$tdir || error
170 }
171 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
172
173 test_2a() {
174         test_mkdir $DIR/$tdir
175         touch $DIR/$tdir/$tfile
176         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
177 }
178 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
179
180 test_2b() {
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir || error
183 }
184 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
185
186 test_3a() {
187         test_mkdir -p $DIR/$tdir
188         $CHECKSTAT -t dir $DIR/$tdir || error
189 }
190 run_test 3a "mkdir .../d3 ======================================"
191
192 test_3b() {
193         if [ ! -d $DIR/$tdir ]; then
194                 mkdir $DIR/$tdir
195         fi
196         touch $DIR/$tdir/$tfile
197         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
198 }
199 run_test 3b "touch .../d3/f ===================================="
200
201 test_3c() {
202         rm -r $DIR/$tdir
203         $CHECKSTAT -a $DIR/$tdir || error
204 }
205 run_test 3c "rm -r .../d3 ======================================"
206
207 test_4a() {
208         test_mkdir -p $DIR/$tdir
209         $CHECKSTAT -t dir $DIR/$tdir || error
210 }
211 run_test 4a "mkdir .../d4 ======================================"
212
213 test_4b() {
214         if [ ! -d $DIR/$tdir ]; then
215                 test_mkdir $DIR/$tdir
216         fi
217         test_mkdir $DIR/$tdir/d2
218         mkdir $DIR/$tdir/d2
219         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
220 }
221 run_test 4b "mkdir .../d4/d2 ==================================="
222
223 test_5() {
224         test_mkdir $DIR/$tdir
225         test_mkdir $DIR/$tdir/d2
226         chmod 0707 $DIR/$tdir/d2
227         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error
228 }
229 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
230
231 test_6a() {
232         touch $DIR/$tfile
233         chmod 0666 $DIR/$tfile || error
234         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
235 }
236 run_test 6a "touch .../f6a; chmod .../f6a ======================"
237
238 test_6b() {
239         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
240         if [ ! -f $DIR/$tfile ]; then
241                 touch $DIR/$tfile
242                 chmod 0666 $DIR/$tfile
243         fi
244         $RUNAS chmod 0444 $DIR/$tfile && error
245         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
246 }
247 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
248
249 test_6c() {
250         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
251         touch $DIR/$tfile
252         chown $RUNAS_ID $DIR/$tfile || error
253         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
254 }
255 run_test 6c "touch .../f6c; chown .../f6c ======================"
256
257 test_6d() {
258         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
259         if [ ! -f $DIR/$tfile ]; then
260                 touch $DIR/$tfile
261                 chown $RUNAS_ID $DIR/$tfile
262         fi
263         $RUNAS chown $UID $DIR/$tfile && error
264         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
265 }
266 run_test 6d "$RUNAS chown .../f6c (should return error) =="
267
268 test_6e() {
269         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
270         touch $DIR/$tfile
271         chgrp $RUNAS_ID $DIR/$tfile || error
272         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
273 }
274 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
275
276 test_6f() {
277         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
278         if [ ! -f $DIR/$tfile ]; then
279                 touch $DIR/$tfile
280                 chgrp $RUNAS_ID $DIR/$tfile
281         fi
282         $RUNAS chgrp $UID $DIR/$tfile && error
283         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
284 }
285 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
286
287 test_6g() {
288         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
289         test_mkdir $DIR/$tdir || error
290         chmod 777 $DIR/$tdir || error
291         $RUNAS mkdir $DIR/$tdir/d || error
292         chmod g+s $DIR/$tdir/d || error
293         test_mkdir $DIR/$tdir/d/subdir
294         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir || error
295 }
296 run_test 6g "Is new dir in sgid dir inheriting group?"
297
298 test_6h() { # bug 7331
299         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
300         touch $DIR/$tfile || error "touch failed"
301         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
302         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
303                 error "chown worked"
304         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile || error
305 }
306 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
307
308 test_7a() {
309         test_mkdir $DIR/$tdir
310         $MCREATE $DIR/$tdir/$tfile
311         chmod 0666 $DIR/$tdir/$tfile
312         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
313 }
314 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
315
316 test_7b() {
317         if [ ! -d $DIR/$tdir ]; then
318                 mkdir $DIR/$tdir
319         fi
320         $MCREATE $DIR/$tdir/$tfile
321         echo -n foo > $DIR/$tdir/$tfile
322         [ "`cat $DIR/$tdir/$tfile`" = "foo" ] || error
323         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error
324 }
325 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
326
327 test_8() {
328         test_mkdir $DIR/$tdir
329         touch $DIR/$tdir/$tfile
330         chmod 0666 $DIR/$tdir/$tfile
331         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
332 }
333 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
334
335 test_9() {
336         test_mkdir $DIR/$tdir
337         test_mkdir $DIR/$tdir/d2
338         test_mkdir $DIR/$tdir/d2/d3
339         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error
340 }
341 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
342
343 test_10() {
344         test_mkdir $DIR/$tdir
345         test_mkdir $DIR/$tdir/d2
346         touch $DIR/$tdir/d2/$tfile
347         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile || error
348 }
349 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
350
351 test_11() {
352         test_mkdir $DIR/$tdir
353         test_mkdir $DIR/$tdir/d2
354         chmod 0666 $DIR/$tdir/d2
355         chmod 0705 $DIR/$tdir/d2
356         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 || error
357 }
358 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
359
360 test_12() {
361         test_mkdir $DIR/$tdir
362         touch $DIR/$tdir/$tfile
363         chmod 0666 $DIR/$tdir/$tfile
364         chmod 0654 $DIR/$tdir/$tfile
365         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile || error
366 }
367 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
368
369 test_13() {
370         test_mkdir $DIR/$tdir
371         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
372         >  $DIR/$tdir/$tfile
373         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile || error
374 }
375 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
376
377 test_14() {
378         test_mkdir $DIR/$tdir
379         touch $DIR/$tdir/$tfile
380         rm $DIR/$tdir/$tfile
381         $CHECKSTAT -a $DIR/$tdir/$tfile || error
382 }
383 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
384
385 test_15() {
386         test_mkdir $DIR/$tdir
387         touch $DIR/$tdir/$tfile
388         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
389         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 || error
390 }
391 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
392
393 test_16() {
394         test_mkdir $DIR/$tdir
395         touch $DIR/$tdir/$tfile
396         rm -rf $DIR/$tdir/$tfile
397         $CHECKSTAT -a $DIR/$tdir/$tfile || error
398 }
399 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
400
401 test_17a() {
402         test_mkdir -p $DIR/$tdir
403         touch $DIR/$tdir/$tfile
404         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
405         ls -l $DIR/$tdir
406         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist || error
407         $CHECKSTAT -f -t f $DIR/$tdir/l-exist || error
408         rm -f $DIR/$tdir/l-exist
409         $CHECKSTAT -a $DIR/$tdir/l-exist || error
410 }
411 run_test 17a "symlinks: create, remove (real) =================="
412
413 test_17b() {
414         test_mkdir -p $DIR/$tdir
415         ln -s no-such-file $DIR/$tdir/l-dangle
416         ls -l $DIR/$tdir
417         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle || error
418         $CHECKSTAT -fa $DIR/$tdir/l-dangle || error
419         rm -f $DIR/$tdir/l-dangle
420         $CHECKSTAT -a $DIR/$tdir/l-dangle || error
421 }
422 run_test 17b "symlinks: create, remove (dangling) =============="
423
424 test_17c() { # bug 3440 - don't save failed open RPC for replay
425         test_mkdir -p $DIR/$tdir
426         ln -s foo $DIR/$tdir/$tfile
427         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
428 }
429 run_test 17c "symlinks: open dangling (should return error) ===="
430
431 test_17d() {
432         test_mkdir -p $DIR/$tdir
433         ln -s foo $DIR/$tdir/$tfile
434         touch $DIR/$tdir/$tfile || error "creating to new symlink"
435 }
436 run_test 17d "symlinks: create dangling ========================"
437
438 test_17e() {
439         test_mkdir -p $DIR/$tdir
440         local foo=$DIR/$tdir/$tfile
441         ln -s $foo $foo || error "create symlink failed"
442         ls -l $foo || error "ls -l failed"
443         ls $foo && error "ls not failed" || true
444 }
445 run_test 17e "symlinks: create recursive symlink (should return error) ===="
446
447 test_17f() {
448         test_mkdir -p $DIR/d17f
449         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
450         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
451         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
452         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
453         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
454         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
455         ls -l  $DIR/d17f
456 }
457 run_test 17f "symlinks: long and very long symlink name ========================"
458
459 # str_repeat(S, N) generate a string that is string S repeated N times
460 str_repeat() {
461         local s=$1
462         local n=$2
463         local ret=''
464         while [ $((n -= 1)) -ge 0 ]; do
465                 ret=$ret$s
466         done
467         echo $ret
468 }
469
470 # Long symlinks and LU-2241
471 test_17g() {
472         test_mkdir -p $DIR/$tdir
473         local TESTS="59 60 61 4094 4095"
474
475         for i in $TESTS; do
476                 local SYMNAME=$(str_repeat 'x' $i)
477                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
478                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
479         done
480 }
481 run_test 17g "symlinks: really long symlink name and inode boundaries"
482
483 test_17h() { #bug 17378
484         remote_mds_nodsh && skip "remote MDS with nodsh" && return
485         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
486         local mdt_idx
487         test_mkdir -p $DIR/$tdir
488         if [ $MDSCOUNT -gt 1 ]; then
489                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
490         else
491                 mdt_idx=0
492         fi
493         $SETSTRIPE -c -1 $DIR/$tdir
494 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
495         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
496         touch $DIR/$tdir/$tfile || true
497 }
498 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
499
500 test_17i() { #bug 20018
501         remote_mds_nodsh && skip "remote MDS with nodsh" && return
502         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
503         test_mkdir -p $DIR/$tdir
504         local foo=$DIR/$tdir/$tfile
505         local mdt_idx
506         if [ $MDSCOUNT -gt 1 ]; then
507                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
508         else
509                 mdt_idx=0
510         fi
511         ln -s $foo $foo || error "create symlink failed"
512 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
513         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
514         ls -l $foo && error "error not detected"
515         return 0
516 }
517 run_test 17i "don't panic on short symlink"
518
519 test_17k() { #bug 22301
520         rsync --help | grep -q xattr ||
521                 skip_env "$(rsync --version| head -1) does not support xattrs"
522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
523         test_mkdir -p $DIR/$tdir
524         test_mkdir -p $DIR/$tdir.new
525         touch $DIR/$tdir/$tfile
526         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
527         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
528                 error "rsync failed with xattrs enabled"
529 }
530 run_test 17k "symlinks: rsync with xattrs enabled ========================="
531
532 test_17l() { # LU-279
533         mkdir -p $DIR/$tdir
534         touch $DIR/$tdir/$tfile
535         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
536         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
537                 # -h to not follow symlinks. -m '' to list all the xattrs.
538                 # grep to remove first line: '# file: $path'.
539                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
540                 do
541                         lgetxattr_size_check $path $xattr ||
542                                 error "lgetxattr_size_check $path $xattr failed"
543                 done
544         done
545 }
546 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
547
548 # LU-1540
549 test_17m() {
550         local short_sym="0123456789"
551         local WDIR=$DIR/${tdir}m
552         local mds_index
553         local devname
554         local cmd
555         local i
556         local rc=0
557
558         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
559         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
560                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
561
562         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
563                 skip "only for ldiskfs MDT" && return 0
564
565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
566
567         mkdir -p $WDIR
568         long_sym=$short_sym
569         # create a long symlink file
570         for ((i = 0; i < 4; ++i)); do
571                 long_sym=${long_sym}${long_sym}
572         done
573
574         echo "create 512 short and long symlink files under $WDIR"
575         for ((i = 0; i < 256; ++i)); do
576                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
577                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
578         done
579
580         echo "erase them"
581         rm -f $WDIR/*
582         sync
583         wait_delete_completed
584
585         echo "recreate the 512 symlink files with a shorter string"
586         for ((i = 0; i < 512; ++i)); do
587                 # rewrite the symlink file with a shorter string
588                 ln -sf ${long_sym} $WDIR/long-$i
589                 ln -sf ${short_sym} $WDIR/short-$i
590         done
591
592         mds_index=$($LFS getstripe -M $WDIR)
593         mds_index=$((mds_index+1))
594         devname=$(mdsdevname $mds_index)
595         cmd="$E2FSCK -fnvd $devname"
596
597         echo "stop and checking mds${mds_index}: $cmd"
598         # e2fsck should not return error
599         stop mds${mds_index} -f
600         do_facet mds${mds_index} $cmd || rc=$?
601
602         start mds${mds_index} $devname $MDS_MOUNT_OPTS
603         df $MOUNT > /dev/null 2>&1
604         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
605                 "short/long symlink MDT: rc=$rc"
606         return $rc
607 }
608 run_test 17m "run e2fsck against MDT which contains short/long symlink"
609
610 check_fs_consistency_17n() {
611         local mdt_index
612         local devname
613         local cmd
614         local rc=0
615
616         for mdt_index in $(seq 1 $MDSCOUNT); do
617                 devname=$(mdsdevname $mdt_index)
618                 cmd="$E2FSCK -fnvd $devname"
619
620                 echo "stop and checking mds${mdt_index}: $cmd"
621                 # e2fsck should not return error
622                 stop mds${mdt_index}
623                 do_facet mds${mdt_index} $cmd || rc=$?
624
625                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
626                 df $MOUNT > /dev/null 2>&1
627                 [ $rc -ne 0 ] && break
628         done
629         return $rc
630 }
631
632 test_17n() {
633         local i
634
635         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
636         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
637                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
638
639         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
640                 skip "only for ldiskfs MDT" && return 0
641
642         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
643
644         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
645
646         mkdir -p $DIR/$tdir
647         for ((i=0; i<10; i++)); do
648                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
649                         error "create remote dir error $i"
650                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
651                         error "create files under remote dir failed $i"
652         done
653
654         check_fs_consistency_17n || error "e2fsck report error"
655
656         for ((i=0;i<10;i++)); do
657                 rm -rf $DIR/$tdir/remote_dir_${i} ||
658                         error "destroy remote dir error $i"
659         done
660
661         check_fs_consistency_17n || error "e2fsck report error"
662 }
663 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
664
665 test_18() {
666         touch $DIR/f
667         ls $DIR || error
668 }
669 run_test 18 "touch .../f ; ls ... =============================="
670
671 test_19a() {
672         touch $DIR/f19
673         ls -l $DIR
674         rm $DIR/f19
675         $CHECKSTAT -a $DIR/f19 || error
676 }
677 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
678
679 test_19b() {
680         ls -l $DIR/f19 && error || true
681 }
682 run_test 19b "ls -l .../f19 (should return error) =============="
683
684 test_19c() {
685         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
686         $RUNAS touch $DIR/f19 && error || true
687 }
688 run_test 19c "$RUNAS touch .../f19 (should return error) =="
689
690 test_19d() {
691         cat $DIR/f19 && error || true
692 }
693 run_test 19d "cat .../f19 (should return error) =============="
694
695 test_20() {
696         touch $DIR/f
697         rm $DIR/f
698         log "1 done"
699         touch $DIR/f
700         rm $DIR/f
701         log "2 done"
702         touch $DIR/f
703         rm $DIR/f
704         log "3 done"
705         $CHECKSTAT -a $DIR/f || error
706 }
707 run_test 20 "touch .../f ; ls -l ... ==========================="
708
709 test_21() {
710         test_mkdir $DIR/d21
711         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
712         ln -s dangle $DIR/d21/link
713         echo foo >> $DIR/d21/link
714         cat $DIR/d21/dangle
715         $CHECKSTAT -t link $DIR/d21/link || error
716         $CHECKSTAT -f -t file $DIR/d21/link || error
717 }
718 run_test 21 "write to dangling link ============================"
719
720 test_22() {
721         WDIR=$DIR/$tdir
722         test_mkdir -p $DIR/$tdir
723         chown $RUNAS_ID:$RUNAS_GID $WDIR
724         (cd $WDIR || error "cd $WDIR failed";
725         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
726         $RUNAS tar xf -)
727         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
728         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
729         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
730 }
731 run_test 22 "unpack tar archive as non-root user ==============="
732
733 # was test_23
734 test_23a() {
735         test_mkdir -p $DIR/$tdir
736         local file=$DIR/$tdir/$tfile
737
738         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
739         openfile -f O_CREAT:O_EXCL $file &&
740                 error "$file recreate succeeded" || true
741 }
742 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
743
744 test_23b() { # bug 18988
745         test_mkdir -p $DIR/$tdir
746         local file=$DIR/$tdir/$tfile
747
748         rm -f $file
749         echo foo > $file || error "write filed"
750         echo bar >> $file || error "append filed"
751         $CHECKSTAT -s 8 $file || error "wrong size"
752         rm $file
753 }
754 run_test 23b "O_APPEND check =========================="
755
756 test_24a() {
757         echo '== rename sanity =============================================='
758         echo '-- same directory rename'
759         test_mkdir $DIR/R1
760         touch $DIR/R1/f
761         mv $DIR/R1/f $DIR/R1/g
762         $CHECKSTAT -t file $DIR/R1/g || error
763 }
764 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
765
766 test_24b() {
767         test_mkdir $DIR/R2
768         touch $DIR/R2/{f,g}
769         mv $DIR/R2/f $DIR/R2/g
770         $CHECKSTAT -a $DIR/R2/f || error
771         $CHECKSTAT -t file $DIR/R2/g || error
772 }
773 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
774
775 test_24c() {
776         test_mkdir $DIR/R3
777         test_mkdir $DIR/R3/f
778         mv $DIR/R3/f $DIR/R3/g
779         $CHECKSTAT -a $DIR/R3/f || error
780         $CHECKSTAT -t dir $DIR/R3/g || error
781 }
782 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
783
784 test_24d() {
785         test_mkdir $DIR/R4
786         test_mkdir $DIR/R4/f
787         test_mkdir $DIR/R4/g
788         mrename $DIR/R4/f $DIR/R4/g
789         $CHECKSTAT -a $DIR/R4/f || error
790         $CHECKSTAT -t dir $DIR/R4/g || error
791 }
792 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
793
794 test_24e() {
795         echo '-- cross directory renames --'
796         test_mkdir $DIR/R5a
797         test_mkdir $DIR/R5b
798         touch $DIR/R5a/f
799         mv $DIR/R5a/f $DIR/R5b/g
800         $CHECKSTAT -a $DIR/R5a/f || error
801         $CHECKSTAT -t file $DIR/R5b/g || error
802 }
803 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
804
805 test_24f() {
806         test_mkdir $DIR/R6a
807         test_mkdir $DIR/R6b
808         touch $DIR/R6a/f $DIR/R6b/g
809         mv $DIR/R6a/f $DIR/R6b/g
810         $CHECKSTAT -a $DIR/R6a/f || error
811         $CHECKSTAT -t file $DIR/R6b/g || error
812 }
813 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
814
815 test_24g() {
816         test_mkdir $DIR/R7a
817         test_mkdir $DIR/R7b
818         test_mkdir $DIR/R7a/d
819         mv $DIR/R7a/d $DIR/R7b/e
820         $CHECKSTAT -a $DIR/R7a/d || error
821         $CHECKSTAT -t dir $DIR/R7b/e || error
822 }
823 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
824
825 test_24h() {
826         test_mkdir $DIR/R8a
827         test_mkdir $DIR/R8b
828         test_mkdir $DIR/R8a/d
829         test_mkdir $DIR/R8b/e
830         mrename $DIR/R8a/d $DIR/R8b/e
831         $CHECKSTAT -a $DIR/R8a/d || error
832         $CHECKSTAT -t dir $DIR/R8b/e || error
833 }
834 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
835
836 test_24i() {
837         echo "-- rename error cases"
838         test_mkdir $DIR/R9
839         test_mkdir $DIR/R9/a
840         touch $DIR/R9/f
841         mrename $DIR/R9/f $DIR/R9/a
842         $CHECKSTAT -t file $DIR/R9/f || error
843         $CHECKSTAT -t dir  $DIR/R9/a || error
844         $CHECKSTAT -a $DIR/R9/a/f || error
845 }
846 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
847
848 test_24j() {
849         test_mkdir $DIR/R10
850         mrename $DIR/R10/f $DIR/R10/g
851         $CHECKSTAT -t dir $DIR/R10 || error
852         $CHECKSTAT -a $DIR/R10/f || error
853         $CHECKSTAT -a $DIR/R10/g || error
854 }
855 run_test 24j "source does not exist ============================"
856
857 test_24k() {
858         test_mkdir $DIR/R11a
859         test_mkdir $DIR/R11a/d
860         touch $DIR/R11a/f
861         mv $DIR/R11a/f $DIR/R11a/d
862         $CHECKSTAT -a $DIR/R11a/f || error
863         $CHECKSTAT -t file $DIR/R11a/d/f || error
864 }
865 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
866
867 # bug 2429 - rename foo foo foo creates invalid file
868 test_24l() {
869         f="$DIR/f24l"
870         $MULTIOP $f OcNs || error
871 }
872 run_test 24l "Renaming a file to itself ========================"
873
874 test_24m() {
875         f="$DIR/f24m"
876         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
877         # on ext3 this does not remove either the source or target files
878         # though the "expected" operation would be to remove the source
879         $CHECKSTAT -t file ${f} || error "${f} missing"
880         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
881 }
882 run_test 24m "Renaming a file to a hard link to itself ========="
883
884 test_24n() {
885     f="$DIR/f24n"
886     # this stats the old file after it was renamed, so it should fail
887     touch ${f}
888     $CHECKSTAT ${f}
889     mv ${f} ${f}.rename
890     $CHECKSTAT ${f}.rename
891     $CHECKSTAT -a ${f}
892 }
893 run_test 24n "Statting the old file after renaming (Posix rename 2)"
894
895 test_24o() {
896         check_kernel_version 37 || return 0
897         test_mkdir -p $DIR/d24o
898         rename_many -s random -v -n 10 $DIR/d24o
899 }
900 run_test 24o "rename of files during htree split ==============="
901
902 test_24p() {
903         test_mkdir $DIR/R12a
904         test_mkdir $DIR/R12b
905         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
906         mrename $DIR/R12a $DIR/R12b
907         $CHECKSTAT -a $DIR/R12a || error
908         $CHECKSTAT -t dir $DIR/R12b || error
909         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
910         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
911 }
912 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
913
914 test_24q() {
915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
916         test_mkdir $DIR/R13a
917         test_mkdir $DIR/R13b
918         DIRINO=`ls -lid $DIR/R13a | awk '{ print $1 }'`
919         multiop_bg_pause $DIR/R13b D_c || return 1
920         MULTIPID=$!
921
922         mrename $DIR/R13a $DIR/R13b
923         $CHECKSTAT -a $DIR/R13a || error
924         $CHECKSTAT -t dir $DIR/R13b || error
925         DIRINO2=`ls -lid $DIR/R13b | awk '{ print $1 }'`
926         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
927         kill -USR1 $MULTIPID
928         wait $MULTIPID || error "multiop close failed"
929 }
930 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
931
932 test_24r() { #bug 3789
933         test_mkdir $DIR/R14a
934         test_mkdir $DIR/R14a/b
935         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
936         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
937         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
938 }
939 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
940
941 test_24s() {
942         test_mkdir $DIR/R15a
943         test_mkdir $DIR/R15a/b
944         test_mkdir $DIR/R15a/b/c
945         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
946         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
947         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
948 }
949 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
950 test_24t() {
951         test_mkdir $DIR/R16a
952         test_mkdir $DIR/R16a/b
953         test_mkdir $DIR/R16a/b/c
954         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
955         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
956         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
957 }
958 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
959
960 test_24u() { # bug12192
961         rm -rf $DIR/$tfile
962         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
963         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
964 }
965 run_test 24u "create stripe file"
966
967 page_size() {
968         getconf PAGE_SIZE
969 }
970
971 simple_cleanup_common() {
972         trap 0
973         rm -rf $DIR/$tdir
974         wait_delete_completed
975 }
976
977 max_pages_per_rpc() {
978         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
979 }
980
981 test_24v() {
982         local NRFILES=100000
983         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
984         [ $FREE_INODES -lt $NRFILES ] && \
985                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
986                 return
987
988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
989         trap simple_cleanup_common EXIT
990
991         mkdir -p $DIR/$tdir
992         createmany -m $DIR/$tdir/$tfile $NRFILES
993
994         cancel_lru_locks mdc
995         lctl set_param mdc.*.stats clear
996
997         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
998
999         # LU-5 large readdir
1000         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1001         #               8 bytes for name(filename is mostly 5 in this test) +
1002         #               8 bytes for luda_type
1003         # take into account of overhead in lu_dirpage header and end mark in
1004         # each page, plus one in RPC_NUM calculation.
1005         DIRENT_SIZE=48
1006         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1007         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1008         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1009                                 awk '/^mds_readpage/ {print $2}')
1010         [ $mds_readpage -gt $RPC_NUM ] && \
1011                 error "large readdir doesn't take effect"
1012
1013         simple_cleanup_common
1014 }
1015 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1016
1017 test_24w() { # bug21506
1018         SZ1=234852
1019         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1020         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1021         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1022         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1023         [ "$SZ1" = "$SZ2" ] || \
1024                 error "Error reading at the end of the file $tfile"
1025 }
1026 run_test 24w "Reading a file larger than 4Gb"
1027
1028 test_24x() {
1029         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1031         local MDTIDX=1
1032         local remote_dir=$DIR/$tdir/remote_dir
1033
1034         mkdir -p $DIR/$tdir
1035         $LFS mkdir -i $MDTIDX $remote_dir ||
1036                 error "create remote directory failed"
1037
1038         mkdir -p $DIR/$tdir/src_dir
1039         touch $DIR/$tdir/src_file
1040         mkdir -p $remote_dir/tgt_dir
1041         touch $remote_dir/tgt_file
1042
1043         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1044                 error "rename dir cross MDT works!"
1045
1046         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1047                 error "rename file cross MDT works!"
1048
1049         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1050                 error "ln file cross MDT should not work!"
1051
1052         rm -rf $DIR/$tdir || error "Can not delete directories"
1053 }
1054 run_test 24x "cross rename/link should be failed"
1055
1056 test_24y() {
1057         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1058         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1059         local MDTIDX=1
1060         local remote_dir=$DIR/$tdir/remote_dir
1061
1062         mkdir -p $DIR/$tdir
1063         $LFS mkdir -i $MDTIDX $remote_dir ||
1064                    error "create remote directory failed"
1065
1066         mkdir -p $remote_dir/src_dir
1067         touch $remote_dir/src_file
1068         mkdir -p $remote_dir/tgt_dir
1069         touch $remote_dir/tgt_file
1070
1071         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1072                 error "rename subdir in the same remote dir failed!"
1073
1074         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1075                 error "rename files in the same remote dir failed!"
1076
1077         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1078                 error "link files in the same remote dir failed!"
1079
1080         rm -rf $DIR/$tdir || error "Can not delete directories"
1081 }
1082 run_test 24y "rename/link on the same dir should succeed"
1083
1084 test_24z() {
1085         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1087         local MDTIDX=1
1088         local remote_src=$DIR/$tdir/remote_dir
1089         local remote_tgt=$DIR/$tdir/remote_tgt
1090
1091         mkdir -p $DIR/$tdir
1092         $LFS mkdir -i $MDTIDX $remote_src ||
1093                    error "create remote directory failed"
1094
1095         $LFS mkdir -i $MDTIDX $remote_tgt ||
1096                    error "create remote directory failed"
1097
1098         mrename $remote_src $remote_tgt &&
1099                 error "rename remote dirs should not work!"
1100
1101         rm -rf $DIR/$tdir || error "Can not delete directories"
1102 }
1103 run_test 24z "rename one remote dir to another remote dir should fail"
1104
1105 test_25a() {
1106         echo '== symlink sanity ============================================='
1107
1108         test_mkdir $DIR/d25
1109         ln -s d25 $DIR/s25
1110         touch $DIR/s25/foo || error
1111 }
1112 run_test 25a "create file in symlinked directory ==============="
1113
1114 test_25b() {
1115         [ ! -d $DIR/d25 ] && test_25a
1116         $CHECKSTAT -t file $DIR/s25/foo || error
1117 }
1118 run_test 25b "lookup file in symlinked directory ==============="
1119
1120 test_26a() {
1121         test_mkdir $DIR/d26
1122         test_mkdir $DIR/d26/d26-2
1123         ln -s d26/d26-2 $DIR/s26
1124         touch $DIR/s26/foo || error
1125 }
1126 run_test 26a "multiple component symlink ======================="
1127
1128 test_26b() {
1129         test_mkdir -p $DIR/d26b/d26-2
1130         ln -s d26b/d26-2/foo $DIR/s26-2
1131         touch $DIR/s26-2 || error
1132 }
1133 run_test 26b "multiple component symlink at end of lookup ======"
1134
1135 test_26c() {
1136         test_mkdir $DIR/d26.2
1137         touch $DIR/d26.2/foo
1138         ln -s d26.2 $DIR/s26.2-1
1139         ln -s s26.2-1 $DIR/s26.2-2
1140         ln -s s26.2-2 $DIR/s26.2-3
1141         chmod 0666 $DIR/s26.2-3/foo
1142 }
1143 run_test 26c "chain of symlinks ================================"
1144
1145 # recursive symlinks (bug 439)
1146 test_26d() {
1147         ln -s d26-3/foo $DIR/d26-3
1148 }
1149 run_test 26d "create multiple component recursive symlink ======"
1150
1151 test_26e() {
1152         [ ! -h $DIR/d26-3 ] && test_26d
1153         rm $DIR/d26-3
1154 }
1155 run_test 26e "unlink multiple component recursive symlink ======"
1156
1157 # recursive symlinks (bug 7022)
1158 test_26f() {
1159         test_mkdir -p $DIR/$tdir
1160         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1161         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1162         test_mkdir -p lndir bar1      || error "mkdir lndir/bar1 failed"
1163         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1164         cd $tfile                || error "cd $tfile failed"
1165         ln -s .. dotdot          || error "ln dotdot failed"
1166         ln -s dotdot/lndir lndir || error "ln lndir failed"
1167         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1168         output=`ls $tfile/$tfile/lndir/bar1`
1169         [ "$output" = bar1 ] && error "unexpected output"
1170         rm -r $tfile             || error "rm $tfile failed"
1171         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1172 }
1173 run_test 26f "rm -r of a directory which has recursive symlink ="
1174
1175 test_27a() {
1176         echo '== stripe sanity =============================================='
1177         test_mkdir -p $DIR/d27 || error "mkdir failed"
1178         $GETSTRIPE $DIR/d27
1179         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1180         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1181         pass
1182         log "== test_27a: write to one stripe file ========================="
1183         cp /etc/hosts $DIR/d27/f0 || error
1184 }
1185 run_test 27a "one stripe file =================================="
1186
1187 test_27b() {
1188         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1189         test_mkdir -p $DIR/d27
1190         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1191         $GETSTRIPE -c $DIR/d27/f01
1192         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1193                 error "two-stripe file doesn't have two stripes"
1194 }
1195 run_test 27b "create two stripe file"
1196
1197 test_27c() {
1198         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1199
1200         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1201 }
1202 run_test 27c "write to two stripe file"
1203
1204 test_27d() {
1205         test_mkdir -p $DIR/d27
1206         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1207         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1208         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1209 }
1210 run_test 27d "create file with default settings ================"
1211
1212 test_27e() {
1213         test_mkdir -p $DIR/d27
1214         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1215         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1216         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1217 }
1218 run_test 27e "setstripe existing file (should return error) ======"
1219
1220 test_27f() {
1221         test_mkdir -p $DIR/d27
1222         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1223         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1224         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1225 }
1226 run_test 27f "setstripe with bad stripe size (should return error)"
1227
1228 test_27g() {
1229         test_mkdir -p $DIR/d27
1230         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1231         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1232                 error "$DIR/d27/fnone has object"
1233 }
1234 run_test 27g "$GETSTRIPE with no objects"
1235
1236 test_27i() {
1237         touch $DIR/d27/fsome || error "touch failed"
1238         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1239 }
1240 run_test 27i "$GETSTRIPE with some objects"
1241
1242 test_27j() {
1243         test_mkdir -p $DIR/d27
1244         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1245 }
1246 run_test 27j "setstripe with bad stripe offset (should return error)"
1247
1248 test_27k() { # bug 2844
1249         test_mkdir -p $DIR/d27
1250         FILE=$DIR/d27/f27k
1251         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1252         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1253         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1254         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1255         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1256         dd if=/dev/zero of=$FILE bs=4k count=1
1257         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1258         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1259 }
1260 run_test 27k "limit i_blksize for broken user apps ============="
1261
1262 test_27l() {
1263         test_mkdir -p $DIR/d27
1264         mcreate $DIR/f27l || error "creating file"
1265         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1266                 error "setstripe should have failed" || true
1267 }
1268 run_test 27l "check setstripe permissions (should return error)"
1269
1270 test_27m() {
1271         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1272                 return
1273         if [ $ORIGFREE -gt $MAXFREE ]; then
1274                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1275                 return
1276         fi
1277         trap simple_cleanup_common EXIT
1278         test_mkdir -p $DIR/$tdir
1279         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1280         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1281                 error "dd should fill OST0"
1282         i=2
1283         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1284                 i=`expr $i + 1`
1285                 [ $i -gt 256 ] && break
1286         done
1287         i=`expr $i + 1`
1288         touch $DIR/$tdir/f27m_$i
1289         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1290                 error "OST0 was full but new created file still use it"
1291         i=`expr $i + 1`
1292         touch $DIR/$tdir/f27m_$i
1293         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1294                 error "OST0 was full but new created file still use it"
1295         simple_cleanup_common
1296 }
1297 run_test 27m "create file while OST0 was full =================="
1298
1299 sleep_maxage() {
1300         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1301         sleep $DELAY
1302 }
1303
1304 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1305 # if the OST isn't full anymore.
1306 reset_enospc() {
1307         local OSTIDX=${1:-""}
1308
1309         local list=$(comma_list $(osts_nodes))
1310         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1311
1312         do_nodes $list lctl set_param fail_loc=0
1313         sync    # initiate all OST_DESTROYs from MDS to OST
1314         sleep_maxage
1315 }
1316
1317 exhaust_precreations() {
1318         local OSTIDX=$1
1319         local FAILLOC=$2
1320         local FAILIDX=${3:-$OSTIDX}
1321
1322         test_mkdir -p $DIR/$tdir
1323         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1324         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1325
1326         local OST=$(ostname_from_index $OSTIDX)
1327         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1328                           sed -e 's/_UUID$//;s/^.*-//')
1329
1330         # on the mdt's osc
1331         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1332         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1333         osc.$mdtosc_proc1.prealloc_last_id)
1334         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1335         osc.$mdtosc_proc1.prealloc_next_id)
1336
1337         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1338         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1339
1340         test_mkdir -p $DIR/$tdir/${OST}
1341         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1342 #define OBD_FAIL_OST_ENOSPC              0x215
1343         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1344         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1345         echo "Creating to objid $last_id on ost $OST..."
1346         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1347         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1348         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1349         sleep_maxage
1350 }
1351
1352 exhaust_all_precreations() {
1353         local i
1354         for (( i=0; i < OSTCOUNT; i++ )) ; do
1355                 exhaust_precreations $i $1 -1
1356         done
1357 }
1358
1359 test_27n() {
1360         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1361         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1362         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1363         remote_ost_nodsh && skip "remote OST with nodsh" && return
1364
1365         reset_enospc
1366         rm -f $DIR/$tdir/$tfile
1367         exhaust_precreations 0 0x80000215
1368         $SETSTRIPE -c -1 $DIR/$tdir
1369         touch $DIR/$tdir/$tfile || error
1370         $GETSTRIPE $DIR/$tdir/$tfile
1371         reset_enospc
1372 }
1373 run_test 27n "create file with some full OSTs =================="
1374
1375 test_27o() {
1376         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1377         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1378         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1379         remote_ost_nodsh && skip "remote OST with nodsh" && return
1380
1381         reset_enospc
1382         rm -f $DIR/$tdir/$tfile
1383         exhaust_all_precreations 0x215
1384
1385         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1386
1387         reset_enospc
1388         rm -rf $DIR/$tdir/*
1389 }
1390 run_test 27o "create file with all full OSTs (should error) ===="
1391
1392 test_27p() {
1393         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1395         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1396         remote_ost_nodsh && skip "remote OST with nodsh" && return
1397
1398         reset_enospc
1399         rm -f $DIR/$tdir/$tfile
1400         test_mkdir -p $DIR/$tdir
1401
1402         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1403         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1404         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1405
1406         exhaust_precreations 0 0x80000215
1407         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1408         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1409         $GETSTRIPE $DIR/$tdir/$tfile
1410
1411         reset_enospc
1412 }
1413 run_test 27p "append to a truncated file with some full OSTs ==="
1414
1415 test_27q() {
1416         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1418         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1419         remote_ost_nodsh && skip "remote OST with nodsh" && return
1420
1421         reset_enospc
1422         rm -f $DIR/$tdir/$tfile
1423
1424         test_mkdir -p $DIR/$tdir
1425         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1426         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1427         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1428
1429         exhaust_all_precreations 0x215
1430
1431         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1432         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1433
1434         reset_enospc
1435 }
1436 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1437
1438 test_27r() {
1439         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1440         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1441         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1442         remote_ost_nodsh && skip "remote OST with nodsh" && return
1443
1444         reset_enospc
1445         rm -f $DIR/$tdir/$tfile
1446         exhaust_precreations 0 0x80000215
1447
1448         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1449
1450         reset_enospc
1451 }
1452 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1453
1454 test_27s() { # bug 10725
1455         test_mkdir -p $DIR/$tdir
1456         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1457         local stripe_count=0
1458         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1459         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1460                 error "stripe width >= 2^32 succeeded" || true
1461
1462 }
1463 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1464
1465 test_27t() { # bug 10864
1466         WDIR=`pwd`
1467         WLFS=`which lfs`
1468         cd $DIR
1469         touch $tfile
1470         $WLFS getstripe $tfile
1471         cd $WDIR
1472 }
1473 run_test 27t "check that utils parse path correctly"
1474
1475 test_27u() { # bug 4900
1476         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1477         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1478
1479 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1480         do_facet $SINGLEMDS lctl set_param fail_loc=0x139
1481         test_mkdir -p $DIR/$tdir
1482         createmany -o $DIR/$tdir/t- 1000
1483         do_facet $SINGLEMDS lctl set_param fail_loc=0
1484
1485         TLOG=$DIR/$tfile.getstripe
1486         $GETSTRIPE $DIR/$tdir > $TLOG
1487         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1488         unlinkmany $DIR/$tdir/t- 1000
1489         [ $OBJS -gt 0 ] && \
1490                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1491 }
1492 run_test 27u "skip object creation on OSC w/o objects =========="
1493
1494 test_27v() { # bug 4900
1495         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1496         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1497         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1498         remote_ost_nodsh && skip "remote OST with nodsh" && return
1499
1500         exhaust_all_precreations 0x215
1501         reset_enospc
1502
1503         test_mkdir -p $DIR/$tdir
1504         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1505
1506         touch $DIR/$tdir/$tfile
1507         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1508         # all except ost1
1509         for (( i=1; i < OSTCOUNT; i++ )); do
1510                 do_facet ost$i lctl set_param fail_loc=0x705
1511         done
1512         local START=`date +%s`
1513         createmany -o $DIR/$tdir/$tfile 32
1514
1515         local FINISH=`date +%s`
1516         local TIMEOUT=`lctl get_param -n timeout`
1517         local PROCESS=$((FINISH - START))
1518         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1519                error "$FINISH - $START >= $TIMEOUT / 2"
1520         sleep $((TIMEOUT / 2 - PROCESS))
1521         reset_enospc
1522 }
1523 run_test 27v "skip object creation on slow OST ================="
1524
1525 test_27w() { # bug 10997
1526         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1527         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1528         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1529                 error "stripe size $size != 65536" || true
1530         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1531                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1532 }
1533 run_test 27w "check $SETSTRIPE -S option"
1534
1535 test_27wa() {
1536         [ "$OSTCOUNT" -lt "2" ] &&
1537                 skip_env "skipping multiple stripe count/offset test" && return
1538
1539         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1540         for i in $(seq 1 $OSTCOUNT); do
1541                 offset=$((i - 1))
1542                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1543                         error "setstripe -c $i -i $offset failed"
1544                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1545                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1546                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1547                 [ $index -ne $offset ] &&
1548                         error "stripe offset $index != $offset" || true
1549         done
1550 }
1551 run_test 27wa "check $SETSTRIPE -c -i options"
1552
1553 test_27x() {
1554         remote_ost_nodsh && skip "remote OST with nodsh" && return
1555         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1557         OFFSET=$(($OSTCOUNT - 1))
1558         OSTIDX=0
1559         local OST=$(ostname_from_index $OSTIDX)
1560
1561         test_mkdir -p $DIR/$tdir
1562         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1563         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1564         sleep_maxage
1565         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1566         for i in `seq 0 $OFFSET`; do
1567                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1568                 error "OST0 was degraded but new created file still use it"
1569         done
1570         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1571 }
1572 run_test 27x "create files while OST0 is degraded"
1573
1574 test_27y() {
1575         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1576         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1577         remote_ost_nodsh && skip "remote OST with nodsh" && return
1578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1579
1580         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1581         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1582             osc.$mdtosc.prealloc_last_id)
1583         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1584             osc.$mdtosc.prealloc_next_id)
1585         local fcount=$((last_id - next_id))
1586         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1587         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1588
1589         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1590                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1591         local OST_DEACTIVE_IDX=-1
1592         local OSC
1593         local OSTIDX
1594         local OST
1595
1596         for OSC in $MDS_OSCS; do
1597                 OST=$(osc_to_ost $OSC)
1598                 OSTIDX=$(index_from_ostuuid $OST)
1599                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1600                         OST_DEACTIVE_IDX=$OSTIDX
1601                 fi
1602                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1603                         echo $OSC "is Deactivated:"
1604                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1605                 fi
1606         done
1607
1608         OSTIDX=$(index_from_ostuuid $OST)
1609         mkdir -p $DIR/$tdir
1610         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1611
1612         for OSC in $MDS_OSCS; do
1613                 OST=$(osc_to_ost $OSC)
1614                 OSTIDX=$(index_from_ostuuid $OST)
1615                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1616                         echo $OST "is degraded:"
1617                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1618                                                 obdfilter.$OST.degraded=1
1619                 fi
1620         done
1621
1622         sleep_maxage
1623         createmany -o $DIR/$tdir/$tfile $fcount
1624
1625         for OSC in $MDS_OSCS; do
1626                 OST=$(osc_to_ost $OSC)
1627                 OSTIDX=$(index_from_ostuuid $OST)
1628                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1629                         echo $OST "is recovered from degraded:"
1630                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1631                                                 obdfilter.$OST.degraded=0
1632                 else
1633                         do_facet $SINGLEMDS lctl --device %$OSC activate
1634                 fi
1635         done
1636 }
1637 run_test 27y "create files while OST0 is degraded and the rest inactive"
1638
1639 check_seq_oid()
1640 {
1641         log "check file $1"
1642
1643         lmm_count=$($GETSTRIPE -c $1)
1644         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1645         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1646
1647         local old_ifs="$IFS"
1648         IFS=$'[:]'
1649         fid=($($LFS path2fid $1))
1650         IFS="$old_ifs"
1651
1652         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1653         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1654
1655         # compare lmm_seq and lu_fid->f_seq
1656         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1657         # compare lmm_object_id and lu_fid->oid
1658         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1659
1660         # check the trusted.fid attribute of the OST objects of the file
1661         local have_obdidx=false
1662         local stripe_nr=0
1663         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1664                 # skip lines up to and including "obdidx"
1665                 [ -z "$obdidx" ] && break
1666                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1667                 $have_obdidx || continue
1668
1669                 local ost=$((obdidx + 1))
1670                 local dev=$(ostdevname $ost)
1671
1672                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1673                         echo "Currently only works with ldiskfs-based OSTs"
1674                         continue
1675                 fi
1676
1677                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1678
1679                 #don't unmount/remount the OSTs if we don't need to do that
1680                 #local dir=$(facet_mntpt ost$ost)
1681                 #stop ost$dev
1682                 #do_facet ost$dev mount -t $FSTYPE $dev $dir $OST_MOUNT_OPTS ||
1683                 #       { error "mounting $dev as $FSTYPE failed"; return 3; }
1684                 #local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid)
1685                 #local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1686
1687                 local obj_file="O/$seq/d$((oid %32))/$oid"
1688                 local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1689                            $dev 2>/dev/null" | grep "parent=")
1690
1691                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1692
1693                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1694
1695                 #do_facet ost$ost umount -d $dir
1696                 #start ost$ost $dev $OST_MOUNT_OPTS
1697
1698                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1699                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1700                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1701                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1702                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1703                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1704
1705                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1706                 [ $ff_pseq = $lmm_seq ] ||
1707                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1708                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1709                 [ $ff_poid = $lmm_oid ] ||
1710                         error "FF parent OID $ff_poid != $lmm_oid"
1711                 [ $ff_pstripe = $stripe_nr ] ||
1712                         error "FF stripe $ff_pstripe != $stripe_nr"
1713
1714                 stripe_nr=$((stripe_nr + 1))
1715         done
1716 }
1717
1718 test_27z() {
1719         remote_ost_nodsh && skip "remote OST with nodsh" && return
1720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1721         test_mkdir -p $DIR/$tdir
1722
1723         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1724                 { error "setstripe -c -1 failed"; return 1; }
1725         # We need to send a write to every object to get parent FID info set.
1726         # This _should_ also work for setattr, but does not currently.
1727         # touch $DIR/$tdir/$tfile-1 ||
1728         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1729                 { error "dd $tfile-1 failed"; return 2; }
1730         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1731                 { error "setstripe -c -1 failed"; return 3; }
1732         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1733                 { error "dd $tfile-2 failed"; return 4; }
1734
1735         # make sure write RPCs have been sent to OSTs
1736         sync; sleep 5; sync
1737
1738         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1739         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1740 }
1741 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1742
1743 test_27A() { # b=19102
1744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1745         local restore_size=$($GETSTRIPE -S $MOUNT)
1746         local restore_count=$($GETSTRIPE -c $MOUNT)
1747         local restore_offset=$($GETSTRIPE -i $MOUNT)
1748         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1749         local default_size=$($GETSTRIPE -S $MOUNT)
1750         local default_count=$($GETSTRIPE -c $MOUNT)
1751         local default_offset=$($GETSTRIPE -i $MOUNT)
1752         local dsize=$((1024 * 1024))
1753         [ $default_size -eq $dsize ] ||
1754                 error "stripe size $default_size != $dsize"
1755         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1756         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1757         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1758 }
1759 run_test 27A "check filesystem-wide default LOV EA values"
1760
1761 # createtest also checks that device nodes are created and
1762 # then visible correctly (#2091)
1763 test_28() { # bug 2091
1764         test_mkdir $DIR/d28
1765         $CREATETEST $DIR/d28/ct || error
1766 }
1767 run_test 28 "create/mknod/mkdir with bad file types ============"
1768
1769 test_29() {
1770         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1771         cancel_lru_locks mdc
1772         test_mkdir $DIR/d29
1773         touch $DIR/d29/foo
1774         log 'first d29'
1775         ls -l $DIR/d29
1776
1777         declare -i LOCKCOUNTORIG=0
1778         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1779                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1780         done
1781         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1782
1783         declare -i LOCKUNUSEDCOUNTORIG=0
1784         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1785                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1786         done
1787
1788         log 'second d29'
1789         ls -l $DIR/d29
1790         log 'done'
1791
1792         declare -i LOCKCOUNTCURRENT=0
1793         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1794                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1795         done
1796
1797         declare -i LOCKUNUSEDCOUNTCURRENT=0
1798         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1799                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1800         done
1801
1802         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1803                 lctl set_param -n ldlm.dump_namespaces ""
1804                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1805                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1806                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1807                 return 2
1808         fi
1809         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1810                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1811                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1812                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1813                 return 3
1814         fi
1815 }
1816 run_test 29 "IT_GETATTR regression  ============================"
1817
1818 test_30a() { # was test_30
1819         cp `which ls` $DIR || cp /bin/ls $DIR
1820         $DIR/ls / || error
1821         rm $DIR/ls
1822 }
1823 run_test 30a "execute binary from Lustre (execve) =============="
1824
1825 test_30b() {
1826         cp `which ls` $DIR || cp /bin/ls $DIR
1827         chmod go+rx $DIR/ls
1828         $RUNAS $DIR/ls / || error
1829         rm $DIR/ls
1830 }
1831 run_test 30b "execute binary from Lustre as non-root ==========="
1832
1833 test_30c() { # b=22376
1834         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1835         cp `which ls` $DIR || cp /bin/ls $DIR
1836         chmod a-rw $DIR/ls
1837         cancel_lru_locks mdc
1838         cancel_lru_locks osc
1839         $RUNAS $DIR/ls / || error
1840         rm -f $DIR/ls
1841 }
1842 run_test 30c "execute binary from Lustre without read perms ===="
1843
1844 test_31a() {
1845         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1846         $CHECKSTAT -a $DIR/f31 || error
1847 }
1848 run_test 31a "open-unlink file =================================="
1849
1850 test_31b() {
1851         touch $DIR/f31 || error
1852         ln $DIR/f31 $DIR/f31b || error
1853         $MULTIOP $DIR/f31b Ouc || error
1854         $CHECKSTAT -t file $DIR/f31 || error
1855 }
1856 run_test 31b "unlink file with multiple links while open ======="
1857
1858 test_31c() {
1859         touch $DIR/f31 || error
1860         ln $DIR/f31 $DIR/f31c || error
1861         multiop_bg_pause $DIR/f31 O_uc || return 1
1862         MULTIPID=$!
1863         $MULTIOP $DIR/f31c Ouc
1864         kill -USR1 $MULTIPID
1865         wait $MULTIPID
1866 }
1867 run_test 31c "open-unlink file with multiple links ============="
1868
1869 test_31d() {
1870         opendirunlink $DIR/d31d $DIR/d31d || error
1871         $CHECKSTAT -a $DIR/d31d || error
1872 }
1873 run_test 31d "remove of open directory ========================="
1874
1875 test_31e() { # bug 2904
1876         check_kernel_version 34 || return 0
1877         openfilleddirunlink $DIR/d31e || error
1878 }
1879 run_test 31e "remove of open non-empty directory ==============="
1880
1881 test_31f() { # bug 4554
1882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1883         set -vx
1884         test_mkdir $DIR/d31f
1885         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1886         cp /etc/hosts $DIR/d31f
1887         ls -l $DIR/d31f
1888         $GETSTRIPE $DIR/d31f/hosts
1889         multiop_bg_pause $DIR/d31f D_c || return 1
1890         MULTIPID=$!
1891
1892         rm -rv $DIR/d31f || error "first of $DIR/d31f"
1893         test_mkdir $DIR/d31f
1894         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
1895         cp /etc/hosts $DIR/d31f
1896         ls -l $DIR/d31f
1897         $GETSTRIPE $DIR/d31f/hosts
1898         multiop_bg_pause $DIR/d31f D_c || return 1
1899         MULTIPID2=$!
1900
1901         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
1902         wait $MULTIPID || error "first opendir $MULTIPID failed"
1903
1904         sleep 6
1905
1906         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
1907         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
1908         set +vx
1909 }
1910 run_test 31f "remove of open directory with open-unlink file ==="
1911
1912 test_31g() {
1913         echo "-- cross directory link --"
1914         test_mkdir $DIR/d31ga
1915         test_mkdir $DIR/d31gb
1916         touch $DIR/d31ga/f
1917         ln $DIR/d31ga/f $DIR/d31gb/g
1918         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
1919         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
1920         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
1921         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
1922 }
1923 run_test 31g "cross directory link==============="
1924
1925 test_31h() {
1926         echo "-- cross directory link --"
1927         test_mkdir $DIR/d31h
1928         test_mkdir $DIR/d31h/dir
1929         touch $DIR/d31h/f
1930         ln $DIR/d31h/f $DIR/d31h/dir/g
1931         $CHECKSTAT -t file $DIR/d31h/f || error "source"
1932         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
1933         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
1934         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
1935 }
1936 run_test 31h "cross directory link under child==============="
1937
1938 test_31i() {
1939         echo "-- cross directory link --"
1940         test_mkdir $DIR/d31i
1941         test_mkdir $DIR/d31i/dir
1942         touch $DIR/d31i/dir/f
1943         ln $DIR/d31i/dir/f $DIR/d31i/g
1944         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
1945         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
1946         $CHECKSTAT -t file $DIR/d31i/g || error "target"
1947         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
1948 }
1949 run_test 31i "cross directory link under parent==============="
1950
1951
1952 test_31j() {
1953         test_mkdir $DIR/d31j
1954         test_mkdir $DIR/d31j/dir1
1955         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
1956         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
1957         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
1958         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
1959         return 0
1960 }
1961 run_test 31j "link for directory==============="
1962
1963
1964 test_31k() {
1965         test_mkdir $DIR/d31k
1966         touch $DIR/d31k/s
1967         touch $DIR/d31k/exist
1968         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
1969         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
1970         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
1971         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
1972         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
1973         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
1974         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
1975         return 0
1976 }
1977 run_test 31k "link to file: the same, non-existing, dir==============="
1978
1979 test_31m() {
1980         test_mkdir $DIR/d31m
1981         touch $DIR/d31m/s
1982         test_mkdir $DIR/d31m2
1983         touch $DIR/d31m2/exist
1984         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
1985         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
1986         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
1987         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
1988         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
1989         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
1990         return 0
1991 }
1992 run_test 31m "link to file: the same, non-existing, dir==============="
1993
1994 cleanup_test32_mount() {
1995         trap 0
1996         $UMOUNT $DIR/$tdir/ext2-mountpoint
1997 }
1998
1999 test_32a() {
2000         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2001         echo "== more mountpoints and symlinks ================="
2002         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2003         trap cleanup_test32_mount EXIT
2004         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2005         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2006         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2007         cleanup_test32_mount
2008 }
2009 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2010
2011 test_32b() {
2012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2013         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2014         trap cleanup_test32_mount EXIT
2015         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2016         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2017         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2018         cleanup_test32_mount
2019 }
2020 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2021
2022 test_32c() {
2023         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2024         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2025         trap cleanup_test32_mount EXIT
2026         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2027         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2028         test_mkdir -p $DIR/$tdir/d2/test_dir
2029         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2030         cleanup_test32_mount
2031 }
2032 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2033
2034 test_32d() {
2035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2036         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2037         trap cleanup_test32_mount EXIT
2038         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2039         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2040         test_mkdir -p $DIR/$tdir/d2/test_dir
2041         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2042         cleanup_test32_mount
2043 }
2044 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2045
2046 test_32e() {
2047         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2048         test_mkdir -p $DIR/d32e/tmp
2049         TMP_DIR=$DIR/d32e/tmp
2050         ln -s $DIR/d32e $TMP_DIR/symlink11
2051         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2052         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2053         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2054 }
2055 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2056
2057 test_32f() {
2058         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2059         test_mkdir -p $DIR/d32f/tmp
2060         TMP_DIR=$DIR/d32f/tmp
2061         ln -s $DIR/d32f $TMP_DIR/symlink11
2062         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2063         ls $DIR/d32f/tmp/symlink11  || error
2064         ls $DIR/d32f/symlink01 || error
2065 }
2066 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2067
2068 test_32g() {
2069         TMP_DIR=$DIR/$tdir/tmp
2070         test_mkdir -p $DIR/$tdir/tmp
2071         test_mkdir $DIR/${tdir}2
2072         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2073         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2074         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2075         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2076         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2077         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2078 }
2079 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2080
2081 test_32h() {
2082         rm -fr $DIR/$tdir $DIR/${tdir}2
2083         TMP_DIR=$DIR/$tdir/tmp
2084         test_mkdir -p $DIR/$tdir/tmp
2085         test_mkdir $DIR/${tdir}2
2086         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2087         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2088         ls $TMP_DIR/symlink12 || error
2089         ls $DIR/$tdir/symlink02  || error
2090 }
2091 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2092
2093 test_32i() {
2094         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2095         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2096         trap cleanup_test32_mount EXIT
2097         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2098         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2099         touch $DIR/$tdir/test_file
2100         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2101         cleanup_test32_mount
2102 }
2103 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2104
2105 test_32j() {
2106         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2107         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2108         trap cleanup_test32_mount EXIT
2109         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2110         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2111         touch $DIR/$tdir/test_file
2112         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2113         cleanup_test32_mount
2114 }
2115 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2116
2117 test_32k() {
2118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2119         rm -fr $DIR/$tdir
2120         trap cleanup_test32_mount EXIT
2121         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2122         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2123         test_mkdir -p $DIR/$tdir/d2
2124         touch $DIR/$tdir/d2/test_file || error
2125         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2126         cleanup_test32_mount
2127 }
2128 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2129
2130 test_32l() {
2131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2132         rm -fr $DIR/$tdir
2133         trap cleanup_test32_mount EXIT
2134         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2135         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2136         test_mkdir -p $DIR/$tdir/d2
2137         touch $DIR/$tdir/d2/test_file
2138         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2139         cleanup_test32_mount
2140 }
2141 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2142
2143 test_32m() {
2144         rm -fr $DIR/d32m
2145         test_mkdir -p $DIR/d32m/tmp
2146         TMP_DIR=$DIR/d32m/tmp
2147         ln -s $DIR $TMP_DIR/symlink11
2148         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2149         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2150         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2151 }
2152 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2153
2154 test_32n() {
2155         rm -fr $DIR/d32n
2156         test_mkdir -p $DIR/d32n/tmp
2157         TMP_DIR=$DIR/d32n/tmp
2158         ln -s $DIR $TMP_DIR/symlink11
2159         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2160         ls -l $DIR/d32n/tmp/symlink11  || error
2161         ls -l $DIR/d32n/symlink01 || error
2162 }
2163 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2164
2165 test_32o() {
2166         rm -fr $DIR/d32o $DIR/$tfile
2167         touch $DIR/$tfile
2168         test_mkdir -p $DIR/d32o/tmp
2169         TMP_DIR=$DIR/d32o/tmp
2170         ln -s $DIR/$tfile $TMP_DIR/symlink12
2171         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2172         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2173         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2174         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2175         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2176 }
2177 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2178
2179 test_32p() {
2180     log 32p_1
2181         rm -fr $DIR/d32p
2182     log 32p_2
2183         rm -f $DIR/$tfile
2184     log 32p_3
2185         touch $DIR/$tfile
2186     log 32p_4
2187         test_mkdir -p $DIR/d32p/tmp
2188     log 32p_5
2189         TMP_DIR=$DIR/d32p/tmp
2190     log 32p_6
2191         ln -s $DIR/$tfile $TMP_DIR/symlink12
2192     log 32p_7
2193         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2194     log 32p_8
2195         cat $DIR/d32p/tmp/symlink12 || error
2196     log 32p_9
2197         cat $DIR/d32p/symlink02 || error
2198     log 32p_10
2199 }
2200 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2201
2202 cleanup_testdir_mount() {
2203         trap 0
2204         $UMOUNT $DIR/$tdir
2205 }
2206
2207 test_32q() {
2208         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2209         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2210         trap cleanup_testdir_mount EXIT
2211         test_mkdir -p $DIR/$tdir
2212         touch $DIR/$tdir/under_the_mount
2213         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2214         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2215         cleanup_testdir_mount
2216 }
2217 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2218
2219 test_32r() {
2220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2221         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2222         trap cleanup_testdir_mount EXIT
2223         test_mkdir -p $DIR/$tdir
2224         touch $DIR/$tdir/under_the_mount
2225         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2226         ls $DIR/$tdir | grep -q under_the_mount && error || true
2227         cleanup_testdir_mount
2228 }
2229 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2230
2231 test_33aa() {
2232         rm -f $DIR/$tfile
2233         touch $DIR/$tfile
2234         chmod 444 $DIR/$tfile
2235         chown $RUNAS_ID $DIR/$tfile
2236         log 33_1
2237         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2238         log 33_2
2239 }
2240 run_test 33aa "write file with mode 444 (should return error) ===="
2241
2242 test_33a() {
2243         rm -fr $DIR/d33
2244         test_mkdir -p $DIR/d33
2245         chown $RUNAS_ID $DIR/d33
2246         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2247         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2248                 error "open RDWR" || true
2249 }
2250 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2251
2252 test_33b() {
2253         rm -fr $DIR/d33
2254         test_mkdir -p $DIR/d33
2255         chown $RUNAS_ID $DIR/d33
2256         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2257 }
2258 run_test 33b "test open file with malformed flags (No panic and return error)"
2259
2260 test_33c() {
2261         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2262         local ostnum
2263         local ostname
2264         local write_bytes
2265         local all_zeros
2266
2267         remote_ost_nodsh && skip "remote OST with nodsh" && return
2268         all_zeros=:
2269         rm -fr $DIR/d33
2270         test_mkdir -p $DIR/d33
2271         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2272
2273         sync
2274         for ostnum in $(seq $OSTCOUNT); do
2275                 # test-framework's OST numbering is one-based, while Lustre's
2276                 # is zero-based
2277                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2278                 # Parsing llobdstat's output sucks; we could grep the /proc
2279                 # path, but that's likely to not be as portable as using the
2280                 # llobdstat utility.  So we parse lctl output instead.
2281                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2282                         obdfilter/$ostname/stats |
2283                         awk '/^write_bytes/ {print $7}' )
2284                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2285                 if (( ${write_bytes:-0} > 0 ))
2286                 then
2287                         all_zeros=false
2288                         break;
2289                 fi
2290         done
2291
2292         $all_zeros || return 0
2293
2294         # Write four bytes
2295         echo foo > $DIR/d33/bar
2296         # Really write them
2297         sync
2298
2299         # Total up write_bytes after writing.  We'd better find non-zeros.
2300         for ostnum in $(seq $OSTCOUNT); do
2301                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2302                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2303                         obdfilter/$ostname/stats |
2304                         awk '/^write_bytes/ {print $7}' )
2305                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2306                 if (( ${write_bytes:-0} > 0 ))
2307                 then
2308                         all_zeros=false
2309                         break;
2310                 fi
2311         done
2312
2313         if $all_zeros
2314         then
2315                 for ostnum in $(seq $OSTCOUNT); do
2316                         ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2317                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2318                         do_facet ost$ostnum lctl get_param -n \
2319                                 obdfilter/$ostname/stats
2320                 done
2321                 error "OST not keeping write_bytes stats (b22312)"
2322         fi
2323 }
2324 run_test 33c "test llobdstat and write_bytes"
2325
2326 test_33d() {
2327         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2328         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2329         local MDTIDX=1
2330         local remote_dir=$DIR/$tdir/remote_dir
2331
2332         mkdir -p $DIR/$tdir
2333         $LFS mkdir -i $MDTIDX $remote_dir ||
2334                 error "create remote directory failed"
2335
2336         touch $remote_dir/$tfile
2337         chmod 444 $remote_dir/$tfile
2338         chown $RUNAS_ID $remote_dir/$tfile
2339
2340         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2341
2342         chown $RUNAS_ID $remote_dir
2343         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2344                                         error "create" || true
2345         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2346                                     error "open RDWR" || true
2347         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2348                                     error "create" || true
2349 }
2350 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2351
2352 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2353 test_34a() {
2354         rm -f $DIR/f34
2355         $MCREATE $DIR/f34 || error
2356         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2357         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2358         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2359         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2360 }
2361 run_test 34a "truncate file that has not been opened ==========="
2362
2363 test_34b() {
2364         [ ! -f $DIR/f34 ] && test_34a
2365         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2366         $OPENFILE -f O_RDONLY $DIR/f34
2367         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2368         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2369 }
2370 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2371
2372 test_34c() {
2373         [ ! -f $DIR/f34 ] && test_34a
2374         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2375         $OPENFILE -f O_RDWR $DIR/f34
2376         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2377         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2378 }
2379 run_test 34c "O_RDWR opening file-with-size works =============="
2380
2381 test_34d() {
2382         [ ! -f $DIR/f34 ] && test_34a
2383         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2384         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2385         rm $DIR/f34
2386 }
2387 run_test 34d "write to sparse file ============================="
2388
2389 test_34e() {
2390         rm -f $DIR/f34e
2391         $MCREATE $DIR/f34e || error
2392         $TRUNCATE $DIR/f34e 1000 || error
2393         $CHECKSTAT -s 1000 $DIR/f34e || error
2394         $OPENFILE -f O_RDWR $DIR/f34e
2395         $CHECKSTAT -s 1000 $DIR/f34e || error
2396 }
2397 run_test 34e "create objects, some with size and some without =="
2398
2399 test_34f() { # bug 6242, 6243
2400         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2401         SIZE34F=48000
2402         rm -f $DIR/f34f
2403         $MCREATE $DIR/f34f || error
2404         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2405         dd if=$DIR/f34f of=$TMP/f34f
2406         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2407         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2408         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2409         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2410         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2411 }
2412 run_test 34f "read from a file with no objects until EOF ======="
2413
2414 test_34g() {
2415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2416         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2417         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2418         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2419         cancel_lru_locks osc
2420         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2421                 error "wrong size after lock cancel"
2422
2423         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2424         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2425                 error "expanding truncate failed"
2426         cancel_lru_locks osc
2427         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2428                 error "wrong expanded size after lock cancel"
2429 }
2430 run_test 34g "truncate long file ==============================="
2431
2432 test_34h() {
2433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2434         local gid=10
2435         local sz=1000
2436
2437         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2438         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2439         MULTIPID=$!
2440         sleep 2
2441
2442         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2443                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2444                 kill -9 $MULTIPID
2445         fi
2446         wait $MULTIPID
2447         local nsz=`stat -c %s $DIR/$tfile`
2448         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2449 }
2450 run_test 34h "ftruncate file under grouplock should not block"
2451
2452 test_35a() {
2453         cp /bin/sh $DIR/f35a
2454         chmod 444 $DIR/f35a
2455         chown $RUNAS_ID $DIR/f35a
2456         $RUNAS $DIR/f35a && error || true
2457         rm $DIR/f35a
2458 }
2459 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2460
2461 test_36a() {
2462         rm -f $DIR/f36
2463         utime $DIR/f36 || error
2464 }
2465 run_test 36a "MDS utime check (mknod, utime) ==================="
2466
2467 test_36b() {
2468         echo "" > $DIR/f36
2469         utime $DIR/f36 || error
2470 }
2471 run_test 36b "OST utime check (open, utime) ===================="
2472
2473 test_36c() {
2474         rm -f $DIR/d36/f36
2475         test_mkdir $DIR/d36
2476         chown $RUNAS_ID $DIR/d36
2477         $RUNAS utime $DIR/d36/f36 || error
2478 }
2479 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2480
2481 test_36d() {
2482         [ ! -d $DIR/d36 ] && test_36c
2483         echo "" > $DIR/d36/f36
2484         $RUNAS utime $DIR/d36/f36 || error
2485 }
2486 run_test 36d "non-root OST utime check (open, utime) ==========="
2487
2488 test_36e() {
2489         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2490         test_mkdir -p $DIR/$tdir
2491         touch $DIR/$tdir/$tfile
2492         $RUNAS utime $DIR/$tdir/$tfile && \
2493                 error "utime worked, expected failure" || true
2494 }
2495 run_test 36e "utime on non-owned file (should return error) ===="
2496
2497 subr_36fh() {
2498         local fl="$1"
2499         local LANG_SAVE=$LANG
2500         local LC_LANG_SAVE=$LC_LANG
2501         export LANG=C LC_LANG=C # for date language
2502
2503         DATESTR="Dec 20  2000"
2504         test_mkdir -p $DIR/$tdir
2505         lctl set_param fail_loc=$fl
2506         date; date +%s
2507         cp /etc/hosts $DIR/$tdir/$tfile
2508         sync & # write RPC generated with "current" inode timestamp, but delayed
2509         sleep 1
2510         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2511         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2512         cancel_lru_locks osc
2513         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2514         date; date +%s
2515         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2516                 echo "BEFORE: $LS_BEFORE" && \
2517                 echo "AFTER : $LS_AFTER" && \
2518                 echo "WANT  : $DATESTR" && \
2519                 error "$DIR/$tdir/$tfile timestamps changed" || true
2520
2521         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2522 }
2523
2524 test_36f() {
2525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2526         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2527         subr_36fh "0x80000214"
2528 }
2529 run_test 36f "utime on file racing with OST BRW write =========="
2530
2531 test_36g() {
2532         remote_ost_nodsh && skip "remote OST with nodsh" && return
2533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2534         local fmd_max_age
2535         local fmd_before
2536         local fmd_after
2537
2538         test_mkdir -p $DIR/$tdir
2539         fmd_max_age=$(do_facet ost1 \
2540                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2541                 head -n 1")
2542
2543         fmd_before=$(do_facet ost1 \
2544                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2545         touch $DIR/$tdir/$tfile
2546         sleep $((fmd_max_age + 12))
2547         fmd_after=$(do_facet ost1 \
2548                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2549
2550         echo "fmd_before: $fmd_before"
2551         echo "fmd_after: $fmd_after"
2552         [ "$fmd_after" -gt "$fmd_before" ] && \
2553                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2554                 error "fmd didn't expire after ping" || true
2555 }
2556 run_test 36g "filter mod data cache expiry ====================="
2557
2558 test_36h() {
2559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2560         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2561         subr_36fh "0x80000227"
2562 }
2563 run_test 36h "utime on file racing with OST BRW write =========="
2564
2565 # test_37 - duplicate with tests 32q 32r
2566
2567 test_38() {
2568         local file=$DIR/$tfile
2569         touch $file
2570         openfile -f O_DIRECTORY $file
2571         local RC=$?
2572         local ENOTDIR=20
2573         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2574         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2575 }
2576 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2577
2578 test_39() {
2579         touch $DIR/$tfile
2580         touch $DIR/${tfile}2
2581 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2582 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2583 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2584         sleep 2
2585         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2586         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2587                 echo "mtime"
2588                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2589                 echo "atime"
2590                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2591                 echo "ctime"
2592                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2593                 error "O_TRUNC didn't change timestamps"
2594         fi
2595 }
2596 run_test 39 "mtime changed on create ==========================="
2597
2598 test_39b() {
2599         test_mkdir -p $DIR/$tdir
2600         cp -p /etc/passwd $DIR/$tdir/fopen
2601         cp -p /etc/passwd $DIR/$tdir/flink
2602         cp -p /etc/passwd $DIR/$tdir/funlink
2603         cp -p /etc/passwd $DIR/$tdir/frename
2604         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2605
2606         sleep 1
2607         echo "aaaaaa" >> $DIR/$tdir/fopen
2608         echo "aaaaaa" >> $DIR/$tdir/flink
2609         echo "aaaaaa" >> $DIR/$tdir/funlink
2610         echo "aaaaaa" >> $DIR/$tdir/frename
2611
2612         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2613         local link_new=`stat -c %Y $DIR/$tdir/flink`
2614         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2615         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2616
2617         cat $DIR/$tdir/fopen > /dev/null
2618         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2619         rm -f $DIR/$tdir/funlink2
2620         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2621
2622         for (( i=0; i < 2; i++ )) ; do
2623                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2624                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2625                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2626                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2627
2628                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2629                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2630                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2631                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2632
2633                 cancel_lru_locks osc
2634                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2635         done
2636 }
2637 run_test 39b "mtime change on open, link, unlink, rename  ======"
2638
2639 # this should be set to past
2640 TEST_39_MTIME=`date -d "1 year ago" +%s`
2641
2642 # bug 11063
2643 test_39c() {
2644         touch $DIR1/$tfile
2645         sleep 2
2646         local mtime0=`stat -c %Y $DIR1/$tfile`
2647
2648         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2649         local mtime1=`stat -c %Y $DIR1/$tfile`
2650         [ "$mtime1" = $TEST_39_MTIME ] || \
2651                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2652
2653         local d1=`date +%s`
2654         echo hello >> $DIR1/$tfile
2655         local d2=`date +%s`
2656         local mtime2=`stat -c %Y $DIR1/$tfile`
2657         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2658                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2659
2660         mv $DIR1/$tfile $DIR1/$tfile-1
2661
2662         for (( i=0; i < 2; i++ )) ; do
2663                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2664                 [ "$mtime2" = "$mtime3" ] || \
2665                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2666
2667                 cancel_lru_locks osc
2668                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2669         done
2670 }
2671 run_test 39c "mtime change on rename ==========================="
2672
2673 # bug 21114
2674 test_39d() {
2675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2676         touch $DIR1/$tfile
2677
2678         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2679
2680         for (( i=0; i < 2; i++ )) ; do
2681                 local mtime=`stat -c %Y $DIR1/$tfile`
2682                 [ $mtime = $TEST_39_MTIME ] || \
2683                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2684
2685                 cancel_lru_locks osc
2686                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2687         done
2688 }
2689 run_test 39d "create, utime, stat =============================="
2690
2691 # bug 21114
2692 test_39e() {
2693         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2694         touch $DIR1/$tfile
2695         local mtime1=`stat -c %Y $DIR1/$tfile`
2696
2697         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2698
2699         for (( i=0; i < 2; i++ )) ; do
2700                 local mtime2=`stat -c %Y $DIR1/$tfile`
2701                 [ $mtime2 = $TEST_39_MTIME ] || \
2702                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2703
2704                 cancel_lru_locks osc
2705                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2706         done
2707 }
2708 run_test 39e "create, stat, utime, stat ========================"
2709
2710 # bug 21114
2711 test_39f() {
2712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2713         touch $DIR1/$tfile
2714         mtime1=`stat -c %Y $DIR1/$tfile`
2715
2716         sleep 2
2717         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2718
2719         for (( i=0; i < 2; i++ )) ; do
2720                 local mtime2=`stat -c %Y $DIR1/$tfile`
2721                 [ $mtime2 = $TEST_39_MTIME ] || \
2722                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2723
2724                 cancel_lru_locks osc
2725                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2726         done
2727 }
2728 run_test 39f "create, stat, sleep, utime, stat ================="
2729
2730 # bug 11063
2731 test_39g() {
2732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2733         echo hello >> $DIR1/$tfile
2734         local mtime1=`stat -c %Y $DIR1/$tfile`
2735
2736         sleep 2
2737         chmod o+r $DIR1/$tfile
2738
2739         for (( i=0; i < 2; i++ )) ; do
2740                 local mtime2=`stat -c %Y $DIR1/$tfile`
2741                 [ "$mtime1" = "$mtime2" ] || \
2742                         error "lost mtime: $mtime2, should be $mtime1"
2743
2744                 cancel_lru_locks osc
2745                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2746         done
2747 }
2748 run_test 39g "write, chmod, stat ==============================="
2749
2750 # bug 11063
2751 test_39h() {
2752         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2753         touch $DIR1/$tfile
2754         sleep 1
2755
2756         local d1=`date`
2757         echo hello >> $DIR1/$tfile
2758         local mtime1=`stat -c %Y $DIR1/$tfile`
2759
2760         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2761         local d2=`date`
2762         if [ "$d1" != "$d2" ]; then
2763                 echo "write and touch not within one second"
2764         else
2765                 for (( i=0; i < 2; i++ )) ; do
2766                         local mtime2=`stat -c %Y $DIR1/$tfile`
2767                         [ "$mtime2" = $TEST_39_MTIME ] || \
2768                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2769
2770                         cancel_lru_locks osc
2771                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2772                 done
2773         fi
2774 }
2775 run_test 39h "write, utime within one second, stat ============="
2776
2777 test_39i() {
2778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2779         touch $DIR1/$tfile
2780         sleep 1
2781
2782         echo hello >> $DIR1/$tfile
2783         local mtime1=`stat -c %Y $DIR1/$tfile`
2784
2785         mv $DIR1/$tfile $DIR1/$tfile-1
2786
2787         for (( i=0; i < 2; i++ )) ; do
2788                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2789
2790                 [ "$mtime1" = "$mtime2" ] || \
2791                         error "lost mtime: $mtime2, should be $mtime1"
2792
2793                 cancel_lru_locks osc
2794                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2795         done
2796 }
2797 run_test 39i "write, rename, stat =============================="
2798
2799 test_39j() {
2800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2801         start_full_debug_logging
2802         touch $DIR1/$tfile
2803         sleep 1
2804
2805         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2806         lctl set_param fail_loc=0x80000412
2807         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2808                 error "multiop failed"
2809         local multipid=$!
2810         local mtime1=`stat -c %Y $DIR1/$tfile`
2811
2812         mv $DIR1/$tfile $DIR1/$tfile-1
2813
2814         kill -USR1 $multipid
2815         wait $multipid || error "multiop close failed"
2816
2817         for (( i=0; i < 2; i++ )) ; do
2818                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2819                 [ "$mtime1" = "$mtime2" ] ||
2820                         error "mtime is lost on close: $mtime2, " \
2821                               "should be $mtime1"
2822
2823                 cancel_lru_locks osc
2824                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2825         done
2826         lctl set_param fail_loc=0
2827         stop_full_debug_logging
2828 }
2829 run_test 39j "write, rename, close, stat ======================="
2830
2831 test_39k() {
2832         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2833         touch $DIR1/$tfile
2834         sleep 1
2835
2836         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2837         local multipid=$!
2838         local mtime1=`stat -c %Y $DIR1/$tfile`
2839
2840         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
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`
2847
2848                 [ "$mtime2" = $TEST_39_MTIME ] || \
2849                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2850
2851                 cancel_lru_locks osc
2852                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2853         done
2854 }
2855 run_test 39k "write, utime, close, stat ========================"
2856
2857 # this should be set to future
2858 TEST_39_ATIME=`date -d "1 year" +%s`
2859
2860 test_39l() {
2861         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2862         remote_mds_nodsh && skip "remote MDS with nodsh" && return
2863         local atime_diff=$(do_facet $SINGLEMDS \
2864                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
2865         rm -rf $DIR/$tdir
2866         mkdir -p $DIR/$tdir
2867
2868         # test setting directory atime to future
2869         touch -a -d @$TEST_39_ATIME $DIR/$tdir
2870         local atime=$(stat -c %X $DIR/$tdir)
2871         [ "$atime" = $TEST_39_ATIME ] || \
2872                 error "atime is not set to future: $atime, $TEST_39_ATIME"
2873
2874         # test setting directory atime from future to now
2875         local d1=$(date +%s)
2876         ls $DIR/$tdir
2877         local d2=$(date +%s)
2878
2879         cancel_lru_locks mdc
2880         atime=$(stat -c %X $DIR/$tdir)
2881         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2882                 error "atime is not updated from future: $atime, $d1<atime<$d2"
2883
2884         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
2885         sleep 3
2886
2887         # test setting directory atime when now > dir atime + atime_diff
2888         d1=$(date +%s)
2889         ls $DIR/$tdir
2890         d2=$(date +%s)
2891         cancel_lru_locks mdc
2892         atime=$(stat -c %X $DIR/$tdir)
2893         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2894                 error "atime is not updated  : $atime, should be $d2"
2895
2896         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
2897         sleep 3
2898
2899         # test not setting directory atime when now < dir atime + atime_diff
2900         ls $DIR/$tdir
2901         cancel_lru_locks mdc
2902         atime=$(stat -c %X $DIR/$tdir)
2903         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
2904                 error "atime is updated to $atime, should remain $d1<atime<$d2"
2905
2906         do_facet $SINGLEMDS \
2907                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
2908 }
2909 run_test 39l "directory atime update ==========================="
2910
2911 test_39m() {
2912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2913         touch $DIR1/$tfile
2914         sleep 2
2915         local far_past_mtime=$(date -d "May 29 1953" +%s)
2916         local far_past_atime=$(date -d "Dec 17 1903" +%s)
2917
2918         touch -m -d @$far_past_mtime $DIR1/$tfile
2919         touch -a -d @$far_past_atime $DIR1/$tfile
2920
2921         for (( i=0; i < 2; i++ )) ; do
2922                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
2923                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
2924                         error "atime or mtime set incorrectly"
2925
2926                 cancel_lru_locks osc
2927                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2928         done
2929 }
2930 run_test 39m "test atime and mtime before 1970"
2931
2932 test_40() {
2933         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
2934         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
2935         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
2936 }
2937 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
2938
2939 test_41() {
2940         # bug 1553
2941         small_write $DIR/f41 18
2942 }
2943 run_test 41 "test small file write + fstat ====================="
2944
2945 count_ost_writes() {
2946         lctl get_param -n osc.*.stats |
2947             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
2948 }
2949
2950 # decent default
2951 WRITEBACK_SAVE=500
2952 DIRTY_RATIO_SAVE=40
2953 MAX_DIRTY_RATIO=50
2954 BG_DIRTY_RATIO_SAVE=10
2955 MAX_BG_DIRTY_RATIO=25
2956
2957 start_writeback() {
2958         trap 0
2959         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
2960         # dirty_ratio, dirty_background_ratio
2961         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2962                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
2963                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
2964                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
2965         else
2966                 # if file not here, we are a 2.4 kernel
2967                 kill -CONT `pidof kupdated`
2968         fi
2969 }
2970
2971 stop_writeback() {
2972         # setup the trap first, so someone cannot exit the test at the
2973         # exact wrong time and mess up a machine
2974         trap start_writeback EXIT
2975         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
2976         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
2977                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
2978                 sysctl -w vm.dirty_writeback_centisecs=0
2979                 sysctl -w vm.dirty_writeback_centisecs=0
2980                 # save and increase /proc/sys/vm/dirty_ratio
2981                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
2982                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
2983                 # save and increase /proc/sys/vm/dirty_background_ratio
2984                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
2985                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
2986         else
2987                 # if file not here, we are a 2.4 kernel
2988                 kill -STOP `pidof kupdated`
2989         fi
2990 }
2991
2992 # ensure that all stripes have some grant before we test client-side cache
2993 setup_test42() {
2994         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
2995                 dd if=/dev/zero of=$i bs=4k count=1
2996                 rm $i
2997         done
2998 }
2999
3000 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3001 # file truncation, and file removal.
3002 test_42a() {
3003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3004         setup_test42
3005         cancel_lru_locks osc
3006         stop_writeback
3007         sync; sleep 1; sync # just to be safe
3008         BEFOREWRITES=`count_ost_writes`
3009         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3010         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3011         AFTERWRITES=`count_ost_writes`
3012         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3013                 error "$BEFOREWRITES < $AFTERWRITES"
3014         start_writeback
3015 }
3016 run_test 42a "ensure that we don't flush on close =============="
3017
3018 test_42b() {
3019         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3020         setup_test42
3021         cancel_lru_locks osc
3022         stop_writeback
3023         sync
3024         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3025         BEFOREWRITES=`count_ost_writes`
3026         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3027         AFTERWRITES=`count_ost_writes`
3028         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3029                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3030         fi
3031         BEFOREWRITES=`count_ost_writes`
3032         sync || error "sync: $?"
3033         AFTERWRITES=`count_ost_writes`
3034         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3035                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3036         fi
3037         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3038         start_writeback
3039         return 0
3040 }
3041 run_test 42b "test destroy of file with cached dirty data ======"
3042
3043 # if these tests just want to test the effect of truncation,
3044 # they have to be very careful.  consider:
3045 # - the first open gets a {0,EOF}PR lock
3046 # - the first write conflicts and gets a {0, count-1}PW
3047 # - the rest of the writes are under {count,EOF}PW
3048 # - the open for truncate tries to match a {0,EOF}PR
3049 #   for the filesize and cancels the PWs.
3050 # any number of fixes (don't get {0,EOF} on open, match
3051 # composite locks, do smarter file size management) fix
3052 # this, but for now we want these tests to verify that
3053 # the cancellation with truncate intent works, so we
3054 # start the file with a full-file pw lock to match against
3055 # until the truncate.
3056 trunc_test() {
3057         test=$1
3058         file=$DIR/$test
3059         offset=$2
3060         cancel_lru_locks osc
3061         stop_writeback
3062         # prime the file with 0,EOF PW to match
3063         touch $file
3064         $TRUNCATE $file 0
3065         sync; sync
3066         # now the real test..
3067         dd if=/dev/zero of=$file bs=1024 count=100
3068         BEFOREWRITES=`count_ost_writes`
3069         $TRUNCATE $file $offset
3070         cancel_lru_locks osc
3071         AFTERWRITES=`count_ost_writes`
3072         start_writeback
3073 }
3074
3075 test_42c() {
3076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3077         trunc_test 42c 1024
3078         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3079             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3080         rm $file
3081 }
3082 run_test 42c "test partial truncate of file with cached dirty data"
3083
3084 test_42d() {
3085         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3086         trunc_test 42d 0
3087         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3088             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3089         rm $file
3090 }
3091 run_test 42d "test complete truncate of file with cached dirty data"
3092
3093 test_42e() { # bug22074
3094         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3095         local TDIR=$DIR/${tdir}e
3096         local pagesz=$(page_size)
3097         local pages=16 # hardcoded 16 pages, don't change it.
3098         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3099         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3100         local max_dirty_mb
3101         local warmup_files
3102
3103         test_mkdir -p $DIR/${tdir}e
3104         $SETSTRIPE -c 1 $TDIR
3105         createmany -o $TDIR/f $files
3106
3107         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3108
3109         # we assume that with $OSTCOUNT files, at least one of them will
3110         # be allocated on OST0.
3111         warmup_files=$((OSTCOUNT * max_dirty_mb))
3112         createmany -o $TDIR/w $warmup_files
3113
3114         # write a large amount of data into one file and sync, to get good
3115         # avail_grant number from OST.
3116         for ((i=0; i<$warmup_files; i++)); do
3117                 idx=$($GETSTRIPE -i $TDIR/w$i)
3118                 [ $idx -ne 0 ] && continue
3119                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3120                 break
3121         done
3122         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3123         sync
3124         $LCTL get_param $proc_osc0/cur_dirty_bytes
3125         $LCTL get_param $proc_osc0/cur_grant_bytes
3126
3127         # create as much dirty pages as we can while not to trigger the actual
3128         # RPCs directly. but depends on the env, VFS may trigger flush during this
3129         # period, hopefully we are good.
3130         for ((i=0; i<$warmup_files; i++)); do
3131                 idx=$($GETSTRIPE -i $TDIR/w$i)
3132                 [ $idx -ne 0 ] && continue
3133                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3134         done
3135         $LCTL get_param $proc_osc0/cur_dirty_bytes
3136         $LCTL get_param $proc_osc0/cur_grant_bytes
3137
3138         # perform the real test
3139         $LCTL set_param $proc_osc0/rpc_stats 0
3140         for ((;i<$files; i++)); do
3141                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3142                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3143         done
3144         sync
3145         $LCTL get_param $proc_osc0/rpc_stats
3146
3147         local percent=0
3148         local have_ppr=false
3149         $LCTL get_param $proc_osc0/rpc_stats |
3150                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3151                         # skip lines until we are at the RPC histogram data
3152                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3153                         $have_ppr || continue
3154
3155                         # we only want the percent stat for < 16 pages
3156                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3157
3158                         percent=$((percent + WPCT))
3159                         if [ $percent -gt 15 ]; then
3160                                 error "less than 16-pages write RPCs" \
3161                                       "$percent% > 15%"
3162                                 break
3163                         fi
3164                 done
3165         rm -rf $TDIR
3166 }
3167 run_test 42e "verify sub-RPC writes are not done synchronously"
3168
3169 test_43() {
3170         test_mkdir -p $DIR/$tdir
3171         cp -p /bin/ls $DIR/$tdir/$tfile
3172         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3173         pid=$!
3174         # give multiop a chance to open
3175         sleep 1
3176
3177         $DIR/$tdir/$tfile && error || true
3178         kill -USR1 $pid
3179 }
3180 run_test 43 "execution of file opened for write should return -ETXTBSY"
3181
3182 test_43a() {
3183         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3184         test_mkdir -p $DIR/$tdir
3185         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3186                         cp -p multiop $DIR/$tdir/multiop
3187         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3188                         return 1
3189         MULTIOP_PID=$!
3190         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3191         kill -USR1 $MULTIOP_PID || return 2
3192         wait $MULTIOP_PID || return 3
3193         rm $TMP/test43.junk
3194 }
3195 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3196
3197 test_43b() {
3198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3199         test_mkdir -p $DIR/$tdir
3200         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3201                         cp -p multiop $DIR/$tdir/multiop
3202         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3203                         return 1
3204         MULTIOP_PID=$!
3205         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3206         kill -USR1 $MULTIOP_PID || return 2
3207         wait $MULTIOP_PID || return 3
3208         rm $TMP/test43.junk
3209 }
3210 run_test 43b "truncate of file being executed should return -ETXTBSY"
3211
3212 test_43c() {
3213         local testdir="$DIR/$tdir"
3214         test_mkdir -p $DIR/$tdir
3215         cp $SHELL $testdir/
3216         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3217                 ( cd $testdir && md5sum -c)
3218 }
3219 run_test 43c "md5sum of copy into lustre========================"
3220
3221 test_44() {
3222         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3223         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3224         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3225 }
3226 run_test 44 "zero length read from a sparse stripe ============="
3227
3228 test_44a() {
3229     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3230                          awk '{print $2}'`
3231     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3232     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3233     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3234                       awk '{print $2}'`
3235     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3236         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3237     fi
3238
3239     OFFSETS="0 $((stride/2)) $((stride-1))"
3240     for offset in $OFFSETS ; do
3241       for i in `seq 0 $((nstripe-1))`; do
3242         local GLOBALOFFSETS=""
3243         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3244         local myfn=$DIR/d44a-$size
3245         echo "--------writing $myfn at $size"
3246         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3247         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3248         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3249                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3250
3251         for j in `seq 0 $((nstripe-1))`; do
3252             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3253             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3254             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3255         done
3256         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3257                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3258         rm -f $myfn
3259       done
3260     done
3261 }
3262 run_test 44a "test sparse pwrite ==============================="
3263
3264 dirty_osc_total() {
3265         tot=0
3266         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3267                 tot=$(($tot + $d))
3268         done
3269         echo $tot
3270 }
3271 do_dirty_record() {
3272         before=`dirty_osc_total`
3273         echo executing "\"$*\""
3274         eval $*
3275         after=`dirty_osc_total`
3276         echo before $before, after $after
3277 }
3278 test_45() {
3279         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3280         f="$DIR/f45"
3281         # Obtain grants from OST if it supports it
3282         echo blah > ${f}_grant
3283         stop_writeback
3284         sync
3285         do_dirty_record "echo blah > $f"
3286         [ $before -eq $after ] && error "write wasn't cached"
3287         do_dirty_record "> $f"
3288         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3289         do_dirty_record "echo blah > $f"
3290         [ $before -eq $after ] && error "write wasn't cached"
3291         do_dirty_record "sync"
3292         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3293         do_dirty_record "echo blah > $f"
3294         [ $before -eq $after ] && error "write wasn't cached"
3295         do_dirty_record "cancel_lru_locks osc"
3296         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3297         start_writeback
3298 }
3299 run_test 45 "osc io page accounting ============================"
3300
3301 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3302 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3303 # objects offset and an assert hit when an rpc was built with 1023's mapped
3304 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3305 test_46() {
3306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3307         f="$DIR/f46"
3308         stop_writeback
3309         sync
3310         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3311         sync
3312         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3313         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3314         sync
3315         start_writeback
3316 }
3317 run_test 46 "dirtying a previously written page ================"
3318
3319 # test_47 is removed "Device nodes check" is moved to test_28
3320
3321 test_48a() { # bug 2399
3322         check_kernel_version 34 || return 0
3323         test_mkdir -p $DIR/$tdir
3324         cd $DIR/$tdir
3325         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3326         test_mkdir $DIR/$tdir || error "recreate directory failed"
3327         touch foo || error "'touch foo' failed after recreating cwd"
3328         test_mkdir $DIR/$tdir/bar ||
3329                      error "'mkdir foo' failed after recreating cwd"
3330         if check_kernel_version 44; then
3331                 touch .foo || error "'touch .foo' failed after recreating cwd"
3332                 test_mkdir $DIR/$tdir/.bar ||
3333                               error "'mkdir .foo' failed after recreating cwd"
3334         fi
3335         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3336         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3337         cd . || error "'cd .' failed after recreating cwd"
3338         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3339         rmdir . && error "'rmdir .' worked after recreating cwd"
3340         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3341         cd .. || error "'cd ..' failed after recreating cwd"
3342 }
3343 run_test 48a "Access renamed working dir (should return errors)="
3344
3345 test_48b() { # bug 2399
3346         check_kernel_version 34 || return 0
3347         rm -rf $DIR/$tdir
3348         test_mkdir -p $DIR/$tdir
3349         cd $DIR/$tdir
3350         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3351         touch foo && error "'touch foo' worked after removing cwd"
3352         test_mkdir $DIR/$tdir/foo &&
3353                      error "'mkdir foo' worked after removing cwd"
3354         if check_kernel_version 44; then
3355                 touch .foo && error "'touch .foo' worked after removing cwd"
3356                 test_mkdir $DIR/$tdir/.foo &&
3357                               error "'mkdir .foo' worked after removing cwd"
3358         fi
3359         ls . > /dev/null && error "'ls .' worked after removing cwd"
3360         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3361         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3362         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3363         rmdir . && error "'rmdir .' worked after removing cwd"
3364         ln -s . foo && error "'ln -s .' worked after removing cwd"
3365         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3366 }
3367 run_test 48b "Access removed working dir (should return errors)="
3368
3369 test_48c() { # bug 2350
3370         check_kernel_version 36 || return 0
3371         #lctl set_param debug=-1
3372         #set -vx
3373         rm -rf $DIR/$tdir
3374         test_mkdir -p $DIR/$tdir/dir
3375         cd $DIR/$tdir/dir
3376         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3377         $TRACE touch foo && error "touch foo worked after removing cwd"
3378         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3379         if check_kernel_version 44; then
3380                 touch .foo && error "touch .foo worked after removing cwd"
3381                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3382         fi
3383         $TRACE ls . && error "'ls .' worked after removing cwd"
3384         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3385         is_patchless || ( $TRACE cd . &&
3386                         error "'cd .' worked after removing cwd" )
3387         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3388         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3389         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3390         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3391 }
3392 run_test 48c "Access removed working subdir (should return errors)"
3393
3394 test_48d() { # bug 2350
3395         check_kernel_version 36 || return 0
3396         #lctl set_param debug=-1
3397         #set -vx
3398         rm -rf $DIR/$tdir
3399         test_mkdir -p $DIR/$tdir/dir
3400         cd $DIR/$tdir/dir
3401         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3402         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3403         $TRACE touch foo && error "'touch foo' worked after removing parent"
3404         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3405         if check_kernel_version 44; then
3406                 touch .foo && error "'touch .foo' worked after removing parent"
3407                 test_mkdir .foo &&
3408                               error "mkdir .foo worked after removing parent"
3409         fi
3410         $TRACE ls . && error "'ls .' worked after removing parent"
3411         $TRACE ls .. && error "'ls ..' worked after removing parent"
3412         is_patchless || ( $TRACE cd . &&
3413                         error "'cd .' worked after recreate parent" )
3414         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3415         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3416         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3417         is_patchless || ( $TRACE cd .. &&
3418                         error "'cd ..' worked after removing parent" || true )
3419 }
3420 run_test 48d "Access removed parent subdir (should return errors)"
3421
3422 test_48e() { # bug 4134
3423         check_kernel_version 41 || 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 $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3432         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3433         # On a buggy kernel addition of "touch foo" after cd .. will
3434         # produce kernel oops in lookup_hash_it
3435         touch ../foo && error "'cd ..' worked after recreate parent"
3436         cd $DIR
3437         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3438 }
3439 run_test 48e "Access to recreated parent subdir (should return errors)"
3440
3441 test_49() { # LU-1030
3442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3443         # get ost1 size - lustre-OST0000
3444         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3445         # write 800M at maximum
3446         [ $ost1_size -gt 819200 ] && ost1_size=819200
3447
3448         lfs setstripe -c 1 -i 0 $DIR/$tfile
3449         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3450         local dd_pid=$!
3451
3452         # change max_pages_per_rpc while writing the file
3453         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3454         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3455         # loop until dd process exits
3456         while ps ax -opid | grep -wq $dd_pid; do
3457                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3458                 sleep $((RANDOM % 5 + 1))
3459         done
3460         # restore original max_pages_per_rpc
3461         $LCTL set_param $osc1_mppc=$orig_mppc
3462         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3463 }
3464 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3465
3466 test_50() {
3467         # bug 1485
3468         test_mkdir $DIR/$tdir
3469         cd $DIR/$tdir
3470         ls /proc/$$/cwd || error
3471 }
3472 run_test 50 "special situations: /proc symlinks  ==============="
3473
3474 test_51a() {    # was test_51
3475         # bug 1516 - create an empty entry right after ".." then split dir
3476         test_mkdir $DIR/$tdir
3477         touch $DIR/$tdir/foo
3478         $MCREATE $DIR/$tdir/bar
3479         rm $DIR/$tdir/foo
3480         createmany -m $DIR/$tdir/longfile 201
3481         FNUM=202
3482         while [ `ls -sd $DIR/$tdir | awk '{ print $1 }'` -eq 4 ]; do
3483                 $MCREATE $DIR/$tdir/longfile$FNUM
3484                 FNUM=$(($FNUM + 1))
3485                 echo -n "+"
3486         done
3487         echo
3488         ls -l $DIR/$tdir > /dev/null || error
3489 }
3490 run_test 51a "special situations: split htree with empty entry =="
3491
3492 export NUMTEST=70000
3493 test_51b() {
3494         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3495         local BASE=$DIR/$tdir
3496
3497         test_mkdir -p $BASE
3498
3499         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3500         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3501         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3502                 return
3503
3504         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3505                 echo "reduced count to $NUMTEST due to inodes"
3506
3507         # need to check free space for the directories as well
3508         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3509         numfree=$((blkfree / 4))
3510         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3511                 echo "reduced count to $NUMTEST due to blocks"
3512
3513         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3514                 echo "failed" > $BASE/fnum
3515 }
3516 run_test 51b "exceed 64k subdirectory nlink limit"
3517
3518 test_51ba() { # LU-993
3519         local BASE=$DIR/$tdir
3520         # unlink all but 100 subdirectories, then check it still works
3521         local LEFT=100
3522         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3523
3524         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3525         local DELETE=$((NUMTEST - LEFT))
3526
3527         # continue on to run this test even if 51b didn't finish,
3528         # just to delete the many subdirectories created.
3529         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3530
3531         # for ldiskfs the nlink count should be 1, but this is OSD specific
3532         # and so this is listed for informational purposes only
3533         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3534         unlinkmany -d $BASE/d $DELETE
3535         RC=$?
3536
3537         if [ $RC -ne 0 ]; then
3538                 if [ "$NUMPREV" == "failed" ]; then
3539                         skip "previous setup failed"
3540                         return 0
3541                 else
3542                         error "unlink of first $DELETE subdirs failed"
3543                         return $RC
3544                 fi
3545         fi
3546
3547         echo "nlink between: $(stat -c %h $BASE)"
3548         # trim the first line of ls output
3549         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3550         [ $FOUND -ne $LEFT ] &&
3551                 error "can't find subdirs: found only $FOUND/$LEFT"
3552
3553         unlinkmany -d $BASE/d $DELETE $LEFT ||
3554                 error "unlink of second $LEFT subdirs failed"
3555         # regardless of whether the backing filesystem tracks nlink accurately
3556         # or not, the nlink count shouldn't be more than "." and ".." here
3557         local AFTER=$(stat -c %h $BASE)
3558         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3559                 echo "nlink after: $AFTER"
3560 }
3561 run_test 51ba "verify nlink for many subdirectory cleanup"
3562
3563 test_51d() {
3564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3565         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3566         test_mkdir -p $DIR/$tdir
3567         createmany -o $DIR/$tdir/t- 1000
3568         $GETSTRIPE $DIR/$tdir > $TMP/files
3569         for N in `seq 0 $((OSTCOUNT - 1))`; do
3570             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3571             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3572             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3573         done
3574         unlinkmany $DIR/$tdir/t- 1000
3575
3576         NLAST=0
3577         for N in `seq 1 $((OSTCOUNT - 1))`; do
3578             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3579                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3580             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3581                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3582
3583             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3584                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3585             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3586                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3587             NLAST=$N
3588         done
3589 }
3590 run_test 51d "check object distribution ===================="
3591
3592 test_52a() {
3593         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3594         test_mkdir -p $DIR/$tdir
3595         touch $DIR/$tdir/foo
3596         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3597         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3598         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3599         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3600         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3601                                         error "link worked"
3602         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3603         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3604         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3605                                                      error "lsattr"
3606         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3607         cp -r $DIR/$tdir /tmp/
3608         rm -fr $DIR/$tdir || error "cleanup rm failed"
3609 }
3610 run_test 52a "append-only flag test (should return errors) ====="
3611
3612 test_52b() {
3613         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3614         test_mkdir -p $DIR/$tdir
3615         touch $DIR/$tdir/foo
3616         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3617         cat test > $DIR/$tdir/foo && error "cat test worked"
3618         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3619         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3620         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3621                                         error "link worked"
3622         echo foo >> $DIR/$tdir/foo && error "echo worked"
3623         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3624         [ -f $DIR/$tdir/foo ] || error
3625         [ -f $DIR/$tdir/foo_ren ] && error
3626         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3627                                                         error "lsattr"
3628         chattr -i $DIR/$tdir/foo || error "chattr failed"
3629
3630         rm -fr $DIR/$tdir || error
3631 }
3632 run_test 52b "immutable flag test (should return errors) ======="
3633
3634 test_53() {
3635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3636         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3637         remote_ost_nodsh && skip "remote OST with nodsh" && return
3638
3639         local param
3640         local ostname
3641         local mds_last
3642         local ost_last
3643         local ostnum
3644
3645         # only test MDT0000
3646         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3647         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3648                 param=`echo ${value[0]} | cut -d "=" -f1`
3649                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3650                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3651                 ostnum=$(echo $ostname | sed "s/${FSNAME}-OST//g" | awk '{print ($1+1)}' )
3652                 ost_last=$(do_facet ost$ostnum lctl get_param -n obdfilter.$ostname.last_id | head -n 1)
3653                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3654                 if [ $ost_last != $mds_last ]; then
3655                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3656                 fi
3657         done
3658 }
3659 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3660
3661 test_54a() {
3662         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3663         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3664         $SOCKETSERVER $DIR/socket
3665         $SOCKETCLIENT $DIR/socket || error
3666         $MUNLINK $DIR/socket
3667 }
3668 run_test 54a "unix domain socket test =========================="
3669
3670 test_54b() {
3671         f="$DIR/f54b"
3672         mknod $f c 1 3
3673         chmod 0666 $f
3674         dd if=/dev/zero of=$f bs=`page_size` count=1
3675 }
3676 run_test 54b "char device works in lustre ======================"
3677
3678 find_loop_dev() {
3679         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3680         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3681         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3682
3683         for i in `seq 3 7`; do
3684                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3685                 LOOPDEV=$LOOPBASE$i
3686                 LOOPNUM=$i
3687                 break
3688         done
3689 }
3690
3691 test_54c() {
3692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3693         tfile="$DIR/f54c"
3694         tdir="$DIR/d54c"
3695         loopdev="$DIR/loop54c"
3696
3697         find_loop_dev
3698         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3699         mknod $loopdev b 7 $LOOPNUM
3700         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3701         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3702         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3703         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3704         test_mkdir -p $tdir
3705         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3706         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3707         df $tdir
3708         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3709         $UMOUNT $tdir
3710         losetup -d $loopdev
3711         rm $loopdev
3712 }
3713 run_test 54c "block device works in lustre ====================="
3714
3715 test_54d() {
3716         f="$DIR/f54d"
3717         string="aaaaaa"
3718         mknod $f p
3719         [ "$string" = `echo $string > $f | cat $f` ] || error
3720 }
3721 run_test 54d "fifo device works in lustre ======================"
3722
3723 test_54e() {
3724         check_kernel_version 46 || return 0
3725         f="$DIR/f54e"
3726         string="aaaaaa"
3727         cp -aL /dev/console $f
3728         echo $string > $f || error
3729 }
3730 run_test 54e "console/tty device works in lustre ======================"
3731
3732 #The test_55 used to be iopen test and it was removed by bz#24037.
3733 #run_test 55 "check iopen_connect_dentry() ======================"
3734
3735 test_56a() {    # was test_56
3736         rm -rf $DIR/$tdir
3737         $SETSTRIPE -d $DIR
3738         test_mkdir $DIR/$tdir
3739         test_mkdir $DIR/$tdir/dir
3740         NUMFILES=3
3741         NUMFILESx2=$(($NUMFILES * 2))
3742         for i in `seq 1 $NUMFILES` ; do
3743                 touch $DIR/$tdir/file$i
3744                 touch $DIR/$tdir/dir/file$i
3745         done
3746
3747         # test lfs getstripe with --recursive
3748         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3749         [ $FILENUM -eq $NUMFILESx2 ] ||
3750                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3751         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3752         [ $FILENUM -eq $NUMFILES ] ||
3753                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3754         echo "$GETSTRIPE --recursive passed."
3755
3756         # test lfs getstripe with file instead of dir
3757         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3758         [ $FILENUM  -eq 1 ] || error \
3759                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3760         echo "$GETSTRIPE file1 passed."
3761
3762         #test lfs getstripe with --verbose
3763         [ `$GETSTRIPE --verbose $DIR/$tdir |
3764                         grep -c lmm_magic` -eq $NUMFILES ] ||
3765                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3766         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3767             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3768         echo "$GETSTRIPE --verbose passed."
3769
3770         #test lfs getstripe with --obd
3771         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3772                                         grep -q "unknown obduuid" ||
3773                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3774
3775         [  "$OSTCOUNT" -lt 2 ] &&
3776                 skip_env "skipping other $GETSTRIPE --obd test" && return
3777
3778         OSTIDX=1
3779         OBDUUID=$(ostuuid_from_index $OSTIDX)
3780         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
3781         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
3782         [ $FOUND -eq $FILENUM ] ||
3783                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3784         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
3785                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3786                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3787                 error "$GETSTRIPE --obd: should not show file on other obd"
3788         echo "$GETSTRIPE --obd passed"
3789 }
3790 run_test 56a "check $GETSTRIPE"
3791
3792 NUMFILES=3
3793 NUMDIRS=3
3794 setup_56() {
3795         local LOCAL_NUMFILES="$1"
3796         local LOCAL_NUMDIRS="$2"
3797         local MKDIR_PARAMS="$3"
3798
3799         if [ ! -d "$TDIR" ] ; then
3800                 test_mkdir -p $TDIR
3801                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3802                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3803                         touch $TDIR/file$i
3804                 done
3805                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3806                         test_mkdir $TDIR/dir$i
3807                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3808                                 touch $TDIR/dir$i/file$j
3809                         done
3810                 done
3811         fi
3812 }
3813
3814 setup_56_special() {
3815         LOCAL_NUMFILES=$1
3816         LOCAL_NUMDIRS=$2
3817         setup_56 $1 $2
3818         if [ ! -e "$TDIR/loop1b" ] ; then
3819                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3820                         mknod $TDIR/loop${i}b b 7 $i
3821                         mknod $TDIR/null${i}c c 1 3
3822                         ln -s $TDIR/file1 $TDIR/link${i}l
3823                 done
3824                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3825                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3826                         mknod $TDIR/dir$i/null${i}c c 1 3
3827                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3828                 done
3829         fi
3830 }
3831
3832 test_56g() {
3833         $SETSTRIPE -d $DIR
3834
3835         TDIR=$DIR/${tdir}g
3836         setup_56 $NUMFILES $NUMDIRS
3837
3838         EXPECTED=$(($NUMDIRS + 2))
3839         # test lfs find with -name
3840         for i in $(seq 1 $NUMFILES) ; do
3841                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3842                 [ $NUMS -eq $EXPECTED ] ||
3843                         error "lfs find -name \"*$i\" $TDIR wrong: "\
3844                               "found $NUMS, expected $EXPECTED"
3845         done
3846 }
3847 run_test 56g "check lfs find -name ============================="
3848
3849 test_56h() {
3850         $SETSTRIPE -d $DIR
3851
3852         TDIR=$DIR/${tdir}g
3853         setup_56 $NUMFILES $NUMDIRS
3854
3855         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
3856         # test lfs find with ! -name
3857         for i in $(seq 1 $NUMFILES) ; do
3858                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
3859                 [ $NUMS -eq $EXPECTED ] ||
3860                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
3861                               "found $NUMS, expected $EXPECTED"
3862         done
3863 }
3864 run_test 56h "check lfs find ! -name ============================="
3865
3866 test_56i() {
3867        tdir=${tdir}i
3868        test_mkdir -p $DIR/$tdir
3869        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
3870        CMD="$LFIND -ost $UUID $DIR/$tdir"
3871        OUT=$($CMD)
3872        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
3873 }
3874 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
3875
3876 test_56j() {
3877         TDIR=$DIR/${tdir}g
3878         setup_56_special $NUMFILES $NUMDIRS
3879
3880         EXPECTED=$((NUMDIRS + 1))
3881         CMD="$LFIND -type d $TDIR"
3882         NUMS=$($CMD | wc -l)
3883         [ $NUMS -eq $EXPECTED ] ||
3884                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3885 }
3886 run_test 56j "check lfs find -type d ============================="
3887
3888 test_56k() {
3889         TDIR=$DIR/${tdir}g
3890         setup_56_special $NUMFILES $NUMDIRS
3891
3892         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
3893         CMD="$LFIND -type f $TDIR"
3894         NUMS=$($CMD | wc -l)
3895         [ $NUMS -eq $EXPECTED ] ||
3896                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3897 }
3898 run_test 56k "check lfs find -type f ============================="
3899
3900 test_56l() {
3901         TDIR=$DIR/${tdir}g
3902         setup_56_special $NUMFILES $NUMDIRS
3903
3904         EXPECTED=$((NUMDIRS + NUMFILES))
3905         CMD="$LFIND -type b $TDIR"
3906         NUMS=$($CMD | wc -l)
3907         [ $NUMS -eq $EXPECTED ] ||
3908                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3909 }
3910 run_test 56l "check lfs find -type b ============================="
3911
3912 test_56m() {
3913         TDIR=$DIR/${tdir}g
3914         setup_56_special $NUMFILES $NUMDIRS
3915
3916         EXPECTED=$((NUMDIRS + NUMFILES))
3917         CMD="$LFIND -type c $TDIR"
3918         NUMS=$($CMD | wc -l)
3919         [ $NUMS -eq $EXPECTED ] ||
3920                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3921 }
3922 run_test 56m "check lfs find -type c ============================="
3923
3924 test_56n() {
3925         TDIR=$DIR/${tdir}g
3926         setup_56_special $NUMFILES $NUMDIRS
3927
3928         EXPECTED=$((NUMDIRS + NUMFILES))
3929         CMD="$LFIND -type l $TDIR"
3930         NUMS=$($CMD | wc -l)
3931         [ $NUMS -eq $EXPECTED ] ||
3932                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3933 }
3934 run_test 56n "check lfs find -type l ============================="
3935
3936 test_56o() {
3937         TDIR=$DIR/${tdir}o
3938         setup_56 $NUMFILES $NUMDIRS
3939
3940         utime $TDIR/file1 > /dev/null || error "utime (1)"
3941         utime $TDIR/file2 > /dev/null || error "utime (2)"
3942         utime $TDIR/dir1 > /dev/null || error "utime (3)"
3943         utime $TDIR/dir2 > /dev/null || error "utime (4)"
3944         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
3945         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
3946
3947         EXPECTED=4
3948         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
3949         [ $NUMS -eq $EXPECTED ] || \
3950                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
3951
3952         EXPECTED=12
3953         CMD="$LFIND -mtime 0 $TDIR"
3954         NUMS=$($CMD | wc -l)
3955         [ $NUMS -eq $EXPECTED ] ||
3956                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3957 }
3958 run_test 56o "check lfs find -mtime for old files =========================="
3959
3960 test_56p() {
3961         [ $RUNAS_ID -eq $UID ] &&
3962                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3963
3964         TDIR=$DIR/${tdir}p
3965         setup_56 $NUMFILES $NUMDIRS
3966
3967         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
3968         EXPECTED=$NUMFILES
3969         CMD="$LFIND -uid $RUNAS_ID $TDIR"
3970         NUMS=$($CMD | wc -l)
3971         [ $NUMS -eq $EXPECTED ] || \
3972                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3973
3974         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
3975         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
3976         NUMS=$($CMD | wc -l)
3977         [ $NUMS -eq $EXPECTED ] || \
3978                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3979 }
3980 run_test 56p "check lfs find -uid and ! -uid ==============================="
3981
3982 test_56q() {
3983         [ $RUNAS_ID -eq $UID ] &&
3984                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
3985
3986         TDIR=$DIR/${tdir}q
3987         setup_56 $NUMFILES $NUMDIRS
3988
3989         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
3990
3991         EXPECTED=$NUMFILES
3992         CMD="$LFIND -gid $RUNAS_GID $TDIR"
3993         NUMS=$($CMD | wc -l)
3994         [ $NUMS -eq $EXPECTED ] ||
3995                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
3996
3997         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
3998         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
3999         NUMS=$($CMD | wc -l)
4000         [ $NUMS -eq $EXPECTED ] ||
4001                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4002 }
4003 run_test 56q "check lfs find -gid and ! -gid ==============================="
4004
4005 test_56r() {
4006         TDIR=$DIR/${tdir}r
4007         setup_56 $NUMFILES $NUMDIRS
4008
4009         EXPECTED=12
4010         CMD="$LFIND -size 0 -type f $TDIR"
4011         NUMS=$($CMD | wc -l)
4012         [ $NUMS -eq $EXPECTED ] ||
4013                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4014         EXPECTED=0
4015         CMD="$LFIND ! -size 0 -type f $TDIR"
4016         NUMS=$($CMD | wc -l)
4017         [ $NUMS -eq $EXPECTED ] ||
4018                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4019         echo "test" > $TDIR/$tfile
4020         echo "test2" > $TDIR/$tfile.2 && sync
4021         EXPECTED=1
4022         CMD="$LFIND -size 5 -type f $TDIR"
4023         NUMS=$($CMD | wc -l)
4024         [ $NUMS -eq $EXPECTED ] ||
4025                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4026         EXPECTED=1
4027         CMD="$LFIND -size +5 -type f $TDIR"
4028         NUMS=$($CMD | wc -l)
4029         [ $NUMS -eq $EXPECTED ] ||
4030                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4031         EXPECTED=2
4032         CMD="$LFIND -size +0 -type f $TDIR"
4033         NUMS=$($CMD | wc -l)
4034         [ $NUMS -eq $EXPECTED ] ||
4035                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4036         EXPECTED=2
4037         CMD="$LFIND ! -size -5 -type f $TDIR"
4038         NUMS=$($CMD | wc -l)
4039         [ $NUMS -eq $EXPECTED ] ||
4040                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4041         EXPECTED=12
4042         CMD="$LFIND -size -5 -type f $TDIR"
4043         NUMS=$($CMD | wc -l)
4044         [ $NUMS -eq $EXPECTED ] ||
4045                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4046 }
4047 run_test 56r "check lfs find -size works =========================="
4048
4049 test_56s() { # LU-611
4050         TDIR=$DIR/${tdir}s
4051         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4052
4053         if [ $OSTCOUNT -gt 1 ]; then
4054                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4055                 ONESTRIPE=4
4056                 EXTRA=4
4057         else
4058                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4059                 EXTRA=0
4060         fi
4061
4062         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4063         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4064         NUMS=$($CMD | wc -l)
4065         [ $NUMS -eq $EXPECTED ] ||
4066                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4067
4068         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4069         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4070         NUMS=$($CMD | wc -l)
4071         [ $NUMS -eq $EXPECTED ] ||
4072                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4073
4074         EXPECTED=$ONESTRIPE
4075         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4076         NUMS=$($CMD | wc -l)
4077         [ $NUMS -eq $EXPECTED ] ||
4078                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4079
4080         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4081         NUMS=$($CMD | wc -l)
4082         [ $NUMS -eq $EXPECTED ] ||
4083                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4084
4085         EXPECTED=0
4086         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4087         NUMS=$($CMD | wc -l)
4088         [ $NUMS -eq $EXPECTED ] ||
4089                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4090 }
4091 run_test 56s "check lfs find -stripe-count works"
4092
4093 test_56t() { # LU-611
4094         TDIR=$DIR/${tdir}t
4095         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4096
4097         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4098
4099         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4100         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4101         NUMS=$($CMD | wc -l)
4102         [ $NUMS -eq $EXPECTED ] ||
4103                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4104
4105         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4106         NUMS=$($CMD | wc -l)
4107         [ $NUMS -eq $EXPECTED ] ||
4108                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4109
4110         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4111         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4112         NUMS=$($CMD | wc -l)
4113         [ $NUMS -eq $EXPECTED ] ||
4114                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4115
4116         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4117         NUMS=$($CMD | wc -l)
4118         [ $NUMS -eq $EXPECTED ] ||
4119                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4120
4121         EXPECTED=4
4122         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4123         NUMS=$($CMD | wc -l)
4124         [ $NUMS -eq $EXPECTED ] ||
4125                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4126
4127         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4128         NUMS=$($CMD | wc -l)
4129         [ $NUMS -eq $EXPECTED ] ||
4130                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4131
4132         EXPECTED=0
4133         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4134         NUMS=$($CMD | wc -l)
4135         [ $NUMS -eq $EXPECTED ] ||
4136                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4137 }
4138 run_test 56t "check lfs find -stripe-size works"
4139
4140 test_56u() { # LU-611
4141         TDIR=$DIR/${tdir}u
4142         setup_56 $NUMFILES $NUMDIRS "-i 0"
4143
4144         if [ $OSTCOUNT -gt 1 ]; then
4145                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4146                 ONESTRIPE=4
4147         else
4148                 ONESTRIPE=0
4149         fi
4150
4151         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4152         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4153         NUMS=$($CMD | wc -l)
4154         [ $NUMS -eq $EXPECTED ] ||
4155                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4156
4157         EXPECTED=$ONESTRIPE
4158         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4159         NUMS=$($CMD | wc -l)
4160         [ $NUMS -eq $EXPECTED ] ||
4161                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4162
4163         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4164         NUMS=$($CMD | wc -l)
4165         [ $NUMS -eq $EXPECTED ] ||
4166                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4167
4168         EXPECTED=0
4169         # This should produce an error and not return any files
4170         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4171         NUMS=$($CMD 2>/dev/null | wc -l)
4172         [ $NUMS -eq $EXPECTED ] ||
4173                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4174
4175         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4176         CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4177         NUMS=$($CMD | wc -l)
4178         [ $NUMS -eq $EXPECTED ] ||
4179                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4180 }
4181 run_test 56u "check lfs find -stripe-index works"
4182
4183 test_56v() {
4184     local MDT_IDX=0
4185
4186     TDIR=$DIR/${tdir}v
4187     rm -rf $TDIR
4188     setup_56 $NUMFILES $NUMDIRS
4189
4190     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4191     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4192
4193     for file in $($LFIND -mdt $UUID $TDIR); do
4194         file_mdt_idx=$($GETSTRIPE -M $file)
4195         [ $file_mdt_idx -eq $MDT_IDX ] ||
4196             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4197     done
4198 }
4199 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4200
4201 # Get and check the actual stripe count of one file.
4202 # Usage: check_stripe_count <file> <expected_stripe_count>
4203 check_stripe_count() {
4204     local file=$1
4205     local expected=$2
4206     local actual
4207
4208     [[ -z "$file" || -z "$expected" ]] &&
4209         error "check_stripe_count: invalid argument!"
4210
4211     local cmd="$GETSTRIPE -c $file"
4212     actual=$($cmd) || error "$cmd failed"
4213     actual=${actual%% *}
4214
4215     if [[ $actual -ne $expected ]]; then
4216         [[ $expected -eq -1 ]] ||
4217             error "$cmd wrong: found $actual, expected $expected"
4218         [[ $actual -eq $OSTCOUNT ]] ||
4219             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4220     fi
4221 }
4222
4223 test_56w() {
4224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4225         TDIR=$DIR/${tdir}w
4226
4227     rm -rf $TDIR || error "remove $TDIR failed"
4228     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4229
4230     local stripe_size
4231     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4232         error "$GETSTRIPE -S -d $TDIR failed"
4233     stripe_size=${stripe_size%% *}
4234
4235     local file_size=$((stripe_size * OSTCOUNT))
4236     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4237     local required_space=$((file_num * file_size))
4238     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4239     [[ $free_space -le $((required_space / 1024)) ]] &&
4240         skip_env "need at least $required_space bytes free space," \
4241                  "have $free_space kbytes" && return
4242
4243     local dd_bs=65536
4244     local dd_count=$((file_size / dd_bs))
4245
4246     # write data into the files
4247     local i
4248     local j
4249     local file
4250     for i in $(seq 1 $NUMFILES); do
4251         file=$TDIR/file$i
4252         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4253             error "write data into $file failed"
4254     done
4255     for i in $(seq 1 $NUMDIRS); do
4256         for j in $(seq 1 $NUMFILES); do
4257             file=$TDIR/dir$i/file$j
4258             yes | dd bs=$dd_bs count=$dd_count of=$file \
4259                 >/dev/null 2>&1 ||
4260                 error "write data into $file failed"
4261         done
4262     done
4263
4264     local expected=-1
4265     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4266
4267     # lfs_migrate file
4268     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4269     echo "$cmd"
4270     eval $cmd || error "$cmd failed"
4271
4272     check_stripe_count $TDIR/file1 $expected
4273
4274     # lfs_migrate dir
4275     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4276     echo "$cmd"
4277     eval $cmd || error "$cmd failed"
4278
4279     for j in $(seq 1 $NUMFILES); do
4280         check_stripe_count $TDIR/dir1/file$j $expected
4281     done
4282
4283     # lfs_migrate works with lfs find
4284     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4285          $LFS_MIGRATE -y -c $expected"
4286     echo "$cmd"
4287     eval $cmd || error "$cmd failed"
4288
4289     for i in $(seq 2 $NUMFILES); do
4290         check_stripe_count $TDIR/file$i $expected
4291     done
4292     for i in $(seq 2 $NUMDIRS); do
4293         for j in $(seq 1 $NUMFILES); do
4294             check_stripe_count $TDIR/dir$i/file$j $expected
4295         done
4296     done
4297 }
4298 run_test 56w "check lfs_migrate -c stripe_count works"
4299
4300 test_57a() {
4301         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4302         # note test will not do anything if MDS is not local
4303         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4304                 skip "Only applicable to ldiskfs-based MDTs"
4305                 return
4306         fi
4307
4308         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4309         local MNTDEV="osd*.*MDT*.mntdev"
4310         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4311         [ -z "$DEV" ] && error "can't access $MNTDEV"
4312         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4313                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4314                         error "can't access $DEV"
4315                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4316                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4317                 rm $TMP/t57a.dump
4318         done
4319 }
4320 run_test 57a "verify MDS filesystem created with large inodes =="
4321
4322 test_57b() {
4323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4324         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4325                 skip "Only applicable to ldiskfs-based MDTs"
4326                 return
4327         fi
4328
4329         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4330         local dir=$DIR/d57b
4331
4332         local FILECOUNT=100
4333         local FILE1=$dir/f1
4334         local FILEN=$dir/f$FILECOUNT
4335
4336         rm -rf $dir || error "removing $dir"
4337         test_mkdir -p $dir || error "creating $dir"
4338         local num=$(get_mds_dir $dir)
4339         local mymds=mds$num
4340
4341         echo "mcreating $FILECOUNT files"
4342         createmany -m $dir/f 1 $FILECOUNT || \
4343                 error "creating files in $dir"
4344
4345         # verify that files do not have EAs yet
4346         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4347         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4348
4349         sync
4350         sleep 1
4351         df $dir  #make sure we get new statfs data
4352         local MDSFREE=$(do_facet $mymds \
4353                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4354         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4355         echo "opening files to create objects/EAs"
4356         local FILE
4357         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4358                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4359         done
4360
4361         # verify that files have EAs now
4362         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4363         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4364
4365         sleep 1  #make sure we get new statfs data
4366         df $dir
4367         local MDSFREE2=$(do_facet $mymds \
4368                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4369         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4370         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4371                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4372                         error "MDC before $MDCFREE != after $MDCFREE2"
4373                 else
4374                         echo "MDC before $MDCFREE != after $MDCFREE2"
4375                         echo "unable to confirm if MDS has large inodes"
4376                 fi
4377         fi
4378         rm -rf $dir
4379 }
4380 run_test 57b "default LOV EAs are stored inside large inodes ==="
4381
4382 test_58() {
4383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4384         [ -z "$(which wiretest 2>/dev/null)" ] &&
4385                         skip_env "could not find wiretest" && return
4386         wiretest
4387 }
4388 run_test 58 "verify cross-platform wire constants =============="
4389
4390 test_59() {
4391         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4392         echo "touch 130 files"
4393         createmany -o $DIR/f59- 130
4394         echo "rm 130 files"
4395         unlinkmany $DIR/f59- 130
4396         sync
4397         # wait for commitment of removal
4398         wait_delete_completed
4399 }
4400 run_test 59 "verify cancellation of llog records async ========="
4401
4402 TEST60_HEAD="test_60 run $RANDOM"
4403 test_60a() {
4404         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4405         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4406         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4407         log "$TEST60_HEAD - from kernel mode"
4408         do_facet mgs sh run-llog.sh
4409 }
4410 run_test 60a "llog sanity tests run from kernel module =========="
4411
4412 test_60b() { # bug 6411
4413         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4414         dmesg > $DIR/$tfile
4415         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4416                                  /llog.test/ {
4417                                          if (marker)
4418                                                  from_marker++
4419                                          from_begin++
4420                                  }
4421                                  END {
4422                                          if (marker)
4423                                                  print from_marker
4424                                          else
4425                                                  print from_begin
4426                                  }"`
4427         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4428 }
4429 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4430
4431 test_60c() {
4432         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4433         echo "create 5000 files"
4434         createmany -o $DIR/f60c- 5000
4435 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4436         lctl set_param fail_loc=0x80000137
4437         unlinkmany $DIR/f60c- 5000
4438         lctl set_param fail_loc=0
4439 }
4440 run_test 60c "unlink file when mds full"
4441
4442 test_60d() {
4443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4444         SAVEPRINTK=$(lctl get_param -n printk)
4445
4446         # verify "lctl mark" is even working"
4447         MESSAGE="test message ID $RANDOM $$"
4448         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4449         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4450
4451         lctl set_param printk=0 || error "set lnet.printk failed"
4452         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4453         MESSAGE="new test message ID $RANDOM $$"
4454         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4455         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4456         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4457
4458         lctl set_param -n printk="$SAVEPRINTK"
4459 }
4460 run_test 60d "test printk console message masking"
4461
4462 test_61() {
4463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4464         f="$DIR/f61"
4465         dd if=/dev/zero of=$f bs=`page_size` count=1
4466         cancel_lru_locks osc
4467         $MULTIOP $f OSMWUc || error
4468         sync
4469 }
4470 run_test 61 "mmap() writes don't make sync hang ================"
4471
4472 # bug 2330 - insufficient obd_match error checking causes LBUG
4473 test_62() {
4474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4475         f="$DIR/f62"
4476         echo foo > $f
4477         cancel_lru_locks osc
4478         lctl set_param fail_loc=0x405
4479         cat $f && error "cat succeeded, expect -EIO"
4480         lctl set_param fail_loc=0
4481 }
4482 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4483 # match every page all of the time.
4484 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4485
4486 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4487 test_63a() {    # was test_63
4488         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4489         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4490         lctl set_param -n osc.*.max_dirty_mb 0
4491         for i in `seq 10` ; do
4492                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4493                 sleep 5
4494                 kill $!
4495                 sleep 1
4496         done
4497
4498         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4499         rm -f $DIR/f63 || true
4500 }
4501 run_test 63a "Verify oig_wait interruption does not crash ======="
4502
4503 # bug 2248 - async write errors didn't return to application on sync
4504 # bug 3677 - async write errors left page locked
4505 test_63b() {
4506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4507         debugsave
4508         lctl set_param debug=-1
4509
4510         # ensure we have a grant to do async writes
4511         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4512         rm $DIR/$tfile
4513
4514         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4515         lctl set_param fail_loc=0x80000406
4516         $MULTIOP $DIR/$tfile Owy && \
4517                 error "sync didn't return ENOMEM"
4518         sync; sleep 2; sync     # do a real sync this time to flush page
4519         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4520                 error "locked page left in cache after async error" || true
4521         debugrestore
4522 }
4523 run_test 63b "async write errors should be returned to fsync ==="
4524
4525 test_64a () {
4526         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4527         df $DIR
4528         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4529 }
4530 run_test 64a "verify filter grant calculations (in kernel) ====="
4531
4532 test_64b () {
4533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4534         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4535         sh oos.sh $MOUNT
4536 }
4537 run_test 64b "check out-of-space detection on client ==========="
4538
4539 test_64c() {
4540         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4541 }
4542 run_test 64c "verify grant shrink ========================------"
4543
4544 # bug 1414 - set/get directories' stripe info
4545 test_65a() {
4546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4547         test_mkdir -p $DIR/$tdir
4548         touch $DIR/$tdir/f1
4549         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4550 }
4551 run_test 65a "directory with no stripe info ===================="
4552
4553 test_65b() {
4554         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4555         test_mkdir -p $DIR/$tdir
4556         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4557                                                 error "setstripe"
4558         touch $DIR/$tdir/f2
4559         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4560 }
4561 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4562
4563 test_65c() {
4564         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4565         if [ $OSTCOUNT -gt 1 ]; then
4566                 test_mkdir -p $DIR/$tdir
4567                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4568                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4569                 touch $DIR/$tdir/f3
4570                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4571         fi
4572 }
4573 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4574
4575 test_65d() {
4576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4577         test_mkdir -p $DIR/$tdir
4578         if [ $STRIPECOUNT -le 0 ]; then
4579                 sc=1
4580         elif [ $STRIPECOUNT -gt 2000 ]; then
4581 #LOV_MAX_STRIPE_COUNT is 2000
4582                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4583         else
4584                 sc=$(($STRIPECOUNT - 1))
4585         fi
4586         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4587         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4588         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4589                                                 error "lverify failed"
4590 }
4591 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4592
4593 test_65e() {
4594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4595         test_mkdir -p $DIR/$tdir
4596
4597         $SETSTRIPE $DIR/$tdir || error "setstripe"
4598         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4599                                         error "no stripe info failed"
4600         touch $DIR/$tdir/f6
4601         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4602 }
4603 run_test 65e "directory setstripe defaults ======================="
4604
4605 test_65f() {
4606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4607         test_mkdir -p $DIR/${tdir}f
4608         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4609 }
4610 run_test 65f "dir setstripe permission (should return error) ==="
4611
4612 test_65g() {
4613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4614         test_mkdir -p $DIR/$tdir
4615         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4616                                                         error "setstripe"
4617         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4618         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4619                 error "delete default stripe failed"
4620 }
4621 run_test 65g "directory setstripe -d ==========================="
4622
4623 test_65h() {
4624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4625         test_mkdir -p $DIR/$tdir
4626         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4627                                                         error "setstripe"
4628         test_mkdir -p $DIR/$tdir/dd1
4629         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4630                 error "stripe info inherit failed"
4631 }
4632 run_test 65h "directory stripe info inherit ===================="
4633
4634 test_65i() { # bug6367
4635         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4636         $SETSTRIPE -S 65536 -c -1 $MOUNT
4637 }
4638 run_test 65i "set non-default striping on root directory (bug 6367)="
4639
4640 test_65ia() { # bug12836
4641         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4642         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4643 }
4644 run_test 65ia "getstripe on -1 default directory striping"
4645
4646 test_65ib() { # bug12836
4647         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4648         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4649 }
4650 run_test 65ib "getstripe -v on -1 default directory striping"
4651
4652 test_65ic() { # bug12836
4653         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4654         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4655 }
4656 run_test 65ic "new find on -1 default directory striping"
4657
4658 test_65j() { # bug6367
4659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4660         sync; sleep 1
4661         # if we aren't already remounting for each test, do so for this test
4662         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4663                 cleanup || error "failed to unmount"
4664                 setup
4665         fi
4666         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4667 }
4668 run_test 65j "set default striping on root directory (bug 6367)="
4669
4670 test_65k() { # bug11679
4671         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4672         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4673         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4674
4675     echo "Check OST status: "
4676     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4677               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4678
4679     for OSC in $MDS_OSCS; do
4680         echo $OSC "is activate"
4681         do_facet $SINGLEMDS lctl --device %$OSC activate
4682     done
4683
4684     mkdir -p $DIR/$tdir
4685     for INACTIVE_OSC in $MDS_OSCS; do
4686         echo "Deactivate: " $INACTIVE_OSC
4687         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4688         for STRIPE_OSC in $MDS_OSCS; do
4689             OST=`osc_to_ost $STRIPE_OSC`
4690             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4691                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4692
4693             [ -f $DIR/$tdir/$IDX ] && continue
4694             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4695             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4696             RC=$?
4697             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4698         done
4699         rm -f $DIR/$tdir/*
4700         echo $INACTIVE_OSC "is Activate."
4701         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4702     done
4703 }
4704 run_test 65k "validate manual striping works properly with deactivated OSCs"
4705
4706 test_65l() { # bug 12836
4707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4708         test_mkdir -p $DIR/$tdir/test_dir
4709         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4710         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4711 }
4712 run_test 65l "lfs find on -1 stripe dir ========================"
4713
4714 # bug 2543 - update blocks count on client
4715 test_66() {
4716         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4717         COUNT=${COUNT:-8}
4718         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4719         sync; sync_all_data; sync; sync_all_data
4720         cancel_lru_locks osc
4721         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4722         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4723 }
4724 run_test 66 "update inode blocks count on client ==============="
4725
4726 LLOOP=
4727 LLITELOOPLOAD=
4728 cleanup_68() {
4729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4730         trap 0
4731         if [ ! -z "$LLOOP" ]; then
4732                 if swapon -s | grep -q $LLOOP; then
4733                         swapoff $LLOOP || error "swapoff failed"
4734                 fi
4735
4736                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4737                 rm -f $LLOOP
4738                 unset LLOOP
4739         fi
4740         if [ ! -z "$LLITELOOPLOAD" ]; then
4741                 rmmod llite_lloop
4742                 unset LLITELOOPLOAD
4743         fi
4744         rm -f $DIR/f68*
4745 }
4746
4747 meminfo() {
4748         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4749 }
4750
4751 swap_used() {
4752         swapon -s | awk '($1 == "'$1'") { print $4 }'
4753 }
4754
4755 # test case for lloop driver, basic function
4756 test_68a() {
4757         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4758         [ "$UID" != 0 ] && skip_env "must run as root" && return
4759         llite_lloop_enabled || \
4760                 { skip_env "llite_lloop module disabled" && return; }
4761
4762         trap cleanup_68 EXIT
4763
4764         if ! module_loaded llite_lloop; then
4765                 if load_module llite/llite_lloop; then
4766                         LLITELOOPLOAD=yes
4767                 else
4768                         skip_env "can't find module llite_lloop"
4769                         return
4770                 fi
4771         fi
4772
4773         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4774         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4775         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4776
4777         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4778         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4779
4780         cleanup_68
4781 }
4782 run_test 68a "lloop driver - basic test ========================"
4783
4784 # excercise swapping to lustre by adding a high priority swapfile entry
4785 # and then consuming memory until it is used.
4786 test_68b() {  # was test_68
4787         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4788         [ "$UID" != 0 ] && skip_env "must run as root" && return
4789         lctl get_param -n devices | grep -q obdfilter && \
4790                 skip "local OST" && return
4791
4792         grep -q llite_lloop /proc/modules
4793         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4794
4795         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4796                 skip "can't reliably test swap with TCP" && return
4797
4798         MEMTOTAL=`meminfo MemTotal`
4799         NR_BLOCKS=$((MEMTOTAL>>8))
4800         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4801
4802         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4803         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4804         mkswap $DIR/f68b
4805
4806         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4807
4808         trap cleanup_68 EXIT
4809
4810         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4811
4812         echo "before: `swapon -s | grep $LLOOP`"
4813         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4814         echo "after: `swapon -s | grep $LLOOP`"
4815         SWAPUSED=`swap_used $LLOOP`
4816
4817         cleanup_68
4818
4819         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
4820 }
4821 run_test 68b "support swapping to Lustre ========================"
4822
4823 # bug5265, obdfilter oa2dentry return -ENOENT
4824 # #define OBD_FAIL_OST_ENOENT 0x217
4825 test_69() {
4826         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4827         remote_ost_nodsh && skip "remote OST with nodsh" && return
4828
4829         f="$DIR/$tfile"
4830         $SETSTRIPE -c 1 -i 0 $f
4831
4832         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
4833
4834         do_facet ost1 lctl set_param fail_loc=0x217
4835         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
4836         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
4837
4838         do_facet ost1 lctl set_param fail_loc=0
4839         $DIRECTIO write $f 0 2 || error "write error"
4840
4841         cancel_lru_locks osc
4842         $DIRECTIO read $f 0 1 || error "read error"
4843
4844         do_facet ost1 lctl set_param fail_loc=0x217
4845         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
4846
4847         do_facet ost1 lctl set_param fail_loc=0
4848         rm -f $f
4849 }
4850 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
4851
4852 test_71() {
4853     test_mkdir -p $DIR/$tdir
4854     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
4855 }
4856 run_test 71 "Running dbench on lustre (don't segment fault) ===="
4857
4858 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
4859         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4860         check_kernel_version 43 || return 0
4861         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4862
4863         # Check that testing environment is properly set up. Skip if not
4864         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
4865                 skip_env "User $RUNAS_ID does not exist - skipping"
4866                 return 0
4867         }
4868         # We had better clear the $DIR to get enough space for dd
4869         rm -rf $DIR/*
4870         touch $DIR/f72
4871         chmod 777 $DIR/f72
4872         chmod ug+s $DIR/f72
4873         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
4874         # See if we are still setuid/sgid
4875         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
4876         # Now test that MDS is updated too
4877         cancel_lru_locks mdc
4878         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
4879         rm -f $DIR/f72
4880 }
4881 run_test 72a "Test that remove suid works properly (bug5695) ===="
4882
4883 test_72b() { # bug 24226 -- keep mode setting when size is not changing
4884         local perm
4885
4886         [ "$RUNAS_ID" = "$UID" ] && \
4887                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4888         [ "$RUNAS_ID" -eq 0 ] && \
4889                 skip_env "RUNAS_ID = 0 -- skipping" && return
4890
4891         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4892         # Check that testing environment is properly set up. Skip if not
4893         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
4894                 skip_env "User $RUNAS_ID does not exist - skipping"
4895                 return 0
4896         }
4897         touch $DIR/${tfile}-f{g,u}
4898         test_mkdir $DIR/${tfile}-dg
4899         test_mkdir $DIR/${tfile}-du
4900         chmod 770 $DIR/${tfile}-{f,d}{g,u}
4901         chmod g+s $DIR/${tfile}-{f,d}g
4902         chmod u+s $DIR/${tfile}-{f,d}u
4903         for perm in 777 2777 4777; do
4904                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
4905                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
4906                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
4907                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
4908         done
4909         true
4910 }
4911 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
4912
4913 # bug 3462 - multiple simultaneous MDC requests
4914 test_73() {
4915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4916         test_mkdir $DIR/d73-1
4917         test_mkdir $DIR/d73-2
4918         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
4919         pid1=$!
4920
4921         lctl set_param fail_loc=0x80000129
4922         $MULTIOP $DIR/d73-1/f73-2 Oc &
4923         sleep 1
4924         lctl set_param fail_loc=0
4925
4926         $MULTIOP $DIR/d73-2/f73-3 Oc &
4927         pid3=$!
4928
4929         kill -USR1 $pid1
4930         wait $pid1 || return 1
4931
4932         sleep 25
4933
4934         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
4935         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
4936         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
4937
4938         rm -rf $DIR/d73-*
4939 }
4940 run_test 73 "multiple MDC requests (should not deadlock)"
4941
4942 test_74a() { # bug 6149, 6184
4943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4944         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4945         #
4946         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4947         # will spin in a tight reconnection loop
4948         touch $DIR/f74a
4949         lctl set_param fail_loc=0x8000030e
4950         # get any lock that won't be difficult - lookup works.
4951         ls $DIR/f74a
4952         lctl set_param fail_loc=0
4953         true
4954         rm -f $DIR/f74a
4955 }
4956 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
4957
4958 test_74b() { # bug 13310
4959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4960         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
4961         #
4962         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
4963         # will spin in a tight reconnection loop
4964         lctl set_param fail_loc=0x8000030e
4965         # get a "difficult" lock
4966         touch $DIR/f74b
4967         lctl set_param fail_loc=0
4968         true
4969         rm -f $DIR/f74b
4970 }
4971 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
4972
4973 test_74c() {
4974         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4975 #define OBD_FAIL_LDLM_NEW_LOCK
4976         lctl set_param fail_loc=0x80000319
4977         touch $DIR/$tfile && error "Touch successful"
4978         true
4979 }
4980 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
4981
4982 num_inodes() {
4983         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
4984 }
4985
4986 get_inode_slab_tunables() {
4987         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
4988 }
4989
4990 set_inode_slab_tunables() {
4991         echo "lustre_inode_cache $1" > /proc/slabinfo
4992 }
4993
4994 test_76() { # Now for bug 20433, added originally in bug 1443
4995         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4996         local SLAB_SETTINGS=`get_inode_slab_tunables`
4997         local CPUS=`getconf _NPROCESSORS_ONLN`
4998         # we cannot set limit below 1 which means 1 inode in each
4999         # per-cpu cache is still allowed
5000         set_inode_slab_tunables "1 1 0"
5001         cancel_lru_locks osc
5002         BEFORE_INODES=`num_inodes`
5003         echo "before inodes: $BEFORE_INODES"
5004         local COUNT=1000
5005         [ "$SLOW" = "no" ] && COUNT=100
5006         for i in `seq $COUNT`; do
5007                 touch $DIR/$tfile
5008                 rm -f $DIR/$tfile
5009         done
5010         cancel_lru_locks osc
5011         AFTER_INODES=`num_inodes`
5012         echo "after inodes: $AFTER_INODES"
5013         local wait=0
5014         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5015                 sleep 2
5016                 AFTER_INODES=`num_inodes`
5017                 wait=$((wait+2))
5018                 echo "wait $wait seconds inodes: $AFTER_INODES"
5019                 if [ $wait -gt 30 ]; then
5020                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5021                 fi
5022         done
5023         set_inode_slab_tunables "$SLAB_SETTINGS"
5024 }
5025 run_test 76 "confirm clients recycle inodes properly ===="
5026
5027
5028 export ORIG_CSUM=""
5029 set_checksums()
5030 {
5031         # Note: in sptlrpc modes which enable its own bulk checksum, the
5032         # original crc32_le bulk checksum will be automatically disabled,
5033         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5034         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5035         # In this case set_checksums() will not be no-op, because sptlrpc
5036         # bulk checksum will be enabled all through the test.
5037
5038         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5039         lctl set_param -n osc.*.checksums $1
5040         return 0
5041 }
5042
5043 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5044                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5045 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5046 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5047 set_checksum_type()
5048 {
5049         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5050         log "set checksum type to $1"
5051         return 0
5052 }
5053 F77_TMP=$TMP/f77-temp
5054 F77SZ=8
5055 setup_f77() {
5056         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5057                 error "error writing to $F77_TMP"
5058 }
5059
5060 test_77a() { # bug 10889
5061         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5062         $GSS && skip "could not run with gss" && return
5063         [ ! -f $F77_TMP ] && setup_f77
5064         set_checksums 1
5065         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5066         set_checksums 0
5067         rm -f $DIR/$tfile
5068 }
5069 run_test 77a "normal checksum read/write operation ============="
5070
5071 test_77b() { # bug 10889
5072         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5073         $GSS && skip "could not run with gss" && return
5074         [ ! -f $F77_TMP ] && setup_f77
5075         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5076         lctl set_param fail_loc=0x80000409
5077         set_checksums 1
5078         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
5079                 error "dd error: $?"
5080         lctl set_param fail_loc=0
5081         set_checksums 0
5082 }
5083 run_test 77b "checksum error on client write ===================="
5084
5085 test_77c() { # bug 10889
5086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5087         $GSS && skip "could not run with gss" && return
5088         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
5089         set_checksums 1
5090         for algo in $CKSUM_TYPES; do
5091                 cancel_lru_locks osc
5092                 set_checksum_type $algo
5093                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5094                 lctl set_param fail_loc=0x80000408
5095                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
5096                 lctl set_param fail_loc=0
5097         done
5098         set_checksums 0
5099         set_checksum_type $ORIG_CSUM_TYPE
5100         rm -f $DIR/f77b
5101 }
5102 run_test 77c "checksum error on client read ==================="
5103
5104 test_77d() { # bug 10889
5105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5106         $GSS && skip "could not run with gss" && return
5107         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5108         lctl set_param fail_loc=0x80000409
5109         set_checksums 1
5110         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5111                 error "direct write: rc=$?"
5112         lctl set_param fail_loc=0
5113         set_checksums 0
5114 }
5115 run_test 77d "checksum error on OST direct write ==============="
5116
5117 test_77e() { # bug 10889
5118         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5119         $GSS && skip "could not run with gss" && return
5120         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
5121         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5122         lctl set_param fail_loc=0x80000408
5123         set_checksums 1
5124         cancel_lru_locks osc
5125         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5126                 error "direct read: rc=$?"
5127         lctl set_param fail_loc=0
5128         set_checksums 0
5129 }
5130 run_test 77e "checksum error on OST direct read ================"
5131
5132 test_77f() { # bug 10889
5133         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5134         $GSS && skip "could not run with gss" && return
5135         set_checksums 1
5136         for algo in $CKSUM_TYPES; do
5137                 cancel_lru_locks osc
5138                 set_checksum_type $algo
5139                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5140                 lctl set_param fail_loc=0x409
5141                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
5142                         error "direct write succeeded"
5143                 lctl set_param fail_loc=0
5144         done
5145         set_checksum_type $ORIG_CSUM_TYPE
5146         set_checksums 0
5147 }
5148 run_test 77f "repeat checksum error on write (expect error) ===="
5149
5150 test_77g() { # bug 10889
5151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5152         $GSS && skip "could not run with gss" && return
5153         remote_ost_nodsh && skip "remote OST with nodsh" && return
5154
5155         [ ! -f $F77_TMP ] && setup_f77
5156
5157         $SETSTRIPE -c 1 -i 0 $DIR/f77g
5158         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5159         do_facet ost1 lctl set_param fail_loc=0x8000021a
5160         set_checksums 1
5161         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
5162                 error "write error: rc=$?"
5163         do_facet ost1 lctl set_param fail_loc=0
5164         set_checksums 0
5165 }
5166 run_test 77g "checksum error on OST write ======================"
5167
5168 test_77h() { # bug 10889
5169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5170         $GSS && skip "could not run with gss" && return
5171         remote_ost_nodsh && skip "remote OST with nodsh" && return
5172
5173         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
5174         cancel_lru_locks osc
5175         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5176         do_facet ost1 lctl set_param fail_loc=0x8000021b
5177         set_checksums 1
5178         cmp $F77_TMP $DIR/f77g || error "file compare failed"
5179         do_facet ost1 lctl set_param fail_loc=0
5180         set_checksums 0
5181 }
5182 run_test 77h "checksum error on OST read ======================="
5183
5184 test_77i() { # bug 13805
5185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5186         $GSS && skip "could not run with gss" && return
5187         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5188         lctl set_param fail_loc=0x40b
5189         remount_client $MOUNT
5190         lctl set_param fail_loc=0
5191         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5192                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5193                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5194                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5195         done
5196         remount_client $MOUNT
5197 }
5198 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
5199
5200 test_77j() { # bug 13805
5201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5202         $GSS && skip "could not run with gss" && return
5203         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5204         lctl set_param fail_loc=0x40c
5205         remount_client $MOUNT
5206         lctl set_param fail_loc=0
5207         sleep 2 # wait async osc connect to finish
5208         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5209                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5210                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5211                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5212         done
5213         remount_client $MOUNT
5214 }
5215 run_test 77j "client only supporting ADLER32 ===================="
5216
5217 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5218 rm -f $F77_TMP
5219 unset F77_TMP
5220
5221 test_78() { # bug 10901
5222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5223         remote_ost || { skip_env "local OST" && return; }
5224
5225         NSEQ=5
5226         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5227         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5228         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5229         echo "MemTotal: $MEMTOTAL"
5230 # reserve 256MB of memory for the kernel and other running processes,
5231 # and then take 1/2 of the remaining memory for the read/write buffers.
5232     if [ $MEMTOTAL -gt 512 ] ;then
5233         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5234     else
5235         # for those poor memory-starved high-end clusters...
5236         MEMTOTAL=$((MEMTOTAL / 2))
5237     fi
5238         echo "Mem to use for directio: $MEMTOTAL"
5239         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5240         [ $F78SIZE -gt 512 ] && F78SIZE=512
5241         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5242         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5243         echo "Smallest OST: $SMALLESTOST"
5244         [ $SMALLESTOST -lt 10240 ] && \
5245                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5246
5247         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5248                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5249
5250         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5251         echo "File size: $F78SIZE"
5252         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5253         for i in `seq 1 $NSEQ`
5254         do
5255                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5256                 echo directIO rdwr round $i of $NSEQ
5257                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5258         done
5259
5260         rm -f $DIR/$tfile
5261 }
5262 run_test 78 "handle large O_DIRECT writes correctly ============"
5263
5264 test_79() { # bug 12743
5265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5266         wait_delete_completed
5267
5268         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5269         BKFREE=$(calc_osc_kbytes kbytesfree)
5270         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5271
5272         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5273         DFTOTAL=`echo $STRING | cut -d, -f1`
5274         DFUSED=`echo $STRING  | cut -d, -f2`
5275         DFAVAIL=`echo $STRING | cut -d, -f3`
5276         DFFREE=$(($DFTOTAL - $DFUSED))
5277
5278         ALLOWANCE=$((64 * $OSTCOUNT))
5279
5280         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5281            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5282                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5283         fi
5284         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5285            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5286                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5287         fi
5288         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5289            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5290                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5291         fi
5292 }
5293 run_test 79 "df report consistency check ======================="
5294
5295 test_80() { # bug 10718
5296         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5297         # relax strong synchronous semantics for slow backends like ZFS
5298         local soc="obdfilter.*.sync_on_lock_cancel"
5299         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5300         local hosts=
5301         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5302                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5303                           facet_active_host $host; done | sort -u)
5304                 do_nodes $hosts lctl set_param $soc=never
5305         fi
5306
5307         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5308         sync; sleep 1; sync
5309         local BEFORE=`date +%s`
5310         cancel_lru_locks osc
5311         local AFTER=`date +%s`
5312         local DIFF=$((AFTER-BEFORE))
5313         if [ $DIFF -gt 1 ] ; then
5314                 error "elapsed for 1M@1T = $DIFF"
5315         fi
5316
5317         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5318
5319         rm -f $DIR/$tfile
5320 }
5321 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5322
5323 test_81a() { # LU-456
5324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5325         remote_ost_nodsh && skip "remote OST with nodsh" && return
5326         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5327         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5328         do_facet ost1 lctl set_param fail_loc=0x80000228
5329
5330         # write should trigger a retry and success
5331         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5332         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5333         RC=$?
5334         if [ $RC -ne 0 ] ; then
5335                 error "write should success, but failed for $RC"
5336         fi
5337 }
5338 run_test 81a "OST should retry write when get -ENOSPC ==============="
5339
5340 test_81b() { # LU-456
5341         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5342         remote_ost_nodsh && skip "remote OST with nodsh" && return
5343         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5344         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5345         do_facet ost1 lctl set_param fail_loc=0x228
5346
5347         # write should retry several times and return -ENOSPC finally
5348         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5349         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5350         RC=$?
5351         ENOSPC=28
5352         if [ $RC -ne $ENOSPC ] ; then
5353                 error "dd should fail for -ENOSPC, but succeed."
5354         fi
5355 }
5356 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5357
5358 test_82() { # LU-1031
5359         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5360         local gid1=14091995
5361         local gid2=16022000
5362
5363         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5364         local MULTIPID1=$!
5365         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5366         local MULTIPID2=$!
5367         kill -USR1 $MULTIPID2
5368         sleep 2
5369         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5370                 error "First grouplock does not block second one"
5371         else
5372                 echo "Second grouplock blocks first one"
5373         fi
5374         kill -USR1 $MULTIPID1
5375         wait $MULTIPID1
5376         wait $MULTIPID2
5377 }
5378 run_test 82 "Basic grouplock test ==============================="
5379
5380 test_99a() {
5381         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
5382             return
5383         test_mkdir -p $DIR/d99cvsroot
5384         chown $RUNAS_ID $DIR/d99cvsroot
5385         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5386         cd $TMP
5387
5388         $RUNAS cvs -d $DIR/d99cvsroot init || error
5389         cd $oldPWD
5390 }
5391 run_test 99a "cvs init ========================================="
5392
5393 test_99b() {
5394         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5395         [ ! -d $DIR/d99cvsroot ] && test_99a
5396         cd /etc/init.d
5397         # some versions of cvs import exit(1) when asked to import links or
5398         # files they can't read.  ignore those files.
5399         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5400                         ! -perm +4 -printf '-I %f\n')
5401         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5402                 d99reposname vtag rtag
5403 }
5404 run_test 99b "cvs import ======================================="
5405
5406 test_99c() {
5407         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5408         [ ! -d $DIR/d99cvsroot ] && test_99b
5409         cd $DIR
5410         test_mkdir -p $DIR/d99reposname
5411         chown $RUNAS_ID $DIR/d99reposname
5412         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5413 }
5414 run_test 99c "cvs checkout ====================================="
5415
5416 test_99d() {
5417         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5418         [ ! -d $DIR/d99cvsroot ] && test_99c
5419         cd $DIR/d99reposname
5420         $RUNAS touch foo99
5421         $RUNAS cvs add -m 'addmsg' foo99
5422 }
5423 run_test 99d "cvs add =========================================="
5424
5425 test_99e() {
5426         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5427         [ ! -d $DIR/d99cvsroot ] && test_99c
5428         cd $DIR/d99reposname
5429         $RUNAS cvs update
5430 }
5431 run_test 99e "cvs update ======================================="
5432
5433 test_99f() {
5434         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5435         [ ! -d $DIR/d99cvsroot ] && test_99d
5436         cd $DIR/d99reposname
5437         $RUNAS cvs commit -m 'nomsg' foo99
5438     rm -fr $DIR/d99cvsroot
5439 }
5440 run_test 99f "cvs commit ======================================="
5441
5442 test_100() {
5443         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5444         [ "$NETTYPE" = tcp ] || \
5445                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5446                         return ; }
5447
5448         remote_ost_nodsh && skip "remote OST with nodsh" && return
5449         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5450         remote_servers || \
5451                 { skip "useless for local single node setup" && return; }
5452
5453         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5454                 [ "$PROT" != "tcp" ] && continue
5455                 RPORT=$(echo $REMOTE | cut -d: -f2)
5456                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5457
5458                 rc=0
5459                 LPORT=`echo $LOCAL | cut -d: -f2`
5460                 if [ $LPORT -ge 1024 ]; then
5461                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5462                         netstat -tna
5463                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5464                 fi
5465         done
5466         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5467 }
5468 run_test 100 "check local port using privileged port ==========="
5469
5470 function get_named_value()
5471 {
5472     local tag
5473
5474     tag=$1
5475     while read ;do
5476         line=$REPLY
5477         case $line in
5478         $tag*)
5479             echo $line | sed "s/^$tag[ ]*//"
5480             break
5481             ;;
5482         esac
5483     done
5484 }
5485
5486 export CACHE_MAX=`$LCTL get_param -n llite.*.max_cached_mb | head -n 1`
5487 cleanup_101a() {
5488         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5489         trap 0
5490 }
5491
5492 test_101a() {
5493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5494         local s
5495         local discard
5496         local nreads=10000
5497         [ "$CPU" = "UML" ] && nreads=1000
5498         local cache_limit=32
5499
5500         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5501         trap cleanup_101a EXIT
5502         $LCTL set_param -n llite.*.read_ahead_stats 0
5503         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5504
5505         #
5506         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5507         #
5508         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5509         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5510
5511         discard=0
5512         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5513                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5514                         discard=$(($discard + $s))
5515         done
5516         cleanup_101a
5517
5518         if [ $(($discard * 10)) -gt $nreads ] ;then
5519                 $LCTL get_param osc.*-osc*.rpc_stats
5520                 $LCTL get_param llite.*.read_ahead_stats
5521                 error "too many ($discard) discarded pages"
5522         fi
5523         rm -f $DIR/$tfile || true
5524 }
5525 run_test 101a "check read-ahead for random reads ================"
5526
5527 setup_test101bc() {
5528         test_mkdir -p $DIR/$tdir
5529         STRIPE_SIZE=1048576
5530         STRIPE_COUNT=$OSTCOUNT
5531         STRIPE_OFFSET=0
5532
5533         local list=$(comma_list $(osts_nodes))
5534         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=0
5535         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=0
5536
5537         trap cleanup_test101bc EXIT
5538         # prepare the read-ahead file
5539         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5540
5541         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5542 }
5543
5544 cleanup_test101bc() {
5545         trap 0
5546         rm -rf $DIR/$tdir
5547         rm -f $DIR/$tfile
5548
5549         local list=$(comma_list $(osts_nodes))
5550         do_nodes $list $LCTL set_param -n obdfilter.*.read_cache_enable=1
5551         do_nodes $list $LCTL set_param -n obdfilter.*.writethrough_cache_enable=1
5552 }
5553
5554 calc_total() {
5555         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5556 }
5557
5558 ra_check_101() {
5559         local READ_SIZE=$1
5560         local STRIPE_SIZE=1048576
5561         local RA_INC=1048576
5562         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5563         local FILE_LENGTH=$((64*100))
5564         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5565                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5566         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5567                         get_named_value 'read but discarded' | \
5568                         cut -d" " -f1 | calc_total`
5569         if [ $DISCARD -gt $discard_limit ]; then
5570                 $LCTL get_param llite.*.read_ahead_stats
5571                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5572         else
5573                 echo "Read-ahead success for size ${READ_SIZE}"
5574         fi
5575 }
5576
5577 test_101b() {
5578         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5579         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5580         local STRIPE_SIZE=1048576
5581         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5582         local FILE_LENGTH=$((STRIPE_SIZE*100))
5583         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5584         # prepare the read-ahead file
5585         setup_test101bc
5586         cancel_lru_locks osc
5587         for BIDX in 2 4 8 16 32 64 128 256
5588         do
5589                 local BSIZE=$((BIDX*4096))
5590                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5591                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5592                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5593                 $LCTL set_param -n llite.*.read_ahead_stats 0
5594                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5595                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5596                 cancel_lru_locks osc
5597                 ra_check_101 $BSIZE
5598         done
5599         cleanup_test101bc
5600         true
5601 }
5602 run_test 101b "check stride-io mode read-ahead ================="
5603
5604 test_101c() {
5605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5606         local STRIPE_SIZE=1048576
5607         local FILE_LENGTH=$((STRIPE_SIZE*100))
5608         local nreads=10000
5609         local osc
5610
5611     setup_test101bc
5612
5613     cancel_lru_locks osc
5614     $LCTL set_param osc.*.rpc_stats 0
5615     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5616     for osc in $($LCTL get_param -N osc.*); do
5617         if [ "$osc" == "osc.num_refs" ]; then
5618             continue
5619         fi
5620
5621         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5622         if [ $lines -le 20 ]; then
5623             continue
5624         fi
5625
5626         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5627                                      awk '$1 == "1:" { print $2; exit; }')
5628         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5629                                      awk '$1 == "2:" { print $2; exit; }')
5630         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5631                                      awk '$1 == "4:" { print $2; exit; }')
5632         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5633                                      awk '$1 == "8:" { print $2; exit; }')
5634
5635         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5636         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5637         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5638         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5639         echo "${osc} rpc check passed!"
5640     done
5641     cleanup_test101bc
5642     true
5643 }
5644 run_test 101c "check stripe_size aligned read-ahead ================="
5645
5646 set_read_ahead() {
5647    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5648    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5649 }
5650
5651 test_101d() {
5652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5653         local file=$DIR/$tfile
5654         local size=${FILESIZE_101c:-500}
5655         local ra_MB=${READAHEAD_MB:-40}
5656
5657         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5658         [ $space -gt $((size * 1024)) ] ||
5659                 { skip "Need free space ${size}M, have $space" && return; }
5660
5661     echo Creating ${size}M test file $file
5662     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5663     echo Cancel LRU locks on lustre client to flush the client cache
5664     cancel_lru_locks osc
5665
5666     echo Disable read-ahead
5667     local old_READAHEAD=$(set_read_ahead 0)
5668
5669     echo Reading the test file $file with read-ahead disabled
5670     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5671
5672     echo Cancel LRU locks on lustre client to flush the client cache
5673     cancel_lru_locks osc
5674     echo Enable read-ahead with ${ra_MB}MB
5675     set_read_ahead $ra_MB
5676
5677     echo Reading the test file $file with read-ahead enabled
5678     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5679
5680     echo read-ahead disabled time read $time_ra_OFF
5681     echo read-ahead enabled  time read $time_ra_ON
5682
5683         set_read_ahead $old_READAHEAD
5684         rm -f $file
5685         wait_delete_completed
5686
5687     [ $time_ra_ON -lt $time_ra_OFF ] ||
5688         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5689                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5690 }
5691 run_test 101d "file read with and without read-ahead enabled  ================="
5692
5693 test_101e() {
5694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5695     local file=$DIR/$tfile
5696     local size=500  #KB
5697     local count=100
5698     local blksize=1024
5699
5700     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5701     local need_space=$((count * size))
5702     [ $space -gt $need_space ] ||
5703         { skip_env "Need free space $need_space, have $space" && return; }
5704
5705     echo Creating $count ${size}K test files
5706     for ((i = 0; i < $count; i++)); do
5707         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5708     done
5709
5710     echo Cancel LRU locks on lustre client to flush the client cache
5711     cancel_lru_locks osc
5712
5713     echo Reset readahead stats
5714     $LCTL set_param -n llite.*.read_ahead_stats 0
5715
5716     for ((i = 0; i < $count; i++)); do
5717         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5718     done
5719
5720     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5721           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5722
5723     for ((i = 0; i < $count; i++)); do
5724         rm -rf ${file}_${i} 2>/dev/null
5725     done
5726
5727     #10000 means 20% reads are missing in readahead
5728     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5729 }
5730 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5731
5732 cleanup_test101f() {
5733     trap 0
5734     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5735     rm -rf $DIR/$tfile 2>/dev/null
5736 }
5737
5738 test_101f() {
5739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5740     local file=$DIR/$tfile
5741     local nreads=1000
5742
5743     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5744     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5745     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5746     trap cleanup_test101f EXIT
5747
5748     echo Cancel LRU locks on lustre client to flush the client cache
5749     cancel_lru_locks osc
5750
5751     echo Reset readahead stats
5752     $LCTL set_param -n llite.*.read_ahead_stats 0
5753     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5754     # readahead should read in 2M file on second read, so only miss
5755     # 2 pages.
5756     echo Random 4K reads on 2M file for 1000 times
5757     $READS -f $file -s 2097152 -b 4096 -n $nreads
5758
5759     echo checking missing pages
5760     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5761           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5762
5763     [ $miss -lt 3 ] || error "misses too much pages!"
5764     cleanup_test101f
5765 }
5766 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5767
5768 setup_test102() {
5769         test_mkdir -p $DIR/$tdir
5770         chown $RUNAS_ID $DIR/$tdir
5771         STRIPE_SIZE=65536
5772         STRIPE_OFFSET=1
5773         STRIPE_COUNT=$OSTCOUNT
5774         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5775
5776         trap cleanup_test102 EXIT
5777         cd $DIR
5778         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5779         cd $DIR/$tdir
5780         for num in 1 2 3 4; do
5781                 for count in $(seq 1 $STRIPE_COUNT); do
5782                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5783                                 local size=`expr $STRIPE_SIZE \* $num`
5784                                 local file=file"$num-$idx-$count"
5785                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5786                         done
5787                 done
5788         done
5789
5790         cd $DIR
5791         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5792 }
5793
5794 cleanup_test102() {
5795         trap 0
5796         rm -f $TMP/f102.tar
5797         rm -rf $DIR/d0.sanity/d102
5798 }
5799
5800 test_102a() {
5801         local testfile=$DIR/xattr_testfile
5802
5803         touch $testfile
5804
5805         [ "$UID" != 0 ] && skip_env "must run as root" && return
5806         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5807                 skip_env "must have user_xattr" && return
5808
5809         [ -z "$(which setfattr 2>/dev/null)" ] &&
5810                 skip_env "could not find setfattr" && return
5811
5812         echo "set/get xattr..."
5813         setfattr -n trusted.name1 -v value1 $testfile || error
5814         getfattr -n trusted.name1 $testfile 2> /dev/null |
5815           grep "trusted.name1=.value1" ||
5816                 error "$testfile missing trusted.name1=value1"
5817
5818         setfattr -n user.author1 -v author1 $testfile || error
5819         getfattr -n user.author1 $testfile 2> /dev/null |
5820           grep "user.author1=.author1" ||
5821                 error "$testfile missing trusted.author1=author1"
5822
5823         echo "listxattr..."
5824         setfattr -n trusted.name2 -v value2 $testfile ||
5825                 error "$testfile unable to set trusted.name2"
5826         setfattr -n trusted.name3 -v value3 $testfile ||
5827                 error "$testfile unable to set trusted.name3"
5828         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
5829             grep "trusted.name" | wc -l) -eq 3 ] ||
5830                 error "$testfile missing 3 trusted.name xattrs"
5831
5832         setfattr -n user.author2 -v author2 $testfile ||
5833                 error "$testfile unable to set user.author2"
5834         setfattr -n user.author3 -v author3 $testfile ||
5835                 error "$testfile unable to set user.author3"
5836         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
5837             grep "user.author" | wc -l) -eq 3 ] ||
5838                 error "$testfile missing 3 user.author xattrs"
5839
5840         echo "remove xattr..."
5841         setfattr -x trusted.name1 $testfile ||
5842                 error "$testfile error deleting trusted.name1"
5843         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
5844                 error "$testfile did not delete trusted.name1 xattr"
5845
5846         setfattr -x user.author1 $testfile ||
5847                 error "$testfile error deleting user.author1"
5848         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
5849                 error "$testfile did not delete trusted.name1 xattr"
5850
5851         # b10667: setting lustre special xattr be silently discarded
5852         echo "set lustre special xattr ..."
5853         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
5854                 error "$testfile allowed setting trusted.lov"
5855 }
5856 run_test 102a "user xattr test =================================="
5857
5858 test_102b() {
5859         # b10930: get/set/list trusted.lov xattr
5860         echo "get/set/list trusted.lov xattr ..."
5861         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5862         local testfile=$DIR/$tfile
5863         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5864                 error "setstripe failed"
5865         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
5866                 error "getstripe failed"
5867         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
5868         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
5869
5870         local testfile2=${testfile}2
5871         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
5872                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
5873
5874         $MCREATE $testfile2
5875         setfattr -n trusted.lov -v $value $testfile2
5876         local stripe_size=$($GETSTRIPE -S $testfile2)
5877         local stripe_count=$($GETSTRIPE -c $testfile2)
5878         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5879         [ $stripe_count -eq $STRIPECOUNT ] ||
5880                 error "stripe count $stripe_count != $STRIPECOUNT"
5881         rm -f $DIR/$tfile
5882 }
5883 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
5884
5885 test_102c() {
5886         # b10930: get/set/list lustre.lov xattr
5887         echo "get/set/list lustre.lov xattr ..."
5888         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
5889         test_mkdir -p $DIR/$tdir
5890         chown $RUNAS_ID $DIR/$tdir
5891         local testfile=$DIR/$tdir/$tfile
5892         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
5893                 error "setstripe failed"
5894         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
5895                 error "getstripe failed"
5896         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
5897         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
5898
5899         local testfile2=${testfile}2
5900         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
5901                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
5902
5903         $RUNAS $MCREATE $testfile2
5904         $RUNAS setfattr -n lustre.lov -v $value $testfile2
5905         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
5906         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
5907         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
5908         [ $stripe_count -eq $STRIPECOUNT ] ||
5909                 error "stripe count $stripe_count != $STRIPECOUNT"
5910 }
5911 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
5912
5913 compare_stripe_info1() {
5914         local stripe_index_all_zero=true
5915
5916         for num in 1 2 3 4; do
5917                 for count in $(seq 1 $STRIPE_COUNT); do
5918                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
5919                                 local size=$((STRIPE_SIZE * num))
5920                                 local file=file"$num-$offset-$count"
5921                                 stripe_size=$(lfs getstripe -S $PWD/$file)
5922                                 [ $stripe_size -ne $size ] &&
5923                                     error "$file: size $stripe_size != $size"
5924                                 stripe_count=$(lfs getstripe -c $PWD/$file)
5925                                 # allow fewer stripes to be created, ORI-601
5926                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
5927                                     error "$file: count $stripe_count != $count"
5928                                 stripe_index=$(lfs getstripe -i $PWD/$file)
5929                                 [ $stripe_index -ne 0 ] &&
5930                                         stripe_index_all_zero=false
5931                         done
5932                 done
5933         done
5934         $stripe_index_all_zero &&
5935                 error "all files are being extracted starting from OST index 0"
5936         return 0
5937 }
5938
5939 find_lustre_tar() {
5940         [ -n "$(which tar 2>/dev/null)" ] &&
5941                 strings $(which tar) | grep -q "lustre" && echo tar
5942 }
5943
5944 test_102d() {
5945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5946         # b10930: tar test for trusted.lov xattr
5947         TAR=$(find_lustre_tar)
5948         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5949         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5950         setup_test102
5951         test_mkdir -p $DIR/d102d
5952         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
5953         cd $DIR/d102d/$tdir
5954         compare_stripe_info1
5955 }
5956 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
5957
5958 test_102f() {
5959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5960         # b10930: tar test for trusted.lov xattr
5961         TAR=$(find_lustre_tar)
5962         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
5963         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
5964         setup_test102
5965         test_mkdir -p $DIR/d102f
5966         cd $DIR
5967         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
5968         cd $DIR/d102f/$tdir
5969         compare_stripe_info1
5970 }
5971 run_test 102f "tar copy files, not keep osts ==========="
5972
5973 grow_xattr() {
5974         local xsize=${1:-1024}  # in bytes
5975         local file=$DIR/$tfile
5976
5977         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
5978                 skip "must have user_xattr" && return 0
5979         [ -z "$(which setfattr 2>/dev/null)" ] &&
5980                 skip_env "could not find setfattr" && return 0
5981         [ -z "$(which getfattr 2>/dev/null)" ] &&
5982                 skip_env "could not find getfattr" && return 0
5983
5984         touch $file
5985
5986         local value="$(generate_string $xsize)"
5987
5988         local xbig=trusted.big
5989         log "save $xbig on $file"
5990         setfattr -n $xbig -v $value $file ||
5991                 error "saving $xbig on $file failed"
5992
5993         local orig=$(get_xattr_value $xbig $file)
5994         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
5995
5996         local xsml=trusted.sml
5997         log "save $xsml on $file"
5998         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
5999
6000         local new=$(get_xattr_value $xbig $file)
6001         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6002
6003         log "grow $xsml on $file"
6004         setfattr -n $xsml -v "$value" $file ||
6005                 error "growing $xsml on $file failed"
6006
6007         new=$(get_xattr_value $xbig $file)
6008         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6009         log "$xbig still valid after growing $xsml"
6010
6011         rm -f $file
6012 }
6013
6014 test_102h() { # bug 15777
6015         grow_xattr 1024
6016 }
6017 run_test 102h "grow xattr from inside inode to external block"
6018
6019 test_102ha() {
6020         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6021         grow_xattr $(max_xattr_size)
6022 }
6023 run_test 102ha "grow xattr from inside inode to external inode"
6024
6025 test_102i() { # bug 17038
6026         touch $DIR/$tfile
6027         ln -s $DIR/$tfile $DIR/${tfile}link
6028         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6029         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"
6030         rm -f $DIR/$tfile $DIR/${tfile}link
6031 }
6032 run_test 102i "lgetxattr test on symbolic link ============"
6033
6034 test_102j() {
6035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6036         TAR=$(find_lustre_tar)
6037         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6038         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6039         setup_test102 "$RUNAS"
6040         test_mkdir -p $DIR/d102j
6041         chown $RUNAS_ID $DIR/d102j
6042         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6043         cd $DIR/d102j/$tdir
6044         compare_stripe_info1 "$RUNAS"
6045 }
6046 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6047
6048 test_102k() {
6049         touch $DIR/$tfile
6050         # b22187 just check that does not crash for regular file.
6051         setfattr -n trusted.lov $DIR/$tfile
6052         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6053         local test_kdir=$DIR/d102k
6054         test_mkdir $test_kdir
6055         local default_size=`$GETSTRIPE -S $test_kdir`
6056         local default_count=`$GETSTRIPE -c $test_kdir`
6057         local default_offset=`$GETSTRIPE -i $test_kdir`
6058         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $test_kdir ||
6059                 error 'dir setstripe failed'
6060         setfattr -n trusted.lov $test_kdir
6061         local stripe_size=`$GETSTRIPE -S $test_kdir`
6062         local stripe_count=`$GETSTRIPE -c $test_kdir`
6063         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6064         [ $stripe_size -eq $default_size ] ||
6065                 error "stripe size $stripe_size != $default_size"
6066         [ $stripe_count -eq $default_count ] ||
6067                 error "stripe count $stripe_count != $default_count"
6068         [ $stripe_offset -eq $default_offset ] ||
6069                 error "stripe offset $stripe_offset != $default_offset"
6070         rm -rf $DIR/$tfile $test_kdir
6071 }
6072 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6073
6074 test_102l() {
6075         # LU-532 trusted. xattr is invisible to non-root
6076         local testfile=$DIR/$tfile
6077
6078         touch $testfile
6079
6080         echo "listxattr as user..."
6081         chown $RUNAS_ID $testfile
6082         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6083             grep -q "trusted" &&
6084                 error "$testfile trusted xattrs are user visible"
6085
6086         return 0;
6087 }
6088 run_test 102l "listxattr filter test =================================="
6089
6090 cleanup_test102
6091
6092 run_acl_subtest()
6093 {
6094     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6095     return $?
6096 }
6097
6098 test_103 () {
6099     [ "$UID" != 0 ] && skip_env "must run as root" && return
6100     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6101     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
6102     $GSS && skip "could not run under gss" && return
6103
6104     declare -a identity_old
6105
6106         for num in $(seq $MDSCOUNT); do
6107                 switch_identity $num true || identity_old[$num]=$?
6108         done
6109
6110     SAVE_UMASK=`umask`
6111     umask 0022
6112     cd $DIR
6113
6114     echo "performing cp ..."
6115     run_acl_subtest cp || error
6116     echo "performing getfacl-noacl..."
6117     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6118     echo "performing misc..."
6119     run_acl_subtest misc || error  "misc test failed"
6120     echo "performing permissions..."
6121     run_acl_subtest permissions || error "permissions failed"
6122     echo "performing setfacl..."
6123     run_acl_subtest setfacl || error  "setfacl test failed"
6124
6125     # inheritance test got from HP
6126     echo "performing inheritance..."
6127     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6128     chmod +x make-tree || error "chmod +x failed"
6129     run_acl_subtest inheritance || error "inheritance test failed"
6130     rm -f make-tree
6131
6132     echo "LU-974 ignore umask when acl is enabled..."
6133     mkdir $DIR/974
6134     cd $DIR/974
6135     run_acl_subtest 974 || error "LU-974 test failed"
6136     rm -rf $DIR/974
6137
6138     cd $SAVE_PWD
6139     umask $SAVE_UMASK
6140
6141         for num in $(seq $MDSCOUNT); do
6142                 if [ "${identity_old[$num]}" = 1 ]; then
6143                         switch_identity $num false || identity_old[$num]=$?
6144                 fi
6145         done
6146 }
6147 run_test 103 "acl test ========================================="
6148
6149 test_104a() {
6150         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6151         touch $DIR/$tfile
6152         lfs df || error "lfs df failed"
6153         lfs df -ih || error "lfs df -ih failed"
6154         lfs df -h $DIR || error "lfs df -h $DIR failed"
6155         lfs df -i $DIR || error "lfs df -i $DIR failed"
6156         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6157         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6158
6159         OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
6160         lctl --device %$OSC deactivate
6161         lfs df || error "lfs df with deactivated OSC failed"
6162         lctl --device %$OSC activate
6163         # wait the osc back to normal
6164         wait_osc_import_state client ost FULL
6165
6166         lfs df || error "lfs df with reactivated OSC failed"
6167         rm -f $DIR/$tfile
6168 }
6169 run_test 104a "lfs df [-ih] [path] test ========================="
6170
6171 test_104b() {
6172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6173         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6174         chmod 666 /dev/obd
6175         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
6176         if [ $denied_cnt -ne 0 ];
6177         then
6178                     error "lfs check servers test failed"
6179         fi
6180 }
6181 run_test 104b "$RUNAS lfs check servers test ===================="
6182
6183 test_105a() {
6184         # doesn't work on 2.4 kernels
6185         touch $DIR/$tfile
6186         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6187                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6188         else
6189                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6190         fi
6191         rm -f $DIR/$tfile
6192 }
6193 run_test 105a "flock when mounted without -o flock test ========"
6194
6195 test_105b() {
6196         touch $DIR/$tfile
6197         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6198                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6199         else
6200                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6201         fi
6202         rm -f $DIR/$tfile
6203 }
6204 run_test 105b "fcntl when mounted without -o flock test ========"
6205
6206 test_105c() {
6207         touch $DIR/$tfile
6208         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6209                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6210         else
6211                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6212         fi
6213         rm -f $DIR/$tfile
6214 }
6215 run_test 105c "lockf when mounted without -o flock test ========"
6216
6217 test_105d() { # bug 15924
6218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6219         test_mkdir -p $DIR/$tdir
6220         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6221                 skip "mount w/o flock enabled" && return
6222         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6223         $LCTL set_param fail_loc=0x80000315
6224         flocks_test 2 $DIR/$tdir
6225 }
6226 run_test 105d "flock race (should not freeze) ========"
6227
6228 test_105e() { # bug 22660 && 22040
6229         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6230                 skip "mount w/o flock enabled" && return
6231         touch $DIR/$tfile
6232         flocks_test 3 $DIR/$tfile
6233 }
6234 run_test 105e "Two conflicting flocks from same process ======="
6235
6236 test_106() { #bug 10921
6237         test_mkdir -p $DIR/$tdir
6238         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6239         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6240 }
6241 run_test 106 "attempt exec of dir followed by chown of that dir"
6242
6243 test_107() {
6244         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6245         CDIR=`pwd`
6246         cd $DIR
6247
6248         local file=core
6249         rm -f $file
6250
6251         local save_pattern=$(sysctl -n kernel.core_pattern)
6252         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6253         sysctl -w kernel.core_pattern=$file
6254         sysctl -w kernel.core_uses_pid=0
6255
6256         ulimit -c unlimited
6257         sleep 60 &
6258         SLEEPPID=$!
6259
6260         sleep 1
6261
6262         kill -s 11 $SLEEPPID
6263         wait $SLEEPPID
6264         if [ -e $file ]; then
6265                 size=`stat -c%s $file`
6266                 [ $size -eq 0 ] && error "Fail to create core file $file"
6267         else
6268                 error "Fail to create core file $file"
6269         fi
6270         rm -f $file
6271         sysctl -w kernel.core_pattern=$save_pattern
6272         sysctl -w kernel.core_uses_pid=$save_uses_pid
6273         cd $CDIR
6274 }
6275 run_test 107 "Coredump on SIG"
6276
6277 test_110() {
6278         test_mkdir -p $DIR/$tdir
6279         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6280                 error "mkdir with 255 char failed"
6281         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6282                 error "mkdir with 256 char should fail, but did not"
6283         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6284                 error "create with 255 char failed"
6285         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6286                 error "create with 256 char should fail, but did not"
6287
6288         ls -l $DIR/$tdir
6289         rm -rf $DIR/$tdir
6290 }
6291 run_test 110 "filename length checking"
6292
6293 test_115() {
6294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6295         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6296             cut -c11-20)
6297         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6298             return
6299         echo "Starting with $OSTIO_pre threads"
6300
6301         NUMTEST=20000
6302         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6303         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6304         echo "$NUMTEST creates/unlinks"
6305         test_mkdir -p $DIR/$tdir
6306         createmany -o $DIR/$tdir/$tfile $NUMTEST
6307         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6308
6309         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6310             cut -c11-20)
6311
6312         # don't return an error
6313         [ $OSTIO_post == $OSTIO_pre ] && echo \
6314             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6315             echo "This may be fine, depending on what ran before this test" &&
6316             echo "and how fast this system is." && return
6317
6318         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6319 }
6320 run_test 115 "verify dynamic thread creation===================="
6321
6322 free_min_max () {
6323         wait_delete_completed
6324         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6325         echo OST kbytes available: ${AVAIL[@]}
6326         MAXI=0; MAXV=${AVAIL[0]}
6327         MINI=0; MINV=${AVAIL[0]}
6328         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6329             #echo OST $i: ${AVAIL[i]}kb
6330             if [ ${AVAIL[i]} -gt $MAXV ]; then
6331                 MAXV=${AVAIL[i]}; MAXI=$i
6332             fi
6333             if [ ${AVAIL[i]} -lt $MINV ]; then
6334                 MINV=${AVAIL[i]}; MINI=$i
6335             fi
6336         done
6337         echo Min free space: OST $MINI: $MINV
6338         echo Max free space: OST $MAXI: $MAXV
6339 }
6340
6341 test_116a() { # was previously test_116()
6342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6343         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6344
6345         echo -n "Free space priority "
6346         lctl get_param -n lov.*-clilov-*.qos_prio_free
6347         declare -a AVAIL
6348         free_min_max
6349         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6350                 return
6351
6352         # generate uneven OSTs
6353         test_mkdir -p $DIR/$tdir/OST${MINI}
6354         declare -i FILL
6355         FILL=$(($MINV / 4))
6356         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6357         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6358         i=0
6359         while [ $FILL -gt 0 ]; do
6360             i=$(($i + 1))
6361             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6362             FILL=$(($FILL - 2048))
6363             echo -n .
6364         done
6365         FILL=$(($MINV / 4))
6366         sync
6367         sleep_maxage
6368
6369         free_min_max
6370         DIFF=$(($MAXV - $MINV))
6371         DIFF2=$(($DIFF * 100 / $MINV))
6372         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6373         if [ $DIFF2 -gt 20 ]; then
6374             echo "ok"
6375         else
6376             echo "failed - QOS mode won't be used"
6377             error_ignore "QOS imbalance criteria not met"
6378             return
6379         fi
6380
6381         MINI1=$MINI; MINV1=$MINV
6382         MAXI1=$MAXI; MAXV1=$MAXV
6383
6384         # now fill using QOS
6385         echo writing a bunch of files to QOS-assigned OSTs
6386         $SETSTRIPE -c 1 $DIR/$tdir
6387         i=0
6388         while [ $FILL -gt 0 ]; do
6389             i=$(($i + 1))
6390             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6391             FILL=$(($FILL - 200))
6392             echo -n .
6393         done
6394         echo "wrote $i 200k files"
6395         sync
6396         sleep_maxage
6397
6398         echo "Note: free space may not be updated, so measurements might be off"
6399         free_min_max
6400         DIFF2=$(($MAXV - $MINV))
6401         echo "free space delta: orig $DIFF final $DIFF2"
6402         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6403         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6404         echo "Wrote $DIFF to smaller OST $MINI1"
6405         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6406         echo "Wrote $DIFF2 to larger OST $MAXI1"
6407         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6408
6409         # Figure out which files were written where
6410         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6411                awk '/'$MINI1': / {print $2; exit}')
6412         echo $UUID
6413         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6414         echo "$MINC files created on smaller OST $MINI1"
6415         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6416                awk '/'$MAXI1': / {print $2; exit}')
6417         echo $UUID
6418         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6419         echo "$MAXC files created on larger OST $MAXI1"
6420         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6421         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6422
6423         rm -rf $DIR/$tdir
6424 }
6425 run_test 116a "stripe QOS: free space balance ==================="
6426
6427 test_116b() { # LU-2093
6428         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6429 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6430         local old_rr
6431         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6432         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6433         mkdir -p $DIR/$tdir
6434         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6435         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6436         do_facet $SINGLEMDS lctl set_param fail_loc=0
6437         rm -rf $DIR/$tdir
6438         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6439 }
6440 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6441
6442 test_117() # bug 10891
6443 {
6444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6445         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6446         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6447         lctl set_param fail_loc=0x21e
6448         > $DIR/$tfile || error "truncate failed"
6449         lctl set_param fail_loc=0
6450         echo "Truncate succeeded."
6451         rm -f $DIR/$tfile
6452 }
6453 run_test 117 "verify fsfilt_extend =========="
6454
6455 export OLD_RESENDCOUNT=""
6456 set_resend_count () {
6457         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6458         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6459         lctl set_param -n $PROC_RESENDCOUNT $1
6460         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6461 }
6462
6463 [ "$SLOW" = "no" ] && set_resend_count 4 # for reduce test_118* time (bug 14842)
6464
6465 # Reset async IO behavior after error case
6466 reset_async() {
6467         FILE=$DIR/reset_async
6468
6469         # Ensure all OSCs are cleared
6470         $SETSTRIPE -c -1 $FILE
6471         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6472         sync
6473         rm $FILE
6474 }
6475
6476 test_118a() #bug 11710
6477 {
6478         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6479         reset_async
6480
6481         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6482         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6483         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6484
6485         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6486                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6487                 return 1;
6488         fi
6489         rm -f $DIR/$tfile
6490 }
6491 run_test 118a "verify O_SYNC works =========="
6492
6493 test_118b()
6494 {
6495         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6496         remote_ost_nodsh && skip "remote OST with nodsh" && return
6497
6498         reset_async
6499
6500         #define OBD_FAIL_OST_ENOENT 0x217
6501         set_nodes_failloc "$(osts_nodes)" 0x217
6502         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6503         RC=$?
6504         set_nodes_failloc "$(osts_nodes)" 0
6505         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6506         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6507                     grep -c writeback)
6508
6509         if [[ $RC -eq 0 ]]; then
6510                 error "Must return error due to dropped pages, rc=$RC"
6511                 return 1;
6512         fi
6513
6514         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6515                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6516                 return 1;
6517         fi
6518
6519         echo "Dirty pages not leaked on ENOENT"
6520
6521         # Due to the above error the OSC will issue all RPCs syncronously
6522         # until a subsequent RPC completes successfully without error.
6523         $MULTIOP $DIR/$tfile Ow4096yc
6524         rm -f $DIR/$tfile
6525
6526         return 0
6527 }
6528 run_test 118b "Reclaim dirty pages on fatal error =========="
6529
6530 test_118c()
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_EROFS               0x216
6538         set_nodes_failloc "$(osts_nodes)" 0x216
6539
6540         # multiop should block due to fsync until pages are written
6541         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6542         MULTIPID=$!
6543         sleep 1
6544
6545         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6546                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6547         fi
6548
6549         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6550                     grep -c writeback)
6551         if [[ $WRITEBACK -eq 0 ]]; then
6552                 error "No page in writeback, writeback=$WRITEBACK"
6553         fi
6554
6555         set_nodes_failloc "$(osts_nodes)" 0
6556         wait $MULTIPID
6557         RC=$?
6558         if [[ $RC -ne 0 ]]; then
6559                 error "Multiop fsync failed, rc=$RC"
6560         fi
6561
6562         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6563         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6564                     grep -c writeback)
6565         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6566                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6567         fi
6568
6569         rm -f $DIR/$tfile
6570         echo "Dirty pages flushed via fsync on EROFS"
6571         return 0
6572 }
6573 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6574
6575 test_118d()
6576 {
6577         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6578         remote_ost_nodsh && skip "remote OST with nodsh" && return
6579
6580         reset_async
6581
6582         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6583         set_nodes_failloc "$(osts_nodes)" 0x214
6584         # multiop should block due to fsync until pages are written
6585         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6586         MULTIPID=$!
6587         sleep 1
6588
6589         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6590                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6591         fi
6592
6593         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6594                     grep -c writeback)
6595         if [[ $WRITEBACK -eq 0 ]]; then
6596                 error "No page in writeback, writeback=$WRITEBACK"
6597         fi
6598
6599         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6600         set_nodes_failloc "$(osts_nodes)" 0
6601
6602         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6603         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6604                     grep -c writeback)
6605         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6606                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6607         fi
6608
6609         rm -f $DIR/$tfile
6610         echo "Dirty pages gaurenteed flushed via fsync"
6611         return 0
6612 }
6613 run_test 118d "Fsync validation inject a delay of the bulk =========="
6614
6615 test_118f() {
6616         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6617         reset_async
6618
6619         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6620         lctl set_param fail_loc=0x8000040a
6621
6622         # Should simulate EINVAL error which is fatal
6623         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6624         RC=$?
6625         if [[ $RC -eq 0 ]]; then
6626                 error "Must return error due to dropped pages, rc=$RC"
6627         fi
6628
6629         lctl set_param fail_loc=0x0
6630
6631         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6632         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6633         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6634                     grep -c writeback)
6635         if [[ $LOCKED -ne 0 ]]; then
6636                 error "Locked pages remain in cache, locked=$LOCKED"
6637         fi
6638
6639         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6640                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6641         fi
6642
6643         rm -f $DIR/$tfile
6644         echo "No pages locked after fsync"
6645
6646         reset_async
6647         return 0
6648 }
6649 run_test 118f "Simulate unrecoverable OSC side error =========="
6650
6651 test_118g() {
6652         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6653         reset_async
6654
6655         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6656         lctl set_param fail_loc=0x406
6657
6658         # simulate local -ENOMEM
6659         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6660         RC=$?
6661
6662         lctl set_param fail_loc=0
6663         if [[ $RC -eq 0 ]]; then
6664                 error "Must return error due to dropped pages, rc=$RC"
6665         fi
6666
6667         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6668         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6669         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6670                         grep -c writeback)
6671         if [[ $LOCKED -ne 0 ]]; then
6672                 error "Locked pages remain in cache, locked=$LOCKED"
6673         fi
6674
6675         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6676                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6677         fi
6678
6679         rm -f $DIR/$tfile
6680         echo "No pages locked after fsync"
6681
6682         reset_async
6683         return 0
6684 }
6685 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6686
6687 test_118h() {
6688         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6689         remote_ost_nodsh && skip "remote OST with nodsh" && return
6690
6691         reset_async
6692
6693         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6694         set_nodes_failloc "$(osts_nodes)" 0x20e
6695         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6696         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6697         RC=$?
6698
6699         set_nodes_failloc "$(osts_nodes)" 0
6700         if [[ $RC -eq 0 ]]; then
6701                 error "Must return error due to dropped pages, rc=$RC"
6702         fi
6703
6704         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6705         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6706         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6707                     grep -c writeback)
6708         if [[ $LOCKED -ne 0 ]]; then
6709                 error "Locked pages remain in cache, locked=$LOCKED"
6710         fi
6711
6712         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6713                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6714         fi
6715
6716         rm -f $DIR/$tfile
6717         echo "No pages locked after fsync"
6718
6719         return 0
6720 }
6721 run_test 118h "Verify timeout in handling recoverables errors  =========="
6722
6723 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6724
6725 test_118i() {
6726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6727         remote_ost_nodsh && skip "remote OST with nodsh" && return
6728
6729         reset_async
6730
6731         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6732         set_nodes_failloc "$(osts_nodes)" 0x20e
6733
6734         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6735         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6736         PID=$!
6737         sleep 5
6738         set_nodes_failloc "$(osts_nodes)" 0
6739
6740         wait $PID
6741         RC=$?
6742         if [[ $RC -ne 0 ]]; then
6743                 error "got error, but should be not, rc=$RC"
6744         fi
6745
6746         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6747         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6748         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6749         if [[ $LOCKED -ne 0 ]]; then
6750                 error "Locked pages remain in cache, locked=$LOCKED"
6751         fi
6752
6753         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6754                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6755         fi
6756
6757         rm -f $DIR/$tfile
6758         echo "No pages locked after fsync"
6759
6760         return 0
6761 }
6762 run_test 118i "Fix error before timeout in recoverable error  =========="
6763
6764 [ "$SLOW" = "no" ] && set_resend_count 4
6765
6766 test_118j() {
6767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6768         remote_ost_nodsh && skip "remote OST with nodsh" && return
6769
6770         reset_async
6771
6772         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6773         set_nodes_failloc "$(osts_nodes)" 0x220
6774
6775         # return -EIO from OST
6776         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6777         RC=$?
6778         set_nodes_failloc "$(osts_nodes)" 0x0
6779         if [[ $RC -eq 0 ]]; then
6780                 error "Must return error due to dropped pages, rc=$RC"
6781         fi
6782
6783         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6784         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6785         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6786         if [[ $LOCKED -ne 0 ]]; then
6787                 error "Locked pages remain in cache, locked=$LOCKED"
6788         fi
6789
6790         # in recoverable error on OST we want resend and stay until it finished
6791         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6792                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6793         fi
6794
6795         rm -f $DIR/$tfile
6796         echo "No pages locked after fsync"
6797
6798         return 0
6799 }
6800 run_test 118j "Simulate unrecoverable OST side error =========="
6801
6802 test_118k()
6803 {
6804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6805         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
6806
6807         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6808         set_nodes_failloc "$(osts_nodes)" 0x20e
6809         test_mkdir -p $DIR/$tdir
6810
6811         for ((i=0;i<10;i++)); do
6812                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
6813                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
6814                 SLEEPPID=$!
6815                 sleep 0.500s
6816                 kill $SLEEPPID
6817                 wait $SLEEPPID
6818         done
6819
6820         set_nodes_failloc "$(osts_nodes)" 0
6821         rm -rf $DIR/$tdir
6822 }
6823 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
6824
6825 test_118l()
6826 {
6827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6828         # LU-646
6829         test_mkdir -p $DIR/$tdir
6830         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
6831         rm -rf $DIR/$tdir
6832 }
6833 run_test 118l "fsync dir ========="
6834
6835 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6836
6837 test_119a() # bug 11737
6838 {
6839         BSIZE=$((512 * 1024))
6840         directio write $DIR/$tfile 0 1 $BSIZE
6841         # We ask to read two blocks, which is more than a file size.
6842         # directio will indicate an error when requested and actual
6843         # sizes aren't equeal (a normal situation in this case) and
6844         # print actual read amount.
6845         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
6846         if [ "$NOB" != "$BSIZE" ]; then
6847                 error "read $NOB bytes instead of $BSIZE"
6848         fi
6849         rm -f $DIR/$tfile
6850 }
6851 run_test 119a "Short directIO read must return actual read amount"
6852
6853 test_119b() # bug 11737
6854 {
6855         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6856
6857         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
6858         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
6859         sync
6860         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
6861                 error "direct read failed"
6862         rm -f $DIR/$tfile
6863 }
6864 run_test 119b "Sparse directIO read must return actual read amount"
6865
6866 test_119c() # bug 13099
6867 {
6868         BSIZE=1048576
6869         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
6870         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
6871         rm -f $DIR/$tfile
6872 }
6873 run_test 119c "Testing for direct read hitting hole"
6874
6875 test_119d() # bug 15950
6876 {
6877         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6878         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
6879         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
6880         BSIZE=1048576
6881         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
6882         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
6883         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
6884         lctl set_param fail_loc=0x40d
6885         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
6886         pid_dio=$!
6887         sleep 1
6888         cat $DIR/$tfile > /dev/null &
6889         lctl set_param fail_loc=0
6890         pid_reads=$!
6891         wait $pid_dio
6892         log "the DIO writes have completed, now wait for the reads (should not block very long)"
6893         sleep 2
6894         [ -n "`ps h -p $pid_reads -o comm`" ] && \
6895         error "the read rpcs have not completed in 2s"
6896         rm -f $DIR/$tfile
6897         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
6898 }
6899 run_test 119d "The DIO path should try to send a new rpc once one is completed"
6900
6901 test_120a() {
6902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6903         test_mkdir -p $DIR/$tdir
6904         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6905                skip "no early lock cancel on server" && return 0
6906         lru_resize_disable mdc
6907         lru_resize_disable osc
6908         cancel_lru_locks mdc
6909         stat $DIR/$tdir > /dev/null
6910         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6911         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6912         test_mkdir $DIR/$tdir/d1
6913         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6914         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6915         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6916         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6917         lru_resize_enable mdc
6918         lru_resize_enable osc
6919 }
6920 run_test 120a "Early Lock Cancel: mkdir test"
6921
6922 test_120b() {
6923         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6924         test_mkdir -p $DIR/$tdir
6925         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6926                skip "no early lock cancel on server" && return 0
6927         lru_resize_disable mdc
6928         lru_resize_disable osc
6929         cancel_lru_locks mdc
6930         stat $DIR/$tdir > /dev/null
6931         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6932         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6933         touch $DIR/$tdir/f1
6934         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6935         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6936         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6937         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6938         lru_resize_enable mdc
6939         lru_resize_enable osc
6940 }
6941 run_test 120b "Early Lock Cancel: create test"
6942
6943 test_120c() {
6944         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6945         test_mkdir -p $DIR/$tdir
6946         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6947                skip "no early lock cancel on server" && return 0
6948         lru_resize_disable mdc
6949         lru_resize_disable osc
6950         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
6951         touch $DIR/$tdir/d1/f1
6952         cancel_lru_locks mdc
6953         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /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         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
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 120c "Early Lock Cancel: link test"
6965
6966 test_120d() {
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         touch $DIR/$tdir
6974         cancel_lru_locks mdc
6975         stat $DIR/$tdir > /dev/null
6976         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6977         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6978         chmod a+x $DIR/$tdir
6979         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
6980         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
6981         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
6982         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
6983         lru_resize_enable mdc
6984         lru_resize_enable osc
6985 }
6986 run_test 120d "Early Lock Cancel: setattr test"
6987
6988 test_120e() {
6989         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6990         test_mkdir -p $DIR/$tdir
6991         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
6992                skip "no early lock cancel on server" && return 0
6993         lru_resize_disable mdc
6994         lru_resize_disable osc
6995         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
6996         cancel_lru_locks mdc
6997         cancel_lru_locks osc
6998         dd if=$DIR/$tdir/f1 of=/dev/null
6999         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7000         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7001               awk '/ldlm_cancel/ {print $2}'`
7002         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7003               awk '/ldlm_bl_callback/ {print $2}'`
7004         unlink $DIR/$tdir/f1
7005         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7006               awk '/ldlm_cancel/ {print $2}'`
7007         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7008               awk '/ldlm_bl_callback/ {print $2}'`
7009         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7010         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7011         lru_resize_enable mdc
7012         lru_resize_enable osc
7013 }
7014 run_test 120e "Early Lock Cancel: unlink test"
7015
7016 test_120f() {
7017         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7018         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7019                skip "no early lock cancel on server" && return 0
7020         test_mkdir -p $DIR/$tdir
7021         lru_resize_disable mdc
7022         lru_resize_disable osc
7023         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7024         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7025         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7026         cancel_lru_locks mdc
7027         cancel_lru_locks osc
7028         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7029         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7030         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7031         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7032               awk '/ldlm_cancel/ {print $2}'`
7033         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7034               awk '/ldlm_bl_callback/ {print $2}'`
7035         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7036         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7037               awk '/ldlm_cancel/ {print $2}'`
7038         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7039               awk '/ldlm_bl_callback/ {print $2}'`
7040         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7041         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7042         lru_resize_enable mdc
7043         lru_resize_enable osc
7044 }
7045 run_test 120f "Early Lock Cancel: rename test"
7046
7047 test_120g() {
7048         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7049         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7050                skip "no early lock cancel on server" && return 0
7051         lru_resize_disable mdc
7052         lru_resize_disable osc
7053         count=10000
7054         echo create $count files
7055         test_mkdir -p $DIR/$tdir
7056         cancel_lru_locks mdc
7057         cancel_lru_locks osc
7058         t0=`date +%s`
7059
7060         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7061               awk '/ldlm_cancel/ {print $2}'`
7062         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7063               awk '/ldlm_bl_callback/ {print $2}'`
7064         createmany -o $DIR/$tdir/f $count
7065         sync
7066         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7067               awk '/ldlm_cancel/ {print $2}'`
7068         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7069               awk '/ldlm_bl_callback/ {print $2}'`
7070         t1=`date +%s`
7071         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7072         echo rm $count files
7073         rm -r $DIR/$tdir
7074         sync
7075         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7076               awk '/ldlm_cancel/ {print $2}'`
7077         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7078               awk '/ldlm_bl_callback/ {print $2}'`
7079         t2=`date +%s`
7080         echo total: $count removes in $((t2-t1))
7081         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7082         sleep 2
7083         # wait for commitment of removal
7084         lru_resize_enable mdc
7085         lru_resize_enable osc
7086 }
7087 run_test 120g "Early Lock Cancel: performance test"
7088
7089 test_121() { #bug #10589
7090         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7091         rm -rf $DIR/$tfile
7092         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7093 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7094         lctl set_param fail_loc=0x310
7095         cancel_lru_locks osc > /dev/null
7096         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7097         lctl set_param fail_loc=0
7098         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7099 }
7100 run_test 121 "read cancel race ========="
7101
7102 test_123a() { # was test 123, statahead(bug 11401)
7103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7104         SLOWOK=0
7105         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7106             log "testing on UP system. Performance may be not as good as expected."
7107                         SLOWOK=1
7108         fi
7109
7110         rm -rf $DIR/$tdir
7111         test_mkdir -p $DIR/$tdir
7112         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7113         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7114         MULT=10
7115         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7116                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7117
7118                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7119                 lctl set_param -n llite.*.statahead_max 0
7120                 lctl get_param llite.*.statahead_max
7121                 cancel_lru_locks mdc
7122                 cancel_lru_locks osc
7123                 stime=`date +%s`
7124                 time ls -l $DIR/$tdir | wc -l
7125                 etime=`date +%s`
7126                 delta=$((etime - stime))
7127                 log "ls $i files without statahead: $delta sec"
7128                 lctl set_param llite.*.statahead_max=$max
7129
7130                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7131                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7132                 cancel_lru_locks mdc
7133                 cancel_lru_locks osc
7134                 stime=`date +%s`
7135                 time ls -l $DIR/$tdir | wc -l
7136                 etime=`date +%s`
7137                 delta_sa=$((etime - stime))
7138                 log "ls $i files with statahead: $delta_sa sec"
7139                 lctl get_param -n llite.*.statahead_stats
7140                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7141
7142                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7143                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7144
7145                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7146                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7147                     lctl set_param -n llite.*.statahead_max 0
7148                     lctl get_param llite.*.statahead_max
7149                     cancel_lru_locks mdc
7150                     cancel_lru_locks osc
7151                     stime=`date +%s`
7152                     time ls -l $DIR/$tdir | wc -l
7153                     etime=`date +%s`
7154                     delta=$((etime - stime))
7155                     log "ls $i files again without statahead: $delta sec"
7156                     lctl set_param llite.*.statahead_max=$max
7157                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7158                         if [  $SLOWOK -eq 0 ]; then
7159                                 error "ls $i files is slower with statahead!"
7160                         else
7161                                 log "ls $i files is slower with statahead!"
7162                         fi
7163                         break
7164                     fi
7165                 fi
7166
7167                 [ $delta -gt 20 ] && break
7168                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7169                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7170         done
7171         log "ls done"
7172
7173         stime=`date +%s`
7174         rm -r $DIR/$tdir
7175         sync
7176         etime=`date +%s`
7177         delta=$((etime - stime))
7178         log "rm -r $DIR/$tdir/: $delta seconds"
7179         log "rm done"
7180         lctl get_param -n llite.*.statahead_stats
7181 }
7182 run_test 123a "verify statahead work"
7183
7184 test_123b () { # statahead(bug 15027)
7185         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7186         test_mkdir -p $DIR/$tdir
7187         createmany -o $DIR/$tdir/$tfile-%d 1000
7188
7189         cancel_lru_locks mdc
7190         cancel_lru_locks osc
7191
7192 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7193         lctl set_param fail_loc=0x80000803
7194         ls -lR $DIR/$tdir > /dev/null
7195         log "ls done"
7196         lctl set_param fail_loc=0x0
7197         lctl get_param -n llite.*.statahead_stats
7198         rm -r $DIR/$tdir
7199         sync
7200
7201 }
7202 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7203
7204 test_124a() {
7205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7206         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7207                skip "no lru resize on server" && return 0
7208         local NR=2000
7209         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7210
7211         log "create $NR files at $DIR/$tdir"
7212         createmany -o $DIR/$tdir/f $NR ||
7213                 error "failed to create $NR files in $DIR/$tdir"
7214
7215         cancel_lru_locks mdc
7216         ls -l $DIR/$tdir > /dev/null
7217
7218         local NSDIR=""
7219         local LRU_SIZE=0
7220         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7221                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7222                 LRU_SIZE=$(lctl get_param -n $PARAM)
7223                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7224                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7225                                                 log "NSDIR=$NSDIR"
7226                         log "NS=$(basename $NSDIR)"
7227                         break
7228                 fi
7229         done
7230
7231         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7232                 skip "Not enough cached locks created!"
7233                 return 0
7234         fi
7235         log "LRU=$LRU_SIZE"
7236
7237         local SLEEP=30
7238
7239         # We know that lru resize allows one client to hold $LIMIT locks
7240         # for 10h. After that locks begin to be killed by client.
7241         local MAX_HRS=10
7242         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7243                 log "LIMIT=$LIMIT"
7244
7245         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7246         # killing locks. Some time was spent for creating locks. This means
7247         # that up to the moment of sleep finish we must have killed some of
7248         # them (10-100 locks). This depends on how fast ther were created.
7249         # Many of them were touched in almost the same moment and thus will
7250         # be killed in groups.
7251         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7252
7253         # Use $LRU_SIZE_B here to take into account real number of locks
7254         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7255         local LRU_SIZE_B=$LRU_SIZE
7256         log "LVF=$LVF"
7257         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7258                 log "OLD_LVF=$OLD_LVF"
7259         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7260
7261         # Let's make sure that we really have some margin. Client checks
7262         # cached locks every 10 sec.
7263         SLEEP=$((SLEEP+20))
7264         log "Sleep ${SLEEP} sec"
7265         local SEC=0
7266         while ((SEC<$SLEEP)); do
7267                 echo -n "..."
7268                 sleep 5
7269                 SEC=$((SEC+5))
7270                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7271                 echo -n "$LRU_SIZE"
7272         done
7273         echo ""
7274         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7275         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7276
7277         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7278                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7279                 unlinkmany $DIR/$tdir/f $NR
7280                 return
7281         }
7282
7283         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7284         log "unlink $NR files at $DIR/$tdir"
7285         unlinkmany $DIR/$tdir/f $NR
7286 }
7287 run_test 124a "lru resize ======================================="
7288
7289 get_max_pool_limit()
7290 {
7291         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7292         local max=0
7293         for l in $limit; do
7294                 if test $l -gt $max; then
7295                         max=$l
7296                 fi
7297         done
7298         echo $max
7299 }
7300
7301 test_124b() {
7302         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7303         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7304                skip "no lru resize on server" && return 0
7305
7306         LIMIT=`get_max_pool_limit`
7307
7308         NR=$(($(default_lru_size)*20))
7309         if [ $NR -gt $LIMIT ]; then
7310                 log "Limit lock number by $LIMIT locks"
7311                 NR=$LIMIT
7312         fi
7313         lru_resize_disable mdc
7314         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7315                 error "failed to create $DIR/$tdir/disable_lru_resize"
7316
7317         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7318         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7319         cancel_lru_locks mdc
7320         stime=`date +%s`
7321         PID=""
7322         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7323         PID="$PID $!"
7324         sleep 2
7325         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7326         PID="$PID $!"
7327         sleep 2
7328         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7329         PID="$PID $!"
7330         wait $PID
7331         etime=`date +%s`
7332         nolruresize_delta=$((etime-stime))
7333         log "ls -la time: $nolruresize_delta seconds"
7334         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7335         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7336
7337         lru_resize_enable mdc
7338         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7339                 error "failed to create $DIR/$tdir/enable_lru_resize"
7340
7341         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7342         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7343         cancel_lru_locks mdc
7344         stime=`date +%s`
7345         PID=""
7346         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7347         PID="$PID $!"
7348         sleep 2
7349         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7350         PID="$PID $!"
7351         sleep 2
7352         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7353         PID="$PID $!"
7354         wait $PID
7355         etime=`date +%s`
7356         lruresize_delta=$((etime-stime))
7357         log "ls -la time: $lruresize_delta seconds"
7358         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7359
7360         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7361                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7362         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7363                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7364         else
7365                 log "lru resize performs the same with no lru resize"
7366         fi
7367         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7368 }
7369 run_test 124b "lru resize (performance test) ======================="
7370
7371 test_125() { # 13358
7372         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7373         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7374         test_mkdir -p $DIR/d125 || error "mkdir failed"
7375         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7376         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7377         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7378 }
7379 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7380
7381 test_126() { # bug 12829/13455
7382         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7383         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7384         $GSS && skip "must run as gss disabled" && return
7385
7386         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7387         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7388         rm -f $DIR/$tfile
7389         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7390 }
7391 run_test 126 "check that the fsgid provided by the client is taken into account"
7392
7393 test_127a() { # bug 15521
7394         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7395         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7396         $LCTL set_param osc.*.stats=0
7397         FSIZE=$((2048 * 1024))
7398         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7399         cancel_lru_locks osc
7400         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7401
7402         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7403         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7404                 echo "got $COUNT $NAME"
7405                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7406                 eval $NAME=$COUNT || error "Wrong proc format"
7407
7408                 case $NAME in
7409                         read_bytes|write_bytes)
7410                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7411                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7412                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7413                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7414                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7415                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7416                                 error "sumsquare is too small: $SUMSQ"
7417                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7418                                 error "sumsquare is too big: $SUMSQ"
7419                         ;;
7420                         *) ;;
7421                 esac
7422         done < $DIR/${tfile}.tmp
7423
7424         #check that we actually got some stats
7425         [ "$read_bytes" ] || error "Missing read_bytes stats"
7426         [ "$write_bytes" ] || error "Missing write_bytes stats"
7427         [ "$read_bytes" != 0 ] || error "no read done"
7428         [ "$write_bytes" != 0 ] || error "no write done"
7429 }
7430 run_test 127a "verify the client stats are sane"
7431
7432 test_127b() { # bug LU-333
7433         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7434         $LCTL set_param llite.*.stats=0
7435         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7436         # perform 2 reads and writes so MAX is different from SUM.
7437         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7438         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7439         cancel_lru_locks osc
7440         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7441         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7442
7443         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7444         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7445                 echo "got $COUNT $NAME"
7446                 eval $NAME=$COUNT || error "Wrong proc format"
7447
7448         case $NAME in
7449                 read_bytes)
7450                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7451                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7452                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7453                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7454                         ;;
7455                 write_bytes)
7456                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7457                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7458                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7459                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7460                         ;;
7461                         *) ;;
7462                 esac
7463         done < $TMP/${tfile}.tmp
7464
7465         #check that we actually got some stats
7466         [ "$read_bytes" ] || error "Missing read_bytes stats"
7467         [ "$write_bytes" ] || error "Missing write_bytes stats"
7468         [ "$read_bytes" != 0 ] || error "no read done"
7469         [ "$write_bytes" != 0 ] || error "no write done"
7470 }
7471 run_test 127b "verify the llite client stats are sane"
7472
7473 test_128() { # bug 15212
7474         touch $DIR/$tfile
7475         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7476                 find $DIR/$tfile
7477                 find $DIR/$tfile
7478         EOF
7479
7480         result=$(grep error $TMP/$tfile.log)
7481         rm -f $DIR/$tfile
7482         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7483 }
7484 run_test 128 "interactive lfs for 2 consecutive find's"
7485
7486 set_dir_limits () {
7487         local mntdev
7488         local canondev
7489         local node
7490
7491         local LDPROC=/proc/fs/ldiskfs
7492         local facets=$(get_facets MDS)
7493
7494         for facet in ${facets//,/ }; do
7495                 canondev=$(ldiskfs_canon \
7496                            *.$(convert_facet2label $facet).mntdev $facet)
7497                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7498                                                 LDPROC=/sys/fs/ldiskfs
7499                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7500         done
7501 }
7502
7503 test_129() {
7504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7505         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7506                 skip "Only applicable to ldiskfs-based MDTs"
7507                 return
7508         fi
7509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7510
7511         EFBIG=27
7512         MAX=16384
7513
7514         set_dir_limits $MAX
7515         test_mkdir -p $DIR/$tdir
7516
7517         local I=0
7518         local J=0
7519         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7520                 $MULTIOP $DIR/$tdir/$J Oc
7521                 rc=$?
7522                 if [ $rc -eq $EFBIG ]; then
7523                         set_dir_limits 0
7524                         echo "return code $rc received as expected"
7525                         return 0
7526                 elif [ $rc -ne 0 ]; then
7527                         set_dir_limits 0
7528                         error_exit "return code $rc received instead of expected $EFBIG"
7529                 fi
7530                 J=$((J+1))
7531                 I=$(stat -c%s "$DIR/$tdir")
7532         done
7533
7534         set_dir_limits 0
7535         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7536 }
7537 run_test 129 "test directory size limit ========================"
7538
7539 OLDIFS="$IFS"
7540 cleanup_130() {
7541         trap 0
7542         IFS="$OLDIFS"
7543 }
7544
7545 test_130a() {
7546         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7547         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7548                 return
7549
7550         trap cleanup_130 EXIT RETURN
7551
7552         local fm_file=$DIR/$tfile
7553         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7554         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7555                 error "dd failed for $fm_file"
7556
7557         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7558         filefrag -ves $fm_file
7559         RC=$?
7560         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7561                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7562         [ $RC != 0 ] && error "filefrag $fm_file failed"
7563
7564         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7565                       grep -v "ext:" | grep -v "found")
7566         lun=$($GETSTRIPE -i $fm_file)
7567
7568         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7569         IFS=$'\n'
7570         tot_len=0
7571         for line in $filefrag_op
7572         do
7573                 frag_lun=`echo $line | cut -d: -f5`
7574                 ext_len=`echo $line | cut -d: -f4`
7575                 if (( $frag_lun != $lun )); then
7576                         cleanup_130
7577                         error "FIEMAP on 1-stripe file($fm_file) failed"
7578                         return
7579                 fi
7580                 (( tot_len += ext_len ))
7581         done
7582
7583         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7584                 cleanup_130
7585                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7586                 return
7587         fi
7588
7589         cleanup_130
7590
7591         echo "FIEMAP on single striped file succeeded"
7592 }
7593 run_test 130a "FIEMAP (1-stripe file)"
7594
7595 test_130b() {
7596         [ "$OSTCOUNT" -lt "2" ] &&
7597                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7598
7599         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7600         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7601                 return
7602
7603         trap cleanup_130 EXIT RETURN
7604
7605         local fm_file=$DIR/$tfile
7606         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7607         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7608                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7609
7610         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7611                 error "dd failed on $fm_file"
7612
7613         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7614         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7615                       grep -v "ext:" | grep -v "found")
7616
7617         last_lun=$(echo $filefrag_op | cut -d: -f5)
7618
7619         IFS=$'\n'
7620         tot_len=0
7621         num_luns=1
7622         for line in $filefrag_op
7623         do
7624                 frag_lun=`echo $line | cut -d: -f5`
7625                 ext_len=`echo $line | cut -d: -f4`
7626                 if (( $frag_lun != $last_lun )); then
7627                         if (( tot_len != 1024 )); then
7628                                 cleanup_130
7629                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7630                                 return
7631                         else
7632                                 (( num_luns += 1 ))
7633                                 tot_len=0
7634                         fi
7635                 fi
7636                 (( tot_len += ext_len ))
7637                 last_lun=$frag_lun
7638         done
7639         if (( num_luns != 2 || tot_len != 1024 )); then
7640                 cleanup_130
7641                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7642                 return
7643         fi
7644
7645         cleanup_130
7646
7647         echo "FIEMAP on 2-stripe file succeeded"
7648 }
7649 run_test 130b "FIEMAP (2-stripe file)"
7650
7651 test_130c() {
7652         [ "$OSTCOUNT" -lt "2" ] &&
7653                 skip_env "skipping FIEMAP on 2-stripe file" && return
7654
7655         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7656         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7657                 return
7658
7659         trap cleanup_130 EXIT RETURN
7660
7661         local fm_file=$DIR/$tfile
7662         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7663         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7664                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7665
7666         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7667
7668         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7669         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7670
7671         last_lun=`echo $filefrag_op | cut -d: -f5`
7672
7673         IFS=$'\n'
7674         tot_len=0
7675         num_luns=1
7676         for line in $filefrag_op
7677         do
7678                 frag_lun=`echo $line | cut -d: -f5`
7679                 ext_len=`echo $line | cut -d: -f4`
7680                 if (( $frag_lun != $last_lun )); then
7681                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7682                         if (( logical != 512 )); then
7683                                 cleanup_130
7684                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7685                                 return
7686                         fi
7687                         if (( tot_len != 512 )); then
7688                                 cleanup_130
7689                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7690                                 return
7691                         else
7692                                 (( num_luns += 1 ))
7693                                 tot_len=0
7694                         fi
7695                 fi
7696                 (( tot_len += ext_len ))
7697                 last_lun=$frag_lun
7698         done
7699         if (( num_luns != 2 || tot_len != 512 )); then
7700                 cleanup_130
7701                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7702                 return
7703         fi
7704
7705         cleanup_130
7706
7707         echo "FIEMAP on 2-stripe file with hole succeeded"
7708 }
7709 run_test 130c "FIEMAP (2-stripe file with hole)"
7710
7711 test_130d() {
7712         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7713
7714         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7715         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7716
7717         trap cleanup_130 EXIT RETURN
7718
7719         local fm_file=$DIR/$tfile
7720         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7721         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7722                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7723         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7724
7725         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7726         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7727
7728         last_lun=`echo $filefrag_op | cut -d: -f5`
7729
7730         IFS=$'\n'
7731         tot_len=0
7732         num_luns=1
7733         for line in $filefrag_op
7734         do
7735                 frag_lun=`echo $line | cut -d: -f5`
7736                 ext_len=`echo $line | cut -d: -f4`
7737                 if (( $frag_lun != $last_lun )); then
7738                         if (( tot_len != 1024 )); then
7739                                 cleanup_130
7740                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7741                                 return
7742                         else
7743                                 (( num_luns += 1 ))
7744                                 tot_len=0
7745                         fi
7746                 fi
7747                 (( tot_len += ext_len ))
7748                 last_lun=$frag_lun
7749         done
7750         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7751                 cleanup_130
7752                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7753                 return
7754         fi
7755
7756         cleanup_130
7757
7758         echo "FIEMAP on N-stripe file succeeded"
7759 }
7760 run_test 130d "FIEMAP (N-stripe file)"
7761
7762 test_130e() {
7763         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7764
7765         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7766         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7767
7768         trap cleanup_130 EXIT RETURN
7769
7770         local fm_file=$DIR/$tfile
7771         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7772         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7773                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7774
7775         NUM_BLKS=512
7776         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7777         for ((i = 0; i < $NUM_BLKS; i++))
7778         do
7779                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7780         done
7781
7782         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7783         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7784
7785         last_lun=`echo $filefrag_op | cut -d: -f5`
7786
7787         IFS=$'\n'
7788         tot_len=0
7789         num_luns=1
7790         for line in $filefrag_op
7791         do
7792                 frag_lun=`echo $line | cut -d: -f5`
7793                 ext_len=`echo $line | cut -d: -f4`
7794                 if (( $frag_lun != $last_lun )); then
7795                         if (( tot_len != $EXPECTED_LEN )); then
7796                                 cleanup_130
7797                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
7798                                 return
7799                         else
7800                                 (( num_luns += 1 ))
7801                                 tot_len=0
7802                         fi
7803                 fi
7804                 (( tot_len += ext_len ))
7805                 last_lun=$frag_lun
7806         done
7807         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
7808                 cleanup_130
7809                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7810                 return
7811         fi
7812
7813         cleanup_130
7814
7815         echo "FIEMAP with continuation calls succeeded"
7816 }
7817 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
7818
7819 # Test for writev/readv
7820 test_131a() {
7821         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
7822         error "writev test failed"
7823         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
7824         error "readv failed"
7825         rm -f $DIR/$tfile
7826 }
7827 run_test 131a "test iov's crossing stripe boundary for writev/readv"
7828
7829 test_131b() {
7830         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
7831         error "append writev test failed"
7832         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
7833         error "append writev test failed"
7834         rm -f $DIR/$tfile
7835 }
7836 run_test 131b "test append writev"
7837
7838 test_131c() {
7839         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
7840         error "NOT PASS"
7841 }
7842 run_test 131c "test read/write on file w/o objects"
7843
7844 test_131d() {
7845         rwv -f $DIR/$tfile -w -n 1 1572864
7846         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
7847         if [ "$NOB" != 1572864 ]; then
7848                 error "Short read filed: read $NOB bytes instead of 1572864"
7849         fi
7850         rm -f $DIR/$tfile
7851 }
7852 run_test 131d "test short read"
7853
7854 test_131e() {
7855         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
7856         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
7857         error "read hitting hole failed"
7858         rm -f $DIR/$tfile
7859 }
7860 run_test 131e "test read hitting hole"
7861
7862 get_ost_param() {
7863         local token=$1
7864         local gl_sum=0
7865         for node in $(osts_nodes); do
7866                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
7867                 [ x$gl = x"" ] && gl=0
7868                 gl_sum=$((gl_sum + gl))
7869         done
7870         echo $gl
7871 }
7872
7873 som_mode_switch() {
7874         local som=$1
7875         local gl1=$2
7876         local gl2=$3
7877
7878         if [ x$som = x"enabled" ]; then
7879                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
7880                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
7881                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
7882         else
7883                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
7884                 MOUNTOPT="$MOUNTOPT,som_preview"
7885                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
7886         fi
7887
7888         # do remount to make new mount-conf parameters actual
7889         echo remounting...
7890         sync
7891         stopall
7892         setupall
7893 }
7894
7895 test_132() { #1028, SOM
7896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7897         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7898         local num=$(get_mds_dir $DIR)
7899         local mymds=mds${num}
7900         local MOUNTOPT_SAVE=$MOUNTOPT
7901
7902         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7903         cancel_lru_locks osc
7904
7905         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7906
7907         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7908         stat $DIR/$tfile >/dev/null
7909         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7910         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
7911         rm $DIR/$tfile
7912         som_mode_switch $som1 $gl1 $gl2
7913
7914         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
7915         cancel_lru_locks osc
7916
7917         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
7918         if [ $som1 == $som2 ]; then
7919             error "som is still "$som2
7920             if [ x$som2 = x"enabled" ]; then
7921                 som2="disabled"
7922             else
7923                 som2="enabled"
7924             fi
7925         fi
7926
7927         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
7928         stat $DIR/$tfile >/dev/null
7929         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
7930         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
7931         som_mode_switch $som2 $gl1 $gl2
7932         MOUNTOPT=$MOUNTOPT_SAVE
7933 }
7934 run_test 132 "som avoids glimpse rpc"
7935
7936 check_stats() {
7937         local res
7938         local count
7939         case $1 in
7940         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
7941                  ;;
7942         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
7943                  ;;
7944         *) error "Wrong argument $1" ;;
7945         esac
7946         echo $res
7947         count=`echo $res | awk '{print $2}'`
7948         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
7949         # if the argument $3 is zero, it means any stat increment is ok.
7950         if [ $3 -gt 0 ] ; then
7951                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
7952         fi
7953 }
7954
7955 test_133a() {
7956         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7957         remote_ost_nodsh && skip "remote OST with nodsh" && return
7958         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7959
7960         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
7961                 { skip "MDS doesn't support rename stats"; return; }
7962         local testdir=$DIR/${tdir}/stats_testdir
7963         mkdir -p $DIR/${tdir}
7964
7965         # clear stats.
7966         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
7967         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
7968
7969         # verify mdt stats first.
7970         mkdir ${testdir} || error "mkdir failed"
7971         check_stats $SINGLEMDS "mkdir" 1
7972         touch ${testdir}/${tfile} || "touch failed"
7973         check_stats $SINGLEMDS "open" 1
7974         check_stats $SINGLEMDS "close" 1
7975         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
7976         check_stats $SINGLEMDS "mknod" 1
7977         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
7978         check_stats $SINGLEMDS "unlink" 1
7979         rm -f ${testdir}/${tfile} || error "file remove failed"
7980         check_stats $SINGLEMDS "unlink" 2
7981
7982         # remove working dir and check mdt stats again.
7983         rmdir ${testdir} || error "rmdir failed"
7984         check_stats $SINGLEMDS "rmdir" 1
7985
7986         local testdir1=$DIR/${tdir}/stats_testdir1
7987         mkdir -p ${testdir}
7988         mkdir -p ${testdir1}
7989         touch ${testdir1}/test1
7990         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
7991         check_stats $SINGLEMDS "crossdir_rename" 1
7992
7993         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
7994         check_stats $SINGLEMDS "samedir_rename" 1
7995
7996         rm -rf $DIR/${tdir}
7997 }
7998 run_test 133a "Verifying MDT stats ========================================"
7999
8000 test_133b() {
8001         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8002         remote_ost_nodsh && skip "remote OST with nodsh" && return
8003         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8004         local testdir=$DIR/${tdir}/stats_testdir
8005         mkdir -p ${testdir} || error "mkdir failed"
8006         touch ${testdir}/${tfile} || "touch failed"
8007         cancel_lru_locks mdc
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         # extra mdt stats verification.
8014         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8015         check_stats $SINGLEMDS "setattr" 1
8016         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8017         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8018         then            # LU-1740
8019                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8020                 check_stats $SINGLEMDS "getattr" 1
8021         fi
8022         $LFS df || error "lfs failed"
8023         check_stats $SINGLEMDS "statfs" 1
8024
8025         rm -rf $DIR/${tdir}
8026 }
8027 run_test 133b "Verifying extra MDT stats =================================="
8028
8029 test_133c() {
8030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8031         remote_ost_nodsh && skip "remote OST with nodsh" && return
8032         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8033         local testdir=$DIR/${tdir}/stats_testdir
8034         test_mkdir -p ${testdir} || error "mkdir failed"
8035
8036         # verify obdfilter stats.
8037         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8038         sync
8039         cancel_lru_locks osc
8040         wait_delete_completed
8041
8042         # clear stats.
8043         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8044         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8045
8046         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8047         sync
8048         cancel_lru_locks osc
8049         check_stats ost "write" 1
8050
8051         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8052         check_stats ost "read" 1
8053
8054         > ${testdir}/${tfile} || error "truncate failed"
8055         check_stats ost "punch" 1
8056
8057         rm -f ${testdir}/${tfile} || error "file remove failed"
8058         wait_delete_completed
8059         check_stats ost "destroy" 1
8060
8061         rm -rf $DIR/${tdir}
8062 }
8063 run_test 133c "Verifying OST stats ========================================"
8064
8065 order_2() {
8066     local value=$1
8067     local orig=$value
8068     local order=1
8069
8070     while [ $value -ge 2 ]; do
8071         order=$((order*2))
8072         value=$((value/2))
8073     done
8074
8075     if [ $orig -gt $order ]; then
8076         order=$((order*2))
8077     fi
8078     echo $order
8079 }
8080
8081 size_in_KMGT() {
8082     local value=$1
8083     local size=('K' 'M' 'G' 'T');
8084     local i=0
8085     local size_string=$value
8086
8087     while [ $value -ge 1024 ]; do
8088         if [ $i -gt 3 ]; then
8089             #T is the biggest unit we get here, if that is bigger,
8090             #just return XXXT
8091             size_string=${value}T
8092             break
8093         fi
8094         value=$((value >> 10))
8095         if [ $value -lt 1024 ]; then
8096             size_string=${value}${size[$i]}
8097             break
8098         fi
8099         i=$((i + 1))
8100     done
8101
8102     echo $size_string
8103 }
8104
8105 get_rename_size() {
8106     local size=$1
8107     local context=${2:-.}
8108     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8109                 grep -A1 $context |
8110                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8111     echo $sample
8112 }
8113
8114 test_133d() {
8115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8116     remote_ost_nodsh && skip "remote OST with nodsh" && return
8117     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8118     do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8119         { skip "MDS doesn't support rename stats"; return; }
8120
8121     local testdir1=$DIR/${tdir}/stats_testdir1
8122     local testdir2=$DIR/${tdir}/stats_testdir2
8123
8124     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8125
8126     test_mkdir -p ${testdir1} || error "mkdir failed"
8127     test_mkdir -p ${testdir2} || error "mkdir failed"
8128
8129     createmany -o $testdir1/test 512 || error "createmany failed"
8130
8131         # check samedir rename size
8132         mv ${testdir1}/test0 ${testdir1}/test_0
8133
8134         local testdir1_size=$(ls -l $DIR/${tdir} |
8135                 awk '/stats_testdir1/ {print $5}')
8136         local testdir2_size=$(ls -l $DIR/${tdir} |
8137                 awk '/stats_testdir2/ {print $5}')
8138
8139         testdir1_size=$(order_2 $testdir1_size)
8140         testdir2_size=$(order_2 $testdir2_size)
8141
8142         testdir1_size=$(size_in_KMGT $testdir1_size)
8143         testdir2_size=$(size_in_KMGT $testdir2_size)
8144
8145         echo "source rename dir size: ${testdir1_size}"
8146         echo "target rename dir size: ${testdir2_size}"
8147
8148     local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8149     eval $cmd || error "$cmd failed"
8150     local samedir=$($cmd | grep 'same_dir')
8151     local same_sample=$(get_rename_size $testdir1_size)
8152     [ -z "$samedir" ] && error "samedir_rename_size count error"
8153     [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8154     echo "Check same dir rename stats success"
8155
8156     do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8157
8158     # check crossdir rename size
8159     mv ${testdir1}/test_0 ${testdir2}/test_0
8160
8161         testdir1_size=$(ls -l $DIR/${tdir} |
8162                 awk '/stats_testdir1/ {print $5}')
8163         testdir2_size=$(ls -l $DIR/${tdir} |
8164                 awk '/stats_testdir2/ {print $5}')
8165
8166         testdir1_size=$(order_2 $testdir1_size)
8167         testdir2_size=$(order_2 $testdir2_size)
8168
8169         testdir1_size=$(size_in_KMGT $testdir1_size)
8170         testdir2_size=$(size_in_KMGT $testdir2_size)
8171
8172         echo "source rename dir size: ${testdir1_size}"
8173         echo "target rename dir size: ${testdir2_size}"
8174
8175     eval $cmd || error "$cmd failed"
8176     local crossdir=$($cmd | grep 'crossdir')
8177     local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8178     local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8179     [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8180     [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8181     [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8182     echo "Check cross dir rename stats success"
8183     rm -rf $DIR/${tdir}
8184 }
8185 run_test 133d "Verifying rename_stats ========================================"
8186
8187 test_133e() {
8188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8189         local testdir=$DIR/${tdir}/stats_testdir
8190         local ctr f0 f1 bs=32768 count=42 sum
8191
8192         remote_ost_nodsh && skip "remote OST with nodsh" && return
8193         mkdir -p ${testdir} || error "mkdir failed"
8194
8195         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8196
8197         for ctr in {write,read}_bytes; do
8198                 sync
8199                 cancel_lru_locks osc
8200
8201                 do_facet ost1 $LCTL set_param -n \
8202                         "obdfilter.*.exports.clear=clear"
8203
8204                 if [ $ctr = write_bytes ]; then
8205                         f0=/dev/zero
8206                         f1=${testdir}/${tfile}
8207                 else
8208                         f0=${testdir}/${tfile}
8209                         f1=/dev/null
8210                 fi
8211
8212                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8213                         error "dd failed"
8214                 sync
8215                 cancel_lru_locks osc
8216
8217                 sum=$(do_facet ost1 $LCTL get_param \
8218                                 "obdfilter.*.exports.*.stats" | \
8219                           awk -v ctr=$ctr '\
8220                                 BEGIN { sum = 0 }
8221                                 $1 == ctr { sum += $7 }
8222                                 END { print sum }')
8223
8224                 if ((sum != bs * count)); then
8225                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8226                 fi
8227         done
8228
8229         rm -rf $DIR/${tdir}
8230 }
8231 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8232
8233 test_140() { #bug-17379
8234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8235         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8236         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8237         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8238
8239         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8240         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8241         local i=0
8242         while i=`expr $i + 1`; do
8243                 test_mkdir -p $i || error "Creating dir $i"
8244                 cd $i || error "Changing to $i"
8245                 ln -s ../stat stat || error "Creating stat symlink"
8246                 # Read the symlink until ELOOP present,
8247                 # not LBUGing the system is considered success,
8248                 # we didn't overrun the stack.
8249                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8250                 [ $ret -ne 0 ] && {
8251                         if [ $ret -eq 40 ]; then
8252                                 break  # -ELOOP
8253                         else
8254                                 error "Open stat symlink"
8255                                 return
8256                         fi
8257                 }
8258         done
8259         i=`expr $i - 1`
8260         echo "The symlink depth = $i"
8261         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8262                                         error "Invalid symlink depth"
8263
8264         # Test recursive symlink
8265         ln -s symlink_self symlink_self
8266         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8267         echo "open symlink_self returns $ret"
8268         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8269 }
8270 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8271
8272 test_150() {
8273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8274         local TF="$TMP/$tfile"
8275
8276         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8277         cp $TF $DIR/$tfile
8278         cancel_lru_locks osc
8279         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8280         remount_client $MOUNT
8281         df -P $MOUNT
8282         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8283
8284         $TRUNCATE $TF 6000
8285         $TRUNCATE $DIR/$tfile 6000
8286         cancel_lru_locks osc
8287         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8288
8289         echo "12345" >>$TF
8290         echo "12345" >>$DIR/$tfile
8291         cancel_lru_locks osc
8292         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8293
8294         echo "12345" >>$TF
8295         echo "12345" >>$DIR/$tfile
8296         cancel_lru_locks osc
8297         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8298
8299         rm -f $TF
8300         true
8301 }
8302 run_test 150 "truncate/append tests"
8303
8304 function roc_hit() {
8305         local list=$(comma_list $(osts_nodes))
8306
8307         echo $(get_obdfilter_param $list '' stats |
8308                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
8309 }
8310
8311 function set_cache() {
8312         local on=1
8313
8314         if [ "$2" == "off" ]; then
8315                 on=0;
8316         fi
8317         local list=$(comma_list $(osts_nodes))
8318         set_obdfilter_param $list '' $1_cache_enable $on
8319
8320         cancel_lru_locks osc
8321 }
8322
8323 test_151() {
8324         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8325         remote_ost_nodsh && skip "remote OST with nodsh" && return
8326
8327         local CPAGES=3
8328         local list=$(comma_list $(osts_nodes))
8329
8330         # check whether obdfilter is cache capable at all
8331         if ! get_obdfilter_param $list '' read_cache_enable >/dev/null; then
8332                 echo "not cache-capable obdfilter"
8333                 return 0
8334         fi
8335
8336         # check cache is enabled on all obdfilters
8337         if get_obdfilter_param $list '' read_cache_enable | grep 0; then
8338                 echo "oss cache is disabled"
8339                 return 0
8340         fi
8341
8342         set_obdfilter_param $list '' writethrough_cache_enable 1
8343
8344         # pages should be in the case right after write
8345         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES || error "dd failed"
8346         local BEFORE=`roc_hit`
8347         cancel_lru_locks osc
8348         cat $DIR/$tfile >/dev/null
8349         local AFTER=`roc_hit`
8350         if ! let "AFTER - BEFORE == CPAGES"; then
8351                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8352         fi
8353
8354         # the following read invalidates the cache
8355         cancel_lru_locks osc
8356         set_obdfilter_param $list '' read_cache_enable 0
8357         cat $DIR/$tfile >/dev/null
8358
8359         # now data shouldn't be found in the cache
8360         BEFORE=`roc_hit`
8361         cancel_lru_locks osc
8362         cat $DIR/$tfile >/dev/null
8363         AFTER=`roc_hit`
8364         if let "AFTER - BEFORE != 0"; then
8365                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8366         fi
8367
8368         set_obdfilter_param $list '' read_cache_enable 1
8369         rm -f $DIR/$tfile
8370 }
8371 run_test 151 "test cache on oss and controls ==============================="
8372
8373 test_152() {
8374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8375         local TF="$TMP/$tfile"
8376
8377         # simulate ENOMEM during write
8378 #define OBD_FAIL_OST_NOMEM      0x226
8379         lctl set_param fail_loc=0x80000226
8380         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8381         cp $TF $DIR/$tfile
8382         sync || error "sync failed"
8383         lctl set_param fail_loc=0
8384
8385         # discard client's cache
8386         cancel_lru_locks osc
8387
8388         # simulate ENOMEM during read
8389         lctl set_param fail_loc=0x80000226
8390         cmp $TF $DIR/$tfile || error "cmp failed"
8391         lctl set_param fail_loc=0
8392
8393         rm -f $TF
8394 }
8395 run_test 152 "test read/write with enomem ============================"
8396
8397 test_153() {
8398         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8399 }
8400 run_test 153 "test if fdatasync does not crash ======================="
8401
8402 test_154() {
8403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8404         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8405                 { skip "Need MDS version at least 2.2.51"; return 0; }
8406
8407         cp /etc/hosts $DIR/$tfile
8408
8409         fid=$($LFS path2fid $DIR/$tfile)
8410         rc=$?
8411         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8412
8413         ffid=$DIR/.lustre/fid/$fid
8414
8415         echo "stat fid $fid"
8416         stat $ffid > /dev/null || error "stat $ffid failed."
8417         echo "touch fid $fid"
8418         touch $ffid || error "touch $ffid failed."
8419         echo "write to fid $fid"
8420         cat /etc/hosts > $ffid || error "write $ffid failed."
8421         echo "read fid $fid"
8422         diff /etc/hosts $ffid || error "read $ffid failed."
8423         echo "append write to fid $fid"
8424         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8425         echo "rename fid $fid"
8426         mv $ffid $DIR/$tfile.1 && error "rename $ffid to $tfile.1 should fail."
8427         touch $DIR/$tfile.1
8428         mv $DIR/$tfile.1 $ffid && error "rename $tfile.1 to $ffid should fail."
8429         rm -f $DIR/$tfile.1
8430         echo "truncate fid $fid"
8431         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8432         echo "link fid $fid"
8433         ln -f $ffid $DIR/tfile.lnk || error "link $ffid failed."
8434         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8435                 echo "setfacl fid $fid"
8436                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8437                 echo "getfacl fid $fid"
8438                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8439         fi
8440         echo "unlink fid $fid"
8441         unlink $DIR/.lustre/fid/$fid && error "unlink $ffid should fail."
8442         echo "mknod fid $fid"
8443         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8444
8445         fid=[0xf00000400:0x1:0x0]
8446         ffid=$DIR/.lustre/fid/$fid
8447
8448         echo "stat non-exist fid $fid"
8449         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8450         echo "write to non-exist fid $fid"
8451         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8452         echo "link new fid $fid"
8453         ln $DIR/$tfile $ffid && error "link $ffid should fail."
8454
8455         test_mkdir -p $DIR/$tdir
8456         touch $DIR/$tdir/$tfile
8457         fid=$($LFS path2fid $DIR/$tdir)
8458         rc=$?
8459         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8460
8461         ffid=$DIR/.lustre/fid/$fid
8462
8463         echo "ls $fid"
8464         ls $ffid > /dev/null || error "ls $ffid failed."
8465         echo "touch $fid/$tfile.1"
8466         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8467
8468         echo "touch $DIR/.lustre/fid/$tfile"
8469         touch $DIR/.lustre/fid/$tfile && \
8470                 error "touch $DIR/.lustre/fid/$tfile should fail."
8471
8472         echo "setxattr to $DIR/.lustre/fid"
8473         setfattr -n trusted.name1 -v value1 $DIR/.lustre/fid &&
8474                 error "setxattr should fail."
8475
8476         echo "listxattr for $DIR/.lustre/fid"
8477         getfattr -d -m "^trusted" $DIR/.lustre/fid &&
8478                 error "listxattr should fail."
8479
8480         echo "delxattr from $DIR/.lustre/fid"
8481         setfattr -x trusted.name1 $DIR/.lustre/fid &&
8482                 error "delxattr should fail."
8483
8484         echo "touch invalid fid: $DIR/.lustre/fid/[0x200000400:0x2:0x3]"
8485         touch $DIR/.lustre/fid/[0x200000400:0x2:0x3] &&
8486                 error "touch invalid fid should fail."
8487
8488         echo "touch non-normal fid: $DIR/.lustre/fid/[0x1:0x2:0x0]"
8489         touch $DIR/.lustre/fid/[0x1:0x2:0x0] &&
8490                 error "touch non-normal fid should fail."
8491
8492         echo "rename $tdir to $DIR/.lustre/fid"
8493         mrename $DIR/$tdir $DIR/.lustre/fid &&
8494                 error "rename to $DIR/.lustre/fid should fail."
8495
8496         echo "rename .lustre to itself"
8497         fid=$($LFS path2fid $DIR)
8498         mrename $DIR/.lustre $DIR/.lustre/fid/$fid/.lustre &&
8499                 error "rename .lustre to itself should fail."
8500
8501         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $DIR/$tfile-2
8502         fid=$($LFS path2fid $DIR/$tfile-2)
8503         echo "cp /etc/passwd $DIR/.lustre/fid/$fid"
8504         cp /etc/passwd $DIR/.lustre/fid/$fid &&
8505                 error "create lov data thru .lustre should fail."
8506         echo "cp /etc/passwd $DIR/$tfile-2"
8507         cp /etc/passwd $DIR/$tfile-2 || error "copy to $DIR/$tfile-2 failed."
8508         echo "diff /etc/passwd $DIR/.lustre/fid/$fid"
8509         diff /etc/passwd $DIR/.lustre/fid/$fid ||
8510                 error "diff /etc/passwd $DIR/.lustre/fid/$fid failed."
8511
8512         echo "Open-by-FID succeeded"
8513 }
8514 run_test 154 "Open-by-FID"
8515
8516 test_155_small_load() {
8517     local temp=$TMP/$tfile
8518     local file=$DIR/$tfile
8519
8520     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8521         error "dd of=$temp bs=6096 count=1 failed"
8522     cp $temp $file
8523     cancel_lru_locks osc
8524     cmp $temp $file || error "$temp $file differ"
8525
8526     $TRUNCATE $temp 6000
8527     $TRUNCATE $file 6000
8528     cmp $temp $file || error "$temp $file differ (truncate1)"
8529
8530     echo "12345" >>$temp
8531     echo "12345" >>$file
8532     cmp $temp $file || error "$temp $file differ (append1)"
8533
8534     echo "12345" >>$temp
8535     echo "12345" >>$file
8536     cmp $temp $file || error "$temp $file differ (append2)"
8537
8538     rm -f $temp $file
8539     true
8540 }
8541
8542 test_155_big_load() {
8543     remote_ost_nodsh && skip "remote OST with nodsh" && return
8544     local temp=$TMP/$tfile
8545     local file=$DIR/$tfile
8546
8547     free_min_max
8548     local cache_size=$(do_facet ost$((MAXI+1)) \
8549         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8550     local large_file_size=$((cache_size * 2))
8551
8552     echo "OSS cache size: $cache_size KB"
8553     echo "Large file size: $large_file_size KB"
8554
8555     [ $MAXV -le $large_file_size ] && \
8556         skip_env "max available OST size needs > $large_file_size KB" && \
8557         return 0
8558
8559     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8560
8561     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8562         error "dd of=$temp bs=$large_file_size count=1k failed"
8563     cp $temp $file
8564     ls -lh $temp $file
8565     cancel_lru_locks osc
8566     cmp $temp $file || error "$temp $file differ"
8567
8568     rm -f $temp $file
8569     true
8570 }
8571
8572 test_155a() {
8573         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8574         set_cache read on
8575         set_cache writethrough on
8576         test_155_small_load
8577 }
8578 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8579
8580 test_155b() {
8581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8582         set_cache read on
8583         set_cache writethrough off
8584         test_155_small_load
8585 }
8586 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8587
8588 test_155c() {
8589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8590         set_cache read off
8591         set_cache writethrough on
8592         test_155_small_load
8593 }
8594 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8595
8596 test_155d() {
8597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8598         set_cache read off
8599         set_cache writethrough off
8600         test_155_small_load
8601 }
8602 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8603
8604 test_155e() {
8605         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8606         set_cache read on
8607         set_cache writethrough on
8608         test_155_big_load
8609 }
8610 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8611
8612 test_155f() {
8613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8614         set_cache read on
8615         set_cache writethrough off
8616         test_155_big_load
8617 }
8618 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8619
8620 test_155g() {
8621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8622         set_cache read off
8623         set_cache writethrough on
8624         test_155_big_load
8625 }
8626 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8627
8628 test_155h() {
8629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8630         set_cache read off
8631         set_cache writethrough off
8632         test_155_big_load
8633 }
8634 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8635
8636 test_156() {
8637         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8638         local CPAGES=3
8639         local BEFORE
8640         local AFTER
8641         local file="$DIR/$tfile"
8642
8643         [ "$(facet_fstype ost1)" = "zfs" ] &&
8644                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8645                 return
8646
8647     log "Turn on read and write cache"
8648     set_cache read on
8649     set_cache writethrough on
8650
8651     log "Write data and read it back."
8652     log "Read should be satisfied from the cache."
8653     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8654     BEFORE=`roc_hit`
8655     cancel_lru_locks osc
8656     cat $file >/dev/null
8657     AFTER=`roc_hit`
8658     if ! let "AFTER - BEFORE == CPAGES"; then
8659         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8660     else
8661         log "cache hits:: before: $BEFORE, after: $AFTER"
8662     fi
8663
8664     log "Read again; it should be satisfied from the cache."
8665     BEFORE=$AFTER
8666     cancel_lru_locks osc
8667     cat $file >/dev/null
8668     AFTER=`roc_hit`
8669     if ! let "AFTER - BEFORE == CPAGES"; then
8670         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8671     else
8672         log "cache hits:: before: $BEFORE, after: $AFTER"
8673     fi
8674
8675
8676     log "Turn off the read cache and turn on the write cache"
8677     set_cache read off
8678     set_cache writethrough on
8679
8680     log "Read again; it should be satisfied from the cache."
8681     BEFORE=`roc_hit`
8682     cancel_lru_locks osc
8683     cat $file >/dev/null
8684     AFTER=`roc_hit`
8685     if ! let "AFTER - BEFORE == CPAGES"; then
8686         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8687     else
8688         log "cache hits:: before: $BEFORE, after: $AFTER"
8689     fi
8690
8691     log "Read again; it should not be satisfied from the cache."
8692     BEFORE=$AFTER
8693     cancel_lru_locks osc
8694     cat $file >/dev/null
8695     AFTER=`roc_hit`
8696     if ! let "AFTER - BEFORE == 0"; then
8697         error "IN CACHE: before: $BEFORE, after: $AFTER"
8698     else
8699         log "cache hits:: before: $BEFORE, after: $AFTER"
8700     fi
8701
8702     log "Write data and read it back."
8703     log "Read should be satisfied from the cache."
8704     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8705     BEFORE=`roc_hit`
8706     cancel_lru_locks osc
8707     cat $file >/dev/null
8708     AFTER=`roc_hit`
8709     if ! let "AFTER - BEFORE == CPAGES"; then
8710         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8711     else
8712         log "cache hits:: before: $BEFORE, after: $AFTER"
8713     fi
8714
8715     log "Read again; it should not be satisfied from the cache."
8716     BEFORE=$AFTER
8717     cancel_lru_locks osc
8718     cat $file >/dev/null
8719     AFTER=`roc_hit`
8720     if ! let "AFTER - BEFORE == 0"; then
8721         error "IN CACHE: before: $BEFORE, after: $AFTER"
8722     else
8723         log "cache hits:: before: $BEFORE, after: $AFTER"
8724     fi
8725
8726
8727     log "Turn off read and write cache"
8728     set_cache read off
8729     set_cache writethrough off
8730
8731     log "Write data and read it back"
8732     log "It should not be satisfied from the cache."
8733     rm -f $file
8734     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8735     cancel_lru_locks osc
8736     BEFORE=`roc_hit`
8737     cat $file >/dev/null
8738     AFTER=`roc_hit`
8739     if ! let "AFTER - BEFORE == 0"; then
8740         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8741     else
8742         log "cache hits:: before: $BEFORE, after: $AFTER"
8743     fi
8744
8745
8746     log "Turn on the read cache and turn off the write cache"
8747     set_cache read on
8748     set_cache writethrough off
8749
8750     log "Write data and read it back"
8751     log "It should not be satisfied from the cache."
8752     rm -f $file
8753     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8754     BEFORE=`roc_hit`
8755     cancel_lru_locks osc
8756     cat $file >/dev/null
8757     AFTER=`roc_hit`
8758     if ! let "AFTER - BEFORE == 0"; then
8759         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
8760     else
8761         log "cache hits:: before: $BEFORE, after: $AFTER"
8762     fi
8763
8764     log "Read again; it should be satisfied from the cache."
8765     BEFORE=`roc_hit`
8766     cancel_lru_locks osc
8767     cat $file >/dev/null
8768     AFTER=`roc_hit`
8769     if ! let "AFTER - BEFORE == CPAGES"; then
8770         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8771     else
8772         log "cache hits:: before: $BEFORE, after: $AFTER"
8773     fi
8774
8775     rm -f $file
8776 }
8777 run_test 156 "Verification of tunables ============================"
8778
8779 #Changelogs
8780 err17935 () {
8781     if [ $MDSCOUNT -gt 1 ]; then
8782         error_ignore 17935 $*
8783     else
8784         error $*
8785     fi
8786 }
8787
8788 changelog_chmask()
8789 {
8790     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
8791            grep -c $1)
8792
8793     if [ $MASK -eq 1 ]; then
8794         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
8795     else
8796         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
8797     fi
8798 }
8799
8800 test_160() {
8801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8802     remote_mds_nodsh && skip "remote MDS with nodsh" && return
8803     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
8804         { skip "Need MDS version at least 2.2.0"; return; }
8805     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
8806     echo "Registered as changelog user $USER"
8807     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8808         grep -q $USER || error "User $USER not found in changelog_users"
8809
8810     # change something
8811     test_mkdir -p $DIR/$tdir/pics/2008/zachy
8812     touch $DIR/$tdir/pics/2008/zachy/timestamp
8813     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
8814     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
8815     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
8816     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
8817     rm $DIR/$tdir/pics/desktop.jpg
8818
8819     $LFS changelog $MDT0 | tail -5
8820
8821     echo "verifying changelog mask"
8822     changelog_chmask "MKDIR"
8823     changelog_chmask "CLOSE"
8824
8825     test_mkdir -p $DIR/$tdir/pics/zach/sofia
8826     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8827
8828     changelog_chmask "MKDIR"
8829     changelog_chmask "CLOSE"
8830
8831     test_mkdir -p $DIR/$tdir/pics/2008/sofia
8832     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
8833
8834     $LFS changelog $MDT0
8835     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
8836     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
8837     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
8838     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
8839
8840     # verify contents
8841     echo "verifying target fid"
8842     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8843         tail -1 | awk '{print $6}')
8844     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
8845     [ "$fidc" == "t=$fidf" ] || \
8846         err17935 "fid in changelog $fidc != file fid $fidf"
8847     echo "verifying parent fid"
8848     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
8849         tail -1 | awk '{print $7}')
8850     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
8851     [ "$fidc" == "p=$fidf" ] || \
8852         err17935 "pfid in changelog $fidc != dir fid $fidf"
8853
8854     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8855         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8856     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
8857     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8858         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
8859     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
8860     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
8861         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
8862
8863     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
8864         awk 'min == "" || $2 < min {min = $2}; END {print min}')
8865     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
8866     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
8867     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
8868         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
8869
8870     echo "verifying user deregister"
8871     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
8872     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
8873         grep -q $USER && error "User $USER still found in changelog_users"
8874
8875     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
8876         mdd.$MDT0.changelog_users | wc -l) - 2 ))
8877     if [ $USERS -eq 0 ]; then
8878         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
8879             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8880         touch $DIR/$tdir/chloe
8881         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
8882             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
8883         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
8884         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
8885     else
8886         echo "$USERS other changelog users; can't verify off"
8887     fi
8888 }
8889 run_test 160 "changelog sanity"
8890
8891 test_161() {
8892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8893     test_mkdir -p $DIR/$tdir
8894     cp /etc/hosts $DIR/$tdir/$tfile
8895     test_mkdir $DIR/$tdir/foo1
8896     test_mkdir $DIR/$tdir/foo2
8897     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
8898     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
8899     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
8900     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
8901     local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[')
8902     if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
8903         $LFS fid2path $DIR $FID
8904         err17935 "bad link ea"
8905     fi
8906     # middle
8907     rm $DIR/$tdir/foo2/zachary
8908     # last
8909     rm $DIR/$tdir/foo2/thor
8910     # first
8911     rm $DIR/$tdir/$tfile
8912     # rename
8913     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
8914     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
8915         then
8916         $LFS fid2path $DIR $FID
8917         err17935 "bad link rename"
8918     fi
8919     rm $DIR/$tdir/foo2/maggie
8920
8921     # overflow the EA
8922     local longname=filename_avg_len_is_thirty_two_
8923     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
8924         error "failed to hardlink many files"
8925     links=$($LFS fid2path $DIR $FID | wc -l)
8926     echo -n "${links}/1000 links in link EA"
8927     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
8928     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
8929         error "failed to unlink many hardlinks"
8930 }
8931 run_test 161 "link ea sanity"
8932
8933 check_path() {
8934     local expected=$1
8935     shift
8936     local fid=$2
8937
8938     local path=$(${LFS} fid2path $*)
8939     RC=$?
8940
8941     if [ $RC -ne 0 ]; then
8942         err17935 "path looked up of $expected failed. Error $RC"
8943         return $RC
8944     elif [ "${path}" != "${expected}" ]; then
8945         err17935 "path looked up \"${path}\" instead of \"${expected}\""
8946         return 2
8947     fi
8948     echo "fid $fid resolves to path $path (expected $expected)"
8949 }
8950
8951 test_162() {
8952         # Make changes to filesystem
8953         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8954         test_mkdir -p $DIR/$tdir/d2
8955         touch $DIR/$tdir/d2/$tfile
8956         touch $DIR/$tdir/d2/x1
8957         touch $DIR/$tdir/d2/x2
8958         test_mkdir -p $DIR/$tdir/d2/a/b/c
8959         test_mkdir -p $DIR/$tdir/d2/p/q/r
8960         # regular file
8961         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
8962         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
8963
8964         # softlink
8965         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
8966         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
8967         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
8968
8969         # softlink to wrong file
8970         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
8971         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
8972         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
8973
8974         # hardlink
8975         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
8976         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
8977         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
8978         # fid2path dir/fsname should both work
8979         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
8980         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
8981
8982         # hardlink count: check that there are 2 links
8983         # Doesnt work with CMD yet: 17935
8984         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
8985                 err17935 "expected 2 links"
8986
8987         # hardlink indexing: remove the first link
8988         rm $DIR/$tdir/d2/p/q/r/hlink
8989         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
8990
8991         return 0
8992 }
8993 run_test 162 "path lookup sanity"
8994
8995 test_163() {
8996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8997         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8998         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
8999         copytool $FSNAME &
9000         sleep 1
9001         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
9002         # this proc file is temporary and linux-only
9003         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
9004          error "kernel->userspace send failed"
9005         kill -INT $!
9006 }
9007 run_test 163 "kernel <-> userspace comms"
9008
9009 test_169() {
9010         # do directio so as not to populate the page cache
9011         log "creating a 10 Mb file"
9012         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9013         log "starting reads"
9014         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9015         log "truncating the file"
9016         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9017         log "killing dd"
9018         kill %+ || true # reads might have finished
9019         echo "wait until dd is finished"
9020         wait
9021         log "removing the temporary file"
9022         rm -rf $DIR/$tfile || error "tmp file removal failed"
9023 }
9024 run_test 169 "parallel read and truncate should not deadlock"
9025
9026 test_170() {
9027         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9028         $LCTL clear     # bug 18514
9029         $LCTL debug_daemon start $TMP/${tfile}_log_good
9030         touch $DIR/$tfile
9031         $LCTL debug_daemon stop
9032         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9033                error "sed failed to read log_good"
9034
9035         $LCTL debug_daemon start $TMP/${tfile}_log_good
9036         rm -rf $DIR/$tfile
9037         $LCTL debug_daemon stop
9038
9039         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9040                error "lctl df log_bad failed"
9041
9042         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9043         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9044
9045         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9046         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9047
9048         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9049                 error "bad_line good_line1 good_line2 are empty"
9050
9051         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9052         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9053         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9054
9055         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9056         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9057         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9058
9059         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9060                 error "bad_line_new good_line_new are empty"
9061
9062         local expected_good=$((good_line1 + good_line2*2))
9063
9064         rm -f $TMP/${tfile}*
9065         # LU-231, short malformed line may not be counted into bad lines
9066         if [ $bad_line -ne $bad_line_new ] &&
9067                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9068                 error "expected $bad_line bad lines, but got $bad_line_new"
9069                 return 1
9070         fi
9071
9072         if [ $expected_good -ne $good_line_new ]; then
9073                 error "expected $expected_good good lines, but got $good_line_new"
9074                 return 2
9075         fi
9076         true
9077 }
9078 run_test 170 "test lctl df to handle corrupted log ====================="
9079
9080 test_171() { # bug20592
9081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9082 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9083         $LCTL set_param fail_loc=0x50e
9084         $LCTL set_param fail_val=3000
9085         multiop_bg_pause $DIR/$tfile O_s || true
9086         local MULTIPID=$!
9087         kill -USR1 $MULTIPID
9088         # cause log dump
9089         sleep 3
9090         wait $MULTIPID
9091         if dmesg | grep "recursive fault"; then
9092                 error "caught a recursive fault"
9093         fi
9094         $LCTL set_param fail_loc=0
9095         true
9096 }
9097 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9098
9099 # it would be good to share it with obdfilter-survey/libecho code
9100 setup_obdecho_osc () {
9101         local rc=0
9102         local ost_nid=$1
9103         local obdfilter_name=$2
9104         echo "Creating new osc for $obdfilter_name on $ost_nid"
9105         # make sure we can find loopback nid
9106         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9107
9108         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9109                            ${obdfilter_name}_osc_UUID || rc=2; }
9110         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9111                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9112         return $rc
9113 }
9114
9115 cleanup_obdecho_osc () {
9116         local obdfilter_name=$1
9117         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9118         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9119         return 0
9120 }
9121
9122 obdecho_create_test() {
9123         local OBD=$1
9124         local node=$2
9125         local rc=0
9126         local id
9127         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9128         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9129                            rc=2; }
9130         if [ $rc -eq 0 ]; then
9131             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9132             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9133         fi
9134         echo "New object id is $id"
9135         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
9136                            rc=4; }
9137         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9138                                         "cleanup" || rc=5; }
9139         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9140                                         "detach" || rc=6; }
9141         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9142         return $rc
9143 }
9144
9145 test_180a() {
9146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9147         remote_ost_nodsh && skip "remote OST with nodsh" && return
9148         local rc=0
9149         local rmmod_local=0
9150
9151         if ! module_loaded obdecho; then
9152             load_module obdecho/obdecho
9153             rmmod_local=1
9154         fi
9155
9156         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9157         local host=$(lctl get_param -n osc.$osc.import |
9158                              awk '/current_connection:/ {print $2}' )
9159         local target=$(lctl get_param -n osc.$osc.import |
9160                              awk '/target:/ {print $2}' )
9161         target=${target%_UUID}
9162
9163         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9164         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
9165         [[ -n $target ]] && cleanup_obdecho_osc $target
9166         [ $rmmod_local -eq 1 ] && rmmod obdecho
9167         return $rc
9168 }
9169 run_test 180a "test obdecho on osc"
9170
9171 test_180b() {
9172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9173         remote_ost_nodsh && skip "remote OST with nodsh" && return
9174         local rc=0
9175         local rmmod_remote=0
9176
9177         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9178                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9179                       "modprobe obdecho; }" && rmmod_remote=1
9180         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9181         [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
9182         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9183         return $rc
9184 }
9185 run_test 180b "test obdecho directly on obdfilter"
9186
9187 test_181() { # bug 22177
9188         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9189         # create enough files to index the directory
9190         createmany -o $DIR/$tdir/foobar 4000
9191         # print attributes for debug purpose
9192         lsattr -d .
9193         # open dir
9194         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9195         MULTIPID=$!
9196         # remove the files & current working dir
9197         unlinkmany $DIR/$tdir/foobar 4000
9198         rmdir $DIR/$tdir
9199         kill -USR1 $MULTIPID
9200         wait $MULTIPID
9201         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9202         return 0
9203 }
9204 run_test 181 "Test open-unlinked dir ========================"
9205
9206 test_182() {
9207         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9208         # disable MDC RPC lock wouldn't crash client
9209         local fcount=1000
9210         local tcount=4
9211
9212         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9213 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9214         $LCTL set_param fail_loc=0x804
9215
9216         for (( i=0; i < $tcount; i++ )) ; do
9217                 mkdir $DIR/$tdir/$i
9218                 createmany -o $DIR/$tdir/$i/f- $fcount &
9219         done
9220         wait
9221
9222         for (( i=0; i < $tcount; i++ )) ; do
9223                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9224         done
9225         wait
9226
9227         rm -rf $DIR/$tdir
9228
9229         $LCTL set_param fail_loc=0
9230 }
9231 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9232
9233 test_183() { # LU-2275
9234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9235         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9236         echo aaa > $DIR/$tdir/$tfile
9237
9238 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9239         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9240
9241         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9242         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9243
9244         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9245
9246         # Flush negative dentry cache
9247         touch $DIR/$tdir/$tfile
9248
9249         # We are not checking for any leaked references here, they'll
9250         # become evident next time we do cleanup with module unload.
9251         rm -rf $DIR/$tdir
9252 }
9253 run_test 183 "No crash or request leak in case of strange dispositions ========"
9254
9255 # OST pools tests
9256 check_file_in_pool()
9257 {
9258         local file=$1
9259         local pool=$2
9260         local tlist="$3"
9261         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
9262         for i in $res
9263         do
9264                 for t in $tlist ; do
9265                         [ "$i" -eq "$t" ] && continue 2
9266                 done
9267
9268                 echo "pool list: $tlist"
9269                 echo "striping: $res"
9270                 error_noexit "$file not allocated in $pool"
9271                 return 1
9272         done
9273         return 0
9274 }
9275
9276 pool_add() {
9277         echo "Creating new pool"
9278         local pool=$1
9279
9280         create_pool $FSNAME.$pool ||
9281                 { error_noexit "No pool created, result code $?"; return 1; }
9282         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
9283                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9284 }
9285
9286 pool_add_targets() {
9287         echo "Adding targets to pool"
9288         local pool=$1
9289         local first=$2
9290         local last=$3
9291         local step=${4:-1}
9292
9293         local list=$(seq $first $step $last)
9294
9295         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9296         do_facet mgs $LCTL pool_add \
9297                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
9298         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
9299                         | sort -u | tr '\n' ' ' " "$t" || { 
9300                 error_noexit "Add to pool failed"
9301                 return 1
9302         }
9303         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
9304         local addcount=$(((last - first) / step + 1))
9305         [ $lfscount -eq $addcount ] || {
9306                 error_noexit "lfs pool_list bad ost count" \
9307                                                 "$lfscount != $addcount"
9308                 return 2
9309         }
9310 }
9311
9312 pool_set_dir() {
9313         local pool=$1
9314         local tdir=$2
9315         echo "Setting pool on directory $tdir"
9316
9317         $SETSTRIPE -c 2 -p $pool $tdir && return 0
9318
9319         error_noexit "Cannot set pool $pool to $tdir"
9320         return 1
9321 }
9322
9323 pool_check_dir() {
9324         local pool=$1
9325         local tdir=$2
9326         echo "Checking pool on directory $tdir"
9327
9328         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
9329         [ "$res" = "$pool" ] && return 0
9330
9331         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9332         return 1
9333 }
9334
9335 pool_dir_rel_path() {
9336         echo "Testing relative path works well"
9337         local pool=$1
9338         local tdir=$2
9339         local root=$3
9340
9341         mkdir -p $root/$tdir/$tdir
9342         cd $root/$tdir
9343         pool_set_dir $pool $tdir          || return 1
9344         pool_set_dir $pool ./$tdir        || return 2
9345         pool_set_dir $pool ../$tdir       || return 3
9346         pool_set_dir $pool ../$tdir/$tdir || return 4
9347         rm -rf $tdir; cd - > /dev/null
9348 }
9349
9350 pool_alloc_files() {
9351         echo "Checking files allocation from directory pool"
9352         local pool=$1
9353         local tdir=$2
9354         local count=$3
9355         local tlist="$4"
9356
9357         local failed=0
9358         for i in $(seq -w 1 $count)
9359         do
9360                 local file=$tdir/file-$i
9361                 touch $file
9362                 check_file_in_pool $file $pool "$tlist" || \
9363                         failed=$((failed + 1))
9364         done
9365         [ "$failed" = 0 ] && return 0
9366
9367         error_noexit "$failed files not allocated in $pool"
9368         return 1
9369 }
9370
9371 pool_create_files() {
9372         echo "Creating files in pool"
9373         local pool=$1
9374         local tdir=$2
9375         local count=$3
9376         local tlist="$4"
9377
9378         mkdir -p $tdir
9379         local failed=0
9380         for i in $(seq -w 1 $count)
9381         do
9382                 local file=$tdir/spoo-$i
9383                 $SETSTRIPE -p $pool $file
9384                 check_file_in_pool $file $pool "$tlist" || \
9385                         failed=$((failed + 1))
9386         done
9387         [ "$failed" = 0 ] && return 0
9388
9389         error_noexit "$failed files not allocated in $pool"
9390         return 1
9391 }
9392
9393 pool_lfs_df() {
9394         echo "Checking 'lfs df' output"
9395         local pool=$1
9396
9397         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9398                         tr '\n' ' ')
9399         local res=$($LFS df --pool $FSNAME.$pool |
9400                         awk '{print $1}' |
9401                         grep "$FSNAME-OST" |
9402                         tr '\n' ' ')
9403         [ "$res" = "$t" ] && return 0
9404
9405         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9406         return 1
9407 }
9408
9409 pool_file_rel_path() {
9410         echo "Creating files in a pool with relative pathname"
9411         local pool=$1
9412         local tdir=$2
9413
9414         mkdir -p $tdir ||
9415                 { error_noexit "unable to create $tdir"; return 1 ; }
9416         local file="/..$tdir/$tfile-1"
9417         $SETSTRIPE -p $pool $file ||
9418                 { error_noexit "unable to create $file" ; return 2 ; }
9419
9420         cd $tdir
9421         $SETSTRIPE -p $pool $tfile-2 || {
9422                 error_noexit "unable to create $tfile-2 in $tdir"
9423                 return 3
9424         }
9425 }
9426
9427 pool_remove_first_target() {
9428         echo "Removing first target from a pool"
9429         local pool=$1
9430
9431         local pname="lov.$FSNAME-*.pools.$pool"
9432         local t=$($LCTL get_param -n $pname | head -1)
9433         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9434         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9435                 error_noexit "$t not removed from $FSNAME.$pool"
9436                 return 1
9437         }
9438 }
9439
9440 pool_remove_all_targets() {
9441         echo "Removing all targets from pool"
9442         local pool=$1
9443         local file=$2
9444         local pname="lov.$FSNAME-*.pools.$pool"
9445         for t in $($LCTL get_param -n $pname | sort -u)
9446         do
9447                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9448         done
9449         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9450                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9451                 return 1
9452         }
9453         # striping on an empty/nonexistant pool should fall back 
9454         # to "pool of everything"
9455         touch $file || {
9456                 error_noexit "failed to use fallback striping for empty pool"
9457                 return 2
9458         }
9459         # setstripe on an empty pool should fail
9460         $SETSTRIPE -p $pool $file 2>/dev/null && {
9461                 error_noexit "expected failure when creating file" \
9462                                                         "with empty pool"
9463                 return 3
9464         }
9465         return 0
9466 }
9467
9468 pool_remove() {
9469         echo "Destroying pool"
9470         local pool=$1
9471         local file=$2
9472
9473         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9474
9475         sleep 2
9476         # striping on an empty/nonexistant pool should fall back 
9477         # to "pool of everything"
9478         touch $file || {
9479                 error_noexit "failed to use fallback striping for missing pool"
9480                 return 1
9481         }
9482         # setstripe on an empty pool should fail
9483         $SETSTRIPE -p $pool $file 2>/dev/null && {
9484                 error_noexit "expected failure when creating file" \
9485                                                         "with missing pool"
9486                 return 2
9487         }
9488
9489         # get param should return err once pool is gone
9490         if wait_update $HOSTNAME "lctl get_param -n \
9491                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9492         then
9493                 remove_pool_from_list $FSNAME.$pool
9494                 return 0
9495         fi
9496         error_noexit "Pool $FSNAME.$pool is not destroyed"
9497         return 3
9498 }
9499
9500 test_200() {
9501         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9502         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
9503
9504         local POOL=${POOL:-cea1}
9505         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
9506         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
9507         # Pool OST targets
9508         local first_ost=0
9509         local last_ost=$(($OSTCOUNT - 1))
9510         local ost_step=2
9511         local ost_list=$(seq $first_ost $ost_step $last_ost)
9512         local ost_range="$first_ost $last_ost $ost_step"
9513         local test_path=$POOL_ROOT/$POOL_DIR_NAME
9514         local file_dir=$POOL_ROOT/file_tst
9515
9516         local rc=0
9517         while : ; do
9518                 # former test_200a test_200b
9519                 pool_add $POOL                          || { rc=$? ; break; }
9520                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
9521                 # former test_200c test_200d
9522                 mkdir -p $test_path
9523                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
9524                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
9525                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
9526                                                         || { rc=$? ; break; }
9527                 # former test_200e test_200f
9528                 local files=$((OSTCOUNT*3))
9529                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
9530                                                         || { rc=$? ; break; }
9531                 pool_create_files $POOL $file_dir $files "$ost_list" \
9532                                                         || { rc=$? ; break; }
9533                 # former test_200g test_200h
9534                 pool_lfs_df $POOL                       || { rc=$? ; break; }
9535                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
9536
9537                 # former test_201a test_201b test_201c
9538                 pool_remove_first_target $POOL          || { rc=$? ; break; }
9539
9540                 local f=$test_path/$tfile
9541                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
9542                 pool_remove $POOL $f                    || { rc=$? ; break; }
9543                 break
9544         done
9545
9546         cleanup_pools
9547         return $rc
9548 }
9549 run_test 200 "OST pools"
9550
9551 # usage: default_attr <count | size | offset>
9552 default_attr() {
9553         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
9554 }
9555
9556 # usage: check_default_stripe_attr
9557 check_default_stripe_attr() {
9558         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
9559         case $1 in
9560         --stripe-count|--count)
9561                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
9562         --stripe-size|--size)
9563                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
9564         --stripe-index|--index)
9565                 EXPECTED=-1;;
9566         *)
9567                 error "unknown getstripe attr '$1'"
9568         esac
9569
9570         [ $ACTUAL != $EXPECTED ] &&
9571                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
9572 }
9573
9574 test_204a() {
9575         test_mkdir -p $DIR/$tdir
9576         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
9577
9578         check_default_stripe_attr --stripe-count
9579         check_default_stripe_attr --stripe-size
9580         check_default_stripe_attr --stripe-index
9581
9582         return 0
9583 }
9584 run_test 204a "Print default stripe attributes ================="
9585
9586 test_204b() {
9587         test_mkdir -p $DIR/$tdir
9588         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9589
9590         check_default_stripe_attr --stripe-size
9591         check_default_stripe_attr --stripe-index
9592
9593         return 0
9594 }
9595 run_test 204b "Print default stripe size and offset  ==========="
9596
9597 test_204c() {
9598         test_mkdir -p $DIR/$tdir
9599         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9600
9601         check_default_stripe_attr --stripe-count
9602         check_default_stripe_attr --stripe-index
9603
9604         return 0
9605 }
9606 run_test 204c "Print default stripe count and offset ==========="
9607
9608 test_204d() {
9609         test_mkdir -p $DIR/$tdir
9610         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9611
9612         check_default_stripe_attr --stripe-count
9613         check_default_stripe_attr --stripe-size
9614
9615         return 0
9616 }
9617 run_test 204d "Print default stripe count and size ============="
9618
9619 test_204e() {
9620         test_mkdir -p $DIR/$tdir
9621         $SETSTRIPE -d $DIR/$tdir
9622
9623         check_default_stripe_attr --stripe-count --raw
9624         check_default_stripe_attr --stripe-size --raw
9625         check_default_stripe_attr --stripe-index --raw
9626
9627         return 0
9628 }
9629 run_test 204e "Print raw stripe attributes ================="
9630
9631 test_204f() {
9632         test_mkdir -p $DIR/$tdir
9633         $SETSTRIPE --stripe-count 1 $DIR/$tdir
9634
9635         check_default_stripe_attr --stripe-size --raw
9636         check_default_stripe_attr --stripe-index --raw
9637
9638         return 0
9639 }
9640 run_test 204f "Print raw stripe size and offset  ==========="
9641
9642 test_204g() {
9643         test_mkdir -p $DIR/$tdir
9644         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
9645
9646         check_default_stripe_attr --stripe-count --raw
9647         check_default_stripe_attr --stripe-index --raw
9648
9649         return 0
9650 }
9651 run_test 204g "Print raw stripe count and offset ==========="
9652
9653 test_204h() {
9654         test_mkdir -p $DIR/$tdir
9655         $SETSTRIPE --stripe-index 0 $DIR/$tdir
9656
9657         check_default_stripe_attr --stripe-count --raw
9658         check_default_stripe_attr --stripe-size --raw
9659
9660         return 0
9661 }
9662 run_test 204h "Print raw stripe count and size ============="
9663
9664 # Figure out which job scheduler is being used, if any,
9665 # or use a fake one
9666 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
9667         JOBENV=SLURM_JOB_ID
9668 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
9669         JOBENV=LSB_JOBID
9670 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
9671         JOBENV=PBS_JOBID
9672 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
9673         JOBENV=LOADL_STEP_ID
9674 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
9675         JOBENV=JOB_ID
9676 else
9677         JOBENV=FAKE_JOBID
9678 fi
9679
9680 verify_jobstats() {
9681         local cmd=$1
9682         local target=$2
9683
9684         # clear old jobstats
9685         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
9686         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
9687
9688         # use a new JobID for this test, or we might see an old one
9689         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
9690
9691         JOBVAL=${!JOBENV}
9692         log "Test: $cmd"
9693         log "Using JobID environment variable $JOBENV=$JOBVAL"
9694
9695         if [ $JOBENV = "FAKE_JOBID" ]; then
9696                 FAKE_JOBID=$JOBVAL $cmd
9697         else
9698                 $cmd
9699         fi
9700
9701         if [ "$target" = "mdt" -o "$target" = "both" ]; then
9702                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
9703                 do_facet $FACET lctl get_param mdt.*.job_stats |
9704                         grep $JOBVAL || error "No job stats found on MDT $FACET"
9705         fi
9706         if [ "$target" = "ost" -o "$target" = "both" ]; then
9707                 FACET=ost1
9708                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
9709                         grep $JOBVAL || error "No job stats found on OST $FACET"
9710         fi
9711 }
9712
9713 test_205() { # Job stats
9714         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9715         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
9716                 skip "Server doesn't support jobstats" && return 0
9717
9718         local cmd
9719         OLD_JOBENV=`$LCTL get_param -n jobid_var`
9720         if [ $OLD_JOBENV != $JOBENV ]; then
9721                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$JOBENV
9722                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9723                         $JOBENV || return 1
9724         fi
9725
9726         # mkdir
9727         cmd="mkdir $DIR/$tfile"
9728         verify_jobstats "$cmd" "mdt"
9729         # rmdir
9730         cmd="rm -fr $DIR/$tfile"
9731         verify_jobstats "$cmd" "mdt"
9732         # mknod
9733         cmd="mknod $DIR/$tfile c 1 3"
9734         verify_jobstats "$cmd" "mdt"
9735         # unlink
9736         cmd="rm -f $DIR/$tfile"
9737         verify_jobstats "$cmd" "mdt"
9738         # open & close
9739         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
9740         verify_jobstats "$cmd" "mdt"
9741         # setattr
9742         cmd="touch $DIR/$tfile"
9743         verify_jobstats "$cmd" "both"
9744         # write
9745         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
9746         verify_jobstats "$cmd" "ost"
9747         # read
9748         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
9749         verify_jobstats "$cmd" "ost"
9750         # truncate
9751         cmd="$TRUNCATE $DIR/$tfile 0"
9752         verify_jobstats "$cmd" "both"
9753         # rename
9754         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
9755         verify_jobstats "$cmd" "mdt"
9756
9757         # cleanup
9758         rm -f $DIR/jobstats_test_rename
9759
9760         if [ $OLD_JOBENV != $JOBENV ]; then
9761                 do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$OLD_JOBENV
9762                 wait_update $HOSTNAME "$LCTL get_param -n jobid_var" \
9763                         $OLD_JOBENV || return 1
9764         fi
9765 }
9766 run_test 205 "Verify job stats"
9767
9768 # LU-1480, LU-1773 and LU-1657
9769 test_206() {
9770         mkdir -p $DIR/$tdir
9771         lfs setstripe -c -1 $DIR/$tdir
9772 #define OBD_FAIL_LOV_INIT 0x1403
9773         $LCTL set_param fail_loc=0xa0001403
9774         $LCTL set_param fail_val=1
9775         touch $DIR/$tdir/$tfile || true
9776 }
9777 run_test 206 "fail lov_init_raid0() doesn't lbug"
9778
9779 test_212() {
9780         size=`date +%s`
9781         size=$((size % 8192 + 1))
9782         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
9783         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
9784         rm -f $DIR/f212 $DIR/f212.xyz
9785 }
9786 run_test 212 "Sendfile test ============================================"
9787
9788 test_213() {
9789         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
9790         cancel_lru_locks osc
9791         lctl set_param fail_loc=0x8000040f
9792         # generate a read lock
9793         cat $DIR/$tfile > /dev/null
9794         # write to the file, it will try to cancel the above read lock.
9795         cat /etc/hosts >> $DIR/$tfile
9796 }
9797 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
9798
9799 test_214() { # for bug 20133
9800         test_mkdir -p $DIR/d214p/d214c
9801         for (( i=0; i < 340; i++ )) ; do
9802                 touch $DIR/d214p/d214c/a$i
9803         done
9804
9805         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
9806         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
9807         ls $DIR/d214c || error "ls $DIR/d214c failed"
9808         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
9809 }
9810 run_test 214 "hash-indexed directory test - bug 20133"
9811
9812 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
9813 create_lnet_proc_files() {
9814         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
9815         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
9816
9817         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
9818         rm -f "$TMP/lnet_$1.sys_tmp"
9819 }
9820
9821 # counterpart of create_lnet_proc_files
9822 remove_lnet_proc_files() {
9823         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
9824 }
9825
9826 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9827 # 3rd arg as regexp for body
9828 check_lnet_proc_stats() {
9829         local l=$(cat "$TMP/lnet_$1" |wc -l)
9830         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
9831
9832         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
9833 }
9834
9835 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
9836 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
9837 # optional and can be regexp for 2nd line (lnet.routes case)
9838 check_lnet_proc_entry() {
9839         local blp=2            # blp stands for 'position of 1st line of body'
9840         [ "$5" = "" ] || blp=3 # lnet.routes case
9841
9842         local l=$(cat "$TMP/lnet_$1" |wc -l)
9843         # subtracting one from $blp because the body can be empty
9844         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
9845
9846         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
9847                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
9848
9849         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
9850                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
9851
9852         # bail out if any unexpected line happened
9853         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
9854         [ "$?" != 0 ] || error "$2 misformatted"
9855 }
9856
9857 test_215() { # for bugs 18102, 21079, 21517
9858         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9859         local N='(0|[1-9][0-9]*)'       # non-negative numeric
9860         local P='[1-9][0-9]*'           # positive numeric
9861         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
9862         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
9863         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
9864         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
9865
9866         local L1 # regexp for 1st line
9867         local L2 # regexp for 2nd line (optional)
9868         local BR # regexp for the rest (body)
9869
9870         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
9871         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
9872         create_lnet_proc_files "stats"
9873         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
9874         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
9875         remove_lnet_proc_files "stats"
9876
9877         # /proc/sys/lnet/routes should look like this:
9878         # Routing disabled/enabled
9879         # net hops state router
9880         # where net is a string like tcp0, hops >= 0, state is up/down,
9881         # router is a string like 192.168.1.1@tcp2
9882         L1="^Routing (disabled|enabled)$"
9883         L2="^net +hops +state +router$"
9884         BR="^$NET +$N +(up|down) +$NID$"
9885         create_lnet_proc_files "routes"
9886         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
9887         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
9888         remove_lnet_proc_files "routes"
9889
9890         # /proc/sys/lnet/routers should look like this:
9891         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
9892         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
9893         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
9894         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
9895         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
9896         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
9897         create_lnet_proc_files "routers"
9898         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
9899         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
9900         remove_lnet_proc_files "routers"
9901
9902         # /proc/sys/lnet/peers should look like this:
9903         # nid refs state last max rtr min tx min queue
9904         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
9905         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
9906         # numeric (0 or >0 or <0), queue >= 0.
9907         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
9908         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
9909         create_lnet_proc_files "peers"
9910         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
9911         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
9912         remove_lnet_proc_files "peers"
9913
9914         # /proc/sys/lnet/buffers  should look like this:
9915         # pages count credits min
9916         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
9917         L1="^pages +count +credits +min$"
9918         BR="^ +$N +$N +$I +$I$"
9919         create_lnet_proc_files "buffers"
9920         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
9921         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
9922         remove_lnet_proc_files "buffers"
9923
9924         # /proc/sys/lnet/nis should look like this:
9925         # nid status alive refs peer rtr max tx min
9926         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
9927         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
9928         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
9929         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
9930         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
9931         create_lnet_proc_files "nis"
9932         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
9933         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
9934         remove_lnet_proc_files "nis"
9935
9936         # can we successfully write to /proc/sys/lnet/stats?
9937         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
9938         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
9939 }
9940 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
9941
9942 test_216() { # bug 20317
9943         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9944         remote_ost_nodsh && skip "remote OST with nodsh" && return
9945         local node
9946         local p="$TMP/sanityN-$TESTNAME.parameters"
9947         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
9948         for node in $(osts_nodes); do
9949                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
9950                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
9951                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
9952         done
9953         clear_osc_stats
9954
9955         # agressive lockless i/o settings
9956         for node in $(osts_nodes); do
9957                 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'
9958         done
9959         lctl set_param -n osc.*.contention_seconds 60
9960
9961         $DIRECTIO write $DIR/$tfile 0 10 4096
9962         $CHECKSTAT -s 40960 $DIR/$tfile
9963
9964         # disable lockless i/o
9965         for node in $(osts_nodes); do
9966                 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'
9967         done
9968         lctl set_param -n osc.*.contention_seconds 0
9969         clear_osc_stats
9970
9971         dd if=/dev/zero of=$DIR/$tfile count=0
9972         $CHECKSTAT -s 0 $DIR/$tfile
9973
9974         restore_lustre_params <$p
9975         rm -f $p
9976         rm $DIR/$tfile
9977 }
9978 run_test 216 "check lockless direct write works and updates file size and kms correctly"
9979
9980 test_217() { # bug 22430
9981         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9982         local node
9983         local nid
9984
9985         for node in $(nodes_list); do
9986                 nid=$(host_nids_address $node $NETTYPE)
9987                 if [[ $nid = *-* ]] ; then
9988                         echo "lctl ping $nid@$NETTYPE"
9989                         lctl ping $nid@$NETTYPE
9990                 else
9991                         echo "skipping $node (no hyphen detected)"
9992                 fi
9993         done
9994 }
9995 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
9996
9997 test_218() {
9998        # do directio so as not to populate the page cache
9999        log "creating a 10 Mb file"
10000        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10001        log "starting reads"
10002        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10003        log "truncating the file"
10004        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10005        log "killing dd"
10006        kill %+ || true # reads might have finished
10007        echo "wait until dd is finished"
10008        wait
10009        log "removing the temporary file"
10010        rm -rf $DIR/$tfile || error "tmp file removal failed"
10011 }
10012 run_test 218 "parallel read and truncate should not deadlock ======================="
10013
10014 test_219() {
10015         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10016         # write one partial page
10017         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
10018         # set no grant so vvp_io_commit_write will do sync write
10019         $LCTL set_param fail_loc=0x411
10020         # write a full page at the end of file
10021         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
10022
10023         $LCTL set_param fail_loc=0
10024         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
10025         $LCTL set_param fail_loc=0x411
10026         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
10027 }
10028 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
10029
10030 test_220() { #LU-325
10031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10032         remote_ost_nodsh && skip "remote OST with nodsh" && return
10033         local OSTIDX=0
10034
10035         test_mkdir -p $DIR/$tdir
10036         local OST=$(lfs osts | grep ${OSTIDX}": " | \
10037                 awk '{print $2}' | sed -e 's/_UUID$//')
10038
10039         # on the mdt's osc
10040         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
10041         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
10042                         osc.$mdtosc_proc1.prealloc_last_id)
10043         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
10044                         osc.$mdtosc_proc1.prealloc_next_id)
10045
10046         $LFS df -i
10047
10048         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
10049         #define OBD_FAIL_OST_ENOINO              0x229
10050         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
10051         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
10052         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
10053
10054         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
10055
10056         MDSOBJS=$((last_id - next_id))
10057         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
10058
10059         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
10060         echo "OST still has $count kbytes free"
10061
10062         echo "create $MDSOBJS files @next_id..."
10063         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
10064
10065         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10066                         osc.$mdtosc_proc1.prealloc_last_id)
10067         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10068                         osc.$mdtosc_proc1.prealloc_next_id)
10069
10070         echo "after creation, last_id=$last_id2, next_id=$next_id2"
10071         $LFS df -i
10072
10073         echo "cleanup..."
10074
10075         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
10076         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
10077
10078         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
10079         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
10080         echo "unlink $MDSOBJS files @$next_id..."
10081         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
10082 }
10083 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
10084
10085 test_221() {
10086         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10087         dd if=`which date` of=$MOUNT/date oflag=sync
10088         chmod +x $MOUNT/date
10089
10090         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
10091         $LCTL set_param fail_loc=0x80001401
10092
10093         $MOUNT/date > /dev/null
10094         rm -f $MOUNT/date
10095 }
10096 run_test 221 "make sure fault and truncate race to not cause OOM"
10097
10098 test_222a () {
10099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10100        rm -rf $DIR/$tdir
10101        test_mkdir -p $DIR/$tdir
10102        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10103        createmany -o $DIR/$tdir/$tfile 10
10104        cancel_lru_locks mdc
10105        cancel_lru_locks osc
10106        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10107        $LCTL set_param fail_loc=0x31a
10108        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
10109        $LCTL set_param fail_loc=0
10110        rm -r $DIR/$tdir
10111 }
10112 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
10113
10114 test_222b () {
10115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10116        rm -rf $DIR/$tdir
10117        test_mkdir -p $DIR/$tdir
10118        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10119        createmany -o $DIR/$tdir/$tfile 10
10120        cancel_lru_locks mdc
10121        cancel_lru_locks osc
10122        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10123        $LCTL set_param fail_loc=0x31a
10124        rm -r $DIR/$tdir || "AGL for rmdir failed"
10125        $LCTL set_param fail_loc=0
10126 }
10127 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
10128
10129 test_223 () {
10130         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10131        rm -rf $DIR/$tdir
10132        test_mkdir -p $DIR/$tdir
10133        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10134        createmany -o $DIR/$tdir/$tfile 10
10135        cancel_lru_locks mdc
10136        cancel_lru_locks osc
10137        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
10138        $LCTL set_param fail_loc=0x31b
10139        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
10140        $LCTL set_param fail_loc=0
10141        rm -r $DIR/$tdir
10142 }
10143 run_test 223 "osc reenqueue if without AGL lock granted ======================="
10144
10145 test_224a() { # LU-1039, MRP-303
10146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10147         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
10148         $LCTL set_param fail_loc=0x508
10149         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
10150         $LCTL set_param fail_loc=0
10151         df $DIR
10152 }
10153 run_test 224a "Don't panic on bulk IO failure"
10154
10155 test_224b() { # LU-1039, MRP-303
10156         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10157         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
10158         cancel_lru_locks osc
10159         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
10160         $LCTL set_param fail_loc=0x515
10161         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
10162         $LCTL set_param fail_loc=0
10163         df $DIR
10164 }
10165 run_test 224b "Don't panic on bulk IO failure"
10166
10167 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
10168 test_225a () {
10169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10170        if [ -z ${MDSSURVEY} ]; then
10171               skip_env "mds-survey not found" && return
10172        fi
10173        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10174             { skip "Need MDS version at least 2.2.51"; return; }
10175
10176        local mds=$(facet_host $SINGLEMDS)
10177        local target=$(do_nodes $mds 'lctl dl' | \
10178                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10179
10180        local cmd1="file_count=1000 thrhi=4"
10181        local cmd2="dir_count=2 layer=mdd stripe_count=0"
10182        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10183        local cmd="$cmd1 $cmd2 $cmd3"
10184
10185        rm -f ${TMP}/mds_survey*
10186        echo + $cmd
10187        eval $cmd || error "mds-survey with zero-stripe failed"
10188        cat ${TMP}/mds_survey*
10189        rm -f ${TMP}/mds_survey*
10190 }
10191 run_test 225a "Metadata survey sanity with zero-stripe"
10192
10193 test_225b () {
10194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10195        if [ -z ${MDSSURVEY} ]; then
10196               skip_env "mds-survey not found" && return
10197        fi
10198        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10199             { skip "Need MDS version at least 2.2.51"; return; }
10200
10201        if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
10202               skip_env "Need to mount OST to test" && return
10203        fi
10204
10205        local mds=$(facet_host $SINGLEMDS)
10206        local target=$(do_nodes $mds 'lctl dl' | \
10207                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10208
10209        local cmd1="file_count=1000 thrhi=4"
10210        local cmd2="dir_count=2 layer=mdd stripe_count=1"
10211        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10212        local cmd="$cmd1 $cmd2 $cmd3"
10213
10214        rm -f ${TMP}/mds_survey*
10215        echo + $cmd
10216        eval $cmd || error "mds-survey with stripe_count failed"
10217        cat ${TMP}/mds_survey*
10218        rm -f ${TMP}/mds_survey*
10219 }
10220 run_test 225b "Metadata survey sanity with stripe_count = 1"
10221
10222 mcreate_path2fid () {
10223         local mode=$1
10224         local major=$2
10225         local minor=$3
10226         local name=$4
10227         local desc=$5
10228         local path=$DIR/$tdir/$name
10229         local fid
10230         local rc
10231         local fid_path
10232
10233         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
10234                 error "cannot create $desc"
10235
10236         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
10237         rc=$?
10238         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
10239
10240         fid_path=$($LFS fid2path $MOUNT $fid)
10241         rc=$?
10242         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
10243
10244         [ "$path" == "$fid_path" ] ||
10245                 error "fid2path returned $fid_path, expected $path"
10246
10247         echo "pass with $path and $fid"
10248 }
10249
10250 test_226 () {
10251         rm -rf $DIR/$tdir
10252         mkdir -p $DIR/$tdir
10253
10254         mcreate_path2fid 0010666 0 0 fifo "FIFO"
10255         mcreate_path2fid 0020666 1 3 null "character special file (null)"
10256         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
10257         mcreate_path2fid 0040666 0 0 dir "directory"
10258         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
10259         mcreate_path2fid 0100666 0 0 file "regular file"
10260         mcreate_path2fid 0120666 0 0 link "symbolic link"
10261         mcreate_path2fid 0140666 0 0 sock "socket"
10262 }
10263 run_test 226 "call path2fid and fid2path on files of all type"
10264
10265 # LU-1299 Executing or running ldd on a truncated executable does not
10266 # cause an out-of-memory condition.
10267 test_227() {
10268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10269         dd if=`which date` of=$MOUNT/date bs=1k count=1
10270         chmod +x $MOUNT/date
10271
10272         $MOUNT/date > /dev/null
10273         ldd $MOUNT/date > /dev/null
10274         rm -f $MOUNT/date
10275 }
10276 run_test 227 "running truncated executable does not cause OOM"
10277
10278 # LU-1512 try to reuse idle OI blocks
10279 test_228a() {
10280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10281         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10282                 skip "non-ldiskfs backend" && return
10283
10284         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10285         local myDIR=$DIR/$tdir
10286
10287         mkdir -p $myDIR
10288         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10289         $LCTL set_param fail_loc=0x80001002
10290         createmany -o $myDIR/t- 10000
10291         $LCTL set_param fail_loc=0
10292         # The guard is current the largest FID holder
10293         touch $myDIR/guard
10294         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10295                     tr -d '[')
10296         local IDX=$(($SEQ % 64))
10297
10298         do_facet $SINGLEMDS sync
10299         # Make sure journal flushed.
10300         sleep 6
10301         local blk1=$(do_facet $SINGLEMDS \
10302                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10303                      grep Blockcount | awk '{print $4}')
10304
10305         # Remove old files, some OI blocks will become idle.
10306         unlinkmany $myDIR/t- 10000
10307         # Create new files, idle OI blocks should be reused.
10308         createmany -o $myDIR/t- 2000
10309         do_facet $SINGLEMDS sync
10310         # Make sure journal flushed.
10311         sleep 6
10312         local blk2=$(do_facet $SINGLEMDS \
10313                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10314                      grep Blockcount | awk '{print $4}')
10315
10316         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10317 }
10318 run_test 228a "try to reuse idle OI blocks"
10319
10320 test_228b() {
10321         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10322         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10323                 skip "non-ldiskfs backend" && return
10324
10325         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10326         local myDIR=$DIR/$tdir
10327
10328         mkdir -p $myDIR
10329         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10330         $LCTL set_param fail_loc=0x80001002
10331         createmany -o $myDIR/t- 10000
10332         $LCTL set_param fail_loc=0
10333         # The guard is current the largest FID holder
10334         touch $myDIR/guard
10335         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10336                     tr -d '[')
10337         local IDX=$(($SEQ % 64))
10338
10339         do_facet $SINGLEMDS sync
10340         # Make sure journal flushed.
10341         sleep 6
10342         local blk1=$(do_facet $SINGLEMDS \
10343                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10344                      grep Blockcount | awk '{print $4}')
10345
10346         # Remove old files, some OI blocks will become idle.
10347         unlinkmany $myDIR/t- 10000
10348
10349         # stop the MDT
10350         stop $SINGLEMDS || error "Fail to stop MDT."
10351         # remount the MDT
10352         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10353
10354         df $MOUNT || error "Fail to df."
10355         # Create new files, idle OI blocks should be reused.
10356         createmany -o $myDIR/t- 2000
10357         do_facet $SINGLEMDS sync
10358         # Make sure journal flushed.
10359         sleep 6
10360         local blk2=$(do_facet $SINGLEMDS \
10361                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10362                      grep Blockcount | awk '{print $4}')
10363
10364         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10365 }
10366 run_test 228b "idle OI blocks can be reused after MDT restart"
10367
10368 #LU-1881
10369 test_228c() {
10370         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10371         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10372                 skip "non-ldiskfs backend" && return
10373
10374         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10375         local myDIR=$DIR/$tdir
10376
10377         mkdir -p $myDIR
10378         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10379         $LCTL set_param fail_loc=0x80001002
10380         # 20000 files can guarantee there are index nodes in the OI file
10381         createmany -o $myDIR/t- 20000
10382         $LCTL set_param fail_loc=0
10383         # The guard is current the largest FID holder
10384         touch $myDIR/guard
10385         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10386                     tr -d '[')
10387         local IDX=$(($SEQ % 64))
10388
10389         do_facet $SINGLEMDS sync
10390         # Make sure journal flushed.
10391         sleep 6
10392         local blk1=$(do_facet $SINGLEMDS \
10393                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10394                      grep Blockcount | awk '{print $4}')
10395
10396         # Remove old files, some OI blocks will become idle.
10397         unlinkmany $myDIR/t- 20000
10398         rm -f $myDIR/guard
10399         # The OI file should become empty now
10400
10401         # Create new files, idle OI blocks should be reused.
10402         createmany -o $myDIR/t- 2000
10403         do_facet $SINGLEMDS sync
10404         # Make sure journal flushed.
10405         sleep 6
10406         local blk2=$(do_facet $SINGLEMDS \
10407                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10408                      grep Blockcount | awk '{print $4}')
10409
10410         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10411 }
10412 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
10413
10414 test_230a() {
10415         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10416         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10417         local MDTIDX=1
10418
10419         mkdir -p $DIR/$tdir/test_230_local
10420         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
10421         [ $mdt_idx -ne 0 ] &&
10422                 error "create local directory on wrong MDT $mdt_idx"
10423
10424         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
10425                         error "create remote directory failed"
10426         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
10427         [ $mdt_idx -ne $MDTIDX ] &&
10428                 error "create remote directory on wrong MDT $mdt_idx"
10429
10430         createmany -o $DIR/$tdir/test_230/t- 10 ||
10431                 error "create files on remote directory failed"
10432         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
10433         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
10434         rm -r $DIR/$tdir || error "unlink remote directory failed"
10435 }
10436 run_test 230a "Create remote directory and files under the remote directory"
10437
10438 test_230b() {
10439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10440         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10441         local MDTIDX=1
10442         local remote_dir=$DIR/$tdir/remote_dir
10443
10444         mkdir -p $DIR/$tdir
10445         $LFS mkdir -i $MDTIDX $remote_dir ||
10446                 error "create remote directory failed"
10447
10448         $LFS mkdir -i 0 $remote_dir/new_dir &&
10449                 error "nested remote directory create succeed!"
10450
10451         rm -r $DIR/$tdir || error "unlink remote directory failed"
10452 }
10453 run_test 230b "nested remote directory should be failed"
10454
10455 #
10456 # tests that do cleanup/setup should be run at the end
10457 #
10458
10459 test_900() {
10460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10461         local ls
10462         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
10463         $LCTL set_param fail_loc=0x903
10464         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
10465         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
10466                 echo "clear" > $ls
10467         done
10468         FAIL_ON_ERROR=true cleanup
10469         FAIL_ON_ERROR=true setup
10470 }
10471 run_test 900 "umount should not race with any mgc requeue thread"
10472
10473 complete $SECONDS
10474 check_and_cleanup_lustre
10475 if [ "$I_MOUNTED" != "yes" ]; then
10476         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
10477 fi
10478 exit_status