Whamcloud - gitweb
LU-2459 osd: add LMA incompat flag check
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG="`lctl get_param -n debug 2> /dev/null`"
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error
149 }
150 run_test 0 "touch .../$tfile ; rm .../$tfile ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error
154         $CHECKSTAT -p 0755 $DIR || error
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159     $LCTL get_param mdc.*.import | grep  "state: FULL" || error "import not FULL"
160     $LCTL get_param mdc.*.import | grep  "target: $FSNAME-MDT" || error "bad target"
161 }
162 run_test 0c "check import proc ============================="
163
164 test_1a() {
165         test_mkdir -p $DIR/$tdir
166         test_mkdir -p $DIR/$tdir/d2
167         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
168         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
169 }
170 run_test 1a "mkdir .../d1; mkdir .../d1/d2 ====================="
171
172 test_1b() {
173         rmdir $DIR/$tdir/d2
174         rmdir $DIR/$tdir
175         $CHECKSTAT -a $DIR/$tdir || error
176 }
177 run_test 1b "rmdir .../d1/d2; rmdir .../d1 ====================="
178
179 test_2a() {
180         test_mkdir $DIR/$tdir
181         touch $DIR/$tdir/$tfile
182         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
183 }
184 run_test 2a "mkdir .../d2; touch .../d2/f ======================"
185
186 test_2b() {
187         rm -r $DIR/$tdir
188         $CHECKSTAT -a $DIR/$tdir || error
189 }
190 run_test 2b "rm -r .../d2; checkstat .../d2/f ======================"
191
192 test_3a() {
193         test_mkdir -p $DIR/$tdir
194         $CHECKSTAT -t dir $DIR/$tdir || error
195 }
196 run_test 3a "mkdir .../d3 ======================================"
197
198 test_3b() {
199         if [ ! -d $DIR/$tdir ]; then
200                 mkdir $DIR/$tdir
201         fi
202         touch $DIR/$tdir/$tfile
203         $CHECKSTAT -t file $DIR/$tdir/$tfile || error
204 }
205 run_test 3b "touch .../d3/f ===================================="
206
207 test_3c() {
208         rm -r $DIR/$tdir
209         $CHECKSTAT -a $DIR/$tdir || error
210 }
211 run_test 3c "rm -r .../d3 ======================================"
212
213 test_4a() {
214         test_mkdir -p $DIR/$tdir
215         $CHECKSTAT -t dir $DIR/$tdir || error
216 }
217 run_test 4a "mkdir .../d4 ======================================"
218
219 test_4b() {
220         if [ ! -d $DIR/$tdir ]; then
221                 test_mkdir $DIR/$tdir
222         fi
223         test_mkdir $DIR/$tdir/d2
224         mkdir $DIR/$tdir/d2
225         $CHECKSTAT -t dir $DIR/$tdir/d2 || error
226 }
227 run_test 4b "mkdir .../d4/d2 ==================================="
228
229 test_5() {
230         test_mkdir $DIR/$tdir
231         test_mkdir $DIR/$tdir/d2
232         chmod 0707 $DIR/$tdir/d2
233         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error
234 }
235 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
236
237 test_6a() {
238         touch $DIR/$tfile
239         chmod 0666 $DIR/$tfile || error
240         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
241 }
242 run_test 6a "touch .../f6a; chmod .../f6a ======================"
243
244 test_6b() {
245         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
246         if [ ! -f $DIR/$tfile ]; then
247                 touch $DIR/$tfile
248                 chmod 0666 $DIR/$tfile
249         fi
250         $RUNAS chmod 0444 $DIR/$tfile && error
251         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile || error
252 }
253 run_test 6b "$RUNAS chmod .../f6a (should return error) =="
254
255 test_6c() {
256         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
257         touch $DIR/$tfile
258         chown $RUNAS_ID $DIR/$tfile || error
259         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
260 }
261 run_test 6c "touch .../f6c; chown .../f6c ======================"
262
263 test_6d() {
264         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
265         if [ ! -f $DIR/$tfile ]; then
266                 touch $DIR/$tfile
267                 chown $RUNAS_ID $DIR/$tfile
268         fi
269         $RUNAS chown $UID $DIR/$tfile && error
270         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile || error
271 }
272 run_test 6d "$RUNAS chown .../f6c (should return error) =="
273
274 test_6e() {
275         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
276         touch $DIR/$tfile
277         chgrp $RUNAS_ID $DIR/$tfile || error
278         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
279 }
280 run_test 6e "touch .../f6e; chgrp .../f6e ======================"
281
282 test_6f() {
283         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
284         if [ ! -f $DIR/$tfile ]; then
285                 touch $DIR/$tfile
286                 chgrp $RUNAS_ID $DIR/$tfile
287         fi
288         $RUNAS chgrp $UID $DIR/$tfile && error
289         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile || error
290 }
291 run_test 6f "$RUNAS chgrp .../f6e (should return error) =="
292
293 test_6g() {
294         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
295         test_mkdir $DIR/$tdir || error
296         chmod 777 $DIR/$tdir || error
297         $RUNAS mkdir $DIR/$tdir/d || error
298         chmod g+s $DIR/$tdir/d || error
299         test_mkdir $DIR/$tdir/d/subdir
300         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir || error
301 }
302 run_test 6g "Is new dir in sgid dir inheriting group?"
303
304 test_6h() { # bug 7331
305         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
306         touch $DIR/$tfile || error "touch failed"
307         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
308         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
309                 error "chown worked"
310         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile || error
311 }
312 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
313
314 test_7a() {
315         test_mkdir $DIR/$tdir
316         $MCREATE $DIR/$tdir/$tfile
317         chmod 0666 $DIR/$tdir/$tfile
318         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
319 }
320 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
321
322 test_7b() {
323         if [ ! -d $DIR/$tdir ]; then
324                 mkdir $DIR/$tdir
325         fi
326         $MCREATE $DIR/$tdir/$tfile
327         echo -n foo > $DIR/$tdir/$tfile
328         [ "`cat $DIR/$tdir/$tfile`" = "foo" ] || error
329         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error
330 }
331 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
332
333 test_8() {
334         test_mkdir $DIR/$tdir
335         touch $DIR/$tdir/$tfile
336         chmod 0666 $DIR/$tdir/$tfile
337         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile || error
338 }
339 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
340
341 test_9() {
342         test_mkdir $DIR/$tdir
343         test_mkdir $DIR/$tdir/d2
344         test_mkdir $DIR/$tdir/d2/d3
345         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error
346 }
347 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
348
349 test_10() {
350         test_mkdir $DIR/$tdir
351         test_mkdir $DIR/$tdir/d2
352         touch $DIR/$tdir/d2/$tfile
353         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile || error
354 }
355 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
356
357 test_11() {
358         test_mkdir $DIR/$tdir
359         test_mkdir $DIR/$tdir/d2
360         chmod 0666 $DIR/$tdir/d2
361         chmod 0705 $DIR/$tdir/d2
362         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 || error
363 }
364 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
365
366 test_12() {
367         test_mkdir $DIR/$tdir
368         touch $DIR/$tdir/$tfile
369         chmod 0666 $DIR/$tdir/$tfile
370         chmod 0654 $DIR/$tdir/$tfile
371         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile || error
372 }
373 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
374
375 test_13() {
376         test_mkdir $DIR/$tdir
377         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
378         >  $DIR/$tdir/$tfile
379         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile || error
380 }
381 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
382
383 test_14() {
384         test_mkdir $DIR/$tdir
385         touch $DIR/$tdir/$tfile
386         rm $DIR/$tdir/$tfile
387         $CHECKSTAT -a $DIR/$tdir/$tfile || error
388 }
389 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
390
391 test_15() {
392         test_mkdir $DIR/$tdir
393         touch $DIR/$tdir/$tfile
394         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
395         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 || error
396 }
397 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
398
399 test_16() {
400         test_mkdir $DIR/$tdir
401         touch $DIR/$tdir/$tfile
402         rm -rf $DIR/$tdir/$tfile
403         $CHECKSTAT -a $DIR/$tdir/$tfile || error
404 }
405 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
406
407 test_17a() {
408         test_mkdir -p $DIR/$tdir
409         touch $DIR/$tdir/$tfile
410         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
411         ls -l $DIR/$tdir
412         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist || error
413         $CHECKSTAT -f -t f $DIR/$tdir/l-exist || error
414         rm -f $DIR/$tdir/l-exist
415         $CHECKSTAT -a $DIR/$tdir/l-exist || error
416 }
417 run_test 17a "symlinks: create, remove (real) =================="
418
419 test_17b() {
420         test_mkdir -p $DIR/$tdir
421         ln -s no-such-file $DIR/$tdir/l-dangle
422         ls -l $DIR/$tdir
423         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle || error
424         $CHECKSTAT -fa $DIR/$tdir/l-dangle || error
425         rm -f $DIR/$tdir/l-dangle
426         $CHECKSTAT -a $DIR/$tdir/l-dangle || error
427 }
428 run_test 17b "symlinks: create, remove (dangling) =============="
429
430 test_17c() { # bug 3440 - don't save failed open RPC for replay
431         test_mkdir -p $DIR/$tdir
432         ln -s foo $DIR/$tdir/$tfile
433         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
434 }
435 run_test 17c "symlinks: open dangling (should return error) ===="
436
437 test_17d() {
438         test_mkdir -p $DIR/$tdir
439         ln -s foo $DIR/$tdir/$tfile
440         touch $DIR/$tdir/$tfile || error "creating to new symlink"
441 }
442 run_test 17d "symlinks: create dangling ========================"
443
444 test_17e() {
445         test_mkdir -p $DIR/$tdir
446         local foo=$DIR/$tdir/$tfile
447         ln -s $foo $foo || error "create symlink failed"
448         ls -l $foo || error "ls -l failed"
449         ls $foo && error "ls not failed" || true
450 }
451 run_test 17e "symlinks: create recursive symlink (should return error) ===="
452
453 test_17f() {
454         test_mkdir -p $DIR/d17f
455         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
456         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
457         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
458         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
459         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
460         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
461         ls -l  $DIR/d17f
462 }
463 run_test 17f "symlinks: long and very long symlink name ========================"
464
465 # str_repeat(S, N) generate a string that is string S repeated N times
466 str_repeat() {
467         local s=$1
468         local n=$2
469         local ret=''
470         while [ $((n -= 1)) -ge 0 ]; do
471                 ret=$ret$s
472         done
473         echo $ret
474 }
475
476 # Long symlinks and LU-2241
477 test_17g() {
478         test_mkdir -p $DIR/$tdir
479         local TESTS="59 60 61 4094 4095"
480
481         # Fix for inode size boundary in 2.1.4
482         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
483                 TESTS="4094 4095"
484
485         # Patch not applied to 2.2 or 2.3 branches
486         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
487         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
488                 TESTS="4094 4095"
489
490         for i in $TESTS; do
491                 local SYMNAME=$(str_repeat 'x' $i)
492                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
493                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
494         done
495 }
496 run_test 17g "symlinks: really long symlink name and inode boundaries"
497
498 test_17h() { #bug 17378
499         remote_mds_nodsh && skip "remote MDS with nodsh" && return
500         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
501         local mdt_idx
502         test_mkdir -p $DIR/$tdir
503         if [ $MDSCOUNT -gt 1 ]; then
504                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
505         else
506                 mdt_idx=0
507         fi
508         $SETSTRIPE -c -1 $DIR/$tdir
509 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
510         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
511         touch $DIR/$tdir/$tfile || true
512 }
513 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
514
515 test_17i() { #bug 20018
516         remote_mds_nodsh && skip "remote MDS with nodsh" && return
517         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
518         test_mkdir -p $DIR/$tdir
519         local foo=$DIR/$tdir/$tfile
520         local mdt_idx
521         if [ $MDSCOUNT -gt 1 ]; then
522                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
523         else
524                 mdt_idx=0
525         fi
526         ln -s $foo $foo || error "create symlink failed"
527 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
528         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
529         ls -l $foo && error "error not detected"
530         return 0
531 }
532 run_test 17i "don't panic on short symlink"
533
534 test_17k() { #bug 22301
535         rsync --help | grep -q xattr ||
536                 skip_env "$(rsync --version| head -1) does not support xattrs"
537         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
538         test_mkdir -p $DIR/$tdir
539         test_mkdir -p $DIR/$tdir.new
540         touch $DIR/$tdir/$tfile
541         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
542         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
543                 error "rsync failed with xattrs enabled"
544 }
545 run_test 17k "symlinks: rsync with xattrs enabled ========================="
546
547 test_17l() { # LU-279
548         mkdir -p $DIR/$tdir
549         touch $DIR/$tdir/$tfile
550         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
551         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
552                 # -h to not follow symlinks. -m '' to list all the xattrs.
553                 # grep to remove first line: '# file: $path'.
554                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
555                 do
556                         lgetxattr_size_check $path $xattr ||
557                                 error "lgetxattr_size_check $path $xattr failed"
558                 done
559         done
560 }
561 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
562
563 # LU-1540
564 test_17m() {
565         local short_sym="0123456789"
566         local WDIR=$DIR/${tdir}m
567         local mds_index
568         local devname
569         local cmd
570         local i
571         local rc=0
572
573         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
574         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
575                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
576
577         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
578                 skip "only for ldiskfs MDT" && return 0
579
580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
581
582         mkdir -p $WDIR
583         long_sym=$short_sym
584         # create a long symlink file
585         for ((i = 0; i < 4; ++i)); do
586                 long_sym=${long_sym}${long_sym}
587         done
588
589         echo "create 512 short and long symlink files under $WDIR"
590         for ((i = 0; i < 256; ++i)); do
591                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
592                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
593         done
594
595         echo "erase them"
596         rm -f $WDIR/*
597         sync
598         wait_delete_completed
599
600         echo "recreate the 512 symlink files with a shorter string"
601         for ((i = 0; i < 512; ++i)); do
602                 # rewrite the symlink file with a shorter string
603                 ln -sf ${long_sym} $WDIR/long-$i
604                 ln -sf ${short_sym} $WDIR/short-$i
605         done
606
607         mds_index=$($LFS getstripe -M $WDIR)
608         mds_index=$((mds_index+1))
609         devname=$(mdsdevname $mds_index)
610         cmd="$E2FSCK -fnvd $devname"
611
612         echo "stop and checking mds${mds_index}: $cmd"
613         # e2fsck should not return error
614         stop mds${mds_index} -f
615         do_facet mds${mds_index} $cmd || rc=$?
616
617         start mds${mds_index} $devname $MDS_MOUNT_OPTS
618         df $MOUNT > /dev/null 2>&1
619         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
620                 "short/long symlink MDT: rc=$rc"
621         return $rc
622 }
623 run_test 17m "run e2fsck against MDT which contains short/long symlink"
624
625 check_fs_consistency_17n() {
626         local mdt_index
627         local devname
628         local cmd
629         local rc=0
630
631         for mdt_index in $(seq 1 $MDSCOUNT); do
632                 devname=$(mdsdevname $mdt_index)
633                 cmd="$E2FSCK -fnvd $devname"
634
635                 echo "stop and checking mds${mdt_index}: $cmd"
636                 # e2fsck should not return error
637                 stop mds${mdt_index}
638                 do_facet mds${mdt_index} $cmd || rc=$?
639
640                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
641                 df $MOUNT > /dev/null 2>&1
642                 [ $rc -ne 0 ] && break
643         done
644         return $rc
645 }
646
647 test_17n() {
648         local i
649
650         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
651         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
652                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
653
654         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
655                 skip "only for ldiskfs MDT" && return 0
656
657         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
658
659         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
660
661         mkdir -p $DIR/$tdir
662         for ((i=0; i<10; i++)); do
663                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
664                         error "create remote dir error $i"
665                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
666                         error "create files under remote dir failed $i"
667         done
668
669         check_fs_consistency_17n || error "e2fsck report error"
670
671         for ((i=0;i<10;i++)); do
672                 rm -rf $DIR/$tdir/remote_dir_${i} ||
673                         error "destroy remote dir error $i"
674         done
675
676         check_fs_consistency_17n || error "e2fsck report error"
677 }
678 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
679
680 test_17o() {
681         local WDIR=$DIR/${tdir}o
682         local mdt_index
683         local mdtdevname
684         local rc=0
685
686         mkdir -p $WDIR
687         mdt_index=$($LFS getstripe -M $WDIR)
688         mdt_index=$((mdt_index+1))
689         mdtdevname=$(mdsdevname $mdt_index)
690
691         touch $WDIR/$tfile
692         stop mds${mdt_index}
693         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
694
695         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
696         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
697         ls -l $WDIR/$tfile && rc=1
698         do_facet mds${mdt_index} lctl set_param fail_loc=0
699         [[ $rc -ne 0 ]] && error "stat file should fail"
700         true
701 }
702 run_test 17o "stat file with incompat LMA feature"
703
704 test_18() {
705         touch $DIR/f || error "Failed to touch $DIR/f: $?"
706         ls $DIR || error "Failed to ls $DIR: $?"
707 }
708 run_test 18 "touch .../f ; ls ... =============================="
709
710 test_19a() {
711         touch $DIR/f19
712         ls -l $DIR
713         rm $DIR/f19
714         $CHECKSTAT -a $DIR/f19 || error
715 }
716 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
717
718 test_19b() {
719         ls -l $DIR/f19 && error || true
720 }
721 run_test 19b "ls -l .../f19 (should return error) =============="
722
723 test_19c() {
724         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
725         $RUNAS touch $DIR/f19 && error || true
726 }
727 run_test 19c "$RUNAS touch .../f19 (should return error) =="
728
729 test_19d() {
730         cat $DIR/f19 && error || true
731 }
732 run_test 19d "cat .../f19 (should return error) =============="
733
734 test_20() {
735         touch $DIR/f
736         rm $DIR/f
737         log "1 done"
738         touch $DIR/f
739         rm $DIR/f
740         log "2 done"
741         touch $DIR/f
742         rm $DIR/f
743         log "3 done"
744         $CHECKSTAT -a $DIR/f || error
745 }
746 run_test 20 "touch .../f ; ls -l ... ==========================="
747
748 test_21() {
749         test_mkdir $DIR/d21
750         [ -f $DIR/d21/dangle ] && rm -f $DIR/d21/dangle
751         ln -s dangle $DIR/d21/link
752         echo foo >> $DIR/d21/link
753         cat $DIR/d21/dangle
754         $CHECKSTAT -t link $DIR/d21/link || error
755         $CHECKSTAT -f -t file $DIR/d21/link || error
756 }
757 run_test 21 "write to dangling link ============================"
758
759 test_22() {
760         WDIR=$DIR/$tdir
761         test_mkdir -p $DIR/$tdir
762         chown $RUNAS_ID:$RUNAS_GID $WDIR
763         (cd $WDIR || error "cd $WDIR failed";
764         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
765         $RUNAS tar xf -)
766         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
767         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
768         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
769 }
770 run_test 22 "unpack tar archive as non-root user ==============="
771
772 # was test_23
773 test_23a() {
774         test_mkdir -p $DIR/$tdir
775         local file=$DIR/$tdir/$tfile
776
777         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
778         openfile -f O_CREAT:O_EXCL $file &&
779                 error "$file recreate succeeded" || true
780 }
781 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
782
783 test_23b() { # bug 18988
784         test_mkdir -p $DIR/$tdir
785         local file=$DIR/$tdir/$tfile
786
787         rm -f $file
788         echo foo > $file || error "write filed"
789         echo bar >> $file || error "append filed"
790         $CHECKSTAT -s 8 $file || error "wrong size"
791         rm $file
792 }
793 run_test 23b "O_APPEND check =========================="
794
795 test_24a() {
796         echo '== rename sanity =============================================='
797         echo '-- same directory rename'
798         test_mkdir $DIR/R1
799         touch $DIR/R1/f
800         mv $DIR/R1/f $DIR/R1/g
801         $CHECKSTAT -t file $DIR/R1/g || error
802 }
803 run_test 24a "touch .../R1/f; rename .../R1/f .../R1/g ========="
804
805 test_24b() {
806         test_mkdir $DIR/R2
807         touch $DIR/R2/{f,g}
808         mv $DIR/R2/f $DIR/R2/g
809         $CHECKSTAT -a $DIR/R2/f || error
810         $CHECKSTAT -t file $DIR/R2/g || error
811 }
812 run_test 24b "touch .../R2/{f,g}; rename .../R2/f .../R2/g ====="
813
814 test_24c() {
815         test_mkdir $DIR/R3
816         test_mkdir $DIR/R3/f
817         mv $DIR/R3/f $DIR/R3/g
818         $CHECKSTAT -a $DIR/R3/f || error
819         $CHECKSTAT -t dir $DIR/R3/g || error
820 }
821 run_test 24c "mkdir .../R3/f; rename .../R3/f .../R3/g ========="
822
823 test_24d() {
824         test_mkdir $DIR/R4
825         test_mkdir $DIR/R4/f
826         test_mkdir $DIR/R4/g
827         mrename $DIR/R4/f $DIR/R4/g
828         $CHECKSTAT -a $DIR/R4/f || error
829         $CHECKSTAT -t dir $DIR/R4/g || error
830 }
831 run_test 24d "mkdir .../R4/{f,g}; rename .../R4/f .../R4/g ====="
832
833 test_24e() {
834         echo '-- cross directory renames --'
835         test_mkdir $DIR/R5a
836         test_mkdir $DIR/R5b
837         touch $DIR/R5a/f
838         mv $DIR/R5a/f $DIR/R5b/g
839         $CHECKSTAT -a $DIR/R5a/f || error
840         $CHECKSTAT -t file $DIR/R5b/g || error
841 }
842 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
843
844 test_24f() {
845         test_mkdir $DIR/R6a
846         test_mkdir $DIR/R6b
847         touch $DIR/R6a/f $DIR/R6b/g
848         mv $DIR/R6a/f $DIR/R6b/g
849         $CHECKSTAT -a $DIR/R6a/f || error
850         $CHECKSTAT -t file $DIR/R6b/g || error
851 }
852 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
853
854 test_24g() {
855         test_mkdir $DIR/R7a
856         test_mkdir $DIR/R7b
857         test_mkdir $DIR/R7a/d
858         mv $DIR/R7a/d $DIR/R7b/e
859         $CHECKSTAT -a $DIR/R7a/d || error
860         $CHECKSTAT -t dir $DIR/R7b/e || error
861 }
862 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
863
864 test_24h() {
865         test_mkdir $DIR/R8a
866         test_mkdir $DIR/R8b
867         test_mkdir $DIR/R8a/d
868         test_mkdir $DIR/R8b/e
869         mrename $DIR/R8a/d $DIR/R8b/e
870         $CHECKSTAT -a $DIR/R8a/d || error
871         $CHECKSTAT -t dir $DIR/R8b/e || error
872 }
873 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
874
875 test_24i() {
876         echo "-- rename error cases"
877         test_mkdir $DIR/R9
878         test_mkdir $DIR/R9/a
879         touch $DIR/R9/f
880         mrename $DIR/R9/f $DIR/R9/a
881         $CHECKSTAT -t file $DIR/R9/f || error
882         $CHECKSTAT -t dir  $DIR/R9/a || error
883         $CHECKSTAT -a $DIR/R9/a/f || error
884 }
885 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
886
887 test_24j() {
888         test_mkdir $DIR/R10
889         mrename $DIR/R10/f $DIR/R10/g
890         $CHECKSTAT -t dir $DIR/R10 || error
891         $CHECKSTAT -a $DIR/R10/f || error
892         $CHECKSTAT -a $DIR/R10/g || error
893 }
894 run_test 24j "source does not exist ============================"
895
896 test_24k() {
897         test_mkdir $DIR/R11a
898         test_mkdir $DIR/R11a/d
899         touch $DIR/R11a/f
900         mv $DIR/R11a/f $DIR/R11a/d
901         $CHECKSTAT -a $DIR/R11a/f || error
902         $CHECKSTAT -t file $DIR/R11a/d/f || error
903 }
904 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
905
906 # bug 2429 - rename foo foo foo creates invalid file
907 test_24l() {
908         f="$DIR/f24l"
909         $MULTIOP $f OcNs || error
910 }
911 run_test 24l "Renaming a file to itself ========================"
912
913 test_24m() {
914         f="$DIR/f24m"
915         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
916         # on ext3 this does not remove either the source or target files
917         # though the "expected" operation would be to remove the source
918         $CHECKSTAT -t file ${f} || error "${f} missing"
919         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
920 }
921 run_test 24m "Renaming a file to a hard link to itself ========="
922
923 test_24n() {
924     f="$DIR/f24n"
925     # this stats the old file after it was renamed, so it should fail
926     touch ${f}
927     $CHECKSTAT ${f}
928     mv ${f} ${f}.rename
929     $CHECKSTAT ${f}.rename
930     $CHECKSTAT -a ${f}
931 }
932 run_test 24n "Statting the old file after renaming (Posix rename 2)"
933
934 test_24o() {
935         check_kernel_version 37 || return 0
936         test_mkdir -p $DIR/d24o
937         rename_many -s random -v -n 10 $DIR/d24o
938 }
939 run_test 24o "rename of files during htree split ==============="
940
941 test_24p() {
942         test_mkdir $DIR/R12a
943         test_mkdir $DIR/R12b
944         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
945         mrename $DIR/R12a $DIR/R12b
946         $CHECKSTAT -a $DIR/R12a || error
947         $CHECKSTAT -t dir $DIR/R12b || error
948         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
949         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
950 }
951 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
952
953 cleanup_multiop_pause() {
954         trap 0
955         kill -USR1 $MULTIPID
956 }
957
958 test_24q() {
959         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
960         test_mkdir $DIR/R13a
961         test_mkdir $DIR/R13b
962         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
963         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
964         MULTIPID=$!
965
966         trap cleanup_multiop_pause EXIT
967         mrename $DIR/R13a $DIR/R13b
968         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
969         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
970         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
971         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
972         cleanup_multiop_pause
973         wait $MULTIPID || error "multiop close failed"
974 }
975 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
976
977 test_24r() { #bug 3789
978         test_mkdir $DIR/R14a
979         test_mkdir $DIR/R14a/b
980         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
981         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
982         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
983 }
984 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
985
986 test_24s() {
987         test_mkdir $DIR/R15a
988         test_mkdir $DIR/R15a/b
989         test_mkdir $DIR/R15a/b/c
990         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
991         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
992         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
993 }
994 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
995 test_24t() {
996         test_mkdir $DIR/R16a
997         test_mkdir $DIR/R16a/b
998         test_mkdir $DIR/R16a/b/c
999         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
1000         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
1001         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
1002 }
1003 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
1004
1005 test_24u() { # bug12192
1006         rm -rf $DIR/$tfile
1007         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
1008         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
1009 }
1010 run_test 24u "create stripe file"
1011
1012 page_size() {
1013         getconf PAGE_SIZE
1014 }
1015
1016 simple_cleanup_common() {
1017         trap 0
1018         rm -rf $DIR/$tdir
1019         wait_delete_completed
1020 }
1021
1022 max_pages_per_rpc() {
1023         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
1024 }
1025
1026 test_24v() {
1027         local NRFILES=100000
1028         local FREE_INODES=$(lfs_df -i | grep "summary" | awk '{print $4}')
1029         [ $FREE_INODES -lt $NRFILES ] && \
1030                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
1031                 return
1032
1033         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1034         trap simple_cleanup_common EXIT
1035
1036         mkdir -p $DIR/$tdir
1037         createmany -m $DIR/$tdir/$tfile $NRFILES
1038
1039         cancel_lru_locks mdc
1040         lctl set_param mdc.*.stats clear
1041
1042         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1043
1044         # LU-5 large readdir
1045         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1046         #               8 bytes for name(filename is mostly 5 in this test) +
1047         #               8 bytes for luda_type
1048         # take into account of overhead in lu_dirpage header and end mark in
1049         # each page, plus one in RPC_NUM calculation.
1050         DIRENT_SIZE=48
1051         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1052         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1053         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1054                                 awk '/^mds_readpage/ {print $2}')
1055         [ $mds_readpage -gt $RPC_NUM ] && \
1056                 error "large readdir doesn't take effect"
1057
1058         simple_cleanup_common
1059 }
1060 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1061
1062 test_24w() { # bug21506
1063         SZ1=234852
1064         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1065         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1066         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1067         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1068         [ "$SZ1" = "$SZ2" ] || \
1069                 error "Error reading at the end of the file $tfile"
1070 }
1071 run_test 24w "Reading a file larger than 4Gb"
1072
1073 test_24x() {
1074         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1075         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1076         local MDTIDX=1
1077         local remote_dir=$DIR/$tdir/remote_dir
1078
1079         mkdir -p $DIR/$tdir
1080         $LFS mkdir -i $MDTIDX $remote_dir ||
1081                 error "create remote directory failed"
1082
1083         mkdir -p $DIR/$tdir/src_dir
1084         touch $DIR/$tdir/src_file
1085         mkdir -p $remote_dir/tgt_dir
1086         touch $remote_dir/tgt_file
1087
1088         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1089                 error "rename dir cross MDT works!"
1090
1091         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1092                 error "rename file cross MDT works!"
1093
1094         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1095                 error "ln file cross MDT should not work!"
1096
1097         rm -rf $DIR/$tdir || error "Can not delete directories"
1098 }
1099 run_test 24x "cross rename/link should be failed"
1100
1101 test_24y() {
1102         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1103         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1104         local MDTIDX=1
1105         local remote_dir=$DIR/$tdir/remote_dir
1106
1107         mkdir -p $DIR/$tdir
1108         $LFS mkdir -i $MDTIDX $remote_dir ||
1109                    error "create remote directory failed"
1110
1111         mkdir -p $remote_dir/src_dir
1112         touch $remote_dir/src_file
1113         mkdir -p $remote_dir/tgt_dir
1114         touch $remote_dir/tgt_file
1115
1116         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1117                 error "rename subdir in the same remote dir failed!"
1118
1119         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1120                 error "rename files in the same remote dir failed!"
1121
1122         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1123                 error "link files in the same remote dir failed!"
1124
1125         rm -rf $DIR/$tdir || error "Can not delete directories"
1126 }
1127 run_test 24y "rename/link on the same dir should succeed"
1128
1129 test_24z() {
1130         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1132         local MDTIDX=1
1133         local remote_src=$DIR/$tdir/remote_dir
1134         local remote_tgt=$DIR/$tdir/remote_tgt
1135
1136         mkdir -p $DIR/$tdir
1137         $LFS mkdir -i $MDTIDX $remote_src ||
1138                    error "create remote directory failed"
1139
1140         $LFS mkdir -i $MDTIDX $remote_tgt ||
1141                    error "create remote directory failed"
1142
1143         mrename $remote_src $remote_tgt &&
1144                 error "rename remote dirs should not work!"
1145
1146         # If target dir does not exists, it should succeed
1147         rm -rf $remote_tgt
1148         mrename $remote_src $remote_tgt ||
1149                 error "rename remote dirs(tgt dir does not exists) failed!"
1150
1151         rm -rf $DIR/$tdir || error "Can not delete directories"
1152 }
1153 run_test 24z "rename one remote dir to another remote dir should fail"
1154
1155 test_25a() {
1156         echo '== symlink sanity ============================================='
1157
1158         test_mkdir $DIR/d25
1159         ln -s d25 $DIR/s25
1160         touch $DIR/s25/foo || error
1161 }
1162 run_test 25a "create file in symlinked directory ==============="
1163
1164 test_25b() {
1165         [ ! -d $DIR/d25 ] && test_25a
1166         $CHECKSTAT -t file $DIR/s25/foo || error
1167 }
1168 run_test 25b "lookup file in symlinked directory ==============="
1169
1170 test_26a() {
1171         test_mkdir $DIR/d26
1172         test_mkdir $DIR/d26/d26-2
1173         ln -s d26/d26-2 $DIR/s26
1174         touch $DIR/s26/foo || error
1175 }
1176 run_test 26a "multiple component symlink ======================="
1177
1178 test_26b() {
1179         test_mkdir -p $DIR/d26b/d26-2
1180         ln -s d26b/d26-2/foo $DIR/s26-2
1181         touch $DIR/s26-2 || error
1182 }
1183 run_test 26b "multiple component symlink at end of lookup ======"
1184
1185 test_26c() {
1186         test_mkdir $DIR/d26.2
1187         touch $DIR/d26.2/foo
1188         ln -s d26.2 $DIR/s26.2-1
1189         ln -s s26.2-1 $DIR/s26.2-2
1190         ln -s s26.2-2 $DIR/s26.2-3
1191         chmod 0666 $DIR/s26.2-3/foo
1192 }
1193 run_test 26c "chain of symlinks ================================"
1194
1195 # recursive symlinks (bug 439)
1196 test_26d() {
1197         ln -s d26-3/foo $DIR/d26-3
1198 }
1199 run_test 26d "create multiple component recursive symlink ======"
1200
1201 test_26e() {
1202         [ ! -h $DIR/d26-3 ] && test_26d
1203         rm $DIR/d26-3
1204 }
1205 run_test 26e "unlink multiple component recursive symlink ======"
1206
1207 # recursive symlinks (bug 7022)
1208 test_26f() {
1209         test_mkdir -p $DIR/$tdir
1210         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1211         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1212         test_mkdir -p lndir bar1      || error "mkdir lndir/bar1 failed"
1213         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1214         cd $tfile                || error "cd $tfile failed"
1215         ln -s .. dotdot          || error "ln dotdot failed"
1216         ln -s dotdot/lndir lndir || error "ln lndir failed"
1217         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1218         output=`ls $tfile/$tfile/lndir/bar1`
1219         [ "$output" = bar1 ] && error "unexpected output"
1220         rm -r $tfile             || error "rm $tfile failed"
1221         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1222 }
1223 run_test 26f "rm -r of a directory which has recursive symlink ="
1224
1225 test_27a() {
1226         echo '== stripe sanity =============================================='
1227         test_mkdir -p $DIR/d27 || error "mkdir failed"
1228         $GETSTRIPE $DIR/d27
1229         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1230         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1231         pass
1232         log "== test_27a: write to one stripe file ========================="
1233         cp /etc/hosts $DIR/d27/f0 || error
1234 }
1235 run_test 27a "one stripe file =================================="
1236
1237 test_27b() {
1238         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1239         test_mkdir -p $DIR/d27
1240         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1241         $GETSTRIPE -c $DIR/d27/f01
1242         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1243                 error "two-stripe file doesn't have two stripes"
1244 }
1245 run_test 27b "create two stripe file"
1246
1247 test_27c() {
1248         [ -f $DIR/d27/f01 ] || skip "test_27b not run" && return
1249
1250         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1251 }
1252 run_test 27c "write to two stripe file"
1253
1254 test_27d() {
1255         test_mkdir -p $DIR/d27
1256         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1257         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1258         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1259 }
1260 run_test 27d "create file with default settings ================"
1261
1262 test_27e() {
1263         test_mkdir -p $DIR/d27
1264         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1265         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1266         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1267 }
1268 run_test 27e "setstripe existing file (should return error) ======"
1269
1270 test_27f() {
1271         test_mkdir -p $DIR/d27
1272         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1273         dd if=/dev/zero of=$DIR/d27/f12 bs=4k count=4 || error "dd failed"
1274         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1275 }
1276 run_test 27f "setstripe with bad stripe size (should return error)"
1277
1278 test_27g() {
1279         test_mkdir -p $DIR/d27
1280         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1281         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1282                 error "$DIR/d27/fnone has object"
1283 }
1284 run_test 27g "$GETSTRIPE with no objects"
1285
1286 test_27i() {
1287         touch $DIR/d27/fsome || error "touch failed"
1288         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1289 }
1290 run_test 27i "$GETSTRIPE with some objects"
1291
1292 test_27j() {
1293         test_mkdir -p $DIR/d27
1294         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1295 }
1296 run_test 27j "setstripe with bad stripe offset (should return error)"
1297
1298 test_27k() { # bug 2844
1299         test_mkdir -p $DIR/d27
1300         FILE=$DIR/d27/f27k
1301         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1302         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1303         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1304         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1305         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1306         dd if=/dev/zero of=$FILE bs=4k count=1
1307         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1308         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1309 }
1310 run_test 27k "limit i_blksize for broken user apps ============="
1311
1312 test_27l() {
1313         test_mkdir -p $DIR/d27
1314         mcreate $DIR/f27l || error "creating file"
1315         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1316                 error "setstripe should have failed" || true
1317 }
1318 run_test 27l "check setstripe permissions (should return error)"
1319
1320 test_27m() {
1321         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1322                 return
1323         if [ $ORIGFREE -gt $MAXFREE ]; then
1324                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1325                 return
1326         fi
1327         trap simple_cleanup_common EXIT
1328         test_mkdir -p $DIR/$tdir
1329         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1330         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1331                 error "dd should fill OST0"
1332         i=2
1333         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1334                 i=`expr $i + 1`
1335                 [ $i -gt 256 ] && break
1336         done
1337         i=`expr $i + 1`
1338         touch $DIR/$tdir/f27m_$i
1339         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1340                 error "OST0 was full but new created file still use it"
1341         i=`expr $i + 1`
1342         touch $DIR/$tdir/f27m_$i
1343         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1344                 error "OST0 was full but new created file still use it"
1345         simple_cleanup_common
1346 }
1347 run_test 27m "create file while OST0 was full =================="
1348
1349 sleep_maxage() {
1350         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1351         sleep $DELAY
1352 }
1353
1354 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1355 # if the OST isn't full anymore.
1356 reset_enospc() {
1357         local OSTIDX=${1:-""}
1358
1359         local list=$(comma_list $(osts_nodes))
1360         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1361
1362         do_nodes $list lctl set_param fail_loc=0
1363         sync    # initiate all OST_DESTROYs from MDS to OST
1364         sleep_maxage
1365 }
1366
1367 exhaust_precreations() {
1368         local OSTIDX=$1
1369         local FAILLOC=$2
1370         local FAILIDX=${3:-$OSTIDX}
1371
1372         test_mkdir -p $DIR/$tdir
1373         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1374         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1375
1376         local OST=$(ostname_from_index $OSTIDX)
1377         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1378                           sed -e 's/_UUID$//;s/^.*-//')
1379
1380         # on the mdt's osc
1381         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1382         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1383         osc.$mdtosc_proc1.prealloc_last_id)
1384         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1385         osc.$mdtosc_proc1.prealloc_next_id)
1386
1387         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1388         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1389
1390         test_mkdir -p $DIR/$tdir/${OST}
1391         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1392 #define OBD_FAIL_OST_ENOSPC              0x215
1393         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1394         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1395         echo "Creating to objid $last_id on ost $OST..."
1396         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1397         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1398         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1399         sleep_maxage
1400 }
1401
1402 exhaust_all_precreations() {
1403         local i
1404         for (( i=0; i < OSTCOUNT; i++ )) ; do
1405                 exhaust_precreations $i $1 -1
1406         done
1407 }
1408
1409 test_27n() {
1410         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1411         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1412         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1413         remote_ost_nodsh && skip "remote OST with nodsh" && return
1414
1415         reset_enospc
1416         rm -f $DIR/$tdir/$tfile
1417         exhaust_precreations 0 0x80000215
1418         $SETSTRIPE -c -1 $DIR/$tdir
1419         touch $DIR/$tdir/$tfile || error
1420         $GETSTRIPE $DIR/$tdir/$tfile
1421         reset_enospc
1422 }
1423 run_test 27n "create file with some full OSTs =================="
1424
1425 test_27o() {
1426         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1428         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1429         remote_ost_nodsh && skip "remote OST with nodsh" && return
1430
1431         reset_enospc
1432         rm -f $DIR/$tdir/$tfile
1433         exhaust_all_precreations 0x215
1434
1435         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1436
1437         reset_enospc
1438         rm -rf $DIR/$tdir/*
1439 }
1440 run_test 27o "create file with all full OSTs (should error) ===="
1441
1442 test_27p() {
1443         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1444         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1445         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1446         remote_ost_nodsh && skip "remote OST with nodsh" && return
1447
1448         reset_enospc
1449         rm -f $DIR/$tdir/$tfile
1450         test_mkdir -p $DIR/$tdir
1451
1452         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1453         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1454         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1455
1456         exhaust_precreations 0 0x80000215
1457         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1458         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1459         $GETSTRIPE $DIR/$tdir/$tfile
1460
1461         reset_enospc
1462 }
1463 run_test 27p "append to a truncated file with some full OSTs ==="
1464
1465 test_27q() {
1466         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1468         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1469         remote_ost_nodsh && skip "remote OST with nodsh" && return
1470
1471         reset_enospc
1472         rm -f $DIR/$tdir/$tfile
1473
1474         test_mkdir -p $DIR/$tdir
1475         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1476         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1477         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1478
1479         exhaust_all_precreations 0x215
1480
1481         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1482         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1483
1484         reset_enospc
1485 }
1486 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1487
1488 test_27r() {
1489         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1490         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1491         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1492         remote_ost_nodsh && skip "remote OST with nodsh" && return
1493
1494         reset_enospc
1495         rm -f $DIR/$tdir/$tfile
1496         exhaust_precreations 0 0x80000215
1497
1498         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1499
1500         reset_enospc
1501 }
1502 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1503
1504 test_27s() { # bug 10725
1505         test_mkdir -p $DIR/$tdir
1506         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1507         local stripe_count=0
1508         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1509         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1510                 error "stripe width >= 2^32 succeeded" || true
1511
1512 }
1513 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1514
1515 test_27t() { # bug 10864
1516         WDIR=`pwd`
1517         WLFS=`which lfs`
1518         cd $DIR
1519         touch $tfile
1520         $WLFS getstripe $tfile
1521         cd $WDIR
1522 }
1523 run_test 27t "check that utils parse path correctly"
1524
1525 test_27u() { # bug 4900
1526         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1527         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1528         local index
1529         local list=$(comma_list $(mdts_nodes))
1530
1531 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1532         do_nodes $list $LCTL set_param fail_loc=0x139
1533         test_mkdir -p $DIR/$tdir
1534         rm -rf $DIR/$tdir/*
1535         createmany -o $DIR/$tdir/t- 1000
1536         do_nodes $list $LCTL set_param fail_loc=0
1537
1538         TLOG=$DIR/$tfile.getstripe
1539         $GETSTRIPE $DIR/$tdir > $TLOG
1540         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1541         unlinkmany $DIR/$tdir/t- 1000
1542         [ $OBJS -gt 0 ] && \
1543                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1544 }
1545 run_test 27u "skip object creation on OSC w/o objects =========="
1546
1547 test_27v() { # bug 4900
1548         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1550         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1551         remote_ost_nodsh && skip "remote OST with nodsh" && return
1552
1553         exhaust_all_precreations 0x215
1554         reset_enospc
1555
1556         test_mkdir -p $DIR/$tdir
1557         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1558
1559         touch $DIR/$tdir/$tfile
1560         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1561         # all except ost1
1562         for (( i=1; i < OSTCOUNT; i++ )); do
1563                 do_facet ost$i lctl set_param fail_loc=0x705
1564         done
1565         local START=`date +%s`
1566         createmany -o $DIR/$tdir/$tfile 32
1567
1568         local FINISH=`date +%s`
1569         local TIMEOUT=`lctl get_param -n timeout`
1570         local PROCESS=$((FINISH - START))
1571         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1572                error "$FINISH - $START >= $TIMEOUT / 2"
1573         sleep $((TIMEOUT / 2 - PROCESS))
1574         reset_enospc
1575 }
1576 run_test 27v "skip object creation on slow OST ================="
1577
1578 test_27w() { # bug 10997
1579         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1580         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1581         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1582                 error "stripe size $size != 65536" || true
1583         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1584                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1585 }
1586 run_test 27w "check $SETSTRIPE -S option"
1587
1588 test_27wa() {
1589         [ "$OSTCOUNT" -lt "2" ] &&
1590                 skip_env "skipping multiple stripe count/offset test" && return
1591
1592         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1593         for i in $(seq 1 $OSTCOUNT); do
1594                 offset=$((i - 1))
1595                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1596                         error "setstripe -c $i -i $offset failed"
1597                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1598                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1599                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1600                 [ $index -ne $offset ] &&
1601                         error "stripe offset $index != $offset" || true
1602         done
1603 }
1604 run_test 27wa "check $SETSTRIPE -c -i options"
1605
1606 test_27x() {
1607         remote_ost_nodsh && skip "remote OST with nodsh" && return
1608         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1610         OFFSET=$(($OSTCOUNT - 1))
1611         OSTIDX=0
1612         local OST=$(ostname_from_index $OSTIDX)
1613
1614         test_mkdir -p $DIR/$tdir
1615         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1616         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1617         sleep_maxage
1618         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1619         for i in `seq 0 $OFFSET`; do
1620                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1621                 error "OST0 was degraded but new created file still use it"
1622         done
1623         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1624 }
1625 run_test 27x "create files while OST0 is degraded"
1626
1627 test_27y() {
1628         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1629         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1630         remote_ost_nodsh && skip "remote OST with nodsh" && return
1631         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1632
1633         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1634         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1635             osc.$mdtosc.prealloc_last_id)
1636         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1637             osc.$mdtosc.prealloc_next_id)
1638         local fcount=$((last_id - next_id))
1639         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1640         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1641
1642         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1643                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1644         local OST_DEACTIVE_IDX=-1
1645         local OSC
1646         local OSTIDX
1647         local OST
1648
1649         for OSC in $MDS_OSCS; do
1650                 OST=$(osc_to_ost $OSC)
1651                 OSTIDX=$(index_from_ostuuid $OST)
1652                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1653                         OST_DEACTIVE_IDX=$OSTIDX
1654                 fi
1655                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1656                         echo $OSC "is Deactivated:"
1657                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1658                 fi
1659         done
1660
1661         OSTIDX=$(index_from_ostuuid $OST)
1662         mkdir -p $DIR/$tdir
1663         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1664
1665         for OSC in $MDS_OSCS; do
1666                 OST=$(osc_to_ost $OSC)
1667                 OSTIDX=$(index_from_ostuuid $OST)
1668                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1669                         echo $OST "is degraded:"
1670                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1671                                                 obdfilter.$OST.degraded=1
1672                 fi
1673         done
1674
1675         sleep_maxage
1676         createmany -o $DIR/$tdir/$tfile $fcount
1677
1678         for OSC in $MDS_OSCS; do
1679                 OST=$(osc_to_ost $OSC)
1680                 OSTIDX=$(index_from_ostuuid $OST)
1681                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1682                         echo $OST "is recovered from degraded:"
1683                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1684                                                 obdfilter.$OST.degraded=0
1685                 else
1686                         do_facet $SINGLEMDS lctl --device %$OSC activate
1687                 fi
1688         done
1689
1690         # all osp devices get activated, hence -1 stripe count restored
1691         local stripecnt=0
1692
1693         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1694         # devices get activated.
1695         sleep_maxage
1696         $SETSTRIPE -c -1 $DIR/$tfile
1697         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1698         rm -f $DIR/$tfile
1699         [ $stripecnt -ne $OSTCOUNT ] &&
1700                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1701         return 0
1702 }
1703 run_test 27y "create files while OST0 is degraded and the rest inactive"
1704
1705 check_seq_oid()
1706 {
1707         log "check file $1"
1708
1709         lmm_count=$($GETSTRIPE -c $1)
1710         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1711         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1712
1713         local old_ifs="$IFS"
1714         IFS=$'[:]'
1715         fid=($($LFS path2fid $1))
1716         IFS="$old_ifs"
1717
1718         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1719         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1720
1721         # compare lmm_seq and lu_fid->f_seq
1722         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1723         # compare lmm_object_id and lu_fid->oid
1724         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1725
1726         # check the trusted.fid attribute of the OST objects of the file
1727         local have_obdidx=false
1728         local stripe_nr=0
1729         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1730                 # skip lines up to and including "obdidx"
1731                 [ -z "$obdidx" ] && break
1732                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1733                 $have_obdidx || continue
1734
1735                 local ost=$((obdidx + 1))
1736                 local dev=$(ostdevname $ost)
1737                 local oid_hex
1738
1739                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1740                         echo "Currently only works with ldiskfs-based OSTs"
1741                         continue
1742                 fi
1743
1744                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1745
1746                 #don't unmount/remount the OSTs if we don't need to do that
1747                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1748                 # update too, until that use mount/ll_decode_filter_fid/mount
1749                 local dir=$(facet_mntpt ost$ost)
1750                 local opts=${OST_MOUNT_OPTS}
1751
1752                 if !  do_facet ost$ost test -b ${dev}; then
1753                         opts=$(csa_add "$opts" -o loop)
1754                 fi
1755
1756                 stop ost$ost
1757                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1758                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1759
1760                 seq=$(echo $seq | sed -e "s/^0x//g")
1761                 if [ $seq == 0 ]; then
1762                         oid_hex=$(echo $oid)
1763                 else
1764                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1765                 fi
1766                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1767                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1768                 do_facet ost$ost umount -d $dir
1769                 start ost$ost $dev $OST_MOUNT_OPTS
1770
1771                 # re-enable when debugfs will understand new filter_fid
1772                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1773                 #           $dev 2>/dev/null" | grep "parent=")
1774
1775                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1776
1777                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1778
1779                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1780                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1781                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1782                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1783                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1784                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1785
1786                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1787                 [ $ff_pseq = $lmm_seq ] ||
1788                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1789                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1790                 [ $ff_poid = $lmm_oid ] ||
1791                         error "FF parent OID $ff_poid != $lmm_oid"
1792                 [ $ff_pstripe = $stripe_nr ] ||
1793                         error "FF stripe $ff_pstripe != $stripe_nr"
1794
1795                 stripe_nr=$((stripe_nr + 1))
1796         done
1797 }
1798
1799 test_27z() {
1800         remote_ost_nodsh && skip "remote OST with nodsh" && return
1801         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1802         test_mkdir -p $DIR/$tdir
1803
1804         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1805                 { error "setstripe -c -1 failed"; return 1; }
1806         # We need to send a write to every object to get parent FID info set.
1807         # This _should_ also work for setattr, but does not currently.
1808         # touch $DIR/$tdir/$tfile-1 ||
1809         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1810                 { error "dd $tfile-1 failed"; return 2; }
1811         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1812                 { error "setstripe -c -1 failed"; return 3; }
1813         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1814                 { error "dd $tfile-2 failed"; return 4; }
1815
1816         # make sure write RPCs have been sent to OSTs
1817         sync; sleep 5; sync
1818
1819         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1820         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1821 }
1822 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1823
1824 test_27A() { # b=19102
1825         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1826         local restore_size=$($GETSTRIPE -S $MOUNT)
1827         local restore_count=$($GETSTRIPE -c $MOUNT)
1828         local restore_offset=$($GETSTRIPE -i $MOUNT)
1829         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1830         local default_size=$($GETSTRIPE -S $MOUNT)
1831         local default_count=$($GETSTRIPE -c $MOUNT)
1832         local default_offset=$($GETSTRIPE -i $MOUNT)
1833         local dsize=$((1024 * 1024))
1834         [ $default_size -eq $dsize ] ||
1835                 error "stripe size $default_size != $dsize"
1836         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1837         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1838         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1839 }
1840 run_test 27A "check filesystem-wide default LOV EA values"
1841
1842 test_27B() { # LU-2523
1843         test_mkdir -p $DIR/$tdir
1844         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1845         touch $DIR/$tdir/f0
1846         # open f1 with O_LOV_DELAY_CREATE
1847         # rename f0 onto f1
1848         # call setstripe ioctl on open file descriptor for f1
1849         # close
1850         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1851                 $DIR/$tdir/f0
1852
1853         rm -f $DIR/$tdir/f1
1854         # open f1 with O_LOV_DELAY_CREATE
1855         # unlink f1
1856         # call setstripe ioctl on open file descriptor for f1
1857         # close
1858         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1859
1860         # Allow multiop to fail in imitation of NFS's busted semantics.
1861         true
1862 }
1863 run_test 27B "call setstripe on open unlinked file/rename victim"
1864
1865 test_27C() { #LU-2871
1866         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1867
1868         declare -a ost_idx
1869         local index
1870         local i
1871         local j
1872
1873         test_mkdir -p $DIR/$tdir
1874         cd $DIR/$tdir
1875         for i in $(seq 0 $((OSTCOUNT - 1))); do
1876                 # set stripe across all OSTs starting from OST$i
1877                 $SETSTRIPE -i $i -c -1 $tfile$i
1878                 # get striping information
1879                 ost_idx=($($GETSTRIPE $tfile$i |
1880                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1881                 echo ${ost_idx[@]}
1882                 # check the layout
1883                 for j in $(seq 0 $((OSTCOUNT - 1))); do
1884                         index=$(((i + j) % OSTCOUNT))
1885                         [ ${ost_idx[$j]} -eq $index ] || error
1886                 done
1887         done
1888 }
1889 run_test 27C "check full striping across all OSTs"
1890
1891 # createtest also checks that device nodes are created and
1892 # then visible correctly (#2091)
1893 test_28() { # bug 2091
1894         test_mkdir $DIR/d28
1895         $CREATETEST $DIR/d28/ct || error
1896 }
1897 run_test 28 "create/mknod/mkdir with bad file types ============"
1898
1899 test_29() {
1900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1901         cancel_lru_locks mdc
1902         test_mkdir $DIR/d29
1903         touch $DIR/d29/foo
1904         log 'first d29'
1905         ls -l $DIR/d29
1906
1907         declare -i LOCKCOUNTORIG=0
1908         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1909                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1910         done
1911         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1912
1913         declare -i LOCKUNUSEDCOUNTORIG=0
1914         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1915                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1916         done
1917
1918         log 'second d29'
1919         ls -l $DIR/d29
1920         log 'done'
1921
1922         declare -i LOCKCOUNTCURRENT=0
1923         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1924                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1925         done
1926
1927         declare -i LOCKUNUSEDCOUNTCURRENT=0
1928         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1929                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1930         done
1931
1932         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1933                 lctl set_param -n ldlm.dump_namespaces ""
1934                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1935                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1936                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1937                 return 2
1938         fi
1939         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1940                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1941                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1942                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1943                 return 3
1944         fi
1945 }
1946 run_test 29 "IT_GETATTR regression  ============================"
1947
1948 test_30a() { # was test_30
1949         cp `which ls` $DIR || cp /bin/ls $DIR
1950         $DIR/ls / || error
1951         rm $DIR/ls
1952 }
1953 run_test 30a "execute binary from Lustre (execve) =============="
1954
1955 test_30b() {
1956         cp `which ls` $DIR || cp /bin/ls $DIR
1957         chmod go+rx $DIR/ls
1958         $RUNAS $DIR/ls / || error
1959         rm $DIR/ls
1960 }
1961 run_test 30b "execute binary from Lustre as non-root ==========="
1962
1963 test_30c() { # b=22376
1964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1965         cp `which ls` $DIR || cp /bin/ls $DIR
1966         chmod a-rw $DIR/ls
1967         cancel_lru_locks mdc
1968         cancel_lru_locks osc
1969         $RUNAS $DIR/ls / || error
1970         rm -f $DIR/ls
1971 }
1972 run_test 30c "execute binary from Lustre without read perms ===="
1973
1974 test_31a() {
1975         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1976         $CHECKSTAT -a $DIR/f31 || error
1977 }
1978 run_test 31a "open-unlink file =================================="
1979
1980 test_31b() {
1981         touch $DIR/f31 || error
1982         ln $DIR/f31 $DIR/f31b || error
1983         $MULTIOP $DIR/f31b Ouc || error
1984         $CHECKSTAT -t file $DIR/f31 || error
1985 }
1986 run_test 31b "unlink file with multiple links while open ======="
1987
1988 test_31c() {
1989         touch $DIR/f31 || error
1990         ln $DIR/f31 $DIR/f31c || error
1991         multiop_bg_pause $DIR/f31 O_uc || return 1
1992         MULTIPID=$!
1993         $MULTIOP $DIR/f31c Ouc
1994         kill -USR1 $MULTIPID
1995         wait $MULTIPID
1996 }
1997 run_test 31c "open-unlink file with multiple links ============="
1998
1999 test_31d() {
2000         opendirunlink $DIR/d31d $DIR/d31d || error
2001         $CHECKSTAT -a $DIR/d31d || error
2002 }
2003 run_test 31d "remove of open directory ========================="
2004
2005 test_31e() { # bug 2904
2006         check_kernel_version 34 || return 0
2007         openfilleddirunlink $DIR/d31e || error
2008 }
2009 run_test 31e "remove of open non-empty directory ==============="
2010
2011 test_31f() { # bug 4554
2012         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2013         set -vx
2014         test_mkdir $DIR/d31f
2015         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2016         cp /etc/hosts $DIR/d31f
2017         ls -l $DIR/d31f
2018         $GETSTRIPE $DIR/d31f/hosts
2019         multiop_bg_pause $DIR/d31f D_c || return 1
2020         MULTIPID=$!
2021
2022         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2023         test_mkdir $DIR/d31f
2024         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2025         cp /etc/hosts $DIR/d31f
2026         ls -l $DIR/d31f
2027         $GETSTRIPE $DIR/d31f/hosts
2028         multiop_bg_pause $DIR/d31f D_c || return 1
2029         MULTIPID2=$!
2030
2031         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2032         wait $MULTIPID || error "first opendir $MULTIPID failed"
2033
2034         sleep 6
2035
2036         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2037         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2038         set +vx
2039 }
2040 run_test 31f "remove of open directory with open-unlink file ==="
2041
2042 test_31g() {
2043         echo "-- cross directory link --"
2044         test_mkdir $DIR/d31ga
2045         test_mkdir $DIR/d31gb
2046         touch $DIR/d31ga/f
2047         ln $DIR/d31ga/f $DIR/d31gb/g
2048         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2049         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2050         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2051         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2052 }
2053 run_test 31g "cross directory link==============="
2054
2055 test_31h() {
2056         echo "-- cross directory link --"
2057         test_mkdir $DIR/d31h
2058         test_mkdir $DIR/d31h/dir
2059         touch $DIR/d31h/f
2060         ln $DIR/d31h/f $DIR/d31h/dir/g
2061         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2062         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2063         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2064         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2065 }
2066 run_test 31h "cross directory link under child==============="
2067
2068 test_31i() {
2069         echo "-- cross directory link --"
2070         test_mkdir $DIR/d31i
2071         test_mkdir $DIR/d31i/dir
2072         touch $DIR/d31i/dir/f
2073         ln $DIR/d31i/dir/f $DIR/d31i/g
2074         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2075         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2076         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2077         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2078 }
2079 run_test 31i "cross directory link under parent==============="
2080
2081
2082 test_31j() {
2083         test_mkdir $DIR/d31j
2084         test_mkdir $DIR/d31j/dir1
2085         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2086         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2087         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2088         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2089         return 0
2090 }
2091 run_test 31j "link for directory==============="
2092
2093
2094 test_31k() {
2095         test_mkdir $DIR/d31k
2096         touch $DIR/d31k/s
2097         touch $DIR/d31k/exist
2098         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2099         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2100         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2101         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2102         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2103         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2104         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2105         return 0
2106 }
2107 run_test 31k "link to file: the same, non-existing, dir==============="
2108
2109 test_31m() {
2110         test_mkdir $DIR/d31m
2111         touch $DIR/d31m/s
2112         test_mkdir $DIR/d31m2
2113         touch $DIR/d31m2/exist
2114         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2115         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2116         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2117         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2118         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2119         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2120         return 0
2121 }
2122 run_test 31m "link to file: the same, non-existing, dir==============="
2123
2124 test_31n() {
2125         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2126         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2127         nlink=$(stat --format=%h $DIR/$tfile)
2128         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2129         exec 173<$DIR/$tfile
2130         trap "exec 173<&-" EXIT
2131         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2132         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2133         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2134         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2135         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2136         exec 173<&-
2137 }
2138 run_test 31n "check link count of unlinked file"
2139
2140 cleanup_test32_mount() {
2141         trap 0
2142         $UMOUNT $DIR/$tdir/ext2-mountpoint
2143 }
2144
2145 test_32a() {
2146         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2147         echo "== more mountpoints and symlinks ================="
2148         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2149         trap cleanup_test32_mount EXIT
2150         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2151         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2152         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2153         cleanup_test32_mount
2154 }
2155 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2156
2157 test_32b() {
2158         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2159         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2160         trap cleanup_test32_mount EXIT
2161         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2162         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2163         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2164         cleanup_test32_mount
2165 }
2166 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2167
2168 test_32c() {
2169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2170         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2171         trap cleanup_test32_mount EXIT
2172         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2173         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2174         test_mkdir -p $DIR/$tdir/d2/test_dir
2175         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2176         cleanup_test32_mount
2177 }
2178 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2179
2180 test_32d() {
2181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2182         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2183         trap cleanup_test32_mount EXIT
2184         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2185         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2186         test_mkdir -p $DIR/$tdir/d2/test_dir
2187         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2188         cleanup_test32_mount
2189 }
2190 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2191
2192 test_32e() {
2193         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2194         test_mkdir -p $DIR/d32e/tmp
2195         TMP_DIR=$DIR/d32e/tmp
2196         ln -s $DIR/d32e $TMP_DIR/symlink11
2197         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2198         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2199         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2200 }
2201 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2202
2203 test_32f() {
2204         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2205         test_mkdir -p $DIR/d32f/tmp
2206         TMP_DIR=$DIR/d32f/tmp
2207         ln -s $DIR/d32f $TMP_DIR/symlink11
2208         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2209         ls $DIR/d32f/tmp/symlink11  || error
2210         ls $DIR/d32f/symlink01 || error
2211 }
2212 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2213
2214 test_32g() {
2215         TMP_DIR=$DIR/$tdir/tmp
2216         test_mkdir -p $DIR/$tdir/tmp
2217         test_mkdir $DIR/${tdir}2
2218         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2219         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2220         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2221         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2222         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2223         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2224 }
2225 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2226
2227 test_32h() {
2228         rm -fr $DIR/$tdir $DIR/${tdir}2
2229         TMP_DIR=$DIR/$tdir/tmp
2230         test_mkdir -p $DIR/$tdir/tmp
2231         test_mkdir $DIR/${tdir}2
2232         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2233         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2234         ls $TMP_DIR/symlink12 || error
2235         ls $DIR/$tdir/symlink02  || error
2236 }
2237 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2238
2239 test_32i() {
2240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2241         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2242         trap cleanup_test32_mount EXIT
2243         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2244         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2245         touch $DIR/$tdir/test_file
2246         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2247         cleanup_test32_mount
2248 }
2249 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2250
2251 test_32j() {
2252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2253         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2254         trap cleanup_test32_mount EXIT
2255         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2256         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2257         touch $DIR/$tdir/test_file
2258         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2259         cleanup_test32_mount
2260 }
2261 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2262
2263 test_32k() {
2264         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2265         rm -fr $DIR/$tdir
2266         trap cleanup_test32_mount EXIT
2267         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2268         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2269         test_mkdir -p $DIR/$tdir/d2
2270         touch $DIR/$tdir/d2/test_file || error
2271         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2272         cleanup_test32_mount
2273 }
2274 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2275
2276 test_32l() {
2277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2278         rm -fr $DIR/$tdir
2279         trap cleanup_test32_mount EXIT
2280         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2281         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2282         test_mkdir -p $DIR/$tdir/d2
2283         touch $DIR/$tdir/d2/test_file
2284         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2285         cleanup_test32_mount
2286 }
2287 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2288
2289 test_32m() {
2290         rm -fr $DIR/d32m
2291         test_mkdir -p $DIR/d32m/tmp
2292         TMP_DIR=$DIR/d32m/tmp
2293         ln -s $DIR $TMP_DIR/symlink11
2294         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2295         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2296         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2297 }
2298 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2299
2300 test_32n() {
2301         rm -fr $DIR/d32n
2302         test_mkdir -p $DIR/d32n/tmp
2303         TMP_DIR=$DIR/d32n/tmp
2304         ln -s $DIR $TMP_DIR/symlink11
2305         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2306         ls -l $DIR/d32n/tmp/symlink11  || error
2307         ls -l $DIR/d32n/symlink01 || error
2308 }
2309 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2310
2311 test_32o() {
2312         rm -fr $DIR/d32o $DIR/$tfile
2313         touch $DIR/$tfile
2314         test_mkdir -p $DIR/d32o/tmp
2315         TMP_DIR=$DIR/d32o/tmp
2316         ln -s $DIR/$tfile $TMP_DIR/symlink12
2317         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2318         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2319         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2320         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2321         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2322 }
2323 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2324
2325 test_32p() {
2326     log 32p_1
2327         rm -fr $DIR/d32p
2328     log 32p_2
2329         rm -f $DIR/$tfile
2330     log 32p_3
2331         touch $DIR/$tfile
2332     log 32p_4
2333         test_mkdir -p $DIR/d32p/tmp
2334     log 32p_5
2335         TMP_DIR=$DIR/d32p/tmp
2336     log 32p_6
2337         ln -s $DIR/$tfile $TMP_DIR/symlink12
2338     log 32p_7
2339         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2340     log 32p_8
2341         cat $DIR/d32p/tmp/symlink12 || error
2342     log 32p_9
2343         cat $DIR/d32p/symlink02 || error
2344     log 32p_10
2345 }
2346 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2347
2348 cleanup_testdir_mount() {
2349         trap 0
2350         $UMOUNT $DIR/$tdir
2351 }
2352
2353 test_32q() {
2354         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2355         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2356         trap cleanup_testdir_mount EXIT
2357         test_mkdir -p $DIR/$tdir
2358         touch $DIR/$tdir/under_the_mount
2359         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2360         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2361         cleanup_testdir_mount
2362 }
2363 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2364
2365 test_32r() {
2366         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2367         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2368         trap cleanup_testdir_mount EXIT
2369         test_mkdir -p $DIR/$tdir
2370         touch $DIR/$tdir/under_the_mount
2371         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2372         ls $DIR/$tdir | grep -q under_the_mount && error || true
2373         cleanup_testdir_mount
2374 }
2375 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2376
2377 test_33aa() {
2378         rm -f $DIR/$tfile
2379         touch $DIR/$tfile
2380         chmod 444 $DIR/$tfile
2381         chown $RUNAS_ID $DIR/$tfile
2382         log 33_1
2383         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2384         log 33_2
2385 }
2386 run_test 33aa "write file with mode 444 (should return error) ===="
2387
2388 test_33a() {
2389         rm -fr $DIR/d33
2390         test_mkdir -p $DIR/d33
2391         chown $RUNAS_ID $DIR/d33
2392         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2393         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2394                 error "open RDWR" || true
2395 }
2396 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2397
2398 test_33b() {
2399         rm -fr $DIR/d33
2400         test_mkdir -p $DIR/d33
2401         chown $RUNAS_ID $DIR/d33
2402         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2403 }
2404 run_test 33b "test open file with malformed flags (No panic and return error)"
2405
2406 test_33c() {
2407         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2408         local ostnum
2409         local ostname
2410         local write_bytes
2411         local all_zeros
2412
2413         remote_ost_nodsh && skip "remote OST with nodsh" && return
2414         all_zeros=:
2415         rm -fr $DIR/d33
2416         test_mkdir -p $DIR/d33
2417         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2418
2419         sync
2420         for ostnum in $(seq $OSTCOUNT); do
2421                 # test-framework's OST numbering is one-based, while Lustre's
2422                 # is zero-based
2423                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2424                 # Parsing llobdstat's output sucks; we could grep the /proc
2425                 # path, but that's likely to not be as portable as using the
2426                 # llobdstat utility.  So we parse lctl output instead.
2427                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2428                         obdfilter/$ostname/stats |
2429                         awk '/^write_bytes/ {print $7}' )
2430                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2431                 if (( ${write_bytes:-0} > 0 ))
2432                 then
2433                         all_zeros=false
2434                         break;
2435                 fi
2436         done
2437
2438         $all_zeros || return 0
2439
2440         # Write four bytes
2441         echo foo > $DIR/d33/bar
2442         # Really write them
2443         sync
2444
2445         # Total up write_bytes after writing.  We'd better find non-zeros.
2446         for ostnum in $(seq $OSTCOUNT); do
2447                 ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2448                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2449                         obdfilter/$ostname/stats |
2450                         awk '/^write_bytes/ {print $7}' )
2451                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2452                 if (( ${write_bytes:-0} > 0 ))
2453                 then
2454                         all_zeros=false
2455                         break;
2456                 fi
2457         done
2458
2459         if $all_zeros
2460         then
2461                 for ostnum in $(seq $OSTCOUNT); do
2462                         ostname=$(printf "$FSNAME-OST%.4d" $((ostnum - 1)))
2463                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2464                         do_facet ost$ostnum lctl get_param -n \
2465                                 obdfilter/$ostname/stats
2466                 done
2467                 error "OST not keeping write_bytes stats (b22312)"
2468         fi
2469 }
2470 run_test 33c "test llobdstat and write_bytes"
2471
2472 test_33d() {
2473         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2474         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2475         local MDTIDX=1
2476         local remote_dir=$DIR/$tdir/remote_dir
2477
2478         mkdir -p $DIR/$tdir
2479         $LFS mkdir -i $MDTIDX $remote_dir ||
2480                 error "create remote directory failed"
2481
2482         touch $remote_dir/$tfile
2483         chmod 444 $remote_dir/$tfile
2484         chown $RUNAS_ID $remote_dir/$tfile
2485
2486         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2487
2488         chown $RUNAS_ID $remote_dir
2489         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2490                                         error "create" || true
2491         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2492                                     error "open RDWR" || true
2493         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2494                                     error "create" || true
2495 }
2496 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2497
2498 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2499 test_34a() {
2500         rm -f $DIR/f34
2501         $MCREATE $DIR/f34 || error
2502         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2503         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2504         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2505         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2506 }
2507 run_test 34a "truncate file that has not been opened ==========="
2508
2509 test_34b() {
2510         [ ! -f $DIR/f34 ] && test_34a
2511         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2512         $OPENFILE -f O_RDONLY $DIR/f34
2513         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2514         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2515 }
2516 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2517
2518 test_34c() {
2519         [ ! -f $DIR/f34 ] && test_34a
2520         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2521         $OPENFILE -f O_RDWR $DIR/f34
2522         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2523         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2524 }
2525 run_test 34c "O_RDWR opening file-with-size works =============="
2526
2527 test_34d() {
2528         [ ! -f $DIR/f34 ] && test_34a
2529         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2530         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2531         rm $DIR/f34
2532 }
2533 run_test 34d "write to sparse file ============================="
2534
2535 test_34e() {
2536         rm -f $DIR/f34e
2537         $MCREATE $DIR/f34e || error
2538         $TRUNCATE $DIR/f34e 1000 || error
2539         $CHECKSTAT -s 1000 $DIR/f34e || error
2540         $OPENFILE -f O_RDWR $DIR/f34e
2541         $CHECKSTAT -s 1000 $DIR/f34e || error
2542 }
2543 run_test 34e "create objects, some with size and some without =="
2544
2545 test_34f() { # bug 6242, 6243
2546         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2547         SIZE34F=48000
2548         rm -f $DIR/f34f
2549         $MCREATE $DIR/f34f || error
2550         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2551         dd if=$DIR/f34f of=$TMP/f34f
2552         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2553         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2554         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2555         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2556         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2557 }
2558 run_test 34f "read from a file with no objects until EOF ======="
2559
2560 test_34g() {
2561         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2562         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2563         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2564         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2565         cancel_lru_locks osc
2566         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2567                 error "wrong size after lock cancel"
2568
2569         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2570         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2571                 error "expanding truncate failed"
2572         cancel_lru_locks osc
2573         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2574                 error "wrong expanded size after lock cancel"
2575 }
2576 run_test 34g "truncate long file ==============================="
2577
2578 test_34h() {
2579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2580         local gid=10
2581         local sz=1000
2582
2583         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2584         sync # Flush the cache so that multiop below does not block on cache
2585              # flush when getting the group lock
2586         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2587         MULTIPID=$!
2588         sleep 2
2589
2590         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2591                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2592                 kill -9 $MULTIPID
2593         fi
2594         wait $MULTIPID
2595         local nsz=`stat -c %s $DIR/$tfile`
2596         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2597 }
2598 run_test 34h "ftruncate file under grouplock should not block"
2599
2600 test_35a() {
2601         cp /bin/sh $DIR/f35a
2602         chmod 444 $DIR/f35a
2603         chown $RUNAS_ID $DIR/f35a
2604         $RUNAS $DIR/f35a && error || true
2605         rm $DIR/f35a
2606 }
2607 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2608
2609 test_36a() {
2610         rm -f $DIR/f36
2611         utime $DIR/f36 || error
2612 }
2613 run_test 36a "MDS utime check (mknod, utime) ==================="
2614
2615 test_36b() {
2616         echo "" > $DIR/f36
2617         utime $DIR/f36 || error
2618 }
2619 run_test 36b "OST utime check (open, utime) ===================="
2620
2621 test_36c() {
2622         rm -f $DIR/d36/f36
2623         test_mkdir $DIR/d36
2624         chown $RUNAS_ID $DIR/d36
2625         $RUNAS utime $DIR/d36/f36 || error
2626 }
2627 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2628
2629 test_36d() {
2630         [ ! -d $DIR/d36 ] && test_36c
2631         echo "" > $DIR/d36/f36
2632         $RUNAS utime $DIR/d36/f36 || error
2633 }
2634 run_test 36d "non-root OST utime check (open, utime) ==========="
2635
2636 test_36e() {
2637         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2638         test_mkdir -p $DIR/$tdir
2639         touch $DIR/$tdir/$tfile
2640         $RUNAS utime $DIR/$tdir/$tfile && \
2641                 error "utime worked, expected failure" || true
2642 }
2643 run_test 36e "utime on non-owned file (should return error) ===="
2644
2645 subr_36fh() {
2646         local fl="$1"
2647         local LANG_SAVE=$LANG
2648         local LC_LANG_SAVE=$LC_LANG
2649         export LANG=C LC_LANG=C # for date language
2650
2651         DATESTR="Dec 20  2000"
2652         test_mkdir -p $DIR/$tdir
2653         lctl set_param fail_loc=$fl
2654         date; date +%s
2655         cp /etc/hosts $DIR/$tdir/$tfile
2656         sync & # write RPC generated with "current" inode timestamp, but delayed
2657         sleep 1
2658         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2659         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2660         cancel_lru_locks osc
2661         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2662         date; date +%s
2663         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2664                 echo "BEFORE: $LS_BEFORE" && \
2665                 echo "AFTER : $LS_AFTER" && \
2666                 echo "WANT  : $DATESTR" && \
2667                 error "$DIR/$tdir/$tfile timestamps changed" || true
2668
2669         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2670 }
2671
2672 test_36f() {
2673         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2674         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2675         subr_36fh "0x80000214"
2676 }
2677 run_test 36f "utime on file racing with OST BRW write =========="
2678
2679 test_36g() {
2680         remote_ost_nodsh && skip "remote OST with nodsh" && return
2681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2682         local fmd_max_age
2683         local fmd_before
2684         local fmd_after
2685
2686         test_mkdir -p $DIR/$tdir
2687         fmd_max_age=$(do_facet ost1 \
2688                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2689                 head -n 1")
2690
2691         fmd_before=$(do_facet ost1 \
2692                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2693         touch $DIR/$tdir/$tfile
2694         sleep $((fmd_max_age + 12))
2695         fmd_after=$(do_facet ost1 \
2696                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2697
2698         echo "fmd_before: $fmd_before"
2699         echo "fmd_after: $fmd_after"
2700         [ "$fmd_after" -gt "$fmd_before" ] && \
2701                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2702                 error "fmd didn't expire after ping" || true
2703 }
2704 run_test 36g "filter mod data cache expiry ====================="
2705
2706 test_36h() {
2707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2708         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2709         subr_36fh "0x80000227"
2710 }
2711 run_test 36h "utime on file racing with OST BRW write =========="
2712
2713 # test_37 - duplicate with tests 32q 32r
2714
2715 test_38() {
2716         local file=$DIR/$tfile
2717         touch $file
2718         openfile -f O_DIRECTORY $file
2719         local RC=$?
2720         local ENOTDIR=20
2721         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2722         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2723 }
2724 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2725
2726 test_39() {
2727         touch $DIR/$tfile
2728         touch $DIR/${tfile}2
2729 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2730 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2731 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2732         sleep 2
2733         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2734         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2735                 echo "mtime"
2736                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2737                 echo "atime"
2738                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2739                 echo "ctime"
2740                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2741                 error "O_TRUNC didn't change timestamps"
2742         fi
2743 }
2744 run_test 39 "mtime changed on create ==========================="
2745
2746 test_39b() {
2747         test_mkdir -p $DIR/$tdir
2748         cp -p /etc/passwd $DIR/$tdir/fopen
2749         cp -p /etc/passwd $DIR/$tdir/flink
2750         cp -p /etc/passwd $DIR/$tdir/funlink
2751         cp -p /etc/passwd $DIR/$tdir/frename
2752         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2753
2754         sleep 1
2755         echo "aaaaaa" >> $DIR/$tdir/fopen
2756         echo "aaaaaa" >> $DIR/$tdir/flink
2757         echo "aaaaaa" >> $DIR/$tdir/funlink
2758         echo "aaaaaa" >> $DIR/$tdir/frename
2759
2760         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2761         local link_new=`stat -c %Y $DIR/$tdir/flink`
2762         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2763         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2764
2765         cat $DIR/$tdir/fopen > /dev/null
2766         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2767         rm -f $DIR/$tdir/funlink2
2768         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2769
2770         for (( i=0; i < 2; i++ )) ; do
2771                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2772                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2773                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2774                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2775
2776                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2777                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2778                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2779                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2780
2781                 cancel_lru_locks osc
2782                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2783         done
2784 }
2785 run_test 39b "mtime change on open, link, unlink, rename  ======"
2786
2787 # this should be set to past
2788 TEST_39_MTIME=`date -d "1 year ago" +%s`
2789
2790 # bug 11063
2791 test_39c() {
2792         touch $DIR1/$tfile
2793         sleep 2
2794         local mtime0=`stat -c %Y $DIR1/$tfile`
2795
2796         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2797         local mtime1=`stat -c %Y $DIR1/$tfile`
2798         [ "$mtime1" = $TEST_39_MTIME ] || \
2799                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2800
2801         local d1=`date +%s`
2802         echo hello >> $DIR1/$tfile
2803         local d2=`date +%s`
2804         local mtime2=`stat -c %Y $DIR1/$tfile`
2805         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2806                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2807
2808         mv $DIR1/$tfile $DIR1/$tfile-1
2809
2810         for (( i=0; i < 2; i++ )) ; do
2811                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2812                 [ "$mtime2" = "$mtime3" ] || \
2813                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2814
2815                 cancel_lru_locks osc
2816                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2817         done
2818 }
2819 run_test 39c "mtime change on rename ==========================="
2820
2821 # bug 21114
2822 test_39d() {
2823         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2824         touch $DIR1/$tfile
2825
2826         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2827
2828         for (( i=0; i < 2; i++ )) ; do
2829                 local mtime=`stat -c %Y $DIR1/$tfile`
2830                 [ $mtime = $TEST_39_MTIME ] || \
2831                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2832
2833                 cancel_lru_locks osc
2834                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2835         done
2836 }
2837 run_test 39d "create, utime, stat =============================="
2838
2839 # bug 21114
2840 test_39e() {
2841         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2842         touch $DIR1/$tfile
2843         local mtime1=`stat -c %Y $DIR1/$tfile`
2844
2845         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2846
2847         for (( i=0; i < 2; i++ )) ; do
2848                 local mtime2=`stat -c %Y $DIR1/$tfile`
2849                 [ $mtime2 = $TEST_39_MTIME ] || \
2850                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2851
2852                 cancel_lru_locks osc
2853                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2854         done
2855 }
2856 run_test 39e "create, stat, utime, stat ========================"
2857
2858 # bug 21114
2859 test_39f() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2861         touch $DIR1/$tfile
2862         mtime1=`stat -c %Y $DIR1/$tfile`
2863
2864         sleep 2
2865         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2866
2867         for (( i=0; i < 2; i++ )) ; do
2868                 local mtime2=`stat -c %Y $DIR1/$tfile`
2869                 [ $mtime2 = $TEST_39_MTIME ] || \
2870                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2871
2872                 cancel_lru_locks osc
2873                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2874         done
2875 }
2876 run_test 39f "create, stat, sleep, utime, stat ================="
2877
2878 # bug 11063
2879 test_39g() {
2880         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2881         echo hello >> $DIR1/$tfile
2882         local mtime1=`stat -c %Y $DIR1/$tfile`
2883
2884         sleep 2
2885         chmod o+r $DIR1/$tfile
2886
2887         for (( i=0; i < 2; i++ )) ; do
2888                 local mtime2=`stat -c %Y $DIR1/$tfile`
2889                 [ "$mtime1" = "$mtime2" ] || \
2890                         error "lost mtime: $mtime2, should be $mtime1"
2891
2892                 cancel_lru_locks osc
2893                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2894         done
2895 }
2896 run_test 39g "write, chmod, stat ==============================="
2897
2898 # bug 11063
2899 test_39h() {
2900         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2901         touch $DIR1/$tfile
2902         sleep 1
2903
2904         local d1=`date`
2905         echo hello >> $DIR1/$tfile
2906         local mtime1=`stat -c %Y $DIR1/$tfile`
2907
2908         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2909         local d2=`date`
2910         if [ "$d1" != "$d2" ]; then
2911                 echo "write and touch not within one second"
2912         else
2913                 for (( i=0; i < 2; i++ )) ; do
2914                         local mtime2=`stat -c %Y $DIR1/$tfile`
2915                         [ "$mtime2" = $TEST_39_MTIME ] || \
2916                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2917
2918                         cancel_lru_locks osc
2919                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2920                 done
2921         fi
2922 }
2923 run_test 39h "write, utime within one second, stat ============="
2924
2925 test_39i() {
2926         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2927         touch $DIR1/$tfile
2928         sleep 1
2929
2930         echo hello >> $DIR1/$tfile
2931         local mtime1=`stat -c %Y $DIR1/$tfile`
2932
2933         mv $DIR1/$tfile $DIR1/$tfile-1
2934
2935         for (( i=0; i < 2; i++ )) ; do
2936                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2937
2938                 [ "$mtime1" = "$mtime2" ] || \
2939                         error "lost mtime: $mtime2, should be $mtime1"
2940
2941                 cancel_lru_locks osc
2942                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2943         done
2944 }
2945 run_test 39i "write, rename, stat =============================="
2946
2947 test_39j() {
2948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2949         start_full_debug_logging
2950         touch $DIR1/$tfile
2951         sleep 1
2952
2953         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2954         lctl set_param fail_loc=0x80000412
2955         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2956                 error "multiop failed"
2957         local multipid=$!
2958         local mtime1=`stat -c %Y $DIR1/$tfile`
2959
2960         mv $DIR1/$tfile $DIR1/$tfile-1
2961
2962         kill -USR1 $multipid
2963         wait $multipid || error "multiop close failed"
2964
2965         for (( i=0; i < 2; i++ )) ; do
2966                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2967                 [ "$mtime1" = "$mtime2" ] ||
2968                         error "mtime is lost on close: $mtime2, " \
2969                               "should be $mtime1"
2970
2971                 cancel_lru_locks osc
2972                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2973         done
2974         lctl set_param fail_loc=0
2975         stop_full_debug_logging
2976 }
2977 run_test 39j "write, rename, close, stat ======================="
2978
2979 test_39k() {
2980         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2981         touch $DIR1/$tfile
2982         sleep 1
2983
2984         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
2985         local multipid=$!
2986         local mtime1=`stat -c %Y $DIR1/$tfile`
2987
2988         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2989
2990         kill -USR1 $multipid
2991         wait $multipid || error "multiop close failed"
2992
2993         for (( i=0; i < 2; i++ )) ; do
2994                 local mtime2=`stat -c %Y $DIR1/$tfile`
2995
2996                 [ "$mtime2" = $TEST_39_MTIME ] || \
2997                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
2998
2999                 cancel_lru_locks osc
3000                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3001         done
3002 }
3003 run_test 39k "write, utime, close, stat ========================"
3004
3005 # this should be set to future
3006 TEST_39_ATIME=`date -d "1 year" +%s`
3007
3008 test_39l() {
3009         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3010         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3011         local atime_diff=$(do_facet $SINGLEMDS \
3012                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3013         rm -rf $DIR/$tdir
3014         mkdir -p $DIR/$tdir
3015
3016         # test setting directory atime to future
3017         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3018         local atime=$(stat -c %X $DIR/$tdir)
3019         [ "$atime" = $TEST_39_ATIME ] || \
3020                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3021
3022         # test setting directory atime from future to now
3023         local d1=$(date +%s)
3024         ls $DIR/$tdir
3025         local d2=$(date +%s)
3026
3027         cancel_lru_locks mdc
3028         atime=$(stat -c %X $DIR/$tdir)
3029         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3030                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3031
3032         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3033         sleep 3
3034
3035         # test setting directory atime when now > dir atime + atime_diff
3036         d1=$(date +%s)
3037         ls $DIR/$tdir
3038         d2=$(date +%s)
3039         cancel_lru_locks mdc
3040         atime=$(stat -c %X $DIR/$tdir)
3041         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3042                 error "atime is not updated  : $atime, should be $d2"
3043
3044         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3045         sleep 3
3046
3047         # test not setting directory atime when now < dir atime + atime_diff
3048         ls $DIR/$tdir
3049         cancel_lru_locks mdc
3050         atime=$(stat -c %X $DIR/$tdir)
3051         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3052                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3053
3054         do_facet $SINGLEMDS \
3055                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3056 }
3057 run_test 39l "directory atime update ==========================="
3058
3059 test_39m() {
3060         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3061         touch $DIR1/$tfile
3062         sleep 2
3063         local far_past_mtime=$(date -d "May 29 1953" +%s)
3064         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3065
3066         touch -m -d @$far_past_mtime $DIR1/$tfile
3067         touch -a -d @$far_past_atime $DIR1/$tfile
3068
3069         for (( i=0; i < 2; i++ )) ; do
3070                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3071                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3072                         error "atime or mtime set incorrectly"
3073
3074                 cancel_lru_locks osc
3075                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3076         done
3077 }
3078 run_test 39m "test atime and mtime before 1970"
3079
3080 test_40() {
3081         dd if=/dev/zero of=$DIR/f40 bs=4096 count=1
3082         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/f40 && error
3083         $CHECKSTAT -t file -s 4096 $DIR/f40 || error
3084 }
3085 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3086
3087 test_41() {
3088         # bug 1553
3089         small_write $DIR/f41 18
3090 }
3091 run_test 41 "test small file write + fstat ====================="
3092
3093 count_ost_writes() {
3094         lctl get_param -n osc.*.stats |
3095             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3096 }
3097
3098 # decent default
3099 WRITEBACK_SAVE=500
3100 DIRTY_RATIO_SAVE=40
3101 MAX_DIRTY_RATIO=50
3102 BG_DIRTY_RATIO_SAVE=10
3103 MAX_BG_DIRTY_RATIO=25
3104
3105 start_writeback() {
3106         trap 0
3107         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3108         # dirty_ratio, dirty_background_ratio
3109         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3110                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3111                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3112                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3113         else
3114                 # if file not here, we are a 2.4 kernel
3115                 kill -CONT `pidof kupdated`
3116         fi
3117 }
3118
3119 stop_writeback() {
3120         # setup the trap first, so someone cannot exit the test at the
3121         # exact wrong time and mess up a machine
3122         trap start_writeback EXIT
3123         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3124         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3125                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3126                 sysctl -w vm.dirty_writeback_centisecs=0
3127                 sysctl -w vm.dirty_writeback_centisecs=0
3128                 # save and increase /proc/sys/vm/dirty_ratio
3129                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3130                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3131                 # save and increase /proc/sys/vm/dirty_background_ratio
3132                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3133                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3134         else
3135                 # if file not here, we are a 2.4 kernel
3136                 kill -STOP `pidof kupdated`
3137         fi
3138 }
3139
3140 # ensure that all stripes have some grant before we test client-side cache
3141 setup_test42() {
3142         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3143                 dd if=/dev/zero of=$i bs=4k count=1
3144                 rm $i
3145         done
3146 }
3147
3148 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3149 # file truncation, and file removal.
3150 test_42a() {
3151         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3152         setup_test42
3153         cancel_lru_locks osc
3154         stop_writeback
3155         sync; sleep 1; sync # just to be safe
3156         BEFOREWRITES=`count_ost_writes`
3157         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3158         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3159         AFTERWRITES=`count_ost_writes`
3160         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3161                 error "$BEFOREWRITES < $AFTERWRITES"
3162         start_writeback
3163 }
3164 run_test 42a "ensure that we don't flush on close =============="
3165
3166 test_42b() {
3167         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3168         setup_test42
3169         cancel_lru_locks osc
3170         stop_writeback
3171         sync
3172         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3173         BEFOREWRITES=`count_ost_writes`
3174         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3175         AFTERWRITES=`count_ost_writes`
3176         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3177                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3178         fi
3179         BEFOREWRITES=`count_ost_writes`
3180         sync || error "sync: $?"
3181         AFTERWRITES=`count_ost_writes`
3182         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3183                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3184         fi
3185         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3186         start_writeback
3187         return 0
3188 }
3189 run_test 42b "test destroy of file with cached dirty data ======"
3190
3191 # if these tests just want to test the effect of truncation,
3192 # they have to be very careful.  consider:
3193 # - the first open gets a {0,EOF}PR lock
3194 # - the first write conflicts and gets a {0, count-1}PW
3195 # - the rest of the writes are under {count,EOF}PW
3196 # - the open for truncate tries to match a {0,EOF}PR
3197 #   for the filesize and cancels the PWs.
3198 # any number of fixes (don't get {0,EOF} on open, match
3199 # composite locks, do smarter file size management) fix
3200 # this, but for now we want these tests to verify that
3201 # the cancellation with truncate intent works, so we
3202 # start the file with a full-file pw lock to match against
3203 # until the truncate.
3204 trunc_test() {
3205         test=$1
3206         file=$DIR/$test
3207         offset=$2
3208         cancel_lru_locks osc
3209         stop_writeback
3210         # prime the file with 0,EOF PW to match
3211         touch $file
3212         $TRUNCATE $file 0
3213         sync; sync
3214         # now the real test..
3215         dd if=/dev/zero of=$file bs=1024 count=100
3216         BEFOREWRITES=`count_ost_writes`
3217         $TRUNCATE $file $offset
3218         cancel_lru_locks osc
3219         AFTERWRITES=`count_ost_writes`
3220         start_writeback
3221 }
3222
3223 test_42c() {
3224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3225         trunc_test 42c 1024
3226         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3227             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3228         rm $file
3229 }
3230 run_test 42c "test partial truncate of file with cached dirty data"
3231
3232 test_42d() {
3233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3234         trunc_test 42d 0
3235         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3236             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3237         rm $file
3238 }
3239 run_test 42d "test complete truncate of file with cached dirty data"
3240
3241 test_42e() { # bug22074
3242         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3243         local TDIR=$DIR/${tdir}e
3244         local pagesz=$(page_size)
3245         local pages=16 # hardcoded 16 pages, don't change it.
3246         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3247         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3248         local max_dirty_mb
3249         local warmup_files
3250
3251         test_mkdir -p $DIR/${tdir}e
3252         $SETSTRIPE -c 1 $TDIR
3253         createmany -o $TDIR/f $files
3254
3255         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3256
3257         # we assume that with $OSTCOUNT files, at least one of them will
3258         # be allocated on OST0.
3259         warmup_files=$((OSTCOUNT * max_dirty_mb))
3260         createmany -o $TDIR/w $warmup_files
3261
3262         # write a large amount of data into one file and sync, to get good
3263         # avail_grant number from OST.
3264         for ((i=0; i<$warmup_files; i++)); do
3265                 idx=$($GETSTRIPE -i $TDIR/w$i)
3266                 [ $idx -ne 0 ] && continue
3267                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3268                 break
3269         done
3270         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3271         sync
3272         $LCTL get_param $proc_osc0/cur_dirty_bytes
3273         $LCTL get_param $proc_osc0/cur_grant_bytes
3274
3275         # create as much dirty pages as we can while not to trigger the actual
3276         # RPCs directly. but depends on the env, VFS may trigger flush during this
3277         # period, hopefully we are good.
3278         for ((i=0; i<$warmup_files; i++)); do
3279                 idx=$($GETSTRIPE -i $TDIR/w$i)
3280                 [ $idx -ne 0 ] && continue
3281                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3282         done
3283         $LCTL get_param $proc_osc0/cur_dirty_bytes
3284         $LCTL get_param $proc_osc0/cur_grant_bytes
3285
3286         # perform the real test
3287         $LCTL set_param $proc_osc0/rpc_stats 0
3288         for ((;i<$files; i++)); do
3289                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3290                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3291         done
3292         sync
3293         $LCTL get_param $proc_osc0/rpc_stats
3294
3295         local percent=0
3296         local have_ppr=false
3297         $LCTL get_param $proc_osc0/rpc_stats |
3298                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3299                         # skip lines until we are at the RPC histogram data
3300                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3301                         $have_ppr || continue
3302
3303                         # we only want the percent stat for < 16 pages
3304                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3305
3306                         percent=$((percent + WPCT))
3307                         if [ $percent -gt 15 ]; then
3308                                 error "less than 16-pages write RPCs" \
3309                                       "$percent% > 15%"
3310                                 break
3311                         fi
3312                 done
3313         rm -rf $TDIR
3314 }
3315 run_test 42e "verify sub-RPC writes are not done synchronously"
3316
3317 test_43() {
3318         test_mkdir -p $DIR/$tdir
3319         cp -p /bin/ls $DIR/$tdir/$tfile
3320         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3321         pid=$!
3322         # give multiop a chance to open
3323         sleep 1
3324
3325         $DIR/$tdir/$tfile && error || true
3326         kill -USR1 $pid
3327 }
3328 run_test 43 "execution of file opened for write should return -ETXTBSY"
3329
3330 test_43a() {
3331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3332         test_mkdir -p $DIR/$tdir
3333         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3334                         cp -p multiop $DIR/$tdir/multiop
3335         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3336                         return 1
3337         MULTIOP_PID=$!
3338         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3339         kill -USR1 $MULTIOP_PID || return 2
3340         wait $MULTIOP_PID || return 3
3341         rm $TMP/test43.junk
3342 }
3343 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3344
3345 test_43b() {
3346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3347         test_mkdir -p $DIR/$tdir
3348         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3349                         cp -p multiop $DIR/$tdir/multiop
3350         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/test43.junk O_c ||
3351                         return 1
3352         MULTIOP_PID=$!
3353         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3354         kill -USR1 $MULTIOP_PID || return 2
3355         wait $MULTIOP_PID || return 3
3356         rm $TMP/test43.junk
3357 }
3358 run_test 43b "truncate of file being executed should return -ETXTBSY"
3359
3360 test_43c() {
3361         local testdir="$DIR/$tdir"
3362         test_mkdir -p $DIR/$tdir
3363         cp $SHELL $testdir/
3364         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3365                 ( cd $testdir && md5sum -c)
3366 }
3367 run_test 43c "md5sum of copy into lustre========================"
3368
3369 test_44() {
3370         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3371         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3372         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3373 }
3374 run_test 44 "zero length read from a sparse stripe ============="
3375
3376 test_44a() {
3377     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3378                          awk '{print $2}'`
3379     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3380     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3381     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3382                       awk '{print $2}'`
3383     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3384         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3385     fi
3386
3387     OFFSETS="0 $((stride/2)) $((stride-1))"
3388     for offset in $OFFSETS ; do
3389       for i in `seq 0 $((nstripe-1))`; do
3390         local GLOBALOFFSETS=""
3391         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3392         local myfn=$DIR/d44a-$size
3393         echo "--------writing $myfn at $size"
3394         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3395         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3396         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3397                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3398
3399         for j in `seq 0 $((nstripe-1))`; do
3400             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3401             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3402             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3403         done
3404         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3405                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3406         rm -f $myfn
3407       done
3408     done
3409 }
3410 run_test 44a "test sparse pwrite ==============================="
3411
3412 dirty_osc_total() {
3413         tot=0
3414         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3415                 tot=$(($tot + $d))
3416         done
3417         echo $tot
3418 }
3419 do_dirty_record() {
3420         before=`dirty_osc_total`
3421         echo executing "\"$*\""
3422         eval $*
3423         after=`dirty_osc_total`
3424         echo before $before, after $after
3425 }
3426 test_45() {
3427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3428         f="$DIR/f45"
3429         # Obtain grants from OST if it supports it
3430         echo blah > ${f}_grant
3431         stop_writeback
3432         sync
3433         do_dirty_record "echo blah > $f"
3434         [ $before -eq $after ] && error "write wasn't cached"
3435         do_dirty_record "> $f"
3436         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3437         do_dirty_record "echo blah > $f"
3438         [ $before -eq $after ] && error "write wasn't cached"
3439         do_dirty_record "sync"
3440         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3441         do_dirty_record "echo blah > $f"
3442         [ $before -eq $after ] && error "write wasn't cached"
3443         do_dirty_record "cancel_lru_locks osc"
3444         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3445         start_writeback
3446 }
3447 run_test 45 "osc io page accounting ============================"
3448
3449 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3450 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3451 # objects offset and an assert hit when an rpc was built with 1023's mapped
3452 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3453 test_46() {
3454         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3455         f="$DIR/f46"
3456         stop_writeback
3457         sync
3458         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3459         sync
3460         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3461         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3462         sync
3463         start_writeback
3464 }
3465 run_test 46 "dirtying a previously written page ================"
3466
3467 # test_47 is removed "Device nodes check" is moved to test_28
3468
3469 test_48a() { # bug 2399
3470         check_kernel_version 34 || return 0
3471         test_mkdir -p $DIR/$tdir
3472         cd $DIR/$tdir
3473         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3474         test_mkdir $DIR/$tdir || error "recreate directory failed"
3475         touch foo || error "'touch foo' failed after recreating cwd"
3476         test_mkdir $DIR/$tdir/bar ||
3477                      error "'mkdir foo' failed after recreating cwd"
3478         if check_kernel_version 44; then
3479                 touch .foo || error "'touch .foo' failed after recreating cwd"
3480                 test_mkdir $DIR/$tdir/.bar ||
3481                               error "'mkdir .foo' failed after recreating cwd"
3482         fi
3483         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3484         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3485         cd . || error "'cd .' failed after recreating cwd"
3486         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3487         rmdir . && error "'rmdir .' worked after recreating cwd"
3488         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3489         cd .. || error "'cd ..' failed after recreating cwd"
3490 }
3491 run_test 48a "Access renamed working dir (should return errors)="
3492
3493 test_48b() { # bug 2399
3494         check_kernel_version 34 || return 0
3495         rm -rf $DIR/$tdir
3496         test_mkdir -p $DIR/$tdir
3497         cd $DIR/$tdir
3498         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3499         touch foo && error "'touch foo' worked after removing cwd"
3500         test_mkdir $DIR/$tdir/foo &&
3501                      error "'mkdir foo' worked after removing cwd"
3502         if check_kernel_version 44; then
3503                 touch .foo && error "'touch .foo' worked after removing cwd"
3504                 test_mkdir $DIR/$tdir/.foo &&
3505                               error "'mkdir .foo' worked after removing cwd"
3506         fi
3507         ls . > /dev/null && error "'ls .' worked after removing cwd"
3508         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3509         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3510         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3511         rmdir . && error "'rmdir .' worked after removing cwd"
3512         ln -s . foo && error "'ln -s .' worked after removing cwd"
3513         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3514 }
3515 run_test 48b "Access removed working dir (should return errors)="
3516
3517 test_48c() { # bug 2350
3518         check_kernel_version 36 || return 0
3519         #lctl set_param debug=-1
3520         #set -vx
3521         rm -rf $DIR/$tdir
3522         test_mkdir -p $DIR/$tdir/dir
3523         cd $DIR/$tdir/dir
3524         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3525         $TRACE touch foo && error "touch foo worked after removing cwd"
3526         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3527         if check_kernel_version 44; then
3528                 touch .foo && error "touch .foo worked after removing cwd"
3529                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3530         fi
3531         $TRACE ls . && error "'ls .' worked after removing cwd"
3532         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3533         is_patchless || ( $TRACE cd . &&
3534                         error "'cd .' worked after removing cwd" )
3535         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3536         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3537         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3538         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3539 }
3540 run_test 48c "Access removed working subdir (should return errors)"
3541
3542 test_48d() { # bug 2350
3543         check_kernel_version 36 || return 0
3544         #lctl set_param debug=-1
3545         #set -vx
3546         rm -rf $DIR/$tdir
3547         test_mkdir -p $DIR/$tdir/dir
3548         cd $DIR/$tdir/dir
3549         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3550         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3551         $TRACE touch foo && error "'touch foo' worked after removing parent"
3552         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3553         if check_kernel_version 44; then
3554                 touch .foo && error "'touch .foo' worked after removing parent"
3555                 test_mkdir .foo &&
3556                               error "mkdir .foo worked after removing parent"
3557         fi
3558         $TRACE ls . && error "'ls .' worked after removing parent"
3559         $TRACE ls .. && error "'ls ..' worked after removing parent"
3560         is_patchless || ( $TRACE cd . &&
3561                         error "'cd .' worked after recreate parent" )
3562         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3563         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3564         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3565         is_patchless || ( $TRACE cd .. &&
3566                         error "'cd ..' worked after removing parent" || true )
3567 }
3568 run_test 48d "Access removed parent subdir (should return errors)"
3569
3570 test_48e() { # bug 4134
3571         check_kernel_version 41 || return 0
3572         #lctl set_param debug=-1
3573         #set -vx
3574         rm -rf $DIR/$tdir
3575         test_mkdir -p $DIR/$tdir/dir
3576         cd $DIR/$tdir/dir
3577         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3578         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3579         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3580         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3581         # On a buggy kernel addition of "touch foo" after cd .. will
3582         # produce kernel oops in lookup_hash_it
3583         touch ../foo && error "'cd ..' worked after recreate parent"
3584         cd $DIR
3585         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3586 }
3587 run_test 48e "Access to recreated parent subdir (should return errors)"
3588
3589 test_49() { # LU-1030
3590         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3591         # get ost1 size - lustre-OST0000
3592         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3593         # write 800M at maximum
3594         [ $ost1_size -gt 819200 ] && ost1_size=819200
3595
3596         lfs setstripe -c 1 -i 0 $DIR/$tfile
3597         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3598         local dd_pid=$!
3599
3600         # change max_pages_per_rpc while writing the file
3601         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3602         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3603         # loop until dd process exits
3604         while ps ax -opid | grep -wq $dd_pid; do
3605                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3606                 sleep $((RANDOM % 5 + 1))
3607         done
3608         # restore original max_pages_per_rpc
3609         $LCTL set_param $osc1_mppc=$orig_mppc
3610         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3611 }
3612 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3613
3614 test_50() {
3615         # bug 1485
3616         test_mkdir $DIR/$tdir
3617         cd $DIR/$tdir
3618         ls /proc/$$/cwd || error
3619 }
3620 run_test 50 "special situations: /proc symlinks  ==============="
3621
3622 test_51a() {    # was test_51
3623         # bug 1516 - create an empty entry right after ".." then split dir
3624         test_mkdir -p $DIR/$tdir
3625         touch $DIR/$tdir/foo
3626         $MCREATE $DIR/$tdir/bar
3627         rm $DIR/$tdir/foo
3628         createmany -m $DIR/$tdir/longfile 201
3629         FNUM=202
3630         while [ `ls -sd $DIR/$tdir | awk '{ print $1 }'` -eq 4 ]; do
3631                 $MCREATE $DIR/$tdir/longfile$FNUM
3632                 FNUM=$(($FNUM + 1))
3633                 echo -n "+"
3634         done
3635         echo
3636         ls -l $DIR/$tdir > /dev/null || error
3637 }
3638 run_test 51a "special situations: split htree with empty entry =="
3639
3640 export NUMTEST=70000
3641 test_51b() {
3642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3643         local BASE=$DIR/$tdir
3644
3645         # cleanup the directory
3646         rm -fr $BASE
3647
3648         test_mkdir -p $BASE
3649
3650         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3651         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3652         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3653                 return
3654
3655         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3656                 echo "reduced count to $NUMTEST due to inodes"
3657
3658         # need to check free space for the directories as well
3659         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3660         numfree=$((blkfree / 4))
3661         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3662                 echo "reduced count to $NUMTEST due to blocks"
3663
3664         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3665                 echo "failed" > $BASE/fnum
3666 }
3667 run_test 51b "exceed 64k subdirectory nlink limit"
3668
3669 test_51ba() { # LU-993
3670         local BASE=$DIR/$tdir
3671         # unlink all but 100 subdirectories, then check it still works
3672         local LEFT=100
3673         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3674
3675         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3676         local DELETE=$((NUMTEST - LEFT))
3677
3678         # continue on to run this test even if 51b didn't finish,
3679         # just to delete the many subdirectories created.
3680         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3681
3682         # for ldiskfs the nlink count should be 1, but this is OSD specific
3683         # and so this is listed for informational purposes only
3684         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3685         unlinkmany -d $BASE/d $DELETE
3686         RC=$?
3687
3688         if [ $RC -ne 0 ]; then
3689                 if [ "$NUMPREV" == "failed" ]; then
3690                         skip "previous setup failed"
3691                         return 0
3692                 else
3693                         error "unlink of first $DELETE subdirs failed"
3694                         return $RC
3695                 fi
3696         fi
3697
3698         echo "nlink between: $(stat -c %h $BASE)"
3699         # trim the first line of ls output
3700         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3701         [ $FOUND -ne $LEFT ] &&
3702                 error "can't find subdirs: found only $FOUND/$LEFT"
3703
3704         unlinkmany -d $BASE/d $DELETE $LEFT ||
3705                 error "unlink of second $LEFT subdirs failed"
3706         # regardless of whether the backing filesystem tracks nlink accurately
3707         # or not, the nlink count shouldn't be more than "." and ".." here
3708         local AFTER=$(stat -c %h $BASE)
3709         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3710                 echo "nlink after: $AFTER"
3711 }
3712 run_test 51ba "verify nlink for many subdirectory cleanup"
3713
3714 test_51d() {
3715         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3716         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3717         test_mkdir -p $DIR/$tdir
3718         createmany -o $DIR/$tdir/t- 1000
3719         $GETSTRIPE $DIR/$tdir > $TMP/files
3720         for N in `seq 0 $((OSTCOUNT - 1))`; do
3721             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3722             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3723             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3724         done
3725         unlinkmany $DIR/$tdir/t- 1000
3726
3727         NLAST=0
3728         for N in `seq 1 $((OSTCOUNT - 1))`; do
3729             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3730                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3731             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3732                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3733
3734             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3735                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3736             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3737                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3738             NLAST=$N
3739         done
3740 }
3741 run_test 51d "check object distribution ===================="
3742
3743 test_52a() {
3744         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3745         test_mkdir -p $DIR/$tdir
3746         touch $DIR/$tdir/foo
3747         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3748         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3749         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3750         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3751         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3752                                         error "link worked"
3753         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3754         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3755         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3756                                                      error "lsattr"
3757         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3758         cp -r $DIR/$tdir /tmp/
3759         rm -fr $DIR/$tdir || error "cleanup rm failed"
3760 }
3761 run_test 52a "append-only flag test (should return errors) ====="
3762
3763 test_52b() {
3764         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3765         test_mkdir -p $DIR/$tdir
3766         touch $DIR/$tdir/foo
3767         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3768         cat test > $DIR/$tdir/foo && error "cat test worked"
3769         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3770         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3771         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3772                                         error "link worked"
3773         echo foo >> $DIR/$tdir/foo && error "echo worked"
3774         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3775         [ -f $DIR/$tdir/foo ] || error
3776         [ -f $DIR/$tdir/foo_ren ] && error
3777         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3778                                                         error "lsattr"
3779         chattr -i $DIR/$tdir/foo || error "chattr failed"
3780
3781         rm -fr $DIR/$tdir || error
3782 }
3783 run_test 52b "immutable flag test (should return errors) ======="
3784
3785 test_53() {
3786         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3787         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3788         remote_ost_nodsh && skip "remote OST with nodsh" && return
3789
3790         local param
3791         local ostname
3792         local mds_last
3793         local ost_last
3794         local ostnum
3795         local node
3796
3797         # only test MDT0000
3798         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3799         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3800                 param=`echo ${value[0]} | cut -d "=" -f1`
3801                 ostname=`echo $param | cut -d "." -f2 | cut -d - -f 1-2`
3802                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3803                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3804                 node=$(facet_active_host ost$((ostnum+1)))
3805                 param="obdfilter.$ostname.last_id"
3806                 ost_last=$(do_node $node lctl get_param -n $param | head -n 1 |
3807                            awk -F':' '{print $2}')
3808                 echo "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3809                 if [ $ost_last != $mds_last ]; then
3810                     error "$ostname.last_id=$ost_last ; MDS.last_id=$mds_last"
3811                 fi
3812         done
3813 }
3814 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3815
3816 test_54a() {
3817         [ ! -f "$SOCKETSERVER" ] && skip_env "no socketserver, skipping" && return
3818         [ ! -f "$SOCKETCLIENT" ] && skip_env "no socketclient, skipping" && return
3819         $SOCKETSERVER $DIR/socket
3820         $SOCKETCLIENT $DIR/socket || error
3821         $MUNLINK $DIR/socket
3822 }
3823 run_test 54a "unix domain socket test =========================="
3824
3825 test_54b() {
3826         f="$DIR/f54b"
3827         mknod $f c 1 3
3828         chmod 0666 $f
3829         dd if=/dev/zero of=$f bs=`page_size` count=1
3830 }
3831 run_test 54b "char device works in lustre ======================"
3832
3833 find_loop_dev() {
3834         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3835         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3836         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3837
3838         for i in `seq 3 7`; do
3839                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3840                 LOOPDEV=$LOOPBASE$i
3841                 LOOPNUM=$i
3842                 break
3843         done
3844 }
3845
3846 test_54c() {
3847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3848         tfile="$DIR/f54c"
3849         tdir="$DIR/d54c"
3850         loopdev="$DIR/loop54c"
3851
3852         find_loop_dev
3853         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3854         mknod $loopdev b 7 $LOOPNUM
3855         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3856         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3857         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3858         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3859         test_mkdir -p $tdir
3860         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3861         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3862         df $tdir
3863         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3864         $UMOUNT $tdir
3865         losetup -d $loopdev
3866         rm $loopdev
3867 }
3868 run_test 54c "block device works in lustre ====================="
3869
3870 test_54d() {
3871         f="$DIR/f54d"
3872         string="aaaaaa"
3873         mknod $f p
3874         [ "$string" = `echo $string > $f | cat $f` ] || error
3875 }
3876 run_test 54d "fifo device works in lustre ======================"
3877
3878 test_54e() {
3879         check_kernel_version 46 || return 0
3880         f="$DIR/f54e"
3881         string="aaaaaa"
3882         cp -aL /dev/console $f
3883         echo $string > $f || error
3884 }
3885 run_test 54e "console/tty device works in lustre ======================"
3886
3887 #The test_55 used to be iopen test and it was removed by bz#24037.
3888 #run_test 55 "check iopen_connect_dentry() ======================"
3889
3890 test_56a() {    # was test_56
3891         rm -rf $DIR/$tdir
3892         $SETSTRIPE -d $DIR
3893         test_mkdir $DIR/$tdir
3894         test_mkdir $DIR/$tdir/dir
3895         NUMFILES=3
3896         NUMFILESx2=$(($NUMFILES * 2))
3897         for i in `seq 1 $NUMFILES` ; do
3898                 touch $DIR/$tdir/file$i
3899                 touch $DIR/$tdir/dir/file$i
3900         done
3901
3902         # test lfs getstripe with --recursive
3903         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3904         [ $FILENUM -eq $NUMFILESx2 ] ||
3905                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3906         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3907         [ $FILENUM -eq $NUMFILES ] ||
3908                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3909         echo "$GETSTRIPE --recursive passed."
3910
3911         # test lfs getstripe with file instead of dir
3912         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3913         [ $FILENUM  -eq 1 ] || error \
3914                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3915         echo "$GETSTRIPE file1 passed."
3916
3917         #test lfs getstripe with --verbose
3918         [ `$GETSTRIPE --verbose $DIR/$tdir |
3919                         grep -c lmm_magic` -eq $NUMFILES ] ||
3920                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3921         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3922             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3923         echo "$GETSTRIPE --verbose passed."
3924
3925         #test lfs getstripe with --obd
3926         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3927                                         grep -q "unknown obduuid" ||
3928                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3929
3930         [  "$OSTCOUNT" -lt 2 ] &&
3931                 skip_env "skipping other $GETSTRIPE --obd test" && return
3932
3933         OSTIDX=1
3934         OBDUUID=$(ostuuid_from_index $OSTIDX)
3935         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
3936         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
3937         [ $FOUND -eq $FILENUM ] ||
3938                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
3939         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
3940                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
3941                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
3942                 error "$GETSTRIPE --obd: should not show file on other obd"
3943         echo "$GETSTRIPE --obd passed"
3944 }
3945 run_test 56a "check $GETSTRIPE"
3946
3947 NUMFILES=3
3948 NUMDIRS=3
3949 setup_56() {
3950         local LOCAL_NUMFILES="$1"
3951         local LOCAL_NUMDIRS="$2"
3952         local MKDIR_PARAMS="$3"
3953
3954         if [ ! -d "$TDIR" ] ; then
3955                 test_mkdir -p $TDIR
3956                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
3957                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3958                         touch $TDIR/file$i
3959                 done
3960                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3961                         test_mkdir $TDIR/dir$i
3962                         for j in `seq 1 $LOCAL_NUMFILES` ; do
3963                                 touch $TDIR/dir$i/file$j
3964                         done
3965                 done
3966         fi
3967 }
3968
3969 setup_56_special() {
3970         LOCAL_NUMFILES=$1
3971         LOCAL_NUMDIRS=$2
3972         setup_56 $1 $2
3973         if [ ! -e "$TDIR/loop1b" ] ; then
3974                 for i in `seq 1 $LOCAL_NUMFILES` ; do
3975                         mknod $TDIR/loop${i}b b 7 $i
3976                         mknod $TDIR/null${i}c c 1 3
3977                         ln -s $TDIR/file1 $TDIR/link${i}l
3978                 done
3979                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
3980                         mknod $TDIR/dir$i/loop${i}b b 7 $i
3981                         mknod $TDIR/dir$i/null${i}c c 1 3
3982                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
3983                 done
3984         fi
3985 }
3986
3987 test_56g() {
3988         $SETSTRIPE -d $DIR
3989
3990         TDIR=$DIR/${tdir}g
3991         setup_56 $NUMFILES $NUMDIRS
3992
3993         EXPECTED=$(($NUMDIRS + 2))
3994         # test lfs find with -name
3995         for i in $(seq 1 $NUMFILES) ; do
3996                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
3997                 [ $NUMS -eq $EXPECTED ] ||
3998                         error "lfs find -name \"*$i\" $TDIR wrong: "\
3999                               "found $NUMS, expected $EXPECTED"
4000         done
4001 }
4002 run_test 56g "check lfs find -name ============================="
4003
4004 test_56h() {
4005         $SETSTRIPE -d $DIR
4006
4007         TDIR=$DIR/${tdir}g
4008         setup_56 $NUMFILES $NUMDIRS
4009
4010         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4011         # test lfs find with ! -name
4012         for i in $(seq 1 $NUMFILES) ; do
4013                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4014                 [ $NUMS -eq $EXPECTED ] ||
4015                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4016                               "found $NUMS, expected $EXPECTED"
4017         done
4018 }
4019 run_test 56h "check lfs find ! -name ============================="
4020
4021 test_56i() {
4022        tdir=${tdir}i
4023        test_mkdir -p $DIR/$tdir
4024        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4025        CMD="$LFIND -ost $UUID $DIR/$tdir"
4026        OUT=$($CMD)
4027        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4028 }
4029 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4030
4031 test_56j() {
4032         TDIR=$DIR/${tdir}g
4033         setup_56_special $NUMFILES $NUMDIRS
4034
4035         EXPECTED=$((NUMDIRS + 1))
4036         CMD="$LFIND -type d $TDIR"
4037         NUMS=$($CMD | wc -l)
4038         [ $NUMS -eq $EXPECTED ] ||
4039                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4040 }
4041 run_test 56j "check lfs find -type d ============================="
4042
4043 test_56k() {
4044         TDIR=$DIR/${tdir}g
4045         setup_56_special $NUMFILES $NUMDIRS
4046
4047         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4048         CMD="$LFIND -type f $TDIR"
4049         NUMS=$($CMD | wc -l)
4050         [ $NUMS -eq $EXPECTED ] ||
4051                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4052 }
4053 run_test 56k "check lfs find -type f ============================="
4054
4055 test_56l() {
4056         TDIR=$DIR/${tdir}g
4057         setup_56_special $NUMFILES $NUMDIRS
4058
4059         EXPECTED=$((NUMDIRS + NUMFILES))
4060         CMD="$LFIND -type b $TDIR"
4061         NUMS=$($CMD | wc -l)
4062         [ $NUMS -eq $EXPECTED ] ||
4063                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4064 }
4065 run_test 56l "check lfs find -type b ============================="
4066
4067 test_56m() {
4068         TDIR=$DIR/${tdir}g
4069         setup_56_special $NUMFILES $NUMDIRS
4070
4071         EXPECTED=$((NUMDIRS + NUMFILES))
4072         CMD="$LFIND -type c $TDIR"
4073         NUMS=$($CMD | wc -l)
4074         [ $NUMS -eq $EXPECTED ] ||
4075                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4076 }
4077 run_test 56m "check lfs find -type c ============================="
4078
4079 test_56n() {
4080         TDIR=$DIR/${tdir}g
4081         setup_56_special $NUMFILES $NUMDIRS
4082
4083         EXPECTED=$((NUMDIRS + NUMFILES))
4084         CMD="$LFIND -type l $TDIR"
4085         NUMS=$($CMD | wc -l)
4086         [ $NUMS -eq $EXPECTED ] ||
4087                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4088 }
4089 run_test 56n "check lfs find -type l ============================="
4090
4091 test_56o() {
4092         TDIR=$DIR/${tdir}o
4093         setup_56 $NUMFILES $NUMDIRS
4094
4095         utime $TDIR/file1 > /dev/null || error "utime (1)"
4096         utime $TDIR/file2 > /dev/null || error "utime (2)"
4097         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4098         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4099         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4100         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4101
4102         EXPECTED=4
4103         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4104         [ $NUMS -eq $EXPECTED ] || \
4105                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4106
4107         EXPECTED=12
4108         CMD="$LFIND -mtime 0 $TDIR"
4109         NUMS=$($CMD | wc -l)
4110         [ $NUMS -eq $EXPECTED ] ||
4111                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4112 }
4113 run_test 56o "check lfs find -mtime for old files =========================="
4114
4115 test_56p() {
4116         [ $RUNAS_ID -eq $UID ] &&
4117                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4118
4119         TDIR=$DIR/${tdir}p
4120         setup_56 $NUMFILES $NUMDIRS
4121
4122         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4123         EXPECTED=$NUMFILES
4124         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4125         NUMS=$($CMD | wc -l)
4126         [ $NUMS -eq $EXPECTED ] || \
4127                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4128
4129         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4130         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4131         NUMS=$($CMD | wc -l)
4132         [ $NUMS -eq $EXPECTED ] || \
4133                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4134 }
4135 run_test 56p "check lfs find -uid and ! -uid ==============================="
4136
4137 test_56q() {
4138         [ $RUNAS_ID -eq $UID ] &&
4139                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4140
4141         TDIR=$DIR/${tdir}q
4142         setup_56 $NUMFILES $NUMDIRS
4143
4144         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4145
4146         EXPECTED=$NUMFILES
4147         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4148         NUMS=$($CMD | wc -l)
4149         [ $NUMS -eq $EXPECTED ] ||
4150                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4151
4152         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4153         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4154         NUMS=$($CMD | wc -l)
4155         [ $NUMS -eq $EXPECTED ] ||
4156                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4157 }
4158 run_test 56q "check lfs find -gid and ! -gid ==============================="
4159
4160 test_56r() {
4161         TDIR=$DIR/${tdir}r
4162         setup_56 $NUMFILES $NUMDIRS
4163
4164         EXPECTED=12
4165         CMD="$LFIND -size 0 -type f $TDIR"
4166         NUMS=$($CMD | wc -l)
4167         [ $NUMS -eq $EXPECTED ] ||
4168                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4169         EXPECTED=0
4170         CMD="$LFIND ! -size 0 -type f $TDIR"
4171         NUMS=$($CMD | wc -l)
4172         [ $NUMS -eq $EXPECTED ] ||
4173                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4174         echo "test" > $TDIR/$tfile
4175         echo "test2" > $TDIR/$tfile.2 && sync
4176         EXPECTED=1
4177         CMD="$LFIND -size 5 -type f $TDIR"
4178         NUMS=$($CMD | wc -l)
4179         [ $NUMS -eq $EXPECTED ] ||
4180                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4181         EXPECTED=1
4182         CMD="$LFIND -size +5 -type f $TDIR"
4183         NUMS=$($CMD | wc -l)
4184         [ $NUMS -eq $EXPECTED ] ||
4185                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4186         EXPECTED=2
4187         CMD="$LFIND -size +0 -type f $TDIR"
4188         NUMS=$($CMD | wc -l)
4189         [ $NUMS -eq $EXPECTED ] ||
4190                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4191         EXPECTED=2
4192         CMD="$LFIND ! -size -5 -type f $TDIR"
4193         NUMS=$($CMD | wc -l)
4194         [ $NUMS -eq $EXPECTED ] ||
4195                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4196         EXPECTED=12
4197         CMD="$LFIND -size -5 -type f $TDIR"
4198         NUMS=$($CMD | wc -l)
4199         [ $NUMS -eq $EXPECTED ] ||
4200                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4201 }
4202 run_test 56r "check lfs find -size works =========================="
4203
4204 test_56s() { # LU-611
4205         TDIR=$DIR/${tdir}s
4206         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4207
4208         if [ $OSTCOUNT -gt 1 ]; then
4209                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4210                 ONESTRIPE=4
4211                 EXTRA=4
4212         else
4213                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4214                 EXTRA=0
4215         fi
4216
4217         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4218         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4219         NUMS=$($CMD | wc -l)
4220         [ $NUMS -eq $EXPECTED ] ||
4221                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4222
4223         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4224         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4225         NUMS=$($CMD | wc -l)
4226         [ $NUMS -eq $EXPECTED ] ||
4227                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4228
4229         EXPECTED=$ONESTRIPE
4230         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4231         NUMS=$($CMD | wc -l)
4232         [ $NUMS -eq $EXPECTED ] ||
4233                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4234
4235         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4236         NUMS=$($CMD | wc -l)
4237         [ $NUMS -eq $EXPECTED ] ||
4238                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4239
4240         EXPECTED=0
4241         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4242         NUMS=$($CMD | wc -l)
4243         [ $NUMS -eq $EXPECTED ] ||
4244                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4245 }
4246 run_test 56s "check lfs find -stripe-count works"
4247
4248 test_56t() { # LU-611
4249         TDIR=$DIR/${tdir}t
4250         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4251
4252         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4253
4254         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4255         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4256         NUMS=$($CMD | wc -l)
4257         [ $NUMS -eq $EXPECTED ] ||
4258                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4259
4260         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4261         NUMS=$($CMD | wc -l)
4262         [ $NUMS -eq $EXPECTED ] ||
4263                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4264
4265         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4266         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4267         NUMS=$($CMD | wc -l)
4268         [ $NUMS -eq $EXPECTED ] ||
4269                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4270
4271         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4272         NUMS=$($CMD | wc -l)
4273         [ $NUMS -eq $EXPECTED ] ||
4274                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4275
4276         EXPECTED=4
4277         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4278         NUMS=$($CMD | wc -l)
4279         [ $NUMS -eq $EXPECTED ] ||
4280                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4281
4282         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4283         NUMS=$($CMD | wc -l)
4284         [ $NUMS -eq $EXPECTED ] ||
4285                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4286
4287         EXPECTED=0
4288         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4289         NUMS=$($CMD | wc -l)
4290         [ $NUMS -eq $EXPECTED ] ||
4291                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4292 }
4293 run_test 56t "check lfs find -stripe-size works"
4294
4295 test_56u() { # LU-611
4296         TDIR=$DIR/${tdir}u
4297         setup_56 $NUMFILES $NUMDIRS "-i 0"
4298
4299         if [ $OSTCOUNT -gt 1 ]; then
4300                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4301                 ONESTRIPE=4
4302         else
4303                 ONESTRIPE=0
4304         fi
4305
4306         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4307         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4308         NUMS=$($CMD | wc -l)
4309         [ $NUMS -eq $EXPECTED ] ||
4310                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4311
4312         EXPECTED=$ONESTRIPE
4313         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4314         NUMS=$($CMD | wc -l)
4315         [ $NUMS -eq $EXPECTED ] ||
4316                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4317
4318         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4319         NUMS=$($CMD | wc -l)
4320         [ $NUMS -eq $EXPECTED ] ||
4321                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4322
4323         EXPECTED=0
4324         # This should produce an error and not return any files
4325         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4326         NUMS=$($CMD 2>/dev/null | wc -l)
4327         [ $NUMS -eq $EXPECTED ] ||
4328                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4329
4330         if [ $OSTCOUNT -gt 1 ]; then
4331                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4332                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4333                 NUMS=$($CMD | wc -l)
4334                 [ $NUMS -eq $EXPECTED ] ||
4335                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4336         fi
4337 }
4338 run_test 56u "check lfs find -stripe-index works"
4339
4340 test_56v() {
4341     local MDT_IDX=0
4342
4343     TDIR=$DIR/${tdir}v
4344     rm -rf $TDIR
4345     setup_56 $NUMFILES $NUMDIRS
4346
4347     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4348     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4349
4350     for file in $($LFIND -mdt $UUID $TDIR); do
4351         file_mdt_idx=$($GETSTRIPE -M $file)
4352         [ $file_mdt_idx -eq $MDT_IDX ] ||
4353             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4354     done
4355 }
4356 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4357
4358 # Get and check the actual stripe count of one file.
4359 # Usage: check_stripe_count <file> <expected_stripe_count>
4360 check_stripe_count() {
4361     local file=$1
4362     local expected=$2
4363     local actual
4364
4365     [[ -z "$file" || -z "$expected" ]] &&
4366         error "check_stripe_count: invalid argument!"
4367
4368     local cmd="$GETSTRIPE -c $file"
4369     actual=$($cmd) || error "$cmd failed"
4370     actual=${actual%% *}
4371
4372     if [[ $actual -ne $expected ]]; then
4373         [[ $expected -eq -1 ]] ||
4374             error "$cmd wrong: found $actual, expected $expected"
4375         [[ $actual -eq $OSTCOUNT ]] ||
4376             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4377     fi
4378 }
4379
4380 test_56w() {
4381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4382         TDIR=$DIR/${tdir}w
4383
4384     rm -rf $TDIR || error "remove $TDIR failed"
4385     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4386
4387     local stripe_size
4388     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4389         error "$GETSTRIPE -S -d $TDIR failed"
4390     stripe_size=${stripe_size%% *}
4391
4392     local file_size=$((stripe_size * OSTCOUNT))
4393     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4394     local required_space=$((file_num * file_size))
4395     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4396     [[ $free_space -le $((required_space / 1024)) ]] &&
4397         skip_env "need at least $required_space bytes free space," \
4398                  "have $free_space kbytes" && return
4399
4400     local dd_bs=65536
4401     local dd_count=$((file_size / dd_bs))
4402
4403     # write data into the files
4404     local i
4405     local j
4406     local file
4407     for i in $(seq 1 $NUMFILES); do
4408         file=$TDIR/file$i
4409         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4410             error "write data into $file failed"
4411     done
4412     for i in $(seq 1 $NUMDIRS); do
4413         for j in $(seq 1 $NUMFILES); do
4414             file=$TDIR/dir$i/file$j
4415             yes | dd bs=$dd_bs count=$dd_count of=$file \
4416                 >/dev/null 2>&1 ||
4417                 error "write data into $file failed"
4418         done
4419     done
4420
4421     local expected=-1
4422     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4423
4424     # lfs_migrate file
4425     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4426     echo "$cmd"
4427     eval $cmd || error "$cmd failed"
4428
4429     check_stripe_count $TDIR/file1 $expected
4430
4431     # lfs_migrate dir
4432     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4433     echo "$cmd"
4434     eval $cmd || error "$cmd failed"
4435
4436     for j in $(seq 1 $NUMFILES); do
4437         check_stripe_count $TDIR/dir1/file$j $expected
4438     done
4439
4440     # lfs_migrate works with lfs find
4441     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4442          $LFS_MIGRATE -y -c $expected"
4443     echo "$cmd"
4444     eval $cmd || error "$cmd failed"
4445
4446     for i in $(seq 2 $NUMFILES); do
4447         check_stripe_count $TDIR/file$i $expected
4448     done
4449     for i in $(seq 2 $NUMDIRS); do
4450         for j in $(seq 1 $NUMFILES); do
4451             check_stripe_count $TDIR/dir$i/file$j $expected
4452         done
4453     done
4454 }
4455 run_test 56w "check lfs_migrate -c stripe_count works"
4456
4457 test_56x() {
4458         check_swap_layouts_support && return 0
4459         [ "$OSTCOUNT" -lt "2" ] &&
4460                 skip_env "need 2 OST, skipping test" && return
4461
4462         local dir0=$DIR/$tdir/$testnum
4463         mkdir -p $dir0 || error "creating dir $dir0"
4464
4465         local ref1=/etc/passwd
4466         local file1=$dir0/file1
4467
4468         $SETSTRIPE -c 2 $file1
4469         cp $ref1 $file1
4470         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4471         stripe=$($GETSTRIPE -c $file1)
4472         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4473         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4474
4475         # clean up
4476         rm -f $file1
4477 }
4478 run_test 56x "lfs migration support"
4479
4480 test_57a() {
4481         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4482         # note test will not do anything if MDS is not local
4483         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4484                 skip "Only applicable to ldiskfs-based MDTs"
4485                 return
4486         fi
4487
4488         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4489         local MNTDEV="osd*.*MDT*.mntdev"
4490         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4491         [ -z "$DEV" ] && error "can't access $MNTDEV"
4492         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4493                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4494                         error "can't access $DEV"
4495                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4496                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4497                 rm $TMP/t57a.dump
4498         done
4499 }
4500 run_test 57a "verify MDS filesystem created with large inodes =="
4501
4502 test_57b() {
4503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4504         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4505                 skip "Only applicable to ldiskfs-based MDTs"
4506                 return
4507         fi
4508
4509         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4510         local dir=$DIR/d57b
4511
4512         local FILECOUNT=100
4513         local FILE1=$dir/f1
4514         local FILEN=$dir/f$FILECOUNT
4515
4516         rm -rf $dir || error "removing $dir"
4517         test_mkdir -p $dir || error "creating $dir"
4518         local num=$(get_mds_dir $dir)
4519         local mymds=mds$num
4520
4521         echo "mcreating $FILECOUNT files"
4522         createmany -m $dir/f 1 $FILECOUNT || \
4523                 error "creating files in $dir"
4524
4525         # verify that files do not have EAs yet
4526         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4527         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4528
4529         sync
4530         sleep 1
4531         df $dir  #make sure we get new statfs data
4532         local MDSFREE=$(do_facet $mymds \
4533                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4534         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4535         echo "opening files to create objects/EAs"
4536         local FILE
4537         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4538                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4539         done
4540
4541         # verify that files have EAs now
4542         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4543         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4544
4545         sleep 1  #make sure we get new statfs data
4546         df $dir
4547         local MDSFREE2=$(do_facet $mymds \
4548                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4549         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4550         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4551                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4552                         error "MDC before $MDCFREE != after $MDCFREE2"
4553                 else
4554                         echo "MDC before $MDCFREE != after $MDCFREE2"
4555                         echo "unable to confirm if MDS has large inodes"
4556                 fi
4557         fi
4558         rm -rf $dir
4559 }
4560 run_test 57b "default LOV EAs are stored inside large inodes ==="
4561
4562 test_58() {
4563         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4564         [ -z "$(which wiretest 2>/dev/null)" ] &&
4565                         skip_env "could not find wiretest" && return
4566         wiretest
4567 }
4568 run_test 58 "verify cross-platform wire constants =============="
4569
4570 test_59() {
4571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4572         echo "touch 130 files"
4573         createmany -o $DIR/f59- 130
4574         echo "rm 130 files"
4575         unlinkmany $DIR/f59- 130
4576         sync
4577         # wait for commitment of removal
4578         wait_delete_completed
4579 }
4580 run_test 59 "verify cancellation of llog records async ========="
4581
4582 TEST60_HEAD="test_60 run $RANDOM"
4583 test_60a() {
4584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4585         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4586         [ ! -f run-llog.sh ] && skip_env "missing subtest run-llog.sh" && return
4587         log "$TEST60_HEAD - from kernel mode"
4588         do_facet mgs sh run-llog.sh
4589 }
4590 run_test 60a "llog sanity tests run from kernel module =========="
4591
4592 test_60b() { # bug 6411
4593         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4594         dmesg > $DIR/$tfile
4595         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4596                                  /llog.test/ {
4597                                          if (marker)
4598                                                  from_marker++
4599                                          from_begin++
4600                                  }
4601                                  END {
4602                                          if (marker)
4603                                                  print from_marker
4604                                          else
4605                                                  print from_begin
4606                                  }"`
4607         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4608 }
4609 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4610
4611 test_60c() {
4612         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4613         echo "create 5000 files"
4614         createmany -o $DIR/f60c- 5000
4615 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4616         lctl set_param fail_loc=0x80000137
4617         unlinkmany $DIR/f60c- 5000
4618         lctl set_param fail_loc=0
4619 }
4620 run_test 60c "unlink file when mds full"
4621
4622 test_60d() {
4623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4624         SAVEPRINTK=$(lctl get_param -n printk)
4625
4626         # verify "lctl mark" is even working"
4627         MESSAGE="test message ID $RANDOM $$"
4628         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4629         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4630
4631         lctl set_param printk=0 || error "set lnet.printk failed"
4632         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4633         MESSAGE="new test message ID $RANDOM $$"
4634         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4635         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4636         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4637
4638         lctl set_param -n printk="$SAVEPRINTK"
4639 }
4640 run_test 60d "test printk console message masking"
4641
4642 test_61() {
4643         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4644         f="$DIR/f61"
4645         dd if=/dev/zero of=$f bs=`page_size` count=1
4646         cancel_lru_locks osc
4647         $MULTIOP $f OSMWUc || error
4648         sync
4649 }
4650 run_test 61 "mmap() writes don't make sync hang ================"
4651
4652 # bug 2330 - insufficient obd_match error checking causes LBUG
4653 test_62() {
4654         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4655         f="$DIR/f62"
4656         echo foo > $f
4657         cancel_lru_locks osc
4658         lctl set_param fail_loc=0x405
4659         cat $f && error "cat succeeded, expect -EIO"
4660         lctl set_param fail_loc=0
4661 }
4662 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4663 # match every page all of the time.
4664 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4665
4666 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4667 test_63a() {    # was test_63
4668         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4669         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4670         lctl set_param -n osc.*.max_dirty_mb 0
4671         for i in `seq 10` ; do
4672                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4673                 sleep 5
4674                 kill $!
4675                 sleep 1
4676         done
4677
4678         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4679         rm -f $DIR/f63 || true
4680 }
4681 run_test 63a "Verify oig_wait interruption does not crash ======="
4682
4683 # bug 2248 - async write errors didn't return to application on sync
4684 # bug 3677 - async write errors left page locked
4685 test_63b() {
4686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4687         debugsave
4688         lctl set_param debug=-1
4689
4690         # ensure we have a grant to do async writes
4691         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4692         rm $DIR/$tfile
4693
4694         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4695         lctl set_param fail_loc=0x80000406
4696         $MULTIOP $DIR/$tfile Owy && \
4697                 error "sync didn't return ENOMEM"
4698         sync; sleep 2; sync     # do a real sync this time to flush page
4699         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4700                 error "locked page left in cache after async error" || true
4701         debugrestore
4702 }
4703 run_test 63b "async write errors should be returned to fsync ==="
4704
4705 test_64a () {
4706         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4707         df $DIR
4708         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4709 }
4710 run_test 64a "verify filter grant calculations (in kernel) ====="
4711
4712 test_64b () {
4713         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4714         [ ! -f oos.sh ] && skip_env "missing subtest oos.sh" && return
4715         sh oos.sh $MOUNT
4716 }
4717 run_test 64b "check out-of-space detection on client ==========="
4718
4719 test_64c() {
4720         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4721 }
4722 run_test 64c "verify grant shrink ========================------"
4723
4724 # bug 1414 - set/get directories' stripe info
4725 test_65a() {
4726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4727         test_mkdir -p $DIR/$tdir
4728         touch $DIR/$tdir/f1
4729         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4730 }
4731 run_test 65a "directory with no stripe info ===================="
4732
4733 test_65b() {
4734         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4735         test_mkdir -p $DIR/$tdir
4736         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4737                                                 error "setstripe"
4738         touch $DIR/$tdir/f2
4739         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4740 }
4741 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4742
4743 test_65c() {
4744         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4745         if [ $OSTCOUNT -gt 1 ]; then
4746                 test_mkdir -p $DIR/$tdir
4747                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4748                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4749                 touch $DIR/$tdir/f3
4750                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4751         fi
4752 }
4753 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4754
4755 test_65d() {
4756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4757         test_mkdir -p $DIR/$tdir
4758         if [ $STRIPECOUNT -le 0 ]; then
4759                 sc=1
4760         elif [ $STRIPECOUNT -gt 2000 ]; then
4761 #LOV_MAX_STRIPE_COUNT is 2000
4762                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4763         else
4764                 sc=$(($STRIPECOUNT - 1))
4765         fi
4766         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4767         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4768         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4769                                                 error "lverify failed"
4770 }
4771 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4772
4773 test_65e() {
4774         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4775         test_mkdir -p $DIR/$tdir
4776
4777         $SETSTRIPE $DIR/$tdir || error "setstripe"
4778         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4779                                         error "no stripe info failed"
4780         touch $DIR/$tdir/f6
4781         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4782 }
4783 run_test 65e "directory setstripe defaults ======================="
4784
4785 test_65f() {
4786         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4787         test_mkdir -p $DIR/${tdir}f
4788         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4789 }
4790 run_test 65f "dir setstripe permission (should return error) ==="
4791
4792 test_65g() {
4793         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4794         test_mkdir -p $DIR/$tdir
4795         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4796                                                         error "setstripe"
4797         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4798         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4799                 error "delete default stripe failed"
4800 }
4801 run_test 65g "directory setstripe -d ==========================="
4802
4803 test_65h() {
4804         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4805         test_mkdir -p $DIR/$tdir
4806         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4807                                                         error "setstripe"
4808         test_mkdir -p $DIR/$tdir/dd1
4809         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4810                 error "stripe info inherit failed"
4811 }
4812 run_test 65h "directory stripe info inherit ===================="
4813
4814 test_65i() { # bug6367
4815         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4816         $SETSTRIPE -S 65536 -c -1 $MOUNT
4817 }
4818 run_test 65i "set non-default striping on root directory (bug 6367)="
4819
4820 test_65ia() { # bug12836
4821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4822         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4823 }
4824 run_test 65ia "getstripe on -1 default directory striping"
4825
4826 test_65ib() { # bug12836
4827         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4828         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4829 }
4830 run_test 65ib "getstripe -v on -1 default directory striping"
4831
4832 test_65ic() { # bug12836
4833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4834         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4835 }
4836 run_test 65ic "new find on -1 default directory striping"
4837
4838 test_65j() { # bug6367
4839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4840         sync; sleep 1
4841         # if we aren't already remounting for each test, do so for this test
4842         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4843                 cleanup || error "failed to unmount"
4844                 setup
4845         fi
4846         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4847 }
4848 run_test 65j "set default striping on root directory (bug 6367)="
4849
4850 test_65k() { # bug11679
4851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4852         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4853         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4854
4855     echo "Check OST status: "
4856     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4857               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4858
4859     for OSC in $MDS_OSCS; do
4860         echo $OSC "is activate"
4861         do_facet $SINGLEMDS lctl --device %$OSC activate
4862     done
4863
4864     mkdir -p $DIR/$tdir
4865     for INACTIVE_OSC in $MDS_OSCS; do
4866         echo "Deactivate: " $INACTIVE_OSC
4867         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4868         for STRIPE_OSC in $MDS_OSCS; do
4869             OST=`osc_to_ost $STRIPE_OSC`
4870             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4871                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4872
4873             [ -f $DIR/$tdir/$IDX ] && continue
4874             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4875             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4876             RC=$?
4877             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4878         done
4879         rm -f $DIR/$tdir/*
4880         echo $INACTIVE_OSC "is Activate."
4881         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4882     done
4883 }
4884 run_test 65k "validate manual striping works properly with deactivated OSCs"
4885
4886 test_65l() { # bug 12836
4887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4888         test_mkdir -p $DIR/$tdir/test_dir
4889         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4890         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4891 }
4892 run_test 65l "lfs find on -1 stripe dir ========================"
4893
4894 # bug 2543 - update blocks count on client
4895 test_66() {
4896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4897         COUNT=${COUNT:-8}
4898         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4899         sync; sync_all_data; sync; sync_all_data
4900         cancel_lru_locks osc
4901         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4902         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4903 }
4904 run_test 66 "update inode blocks count on client ==============="
4905
4906 LLOOP=
4907 LLITELOOPLOAD=
4908 cleanup_68() {
4909         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4910         trap 0
4911         if [ ! -z "$LLOOP" ]; then
4912                 if swapon -s | grep -q $LLOOP; then
4913                         swapoff $LLOOP || error "swapoff failed"
4914                 fi
4915
4916                 $LCTL blockdev_detach $LLOOP || error "detach failed"
4917                 rm -f $LLOOP
4918                 unset LLOOP
4919         fi
4920         if [ ! -z "$LLITELOOPLOAD" ]; then
4921                 rmmod llite_lloop
4922                 unset LLITELOOPLOAD
4923         fi
4924         rm -f $DIR/f68*
4925 }
4926
4927 meminfo() {
4928         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
4929 }
4930
4931 swap_used() {
4932         swapon -s | awk '($1 == "'$1'") { print $4 }'
4933 }
4934
4935 # test case for lloop driver, basic function
4936 test_68a() {
4937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4938         [ "$UID" != 0 ] && skip_env "must run as root" && return
4939         llite_lloop_enabled || \
4940                 { skip_env "llite_lloop module disabled" && return; }
4941
4942         trap cleanup_68 EXIT
4943
4944         if ! module_loaded llite_lloop; then
4945                 if load_module llite/llite_lloop; then
4946                         LLITELOOPLOAD=yes
4947                 else
4948                         skip_env "can't find module llite_lloop"
4949                         return
4950                 fi
4951         fi
4952
4953         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4954         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
4955         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
4956
4957         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
4958         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
4959
4960         cleanup_68
4961 }
4962 run_test 68a "lloop driver - basic test ========================"
4963
4964 # excercise swapping to lustre by adding a high priority swapfile entry
4965 # and then consuming memory until it is used.
4966 test_68b() {  # was test_68
4967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4968         [ "$UID" != 0 ] && skip_env "must run as root" && return
4969         lctl get_param -n devices | grep -q obdfilter && \
4970                 skip "local OST" && return
4971
4972         grep -q llite_lloop /proc/modules
4973         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
4974
4975         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
4976                 skip "can't reliably test swap with TCP" && return
4977
4978         MEMTOTAL=`meminfo MemTotal`
4979         NR_BLOCKS=$((MEMTOTAL>>8))
4980         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
4981
4982         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
4983         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
4984         mkswap $DIR/f68b
4985
4986         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
4987
4988         trap cleanup_68 EXIT
4989
4990         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
4991
4992         echo "before: `swapon -s | grep $LLOOP`"
4993         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
4994         echo "after: `swapon -s | grep $LLOOP`"
4995         SWAPUSED=`swap_used $LLOOP`
4996
4997         cleanup_68
4998
4999         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5000 }
5001 run_test 68b "support swapping to Lustre ========================"
5002
5003 # bug5265, obdfilter oa2dentry return -ENOENT
5004 # #define OBD_FAIL_OST_ENOENT 0x217
5005 test_69() {
5006         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5007         remote_ost_nodsh && skip "remote OST with nodsh" && return
5008
5009         f="$DIR/$tfile"
5010         $SETSTRIPE -c 1 -i 0 $f
5011
5012         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5013
5014         do_facet ost1 lctl set_param fail_loc=0x217
5015         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5016         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5017
5018         do_facet ost1 lctl set_param fail_loc=0
5019         $DIRECTIO write $f 0 2 || error "write error"
5020
5021         cancel_lru_locks osc
5022         $DIRECTIO read $f 0 1 || error "read error"
5023
5024         do_facet ost1 lctl set_param fail_loc=0x217
5025         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5026
5027         do_facet ost1 lctl set_param fail_loc=0
5028         rm -f $f
5029 }
5030 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5031
5032 test_71() {
5033     test_mkdir -p $DIR/$tdir
5034     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5035 }
5036 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5037
5038 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5039         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5040         check_kernel_version 43 || return 0
5041         [ "$RUNAS_ID" = "$UID" ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5042
5043         # Check that testing environment is properly set up. Skip if not
5044         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5045                 skip_env "User $RUNAS_ID does not exist - skipping"
5046                 return 0
5047         }
5048         # We had better clear the $DIR to get enough space for dd
5049         rm -rf $DIR/*
5050         touch $DIR/f72
5051         chmod 777 $DIR/f72
5052         chmod ug+s $DIR/f72
5053         $RUNAS dd if=/dev/zero of=$DIR/f72 bs=512 count=1 || error
5054         # See if we are still setuid/sgid
5055         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on write"
5056         # Now test that MDS is updated too
5057         cancel_lru_locks mdc
5058         test -u $DIR/f72 -o -g $DIR/f72 && error "S/gid is not dropped on MDS"
5059         rm -f $DIR/f72
5060 }
5061 run_test 72a "Test that remove suid works properly (bug5695) ===="
5062
5063 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5064         local perm
5065
5066         [ "$RUNAS_ID" = "$UID" ] && \
5067                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5068         [ "$RUNAS_ID" -eq 0 ] && \
5069                 skip_env "RUNAS_ID = 0 -- skipping" && return
5070
5071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5072         # Check that testing environment is properly set up. Skip if not
5073         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5074                 skip_env "User $RUNAS_ID does not exist - skipping"
5075                 return 0
5076         }
5077         touch $DIR/${tfile}-f{g,u}
5078         test_mkdir $DIR/${tfile}-dg
5079         test_mkdir $DIR/${tfile}-du
5080         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5081         chmod g+s $DIR/${tfile}-{f,d}g
5082         chmod u+s $DIR/${tfile}-{f,d}u
5083         for perm in 777 2777 4777; do
5084                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5085                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5086                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5087                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5088         done
5089         true
5090 }
5091 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5092
5093 # bug 3462 - multiple simultaneous MDC requests
5094 test_73() {
5095         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5096         test_mkdir $DIR/d73-1
5097         test_mkdir $DIR/d73-2
5098         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5099         pid1=$!
5100
5101         lctl set_param fail_loc=0x80000129
5102         $MULTIOP $DIR/d73-1/f73-2 Oc &
5103         sleep 1
5104         lctl set_param fail_loc=0
5105
5106         $MULTIOP $DIR/d73-2/f73-3 Oc &
5107         pid3=$!
5108
5109         kill -USR1 $pid1
5110         wait $pid1 || return 1
5111
5112         sleep 25
5113
5114         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5115         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5116         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5117
5118         rm -rf $DIR/d73-*
5119 }
5120 run_test 73 "multiple MDC requests (should not deadlock)"
5121
5122 test_74a() { # bug 6149, 6184
5123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5124         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5125         #
5126         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5127         # will spin in a tight reconnection loop
5128         touch $DIR/f74a
5129         lctl set_param fail_loc=0x8000030e
5130         # get any lock that won't be difficult - lookup works.
5131         ls $DIR/f74a
5132         lctl set_param fail_loc=0
5133         true
5134         rm -f $DIR/f74a
5135 }
5136 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5137
5138 test_74b() { # bug 13310
5139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5140         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5141         #
5142         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5143         # will spin in a tight reconnection loop
5144         lctl set_param fail_loc=0x8000030e
5145         # get a "difficult" lock
5146         touch $DIR/f74b
5147         lctl set_param fail_loc=0
5148         true
5149         rm -f $DIR/f74b
5150 }
5151 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5152
5153 test_74c() {
5154         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5155 #define OBD_FAIL_LDLM_NEW_LOCK
5156         lctl set_param fail_loc=0x80000319
5157         touch $DIR/$tfile && error "Touch successful"
5158         true
5159 }
5160 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5161
5162 num_inodes() {
5163         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5164 }
5165
5166 get_inode_slab_tunables() {
5167         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5168 }
5169
5170 set_inode_slab_tunables() {
5171         echo "lustre_inode_cache $1" > /proc/slabinfo
5172 }
5173
5174 test_76() { # Now for bug 20433, added originally in bug 1443
5175         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5176         local SLAB_SETTINGS=`get_inode_slab_tunables`
5177         local CPUS=`getconf _NPROCESSORS_ONLN`
5178         # we cannot set limit below 1 which means 1 inode in each
5179         # per-cpu cache is still allowed
5180         set_inode_slab_tunables "1 1 0"
5181         cancel_lru_locks osc
5182         BEFORE_INODES=`num_inodes`
5183         echo "before inodes: $BEFORE_INODES"
5184         local COUNT=1000
5185         [ "$SLOW" = "no" ] && COUNT=100
5186         for i in `seq $COUNT`; do
5187                 touch $DIR/$tfile
5188                 rm -f $DIR/$tfile
5189         done
5190         cancel_lru_locks osc
5191         AFTER_INODES=`num_inodes`
5192         echo "after inodes: $AFTER_INODES"
5193         local wait=0
5194         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5195                 sleep 2
5196                 AFTER_INODES=`num_inodes`
5197                 wait=$((wait+2))
5198                 echo "wait $wait seconds inodes: $AFTER_INODES"
5199                 if [ $wait -gt 30 ]; then
5200                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5201                 fi
5202         done
5203         set_inode_slab_tunables "$SLAB_SETTINGS"
5204 }
5205 run_test 76 "confirm clients recycle inodes properly ===="
5206
5207
5208 export ORIG_CSUM=""
5209 set_checksums()
5210 {
5211         # Note: in sptlrpc modes which enable its own bulk checksum, the
5212         # original crc32_le bulk checksum will be automatically disabled,
5213         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5214         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5215         # In this case set_checksums() will not be no-op, because sptlrpc
5216         # bulk checksum will be enabled all through the test.
5217
5218         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5219         lctl set_param -n osc.*.checksums $1
5220         return 0
5221 }
5222
5223 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5224                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5225 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5226 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5227 set_checksum_type()
5228 {
5229         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5230         log "set checksum type to $1"
5231         return 0
5232 }
5233 F77_TMP=$TMP/f77-temp
5234 F77SZ=8
5235 setup_f77() {
5236         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5237                 error "error writing to $F77_TMP"
5238 }
5239
5240 test_77a() { # bug 10889
5241         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5242         $GSS && skip "could not run with gss" && return
5243         [ ! -f $F77_TMP ] && setup_f77
5244         set_checksums 1
5245         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5246         set_checksums 0
5247         rm -f $DIR/$tfile
5248 }
5249 run_test 77a "normal checksum read/write operation ============="
5250
5251 test_77b() { # bug 10889
5252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5253         $GSS && skip "could not run with gss" && return
5254         [ ! -f $F77_TMP ] && setup_f77
5255         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5256         lctl set_param fail_loc=0x80000409
5257         set_checksums 1
5258         dd if=$F77_TMP of=$DIR/f77b bs=1M count=$F77SZ conv=sync || \
5259                 error "dd error: $?"
5260         lctl set_param fail_loc=0
5261         set_checksums 0
5262 }
5263 run_test 77b "checksum error on client write ===================="
5264
5265 test_77c() { # bug 10889
5266         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5267         $GSS && skip "could not run with gss" && return
5268         [ ! -f $DIR/f77b ] && skip "requires 77b - skipping" && return
5269         set_checksums 1
5270         for algo in $CKSUM_TYPES; do
5271                 cancel_lru_locks osc
5272                 set_checksum_type $algo
5273                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5274                 lctl set_param fail_loc=0x80000408
5275                 cmp $F77_TMP $DIR/f77b || error "file compare failed"
5276                 lctl set_param fail_loc=0
5277         done
5278         set_checksums 0
5279         set_checksum_type $ORIG_CSUM_TYPE
5280         rm -f $DIR/f77b
5281 }
5282 run_test 77c "checksum error on client read ==================="
5283
5284 test_77d() { # bug 10889
5285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5286         $GSS && skip "could not run with gss" && return
5287         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5288         lctl set_param fail_loc=0x80000409
5289         set_checksums 1
5290         directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5291                 error "direct write: rc=$?"
5292         lctl set_param fail_loc=0
5293         set_checksums 0
5294 }
5295 run_test 77d "checksum error on OST direct write ==============="
5296
5297 test_77e() { # bug 10889
5298         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5299         $GSS && skip "could not run with gss" && return
5300         [ ! -f $DIR/f77 ] && skip "requires 77d - skipping" && return
5301         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5302         lctl set_param fail_loc=0x80000408
5303         set_checksums 1
5304         cancel_lru_locks osc
5305         directio read $DIR/f77 0 $F77SZ $((1024 * 1024)) || \
5306                 error "direct read: rc=$?"
5307         lctl set_param fail_loc=0
5308         set_checksums 0
5309 }
5310 run_test 77e "checksum error on OST direct read ================"
5311
5312 test_77f() { # bug 10889
5313         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5314         $GSS && skip "could not run with gss" && return
5315         set_checksums 1
5316         for algo in $CKSUM_TYPES; do
5317                 cancel_lru_locks osc
5318                 set_checksum_type $algo
5319                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5320                 lctl set_param fail_loc=0x409
5321                 directio write $DIR/f77 0 $F77SZ $((1024 * 1024)) && \
5322                         error "direct write succeeded"
5323                 lctl set_param fail_loc=0
5324         done
5325         set_checksum_type $ORIG_CSUM_TYPE
5326         set_checksums 0
5327 }
5328 run_test 77f "repeat checksum error on write (expect error) ===="
5329
5330 test_77g() { # bug 10889
5331         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5332         $GSS && skip "could not run with gss" && return
5333         remote_ost_nodsh && skip "remote OST with nodsh" && return
5334
5335         [ ! -f $F77_TMP ] && setup_f77
5336
5337         $SETSTRIPE -c 1 -i 0 $DIR/f77g
5338         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5339         do_facet ost1 lctl set_param fail_loc=0x8000021a
5340         set_checksums 1
5341         dd if=$F77_TMP of=$DIR/f77g bs=1M count=$F77SZ || \
5342                 error "write error: rc=$?"
5343         do_facet ost1 lctl set_param fail_loc=0
5344         set_checksums 0
5345 }
5346 run_test 77g "checksum error on OST write ======================"
5347
5348 test_77h() { # bug 10889
5349         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5350         $GSS && skip "could not run with gss" && return
5351         remote_ost_nodsh && skip "remote OST with nodsh" && return
5352
5353         [ ! -f $DIR/f77g ] && skip "requires 77g - skipping" && return
5354         cancel_lru_locks osc
5355         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5356         do_facet ost1 lctl set_param fail_loc=0x8000021b
5357         set_checksums 1
5358         cmp $F77_TMP $DIR/f77g || error "file compare failed"
5359         do_facet ost1 lctl set_param fail_loc=0
5360         set_checksums 0
5361 }
5362 run_test 77h "checksum error on OST read ======================="
5363
5364 test_77i() { # bug 13805
5365         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5366         $GSS && skip "could not run with gss" && return
5367         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5368         lctl set_param fail_loc=0x40b
5369         remount_client $MOUNT
5370         lctl set_param fail_loc=0
5371         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5372                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5373                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5374                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5375         done
5376         remount_client $MOUNT
5377 }
5378 run_test 77i "client not supporting OSD_CONNECT_CKSUM =========="
5379
5380 test_77j() { # bug 13805
5381         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5382         $GSS && skip "could not run with gss" && return
5383         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5384         lctl set_param fail_loc=0x40c
5385         remount_client $MOUNT
5386         lctl set_param fail_loc=0
5387         sleep 2 # wait async osc connect to finish
5388         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5389                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5390                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5391                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5392         done
5393         remount_client $MOUNT
5394 }
5395 run_test 77j "client only supporting ADLER32 ===================="
5396
5397 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5398 rm -f $F77_TMP
5399 unset F77_TMP
5400
5401 test_78() { # bug 10901
5402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5403         remote_ost || { skip_env "local OST" && return; }
5404
5405         NSEQ=5
5406         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5407         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5408         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5409         echo "MemTotal: $MEMTOTAL"
5410 # reserve 256MB of memory for the kernel and other running processes,
5411 # and then take 1/2 of the remaining memory for the read/write buffers.
5412     if [ $MEMTOTAL -gt 512 ] ;then
5413         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5414     else
5415         # for those poor memory-starved high-end clusters...
5416         MEMTOTAL=$((MEMTOTAL / 2))
5417     fi
5418         echo "Mem to use for directio: $MEMTOTAL"
5419         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5420         [ $F78SIZE -gt 512 ] && F78SIZE=512
5421         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5422         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5423         echo "Smallest OST: $SMALLESTOST"
5424         [ $SMALLESTOST -lt 10240 ] && \
5425                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5426
5427         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5428                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5429
5430         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5431         echo "File size: $F78SIZE"
5432         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5433         for i in `seq 1 $NSEQ`
5434         do
5435                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5436                 echo directIO rdwr round $i of $NSEQ
5437                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5438         done
5439
5440         rm -f $DIR/$tfile
5441 }
5442 run_test 78 "handle large O_DIRECT writes correctly ============"
5443
5444 test_79() { # bug 12743
5445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5446         wait_delete_completed
5447
5448         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5449         BKFREE=$(calc_osc_kbytes kbytesfree)
5450         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5451
5452         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5453         DFTOTAL=`echo $STRING | cut -d, -f1`
5454         DFUSED=`echo $STRING  | cut -d, -f2`
5455         DFAVAIL=`echo $STRING | cut -d, -f3`
5456         DFFREE=$(($DFTOTAL - $DFUSED))
5457
5458         ALLOWANCE=$((64 * $OSTCOUNT))
5459
5460         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5461            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5462                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5463         fi
5464         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5465            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5466                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5467         fi
5468         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5469            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5470                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5471         fi
5472 }
5473 run_test 79 "df report consistency check ======================="
5474
5475 test_80() { # bug 10718
5476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5477         # relax strong synchronous semantics for slow backends like ZFS
5478         local soc="obdfilter.*.sync_on_lock_cancel"
5479         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5480         local hosts=
5481         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5482                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5483                           facet_active_host $host; done | sort -u)
5484                 do_nodes $hosts lctl set_param $soc=never
5485         fi
5486
5487         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5488         sync; sleep 1; sync
5489         local BEFORE=`date +%s`
5490         cancel_lru_locks osc
5491         local AFTER=`date +%s`
5492         local DIFF=$((AFTER-BEFORE))
5493         if [ $DIFF -gt 1 ] ; then
5494                 error "elapsed for 1M@1T = $DIFF"
5495         fi
5496
5497         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5498
5499         rm -f $DIR/$tfile
5500 }
5501 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5502
5503 test_81a() { # LU-456
5504         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5505         remote_ost_nodsh && skip "remote OST with nodsh" && return
5506         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5507         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5508         do_facet ost1 lctl set_param fail_loc=0x80000228
5509
5510         # write should trigger a retry and success
5511         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5512         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5513         RC=$?
5514         if [ $RC -ne 0 ] ; then
5515                 error "write should success, but failed for $RC"
5516         fi
5517 }
5518 run_test 81a "OST should retry write when get -ENOSPC ==============="
5519
5520 test_81b() { # LU-456
5521         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5522         remote_ost_nodsh && skip "remote OST with nodsh" && return
5523         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5524         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5525         do_facet ost1 lctl set_param fail_loc=0x228
5526
5527         # write should retry several times and return -ENOSPC finally
5528         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5529         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5530         RC=$?
5531         ENOSPC=28
5532         if [ $RC -ne $ENOSPC ] ; then
5533                 error "dd should fail for -ENOSPC, but succeed."
5534         fi
5535 }
5536 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5537
5538 test_82() { # LU-1031
5539         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5540         local gid1=14091995
5541         local gid2=16022000
5542
5543         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5544         local MULTIPID1=$!
5545         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5546         local MULTIPID2=$!
5547         kill -USR1 $MULTIPID2
5548         sleep 2
5549         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5550                 error "First grouplock does not block second one"
5551         else
5552                 echo "Second grouplock blocks first one"
5553         fi
5554         kill -USR1 $MULTIPID1
5555         wait $MULTIPID1
5556         wait $MULTIPID2
5557 }
5558 run_test 82 "Basic grouplock test ==============================="
5559
5560 test_99a() {
5561         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && \
5562             return
5563         test_mkdir -p $DIR/d99cvsroot
5564         chown $RUNAS_ID $DIR/d99cvsroot
5565         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5566         cd $TMP
5567
5568         $RUNAS cvs -d $DIR/d99cvsroot init || error
5569         cd $oldPWD
5570 }
5571 run_test 99a "cvs init ========================================="
5572
5573 test_99b() {
5574         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5575         [ ! -d $DIR/d99cvsroot ] && test_99a
5576         cd /etc/init.d
5577         # some versions of cvs import exit(1) when asked to import links or
5578         # files they can't read.  ignore those files.
5579         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5580                         ! -perm +4 -printf '-I %f\n')
5581         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5582                 d99reposname vtag rtag
5583 }
5584 run_test 99b "cvs import ======================================="
5585
5586 test_99c() {
5587         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5588         [ ! -d $DIR/d99cvsroot ] && test_99b
5589         cd $DIR
5590         test_mkdir -p $DIR/d99reposname
5591         chown $RUNAS_ID $DIR/d99reposname
5592         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5593 }
5594 run_test 99c "cvs checkout ====================================="
5595
5596 test_99d() {
5597         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5598         [ ! -d $DIR/d99cvsroot ] && test_99c
5599         cd $DIR/d99reposname
5600         $RUNAS touch foo99
5601         $RUNAS cvs add -m 'addmsg' foo99
5602 }
5603 run_test 99d "cvs add =========================================="
5604
5605 test_99e() {
5606         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5607         [ ! -d $DIR/d99cvsroot ] && test_99c
5608         cd $DIR/d99reposname
5609         $RUNAS cvs update
5610 }
5611 run_test 99e "cvs update ======================================="
5612
5613 test_99f() {
5614         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5615         [ ! -d $DIR/d99cvsroot ] && test_99d
5616         cd $DIR/d99reposname
5617         $RUNAS cvs commit -m 'nomsg' foo99
5618     rm -fr $DIR/d99cvsroot
5619 }
5620 run_test 99f "cvs commit ======================================="
5621
5622 test_100() {
5623         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5624         [ "$NETTYPE" = tcp ] || \
5625                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5626                         return ; }
5627
5628         remote_ost_nodsh && skip "remote OST with nodsh" && return
5629         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5630         remote_servers || \
5631                 { skip "useless for local single node setup" && return; }
5632
5633         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5634                 [ "$PROT" != "tcp" ] && continue
5635                 RPORT=$(echo $REMOTE | cut -d: -f2)
5636                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5637
5638                 rc=0
5639                 LPORT=`echo $LOCAL | cut -d: -f2`
5640                 if [ $LPORT -ge 1024 ]; then
5641                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5642                         netstat -tna
5643                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5644                 fi
5645         done
5646         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5647 }
5648 run_test 100 "check local port using privileged port ==========="
5649
5650 function get_named_value()
5651 {
5652     local tag
5653
5654     tag=$1
5655     while read ;do
5656         line=$REPLY
5657         case $line in
5658         $tag*)
5659             echo $line | sed "s/^$tag[ ]*//"
5660             break
5661             ;;
5662         esac
5663     done
5664 }
5665
5666 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5667                    awk '/^max_cached_mb/ { print $2 }')
5668
5669 cleanup_101a() {
5670         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5671         trap 0
5672 }
5673
5674 test_101a() {
5675         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5676         local s
5677         local discard
5678         local nreads=10000
5679         local cache_limit=32
5680
5681         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5682         trap cleanup_101a EXIT
5683         $LCTL set_param -n llite.*.read_ahead_stats 0
5684         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5685
5686         #
5687         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5688         #
5689         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5690         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5691
5692         discard=0
5693         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5694                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5695                         discard=$(($discard + $s))
5696         done
5697         cleanup_101a
5698
5699         if [ $(($discard * 10)) -gt $nreads ] ;then
5700                 $LCTL get_param osc.*-osc*.rpc_stats
5701                 $LCTL get_param llite.*.read_ahead_stats
5702                 error "too many ($discard) discarded pages"
5703         fi
5704         rm -f $DIR/$tfile || true
5705 }
5706 run_test 101a "check read-ahead for random reads ================"
5707
5708 setup_test101bc() {
5709         test_mkdir -p $DIR/$tdir
5710         STRIPE_SIZE=1048576
5711         STRIPE_COUNT=$OSTCOUNT
5712         STRIPE_OFFSET=0
5713
5714         local list=$(comma_list $(osts_nodes))
5715         set_osd_param $list '' read_cache_enable 0
5716         set_osd_param $list '' writethrough_cache_enable 0
5717
5718         trap cleanup_test101bc EXIT
5719         # prepare the read-ahead file
5720         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5721
5722         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5723 }
5724
5725 cleanup_test101bc() {
5726         trap 0
5727         rm -rf $DIR/$tdir
5728         rm -f $DIR/$tfile
5729
5730         local list=$(comma_list $(osts_nodes))
5731         set_osd_param $list '' read_cache_enable 1
5732         set_osd_param $list '' writethrough_cache_enable 1
5733 }
5734
5735 calc_total() {
5736         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5737 }
5738
5739 ra_check_101() {
5740         local READ_SIZE=$1
5741         local STRIPE_SIZE=1048576
5742         local RA_INC=1048576
5743         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5744         local FILE_LENGTH=$((64*100))
5745         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5746                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5747         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5748                         get_named_value 'read but discarded' | \
5749                         cut -d" " -f1 | calc_total`
5750         if [ $DISCARD -gt $discard_limit ]; then
5751                 $LCTL get_param llite.*.read_ahead_stats
5752                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5753         else
5754                 echo "Read-ahead success for size ${READ_SIZE}"
5755         fi
5756 }
5757
5758 test_101b() {
5759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5760         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5761         local STRIPE_SIZE=1048576
5762         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5763         local FILE_LENGTH=$((STRIPE_SIZE*100))
5764         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5765         # prepare the read-ahead file
5766         setup_test101bc
5767         cancel_lru_locks osc
5768         for BIDX in 2 4 8 16 32 64 128 256
5769         do
5770                 local BSIZE=$((BIDX*4096))
5771                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5772                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5773                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5774                 $LCTL set_param -n llite.*.read_ahead_stats 0
5775                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5776                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5777                 cancel_lru_locks osc
5778                 ra_check_101 $BSIZE
5779         done
5780         cleanup_test101bc
5781         true
5782 }
5783 run_test 101b "check stride-io mode read-ahead ================="
5784
5785 test_101c() {
5786         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5787         local STRIPE_SIZE=1048576
5788         local FILE_LENGTH=$((STRIPE_SIZE*100))
5789         local nreads=10000
5790         local osc
5791
5792     setup_test101bc
5793
5794     cancel_lru_locks osc
5795     $LCTL set_param osc.*.rpc_stats 0
5796     $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5797     for osc in $($LCTL get_param -N osc.*); do
5798         if [ "$osc" == "osc.num_refs" ]; then
5799             continue
5800         fi
5801
5802         local lines=$($LCTL get_param -n ${osc}.rpc_stats | wc | awk '{print $1}')
5803         if [ $lines -le 20 ]; then
5804             continue
5805         fi
5806
5807         local rpc4k=$($LCTL get_param -n ${osc}.rpc_stats |
5808                                      awk '$1 == "1:" { print $2; exit; }')
5809         local rpc8k=$($LCTL get_param -n ${osc}.rpc_stats |
5810                                      awk '$1 == "2:" { print $2; exit; }')
5811         local rpc16k=$($LCTL get_param -n ${osc}.rpc_stats |
5812                                      awk '$1 == "4:" { print $2; exit; }')
5813         local rpc32k=$($LCTL get_param -n ${osc}.rpc_stats |
5814                                      awk '$1 == "8:" { print $2; exit; }')
5815
5816         [ $rpc4k != 0 ]  && error "Small 4k read IO ${rpc4k}!"
5817         [ $rpc8k != 0 ]  && error "Small 8k read IO ${rpc8k}!"
5818         [ $rpc16k != 0 ] && error "Small 16k read IO ${rpc16k}!"
5819         [ $rpc32k != 0 ] && error "Small 32k read IO ${rpc32k}!"
5820         echo "${osc} rpc check passed!"
5821     done
5822     cleanup_test101bc
5823     true
5824 }
5825 run_test 101c "check stripe_size aligned read-ahead ================="
5826
5827 set_read_ahead() {
5828    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5829    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5830 }
5831
5832 test_101d() {
5833         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5834         local file=$DIR/$tfile
5835         local size=${FILESIZE_101c:-500}
5836         local ra_MB=${READAHEAD_MB:-40}
5837
5838         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5839         [ $space -gt $((size * 1024)) ] ||
5840                 { skip "Need free space ${size}M, have $space" && return; }
5841
5842     echo Creating ${size}M test file $file
5843     dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5844     echo Cancel LRU locks on lustre client to flush the client cache
5845     cancel_lru_locks osc
5846
5847     echo Disable read-ahead
5848     local old_READAHEAD=$(set_read_ahead 0)
5849
5850     echo Reading the test file $file with read-ahead disabled
5851     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5852
5853     echo Cancel LRU locks on lustre client to flush the client cache
5854     cancel_lru_locks osc
5855     echo Enable read-ahead with ${ra_MB}MB
5856     set_read_ahead $ra_MB
5857
5858     echo Reading the test file $file with read-ahead enabled
5859     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5860
5861     echo read-ahead disabled time read $time_ra_OFF
5862     echo read-ahead enabled  time read $time_ra_ON
5863
5864         set_read_ahead $old_READAHEAD
5865         rm -f $file
5866         wait_delete_completed
5867
5868     [ $time_ra_ON -lt $time_ra_OFF ] ||
5869         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5870                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5871 }
5872 run_test 101d "file read with and without read-ahead enabled  ================="
5873
5874 test_101e() {
5875         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5876     local file=$DIR/$tfile
5877     local size=500  #KB
5878     local count=100
5879     local blksize=1024
5880
5881     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5882     local need_space=$((count * size))
5883     [ $space -gt $need_space ] ||
5884         { skip_env "Need free space $need_space, have $space" && return; }
5885
5886     echo Creating $count ${size}K test files
5887     for ((i = 0; i < $count; i++)); do
5888         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5889     done
5890
5891     echo Cancel LRU locks on lustre client to flush the client cache
5892     cancel_lru_locks osc
5893
5894     echo Reset readahead stats
5895     $LCTL set_param -n llite.*.read_ahead_stats 0
5896
5897     for ((i = 0; i < $count; i++)); do
5898         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5899     done
5900
5901     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5902           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5903
5904     for ((i = 0; i < $count; i++)); do
5905         rm -rf ${file}_${i} 2>/dev/null
5906     done
5907
5908     #10000 means 20% reads are missing in readahead
5909     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5910 }
5911 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5912
5913 cleanup_test101f() {
5914     trap 0
5915     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5916     rm -rf $DIR/$tfile 2>/dev/null
5917 }
5918
5919 test_101f() {
5920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5921     local file=$DIR/$tfile
5922     local nreads=1000
5923
5924     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5925     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5926     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5927     trap cleanup_test101f EXIT
5928
5929     echo Cancel LRU locks on lustre client to flush the client cache
5930     cancel_lru_locks osc
5931
5932     echo Reset readahead stats
5933     $LCTL set_param -n llite.*.read_ahead_stats 0
5934     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
5935     # readahead should read in 2M file on second read, so only miss
5936     # 2 pages.
5937     echo Random 4K reads on 2M file for 1000 times
5938     $READS -f $file -s 2097152 -b 4096 -n $nreads
5939
5940     echo checking missing pages
5941     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
5942           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5943
5944     [ $miss -lt 3 ] || error "misses too much pages!"
5945     cleanup_test101f
5946 }
5947 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
5948
5949 setup_test102() {
5950         test_mkdir -p $DIR/$tdir
5951         chown $RUNAS_ID $DIR/$tdir
5952         STRIPE_SIZE=65536
5953         STRIPE_OFFSET=1
5954         STRIPE_COUNT=$OSTCOUNT
5955         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
5956
5957         trap cleanup_test102 EXIT
5958         cd $DIR
5959         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
5960         cd $DIR/$tdir
5961         for num in 1 2 3 4; do
5962                 for count in $(seq 1 $STRIPE_COUNT); do
5963                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
5964                                 local size=`expr $STRIPE_SIZE \* $num`
5965                                 local file=file"$num-$idx-$count"
5966                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
5967                         done
5968                 done
5969         done
5970
5971         cd $DIR
5972         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
5973 }
5974
5975 cleanup_test102() {
5976         trap 0
5977         rm -f $TMP/f102.tar
5978         rm -rf $DIR/d0.sanity/d102
5979 }
5980
5981 test_102a() {
5982         local testfile=$DIR/xattr_testfile
5983
5984         touch $testfile
5985
5986         [ "$UID" != 0 ] && skip_env "must run as root" && return
5987         [ -z "`lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr`" ] &&
5988                 skip_env "must have user_xattr" && return
5989
5990         [ -z "$(which setfattr 2>/dev/null)" ] &&
5991                 skip_env "could not find setfattr" && return
5992
5993         echo "set/get xattr..."
5994         setfattr -n trusted.name1 -v value1 $testfile || error
5995         getfattr -n trusted.name1 $testfile 2> /dev/null |
5996           grep "trusted.name1=.value1" ||
5997                 error "$testfile missing trusted.name1=value1"
5998
5999         setfattr -n user.author1 -v author1 $testfile || error
6000         getfattr -n user.author1 $testfile 2> /dev/null |
6001           grep "user.author1=.author1" ||
6002                 error "$testfile missing trusted.author1=author1"
6003
6004         echo "listxattr..."
6005         setfattr -n trusted.name2 -v value2 $testfile ||
6006                 error "$testfile unable to set trusted.name2"
6007         setfattr -n trusted.name3 -v value3 $testfile ||
6008                 error "$testfile unable to set trusted.name3"
6009         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6010             grep "trusted.name" | wc -l) -eq 3 ] ||
6011                 error "$testfile missing 3 trusted.name xattrs"
6012
6013         setfattr -n user.author2 -v author2 $testfile ||
6014                 error "$testfile unable to set user.author2"
6015         setfattr -n user.author3 -v author3 $testfile ||
6016                 error "$testfile unable to set user.author3"
6017         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6018             grep "user.author" | wc -l) -eq 3 ] ||
6019                 error "$testfile missing 3 user.author xattrs"
6020
6021         echo "remove xattr..."
6022         setfattr -x trusted.name1 $testfile ||
6023                 error "$testfile error deleting trusted.name1"
6024         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6025                 error "$testfile did not delete trusted.name1 xattr"
6026
6027         setfattr -x user.author1 $testfile ||
6028                 error "$testfile error deleting user.author1"
6029         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6030                 error "$testfile did not delete trusted.name1 xattr"
6031
6032         # b10667: setting lustre special xattr be silently discarded
6033         echo "set lustre special xattr ..."
6034         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6035                 error "$testfile allowed setting trusted.lov"
6036 }
6037 run_test 102a "user xattr test =================================="
6038
6039 test_102b() {
6040         # b10930: get/set/list trusted.lov xattr
6041         echo "get/set/list trusted.lov xattr ..."
6042         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6043         local testfile=$DIR/$tfile
6044         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6045                 error "setstripe failed"
6046         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6047                 error "getstripe failed"
6048         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6049         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6050
6051         local testfile2=${testfile}2
6052         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6053                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6054
6055         $MCREATE $testfile2
6056         setfattr -n trusted.lov -v $value $testfile2
6057         local stripe_size=$($GETSTRIPE -S $testfile2)
6058         local stripe_count=$($GETSTRIPE -c $testfile2)
6059         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6060         [ $stripe_count -eq $STRIPECOUNT ] ||
6061                 error "stripe count $stripe_count != $STRIPECOUNT"
6062         rm -f $DIR/$tfile
6063 }
6064 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6065
6066 test_102c() {
6067         # b10930: get/set/list lustre.lov xattr
6068         echo "get/set/list lustre.lov xattr ..."
6069         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6070         test_mkdir -p $DIR/$tdir
6071         chown $RUNAS_ID $DIR/$tdir
6072         local testfile=$DIR/$tdir/$tfile
6073         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6074                 error "setstripe failed"
6075         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6076                 error "getstripe failed"
6077         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6078         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6079
6080         local testfile2=${testfile}2
6081         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6082                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6083
6084         $RUNAS $MCREATE $testfile2
6085         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6086         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6087         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6088         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6089         [ $stripe_count -eq $STRIPECOUNT ] ||
6090                 error "stripe count $stripe_count != $STRIPECOUNT"
6091 }
6092 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6093
6094 compare_stripe_info1() {
6095         local stripe_index_all_zero=true
6096
6097         for num in 1 2 3 4; do
6098                 for count in $(seq 1 $STRIPE_COUNT); do
6099                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6100                                 local size=$((STRIPE_SIZE * num))
6101                                 local file=file"$num-$offset-$count"
6102                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6103                                 [ $stripe_size -ne $size ] &&
6104                                     error "$file: size $stripe_size != $size"
6105                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6106                                 # allow fewer stripes to be created, ORI-601
6107                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6108                                     error "$file: count $stripe_count != $count"
6109                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6110                                 [ $stripe_index -ne 0 ] &&
6111                                         stripe_index_all_zero=false
6112                         done
6113                 done
6114         done
6115         $stripe_index_all_zero &&
6116                 error "all files are being extracted starting from OST index 0"
6117         return 0
6118 }
6119
6120 find_lustre_tar() {
6121         [ -n "$(which tar 2>/dev/null)" ] &&
6122                 strings $(which tar) | grep -q "lustre" && echo tar
6123 }
6124
6125 test_102d() {
6126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6127         # b10930: tar test for trusted.lov xattr
6128         TAR=$(find_lustre_tar)
6129         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6130         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6131         setup_test102
6132         test_mkdir -p $DIR/d102d
6133         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6134         cd $DIR/d102d/$tdir
6135         compare_stripe_info1
6136 }
6137 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6138
6139 test_102f() {
6140         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6141         # b10930: tar test for trusted.lov xattr
6142         TAR=$(find_lustre_tar)
6143         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6144         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6145         setup_test102
6146         test_mkdir -p $DIR/d102f
6147         cd $DIR
6148         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6149         cd $DIR/d102f/$tdir
6150         compare_stripe_info1
6151 }
6152 run_test 102f "tar copy files, not keep osts ==========="
6153
6154 grow_xattr() {
6155         local xsize=${1:-1024}  # in bytes
6156         local file=$DIR/$tfile
6157
6158         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6159                 skip "must have user_xattr" && return 0
6160         [ -z "$(which setfattr 2>/dev/null)" ] &&
6161                 skip_env "could not find setfattr" && return 0
6162         [ -z "$(which getfattr 2>/dev/null)" ] &&
6163                 skip_env "could not find getfattr" && return 0
6164
6165         touch $file
6166
6167         local value="$(generate_string $xsize)"
6168
6169         local xbig=trusted.big
6170         log "save $xbig on $file"
6171         setfattr -n $xbig -v $value $file ||
6172                 error "saving $xbig on $file failed"
6173
6174         local orig=$(get_xattr_value $xbig $file)
6175         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6176
6177         local xsml=trusted.sml
6178         log "save $xsml on $file"
6179         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6180
6181         local new=$(get_xattr_value $xbig $file)
6182         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6183
6184         log "grow $xsml on $file"
6185         setfattr -n $xsml -v "$value" $file ||
6186                 error "growing $xsml on $file failed"
6187
6188         new=$(get_xattr_value $xbig $file)
6189         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6190         log "$xbig still valid after growing $xsml"
6191
6192         rm -f $file
6193 }
6194
6195 test_102h() { # bug 15777
6196         grow_xattr 1024
6197 }
6198 run_test 102h "grow xattr from inside inode to external block"
6199
6200 test_102ha() {
6201         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6202         grow_xattr $(max_xattr_size)
6203 }
6204 run_test 102ha "grow xattr from inside inode to external inode"
6205
6206 test_102i() { # bug 17038
6207         touch $DIR/$tfile
6208         ln -s $DIR/$tfile $DIR/${tfile}link
6209         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6210         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"
6211         rm -f $DIR/$tfile $DIR/${tfile}link
6212 }
6213 run_test 102i "lgetxattr test on symbolic link ============"
6214
6215 test_102j() {
6216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6217         TAR=$(find_lustre_tar)
6218         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6219         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6220         setup_test102 "$RUNAS"
6221         test_mkdir -p $DIR/d102j
6222         chown $RUNAS_ID $DIR/d102j
6223         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6224         cd $DIR/d102j/$tdir
6225         compare_stripe_info1 "$RUNAS"
6226 }
6227 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6228
6229 test_102k() {
6230         touch $DIR/$tfile
6231         # b22187 just check that does not crash for regular file.
6232         setfattr -n trusted.lov $DIR/$tfile
6233         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6234         local test_kdir=$DIR/d102k
6235         test_mkdir $test_kdir
6236         local default_size=`$GETSTRIPE -S $test_kdir`
6237         local default_count=`$GETSTRIPE -c $test_kdir`
6238         local default_offset=`$GETSTRIPE -i $test_kdir`
6239         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6240                 error 'dir setstripe failed'
6241         setfattr -n trusted.lov $test_kdir
6242         local stripe_size=`$GETSTRIPE -S $test_kdir`
6243         local stripe_count=`$GETSTRIPE -c $test_kdir`
6244         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6245         [ $stripe_size -eq $default_size ] ||
6246                 error "stripe size $stripe_size != $default_size"
6247         [ $stripe_count -eq $default_count ] ||
6248                 error "stripe count $stripe_count != $default_count"
6249         [ $stripe_offset -eq $default_offset ] ||
6250                 error "stripe offset $stripe_offset != $default_offset"
6251         rm -rf $DIR/$tfile $test_kdir
6252 }
6253 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6254
6255 test_102l() {
6256         # LU-532 trusted. xattr is invisible to non-root
6257         local testfile=$DIR/$tfile
6258
6259         touch $testfile
6260
6261         echo "listxattr as user..."
6262         chown $RUNAS_ID $testfile
6263         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6264             grep -q "trusted" &&
6265                 error "$testfile trusted xattrs are user visible"
6266
6267         return 0;
6268 }
6269 run_test 102l "listxattr filter test =================================="
6270
6271 cleanup_test102
6272
6273 run_acl_subtest()
6274 {
6275     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6276     return $?
6277 }
6278
6279 test_103 () {
6280     [ "$UID" != 0 ] && skip_env "must run as root" && return
6281     [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
6282     [ -z "$(which setfacl 2>/dev/null)" ] && skip_env "could not find setfacl" && return
6283     $GSS && skip "could not run under gss" && return
6284
6285     declare -a identity_old
6286
6287         for num in $(seq $MDSCOUNT); do
6288                 switch_identity $num true || identity_old[$num]=$?
6289         done
6290
6291     SAVE_UMASK=`umask`
6292     umask 0022
6293     cd $DIR
6294
6295     echo "performing cp ..."
6296     run_acl_subtest cp || error
6297     echo "performing getfacl-noacl..."
6298     run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6299     echo "performing misc..."
6300     run_acl_subtest misc || error  "misc test failed"
6301     echo "performing permissions..."
6302     run_acl_subtest permissions || error "permissions failed"
6303     echo "performing setfacl..."
6304     run_acl_subtest setfacl || error  "setfacl test failed"
6305
6306     # inheritance test got from HP
6307     echo "performing inheritance..."
6308     cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6309     chmod +x make-tree || error "chmod +x failed"
6310     run_acl_subtest inheritance || error "inheritance test failed"
6311     rm -f make-tree
6312
6313         echo "LU-974 ignore umask when acl is enabled..."
6314         run_acl_subtest 974 || error "LU-974 test failed"
6315         if [ $MDSCOUNT -ge 2 ]; then
6316                 run_acl_subtest 974_remote ||
6317                         error "LU-974 test failed under remote dir"
6318         fi
6319
6320     echo "LU-2561 newly created file is same size as directory..."
6321     run_acl_subtest 2561 || error "LU-2561 test failed"
6322
6323     cd $SAVE_PWD
6324     umask $SAVE_UMASK
6325
6326         for num in $(seq $MDSCOUNT); do
6327                 if [ "${identity_old[$num]}" = 1 ]; then
6328                         switch_identity $num false || identity_old[$num]=$?
6329                 fi
6330         done
6331 }
6332 run_test 103 "acl test ========================================="
6333
6334 test_104a() {
6335         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6336         touch $DIR/$tfile
6337         lfs df || error "lfs df failed"
6338         lfs df -ih || error "lfs df -ih failed"
6339         lfs df -h $DIR || error "lfs df -h $DIR failed"
6340         lfs df -i $DIR || error "lfs df -i $DIR failed"
6341         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6342         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6343
6344         OSC=`lctl dl |grep OST0000-osc-[^M] |awk '{print $4}'`
6345         lctl --device %$OSC deactivate
6346         lfs df || error "lfs df with deactivated OSC failed"
6347         lctl --device %$OSC activate
6348         # wait the osc back to normal
6349         wait_osc_import_state client ost FULL
6350
6351         lfs df || error "lfs df with reactivated OSC failed"
6352         rm -f $DIR/$tfile
6353 }
6354 run_test 104a "lfs df [-ih] [path] test ========================="
6355
6356 test_104b() {
6357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6358         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6359         chmod 666 /dev/obd
6360         denied_cnt=$((`$RUNAS $LFS check servers 2>&1 | grep "Permission denied" | wc -l`))
6361         if [ $denied_cnt -ne 0 ];
6362         then
6363                     error "lfs check servers test failed"
6364         fi
6365 }
6366 run_test 104b "$RUNAS lfs check servers test ===================="
6367
6368 test_105a() {
6369         # doesn't work on 2.4 kernels
6370         touch $DIR/$tfile
6371         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6372                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6373         else
6374                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6375         fi
6376         rm -f $DIR/$tfile
6377 }
6378 run_test 105a "flock when mounted without -o flock test ========"
6379
6380 test_105b() {
6381         touch $DIR/$tfile
6382         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6383                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6384         else
6385                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6386         fi
6387         rm -f $DIR/$tfile
6388 }
6389 run_test 105b "fcntl when mounted without -o flock test ========"
6390
6391 test_105c() {
6392         touch $DIR/$tfile
6393         if [ -n "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ]; then
6394                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6395         else
6396                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6397         fi
6398         rm -f $DIR/$tfile
6399 }
6400 run_test 105c "lockf when mounted without -o flock test ========"
6401
6402 test_105d() { # bug 15924
6403         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6404         test_mkdir -p $DIR/$tdir
6405         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6406                 skip "mount w/o flock enabled" && return
6407         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6408         $LCTL set_param fail_loc=0x80000315
6409         flocks_test 2 $DIR/$tdir
6410 }
6411 run_test 105d "flock race (should not freeze) ========"
6412
6413 test_105e() { # bug 22660 && 22040
6414         [ -z "`mount | grep \"$MOUNT.*flock\" | grep -v noflock`" ] && \
6415                 skip "mount w/o flock enabled" && return
6416         touch $DIR/$tfile
6417         flocks_test 3 $DIR/$tfile
6418 }
6419 run_test 105e "Two conflicting flocks from same process ======="
6420
6421 test_106() { #bug 10921
6422         test_mkdir -p $DIR/$tdir
6423         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6424         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6425 }
6426 run_test 106 "attempt exec of dir followed by chown of that dir"
6427
6428 test_107() {
6429         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6430         CDIR=`pwd`
6431         cd $DIR
6432
6433         local file=core
6434         rm -f $file
6435
6436         local save_pattern=$(sysctl -n kernel.core_pattern)
6437         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6438         sysctl -w kernel.core_pattern=$file
6439         sysctl -w kernel.core_uses_pid=0
6440
6441         ulimit -c unlimited
6442         sleep 60 &
6443         SLEEPPID=$!
6444
6445         sleep 1
6446
6447         kill -s 11 $SLEEPPID
6448         wait $SLEEPPID
6449         if [ -e $file ]; then
6450                 size=`stat -c%s $file`
6451                 [ $size -eq 0 ] && error "Fail to create core file $file"
6452         else
6453                 error "Fail to create core file $file"
6454         fi
6455         rm -f $file
6456         sysctl -w kernel.core_pattern=$save_pattern
6457         sysctl -w kernel.core_uses_pid=$save_uses_pid
6458         cd $CDIR
6459 }
6460 run_test 107 "Coredump on SIG"
6461
6462 test_110() {
6463         test_mkdir -p $DIR/$tdir
6464         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6465                 error "mkdir with 255 char failed"
6466         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6467                 error "mkdir with 256 char should fail, but did not"
6468         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6469                 error "create with 255 char failed"
6470         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6471                 error "create with 256 char should fail, but did not"
6472
6473         ls -l $DIR/$tdir
6474         rm -rf $DIR/$tdir
6475 }
6476 run_test 110 "filename length checking"
6477
6478 test_115() {
6479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6480         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6481             cut -c11-20)
6482         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6483             return
6484         echo "Starting with $OSTIO_pre threads"
6485
6486         NUMTEST=20000
6487         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6488         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6489         echo "$NUMTEST creates/unlinks"
6490         test_mkdir -p $DIR/$tdir
6491         createmany -o $DIR/$tdir/$tfile $NUMTEST
6492         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6493
6494         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6495             cut -c11-20)
6496
6497         # don't return an error
6498         [ $OSTIO_post == $OSTIO_pre ] && echo \
6499             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6500             echo "This may be fine, depending on what ran before this test" &&
6501             echo "and how fast this system is." && return
6502
6503         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6504 }
6505 run_test 115 "verify dynamic thread creation===================="
6506
6507 free_min_max () {
6508         wait_delete_completed
6509         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6510         echo OST kbytes available: ${AVAIL[@]}
6511         MAXI=0; MAXV=${AVAIL[0]}
6512         MINI=0; MINV=${AVAIL[0]}
6513         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6514             #echo OST $i: ${AVAIL[i]}kb
6515             if [ ${AVAIL[i]} -gt $MAXV ]; then
6516                 MAXV=${AVAIL[i]}; MAXI=$i
6517             fi
6518             if [ ${AVAIL[i]} -lt $MINV ]; then
6519                 MINV=${AVAIL[i]}; MINI=$i
6520             fi
6521         done
6522         echo Min free space: OST $MINI: $MINV
6523         echo Max free space: OST $MAXI: $MAXV
6524 }
6525
6526 test_116a() { # was previously test_116()
6527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6528         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6529
6530         echo -n "Free space priority "
6531         lctl get_param -n lov.*-clilov-*.qos_prio_free
6532         declare -a AVAIL
6533         free_min_max
6534         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6535                 return
6536
6537         # generate uneven OSTs
6538         test_mkdir -p $DIR/$tdir/OST${MINI}
6539         declare -i FILL
6540         FILL=$(($MINV / 4))
6541         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6542         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6543         i=0
6544         while [ $FILL -gt 0 ]; do
6545             i=$(($i + 1))
6546             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6547             FILL=$(($FILL - 2048))
6548             echo -n .
6549         done
6550         FILL=$(($MINV / 4))
6551         sync
6552         sleep_maxage
6553
6554         free_min_max
6555         DIFF=$(($MAXV - $MINV))
6556         DIFF2=$(($DIFF * 100 / $MINV))
6557         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6558         if [ $DIFF2 -gt 20 ]; then
6559             echo "ok"
6560         else
6561             echo "failed - QOS mode won't be used"
6562             error_ignore "QOS imbalance criteria not met"
6563             return
6564         fi
6565
6566         MINI1=$MINI; MINV1=$MINV
6567         MAXI1=$MAXI; MAXV1=$MAXV
6568
6569         # now fill using QOS
6570         echo writing a bunch of files to QOS-assigned OSTs
6571         $SETSTRIPE -c 1 $DIR/$tdir
6572         i=0
6573         while [ $FILL -gt 0 ]; do
6574             i=$(($i + 1))
6575             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6576             FILL=$(($FILL - 200))
6577             echo -n .
6578         done
6579         echo "wrote $i 200k files"
6580         sync
6581         sleep_maxage
6582
6583         echo "Note: free space may not be updated, so measurements might be off"
6584         free_min_max
6585         DIFF2=$(($MAXV - $MINV))
6586         echo "free space delta: orig $DIFF final $DIFF2"
6587         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6588         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6589         echo "Wrote $DIFF to smaller OST $MINI1"
6590         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6591         echo "Wrote $DIFF2 to larger OST $MAXI1"
6592         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6593
6594         # Figure out which files were written where
6595         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6596                awk '/'$MINI1': / {print $2; exit}')
6597         echo $UUID
6598         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6599         echo "$MINC files created on smaller OST $MINI1"
6600         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6601                awk '/'$MAXI1': / {print $2; exit}')
6602         echo $UUID
6603         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6604         echo "$MAXC files created on larger OST $MAXI1"
6605         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6606         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6607
6608         rm -rf $DIR/$tdir
6609 }
6610 run_test 116a "stripe QOS: free space balance ==================="
6611
6612 test_116b() { # LU-2093
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6614 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6615         local old_rr
6616         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6617         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6618         mkdir -p $DIR/$tdir
6619         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6620         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6621         do_facet $SINGLEMDS lctl set_param fail_loc=0
6622         rm -rf $DIR/$tdir
6623         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6624 }
6625 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6626
6627 test_117() # bug 10891
6628 {
6629         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6630         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6631         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6632         lctl set_param fail_loc=0x21e
6633         > $DIR/$tfile || error "truncate failed"
6634         lctl set_param fail_loc=0
6635         echo "Truncate succeeded."
6636         rm -f $DIR/$tfile
6637 }
6638 run_test 117 "verify fsfilt_extend =========="
6639
6640 NO_SLOW_RESENDCOUNT=4
6641 export OLD_RESENDCOUNT=""
6642 set_resend_count () {
6643         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6644         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6645         lctl set_param -n $PROC_RESENDCOUNT $1
6646         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6647 }
6648
6649 # for reduce test_118* time (b=14842)
6650 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6651
6652 # Reset async IO behavior after error case
6653 reset_async() {
6654         FILE=$DIR/reset_async
6655
6656         # Ensure all OSCs are cleared
6657         $SETSTRIPE -c -1 $FILE
6658         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6659         sync
6660         rm $FILE
6661 }
6662
6663 test_118a() #bug 11710
6664 {
6665         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6666         reset_async
6667
6668         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6669         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6670         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6671
6672         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6673                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6674                 return 1;
6675         fi
6676         rm -f $DIR/$tfile
6677 }
6678 run_test 118a "verify O_SYNC works =========="
6679
6680 test_118b()
6681 {
6682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6683         remote_ost_nodsh && skip "remote OST with nodsh" && return
6684
6685         reset_async
6686
6687         #define OBD_FAIL_OST_ENOENT 0x217
6688         set_nodes_failloc "$(osts_nodes)" 0x217
6689         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6690         RC=$?
6691         set_nodes_failloc "$(osts_nodes)" 0
6692         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6693         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6694                     grep -c writeback)
6695
6696         if [[ $RC -eq 0 ]]; then
6697                 error "Must return error due to dropped pages, rc=$RC"
6698                 return 1;
6699         fi
6700
6701         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6702                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6703                 return 1;
6704         fi
6705
6706         echo "Dirty pages not leaked on ENOENT"
6707
6708         # Due to the above error the OSC will issue all RPCs syncronously
6709         # until a subsequent RPC completes successfully without error.
6710         $MULTIOP $DIR/$tfile Ow4096yc
6711         rm -f $DIR/$tfile
6712
6713         return 0
6714 }
6715 run_test 118b "Reclaim dirty pages on fatal error =========="
6716
6717 test_118c()
6718 {
6719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6720
6721         # for 118c, restore the original resend count, LU-1940
6722         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6723                                 set_resend_count $OLD_RESENDCOUNT
6724         remote_ost_nodsh && skip "remote OST with nodsh" && return
6725
6726         reset_async
6727
6728         #define OBD_FAIL_OST_EROFS               0x216
6729         set_nodes_failloc "$(osts_nodes)" 0x216
6730
6731         # multiop should block due to fsync until pages are written
6732         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6733         MULTIPID=$!
6734         sleep 1
6735
6736         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6737                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6738         fi
6739
6740         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6741                     grep -c writeback)
6742         if [[ $WRITEBACK -eq 0 ]]; then
6743                 error "No page in writeback, writeback=$WRITEBACK"
6744         fi
6745
6746         set_nodes_failloc "$(osts_nodes)" 0
6747         wait $MULTIPID
6748         RC=$?
6749         if [[ $RC -ne 0 ]]; then
6750                 error "Multiop fsync failed, rc=$RC"
6751         fi
6752
6753         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6754         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6755                     grep -c writeback)
6756         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6757                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6758         fi
6759
6760         rm -f $DIR/$tfile
6761         echo "Dirty pages flushed via fsync on EROFS"
6762         return 0
6763 }
6764 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6765
6766 # continue to use small resend count to reduce test_118* time (b=14842)
6767 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6768
6769 test_118d()
6770 {
6771         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6772         remote_ost_nodsh && skip "remote OST with nodsh" && return
6773
6774         reset_async
6775
6776         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6777         set_nodes_failloc "$(osts_nodes)" 0x214
6778         # multiop should block due to fsync until pages are written
6779         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6780         MULTIPID=$!
6781         sleep 1
6782
6783         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6784                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6785         fi
6786
6787         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6788                     grep -c writeback)
6789         if [[ $WRITEBACK -eq 0 ]]; then
6790                 error "No page in writeback, writeback=$WRITEBACK"
6791         fi
6792
6793         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6794         set_nodes_failloc "$(osts_nodes)" 0
6795
6796         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6797         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6798                     grep -c writeback)
6799         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6800                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6801         fi
6802
6803         rm -f $DIR/$tfile
6804         echo "Dirty pages gaurenteed flushed via fsync"
6805         return 0
6806 }
6807 run_test 118d "Fsync validation inject a delay of the bulk =========="
6808
6809 test_118f() {
6810         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6811         reset_async
6812
6813         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6814         lctl set_param fail_loc=0x8000040a
6815
6816         # Should simulate EINVAL error which is fatal
6817         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6818         RC=$?
6819         if [[ $RC -eq 0 ]]; then
6820                 error "Must return error due to dropped pages, rc=$RC"
6821         fi
6822
6823         lctl set_param fail_loc=0x0
6824
6825         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6826         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6827         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6828                     grep -c writeback)
6829         if [[ $LOCKED -ne 0 ]]; then
6830                 error "Locked pages remain in cache, locked=$LOCKED"
6831         fi
6832
6833         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6834                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6835         fi
6836
6837         rm -f $DIR/$tfile
6838         echo "No pages locked after fsync"
6839
6840         reset_async
6841         return 0
6842 }
6843 run_test 118f "Simulate unrecoverable OSC side error =========="
6844
6845 test_118g() {
6846         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6847         reset_async
6848
6849         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6850         lctl set_param fail_loc=0x406
6851
6852         # simulate local -ENOMEM
6853         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6854         RC=$?
6855
6856         lctl set_param fail_loc=0
6857         if [[ $RC -eq 0 ]]; then
6858                 error "Must return error due to dropped pages, rc=$RC"
6859         fi
6860
6861         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6862         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6863         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6864                         grep -c writeback)
6865         if [[ $LOCKED -ne 0 ]]; then
6866                 error "Locked pages remain in cache, locked=$LOCKED"
6867         fi
6868
6869         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6870                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6871         fi
6872
6873         rm -f $DIR/$tfile
6874         echo "No pages locked after fsync"
6875
6876         reset_async
6877         return 0
6878 }
6879 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6880
6881 test_118h() {
6882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6883         remote_ost_nodsh && skip "remote OST with nodsh" && return
6884
6885         reset_async
6886
6887         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6888         set_nodes_failloc "$(osts_nodes)" 0x20e
6889         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6890         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6891         RC=$?
6892
6893         set_nodes_failloc "$(osts_nodes)" 0
6894         if [[ $RC -eq 0 ]]; then
6895                 error "Must return error due to dropped pages, rc=$RC"
6896         fi
6897
6898         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6899         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6900         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6901                     grep -c writeback)
6902         if [[ $LOCKED -ne 0 ]]; then
6903                 error "Locked pages remain in cache, locked=$LOCKED"
6904         fi
6905
6906         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6907                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6908         fi
6909
6910         rm -f $DIR/$tfile
6911         echo "No pages locked after fsync"
6912
6913         return 0
6914 }
6915 run_test 118h "Verify timeout in handling recoverables errors  =========="
6916
6917 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
6918
6919 test_118i() {
6920         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6921         remote_ost_nodsh && skip "remote OST with nodsh" && return
6922
6923         reset_async
6924
6925         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6926         set_nodes_failloc "$(osts_nodes)" 0x20e
6927
6928         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6929         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6930         PID=$!
6931         sleep 5
6932         set_nodes_failloc "$(osts_nodes)" 0
6933
6934         wait $PID
6935         RC=$?
6936         if [[ $RC -ne 0 ]]; then
6937                 error "got error, but should be not, rc=$RC"
6938         fi
6939
6940         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6941         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6942         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6943         if [[ $LOCKED -ne 0 ]]; then
6944                 error "Locked pages remain in cache, locked=$LOCKED"
6945         fi
6946
6947         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6948                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6949         fi
6950
6951         rm -f $DIR/$tfile
6952         echo "No pages locked after fsync"
6953
6954         return 0
6955 }
6956 run_test 118i "Fix error before timeout in recoverable error  =========="
6957
6958 [ "$SLOW" = "no" ] && set_resend_count 4
6959
6960 test_118j() {
6961         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6962         remote_ost_nodsh && skip "remote OST with nodsh" && return
6963
6964         reset_async
6965
6966         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
6967         set_nodes_failloc "$(osts_nodes)" 0x220
6968
6969         # return -EIO from OST
6970         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6971         RC=$?
6972         set_nodes_failloc "$(osts_nodes)" 0x0
6973         if [[ $RC -eq 0 ]]; then
6974                 error "Must return error due to dropped pages, rc=$RC"
6975         fi
6976
6977         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6978         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6979         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6980         if [[ $LOCKED -ne 0 ]]; then
6981                 error "Locked pages remain in cache, locked=$LOCKED"
6982         fi
6983
6984         # in recoverable error on OST we want resend and stay until it finished
6985         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6986                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6987         fi
6988
6989         rm -f $DIR/$tfile
6990         echo "No pages locked after fsync"
6991
6992         return 0
6993 }
6994 run_test 118j "Simulate unrecoverable OST side error =========="
6995
6996 test_118k()
6997 {
6998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6999         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7000
7001         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7002         set_nodes_failloc "$(osts_nodes)" 0x20e
7003         test_mkdir -p $DIR/$tdir
7004
7005         for ((i=0;i<10;i++)); do
7006                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7007                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7008                 SLEEPPID=$!
7009                 sleep 0.500s
7010                 kill $SLEEPPID
7011                 wait $SLEEPPID
7012         done
7013
7014         set_nodes_failloc "$(osts_nodes)" 0
7015         rm -rf $DIR/$tdir
7016 }
7017 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7018
7019 test_118l()
7020 {
7021         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7022         # LU-646
7023         test_mkdir -p $DIR/$tdir
7024         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7025         rm -rf $DIR/$tdir
7026 }
7027 run_test 118l "fsync dir ========="
7028
7029 test_118m() # LU-3066
7030 {
7031         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7032         test_mkdir -p $DIR/$tdir
7033         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7034         rm -rf $DIR/$tdir
7035 }
7036 run_test 118m "fdatasync dir ========="
7037
7038 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7039
7040 test_119a() # bug 11737
7041 {
7042         BSIZE=$((512 * 1024))
7043         directio write $DIR/$tfile 0 1 $BSIZE
7044         # We ask to read two blocks, which is more than a file size.
7045         # directio will indicate an error when requested and actual
7046         # sizes aren't equeal (a normal situation in this case) and
7047         # print actual read amount.
7048         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7049         if [ "$NOB" != "$BSIZE" ]; then
7050                 error "read $NOB bytes instead of $BSIZE"
7051         fi
7052         rm -f $DIR/$tfile
7053 }
7054 run_test 119a "Short directIO read must return actual read amount"
7055
7056 test_119b() # bug 11737
7057 {
7058         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7059
7060         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7061         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7062         sync
7063         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7064                 error "direct read failed"
7065         rm -f $DIR/$tfile
7066 }
7067 run_test 119b "Sparse directIO read must return actual read amount"
7068
7069 test_119c() # bug 13099
7070 {
7071         BSIZE=1048576
7072         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7073         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7074         rm -f $DIR/$tfile
7075 }
7076 run_test 119c "Testing for direct read hitting hole"
7077
7078 test_119d() # bug 15950
7079 {
7080         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7081         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7082         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7083         BSIZE=1048576
7084         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7085         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7086         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7087         lctl set_param fail_loc=0x40d
7088         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7089         pid_dio=$!
7090         sleep 1
7091         cat $DIR/$tfile > /dev/null &
7092         lctl set_param fail_loc=0
7093         pid_reads=$!
7094         wait $pid_dio
7095         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7096         sleep 2
7097         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7098         error "the read rpcs have not completed in 2s"
7099         rm -f $DIR/$tfile
7100         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7101 }
7102 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7103
7104 test_120a() {
7105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7106         test_mkdir -p $DIR/$tdir
7107         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7108                skip "no early lock cancel on server" && return 0
7109         lru_resize_disable mdc
7110         lru_resize_disable osc
7111         cancel_lru_locks mdc
7112         stat $DIR/$tdir > /dev/null
7113         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7114         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7115         test_mkdir $DIR/$tdir/d1
7116         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7117         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7118         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7119         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7120         lru_resize_enable mdc
7121         lru_resize_enable osc
7122 }
7123 run_test 120a "Early Lock Cancel: mkdir test"
7124
7125 test_120b() {
7126         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7127         test_mkdir -p $DIR/$tdir
7128         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7129                skip "no early lock cancel on server" && return 0
7130         lru_resize_disable mdc
7131         lru_resize_disable osc
7132         cancel_lru_locks mdc
7133         stat $DIR/$tdir > /dev/null
7134         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7135         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7136         touch $DIR/$tdir/f1
7137         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7138         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7139         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7140         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7141         lru_resize_enable mdc
7142         lru_resize_enable osc
7143 }
7144 run_test 120b "Early Lock Cancel: create test"
7145
7146 test_120c() {
7147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7148         test_mkdir -p $DIR/$tdir
7149         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7150                skip "no early lock cancel on server" && return 0
7151         lru_resize_disable mdc
7152         lru_resize_disable osc
7153         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7154         touch $DIR/$tdir/d1/f1
7155         cancel_lru_locks mdc
7156         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7157         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7158         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7159         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7160         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7161         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7162         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7163         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7164         lru_resize_enable mdc
7165         lru_resize_enable osc
7166 }
7167 run_test 120c "Early Lock Cancel: link test"
7168
7169 test_120d() {
7170         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7171         test_mkdir -p $DIR/$tdir
7172         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7173                skip "no early lock cancel on server" && return 0
7174         lru_resize_disable mdc
7175         lru_resize_disable osc
7176         touch $DIR/$tdir
7177         cancel_lru_locks mdc
7178         stat $DIR/$tdir > /dev/null
7179         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7180         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7181         chmod a+x $DIR/$tdir
7182         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7183         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7184         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7185         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7186         lru_resize_enable mdc
7187         lru_resize_enable osc
7188 }
7189 run_test 120d "Early Lock Cancel: setattr test"
7190
7191 test_120e() {
7192         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7193         test_mkdir -p $DIR/$tdir
7194         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7195                skip "no early lock cancel on server" && return 0
7196         lru_resize_disable mdc
7197         lru_resize_disable osc
7198         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7199         cancel_lru_locks mdc
7200         cancel_lru_locks osc
7201         dd if=$DIR/$tdir/f1 of=/dev/null
7202         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7203         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7204               awk '/ldlm_cancel/ {print $2}'`
7205         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7206               awk '/ldlm_bl_callback/ {print $2}'`
7207         unlink $DIR/$tdir/f1
7208         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7209               awk '/ldlm_cancel/ {print $2}'`
7210         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7211               awk '/ldlm_bl_callback/ {print $2}'`
7212         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7213         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7214         lru_resize_enable mdc
7215         lru_resize_enable osc
7216 }
7217 run_test 120e "Early Lock Cancel: unlink test"
7218
7219 test_120f() {
7220         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7221         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7222                skip "no early lock cancel on server" && return 0
7223         test_mkdir -p $DIR/$tdir
7224         lru_resize_disable mdc
7225         lru_resize_disable osc
7226         test_mkdir -p $DIR/$tdir/d1 $DIR/$tdir/d2
7227         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7228         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7229         cancel_lru_locks mdc
7230         cancel_lru_locks osc
7231         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7232         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7233         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7234         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7235               awk '/ldlm_cancel/ {print $2}'`
7236         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7237               awk '/ldlm_bl_callback/ {print $2}'`
7238         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7239         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7240               awk '/ldlm_cancel/ {print $2}'`
7241         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7242               awk '/ldlm_bl_callback/ {print $2}'`
7243         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7244         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7245         lru_resize_enable mdc
7246         lru_resize_enable osc
7247 }
7248 run_test 120f "Early Lock Cancel: rename test"
7249
7250 test_120g() {
7251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7252         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7253                skip "no early lock cancel on server" && return 0
7254         lru_resize_disable mdc
7255         lru_resize_disable osc
7256         count=10000
7257         echo create $count files
7258         test_mkdir -p $DIR/$tdir
7259         cancel_lru_locks mdc
7260         cancel_lru_locks osc
7261         t0=`date +%s`
7262
7263         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7264               awk '/ldlm_cancel/ {print $2}'`
7265         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7266               awk '/ldlm_bl_callback/ {print $2}'`
7267         createmany -o $DIR/$tdir/f $count
7268         sync
7269         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7270               awk '/ldlm_cancel/ {print $2}'`
7271         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7272               awk '/ldlm_bl_callback/ {print $2}'`
7273         t1=`date +%s`
7274         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7275         echo rm $count files
7276         rm -r $DIR/$tdir
7277         sync
7278         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7279               awk '/ldlm_cancel/ {print $2}'`
7280         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7281               awk '/ldlm_bl_callback/ {print $2}'`
7282         t2=`date +%s`
7283         echo total: $count removes in $((t2-t1))
7284         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7285         sleep 2
7286         # wait for commitment of removal
7287         lru_resize_enable mdc
7288         lru_resize_enable osc
7289 }
7290 run_test 120g "Early Lock Cancel: performance test"
7291
7292 test_121() { #bug #10589
7293         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7294         rm -rf $DIR/$tfile
7295         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7296 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7297         lctl set_param fail_loc=0x310
7298         cancel_lru_locks osc > /dev/null
7299         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7300         lctl set_param fail_loc=0
7301         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7302 }
7303 run_test 121 "read cancel race ========="
7304
7305 test_123a() { # was test 123, statahead(bug 11401)
7306         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7307         SLOWOK=0
7308         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7309             log "testing on UP system. Performance may be not as good as expected."
7310                         SLOWOK=1
7311         fi
7312
7313         rm -rf $DIR/$tdir
7314         test_mkdir -p $DIR/$tdir
7315         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7316         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7317         MULT=10
7318         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7319                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7320
7321                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7322                 lctl set_param -n llite.*.statahead_max 0
7323                 lctl get_param llite.*.statahead_max
7324                 cancel_lru_locks mdc
7325                 cancel_lru_locks osc
7326                 stime=`date +%s`
7327                 time ls -l $DIR/$tdir | wc -l
7328                 etime=`date +%s`
7329                 delta=$((etime - stime))
7330                 log "ls $i files without statahead: $delta sec"
7331                 lctl set_param llite.*.statahead_max=$max
7332
7333                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7334                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7335                 cancel_lru_locks mdc
7336                 cancel_lru_locks osc
7337                 stime=`date +%s`
7338                 time ls -l $DIR/$tdir | wc -l
7339                 etime=`date +%s`
7340                 delta_sa=$((etime - stime))
7341                 log "ls $i files with statahead: $delta_sa sec"
7342                 lctl get_param -n llite.*.statahead_stats
7343                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7344
7345                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7346                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7347
7348                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7349                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7350                     lctl set_param -n llite.*.statahead_max 0
7351                     lctl get_param llite.*.statahead_max
7352                     cancel_lru_locks mdc
7353                     cancel_lru_locks osc
7354                     stime=`date +%s`
7355                     time ls -l $DIR/$tdir | wc -l
7356                     etime=`date +%s`
7357                     delta=$((etime - stime))
7358                     log "ls $i files again without statahead: $delta sec"
7359                     lctl set_param llite.*.statahead_max=$max
7360                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7361                         if [  $SLOWOK -eq 0 ]; then
7362                                 error "ls $i files is slower with statahead!"
7363                         else
7364                                 log "ls $i files is slower with statahead!"
7365                         fi
7366                         break
7367                     fi
7368                 fi
7369
7370                 [ $delta -gt 20 ] && break
7371                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7372                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7373         done
7374         log "ls done"
7375
7376         stime=`date +%s`
7377         rm -r $DIR/$tdir
7378         sync
7379         etime=`date +%s`
7380         delta=$((etime - stime))
7381         log "rm -r $DIR/$tdir/: $delta seconds"
7382         log "rm done"
7383         lctl get_param -n llite.*.statahead_stats
7384 }
7385 run_test 123a "verify statahead work"
7386
7387 test_123b () { # statahead(bug 15027)
7388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7389         test_mkdir -p $DIR/$tdir
7390         createmany -o $DIR/$tdir/$tfile-%d 1000
7391
7392         cancel_lru_locks mdc
7393         cancel_lru_locks osc
7394
7395 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7396         lctl set_param fail_loc=0x80000803
7397         ls -lR $DIR/$tdir > /dev/null
7398         log "ls done"
7399         lctl set_param fail_loc=0x0
7400         lctl get_param -n llite.*.statahead_stats
7401         rm -r $DIR/$tdir
7402         sync
7403
7404 }
7405 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7406
7407 test_124a() {
7408         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7409         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7410                skip "no lru resize on server" && return 0
7411         local NR=2000
7412         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7413
7414         log "create $NR files at $DIR/$tdir"
7415         createmany -o $DIR/$tdir/f $NR ||
7416                 error "failed to create $NR files in $DIR/$tdir"
7417
7418         cancel_lru_locks mdc
7419         ls -l $DIR/$tdir > /dev/null
7420
7421         local NSDIR=""
7422         local LRU_SIZE=0
7423         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7424                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7425                 LRU_SIZE=$(lctl get_param -n $PARAM)
7426                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7427                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7428                                                 log "NSDIR=$NSDIR"
7429                         log "NS=$(basename $NSDIR)"
7430                         break
7431                 fi
7432         done
7433
7434         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7435                 skip "Not enough cached locks created!"
7436                 return 0
7437         fi
7438         log "LRU=$LRU_SIZE"
7439
7440         local SLEEP=30
7441
7442         # We know that lru resize allows one client to hold $LIMIT locks
7443         # for 10h. After that locks begin to be killed by client.
7444         local MAX_HRS=10
7445         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7446                 log "LIMIT=$LIMIT"
7447
7448         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7449         # killing locks. Some time was spent for creating locks. This means
7450         # that up to the moment of sleep finish we must have killed some of
7451         # them (10-100 locks). This depends on how fast ther were created.
7452         # Many of them were touched in almost the same moment and thus will
7453         # be killed in groups.
7454         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7455
7456         # Use $LRU_SIZE_B here to take into account real number of locks
7457         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7458         local LRU_SIZE_B=$LRU_SIZE
7459         log "LVF=$LVF"
7460         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7461                 log "OLD_LVF=$OLD_LVF"
7462         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7463
7464         # Let's make sure that we really have some margin. Client checks
7465         # cached locks every 10 sec.
7466         SLEEP=$((SLEEP+20))
7467         log "Sleep ${SLEEP} sec"
7468         local SEC=0
7469         while ((SEC<$SLEEP)); do
7470                 echo -n "..."
7471                 sleep 5
7472                 SEC=$((SEC+5))
7473                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7474                 echo -n "$LRU_SIZE"
7475         done
7476         echo ""
7477         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7478         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7479
7480         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7481                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7482                 unlinkmany $DIR/$tdir/f $NR
7483                 return
7484         }
7485
7486         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7487         log "unlink $NR files at $DIR/$tdir"
7488         unlinkmany $DIR/$tdir/f $NR
7489 }
7490 run_test 124a "lru resize ======================================="
7491
7492 get_max_pool_limit()
7493 {
7494         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7495         local max=0
7496         for l in $limit; do
7497                 if test $l -gt $max; then
7498                         max=$l
7499                 fi
7500         done
7501         echo $max
7502 }
7503
7504 test_124b() {
7505         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7506         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7507                skip "no lru resize on server" && return 0
7508
7509         LIMIT=`get_max_pool_limit`
7510
7511         NR=$(($(default_lru_size)*20))
7512         if [ $NR -gt $LIMIT ]; then
7513                 log "Limit lock number by $LIMIT locks"
7514                 NR=$LIMIT
7515         fi
7516         lru_resize_disable mdc
7517         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7518                 error "failed to create $DIR/$tdir/disable_lru_resize"
7519
7520         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7521         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7522         cancel_lru_locks mdc
7523         stime=`date +%s`
7524         PID=""
7525         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7526         PID="$PID $!"
7527         sleep 2
7528         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7529         PID="$PID $!"
7530         sleep 2
7531         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7532         PID="$PID $!"
7533         wait $PID
7534         etime=`date +%s`
7535         nolruresize_delta=$((etime-stime))
7536         log "ls -la time: $nolruresize_delta seconds"
7537         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7538         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7539
7540         lru_resize_enable mdc
7541         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7542                 error "failed to create $DIR/$tdir/enable_lru_resize"
7543
7544         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7545         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7546         cancel_lru_locks mdc
7547         stime=`date +%s`
7548         PID=""
7549         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7550         PID="$PID $!"
7551         sleep 2
7552         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7553         PID="$PID $!"
7554         sleep 2
7555         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7556         PID="$PID $!"
7557         wait $PID
7558         etime=`date +%s`
7559         lruresize_delta=$((etime-stime))
7560         log "ls -la time: $lruresize_delta seconds"
7561         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7562
7563         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7564                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7565         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7566                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7567         else
7568                 log "lru resize performs the same with no lru resize"
7569         fi
7570         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7571 }
7572 run_test 124b "lru resize (performance test) ======================="
7573
7574 test_125() { # 13358
7575         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7576         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7577         test_mkdir -p $DIR/d125 || error "mkdir failed"
7578         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7579         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7580         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7581 }
7582 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7583
7584 test_126() { # bug 12829/13455
7585         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7586         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7587         $GSS && skip "must run as gss disabled" && return
7588
7589         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7590         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7591         rm -f $DIR/$tfile
7592         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7593 }
7594 run_test 126 "check that the fsgid provided by the client is taken into account"
7595
7596 test_127a() { # bug 15521
7597         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7598         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7599         $LCTL set_param osc.*.stats=0
7600         FSIZE=$((2048 * 1024))
7601         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7602         cancel_lru_locks osc
7603         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7604
7605         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7606         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7607                 echo "got $COUNT $NAME"
7608                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7609                 eval $NAME=$COUNT || error "Wrong proc format"
7610
7611                 case $NAME in
7612                         read_bytes|write_bytes)
7613                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7614                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7615                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7616                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7617                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7618                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7619                                 error "sumsquare is too small: $SUMSQ"
7620                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7621                                 error "sumsquare is too big: $SUMSQ"
7622                         ;;
7623                         *) ;;
7624                 esac
7625         done < $DIR/${tfile}.tmp
7626
7627         #check that we actually got some stats
7628         [ "$read_bytes" ] || error "Missing read_bytes stats"
7629         [ "$write_bytes" ] || error "Missing write_bytes stats"
7630         [ "$read_bytes" != 0 ] || error "no read done"
7631         [ "$write_bytes" != 0 ] || error "no write done"
7632 }
7633 run_test 127a "verify the client stats are sane"
7634
7635 test_127b() { # bug LU-333
7636         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7637         $LCTL set_param llite.*.stats=0
7638         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7639         # perform 2 reads and writes so MAX is different from SUM.
7640         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7641         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7642         cancel_lru_locks osc
7643         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7644         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7645
7646         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7647         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7648                 echo "got $COUNT $NAME"
7649                 eval $NAME=$COUNT || error "Wrong proc format"
7650
7651         case $NAME in
7652                 read_bytes)
7653                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7654                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7655                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7656                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7657                         ;;
7658                 write_bytes)
7659                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7660                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7661                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7662                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7663                         ;;
7664                         *) ;;
7665                 esac
7666         done < $TMP/${tfile}.tmp
7667
7668         #check that we actually got some stats
7669         [ "$read_bytes" ] || error "Missing read_bytes stats"
7670         [ "$write_bytes" ] || error "Missing write_bytes stats"
7671         [ "$read_bytes" != 0 ] || error "no read done"
7672         [ "$write_bytes" != 0 ] || error "no write done"
7673 }
7674 run_test 127b "verify the llite client stats are sane"
7675
7676 test_128() { # bug 15212
7677         touch $DIR/$tfile
7678         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7679                 find $DIR/$tfile
7680                 find $DIR/$tfile
7681         EOF
7682
7683         result=$(grep error $TMP/$tfile.log)
7684         rm -f $DIR/$tfile
7685         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7686 }
7687 run_test 128 "interactive lfs for 2 consecutive find's"
7688
7689 set_dir_limits () {
7690         local mntdev
7691         local canondev
7692         local node
7693
7694         local LDPROC=/proc/fs/ldiskfs
7695         local facets=$(get_facets MDS)
7696
7697         for facet in ${facets//,/ }; do
7698                 canondev=$(ldiskfs_canon \
7699                            *.$(convert_facet2label $facet).mntdev $facet)
7700                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7701                                                 LDPROC=/sys/fs/ldiskfs
7702                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7703         done
7704 }
7705
7706 test_129() {
7707         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7708         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7709                 skip "Only applicable to ldiskfs-based MDTs"
7710                 return
7711         fi
7712         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7713
7714         EFBIG=27
7715         MAX=16384
7716
7717         set_dir_limits $MAX
7718         test_mkdir -p $DIR/$tdir
7719
7720         local I=0
7721         local J=0
7722         while [ ! $I -gt $((MAX * MDSCOUNT)) ]; do
7723                 $MULTIOP $DIR/$tdir/$J Oc
7724                 rc=$?
7725                 if [ $rc -eq $EFBIG ]; then
7726                         set_dir_limits 0
7727                         echo "return code $rc received as expected"
7728                         return 0
7729                 elif [ $rc -ne 0 ]; then
7730                         set_dir_limits 0
7731                         error_exit "return code $rc received instead of expected $EFBIG"
7732                 fi
7733                 J=$((J+1))
7734                 I=$(stat -c%s "$DIR/$tdir")
7735         done
7736
7737         set_dir_limits 0
7738         error "exceeded dir size limit $MAX x $MDSCOUNT $((MAX * MDSCOUNT)) : $I bytes"
7739 }
7740 run_test 129 "test directory size limit ========================"
7741
7742 OLDIFS="$IFS"
7743 cleanup_130() {
7744         trap 0
7745         IFS="$OLDIFS"
7746 }
7747
7748 test_130a() {
7749         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7750         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7751                 return
7752
7753         trap cleanup_130 EXIT RETURN
7754
7755         local fm_file=$DIR/$tfile
7756         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7757         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7758                 error "dd failed for $fm_file"
7759
7760         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7761         filefrag -ves $fm_file
7762         RC=$?
7763         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7764                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7765         [ $RC != 0 ] && error "filefrag $fm_file failed"
7766
7767         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7768                       grep -v "ext:" | grep -v "found")
7769         lun=$($GETSTRIPE -i $fm_file)
7770
7771         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7772         IFS=$'\n'
7773         tot_len=0
7774         for line in $filefrag_op
7775         do
7776                 frag_lun=`echo $line | cut -d: -f5`
7777                 ext_len=`echo $line | cut -d: -f4`
7778                 if (( $frag_lun != $lun )); then
7779                         cleanup_130
7780                         error "FIEMAP on 1-stripe file($fm_file) failed"
7781                         return
7782                 fi
7783                 (( tot_len += ext_len ))
7784         done
7785
7786         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7787                 cleanup_130
7788                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7789                 return
7790         fi
7791
7792         cleanup_130
7793
7794         echo "FIEMAP on single striped file succeeded"
7795 }
7796 run_test 130a "FIEMAP (1-stripe file)"
7797
7798 test_130b() {
7799         [ "$OSTCOUNT" -lt "2" ] &&
7800                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7801
7802         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7803         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7804                 return
7805
7806         trap cleanup_130 EXIT RETURN
7807
7808         local fm_file=$DIR/$tfile
7809         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7810         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7811                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7812
7813         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7814                 error "dd failed on $fm_file"
7815
7816         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7817         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7818                       grep -v "ext:" | grep -v "found")
7819
7820         last_lun=$(echo $filefrag_op | cut -d: -f5)
7821
7822         IFS=$'\n'
7823         tot_len=0
7824         num_luns=1
7825         for line in $filefrag_op
7826         do
7827                 frag_lun=`echo $line | cut -d: -f5`
7828                 ext_len=`echo $line | cut -d: -f4`
7829                 if (( $frag_lun != $last_lun )); then
7830                         if (( tot_len != 1024 )); then
7831                                 cleanup_130
7832                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7833                                 return
7834                         else
7835                                 (( num_luns += 1 ))
7836                                 tot_len=0
7837                         fi
7838                 fi
7839                 (( tot_len += ext_len ))
7840                 last_lun=$frag_lun
7841         done
7842         if (( num_luns != 2 || tot_len != 1024 )); then
7843                 cleanup_130
7844                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7845                 return
7846         fi
7847
7848         cleanup_130
7849
7850         echo "FIEMAP on 2-stripe file succeeded"
7851 }
7852 run_test 130b "FIEMAP (2-stripe file)"
7853
7854 test_130c() {
7855         [ "$OSTCOUNT" -lt "2" ] &&
7856                 skip_env "skipping FIEMAP on 2-stripe file" && return
7857
7858         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7859         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7860                 return
7861
7862         trap cleanup_130 EXIT RETURN
7863
7864         local fm_file=$DIR/$tfile
7865         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7866         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7867                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7868
7869         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7870
7871         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7872         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7873
7874         last_lun=`echo $filefrag_op | cut -d: -f5`
7875
7876         IFS=$'\n'
7877         tot_len=0
7878         num_luns=1
7879         for line in $filefrag_op
7880         do
7881                 frag_lun=`echo $line | cut -d: -f5`
7882                 ext_len=`echo $line | cut -d: -f4`
7883                 if (( $frag_lun != $last_lun )); then
7884                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7885                         if (( logical != 512 )); then
7886                                 cleanup_130
7887                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7888                                 return
7889                         fi
7890                         if (( tot_len != 512 )); then
7891                                 cleanup_130
7892                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7893                                 return
7894                         else
7895                                 (( num_luns += 1 ))
7896                                 tot_len=0
7897                         fi
7898                 fi
7899                 (( tot_len += ext_len ))
7900                 last_lun=$frag_lun
7901         done
7902         if (( num_luns != 2 || tot_len != 512 )); then
7903                 cleanup_130
7904                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7905                 return
7906         fi
7907
7908         cleanup_130
7909
7910         echo "FIEMAP on 2-stripe file with hole succeeded"
7911 }
7912 run_test 130c "FIEMAP (2-stripe file with hole)"
7913
7914 test_130d() {
7915         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
7916
7917         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7918         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7919
7920         trap cleanup_130 EXIT RETURN
7921
7922         local fm_file=$DIR/$tfile
7923         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
7924         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7925                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7926         dd if=/dev/zero of=$fm_file bs=1M count=$OSTCOUNT || error "dd failed on $fm_file"
7927
7928         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7929         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7930
7931         last_lun=`echo $filefrag_op | cut -d: -f5`
7932
7933         IFS=$'\n'
7934         tot_len=0
7935         num_luns=1
7936         for line in $filefrag_op
7937         do
7938                 frag_lun=`echo $line | cut -d: -f5`
7939                 ext_len=`echo $line | cut -d: -f4`
7940                 if (( $frag_lun != $last_lun )); then
7941                         if (( tot_len != 1024 )); then
7942                                 cleanup_130
7943                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
7944                                 return
7945                         else
7946                                 (( num_luns += 1 ))
7947                                 tot_len=0
7948                         fi
7949                 fi
7950                 (( tot_len += ext_len ))
7951                 last_lun=$frag_lun
7952         done
7953         if (( num_luns != OSTCOUNT || tot_len != 1024 )); then
7954                 cleanup_130
7955                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7956                 return
7957         fi
7958
7959         cleanup_130
7960
7961         echo "FIEMAP on N-stripe file succeeded"
7962 }
7963 run_test 130d "FIEMAP (N-stripe file)"
7964
7965 test_130e() {
7966         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
7967
7968         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7969         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
7970
7971         trap cleanup_130 EXIT RETURN
7972
7973         local fm_file=$DIR/$tfile
7974         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
7975         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7976                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7977
7978         NUM_BLKS=512
7979         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
7980         for ((i = 0; i < $NUM_BLKS; i++))
7981         do
7982                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
7983         done
7984
7985         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7986         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
7987
7988         last_lun=`echo $filefrag_op | cut -d: -f5`
7989
7990         IFS=$'\n'
7991         tot_len=0
7992         num_luns=1
7993         for line in $filefrag_op
7994         do
7995                 frag_lun=`echo $line | cut -d: -f5`
7996                 ext_len=`echo $line | cut -d: -f4`
7997                 if (( $frag_lun != $last_lun )); then
7998                         if (( tot_len != $EXPECTED_LEN )); then
7999                                 cleanup_130
8000                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8001                                 return
8002                         else
8003                                 (( num_luns += 1 ))
8004                                 tot_len=0
8005                         fi
8006                 fi
8007                 (( tot_len += ext_len ))
8008                 last_lun=$frag_lun
8009         done
8010         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8011                 cleanup_130
8012                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8013                 return
8014         fi
8015
8016         cleanup_130
8017
8018         echo "FIEMAP with continuation calls succeeded"
8019 }
8020 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8021
8022 # Test for writev/readv
8023 test_131a() {
8024         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8025         error "writev test failed"
8026         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8027         error "readv failed"
8028         rm -f $DIR/$tfile
8029 }
8030 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8031
8032 test_131b() {
8033         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8034         error "append writev test failed"
8035         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8036         error "append writev test failed"
8037         rm -f $DIR/$tfile
8038 }
8039 run_test 131b "test append writev"
8040
8041 test_131c() {
8042         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8043         error "NOT PASS"
8044 }
8045 run_test 131c "test read/write on file w/o objects"
8046
8047 test_131d() {
8048         rwv -f $DIR/$tfile -w -n 1 1572864
8049         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8050         if [ "$NOB" != 1572864 ]; then
8051                 error "Short read filed: read $NOB bytes instead of 1572864"
8052         fi
8053         rm -f $DIR/$tfile
8054 }
8055 run_test 131d "test short read"
8056
8057 test_131e() {
8058         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8059         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8060         error "read hitting hole failed"
8061         rm -f $DIR/$tfile
8062 }
8063 run_test 131e "test read hitting hole"
8064
8065 get_ost_param() {
8066         local token=$1
8067         local gl_sum=0
8068         for node in $(osts_nodes); do
8069                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8070                 [ x$gl = x"" ] && gl=0
8071                 gl_sum=$((gl_sum + gl))
8072         done
8073         echo $gl_sum
8074 }
8075
8076 som_mode_switch() {
8077         local som=$1
8078         local gl1=$2
8079         local gl2=$3
8080
8081         if [ x$som = x"enabled" ]; then
8082                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8083                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8084                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8085         else
8086                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8087                 MOUNTOPT="$MOUNTOPT,som_preview"
8088                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8089         fi
8090
8091         # do remount to make new mount-conf parameters actual
8092         echo remounting...
8093         sync
8094         stopall
8095         setupall
8096 }
8097
8098 test_132() { #1028, SOM
8099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8100         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8101         local num=$(get_mds_dir $DIR)
8102         local mymds=mds${num}
8103         local MOUNTOPT_SAVE=$MOUNTOPT
8104
8105         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8106         cancel_lru_locks osc
8107
8108         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8109
8110         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8111         stat $DIR/$tfile >/dev/null
8112         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8113         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8114         rm $DIR/$tfile
8115         som_mode_switch $som1 $gl1 $gl2
8116
8117         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8118         cancel_lru_locks osc
8119
8120         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8121         if [ $som1 == $som2 ]; then
8122             error "som is still "$som2
8123             if [ x$som2 = x"enabled" ]; then
8124                 som2="disabled"
8125             else
8126                 som2="enabled"
8127             fi
8128         fi
8129
8130         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8131         stat $DIR/$tfile >/dev/null
8132         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8133         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8134         som_mode_switch $som2 $gl1 $gl2
8135         MOUNTOPT=$MOUNTOPT_SAVE
8136 }
8137 run_test 132 "som avoids glimpse rpc"
8138
8139 check_stats() {
8140         local res
8141         local count
8142         case $1 in
8143         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8144                  ;;
8145         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8146                  ;;
8147         *) error "Wrong argument $1" ;;
8148         esac
8149         echo $res
8150         count=`echo $res | awk '{print $2}'`
8151         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8152         # if the argument $3 is zero, it means any stat increment is ok.
8153         if [ $3 -gt 0 ] ; then
8154                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8155         fi
8156 }
8157
8158 test_133a() {
8159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8160         remote_ost_nodsh && skip "remote OST with nodsh" && return
8161         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8162
8163         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8164                 { skip "MDS doesn't support rename stats"; return; }
8165         local testdir=$DIR/${tdir}/stats_testdir
8166         mkdir -p $DIR/${tdir}
8167
8168         # clear stats.
8169         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8170         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8171
8172         # verify mdt stats first.
8173         mkdir ${testdir} || error "mkdir failed"
8174         check_stats $SINGLEMDS "mkdir" 1
8175         touch ${testdir}/${tfile} || "touch failed"
8176         check_stats $SINGLEMDS "open" 1
8177         check_stats $SINGLEMDS "close" 1
8178         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8179         check_stats $SINGLEMDS "mknod" 1
8180         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8181         check_stats $SINGLEMDS "unlink" 1
8182         rm -f ${testdir}/${tfile} || error "file remove failed"
8183         check_stats $SINGLEMDS "unlink" 2
8184
8185         # remove working dir and check mdt stats again.
8186         rmdir ${testdir} || error "rmdir failed"
8187         check_stats $SINGLEMDS "rmdir" 1
8188
8189         local testdir1=$DIR/${tdir}/stats_testdir1
8190         mkdir -p ${testdir}
8191         mkdir -p ${testdir1}
8192         touch ${testdir1}/test1
8193         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8194         check_stats $SINGLEMDS "crossdir_rename" 1
8195
8196         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8197         check_stats $SINGLEMDS "samedir_rename" 1
8198
8199         rm -rf $DIR/${tdir}
8200 }
8201 run_test 133a "Verifying MDT stats ========================================"
8202
8203 test_133b() {
8204         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8205         remote_ost_nodsh && skip "remote OST with nodsh" && return
8206         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8207         local testdir=$DIR/${tdir}/stats_testdir
8208         mkdir -p ${testdir} || error "mkdir failed"
8209         touch ${testdir}/${tfile} || "touch failed"
8210         cancel_lru_locks mdc
8211
8212         # clear stats.
8213         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8214         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8215
8216         # extra mdt stats verification.
8217         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8218         check_stats $SINGLEMDS "setattr" 1
8219         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8220         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8221         then            # LU-1740
8222                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8223                 check_stats $SINGLEMDS "getattr" 1
8224         fi
8225         $LFS df || error "lfs failed"
8226         check_stats $SINGLEMDS "statfs" 1
8227
8228         rm -rf $DIR/${tdir}
8229 }
8230 run_test 133b "Verifying extra MDT stats =================================="
8231
8232 test_133c() {
8233         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8234         remote_ost_nodsh && skip "remote OST with nodsh" && return
8235         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8236         local testdir=$DIR/${tdir}/stats_testdir
8237         test_mkdir -p ${testdir} || error "mkdir failed"
8238
8239         # verify obdfilter stats.
8240         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8241         sync
8242         cancel_lru_locks osc
8243         wait_delete_completed
8244
8245         # clear stats.
8246         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8247         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8248
8249         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8250         sync
8251         cancel_lru_locks osc
8252         check_stats ost "write" 1
8253
8254         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8255         check_stats ost "read" 1
8256
8257         > ${testdir}/${tfile} || error "truncate failed"
8258         check_stats ost "punch" 1
8259
8260         rm -f ${testdir}/${tfile} || error "file remove failed"
8261         wait_delete_completed
8262         check_stats ost "destroy" 1
8263
8264         rm -rf $DIR/${tdir}
8265 }
8266 run_test 133c "Verifying OST stats ========================================"
8267
8268 order_2() {
8269     local value=$1
8270     local orig=$value
8271     local order=1
8272
8273     while [ $value -ge 2 ]; do
8274         order=$((order*2))
8275         value=$((value/2))
8276     done
8277
8278     if [ $orig -gt $order ]; then
8279         order=$((order*2))
8280     fi
8281     echo $order
8282 }
8283
8284 size_in_KMGT() {
8285     local value=$1
8286     local size=('K' 'M' 'G' 'T');
8287     local i=0
8288     local size_string=$value
8289
8290     while [ $value -ge 1024 ]; do
8291         if [ $i -gt 3 ]; then
8292             #T is the biggest unit we get here, if that is bigger,
8293             #just return XXXT
8294             size_string=${value}T
8295             break
8296         fi
8297         value=$((value >> 10))
8298         if [ $value -lt 1024 ]; then
8299             size_string=${value}${size[$i]}
8300             break
8301         fi
8302         i=$((i + 1))
8303     done
8304
8305     echo $size_string
8306 }
8307
8308 get_rename_size() {
8309     local size=$1
8310     local context=${2:-.}
8311     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8312                 grep -A1 $context |
8313                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8314     echo $sample
8315 }
8316
8317 test_133d() {
8318         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8319         remote_ost_nodsh && skip "remote OST with nodsh" && return
8320         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8321         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8322         { skip "MDS doesn't support rename stats"; return; }
8323
8324         local testdir1=$DIR/${tdir}/stats_testdir1
8325         local testdir2=$DIR/${tdir}/stats_testdir2
8326
8327         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8328
8329         mkdir -p ${testdir1} || error "mkdir failed"
8330         mkdir -p ${testdir2} || error "mkdir failed"
8331
8332         createmany -o $testdir1/test 512 || error "createmany failed"
8333
8334         # check samedir rename size
8335         mv ${testdir1}/test0 ${testdir1}/test_0
8336
8337         local testdir1_size=$(ls -l $DIR/${tdir} |
8338                 awk '/stats_testdir1/ {print $5}')
8339         local testdir2_size=$(ls -l $DIR/${tdir} |
8340                 awk '/stats_testdir2/ {print $5}')
8341
8342         testdir1_size=$(order_2 $testdir1_size)
8343         testdir2_size=$(order_2 $testdir2_size)
8344
8345         testdir1_size=$(size_in_KMGT $testdir1_size)
8346         testdir2_size=$(size_in_KMGT $testdir2_size)
8347
8348         echo "source rename dir size: ${testdir1_size}"
8349         echo "target rename dir size: ${testdir2_size}"
8350
8351         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8352         eval $cmd || error "$cmd failed"
8353         local samedir=$($cmd | grep 'same_dir')
8354         local same_sample=$(get_rename_size $testdir1_size)
8355         [ -z "$samedir" ] && error "samedir_rename_size count error"
8356         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8357         echo "Check same dir rename stats success"
8358
8359         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8360
8361         # check crossdir rename size
8362         mv ${testdir1}/test_0 ${testdir2}/test_0
8363
8364         testdir1_size=$(ls -l $DIR/${tdir} |
8365                 awk '/stats_testdir1/ {print $5}')
8366         testdir2_size=$(ls -l $DIR/${tdir} |
8367                 awk '/stats_testdir2/ {print $5}')
8368
8369         testdir1_size=$(order_2 $testdir1_size)
8370         testdir2_size=$(order_2 $testdir2_size)
8371
8372         testdir1_size=$(size_in_KMGT $testdir1_size)
8373         testdir2_size=$(size_in_KMGT $testdir2_size)
8374
8375         echo "source rename dir size: ${testdir1_size}"
8376         echo "target rename dir size: ${testdir2_size}"
8377
8378         eval $cmd || error "$cmd failed"
8379         local crossdir=$($cmd | grep 'crossdir')
8380         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8381         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8382         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8383         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8384         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8385         echo "Check cross dir rename stats success"
8386         rm -rf $DIR/${tdir}
8387 }
8388 run_test 133d "Verifying rename_stats ========================================"
8389
8390 test_133e() {
8391         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8392         local testdir=$DIR/${tdir}/stats_testdir
8393         local ctr f0 f1 bs=32768 count=42 sum
8394
8395         remote_ost_nodsh && skip "remote OST with nodsh" && return
8396         mkdir -p ${testdir} || error "mkdir failed"
8397
8398         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8399
8400         for ctr in {write,read}_bytes; do
8401                 sync
8402                 cancel_lru_locks osc
8403
8404                 do_facet ost1 $LCTL set_param -n \
8405                         "obdfilter.*.exports.clear=clear"
8406
8407                 if [ $ctr = write_bytes ]; then
8408                         f0=/dev/zero
8409                         f1=${testdir}/${tfile}
8410                 else
8411                         f0=${testdir}/${tfile}
8412                         f1=/dev/null
8413                 fi
8414
8415                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8416                         error "dd failed"
8417                 sync
8418                 cancel_lru_locks osc
8419
8420                 sum=$(do_facet ost1 $LCTL get_param \
8421                                 "obdfilter.*.exports.*.stats" | \
8422                           awk -v ctr=$ctr '\
8423                                 BEGIN { sum = 0 }
8424                                 $1 == ctr { sum += $7 }
8425                                 END { print sum }')
8426
8427                 if ((sum != bs * count)); then
8428                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8429                 fi
8430         done
8431
8432         rm -rf $DIR/${tdir}
8433 }
8434 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8435
8436 test_133f() {
8437         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8438         local facet
8439
8440         # First without trusting modes.
8441         find $proc_dirs \
8442                 -exec cat '{}' \; &> /dev/null
8443
8444         # Second verifying readability.
8445         find $proc_dirs \
8446                 -type f \
8447                 -readable \
8448                 -exec cat '{}' \; > /dev/null ||
8449                         error "proc file read failed"
8450
8451         for facet in $SINGLEMDS ost1; do
8452                 do_facet $facet find $proc_dirs \
8453                         -not -name req_history \
8454                         -exec cat '{}' \\\; &> /dev/null
8455
8456             do_facet $facet     find $proc_dirs \
8457                         -not -name req_history \
8458                         -type f \
8459                         -readable \
8460                         -exec cat '{}' \\\; > /dev/null ||
8461                                 error "proc file read failed"
8462         done
8463 }
8464 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8465
8466 test_140() { #bug-17379
8467         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8468         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8469         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8470         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8471
8472         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8473         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8474         local i=0
8475         while i=`expr $i + 1`; do
8476                 test_mkdir -p $i || error "Creating dir $i"
8477                 cd $i || error "Changing to $i"
8478                 ln -s ../stat stat || error "Creating stat symlink"
8479                 # Read the symlink until ELOOP present,
8480                 # not LBUGing the system is considered success,
8481                 # we didn't overrun the stack.
8482                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8483                 [ $ret -ne 0 ] && {
8484                         if [ $ret -eq 40 ]; then
8485                                 break  # -ELOOP
8486                         else
8487                                 error "Open stat symlink"
8488                                 return
8489                         fi
8490                 }
8491         done
8492         i=`expr $i - 1`
8493         echo "The symlink depth = $i"
8494         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8495                                         error "Invalid symlink depth"
8496
8497         # Test recursive symlink
8498         ln -s symlink_self symlink_self
8499         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8500         echo "open symlink_self returns $ret"
8501         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8502 }
8503 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8504
8505 test_150() {
8506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8507         local TF="$TMP/$tfile"
8508
8509         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8510         cp $TF $DIR/$tfile
8511         cancel_lru_locks osc
8512         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8513         remount_client $MOUNT
8514         df -P $MOUNT
8515         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8516
8517         $TRUNCATE $TF 6000
8518         $TRUNCATE $DIR/$tfile 6000
8519         cancel_lru_locks osc
8520         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8521
8522         echo "12345" >>$TF
8523         echo "12345" >>$DIR/$tfile
8524         cancel_lru_locks osc
8525         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8526
8527         echo "12345" >>$TF
8528         echo "12345" >>$DIR/$tfile
8529         cancel_lru_locks osc
8530         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8531
8532         rm -f $TF
8533         true
8534 }
8535 run_test 150 "truncate/append tests"
8536
8537 function roc_hit() {
8538         local list=$(comma_list $(osts_nodes))
8539         #debug temp debug for LU-2902: lets see what values we get back
8540         echo $(get_osd_param $list '' stats) 1>&2
8541         echo $(get_osd_param $list '' stats |
8542                awk '/'cache_hit'/ {sum+=$2} END {print sum}')
8543 }
8544
8545 function set_cache() {
8546         local on=1
8547
8548         if [ "$2" == "off" ]; then
8549                 on=0;
8550         fi
8551         local list=$(comma_list $(osts_nodes))
8552         set_osd_param $list '' $1_cache_enable $on
8553
8554         cancel_lru_locks osc
8555 }
8556
8557 test_151() {
8558         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8559         remote_ost_nodsh && skip "remote OST with nodsh" && return
8560
8561         local CPAGES=3
8562         local list=$(comma_list $(osts_nodes))
8563
8564         # check whether obdfilter is cache capable at all
8565         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8566                 echo "not cache-capable obdfilter"
8567                 return 0
8568         fi
8569
8570         # check cache is enabled on all obdfilters
8571         if get_osd_param $list '' read_cache_enable | grep 0; then
8572                 echo "oss cache is disabled"
8573                 return 0
8574         fi
8575
8576         set_osd_param $list '' writethrough_cache_enable 1
8577
8578         # check write cache is enabled on all obdfilters
8579         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8580                 echo "oss write cache is NOT enabled"
8581                 return 0
8582         fi
8583
8584 #define OBD_FAIL_OBD_NO_LRU  0x609
8585         do_nodes $list $LCTL set_param fail_loc=0x609
8586
8587         # pages should be in the case right after write
8588         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8589                 error "dd failed"
8590
8591         local BEFORE=`roc_hit`
8592         cancel_lru_locks osc
8593         cat $DIR/$tfile >/dev/null
8594         local AFTER=`roc_hit`
8595
8596         do_nodes $list $LCTL set_param fail_loc=0
8597
8598         if ! let "AFTER - BEFORE == CPAGES"; then
8599                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8600         fi
8601
8602         # the following read invalidates the cache
8603         cancel_lru_locks osc
8604         set_osd_param $list '' read_cache_enable 0
8605         cat $DIR/$tfile >/dev/null
8606
8607         # now data shouldn't be found in the cache
8608         BEFORE=`roc_hit`
8609         cancel_lru_locks osc
8610         cat $DIR/$tfile >/dev/null
8611         AFTER=`roc_hit`
8612         if let "AFTER - BEFORE != 0"; then
8613                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8614         fi
8615
8616         set_osd_param $list '' read_cache_enable 1
8617         rm -f $DIR/$tfile
8618 }
8619 run_test 151 "test cache on oss and controls ==============================="
8620
8621 test_152() {
8622         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8623         local TF="$TMP/$tfile"
8624
8625         # simulate ENOMEM during write
8626 #define OBD_FAIL_OST_NOMEM      0x226
8627         lctl set_param fail_loc=0x80000226
8628         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8629         cp $TF $DIR/$tfile
8630         sync || error "sync failed"
8631         lctl set_param fail_loc=0
8632
8633         # discard client's cache
8634         cancel_lru_locks osc
8635
8636         # simulate ENOMEM during read
8637         lctl set_param fail_loc=0x80000226
8638         cmp $TF $DIR/$tfile || error "cmp failed"
8639         lctl set_param fail_loc=0
8640
8641         rm -f $TF
8642 }
8643 run_test 152 "test read/write with enomem ============================"
8644
8645 test_153() {
8646         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8647 }
8648 run_test 153 "test if fdatasync does not crash ======================="
8649
8650 dot_lustre_fid_permission_check() {
8651         local fid=$1
8652         local ffid=$MOUNT/.lustre/fid/$fid
8653         local test_dir=$2
8654
8655         echo "stat fid $fid"
8656         stat $ffid > /dev/null || error "stat $ffid failed."
8657         echo "touch fid $fid"
8658         touch $ffid || error "touch $ffid failed."
8659         echo "write to fid $fid"
8660         cat /etc/hosts > $ffid || error "write $ffid failed."
8661         echo "read fid $fid"
8662         diff /etc/hosts $ffid || error "read $ffid failed."
8663         echo "append write to fid $fid"
8664         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8665         echo "rename fid $fid"
8666         mv $ffid $test_dir/$tfile.1 &&
8667                 error "rename $ffid to $tfile.1 should fail."
8668         touch $test_dir/$tfile.1
8669         mv $test_dir/$tfile.1 $ffid &&
8670                 error "rename $tfile.1 to $ffid should fail."
8671         rm -f $test_dir/$tfile.1
8672         echo "truncate fid $fid"
8673         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8674         echo "link fid $fid"
8675         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8676         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8677                 echo "setfacl fid $fid"
8678                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8679                 echo "getfacl fid $fid"
8680                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8681         fi
8682         echo "unlink fid $fid"
8683         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8684         echo "mknod fid $fid"
8685         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8686
8687         fid=[0xf00000400:0x1:0x0]
8688         ffid=$MOUNT/.lustre/fid/$fid
8689
8690         echo "stat non-exist fid $fid"
8691         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8692         echo "write to non-exist fid $fid"
8693         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8694         echo "link new fid $fid"
8695         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8696
8697         mkdir -p $test_dir/$tdir
8698         touch $test_dir/$tdir/$tfile
8699         fid=$($LFS path2fid $test_dir/$tdir)
8700         rc=$?
8701         [ $rc -ne 0 ] &&
8702                 error "error: could not get fid for $test_dir/$dir/$tfile."
8703
8704         ffid=$MOUNT/.lustre/fid/$fid
8705
8706         echo "ls $fid"
8707         ls $ffid > /dev/null || error "ls $ffid failed."
8708         echo "touch $fid/$tfile.1"
8709         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8710
8711         echo "touch $MOUNT/.lustre/fid/$tfile"
8712         touch $MOUNT/.lustre/fid/$tfile && \
8713                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8714
8715         echo "setxattr to $MOUNT/.lustre/fid"
8716         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8717
8718         echo "listxattr for $MOUNT/.lustre/fid"
8719         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8720
8721         echo "delxattr from $MOUNT/.lustre/fid"
8722         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8723
8724         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8725         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8726                 error "touch invalid fid should fail."
8727
8728         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8729         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8730                 error "touch non-normal fid should fail."
8731
8732         echo "rename $tdir to $MOUNT/.lustre/fid"
8733         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8734                 error "rename to $MOUNT/.lustre/fid should fail."
8735
8736         echo "rename .lustre to itself"
8737         fid=$($LFS path2fid $MOUNT)
8738         mrename $MOUNT/.lustre $MOUNT/.lustre/fid/$fid/.lustre &&
8739                 error "rename .lustre to itself should fail."
8740
8741         local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8742         local new_obf_mode=777
8743
8744         echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8745         chmod $new_obf_mode $DIR/.lustre/fid ||
8746                 error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8747
8748         local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8749         [ $obf_mode -eq $new_obf_mode ] ||
8750                 error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8751
8752         echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8753         chmod $old_obf_mode $DIR/.lustre/fid ||
8754                 error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8755
8756         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8757         fid=$($LFS path2fid $test_dir/$tfile-2)
8758         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8759         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8760                 error "create lov data thru .lustre should fail."
8761         echo "cp /etc/passwd $test_dir/$tfile-2"
8762         cp /etc/passwd $test_dir/$tfile-2 ||
8763                 error "copy to $test_dir/$tfile-2 failed."
8764         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8765         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8766                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8767
8768         rm -rf $test_dir/tfile.lnk
8769         rm -rf $test_dir/$tfile-2
8770 }
8771
8772 test_154a() {
8773         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8774         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8775                 { skip "Need MDS version at least 2.2.51"; return 0; }
8776
8777         cp /etc/hosts $DIR/$tfile
8778
8779         fid=$($LFS path2fid $DIR/$tfile)
8780         rc=$?
8781         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8782
8783         dot_lustre_fid_permission_check "$fid" $DIR ||
8784                 error "dot lustre permission check $fid failed"
8785
8786         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8787
8788         touch $MOUNT/.lustre/file &&
8789                 error "creation is not allowed under .lustre"
8790
8791         mkdir $MOUNT/.lustre/dir &&
8792                 error "mkdir is not allowed under .lustre"
8793
8794         rm -rf $DIR/$tfile
8795 }
8796 run_test 154a "Open-by-FID"
8797
8798 test_154b() {
8799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8800         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8801                 { skip "Need MDS version at least 2.2.51"; return 0; }
8802
8803         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
8804
8805         local remote_dir=$DIR/$tdir/remote_dir
8806         local MDTIDX=1
8807         local rc=0
8808
8809         mkdir -p $DIR/$tdir
8810         $LFS mkdir -i $MDTIDX $remote_dir ||
8811                 error "create remote directory failed"
8812
8813         cp /etc/hosts $remote_dir/$tfile
8814
8815         fid=$($LFS path2fid $remote_dir/$tfile)
8816         rc=$?
8817         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
8818
8819         dot_lustre_fid_permission_check "$fid" $remote_dir ||
8820                 error "dot lustre permission check $fid failed"
8821         rm -rf $DIR/$tdir
8822 }
8823 run_test 154b "Open-by-FID for remote directory"
8824
8825 test_155_small_load() {
8826     local temp=$TMP/$tfile
8827     local file=$DIR/$tfile
8828
8829     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
8830         error "dd of=$temp bs=6096 count=1 failed"
8831     cp $temp $file
8832     cancel_lru_locks osc
8833     cmp $temp $file || error "$temp $file differ"
8834
8835     $TRUNCATE $temp 6000
8836     $TRUNCATE $file 6000
8837     cmp $temp $file || error "$temp $file differ (truncate1)"
8838
8839     echo "12345" >>$temp
8840     echo "12345" >>$file
8841     cmp $temp $file || error "$temp $file differ (append1)"
8842
8843     echo "12345" >>$temp
8844     echo "12345" >>$file
8845     cmp $temp $file || error "$temp $file differ (append2)"
8846
8847     rm -f $temp $file
8848     true
8849 }
8850
8851 test_155_big_load() {
8852     remote_ost_nodsh && skip "remote OST with nodsh" && return
8853     local temp=$TMP/$tfile
8854     local file=$DIR/$tfile
8855
8856     free_min_max
8857     local cache_size=$(do_facet ost$((MAXI+1)) \
8858         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
8859     local large_file_size=$((cache_size * 2))
8860
8861     echo "OSS cache size: $cache_size KB"
8862     echo "Large file size: $large_file_size KB"
8863
8864     [ $MAXV -le $large_file_size ] && \
8865         skip_env "max available OST size needs > $large_file_size KB" && \
8866         return 0
8867
8868     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
8869
8870     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
8871         error "dd of=$temp bs=$large_file_size count=1k failed"
8872     cp $temp $file
8873     ls -lh $temp $file
8874     cancel_lru_locks osc
8875     cmp $temp $file || error "$temp $file differ"
8876
8877     rm -f $temp $file
8878     true
8879 }
8880
8881 test_155a() {
8882         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8883         set_cache read on
8884         set_cache writethrough on
8885         test_155_small_load
8886 }
8887 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
8888
8889 test_155b() {
8890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8891         set_cache read on
8892         set_cache writethrough off
8893         test_155_small_load
8894 }
8895 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
8896
8897 test_155c() {
8898         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8899         set_cache read off
8900         set_cache writethrough on
8901         test_155_small_load
8902 }
8903 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
8904
8905 test_155d() {
8906         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8907         set_cache read off
8908         set_cache writethrough off
8909         test_155_small_load
8910 }
8911 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
8912
8913 test_155e() {
8914         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8915         set_cache read on
8916         set_cache writethrough on
8917         test_155_big_load
8918 }
8919 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
8920
8921 test_155f() {
8922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8923         set_cache read on
8924         set_cache writethrough off
8925         test_155_big_load
8926 }
8927 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
8928
8929 test_155g() {
8930         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8931         set_cache read off
8932         set_cache writethrough on
8933         test_155_big_load
8934 }
8935 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
8936
8937 test_155h() {
8938         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8939         set_cache read off
8940         set_cache writethrough off
8941         test_155_big_load
8942 }
8943 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
8944
8945 test_156() {
8946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8947         local CPAGES=3
8948         local BEFORE
8949         local AFTER
8950         local file="$DIR/$tfile"
8951
8952         [ "$(facet_fstype ost1)" = "zfs" ] &&
8953                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
8954                 return
8955
8956     log "Turn on read and write cache"
8957     set_cache read on
8958     set_cache writethrough on
8959
8960     log "Write data and read it back."
8961     log "Read should be satisfied from the cache."
8962     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
8963     BEFORE=`roc_hit`
8964     cancel_lru_locks osc
8965     cat $file >/dev/null
8966     AFTER=`roc_hit`
8967     if ! let "AFTER - BEFORE == CPAGES"; then
8968         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8969     else
8970         log "cache hits:: before: $BEFORE, after: $AFTER"
8971     fi
8972
8973     log "Read again; it should be satisfied from the cache."
8974     BEFORE=$AFTER
8975     cancel_lru_locks osc
8976     cat $file >/dev/null
8977     AFTER=`roc_hit`
8978     if ! let "AFTER - BEFORE == CPAGES"; then
8979         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8980     else
8981         log "cache hits:: before: $BEFORE, after: $AFTER"
8982     fi
8983
8984
8985     log "Turn off the read cache and turn on the write cache"
8986     set_cache read off
8987     set_cache writethrough on
8988
8989     log "Read again; it should be satisfied from the cache."
8990     BEFORE=`roc_hit`
8991     cancel_lru_locks osc
8992     cat $file >/dev/null
8993     AFTER=`roc_hit`
8994     if ! let "AFTER - BEFORE == CPAGES"; then
8995         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8996     else
8997         log "cache hits:: before: $BEFORE, after: $AFTER"
8998     fi
8999
9000     log "Read again; it should not be satisfied from the cache."
9001     BEFORE=$AFTER
9002     cancel_lru_locks osc
9003     cat $file >/dev/null
9004     AFTER=`roc_hit`
9005     if ! let "AFTER - BEFORE == 0"; then
9006         error "IN CACHE: before: $BEFORE, after: $AFTER"
9007     else
9008         log "cache hits:: before: $BEFORE, after: $AFTER"
9009     fi
9010
9011     log "Write data and read it back."
9012     log "Read should be satisfied from the cache."
9013     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9014     BEFORE=`roc_hit`
9015     cancel_lru_locks osc
9016     cat $file >/dev/null
9017     AFTER=`roc_hit`
9018     if ! let "AFTER - BEFORE == CPAGES"; then
9019         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9020     else
9021         log "cache hits:: before: $BEFORE, after: $AFTER"
9022     fi
9023
9024     log "Read again; it should not be satisfied from the cache."
9025     BEFORE=$AFTER
9026     cancel_lru_locks osc
9027     cat $file >/dev/null
9028     AFTER=`roc_hit`
9029     if ! let "AFTER - BEFORE == 0"; then
9030         error "IN CACHE: before: $BEFORE, after: $AFTER"
9031     else
9032         log "cache hits:: before: $BEFORE, after: $AFTER"
9033     fi
9034
9035
9036     log "Turn off read and write cache"
9037     set_cache read off
9038     set_cache writethrough off
9039
9040     log "Write data and read it back"
9041     log "It should not be satisfied from the cache."
9042     rm -f $file
9043     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9044     cancel_lru_locks osc
9045     BEFORE=`roc_hit`
9046     cat $file >/dev/null
9047     AFTER=`roc_hit`
9048     if ! let "AFTER - BEFORE == 0"; then
9049         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9050     else
9051         log "cache hits:: before: $BEFORE, after: $AFTER"
9052     fi
9053
9054
9055     log "Turn on the read cache and turn off the write cache"
9056     set_cache read on
9057     set_cache writethrough off
9058
9059     log "Write data and read it back"
9060     log "It should not be satisfied from the cache."
9061     rm -f $file
9062     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9063     BEFORE=`roc_hit`
9064     cancel_lru_locks osc
9065     cat $file >/dev/null
9066     AFTER=`roc_hit`
9067     if ! let "AFTER - BEFORE == 0"; then
9068         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9069     else
9070         log "cache hits:: before: $BEFORE, after: $AFTER"
9071     fi
9072
9073     log "Read again; it should be satisfied from the cache."
9074     BEFORE=`roc_hit`
9075     cancel_lru_locks osc
9076     cat $file >/dev/null
9077     AFTER=`roc_hit`
9078     if ! let "AFTER - BEFORE == CPAGES"; then
9079         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9080     else
9081         log "cache hits:: before: $BEFORE, after: $AFTER"
9082     fi
9083
9084     rm -f $file
9085 }
9086 run_test 156 "Verification of tunables ============================"
9087
9088 #Changelogs
9089 err17935 () {
9090     if [ $MDSCOUNT -gt 1 ]; then
9091         error_ignore 17935 $*
9092     else
9093         error $*
9094     fi
9095 }
9096
9097 changelog_chmask()
9098 {
9099     MASK=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_mask |\
9100            grep -c $1)
9101
9102     if [ $MASK -eq 1 ]; then
9103         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="-$1"
9104     else
9105         do_facet $SINGLEMDS $LCTL set_param mdd.$MDT0.changelog_mask="+$1"
9106     fi
9107 }
9108
9109 test_160() {
9110         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9111     remote_mds_nodsh && skip "remote MDS with nodsh" && return
9112     [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9113         { skip "Need MDS version at least 2.2.0"; return; }
9114     USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9115     echo "Registered as changelog user $USER"
9116     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
9117         grep -q $USER || error "User $USER not found in changelog_users"
9118
9119     # change something
9120     test_mkdir -p $DIR/$tdir/pics/2008/zachy
9121     touch $DIR/$tdir/pics/2008/zachy/timestamp
9122     cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9123     mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9124     ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9125     ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9126     rm $DIR/$tdir/pics/desktop.jpg
9127
9128     $LFS changelog $MDT0 | tail -5
9129
9130     echo "verifying changelog mask"
9131     changelog_chmask "MKDIR"
9132     changelog_chmask "CLOSE"
9133
9134     test_mkdir -p $DIR/$tdir/pics/zach/sofia
9135     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9136
9137     changelog_chmask "MKDIR"
9138     changelog_chmask "CLOSE"
9139
9140     test_mkdir -p $DIR/$tdir/pics/2008/sofia
9141     echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9142
9143     $LFS changelog $MDT0
9144     MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9145     CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9146     [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9147     [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9148
9149     # verify contents
9150     echo "verifying target fid"
9151     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
9152         tail -1 | awk '{print $6}')
9153     fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9154     [ "$fidc" == "t=$fidf" ] || \
9155         err17935 "fid in changelog $fidc != file fid $fidf"
9156     echo "verifying parent fid"
9157     fidc=$($LFS changelog $MDT0 | grep timestamp | grep "CREAT" | \
9158         tail -1 | awk '{print $7}')
9159     fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9160     [ "$fidc" == "p=$fidf" ] || \
9161         err17935 "pfid in changelog $fidc != dir fid $fidf"
9162
9163     USER_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
9164         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
9165     $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9166     USER_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
9167         mdd.$MDT0.changelog_users | grep $USER | awk '{print $2}')
9168     echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9169     [ $USER_REC2 == $(($USER_REC1 + 5)) ] || \
9170         err17935 "user index should be $(($USER_REC1 + 5)); is $USER_REC2"
9171
9172     MIN_REC=$(do_facet $SINGLEMDS $LCTL get_param mdd.$MDT0.changelog_users | \
9173         awk 'min == "" || $2 < min {min = $2}; END {print min}')
9174     FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9175     echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9176     [ $FIRST_REC == $(($MIN_REC + 1)) ] || \
9177         err17935 "first index should be $(($MIN_REC + 1)); is $FIRST_REC"
9178
9179     echo "verifying user deregister"
9180     do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9181     do_facet $SINGLEMDS $LCTL get_param -n mdd.$MDT0.changelog_users | \
9182         grep -q $USER && error "User $USER still found in changelog_users"
9183
9184     USERS=$(( $(do_facet $SINGLEMDS $LCTL get_param -n \
9185         mdd.$MDT0.changelog_users | wc -l) - 2 ))
9186     if [ $USERS -eq 0 ]; then
9187         LAST_REC1=$(do_facet $SINGLEMDS $LCTL get_param -n \
9188             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9189         touch $DIR/$tdir/chloe
9190         LAST_REC2=$(do_facet $SINGLEMDS $LCTL get_param -n \
9191             mdd.$MDT0.changelog_users | head -1 | awk '{print $3}')
9192         echo "verify changelogs are off if we were the only user: $LAST_REC1 == $LAST_REC2"
9193         [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9194     else
9195         echo "$USERS other changelog users; can't verify off"
9196     fi
9197 }
9198 run_test 160 "changelog sanity"
9199
9200 test_161a() {
9201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9202     test_mkdir -p $DIR/$tdir
9203     cp /etc/hosts $DIR/$tdir/$tfile
9204     test_mkdir $DIR/$tdir/foo1
9205     test_mkdir $DIR/$tdir/foo2
9206     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9207     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9208     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9209     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9210         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9211         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9212                 $LFS fid2path $DIR $FID
9213                 err17935 "bad link ea"
9214         fi
9215     # middle
9216     rm $DIR/$tdir/foo2/zachary
9217     # last
9218     rm $DIR/$tdir/foo2/thor
9219     # first
9220     rm $DIR/$tdir/$tfile
9221     # rename
9222     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9223     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9224         then
9225         $LFS fid2path $DIR $FID
9226         err17935 "bad link rename"
9227     fi
9228     rm $DIR/$tdir/foo2/maggie
9229
9230     # overflow the EA
9231     local longname=filename_avg_len_is_thirty_two_
9232     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9233         error "failed to hardlink many files"
9234     links=$($LFS fid2path $DIR $FID | wc -l)
9235     echo -n "${links}/1000 links in link EA"
9236     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9237     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9238         error "failed to unlink many hardlinks"
9239 }
9240 run_test 161a "link ea sanity"
9241
9242 test_161b() {
9243         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9244         [ $MDSCOUNT -lt 2 ] &&
9245                 skip "skipping remote directory test" && return
9246         local MDTIDX=1
9247         local remote_dir=$DIR/$tdir/remote_dir
9248
9249         mkdir -p $DIR/$tdir
9250         $LFS mkdir -i $MDTIDX $remote_dir ||
9251                 error "create remote directory failed"
9252
9253         cp /etc/hosts $remote_dir/$tfile
9254         mkdir -p $remote_dir/foo1
9255         mkdir -p $remote_dir/foo2
9256         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9257         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9258         ln $remote_dir/$tfile $remote_dir/foo1/luna
9259         ln $remote_dir/$tfile $remote_dir/foo2/thor
9260
9261         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9262                      tr -d ']')
9263         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9264                 $LFS fid2path $DIR $FID
9265                 err17935 "bad link ea"
9266         fi
9267         # middle
9268         rm $remote_dir/foo2/zachary
9269         # last
9270         rm $remote_dir/foo2/thor
9271         # first
9272         rm $remote_dir/$tfile
9273         # rename
9274         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9275         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9276         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9277                 $LFS fid2path $DIR $FID
9278                 err17935 "bad link rename"
9279         fi
9280         rm $remote_dir/foo2/maggie
9281
9282         # overflow the EA
9283         local longname=filename_avg_len_is_thirty_two_
9284         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9285                 error "failed to hardlink many files"
9286         links=$($LFS fid2path $DIR $FID | wc -l)
9287         echo -n "${links}/1000 links in link EA"
9288         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9289         unlinkmany $remote_dir/foo2/$longname 1000 ||
9290         error "failed to unlink many hardlinks"
9291 }
9292 run_test 161b "link ea sanity under remote directory"
9293
9294 check_path() {
9295     local expected=$1
9296     shift
9297     local fid=$2
9298
9299     local path=$(${LFS} fid2path $*)
9300     RC=$?
9301
9302     if [ $RC -ne 0 ]; then
9303         err17935 "path looked up of $expected failed. Error $RC"
9304         return $RC
9305     elif [ "${path}" != "${expected}" ]; then
9306         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9307         return 2
9308     fi
9309     echo "fid $fid resolves to path $path (expected $expected)"
9310 }
9311
9312 test_162() {
9313         # Make changes to filesystem
9314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9315         test_mkdir -p $DIR/$tdir/d2
9316         touch $DIR/$tdir/d2/$tfile
9317         touch $DIR/$tdir/d2/x1
9318         touch $DIR/$tdir/d2/x2
9319         test_mkdir -p $DIR/$tdir/d2/a/b/c
9320         test_mkdir -p $DIR/$tdir/d2/p/q/r
9321         # regular file
9322         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9323         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9324
9325         # softlink
9326         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9327         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9328         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9329
9330         # softlink to wrong file
9331         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9332         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9333         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9334
9335         # hardlink
9336         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9337         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9338         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9339         # fid2path dir/fsname should both work
9340         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9341         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9342
9343         # hardlink count: check that there are 2 links
9344         # Doesnt work with CMD yet: 17935
9345         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9346                 err17935 "expected 2 links"
9347
9348         # hardlink indexing: remove the first link
9349         rm $DIR/$tdir/d2/p/q/r/hlink
9350         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9351
9352         return 0
9353 }
9354 run_test 162 "path lookup sanity"
9355
9356 test_163() {
9357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9358         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9359         copytool --test $FSNAME || { skip "copytool not runnable: $?" && return; }
9360         copytool $FSNAME &
9361         sleep 1
9362         local uuid=$($LCTL get_param -n mdc.${FSNAME}-MDT0000-mdc-*.uuid)
9363         # this proc file is temporary and linux-only
9364         do_facet $SINGLEMDS lctl set_param mdt.${FSNAME}-MDT0000.mdccomm=$uuid ||\
9365          error "kernel->userspace send failed"
9366         kill -INT $!
9367 }
9368 run_test 163 "kernel <-> userspace comms"
9369
9370 test_169() {
9371         # do directio so as not to populate the page cache
9372         log "creating a 10 Mb file"
9373         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9374         log "starting reads"
9375         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9376         log "truncating the file"
9377         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9378         log "killing dd"
9379         kill %+ || true # reads might have finished
9380         echo "wait until dd is finished"
9381         wait
9382         log "removing the temporary file"
9383         rm -rf $DIR/$tfile || error "tmp file removal failed"
9384 }
9385 run_test 169 "parallel read and truncate should not deadlock"
9386
9387 test_170() {
9388         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9389         $LCTL clear     # bug 18514
9390         $LCTL debug_daemon start $TMP/${tfile}_log_good
9391         touch $DIR/$tfile
9392         $LCTL debug_daemon stop
9393         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9394                error "sed failed to read log_good"
9395
9396         $LCTL debug_daemon start $TMP/${tfile}_log_good
9397         rm -rf $DIR/$tfile
9398         $LCTL debug_daemon stop
9399
9400         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9401                error "lctl df log_bad failed"
9402
9403         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9404         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9405
9406         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9407         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9408
9409         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9410                 error "bad_line good_line1 good_line2 are empty"
9411
9412         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9413         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9414         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9415
9416         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9417         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9418         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9419
9420         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9421                 error "bad_line_new good_line_new are empty"
9422
9423         local expected_good=$((good_line1 + good_line2*2))
9424
9425         rm -f $TMP/${tfile}*
9426         # LU-231, short malformed line may not be counted into bad lines
9427         if [ $bad_line -ne $bad_line_new ] &&
9428                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9429                 error "expected $bad_line bad lines, but got $bad_line_new"
9430                 return 1
9431         fi
9432
9433         if [ $expected_good -ne $good_line_new ]; then
9434                 error "expected $expected_good good lines, but got $good_line_new"
9435                 return 2
9436         fi
9437         true
9438 }
9439 run_test 170 "test lctl df to handle corrupted log ====================="
9440
9441 test_171() { # bug20592
9442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9443 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9444         $LCTL set_param fail_loc=0x50e
9445         $LCTL set_param fail_val=3000
9446         multiop_bg_pause $DIR/$tfile O_s || true
9447         local MULTIPID=$!
9448         kill -USR1 $MULTIPID
9449         # cause log dump
9450         sleep 3
9451         wait $MULTIPID
9452         if dmesg | grep "recursive fault"; then
9453                 error "caught a recursive fault"
9454         fi
9455         $LCTL set_param fail_loc=0
9456         true
9457 }
9458 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9459
9460 # it would be good to share it with obdfilter-survey/libecho code
9461 setup_obdecho_osc () {
9462         local rc=0
9463         local ost_nid=$1
9464         local obdfilter_name=$2
9465         echo "Creating new osc for $obdfilter_name on $ost_nid"
9466         # make sure we can find loopback nid
9467         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9468
9469         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9470                            ${obdfilter_name}_osc_UUID || rc=2; }
9471         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9472                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9473         return $rc
9474 }
9475
9476 cleanup_obdecho_osc () {
9477         local obdfilter_name=$1
9478         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9479         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9480         return 0
9481 }
9482
9483 obdecho_create_test() {
9484         local OBD=$1
9485         local node=$2
9486         local rc=0
9487         local id
9488         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9489         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9490                            rc=2; }
9491         if [ $rc -eq 0 ]; then
9492             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9493             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9494         fi
9495         echo "New object id is $id"
9496         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec test_brw 10 w v 64 $id" ||
9497                            rc=4; }
9498         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9499                                         "cleanup" || rc=5; }
9500         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9501                                         "detach" || rc=6; }
9502         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9503         return $rc
9504 }
9505
9506 test_180a() {
9507         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9508         remote_ost_nodsh && skip "remote OST with nodsh" && return
9509         local rc=0
9510         local rmmod_local=0
9511
9512         if ! module_loaded obdecho; then
9513             load_module obdecho/obdecho
9514             rmmod_local=1
9515         fi
9516
9517         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9518         local host=$(lctl get_param -n osc.$osc.import |
9519                              awk '/current_connection:/ {print $2}' )
9520         local target=$(lctl get_param -n osc.$osc.import |
9521                              awk '/target:/ {print $2}' )
9522         target=${target%_UUID}
9523
9524         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9525         [ $rc -eq 0 ] && { obdecho_create_test ${target}_osc client || rc=2; }
9526         [[ -n $target ]] && cleanup_obdecho_osc $target
9527         [ $rmmod_local -eq 1 ] && rmmod obdecho
9528         return $rc
9529 }
9530 run_test 180a "test obdecho on osc"
9531
9532 test_180b() {
9533         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9534         remote_ost_nodsh && skip "remote OST with nodsh" && return
9535         local rc=0
9536         local rmmod_remote=0
9537
9538         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9539                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9540                       "modprobe obdecho; }" && rmmod_remote=1
9541         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9542         [[ -n $target ]] && { obdecho_create_test $target ost1 || rc=1; }
9543         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9544         return $rc
9545 }
9546 run_test 180b "test obdecho directly on obdfilter"
9547
9548 test_181() { # bug 22177
9549         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9550         # create enough files to index the directory
9551         createmany -o $DIR/$tdir/foobar 4000
9552         # print attributes for debug purpose
9553         lsattr -d .
9554         # open dir
9555         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9556         MULTIPID=$!
9557         # remove the files & current working dir
9558         unlinkmany $DIR/$tdir/foobar 4000
9559         rmdir $DIR/$tdir
9560         kill -USR1 $MULTIPID
9561         wait $MULTIPID
9562         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9563         return 0
9564 }
9565 run_test 181 "Test open-unlinked dir ========================"
9566
9567 test_182() {
9568         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9569         # disable MDC RPC lock wouldn't crash client
9570         local fcount=1000
9571         local tcount=4
9572
9573         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9574 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9575         $LCTL set_param fail_loc=0x804
9576
9577         for (( i=0; i < $tcount; i++ )) ; do
9578                 mkdir $DIR/$tdir/$i
9579                 createmany -o $DIR/$tdir/$i/f- $fcount &
9580         done
9581         wait
9582
9583         for (( i=0; i < $tcount; i++ )) ; do
9584                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9585         done
9586         wait
9587
9588         rm -rf $DIR/$tdir
9589
9590         $LCTL set_param fail_loc=0
9591 }
9592 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9593
9594 test_183() { # LU-2275
9595         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9596         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9597         echo aaa > $DIR/$tdir/$tfile
9598
9599 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9600         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9601
9602         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9603         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9604
9605         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9606
9607         # Flush negative dentry cache
9608         touch $DIR/$tdir/$tfile
9609
9610         # We are not checking for any leaked references here, they'll
9611         # become evident next time we do cleanup with module unload.
9612         rm -rf $DIR/$tdir
9613 }
9614 run_test 183 "No crash or request leak in case of strange dispositions ========"
9615
9616 # test suite 184 is for LU-2016, LU-2017
9617 test_184a() {
9618         check_swap_layouts_support && return 0
9619
9620         dir0=$DIR/$tdir/$testnum
9621         test_mkdir -p $dir0 || error "creating dir $dir0"
9622         ref1=/etc/passwd
9623         ref2=/etc/group
9624         file1=$dir0/f1
9625         file2=$dir0/f2
9626         $SETSTRIPE -c1 $file1
9627         cp $ref1 $file1
9628         $SETSTRIPE -c2 $file2
9629         cp $ref2 $file2
9630         gen1=$($GETSTRIPE -g $file1)
9631         gen2=$($GETSTRIPE -g $file2)
9632
9633         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
9634         gen=$($GETSTRIPE -g $file1)
9635         [[ $gen1 != $gen ]] ||
9636                 "Layout generation on $file1 does not change"
9637         gen=$($GETSTRIPE -g $file2)
9638         [[ $gen2 != $gen ]] ||
9639                 "Layout generation on $file2 does not change"
9640
9641         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
9642         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
9643 }
9644 run_test 184a "Basic layout swap"
9645
9646 test_184b() {
9647         check_swap_layouts_support && return 0
9648
9649         dir0=$DIR/$tdir/$testnum
9650         mkdir -p $dir0 || error "creating dir $dir0"
9651         file1=$dir0/f1
9652         file2=$dir0/f2
9653         file3=$dir0/f3
9654         dir1=$dir0/d1
9655         dir2=$dir0/d2
9656         mkdir $dir1 $dir2
9657         $SETSTRIPE -c1 $file1
9658         $SETSTRIPE -c2 $file2
9659         $SETSTRIPE -c1 $file3
9660         chown $RUNAS_ID $file3
9661         gen1=$($GETSTRIPE -g $file1)
9662         gen2=$($GETSTRIPE -g $file2)
9663
9664         $LFS swap_layouts $dir1 $dir2 &&
9665                 error "swap of directories layouts should fail"
9666         $LFS swap_layouts $dir1 $file1 &&
9667                 error "swap of directory and file layouts should fail"
9668         $RUNAS $LFS swap_layouts $file1 $file2 &&
9669                 error "swap of file we cannot write should fail"
9670         $LFS swap_layouts $file1 $file3 &&
9671                 error "swap of file with different owner should fail"
9672         /bin/true # to clear error code
9673 }
9674 run_test 184b "Forbidden layout swap (will generate errors)"
9675
9676 test_184c() {
9677         check_swap_layouts_support && return 0
9678
9679         local dir0=$DIR/$tdir/$testnum
9680         mkdir -p $dir0 || error "creating dir $dir0"
9681
9682         local ref1=$dir0/ref1
9683         local ref2=$dir0/ref2
9684         local file1=$dir0/file1
9685         local file2=$dir0/file2
9686         # create a file large enough for the concurent test
9687         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
9688         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
9689         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
9690
9691         cp $ref2 $file2
9692         dd if=$ref1 of=$file1 bs=16k &
9693         local DD_PID=$!
9694
9695         # Make sure dd starts to copy file
9696         while [ ! -f $file1 ]; do sleep 0.1; done
9697
9698         $LFS swap_layouts $file1 $file2
9699         local rc=$?
9700         wait $DD_PID
9701         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
9702         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
9703
9704         # how many bytes copied before swapping layout
9705         local copied=`stat -c %s $file2`
9706         local remaining=`stat -c %s $ref1`
9707         remaining=$((remaining - copied))
9708         echo "Copied $copied bytes before swapping layout..."
9709
9710         cmp -n $copied $file1 $ref2 | grep differ &&
9711                 error "Content mismatch [0, $copied) of ref2 and file1"
9712         cmp -n $copied $file2 $ref1 ||
9713                 error "Content mismatch [0, $copied) of ref1 and file2"
9714         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
9715                 error "Content mismatch [$copied, EOF) of ref1 and file1"
9716
9717         # clean up
9718         rm -f $ref1 $ref2 $file1 $file2
9719 }
9720 run_test 184c "Concurrent write and layout swap"
9721
9722 test_185() { # LU-2441
9723         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9724         touch $DIR/$tdir/spoo
9725         local mtime1=$(stat -c "%Y" $DIR/$tdir)
9726         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
9727                 error "cannot create/write a volatile file"
9728         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
9729                 error "FID is still valid after close"
9730
9731         multiop_bg_pause $DIR/$tdir vVw4096_c
9732         local multi_pid=$!
9733
9734         local OLD_IFS=$IFS
9735         IFS=":"
9736         local fidv=($fid)
9737         IFS=$OLD_IFS
9738         # assume that the next FID for this client is sequential, since stdout
9739         # is unfortunately eaten by multiop_bg_pause
9740         local n=$((${fidv[1]} + 1))
9741         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
9742         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
9743                 error "FID is missing before close"
9744         kill -USR1 $multi_pid
9745         # 1 second delay, so if mtime change we will see it
9746         sleep 1
9747         local mtime2=$(stat -c "%Y" $DIR/$tdir)
9748         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
9749 }
9750 run_test 185 "Volatile file support"
9751
9752 # OST pools tests
9753 check_file_in_pool()
9754 {
9755         local file=$1
9756         local pool=$2
9757         local tlist="$3"
9758         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
9759         for i in $res
9760         do
9761                 for t in $tlist ; do
9762                         [ "$i" -eq "$t" ] && continue 2
9763                 done
9764
9765                 echo "pool list: $tlist"
9766                 echo "striping: $res"
9767                 error_noexit "$file not allocated in $pool"
9768                 return 1
9769         done
9770         return 0
9771 }
9772
9773 pool_add() {
9774         echo "Creating new pool"
9775         local pool=$1
9776
9777         create_pool $FSNAME.$pool ||
9778                 { error_noexit "No pool created, result code $?"; return 1; }
9779         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
9780                 { error_noexit "$pool not in lfs pool_list"; return 2; }
9781 }
9782
9783 pool_add_targets() {
9784         echo "Adding targets to pool"
9785         local pool=$1
9786         local first=$2
9787         local last=$3
9788         local step=${4:-1}
9789
9790         local list=$(seq $first $step $last)
9791
9792         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
9793         do_facet mgs $LCTL pool_add \
9794                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
9795         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
9796                         | sort -u | tr '\n' ' ' " "$t" || { 
9797                 error_noexit "Add to pool failed"
9798                 return 1
9799         }
9800         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
9801         local addcount=$(((last - first) / step + 1))
9802         [ $lfscount -eq $addcount ] || {
9803                 error_noexit "lfs pool_list bad ost count" \
9804                                                 "$lfscount != $addcount"
9805                 return 2
9806         }
9807 }
9808
9809 pool_set_dir() {
9810         local pool=$1
9811         local tdir=$2
9812         echo "Setting pool on directory $tdir"
9813
9814         $SETSTRIPE -c 2 -p $pool $tdir && return 0
9815
9816         error_noexit "Cannot set pool $pool to $tdir"
9817         return 1
9818 }
9819
9820 pool_check_dir() {
9821         local pool=$1
9822         local tdir=$2
9823         echo "Checking pool on directory $tdir"
9824
9825         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
9826         [ "$res" = "$pool" ] && return 0
9827
9828         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
9829         return 1
9830 }
9831
9832 pool_dir_rel_path() {
9833         echo "Testing relative path works well"
9834         local pool=$1
9835         local tdir=$2
9836         local root=$3
9837
9838         mkdir -p $root/$tdir/$tdir
9839         cd $root/$tdir
9840         pool_set_dir $pool $tdir          || return 1
9841         pool_set_dir $pool ./$tdir        || return 2
9842         pool_set_dir $pool ../$tdir       || return 3
9843         pool_set_dir $pool ../$tdir/$tdir || return 4
9844         rm -rf $tdir; cd - > /dev/null
9845 }
9846
9847 pool_alloc_files() {
9848         echo "Checking files allocation from directory pool"
9849         local pool=$1
9850         local tdir=$2
9851         local count=$3
9852         local tlist="$4"
9853
9854         local failed=0
9855         for i in $(seq -w 1 $count)
9856         do
9857                 local file=$tdir/file-$i
9858                 touch $file
9859                 check_file_in_pool $file $pool "$tlist" || \
9860                         failed=$((failed + 1))
9861         done
9862         [ "$failed" = 0 ] && return 0
9863
9864         error_noexit "$failed files not allocated in $pool"
9865         return 1
9866 }
9867
9868 pool_create_files() {
9869         echo "Creating files in pool"
9870         local pool=$1
9871         local tdir=$2
9872         local count=$3
9873         local tlist="$4"
9874
9875         mkdir -p $tdir
9876         local failed=0
9877         for i in $(seq -w 1 $count)
9878         do
9879                 local file=$tdir/spoo-$i
9880                 $SETSTRIPE -p $pool $file
9881                 check_file_in_pool $file $pool "$tlist" || \
9882                         failed=$((failed + 1))
9883         done
9884         [ "$failed" = 0 ] && return 0
9885
9886         error_noexit "$failed files not allocated in $pool"
9887         return 1
9888 }
9889
9890 pool_lfs_df() {
9891         echo "Checking 'lfs df' output"
9892         local pool=$1
9893
9894         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
9895                         tr '\n' ' ')
9896         local res=$($LFS df --pool $FSNAME.$pool |
9897                         awk '{print $1}' |
9898                         grep "$FSNAME-OST" |
9899                         tr '\n' ' ')
9900         [ "$res" = "$t" ] && return 0
9901
9902         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
9903         return 1
9904 }
9905
9906 pool_file_rel_path() {
9907         echo "Creating files in a pool with relative pathname"
9908         local pool=$1
9909         local tdir=$2
9910
9911         mkdir -p $tdir ||
9912                 { error_noexit "unable to create $tdir"; return 1 ; }
9913         local file="/..$tdir/$tfile-1"
9914         $SETSTRIPE -p $pool $file ||
9915                 { error_noexit "unable to create $file" ; return 2 ; }
9916
9917         cd $tdir
9918         $SETSTRIPE -p $pool $tfile-2 || {
9919                 error_noexit "unable to create $tfile-2 in $tdir"
9920                 return 3
9921         }
9922 }
9923
9924 pool_remove_first_target() {
9925         echo "Removing first target from a pool"
9926         local pool=$1
9927
9928         local pname="lov.$FSNAME-*.pools.$pool"
9929         local t=$($LCTL get_param -n $pname | head -1)
9930         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9931         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
9932                 error_noexit "$t not removed from $FSNAME.$pool"
9933                 return 1
9934         }
9935 }
9936
9937 pool_remove_all_targets() {
9938         echo "Removing all targets from pool"
9939         local pool=$1
9940         local file=$2
9941         local pname="lov.$FSNAME-*.pools.$pool"
9942         for t in $($LCTL get_param -n $pname | sort -u)
9943         do
9944                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
9945         done
9946         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
9947                 error_noexit "Pool $FSNAME.$pool cannot be drained"
9948                 return 1
9949         }
9950         # striping on an empty/nonexistant pool should fall back 
9951         # to "pool of everything"
9952         touch $file || {
9953                 error_noexit "failed to use fallback striping for empty pool"
9954                 return 2
9955         }
9956         # setstripe on an empty pool should fail
9957         $SETSTRIPE -p $pool $file 2>/dev/null && {
9958                 error_noexit "expected failure when creating file" \
9959                                                         "with empty pool"
9960                 return 3
9961         }
9962         return 0
9963 }
9964
9965 pool_remove() {
9966         echo "Destroying pool"
9967         local pool=$1
9968         local file=$2
9969
9970         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
9971
9972         sleep 2
9973         # striping on an empty/nonexistant pool should fall back 
9974         # to "pool of everything"
9975         touch $file || {
9976                 error_noexit "failed to use fallback striping for missing pool"
9977                 return 1
9978         }
9979         # setstripe on an empty pool should fail
9980         $SETSTRIPE -p $pool $file 2>/dev/null && {
9981                 error_noexit "expected failure when creating file" \
9982                                                         "with missing pool"
9983                 return 2
9984         }
9985
9986         # get param should return err once pool is gone
9987         if wait_update $HOSTNAME "lctl get_param -n \
9988                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
9989         then
9990                 remove_pool_from_list $FSNAME.$pool
9991                 return 0
9992         fi
9993         error_noexit "Pool $FSNAME.$pool is not destroyed"
9994         return 3
9995 }
9996
9997 test_200() {
9998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9999         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10000
10001         local POOL=${POOL:-cea1}
10002         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10003         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10004         # Pool OST targets
10005         local first_ost=0
10006         local last_ost=$(($OSTCOUNT - 1))
10007         local ost_step=2
10008         local ost_list=$(seq $first_ost $ost_step $last_ost)
10009         local ost_range="$first_ost $last_ost $ost_step"
10010         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10011         local file_dir=$POOL_ROOT/file_tst
10012
10013         local rc=0
10014         while : ; do
10015                 # former test_200a test_200b
10016                 pool_add $POOL                          || { rc=$? ; break; }
10017                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10018                 # former test_200c test_200d
10019                 mkdir -p $test_path
10020                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10021                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10022                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10023                                                         || { rc=$? ; break; }
10024                 # former test_200e test_200f
10025                 local files=$((OSTCOUNT*3))
10026                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10027                                                         || { rc=$? ; break; }
10028                 pool_create_files $POOL $file_dir $files "$ost_list" \
10029                                                         || { rc=$? ; break; }
10030                 # former test_200g test_200h
10031                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10032                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10033
10034                 # former test_201a test_201b test_201c
10035                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10036
10037                 local f=$test_path/$tfile
10038                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10039                 pool_remove $POOL $f                    || { rc=$? ; break; }
10040                 break
10041         done
10042
10043         cleanup_pools
10044         return $rc
10045 }
10046 run_test 200 "OST pools"
10047
10048 # usage: default_attr <count | size | offset>
10049 default_attr() {
10050         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10051 }
10052
10053 # usage: check_default_stripe_attr
10054 check_default_stripe_attr() {
10055         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10056         case $1 in
10057         --stripe-count|--count)
10058                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10059         --stripe-size|--size)
10060                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10061         --stripe-index|--index)
10062                 EXPECTED=-1;;
10063         *)
10064                 error "unknown getstripe attr '$1'"
10065         esac
10066
10067         [ $ACTUAL != $EXPECTED ] &&
10068                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10069 }
10070
10071 test_204a() {
10072         test_mkdir -p $DIR/$tdir
10073         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10074
10075         check_default_stripe_attr --stripe-count
10076         check_default_stripe_attr --stripe-size
10077         check_default_stripe_attr --stripe-index
10078
10079         return 0
10080 }
10081 run_test 204a "Print default stripe attributes ================="
10082
10083 test_204b() {
10084         test_mkdir -p $DIR/$tdir
10085         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10086
10087         check_default_stripe_attr --stripe-size
10088         check_default_stripe_attr --stripe-index
10089
10090         return 0
10091 }
10092 run_test 204b "Print default stripe size and offset  ==========="
10093
10094 test_204c() {
10095         test_mkdir -p $DIR/$tdir
10096         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10097
10098         check_default_stripe_attr --stripe-count
10099         check_default_stripe_attr --stripe-index
10100
10101         return 0
10102 }
10103 run_test 204c "Print default stripe count and offset ==========="
10104
10105 test_204d() {
10106         test_mkdir -p $DIR/$tdir
10107         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10108
10109         check_default_stripe_attr --stripe-count
10110         check_default_stripe_attr --stripe-size
10111
10112         return 0
10113 }
10114 run_test 204d "Print default stripe count and size ============="
10115
10116 test_204e() {
10117         test_mkdir -p $DIR/$tdir
10118         $SETSTRIPE -d $DIR/$tdir
10119
10120         check_default_stripe_attr --stripe-count --raw
10121         check_default_stripe_attr --stripe-size --raw
10122         check_default_stripe_attr --stripe-index --raw
10123
10124         return 0
10125 }
10126 run_test 204e "Print raw stripe attributes ================="
10127
10128 test_204f() {
10129         test_mkdir -p $DIR/$tdir
10130         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10131
10132         check_default_stripe_attr --stripe-size --raw
10133         check_default_stripe_attr --stripe-index --raw
10134
10135         return 0
10136 }
10137 run_test 204f "Print raw stripe size and offset  ==========="
10138
10139 test_204g() {
10140         test_mkdir -p $DIR/$tdir
10141         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10142
10143         check_default_stripe_attr --stripe-count --raw
10144         check_default_stripe_attr --stripe-index --raw
10145
10146         return 0
10147 }
10148 run_test 204g "Print raw stripe count and offset ==========="
10149
10150 test_204h() {
10151         test_mkdir -p $DIR/$tdir
10152         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10153
10154         check_default_stripe_attr --stripe-count --raw
10155         check_default_stripe_attr --stripe-size --raw
10156
10157         return 0
10158 }
10159 run_test 204h "Print raw stripe count and size ============="
10160
10161 # Figure out which job scheduler is being used, if any,
10162 # or use a fake one
10163 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10164         JOBENV=SLURM_JOB_ID
10165 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10166         JOBENV=LSB_JOBID
10167 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10168         JOBENV=PBS_JOBID
10169 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10170         JOBENV=LOADL_STEP_ID
10171 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10172         JOBENV=JOB_ID
10173 else
10174         JOBENV=FAKE_JOBID
10175 fi
10176
10177 verify_jobstats() {
10178         local cmd=$1
10179         local target=$2
10180
10181         # clear old jobstats
10182         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10183         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10184
10185         # use a new JobID for this test, or we might see an old one
10186         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10187
10188         JOBVAL=${!JOBENV}
10189         log "Test: $cmd"
10190         log "Using JobID environment variable $JOBENV=$JOBVAL"
10191
10192         if [ $JOBENV = "FAKE_JOBID" ]; then
10193                 FAKE_JOBID=$JOBVAL $cmd
10194         else
10195                 $cmd
10196         fi
10197
10198         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10199                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10200                 do_facet $FACET lctl get_param mdt.*.job_stats |
10201                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10202         fi
10203         if [ "$target" = "ost" -o "$target" = "both" ]; then
10204                 FACET=ost1
10205                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10206                         grep $JOBVAL || error "No job stats found on OST $FACET"
10207         fi
10208 }
10209
10210 jobstats_set() {
10211         trap 0
10212         NEW_JOBENV=${1:-$OLD_JOBENV}
10213         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10214         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10215 }
10216
10217 test_205() { # Job stats
10218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10219         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10220                 skip "Server doesn't support jobstats" && return 0
10221
10222         local cmd
10223         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10224         if [ $OLD_JOBENV != $JOBENV ]; then
10225                 jobstats_set $JOBENV
10226                 trap jobstats_set EXIT
10227         fi
10228
10229         # mkdir
10230         cmd="mkdir $DIR/$tfile"
10231         verify_jobstats "$cmd" "mdt"
10232         # rmdir
10233         cmd="rm -fr $DIR/$tfile"
10234         verify_jobstats "$cmd" "mdt"
10235         # mknod
10236         cmd="mknod $DIR/$tfile c 1 3"
10237         verify_jobstats "$cmd" "mdt"
10238         # unlink
10239         cmd="rm -f $DIR/$tfile"
10240         verify_jobstats "$cmd" "mdt"
10241         # open & close
10242         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10243         verify_jobstats "$cmd" "mdt"
10244         # setattr
10245         cmd="touch $DIR/$tfile"
10246         verify_jobstats "$cmd" "both"
10247         # write
10248         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10249         verify_jobstats "$cmd" "ost"
10250         # read
10251         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10252         verify_jobstats "$cmd" "ost"
10253         # truncate
10254         cmd="$TRUNCATE $DIR/$tfile 0"
10255         verify_jobstats "$cmd" "both"
10256         # rename
10257         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10258         verify_jobstats "$cmd" "mdt"
10259
10260         # cleanup
10261         rm -f $DIR/jobstats_test_rename
10262
10263         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10264 }
10265 run_test 205 "Verify job stats"
10266
10267 # LU-1480, LU-1773 and LU-1657
10268 test_206() {
10269         mkdir -p $DIR/$tdir
10270         lfs setstripe -c -1 $DIR/$tdir
10271 #define OBD_FAIL_LOV_INIT 0x1403
10272         $LCTL set_param fail_loc=0xa0001403
10273         $LCTL set_param fail_val=1
10274         touch $DIR/$tdir/$tfile || true
10275 }
10276 run_test 206 "fail lov_init_raid0() doesn't lbug"
10277
10278 test_207a() {
10279         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10280         local fsz=`stat -c %s $DIR/$tfile`
10281         cancel_lru_locks mdc
10282
10283         # do not return layout in getattr intent
10284 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10285         $LCTL set_param fail_loc=0x170
10286         local sz=`stat -c %s $DIR/$tfile`
10287
10288         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10289
10290         rm -rf $DIR/$tfile
10291 }
10292 run_test 207a "can refresh layout at glimpse"
10293
10294 test_207b() {
10295         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10296         local cksum=`md5sum $DIR/$tfile`
10297         local fsz=`stat -c %s $DIR/$tfile`
10298         cancel_lru_locks mdc
10299         cancel_lru_locks osc
10300
10301         # do not return layout in getattr intent
10302 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10303         $LCTL set_param fail_loc=0x171
10304
10305         # it will refresh layout after the file is opened but before read issues
10306         echo checksum is "$cksum"
10307         echo "$cksum" |md5sum -c --quiet || error "file differs"
10308
10309         rm -rf $DIR/$tfile
10310 }
10311 run_test 207b "can refresh layout at open"
10312
10313 test_212() {
10314         size=`date +%s`
10315         size=$((size % 8192 + 1))
10316         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10317         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10318         rm -f $DIR/f212 $DIR/f212.xyz
10319 }
10320 run_test 212 "Sendfile test ============================================"
10321
10322 test_213() {
10323         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10324         cancel_lru_locks osc
10325         lctl set_param fail_loc=0x8000040f
10326         # generate a read lock
10327         cat $DIR/$tfile > /dev/null
10328         # write to the file, it will try to cancel the above read lock.
10329         cat /etc/hosts >> $DIR/$tfile
10330 }
10331 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10332
10333 test_214() { # for bug 20133
10334         test_mkdir -p $DIR/d214p/d214c
10335         for (( i=0; i < 340; i++ )) ; do
10336                 touch $DIR/d214p/d214c/a$i
10337         done
10338
10339         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
10340         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10341         ls $DIR/d214c || error "ls $DIR/d214c failed"
10342         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10343 }
10344 run_test 214 "hash-indexed directory test - bug 20133"
10345
10346 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10347 create_lnet_proc_files() {
10348         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10349         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10350
10351         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10352         rm -f "$TMP/lnet_$1.sys_tmp"
10353 }
10354
10355 # counterpart of create_lnet_proc_files
10356 remove_lnet_proc_files() {
10357         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10358 }
10359
10360 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10361 # 3rd arg as regexp for body
10362 check_lnet_proc_stats() {
10363         local l=$(cat "$TMP/lnet_$1" |wc -l)
10364         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10365
10366         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10367 }
10368
10369 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10370 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10371 # optional and can be regexp for 2nd line (lnet.routes case)
10372 check_lnet_proc_entry() {
10373         local blp=2            # blp stands for 'position of 1st line of body'
10374         [ "$5" = "" ] || blp=3 # lnet.routes case
10375
10376         local l=$(cat "$TMP/lnet_$1" |wc -l)
10377         # subtracting one from $blp because the body can be empty
10378         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10379
10380         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10381                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10382
10383         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10384                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10385
10386         # bail out if any unexpected line happened
10387         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10388         [ "$?" != 0 ] || error "$2 misformatted"
10389 }
10390
10391 test_215() { # for bugs 18102, 21079, 21517
10392         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10393         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10394         local P='[1-9][0-9]*'           # positive numeric
10395         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10396         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10397         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10398         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10399
10400         local L1 # regexp for 1st line
10401         local L2 # regexp for 2nd line (optional)
10402         local BR # regexp for the rest (body)
10403
10404         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10405         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10406         create_lnet_proc_files "stats"
10407         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10408         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10409         remove_lnet_proc_files "stats"
10410
10411         # /proc/sys/lnet/routes should look like this:
10412         # Routing disabled/enabled
10413         # net hops state router
10414         # where net is a string like tcp0, hops >= 0, state is up/down,
10415         # router is a string like 192.168.1.1@tcp2
10416         L1="^Routing (disabled|enabled)$"
10417         L2="^net +hops +state +router$"
10418         BR="^$NET +$N +(up|down) +$NID$"
10419         create_lnet_proc_files "routes"
10420         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10421         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10422         remove_lnet_proc_files "routes"
10423
10424         # /proc/sys/lnet/routers should look like this:
10425         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10426         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10427         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10428         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10429         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10430         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10431         create_lnet_proc_files "routers"
10432         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10433         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10434         remove_lnet_proc_files "routers"
10435
10436         # /proc/sys/lnet/peers should look like this:
10437         # nid refs state last max rtr min tx min queue
10438         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10439         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10440         # numeric (0 or >0 or <0), queue >= 0.
10441         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10442         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10443         create_lnet_proc_files "peers"
10444         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10445         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10446         remove_lnet_proc_files "peers"
10447
10448         # /proc/sys/lnet/buffers  should look like this:
10449         # pages count credits min
10450         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10451         L1="^pages +count +credits +min$"
10452         BR="^ +$N +$N +$I +$I$"
10453         create_lnet_proc_files "buffers"
10454         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10455         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10456         remove_lnet_proc_files "buffers"
10457
10458         # /proc/sys/lnet/nis should look like this:
10459         # nid status alive refs peer rtr max tx min
10460         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10461         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10462         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10463         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10464         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10465         create_lnet_proc_files "nis"
10466         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10467         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10468         remove_lnet_proc_files "nis"
10469
10470         # can we successfully write to /proc/sys/lnet/stats?
10471         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10472         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10473 }
10474 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10475
10476 test_216() { # bug 20317
10477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10478         remote_ost_nodsh && skip "remote OST with nodsh" && return
10479         local node
10480         local p="$TMP/sanityN-$TESTNAME.parameters"
10481         save_lustre_params $HOSTNAME "osc.*.contention_seconds" > $p
10482         for node in $(osts_nodes); do
10483                 save_lustre_params $node "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10484                 save_lustre_params $node "ldlm.namespaces.filter-*.contended_locks" >> $p
10485                 save_lustre_params $node "ldlm.namespaces.filter-*.contention_seconds" >> $p
10486         done
10487         clear_osc_stats
10488
10489         # agressive lockless i/o settings
10490         for node in $(osts_nodes); do
10491                 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'
10492         done
10493         lctl set_param -n osc.*.contention_seconds 60
10494
10495         $DIRECTIO write $DIR/$tfile 0 10 4096
10496         $CHECKSTAT -s 40960 $DIR/$tfile
10497
10498         # disable lockless i/o
10499         for node in $(osts_nodes); do
10500                 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'
10501         done
10502         lctl set_param -n osc.*.contention_seconds 0
10503         clear_osc_stats
10504
10505         dd if=/dev/zero of=$DIR/$tfile count=0
10506         $CHECKSTAT -s 0 $DIR/$tfile
10507
10508         restore_lustre_params <$p
10509         rm -f $p
10510         rm $DIR/$tfile
10511 }
10512 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10513
10514 test_217() { # bug 22430
10515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10516         local node
10517         local nid
10518
10519         for node in $(nodes_list); do
10520                 nid=$(host_nids_address $node $NETTYPE)
10521                 if [[ $nid = *-* ]] ; then
10522                         echo "lctl ping $nid@$NETTYPE"
10523                         lctl ping $nid@$NETTYPE
10524                 else
10525                         echo "skipping $node (no hyphen detected)"
10526                 fi
10527         done
10528 }
10529 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10530
10531 test_218() {
10532        # do directio so as not to populate the page cache
10533        log "creating a 10 Mb file"
10534        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10535        log "starting reads"
10536        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10537        log "truncating the file"
10538        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10539        log "killing dd"
10540        kill %+ || true # reads might have finished
10541        echo "wait until dd is finished"
10542        wait
10543        log "removing the temporary file"
10544        rm -rf $DIR/$tfile || error "tmp file removal failed"
10545 }
10546 run_test 218 "parallel read and truncate should not deadlock ======================="
10547
10548 test_219() {
10549         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10550         # write one partial page
10551         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
10552         # set no grant so vvp_io_commit_write will do sync write
10553         $LCTL set_param fail_loc=0x411
10554         # write a full page at the end of file
10555         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
10556
10557         $LCTL set_param fail_loc=0
10558         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
10559         $LCTL set_param fail_loc=0x411
10560         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
10561 }
10562 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
10563
10564 test_220() { #LU-325
10565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10566         remote_ost_nodsh && skip "remote OST with nodsh" && return
10567         local OSTIDX=0
10568
10569         test_mkdir -p $DIR/$tdir
10570         local OST=$(lfs osts | grep ${OSTIDX}": " | \
10571                 awk '{print $2}' | sed -e 's/_UUID$//')
10572
10573         # on the mdt's osc
10574         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
10575         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
10576                         osc.$mdtosc_proc1.prealloc_last_id)
10577         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
10578                         osc.$mdtosc_proc1.prealloc_next_id)
10579
10580         $LFS df -i
10581
10582         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
10583         #define OBD_FAIL_OST_ENOINO              0x229
10584         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
10585         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
10586         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
10587
10588         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
10589
10590         MDSOBJS=$((last_id - next_id))
10591         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
10592
10593         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
10594         echo "OST still has $count kbytes free"
10595
10596         echo "create $MDSOBJS files @next_id..."
10597         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
10598
10599         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10600                         osc.$mdtosc_proc1.prealloc_last_id)
10601         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
10602                         osc.$mdtosc_proc1.prealloc_next_id)
10603
10604         echo "after creation, last_id=$last_id2, next_id=$next_id2"
10605         $LFS df -i
10606
10607         echo "cleanup..."
10608
10609         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
10610         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
10611
10612         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
10613         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
10614         echo "unlink $MDSOBJS files @$next_id..."
10615         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
10616 }
10617 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
10618
10619 test_221() {
10620         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10621         dd if=`which date` of=$MOUNT/date oflag=sync
10622         chmod +x $MOUNT/date
10623
10624         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
10625         $LCTL set_param fail_loc=0x80001401
10626
10627         $MOUNT/date > /dev/null
10628         rm -f $MOUNT/date
10629 }
10630 run_test 221 "make sure fault and truncate race to not cause OOM"
10631
10632 test_222a () {
10633         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10634        rm -rf $DIR/$tdir
10635        test_mkdir -p $DIR/$tdir
10636        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10637        createmany -o $DIR/$tdir/$tfile 10
10638        cancel_lru_locks mdc
10639        cancel_lru_locks osc
10640        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10641        $LCTL set_param fail_loc=0x31a
10642        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
10643        $LCTL set_param fail_loc=0
10644        rm -r $DIR/$tdir
10645 }
10646 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
10647
10648 test_222b () {
10649         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10650        rm -rf $DIR/$tdir
10651        test_mkdir -p $DIR/$tdir
10652        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10653        createmany -o $DIR/$tdir/$tfile 10
10654        cancel_lru_locks mdc
10655        cancel_lru_locks osc
10656        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
10657        $LCTL set_param fail_loc=0x31a
10658        rm -r $DIR/$tdir || "AGL for rmdir failed"
10659        $LCTL set_param fail_loc=0
10660 }
10661 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
10662
10663 test_223 () {
10664         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10665        rm -rf $DIR/$tdir
10666        test_mkdir -p $DIR/$tdir
10667        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
10668        createmany -o $DIR/$tdir/$tfile 10
10669        cancel_lru_locks mdc
10670        cancel_lru_locks osc
10671        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
10672        $LCTL set_param fail_loc=0x31b
10673        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
10674        $LCTL set_param fail_loc=0
10675        rm -r $DIR/$tdir
10676 }
10677 run_test 223 "osc reenqueue if without AGL lock granted ======================="
10678
10679 test_224a() { # LU-1039, MRP-303
10680         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10681         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
10682         $LCTL set_param fail_loc=0x508
10683         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
10684         $LCTL set_param fail_loc=0
10685         df $DIR
10686 }
10687 run_test 224a "Don't panic on bulk IO failure"
10688
10689 test_224b() { # LU-1039, MRP-303
10690         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10691         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
10692         cancel_lru_locks osc
10693         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
10694         $LCTL set_param fail_loc=0x515
10695         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
10696         $LCTL set_param fail_loc=0
10697         df $DIR
10698 }
10699 run_test 224b "Don't panic on bulk IO failure"
10700
10701 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
10702 test_225a () {
10703         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10704         if [ -z ${MDSSURVEY} ]; then
10705               skip_env "mds-survey not found" && return
10706         fi
10707
10708         [ $MDSCOUNT -ge 2 ] &&
10709                 skip "skipping now for more than one MDT" && return
10710
10711        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10712             { skip "Need MDS version at least 2.2.51"; return; }
10713
10714        local mds=$(facet_host $SINGLEMDS)
10715        local target=$(do_nodes $mds 'lctl dl' | \
10716                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10717
10718        local cmd1="file_count=1000 thrhi=4"
10719        local cmd2="dir_count=2 layer=mdd stripe_count=0"
10720        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10721        local cmd="$cmd1 $cmd2 $cmd3"
10722
10723        rm -f ${TMP}/mds_survey*
10724        echo + $cmd
10725        eval $cmd || error "mds-survey with zero-stripe failed"
10726        cat ${TMP}/mds_survey*
10727        rm -f ${TMP}/mds_survey*
10728 }
10729 run_test 225a "Metadata survey sanity with zero-stripe"
10730
10731 test_225b () {
10732         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10733
10734         if [ -z ${MDSSURVEY} ]; then
10735               skip_env "mds-survey not found" && return
10736         fi
10737         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
10738             { skip "Need MDS version at least 2.2.51"; return; }
10739
10740         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
10741               skip_env "Need to mount OST to test" && return
10742         fi
10743
10744         [ $MDSCOUNT -ge 2 ] &&
10745                 skip "skipping now for more than one MDT" && return
10746        local mds=$(facet_host $SINGLEMDS)
10747        local target=$(do_nodes $mds 'lctl dl' | \
10748                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
10749
10750        local cmd1="file_count=1000 thrhi=4"
10751        local cmd2="dir_count=2 layer=mdd stripe_count=1"
10752        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
10753        local cmd="$cmd1 $cmd2 $cmd3"
10754
10755        rm -f ${TMP}/mds_survey*
10756        echo + $cmd
10757        eval $cmd || error "mds-survey with stripe_count failed"
10758        cat ${TMP}/mds_survey*
10759        rm -f ${TMP}/mds_survey*
10760 }
10761 run_test 225b "Metadata survey sanity with stripe_count = 1"
10762
10763 mcreate_path2fid () {
10764         local mode=$1
10765         local major=$2
10766         local minor=$3
10767         local name=$4
10768         local desc=$5
10769         local path=$DIR/$tdir/$name
10770         local fid
10771         local rc
10772         local fid_path
10773
10774         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
10775                 error "cannot create $desc"
10776
10777         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
10778         rc=$?
10779         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
10780
10781         fid_path=$($LFS fid2path $MOUNT $fid)
10782         rc=$?
10783         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
10784
10785         [ "$path" == "$fid_path" ] ||
10786                 error "fid2path returned $fid_path, expected $path"
10787
10788         echo "pass with $path and $fid"
10789 }
10790
10791 test_226a () {
10792         rm -rf $DIR/$tdir
10793         mkdir -p $DIR/$tdir
10794
10795         mcreate_path2fid 0010666 0 0 fifo "FIFO"
10796         mcreate_path2fid 0020666 1 3 null "character special file (null)"
10797         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
10798         mcreate_path2fid 0040666 0 0 dir "directory"
10799         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
10800         mcreate_path2fid 0100666 0 0 file "regular file"
10801         mcreate_path2fid 0120666 0 0 link "symbolic link"
10802         mcreate_path2fid 0140666 0 0 sock "socket"
10803 }
10804 run_test 226a "call path2fid and fid2path on files of all type"
10805
10806 test_226b () {
10807         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10808         rm -rf $DIR/$tdir
10809         local MDTIDX=1
10810
10811         mkdir -p $DIR/$tdir
10812         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
10813                 error "create remote directory failed"
10814         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
10815         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
10816                                 "character special file (null)"
10817         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
10818                                 "character special file (no device)"
10819         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
10820         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
10821                                 "block special file (loop)"
10822         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
10823         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
10824         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
10825 }
10826 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
10827
10828 # LU-1299 Executing or running ldd on a truncated executable does not
10829 # cause an out-of-memory condition.
10830 test_227() {
10831         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10832         dd if=`which date` of=$MOUNT/date bs=1k count=1
10833         chmod +x $MOUNT/date
10834
10835         $MOUNT/date > /dev/null
10836         ldd $MOUNT/date > /dev/null
10837         rm -f $MOUNT/date
10838 }
10839 run_test 227 "running truncated executable does not cause OOM"
10840
10841 # LU-1512 try to reuse idle OI blocks
10842 test_228a() {
10843         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10844         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10845                 skip "non-ldiskfs backend" && return
10846
10847         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10848         local myDIR=$DIR/$tdir
10849
10850         mkdir -p $myDIR
10851         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10852         $LCTL set_param fail_loc=0x80001002
10853         createmany -o $myDIR/t- 10000
10854         $LCTL set_param fail_loc=0
10855         # The guard is current the largest FID holder
10856         touch $myDIR/guard
10857         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10858                     tr -d '[')
10859         local IDX=$(($SEQ % 64))
10860
10861         do_facet $SINGLEMDS sync
10862         # Make sure journal flushed.
10863         sleep 6
10864         local blk1=$(do_facet $SINGLEMDS \
10865                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10866                      grep Blockcount | awk '{print $4}')
10867
10868         # Remove old files, some OI blocks will become idle.
10869         unlinkmany $myDIR/t- 10000
10870         # Create new files, idle OI blocks should be reused.
10871         createmany -o $myDIR/t- 2000
10872         do_facet $SINGLEMDS sync
10873         # Make sure journal flushed.
10874         sleep 6
10875         local blk2=$(do_facet $SINGLEMDS \
10876                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10877                      grep Blockcount | awk '{print $4}')
10878
10879         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10880 }
10881 run_test 228a "try to reuse idle OI blocks"
10882
10883 test_228b() {
10884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10885         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10886                 skip "non-ldiskfs backend" && return
10887
10888         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10889         local myDIR=$DIR/$tdir
10890
10891         mkdir -p $myDIR
10892         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10893         $LCTL set_param fail_loc=0x80001002
10894         createmany -o $myDIR/t- 10000
10895         $LCTL set_param fail_loc=0
10896         # The guard is current the largest FID holder
10897         touch $myDIR/guard
10898         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10899                     tr -d '[')
10900         local IDX=$(($SEQ % 64))
10901
10902         do_facet $SINGLEMDS sync
10903         # Make sure journal flushed.
10904         sleep 6
10905         local blk1=$(do_facet $SINGLEMDS \
10906                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10907                      grep Blockcount | awk '{print $4}')
10908
10909         # Remove old files, some OI blocks will become idle.
10910         unlinkmany $myDIR/t- 10000
10911
10912         # stop the MDT
10913         stop $SINGLEMDS || error "Fail to stop MDT."
10914         # remount the MDT
10915         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
10916
10917         df $MOUNT || error "Fail to df."
10918         # Create new files, idle OI blocks should be reused.
10919         createmany -o $myDIR/t- 2000
10920         do_facet $SINGLEMDS sync
10921         # Make sure journal flushed.
10922         sleep 6
10923         local blk2=$(do_facet $SINGLEMDS \
10924                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10925                      grep Blockcount | awk '{print $4}')
10926
10927         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10928 }
10929 run_test 228b "idle OI blocks can be reused after MDT restart"
10930
10931 #LU-1881
10932 test_228c() {
10933         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10934         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
10935                 skip "non-ldiskfs backend" && return
10936
10937         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
10938         local myDIR=$DIR/$tdir
10939
10940         mkdir -p $myDIR
10941         #define OBD_FAIL_SEQ_EXHAUST             0x1002
10942         $LCTL set_param fail_loc=0x80001002
10943         # 20000 files can guarantee there are index nodes in the OI file
10944         createmany -o $myDIR/t- 20000
10945         $LCTL set_param fail_loc=0
10946         # The guard is current the largest FID holder
10947         touch $myDIR/guard
10948         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
10949                     tr -d '[')
10950         local IDX=$(($SEQ % 64))
10951
10952         do_facet $SINGLEMDS sync
10953         # Make sure journal flushed.
10954         sleep 6
10955         local blk1=$(do_facet $SINGLEMDS \
10956                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10957                      grep Blockcount | awk '{print $4}')
10958
10959         # Remove old files, some OI blocks will become idle.
10960         unlinkmany $myDIR/t- 20000
10961         rm -f $myDIR/guard
10962         # The OI file should become empty now
10963
10964         # Create new files, idle OI blocks should be reused.
10965         createmany -o $myDIR/t- 2000
10966         do_facet $SINGLEMDS sync
10967         # Make sure journal flushed.
10968         sleep 6
10969         local blk2=$(do_facet $SINGLEMDS \
10970                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
10971                      grep Blockcount | awk '{print $4}')
10972
10973         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
10974 }
10975 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
10976
10977 test_230a() {
10978         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10979         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
10980         local MDTIDX=1
10981
10982         mkdir -p $DIR/$tdir/test_230_local
10983         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
10984         [ $mdt_idx -ne 0 ] &&
10985                 error "create local directory on wrong MDT $mdt_idx"
10986
10987         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
10988                         error "create remote directory failed"
10989         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
10990         [ $mdt_idx -ne $MDTIDX ] &&
10991                 error "create remote directory on wrong MDT $mdt_idx"
10992
10993         createmany -o $DIR/$tdir/test_230/t- 10 ||
10994                 error "create files on remote directory failed"
10995         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
10996         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
10997         rm -r $DIR/$tdir || error "unlink remote directory failed"
10998 }
10999 run_test 230a "Create remote directory and files under the remote directory"
11000
11001 test_230b() {
11002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11003         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11004         local MDTIDX=1
11005         local remote_dir=$DIR/$tdir/remote_dir
11006         local rc=0
11007
11008         mkdir -p $DIR/$tdir
11009         $LFS mkdir -i $MDTIDX $remote_dir ||
11010                 error "create remote directory failed"
11011
11012         $LFS mkdir -i 0 $remote_dir/new_dir &&
11013                 error "nested remote directory create succeed!"
11014
11015         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11016         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11017         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11018
11019         [ $rc -ne 0 ] &&
11020            error "create remote directory failed after set enable_remote_dir"
11021
11022         rm -rf $remote_dir || error "first unlink remote directory failed"
11023
11024         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11025                                                         error "chown worked"
11026
11027         do_facet mds$MDTIDX lctl set_param \
11028                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11029         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11030         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11031
11032         [ $rc -ne 0 ] &&
11033            error "create remote dir failed after set enable_remote_dir_gid"
11034
11035         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11036 }
11037 run_test 230b "nested remote directory should be failed"
11038
11039 test_231a()
11040 {
11041         # For simplicity this test assumes that max_pages_per_rpc
11042         # is the same across all OSCs
11043         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11044         local bulk_size=$((max_pages * 4096))
11045
11046         mkdir -p $DIR/$tdir
11047
11048         # clear the OSC stats
11049         $LCTL set_param osc.*.stats=0 &>/dev/null
11050
11051         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11052         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11053                 oflag=direct &>/dev/null || error "dd failed"
11054
11055         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11056         if [ x$nrpcs != "x1" ]; then
11057                 error "found $nrpc ost_write RPCs, not 1 as expected"
11058         fi
11059
11060         # Drop the OSC cache, otherwise we will read from it
11061         cancel_lru_locks osc
11062
11063         # clear the OSC stats
11064         $LCTL set_param osc.*.stats=0 &>/dev/null
11065
11066         # Client reads $bulk_size.
11067         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11068                 iflag=direct &>/dev/null || error "dd failed"
11069
11070         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11071         if [ x$nrpcs != "x1" ]; then
11072                 error "found $nrpc ost_read RPCs, not 1 as expected"
11073         fi
11074 }
11075 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11076
11077 test_231b() {
11078         mkdir -p $DIR/$tdir
11079         local i
11080         for i in {0..1023}; do
11081                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11082                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11083                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11084         done
11085         sync
11086 }
11087 run_test 231b "must not assert on fully utilized OST request buffer"
11088
11089 test_232() {
11090         mkdir -p $DIR/$tdir
11091         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11092         $LCTL set_param fail_loc=0x31c
11093
11094         # ignore dd failure
11095         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11096
11097         $LCTL set_param fail_loc=0
11098         umount_client $MOUNT || error "umount failed"
11099         mount_client $MOUNT || error "mount failed"
11100 }
11101 run_test 232 "failed lock should not block umount"
11102
11103 #
11104 # tests that do cleanup/setup should be run at the end
11105 #
11106
11107 test_900() {
11108         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11109         local ls
11110         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11111         $LCTL set_param fail_loc=0x903
11112         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11113         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11114                 echo "clear" > $ls
11115         done
11116         FAIL_ON_ERROR=true cleanup
11117         FAIL_ON_ERROR=true setup
11118 }
11119 run_test 900 "umount should not race with any mgc requeue thread"
11120
11121 complete $SECONDS
11122 check_and_cleanup_lustre
11123 if [ "$I_MOUNTED" != "yes" ]; then
11124         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11125 fi
11126 exit_status