Whamcloud - gitweb
b4918ed2b46a2066d8dab7fe926fcb54c86d7a33
[fs/lustre-release.git] / lustre / tests / sanity.sh
1 #!/bin/bash
2 # -*- tab-width: 4; indent-tabs-mode: t; -*-
3 #
4 # Run select tests by setting ONLY, or as arguments to the script.
5 # Skip specific tests by setting EXCEPT.
6 #
7 # e.g. ONLY="22 23" or ONLY="`seq 32 39`" or EXCEPT="31"
8 set -e
9
10 ONLY=${ONLY:-"$*"}
11 # bug number for skipped test: 13297 2108 9789 3637 9789 3561 12622 5188
12 ALWAYS_EXCEPT="                42a  42b  42c  42d  45   51d   68b   $SANITY_EXCEPT"
13 # UPDATE THE COMMENT ABOVE WITH BUG NUMBERS WHEN CHANGING ALWAYS_EXCEPT!
14
15 # with LOD/OSP landing
16 # bug number for skipped tests: LU-2036
17 ALWAYS_EXCEPT="                 76     $ALWAYS_EXCEPT"
18
19
20 SRCDIR=$(cd $(dirname $0); echo $PWD)
21 export PATH=$PATH:/sbin
22
23 TMP=${TMP:-/tmp}
24
25 CHECKSTAT=${CHECKSTAT:-"checkstat -v"}
26 CREATETEST=${CREATETEST:-createtest}
27 LFS=${LFS:-lfs}
28 LFIND=${LFIND:-"$LFS find"}
29 LVERIFY=${LVERIFY:-ll_dirstripe_verify}
30 LCTL=${LCTL:-lctl}
31 MCREATE=${MCREATE:-mcreate}
32 OPENFILE=${OPENFILE:-openfile}
33 OPENUNLINK=${OPENUNLINK:-openunlink}
34 export MULTIOP=${MULTIOP:-multiop}
35 READS=${READS:-"reads"}
36 MUNLINK=${MUNLINK:-munlink}
37 SOCKETSERVER=${SOCKETSERVER:-socketserver}
38 SOCKETCLIENT=${SOCKETCLIENT:-socketclient}
39 MEMHOG=${MEMHOG:-memhog}
40 DIRECTIO=${DIRECTIO:-directio}
41 ACCEPTOR_PORT=${ACCEPTOR_PORT:-988}
42 UMOUNT=${UMOUNT:-"umount -d"}
43 STRIPES_PER_OBJ=-1
44 CHECK_GRANT=${CHECK_GRANT:-"yes"}
45 GRANT_CHECK_LIST=${GRANT_CHECK_LIST:-""}
46 export PARALLEL=${PARALLEL:-"no"}
47
48 export NAME=${NAME:-local}
49
50 SAVE_PWD=$PWD
51
52 CLEANUP=${CLEANUP:-:}
53 SETUP=${SETUP:-:}
54 TRACE=${TRACE:-""}
55 LUSTRE=${LUSTRE:-$(cd $(dirname $0)/..; echo $PWD)}
56 . $LUSTRE/tests/test-framework.sh
57 init_test_env $@
58 . ${CONFIG:=$LUSTRE/tests/cfg/${NAME}.sh}
59 init_logging
60
61 [ "$SLOW" = "no" ] && EXCEPT_SLOW="24o 27m 64b 68 71 77f 78 115 124b"
62
63 [ $(facet_fstype $SINGLEMDS) = "zfs" ] &&
64 # bug number for skipped test:        LU-1593 LU-2610 LU-2833 LU-1957 LU-2805
65         ALWAYS_EXCEPT="$ALWAYS_EXCEPT 34h     40      48a     180     184c"
66
67 FAIL_ON_ERROR=false
68
69 cleanup() {
70         echo -n "cln.."
71         pgrep ll_sa > /dev/null && { echo "There are ll_sa thread not exit!"; exit 20; }
72         cleanupall ${FORCE} $* || { echo "FAILed to clean up"; exit 20; }
73 }
74 setup() {
75         echo -n "mnt.."
76         load_modules
77         setupall || exit 10
78         echo "done"
79 }
80
81 check_kernel_version() {
82         WANT_VER=$1
83         GOT_VER=$(lctl get_param -n version | awk '/kernel:/ {print $2}')
84         case $GOT_VER in
85         patchless|patchless_client) return 0;;
86         *) [ $GOT_VER -ge $WANT_VER ] && return 0 ;;
87         esac
88         log "test needs at least kernel version $WANT_VER, running $GOT_VER"
89         return 1
90 }
91
92 check_swap_layouts_support()
93 {
94         $LCTL get_param -n llite.*.sbi_flags | grep -q layout ||
95                 { skip "Does not support layout lock."; return 0; }
96         return 1
97 }
98
99 if [ "$ONLY" == "cleanup" ]; then
100        sh llmountcleanup.sh
101        exit 0
102 fi
103
104 check_and_setup_lustre
105
106 DIR=${DIR:-$MOUNT}
107 assert_DIR
108
109 MDT0=$($LCTL get_param -n mdc.*.mds_server_uuid | \
110     awk '{gsub(/_UUID/,""); print $1}' | head -1)
111 LOVNAME=$($LCTL get_param -n llite.*.lov.common_name | tail -n 1)
112 OSTCOUNT=$($LCTL get_param -n lov.$LOVNAME.numobd)
113 STRIPECOUNT=$($LCTL get_param -n lov.$LOVNAME.stripecount)
114 STRIPESIZE=$($LCTL get_param -n lov.$LOVNAME.stripesize)
115 ORIGFREE=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
116 MAXFREE=${MAXFREE:-$((200000 * $OSTCOUNT))}
117
118 [ -f $DIR/d52a/foo ] && chattr -a $DIR/d52a/foo
119 [ -f $DIR/d52b/foo ] && chattr -i $DIR/d52b/foo
120 rm -rf $DIR/[Rdfs][0-9]*
121
122 # $RUNAS_ID may get set incorrectly somewhere else
123 [ $UID -eq 0 -a $RUNAS_ID -eq 0 ] && error "\$RUNAS_ID set to 0, but \$UID is also 0!"
124
125 check_runas_id $RUNAS_ID $RUNAS_GID $RUNAS
126
127 build_test_filter
128
129 if [ "${ONLY}" = "MOUNT" ] ; then
130         echo "Lustre is up, please go on"
131         exit
132 fi
133
134 echo "preparing for tests involving mounts"
135 EXT2_DEV=${EXT2_DEV:-$TMP/SANITY.LOOP}
136 touch $EXT2_DEV
137 mke2fs -j -F $EXT2_DEV 8000 > /dev/null
138 echo # add a newline after mke2fs.
139
140 umask 077
141
142 OLDDEBUG=$(lctl get_param -n debug 2> /dev/null)
143 lctl set_param debug=-1 2> /dev/null || true
144 test_0a() {
145         touch $DIR/$tfile
146         $CHECKSTAT -t file $DIR/$tfile || error "$tfile is not a file"
147         rm $DIR/$tfile
148         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
149 }
150 run_test 0a "touch; rm ====================="
151
152 test_0b() {
153         chmod 0755 $DIR || error "chmod 0755 $DIR failed"
154         $CHECKSTAT -p 0755 $DIR || error "$DIR permission is not 0755"
155 }
156 run_test 0b "chmod 0755 $DIR ============================="
157
158 test_0c() {
159         $LCTL get_param mdc.*.import | grep "state: FULL" ||
160                 error "import not FULL"
161         $LCTL get_param mdc.*.import | grep "target: $FSNAME-MDT" ||
162                 error "bad target"
163 }
164 run_test 0c "check import proc ============================="
165
166 test_1() {
167         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
168         test_mkdir -p $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
169         test_mkdir $DIR/$tdir/d2 && error "we expect EEXIST, but not returned"
170         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a dir"
171         rmdir $DIR/$tdir/d2
172         rmdir $DIR/$tdir
173         $CHECKSTAT -a $DIR/$tdir || error "$tdir was not removed"
174 }
175 run_test 1 "mkdir; remkdir; rmdir =============================="
176
177 test_2() {
178         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
179         touch $DIR/$tdir/$tfile || error "touch $tdir/$tfile failed"
180         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
181         rm -r $DIR/$tdir
182         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$file is not removed"
183 }
184 run_test 2 "mkdir; touch; rmdir; check file ===================="
185
186 test_3() {
187         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
188         $CHECKSTAT -t dir $DIR/$tdir || error "$tdir is not a directory"
189         touch $DIR/$tdir/$tfile
190         $CHECKSTAT -t file $DIR/$tdir/$tfile || error "$tdir/$tfile not a file"
191         rm -r $DIR/$tdir
192         $CHECKSTAT -a $DIR/$tdir || error "$tdir is not removed"
193 }
194 run_test 3 "mkdir; touch; rmdir; check dir ====================="
195
196 test_5() {
197         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
198         test_mkdir $DIR/$tdir/d2 || error "mkdir $tdir/d2 failed"
199         chmod 0707 $DIR/$tdir/d2 || error "chmod 0707 $tdir/d2 failed"
200         $CHECKSTAT -t dir -p 0707 $DIR/$tdir/d2 || error "$tdir/d2 not mode 707"
201         $CHECKSTAT -t dir $DIR/$tdir/d2 || error "$tdir/d2 is not a directory"
202 }
203 run_test 5 "mkdir .../d5 .../d5/d2; chmod .../d5/d2 ============"
204
205 test_6a() {
206         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
207         chmod 0666 $DIR/$tfile || error "chmod 0666 $tfile failed"
208         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
209                 error "$tfile does not have perm 0666 or UID $UID"
210         $RUNAS chmod 0444 $DIR/$tfile && error "chmod $tfile worked on UID $UID"
211         $CHECKSTAT -t file -p 0666 -u \#$UID $DIR/$tfile ||
212                 error "$tfile should be 0666 and owned by UID $UID"
213 }
214 run_test 6a "touch f6a; chmod f6a; $RUNAS chmod f6a (should return error) =="
215
216 test_6c() {
217         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
218         touch $DIR/$tfile
219         chown $RUNAS_ID $DIR/$tfile || error "chown $RUNAS_ID $file failed"
220         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
221                 error "$tfile should be owned by UID $RUNAS_ID"
222         $RUNAS chown $UID $DIR/$tfile && error "chown $UID $file succeeded"
223         $CHECKSTAT -t file -u \#$RUNAS_ID $DIR/$tfile ||
224                 error "$tfile should be owned by UID $RUNAS_ID"
225 }
226 run_test 6c "touch f6c; chown f6c; $RUNAS chown f6c (should return error) =="
227
228 test_6e() {
229         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
230         touch $DIR/$tfile
231         chgrp $RUNAS_ID $DIR/$tfile || error "chgrp $RUNAS_ID $file failed"
232         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
233                 error "$tfile should be owned by GID $UID"
234         $RUNAS chgrp $UID $DIR/$tfile && error "chgrp $UID $file succeeded"
235         $CHECKSTAT -t file -u \#$UID -g \#$RUNAS_ID $DIR/$tfile ||
236                 error "$tfile should be owned by UID $UID and GID $RUNAS_ID"
237 }
238 run_test 6e "touch f6e; chgrp f6e; $RUNAS chgrp f6e (should return error) =="
239
240 test_6g() {
241         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
242         test_mkdir $DIR/$tdir || error "mkdir $tfile failed"
243         chmod 777 $DIR/$tdir || error "chmod 0777 $tdir failed"
244         $RUNAS mkdir $DIR/$tdir/d || error "mkdir $tdir/d failed"
245         chmod g+s $DIR/$tdir/d || error "chmod g+s $tdir/d failed"
246         test_mkdir $DIR/$tdir/d/subdir || error "mkdir $tdir/d/subdir failed"
247         $CHECKSTAT -g \#$RUNAS_GID $DIR/$tdir/d/subdir ||
248                 error "$tdir/d/subdir should be GID $RUNAS_GID"
249 }
250 run_test 6g "Is new dir in sgid dir inheriting group?"
251
252 test_6h() { # bug 7331
253         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID" && return
254         touch $DIR/$tfile || error "touch failed"
255         chown $RUNAS_ID:$RUNAS_GID $DIR/$tfile || error "initial chown failed"
256         $RUNAS -G$RUNAS_GID chown $RUNAS_ID:0 $DIR/$tfile &&
257                 error "chown $RUNAS_ID:0 $tfile worked as GID $RUNAS_GID"
258         $CHECKSTAT -t file -u \#$RUNAS_ID -g \#$RUNAS_GID $DIR/$tfile ||
259                 error "$tdir/$tfile should be UID $RUNAS_UID GID $RUNAS_GID"
260 }
261 run_test 6h "$RUNAS chown RUNAS_ID.0 .../f6h (should return error)"
262
263 test_7a() {
264         test_mkdir $DIR/$tdir
265         $MCREATE $DIR/$tdir/$tfile
266         chmod 0666 $DIR/$tdir/$tfile
267         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
268                 error "$tdir/$tfile should be mode 0666"
269 }
270 run_test 7a "mkdir .../d7; mcreate .../d7/f; chmod .../d7/f ===="
271
272 test_7b() {
273         if [ ! -d $DIR/$tdir ]; then
274                 mkdir $DIR/$tdir
275         fi
276         $MCREATE $DIR/$tdir/$tfile
277         echo -n foo > $DIR/$tdir/$tfile
278         [ "$(cat $DIR/$tdir/$tfile)" = "foo" ] || error "$tdir/$tfile not 'foo'"
279         $CHECKSTAT -t file -s 3 $DIR/$tdir/$tfile || error "$tfile size not 3"
280 }
281 run_test 7b "mkdir .../d7; mcreate d7/f2; echo foo > d7/f2 ====="
282
283 test_8() {
284         test_mkdir $DIR/$tdir
285         touch $DIR/$tdir/$tfile
286         chmod 0666 $DIR/$tdir/$tfile
287         $CHECKSTAT -t file -p 0666 $DIR/$tdir/$tfile ||
288                 error "$tfile mode not 0666"
289 }
290 run_test 8 "mkdir .../d8; touch .../d8/f; chmod .../d8/f ======="
291
292 test_9() {
293         test_mkdir $DIR/$tdir
294         test_mkdir $DIR/$tdir/d2
295         test_mkdir $DIR/$tdir/d2/d3
296         $CHECKSTAT -t dir $DIR/$tdir/d2/d3 || error "$tdir/d2/d3 not a dir"
297 }
298 run_test 9 "mkdir .../d9 .../d9/d2 .../d9/d2/d3 ================"
299
300 test_10() {
301         test_mkdir $DIR/$tdir
302         test_mkdir $DIR/$tdir/d2
303         touch $DIR/$tdir/d2/$tfile
304         $CHECKSTAT -t file $DIR/$tdir/d2/$tfile ||
305                 error "$tdir/d2/$tfile not a file"
306 }
307 run_test 10 "mkdir .../d10 .../d10/d2; touch .../d10/d2/f ======"
308
309 test_11() {
310         test_mkdir $DIR/$tdir
311         test_mkdir $DIR/$tdir/d2
312         chmod 0666 $DIR/$tdir/d2
313         chmod 0705 $DIR/$tdir/d2
314         $CHECKSTAT -t dir -p 0705 $DIR/$tdir/d2 ||
315                 error "$tdir/d2 mode not 0705"
316 }
317 run_test 11 "mkdir .../d11 d11/d2; chmod .../d11/d2 ============"
318
319 test_12() {
320         test_mkdir $DIR/$tdir
321         touch $DIR/$tdir/$tfile
322         chmod 0666 $DIR/$tdir/$tfile
323         chmod 0654 $DIR/$tdir/$tfile
324         $CHECKSTAT -t file -p 0654 $DIR/$tdir/$tfile ||
325                 error "$tdir/d2 mode not 0654"
326 }
327 run_test 12 "touch .../d12/f; chmod .../d12/f .../d12/f ========"
328
329 test_13() {
330         test_mkdir $DIR/$tdir
331         dd if=/dev/zero of=$DIR/$tdir/$tfile count=10
332         >  $DIR/$tdir/$tfile
333         $CHECKSTAT -t file -s 0 $DIR/$tdir/$tfile ||
334                 error "$tdir/$tfile size not 0 after truncate"
335 }
336 run_test 13 "creat .../d13/f; dd .../d13/f; > .../d13/f ========"
337
338 test_14() {
339         test_mkdir $DIR/$tdir
340         touch $DIR/$tdir/$tfile
341         rm $DIR/$tdir/$tfile
342         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
343 }
344 run_test 14 "touch .../d14/f; rm .../d14/f; rm .../d14/f ======="
345
346 test_15() {
347         test_mkdir $DIR/$tdir
348         touch $DIR/$tdir/$tfile
349         mv $DIR/$tdir/$tfile $DIR/$tdir/${tfile}_2
350         $CHECKSTAT -t file $DIR/$tdir/${tfile}_2 ||
351                 error "$tdir/${tfile_2} not a file after rename"
352 }
353 run_test 15 "touch .../d15/f; mv .../d15/f .../d15/f2 =========="
354
355 test_16() {
356         test_mkdir $DIR/$tdir
357         touch $DIR/$tdir/$tfile
358         rm -rf $DIR/$tdir/$tfile
359         $CHECKSTAT -a $DIR/$tdir/$tfile || error "$tdir/$tfile not removed"
360 }
361 run_test 16 "touch .../d16/f; rm -rf .../d16/f ================="
362
363 test_17a() {
364         test_mkdir -p $DIR/$tdir
365         touch $DIR/$tdir/$tfile
366         ln -s $DIR/$tdir/$tfile $DIR/$tdir/l-exist
367         ls -l $DIR/$tdir
368         $CHECKSTAT -l $DIR/$tdir/$tfile $DIR/$tdir/l-exist ||
369                 error "$tdir/l-exist not a symlink"
370         $CHECKSTAT -f -t f $DIR/$tdir/l-exist ||
371                 error "$tdir/l-exist not referencing a file"
372         rm -f $DIR/$tdir/l-exist
373         $CHECKSTAT -a $DIR/$tdir/l-exist || error "$tdir/l-exist not removed"
374 }
375 run_test 17a "symlinks: create, remove (real) =================="
376
377 test_17b() {
378         test_mkdir -p $DIR/$tdir
379         ln -s no-such-file $DIR/$tdir/l-dangle
380         ls -l $DIR/$tdir
381         $CHECKSTAT -l no-such-file $DIR/$tdir/l-dangle ||
382                 error "$tdir/l-dangle not referencing no-such-file"
383         $CHECKSTAT -fa $DIR/$tdir/l-dangle ||
384                 error "$tdir/l-dangle not referencing non-existent file"
385         rm -f $DIR/$tdir/l-dangle
386         $CHECKSTAT -a $DIR/$tdir/l-dangle || error "$tdir/l-dangle not removed"
387 }
388 run_test 17b "symlinks: create, remove (dangling) =============="
389
390 test_17c() { # bug 3440 - don't save failed open RPC for replay
391         test_mkdir -p $DIR/$tdir
392         ln -s foo $DIR/$tdir/$tfile
393         cat $DIR/$tdir/$tfile && error "opened non-existent symlink" || true
394 }
395 run_test 17c "symlinks: open dangling (should return error) ===="
396
397 test_17d() {
398         test_mkdir -p $DIR/$tdir
399         ln -s foo $DIR/$tdir/$tfile
400         touch $DIR/$tdir/$tfile || error "creating to new symlink"
401 }
402 run_test 17d "symlinks: create dangling ========================"
403
404 test_17e() {
405         test_mkdir -p $DIR/$tdir
406         local foo=$DIR/$tdir/$tfile
407         ln -s $foo $foo || error "create symlink failed"
408         ls -l $foo || error "ls -l failed"
409         ls $foo && error "ls not failed" || true
410 }
411 run_test 17e "symlinks: create recursive symlink (should return error) ===="
412
413 test_17f() {
414         test_mkdir -p $DIR/d17f
415         ln -s 1234567890/2234567890/3234567890/4234567890 $DIR/d17f/111
416         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890 $DIR/d17f/222
417         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890 $DIR/d17f/333
418         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890 $DIR/d17f/444
419         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890 $DIR/d17f/555
420         ln -s 1234567890/2234567890/3234567890/4234567890/5234567890/6234567890/7234567890/8234567890/9234567890/a234567890/b234567890/c234567890/d234567890/f234567890/aaaaaaaaaa/bbbbbbbbbb/cccccccccc/dddddddddd/eeeeeeeeee/ffffffffff/ $DIR/d17f/666
421         ls -l  $DIR/d17f
422 }
423 run_test 17f "symlinks: long and very long symlink name ========================"
424
425 # str_repeat(S, N) generate a string that is string S repeated N times
426 str_repeat() {
427         local s=$1
428         local n=$2
429         local ret=''
430         while [ $((n -= 1)) -ge 0 ]; do
431                 ret=$ret$s
432         done
433         echo $ret
434 }
435
436 # Long symlinks and LU-2241
437 test_17g() {
438         test_mkdir -p $DIR/$tdir
439         local TESTS="59 60 61 4094 4095"
440
441         # Fix for inode size boundary in 2.1.4
442         [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.4) ] &&
443                 TESTS="4094 4095"
444
445         # Patch not applied to 2.2 or 2.3 branches
446         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
447         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.3.55) ] &&
448                 TESTS="4094 4095"
449
450         for i in $TESTS; do
451                 local SYMNAME=$(str_repeat 'x' $i)
452                 ln -s $SYMNAME $DIR/$tdir/f$i || error "failed $i-char symlink"
453                 readlink $DIR/$tdir/f$i || error "failed $i-char readlink"
454         done
455 }
456 run_test 17g "symlinks: really long symlink name and inode boundaries"
457
458 test_17h() { #bug 17378
459         remote_mds_nodsh && skip "remote MDS with nodsh" && return
460         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
461         local mdt_idx
462         test_mkdir -p $DIR/$tdir
463         if [ $MDSCOUNT -gt 1 ]; then
464                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
465         else
466                 mdt_idx=0
467         fi
468         $SETSTRIPE -c -1 $DIR/$tdir
469 #define OBD_FAIL_MDS_LOV_PREP_CREATE 0x141
470         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000141
471         touch $DIR/$tdir/$tfile || true
472 }
473 run_test 17h "create objects: lov_free_memmd() doesn't lbug"
474
475 test_17i() { #bug 20018
476         remote_mds_nodsh && skip "remote MDS with nodsh" && return
477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
478         test_mkdir -p $DIR/$tdir
479         local foo=$DIR/$tdir/$tfile
480         local mdt_idx
481         if [ $MDSCOUNT -gt 1 ]; then
482                 mdt_idx=$($LFS getdirstripe -i $DIR/$tdir)
483         else
484                 mdt_idx=0
485         fi
486         ln -s $foo $foo || error "create symlink failed"
487 #define OBD_FAIL_MDS_READLINK_EPROTO     0x143
488         do_facet mds$((mdt_idx + 1)) lctl set_param fail_loc=0x80000143
489         ls -l $foo && error "error not detected"
490         return 0
491 }
492 run_test 17i "don't panic on short symlink"
493
494 test_17k() { #bug 22301
495         rsync --help | grep -q xattr ||
496                 skip_env "$(rsync --version| head -1) does not support xattrs"
497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
498         test_mkdir -p $DIR/$tdir
499         test_mkdir -p $DIR/$tdir.new
500         touch $DIR/$tdir/$tfile
501         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
502         rsync -av -X $DIR/$tdir/ $DIR/$tdir.new ||
503                 error "rsync failed with xattrs enabled"
504 }
505 run_test 17k "symlinks: rsync with xattrs enabled ========================="
506
507 test_17l() { # LU-279
508         mkdir -p $DIR/$tdir
509         touch $DIR/$tdir/$tfile
510         ln -s $DIR/$tdir/$tfile $DIR/$tdir/$tfile.lnk
511         for path in "$DIR/$tdir" "$DIR/$tdir/$tfile" "$DIR/$tdir/$tfile.lnk"; do
512                 # -h to not follow symlinks. -m '' to list all the xattrs.
513                 # grep to remove first line: '# file: $path'.
514                 for xattr in `getfattr -hm '' $path 2>/dev/null | grep -v '^#'`;
515                 do
516                         lgetxattr_size_check $path $xattr ||
517                                 error "lgetxattr_size_check $path $xattr failed"
518                 done
519         done
520 }
521 run_test 17l "Ensure lgetxattr's returned xattr size is consistent ========"
522
523 # LU-1540
524 test_17m() {
525         local short_sym="0123456789"
526         local WDIR=$DIR/${tdir}m
527         local mds_index
528         local devname
529         local cmd
530         local i
531         local rc=0
532
533         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
534         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
535                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
536
537         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
538                 skip "only for ldiskfs MDT" && return 0
539
540         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
541
542         mkdir -p $WDIR
543         long_sym=$short_sym
544         # create a long symlink file
545         for ((i = 0; i < 4; ++i)); do
546                 long_sym=${long_sym}${long_sym}
547         done
548
549         echo "create 512 short and long symlink files under $WDIR"
550         for ((i = 0; i < 256; ++i)); do
551                 ln -sf ${long_sym}"a5a5" $WDIR/long-$i
552                 ln -sf ${short_sym}"a5a5" $WDIR/short-$i
553         done
554
555         echo "erase them"
556         rm -f $WDIR/*
557         sync
558         wait_delete_completed
559
560         echo "recreate the 512 symlink files with a shorter string"
561         for ((i = 0; i < 512; ++i)); do
562                 # rewrite the symlink file with a shorter string
563                 ln -sf ${long_sym} $WDIR/long-$i
564                 ln -sf ${short_sym} $WDIR/short-$i
565         done
566
567         mds_index=$($LFS getstripe -M $WDIR)
568         mds_index=$((mds_index+1))
569         devname=$(mdsdevname $mds_index)
570         cmd="$E2FSCK -fnvd $devname"
571
572         echo "stop and checking mds${mds_index}: $cmd"
573         # e2fsck should not return error
574         stop mds${mds_index} -f
575         do_facet mds${mds_index} $cmd || rc=$?
576
577         start mds${mds_index} $devname $MDS_MOUNT_OPTS
578         df $MOUNT > /dev/null 2>&1
579         [ $rc -ne 0 ] && error "e2fsck should not report error upon "\
580                 "short/long symlink MDT: rc=$rc"
581         return $rc
582 }
583 run_test 17m "run e2fsck against MDT which contains short/long symlink"
584
585 check_fs_consistency_17n() {
586         local mdt_index
587         local devname
588         local cmd
589         local rc=0
590
591         for mdt_index in $(seq 1 $MDSCOUNT); do
592                 devname=$(mdsdevname $mdt_index)
593                 cmd="$E2FSCK -fnvd $devname"
594
595                 echo "stop and checking mds${mdt_index}: $cmd"
596                 # e2fsck should not return error
597                 stop mds${mdt_index}
598                 do_facet mds${mdt_index} $cmd || rc=$?
599
600                 start mds${mdt_index} $devname $MDS_MOUNT_OPTS
601                 df $MOUNT > /dev/null 2>&1
602                 [ $rc -ne 0 ] && break
603         done
604         return $rc
605 }
606
607 test_17n() {
608         local i
609
610         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] &&
611         [ $(lustre_version_code $SINGLEMDS) -le $(version_code 2.2.93) ] &&
612                 skip "MDS 2.2.0-2.2.93 do not NUL-terminate symlinks" && return
613
614         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
615                 skip "only for ldiskfs MDT" && return 0
616
617         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
618
619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
620
621         mkdir -p $DIR/$tdir
622         for ((i=0; i<10; i++)); do
623                 $LFS mkdir -i 1 $DIR/$tdir/remote_dir_${i} ||
624                         error "create remote dir error $i"
625                 createmany -o $DIR/$tdir/remote_dir_${i}/f 10 ||
626                         error "create files under remote dir failed $i"
627         done
628
629         check_fs_consistency_17n || error "e2fsck report error"
630
631         for ((i=0;i<10;i++)); do
632                 rm -rf $DIR/$tdir/remote_dir_${i} ||
633                         error "destroy remote dir error $i"
634         done
635
636         check_fs_consistency_17n || error "e2fsck report error"
637 }
638 run_test 17n "run e2fsck against master/slave MDT which contains remote dir"
639
640 test_17o() {
641         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.64) ]] &&
642                 skip "Need MDS version at least 2.3.64" && return
643
644         local WDIR=$DIR/${tdir}o
645         local mdt_index
646         local mdtdevname
647         local rc=0
648
649         mkdir -p $WDIR
650         mdt_index=$($LFS getstripe -M $WDIR)
651         mdt_index=$((mdt_index+1))
652         mdtdevname=$(mdsdevname $mdt_index)
653
654         touch $WDIR/$tfile
655         stop mds${mdt_index}
656         start mds${mdt_index} $mdtdevname $MDS_MOUNT_OPTS
657
658         #define OBD_FAIL_OSD_LMA_INCOMPAT 0x194
659         do_facet mds${mdt_index} lctl set_param fail_loc=0x194
660         ls -l $WDIR/$tfile && rc=1
661         do_facet mds${mdt_index} lctl set_param fail_loc=0
662         [[ $rc -ne 0 ]] && error "stat file should fail"
663         true
664 }
665 run_test 17o "stat file with incompat LMA feature"
666
667 test_18() {
668         touch $DIR/f || error "Failed to touch $DIR/f: $?"
669         ls $DIR || error "Failed to ls $DIR: $?"
670 }
671 run_test 18 "touch .../f ; ls ... =============================="
672
673 test_19a() {
674         touch $DIR/$tfile
675         ls -l $DIR
676         rm $DIR/$tfile
677         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
678 }
679 run_test 19a "touch .../f19 ; ls -l ... ; rm .../f19 ==========="
680
681 test_19b() {
682         ls -l $DIR/$tfile && error "ls -l $tfile failed"|| true
683 }
684 run_test 19b "ls -l .../f19 (should return error) =============="
685
686 test_19c() {
687         [ $RUNAS_ID -eq $UID ] &&
688                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
689         $RUNAS touch $DIR/$tfile && error "create non-root file failed" || true
690 }
691 run_test 19c "$RUNAS touch .../f19 (should return error) =="
692
693 test_19d() {
694         cat $DIR/f19 && error || true
695 }
696 run_test 19d "cat .../f19 (should return error) =============="
697
698 test_20() {
699         touch $DIR/$tfile
700         rm $DIR/$tfile
701         log "1 done"
702         touch $DIR/$tfile
703         rm $DIR/$tfile
704         log "2 done"
705         touch $DIR/$tfile
706         rm $DIR/$tfile
707         log "3 done"
708         $CHECKSTAT -a $DIR/$tfile || error "$tfile was not removed"
709 }
710 run_test 20 "touch .../f ; ls -l ... ==========================="
711
712 test_21() {
713         test_mkdir -p $DIR/$tdir
714         [ -f $DIR/$tdir/dangle ] && rm -f $DIR/$tdir/dangle
715         ln -s dangle $DIR/$tdir/link
716         echo foo >> $DIR/$tdir/link
717         cat $DIR/$tdir/dangle
718         $CHECKSTAT -t link $DIR/$tdir/link || error "$tdir/link not a link"
719         $CHECKSTAT -f -t file $DIR/$tdir/link ||
720                 error "$tdir/link not linked to a file"
721 }
722 run_test 21 "write to dangling link ============================"
723
724 test_22() {
725         WDIR=$DIR/$tdir
726         test_mkdir -p $DIR/$tdir
727         chown $RUNAS_ID:$RUNAS_GID $WDIR
728         (cd $WDIR || error "cd $WDIR failed";
729         $RUNAS tar cf - /etc/hosts /etc/sysconfig/network | \
730         $RUNAS tar xf -)
731         ls -lR $WDIR/etc || error "ls -lR $WDIR/etc failed"
732         $CHECKSTAT -t dir $WDIR/etc || error "checkstat -t dir failed"
733         $CHECKSTAT -u \#$RUNAS_ID -g \#$RUNAS_GID $WDIR/etc || error "checkstat -u failed"
734 }
735 run_test 22 "unpack tar archive as non-root user ==============="
736
737 # was test_23
738 test_23a() {
739         test_mkdir -p $DIR/$tdir
740         local file=$DIR/$tdir/$tfile
741
742         openfile -f O_CREAT:O_EXCL $file || error "$file create failed"
743         openfile -f O_CREAT:O_EXCL $file &&
744                 error "$file recreate succeeded" || true
745 }
746 run_test 23a "O_CREAT|O_EXCL in subdir =========================="
747
748 test_23b() { # bug 18988
749         test_mkdir -p $DIR/$tdir
750         local file=$DIR/$tdir/$tfile
751
752         rm -f $file
753         echo foo > $file || error "write filed"
754         echo bar >> $file || error "append filed"
755         $CHECKSTAT -s 8 $file || error "wrong size"
756         rm $file
757 }
758 run_test 23b "O_APPEND check =========================="
759
760 # rename sanity
761 test_24a() {
762         echo '-- same directory rename'
763         test_mkdir $DIR/$tdir
764         touch $DIR/$tdir/$tfile.1
765         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
766         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
767 }
768 run_test 24a "rename file to non-existent target"
769
770 test_24b() {
771         test_mkdir $DIR/$tdir
772         touch $DIR/$tdir/$tfile.{1,2}
773         mv $DIR/$tdir/$tfile.1 $DIR/$tdir/$tfile.2
774         $CHECKSTAT -a $DIR/$tdir/$tfile.1 || error "$tfile.1 exists"
775         $CHECKSTAT -t file $DIR/$tdir/$tfile.2 || error "$tfile.2 not a file"
776 }
777 run_test 24b "rename file to existing target"
778
779 test_24c() {
780         test_mkdir $DIR/$tdir
781         test_mkdir $DIR/$tdir/d$testnum.1
782         mv $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
783         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
784         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
785 }
786 run_test 24c "rename directory to non-existent target"
787
788 test_24d() {
789         test_mkdir $DIR/$tdir
790         test_mkdir $DIR/$tdir/d$testnum.1
791         test_mkdir $DIR/$tdir/d$ttestnum.2
792         mrename $DIR/$tdir/d$testnum.1 $DIR/$tdir/d$testnum.2
793         $CHECKSTAT -a $DIR/$tdir/d$testnum.1 || error "d$testnum.1 exists"
794         $CHECKSTAT -t dir $DIR/$tdir/d$testnum.2 || error "d$testnum.2 not dir"
795 }
796 run_test 24d "rename directory to existing target"
797
798 test_24e() {
799         echo '-- cross directory renames --'
800         test_mkdir $DIR/R5a
801         test_mkdir $DIR/R5b
802         touch $DIR/R5a/f
803         mv $DIR/R5a/f $DIR/R5b/g
804         $CHECKSTAT -a $DIR/R5a/f || error
805         $CHECKSTAT -t file $DIR/R5b/g || error
806 }
807 run_test 24e "touch .../R5a/f; rename .../R5a/f .../R5b/g ======"
808
809 test_24f() {
810         test_mkdir $DIR/R6a
811         test_mkdir $DIR/R6b
812         touch $DIR/R6a/f $DIR/R6b/g
813         mv $DIR/R6a/f $DIR/R6b/g
814         $CHECKSTAT -a $DIR/R6a/f || error
815         $CHECKSTAT -t file $DIR/R6b/g || error
816 }
817 run_test 24f "touch .../R6a/f R6b/g; mv .../R6a/f .../R6b/g ===="
818
819 test_24g() {
820         test_mkdir $DIR/R7a
821         test_mkdir $DIR/R7b
822         test_mkdir $DIR/R7a/d
823         mv $DIR/R7a/d $DIR/R7b/e
824         $CHECKSTAT -a $DIR/R7a/d || error
825         $CHECKSTAT -t dir $DIR/R7b/e || error
826 }
827 run_test 24g "mkdir .../R7{a,b}/d; mv .../R7a/d .../R7b/e ======"
828
829 test_24h() {
830         test_mkdir $DIR/R8a
831         test_mkdir $DIR/R8b
832         test_mkdir $DIR/R8a/d
833         test_mkdir $DIR/R8b/e
834         mrename $DIR/R8a/d $DIR/R8b/e
835         $CHECKSTAT -a $DIR/R8a/d || error
836         $CHECKSTAT -t dir $DIR/R8b/e || error
837 }
838 run_test 24h "mkdir .../R8{a,b}/{d,e}; rename .../R8a/d .../R8b/e"
839
840 test_24i() {
841         echo "-- rename error cases"
842         test_mkdir $DIR/R9
843         test_mkdir $DIR/R9/a
844         touch $DIR/R9/f
845         mrename $DIR/R9/f $DIR/R9/a
846         $CHECKSTAT -t file $DIR/R9/f || error
847         $CHECKSTAT -t dir  $DIR/R9/a || error
848         $CHECKSTAT -a $DIR/R9/a/f || error
849 }
850 run_test 24i "rename file to dir error: touch f ; mkdir a ; rename f a"
851
852 test_24j() {
853         test_mkdir $DIR/R10
854         mrename $DIR/R10/f $DIR/R10/g
855         $CHECKSTAT -t dir $DIR/R10 || error
856         $CHECKSTAT -a $DIR/R10/f || error
857         $CHECKSTAT -a $DIR/R10/g || error
858 }
859 run_test 24j "source does not exist ============================"
860
861 test_24k() {
862         test_mkdir $DIR/R11a
863         test_mkdir $DIR/R11a/d
864         touch $DIR/R11a/f
865         mv $DIR/R11a/f $DIR/R11a/d
866         $CHECKSTAT -a $DIR/R11a/f || error
867         $CHECKSTAT -t file $DIR/R11a/d/f || error
868 }
869 run_test 24k "touch .../R11a/f; mv .../R11a/f .../R11a/d ======="
870
871 # bug 2429 - rename foo foo foo creates invalid file
872 test_24l() {
873         f="$DIR/f24l"
874         $MULTIOP $f OcNs || error
875 }
876 run_test 24l "Renaming a file to itself ========================"
877
878 test_24m() {
879         f="$DIR/f24m"
880         $MULTIOP $f OcLN ${f}2 ${f}2 || error "link ${f}2 ${f}2 failed"
881         # on ext3 this does not remove either the source or target files
882         # though the "expected" operation would be to remove the source
883         $CHECKSTAT -t file ${f} || error "${f} missing"
884         $CHECKSTAT -t file ${f}2 || error "${f}2 missing"
885 }
886 run_test 24m "Renaming a file to a hard link to itself ========="
887
888 test_24n() {
889     f="$DIR/f24n"
890     # this stats the old file after it was renamed, so it should fail
891     touch ${f}
892     $CHECKSTAT ${f}
893     mv ${f} ${f}.rename
894     $CHECKSTAT ${f}.rename
895     $CHECKSTAT -a ${f}
896 }
897 run_test 24n "Statting the old file after renaming (Posix rename 2)"
898
899 test_24o() {
900         check_kernel_version 37 || return 0
901         test_mkdir -p $DIR/d24o
902         rename_many -s random -v -n 10 $DIR/d24o
903 }
904 run_test 24o "rename of files during htree split ==============="
905
906 test_24p() {
907         test_mkdir $DIR/R12a
908         test_mkdir $DIR/R12b
909         DIRINO=`ls -lid $DIR/R12a | awk '{ print $1 }'`
910         mrename $DIR/R12a $DIR/R12b
911         $CHECKSTAT -a $DIR/R12a || error
912         $CHECKSTAT -t dir $DIR/R12b || error
913         DIRINO2=`ls -lid $DIR/R12b | awk '{ print $1 }'`
914         [ "$DIRINO" = "$DIRINO2" ] || error "R12a $DIRINO != R12b $DIRINO2"
915 }
916 run_test 24p "mkdir .../R12{a,b}; rename .../R12a .../R12b"
917
918 cleanup_multiop_pause() {
919         trap 0
920         kill -USR1 $MULTIPID
921 }
922
923 test_24q() {
924         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
925         test_mkdir $DIR/R13a
926         test_mkdir $DIR/R13b
927         local DIRINO=$(ls -lid $DIR/R13a | awk '{ print $1 }')
928         multiop_bg_pause $DIR/R13b D_c || error "multiop failed to start"
929         MULTIPID=$!
930
931         trap cleanup_multiop_pause EXIT
932         mrename $DIR/R13a $DIR/R13b
933         $CHECKSTAT -a $DIR/R13a || error "R13a still exists"
934         $CHECKSTAT -t dir $DIR/R13b || error "R13b does not exist"
935         local DIRINO2=$(ls -lid $DIR/R13b | awk '{ print $1 }')
936         [ "$DIRINO" = "$DIRINO2" ] || error "R13a $DIRINO != R13b $DIRINO2"
937         cleanup_multiop_pause
938         wait $MULTIPID || error "multiop close failed"
939 }
940 run_test 24q "mkdir .../R13{a,b}; open R13b rename R13a R13b ==="
941
942 test_24r() { #bug 3789
943         test_mkdir $DIR/R14a
944         test_mkdir $DIR/R14a/b
945         mrename $DIR/R14a $DIR/R14a/b && error "rename to subdir worked!"
946         $CHECKSTAT -t dir $DIR/R14a || error "$DIR/R14a missing"
947         $CHECKSTAT -t dir $DIR/R14a/b || error "$DIR/R14a/b missing"
948 }
949 run_test 24r "mkdir .../R14a/b; rename .../R14a .../R14a/b ====="
950
951 test_24s() {
952         test_mkdir $DIR/R15a
953         test_mkdir $DIR/R15a/b
954         test_mkdir $DIR/R15a/b/c
955         mrename $DIR/R15a $DIR/R15a/b/c && error "rename to sub-subdir worked!"
956         $CHECKSTAT -t dir $DIR/R15a || error "$DIR/R15a missing"
957         $CHECKSTAT -t dir $DIR/R15a/b/c || error "$DIR/R15a/b/c missing"
958 }
959 run_test 24s "mkdir .../R15a/b/c; rename .../R15a .../R15a/b/c ="
960 test_24t() {
961         test_mkdir $DIR/R16a
962         test_mkdir $DIR/R16a/b
963         test_mkdir $DIR/R16a/b/c
964         mrename $DIR/R16a/b/c $DIR/R16a && error "rename to sub-subdir worked!"
965         $CHECKSTAT -t dir $DIR/R16a || error "$DIR/R16a missing"
966         $CHECKSTAT -t dir $DIR/R16a/b/c || error "$DIR/R16a/b/c missing"
967 }
968 run_test 24t "mkdir .../R16a/b/c; rename .../R16a/b/c .../R16a ="
969
970 test_24u() { # bug12192
971         rm -rf $DIR/$tfile
972         $MULTIOP $DIR/$tfile C2w$((2048 * 1024))c || error
973         $CHECKSTAT -s $((2048 * 1024)) $DIR/$tfile || error "wrong file size"
974 }
975 run_test 24u "create stripe file"
976
977 page_size() {
978         getconf PAGE_SIZE
979 }
980
981 simple_cleanup_common() {
982         trap 0
983         rm -rf $DIR/$tdir
984         wait_delete_completed
985 }
986
987 max_pages_per_rpc() {
988         $LCTL get_param -n mdc.*.max_pages_per_rpc | head -1
989 }
990
991 test_24v() {
992         local NRFILES=100000
993         local FREE_INODES=$(mdt_free_inodes 0)
994         [ $FREE_INODES -lt $NRFILES ] && \
995                 skip "not enough free inodes $FREE_INODES required $NRFILES" &&
996                 return
997
998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
999         trap simple_cleanup_common EXIT
1000
1001         mkdir -p $DIR/$tdir
1002         createmany -m $DIR/$tdir/$tfile $NRFILES
1003
1004         cancel_lru_locks mdc
1005         lctl set_param mdc.*.stats clear
1006
1007         ls $DIR/$tdir >/dev/null || error "error in listing large dir"
1008
1009         # LU-5 large readdir
1010         # DIRENT_SIZE = 32 bytes for sizeof(struct lu_dirent) +
1011         #               8 bytes for name(filename is mostly 5 in this test) +
1012         #               8 bytes for luda_type
1013         # take into account of overhead in lu_dirpage header and end mark in
1014         # each page, plus one in RPC_NUM calculation.
1015         DIRENT_SIZE=48
1016         RPC_SIZE=$(($(max_pages_per_rpc) * $(page_size)))
1017         RPC_NUM=$(((NRFILES * DIRENT_SIZE + RPC_SIZE - 1) / RPC_SIZE + 1))
1018         mds_readpage=$(lctl get_param mdc.*MDT0000*.stats | \
1019                                 awk '/^mds_readpage/ {print $2}')
1020         [ $mds_readpage -gt $RPC_NUM ] && \
1021                 error "large readdir doesn't take effect"
1022
1023         simple_cleanup_common
1024 }
1025 run_test 24v "list directory with large files (handle hash collision, bug: 17560)"
1026
1027 test_24w() { # bug21506
1028         SZ1=234852
1029         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=4096 || return 1
1030         dd if=/dev/zero bs=$SZ1 count=1 >> $DIR/$tfile || return 2
1031         dd if=$DIR/$tfile of=$DIR/${tfile}_left bs=1M skip=4097 || return 3
1032         SZ2=`ls -l $DIR/${tfile}_left | awk '{print $5}'`
1033         [ "$SZ1" = "$SZ2" ] || \
1034                 error "Error reading at the end of the file $tfile"
1035 }
1036 run_test 24w "Reading a file larger than 4Gb"
1037
1038 test_24x() {
1039         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1040         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1041         local MDTIDX=1
1042         local remote_dir=$DIR/$tdir/remote_dir
1043
1044         mkdir -p $DIR/$tdir
1045         $LFS mkdir -i $MDTIDX $remote_dir ||
1046                 error "create remote directory failed"
1047
1048         mkdir -p $DIR/$tdir/src_dir
1049         touch $DIR/$tdir/src_file
1050         mkdir -p $remote_dir/tgt_dir
1051         touch $remote_dir/tgt_file
1052
1053         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1054                 error "rename dir cross MDT works!"
1055
1056         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1057                 error "rename file cross MDT works!"
1058
1059         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1060                 error "ln file cross MDT should not work!"
1061
1062         rm -rf $DIR/$tdir || error "Can not delete directories"
1063 }
1064 run_test 24x "cross rename/link should be failed"
1065
1066 test_24y() {
1067         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1068         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1069         local MDTIDX=1
1070         local remote_dir=$DIR/$tdir/remote_dir
1071
1072         mkdir -p $DIR/$tdir
1073         $LFS mkdir -i $MDTIDX $remote_dir ||
1074                    error "create remote directory failed"
1075
1076         mkdir -p $remote_dir/src_dir
1077         touch $remote_dir/src_file
1078         mkdir -p $remote_dir/tgt_dir
1079         touch $remote_dir/tgt_file
1080
1081         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1082                 error "rename subdir in the same remote dir failed!"
1083
1084         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1085                 error "rename files in the same remote dir failed!"
1086
1087         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1088                 error "link files in the same remote dir failed!"
1089
1090         rm -rf $DIR/$tdir || error "Can not delete directories"
1091 }
1092 run_test 24y "rename/link on the same dir should succeed"
1093
1094 test_24z() {
1095         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1096         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1097         local MDTIDX=1
1098         local remote_src=$DIR/$tdir/remote_dir
1099         local remote_tgt=$DIR/$tdir/remote_tgt
1100
1101         mkdir -p $DIR/$tdir
1102         $LFS mkdir -i $MDTIDX $remote_src ||
1103                    error "create remote directory failed"
1104
1105         $LFS mkdir -i $MDTIDX $remote_tgt ||
1106                    error "create remote directory failed"
1107
1108         mrename $remote_src $remote_tgt &&
1109                 error "rename remote dirs should not work!"
1110
1111         # If target dir does not exists, it should succeed
1112         rm -rf $remote_tgt
1113         mrename $remote_src $remote_tgt ||
1114                 error "rename remote dirs(tgt dir does not exists) failed!"
1115
1116         rm -rf $DIR/$tdir || error "Can not delete directories"
1117 }
1118 run_test 24z "rename one remote dir to another remote dir should fail"
1119
1120 test_24A() { # LU-3182
1121         local NFILES=5000
1122
1123         mkdir -p $DIR/$tdir
1124         createmany -m $DIR/$tdir/$tfile $NFILES
1125         local t=`ls $DIR/$tdir | wc -l`
1126         local u=`ls $DIR/$tdir | sort -u | wc -l`
1127         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1128                 error "Expected $NFILES files, got $t ($u unique)"
1129         fi
1130
1131         rm -rf $DIR/$tdir || error "Can not delete directories"
1132 }
1133 run_test 24A "readdir() returns correct number of entries."
1134
1135 test_25a() {
1136         echo '== symlink sanity ============================================='
1137
1138         test_mkdir $DIR/d25
1139         ln -s d25 $DIR/s25
1140         touch $DIR/s25/foo || error
1141 }
1142 run_test 25a "create file in symlinked directory ==============="
1143
1144 test_25b() {
1145         [ ! -d $DIR/d25 ] && test_25a
1146         $CHECKSTAT -t file $DIR/s25/foo || error
1147 }
1148 run_test 25b "lookup file in symlinked directory ==============="
1149
1150 test_26a() {
1151         test_mkdir $DIR/d26
1152         test_mkdir $DIR/d26/d26-2
1153         ln -s d26/d26-2 $DIR/s26
1154         touch $DIR/s26/foo || error
1155 }
1156 run_test 26a "multiple component symlink ======================="
1157
1158 test_26b() {
1159         test_mkdir -p $DIR/d26b/d26-2
1160         ln -s d26b/d26-2/foo $DIR/s26-2
1161         touch $DIR/s26-2 || error
1162 }
1163 run_test 26b "multiple component symlink at end of lookup ======"
1164
1165 test_26c() {
1166         test_mkdir $DIR/d26.2
1167         touch $DIR/d26.2/foo
1168         ln -s d26.2 $DIR/s26.2-1
1169         ln -s s26.2-1 $DIR/s26.2-2
1170         ln -s s26.2-2 $DIR/s26.2-3
1171         chmod 0666 $DIR/s26.2-3/foo
1172 }
1173 run_test 26c "chain of symlinks ================================"
1174
1175 # recursive symlinks (bug 439)
1176 test_26d() {
1177         ln -s d26-3/foo $DIR/d26-3
1178 }
1179 run_test 26d "create multiple component recursive symlink ======"
1180
1181 test_26e() {
1182         [ ! -h $DIR/d26-3 ] && test_26d
1183         rm $DIR/d26-3
1184 }
1185 run_test 26e "unlink multiple component recursive symlink ======"
1186
1187 # recursive symlinks (bug 7022)
1188 test_26f() {
1189         test_mkdir -p $DIR/$tdir
1190         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1191         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1192         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1193         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1194         cd $tfile                || error "cd $tfile failed"
1195         ln -s .. dotdot          || error "ln dotdot failed"
1196         ln -s dotdot/lndir lndir || error "ln lndir failed"
1197         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1198         output=`ls $tfile/$tfile/lndir/bar1`
1199         [ "$output" = bar1 ] && error "unexpected output"
1200         rm -r $tfile             || error "rm $tfile failed"
1201         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1202 }
1203 run_test 26f "rm -r of a directory which has recursive symlink ="
1204
1205 test_27a() {
1206         echo '== stripe sanity =============================================='
1207         test_mkdir -p $DIR/d27 || error "mkdir failed"
1208         $GETSTRIPE $DIR/d27
1209         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1210         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1211         pass
1212         log "== test_27a: write to one stripe file ========================="
1213         cp /etc/hosts $DIR/d27/f0 || error
1214 }
1215 run_test 27a "one stripe file =================================="
1216
1217 test_27b() {
1218         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1219         test_mkdir -p $DIR/d27
1220         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1221         $GETSTRIPE -c $DIR/d27/f01
1222         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1223                 error "two-stripe file doesn't have two stripes"
1224
1225         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1226 }
1227 run_test 27b "create and write to two stripe file"
1228
1229 test_27d() {
1230         test_mkdir -p $DIR/d27
1231         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1232         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1233         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1234 }
1235 run_test 27d "create file with default settings ================"
1236
1237 test_27e() {
1238         test_mkdir -p $DIR/d27
1239         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1240         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1241         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1242 }
1243 run_test 27e "setstripe existing file (should return error) ======"
1244
1245 test_27f() {
1246         test_mkdir -p $DIR/d27
1247         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1248         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1249         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1250 }
1251 run_test 27f "setstripe with bad stripe size (should return error)"
1252
1253 test_27g() {
1254         test_mkdir -p $DIR/d27
1255         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1256         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1257                 error "$DIR/d27/fnone has object"
1258 }
1259 run_test 27g "$GETSTRIPE with no objects"
1260
1261 test_27i() {
1262         touch $DIR/d27/fsome || error "touch failed"
1263         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1264 }
1265 run_test 27i "$GETSTRIPE with some objects"
1266
1267 test_27j() {
1268         test_mkdir -p $DIR/d27
1269         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1270 }
1271 run_test 27j "setstripe with bad stripe offset (should return error)"
1272
1273 test_27k() { # bug 2844
1274         test_mkdir -p $DIR/d27
1275         FILE=$DIR/d27/f27k
1276         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1277         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1278         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1279         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1280         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1281         dd if=/dev/zero of=$FILE bs=4k count=1
1282         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1283         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1284 }
1285 run_test 27k "limit i_blksize for broken user apps ============="
1286
1287 test_27l() {
1288         test_mkdir -p $DIR/d27
1289         mcreate $DIR/f27l || error "creating file"
1290         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1291                 error "setstripe should have failed" || true
1292 }
1293 run_test 27l "check setstripe permissions (should return error)"
1294
1295 test_27m() {
1296         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1297                 return
1298         if [ $ORIGFREE -gt $MAXFREE ]; then
1299                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1300                 return
1301         fi
1302         trap simple_cleanup_common EXIT
1303         test_mkdir -p $DIR/$tdir
1304         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1305         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1306                 error "dd should fill OST0"
1307         i=2
1308         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1309                 i=`expr $i + 1`
1310                 [ $i -gt 256 ] && break
1311         done
1312         i=`expr $i + 1`
1313         touch $DIR/$tdir/f27m_$i
1314         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1315                 error "OST0 was full but new created file still use it"
1316         i=`expr $i + 1`
1317         touch $DIR/$tdir/f27m_$i
1318         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1319                 error "OST0 was full but new created file still use it"
1320         simple_cleanup_common
1321 }
1322 run_test 27m "create file while OST0 was full =================="
1323
1324 sleep_maxage() {
1325         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1326         sleep $DELAY
1327 }
1328
1329 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1330 # if the OST isn't full anymore.
1331 reset_enospc() {
1332         local OSTIDX=${1:-""}
1333
1334         local list=$(comma_list $(osts_nodes))
1335         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1336
1337         do_nodes $list lctl set_param fail_loc=0
1338         sync    # initiate all OST_DESTROYs from MDS to OST
1339         sleep_maxage
1340 }
1341
1342 exhaust_precreations() {
1343         local OSTIDX=$1
1344         local FAILLOC=$2
1345         local FAILIDX=${3:-$OSTIDX}
1346
1347         test_mkdir -p $DIR/$tdir
1348         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1349         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1350
1351         local OST=$(ostname_from_index $OSTIDX)
1352         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1353                           sed -e 's/_UUID$//;s/^.*-//')
1354
1355         # on the mdt's osc
1356         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1357         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1358         osc.$mdtosc_proc1.prealloc_last_id)
1359         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1360         osc.$mdtosc_proc1.prealloc_next_id)
1361
1362         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1363         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1364
1365         test_mkdir -p $DIR/$tdir/${OST}
1366         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1367 #define OBD_FAIL_OST_ENOSPC              0x215
1368         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1369         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1370         echo "Creating to objid $last_id on ost $OST..."
1371         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1372         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1373         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1374         sleep_maxage
1375 }
1376
1377 exhaust_all_precreations() {
1378         local i
1379         for (( i=0; i < OSTCOUNT; i++ )) ; do
1380                 exhaust_precreations $i $1 -1
1381         done
1382 }
1383
1384 test_27n() {
1385         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1386         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1387         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1388         remote_ost_nodsh && skip "remote OST with nodsh" && return
1389
1390         reset_enospc
1391         rm -f $DIR/$tdir/$tfile
1392         exhaust_precreations 0 0x80000215
1393         $SETSTRIPE -c -1 $DIR/$tdir
1394         touch $DIR/$tdir/$tfile || error
1395         $GETSTRIPE $DIR/$tdir/$tfile
1396         reset_enospc
1397 }
1398 run_test 27n "create file with some full OSTs =================="
1399
1400 test_27o() {
1401         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1402         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1403         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1404         remote_ost_nodsh && skip "remote OST with nodsh" && return
1405
1406         reset_enospc
1407         rm -f $DIR/$tdir/$tfile
1408         exhaust_all_precreations 0x215
1409
1410         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1411
1412         reset_enospc
1413         rm -rf $DIR/$tdir/*
1414 }
1415 run_test 27o "create file with all full OSTs (should error) ===="
1416
1417 test_27p() {
1418         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1420         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1421         remote_ost_nodsh && skip "remote OST with nodsh" && return
1422
1423         reset_enospc
1424         rm -f $DIR/$tdir/$tfile
1425         test_mkdir -p $DIR/$tdir
1426
1427         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1428         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1429         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1430
1431         exhaust_precreations 0 0x80000215
1432         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1433         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1434         $GETSTRIPE $DIR/$tdir/$tfile
1435
1436         reset_enospc
1437 }
1438 run_test 27p "append to a truncated file with some full OSTs ==="
1439
1440 test_27q() {
1441         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1443         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1444         remote_ost_nodsh && skip "remote OST with nodsh" && return
1445
1446         reset_enospc
1447         rm -f $DIR/$tdir/$tfile
1448
1449         test_mkdir -p $DIR/$tdir
1450         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1451         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1452         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1453
1454         exhaust_all_precreations 0x215
1455
1456         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1457         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1458
1459         reset_enospc
1460 }
1461 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1462
1463 test_27r() {
1464         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1465         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1466         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1467         remote_ost_nodsh && skip "remote OST with nodsh" && return
1468
1469         reset_enospc
1470         rm -f $DIR/$tdir/$tfile
1471         exhaust_precreations 0 0x80000215
1472
1473         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1474
1475         reset_enospc
1476 }
1477 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1478
1479 test_27s() { # bug 10725
1480         test_mkdir -p $DIR/$tdir
1481         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1482         local stripe_count=0
1483         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1484         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1485                 error "stripe width >= 2^32 succeeded" || true
1486
1487 }
1488 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1489
1490 test_27t() { # bug 10864
1491         WDIR=`pwd`
1492         WLFS=`which lfs`
1493         cd $DIR
1494         touch $tfile
1495         $WLFS getstripe $tfile
1496         cd $WDIR
1497 }
1498 run_test 27t "check that utils parse path correctly"
1499
1500 test_27u() { # bug 4900
1501         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1502         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1503         local index
1504         local list=$(comma_list $(mdts_nodes))
1505
1506 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1507         do_nodes $list $LCTL set_param fail_loc=0x139
1508         test_mkdir -p $DIR/$tdir
1509         rm -rf $DIR/$tdir/*
1510         createmany -o $DIR/$tdir/t- 1000
1511         do_nodes $list $LCTL set_param fail_loc=0
1512
1513         TLOG=$DIR/$tfile.getstripe
1514         $GETSTRIPE $DIR/$tdir > $TLOG
1515         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1516         unlinkmany $DIR/$tdir/t- 1000
1517         [ $OBJS -gt 0 ] && \
1518                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1519 }
1520 run_test 27u "skip object creation on OSC w/o objects =========="
1521
1522 test_27v() { # bug 4900
1523         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1524         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1525         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1526         remote_ost_nodsh && skip "remote OST with nodsh" && return
1527
1528         exhaust_all_precreations 0x215
1529         reset_enospc
1530
1531         test_mkdir -p $DIR/$tdir
1532         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1533
1534         touch $DIR/$tdir/$tfile
1535         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1536         # all except ost1
1537         for (( i=1; i < OSTCOUNT; i++ )); do
1538                 do_facet ost$i lctl set_param fail_loc=0x705
1539         done
1540         local START=`date +%s`
1541         createmany -o $DIR/$tdir/$tfile 32
1542
1543         local FINISH=`date +%s`
1544         local TIMEOUT=`lctl get_param -n timeout`
1545         local PROCESS=$((FINISH - START))
1546         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1547                error "$FINISH - $START >= $TIMEOUT / 2"
1548         sleep $((TIMEOUT / 2 - PROCESS))
1549         reset_enospc
1550 }
1551 run_test 27v "skip object creation on slow OST ================="
1552
1553 test_27w() { # bug 10997
1554         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1555         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1556         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1557                 error "stripe size $size != 65536" || true
1558         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1559                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1560 }
1561 run_test 27w "check $SETSTRIPE -S option"
1562
1563 test_27wa() {
1564         [ "$OSTCOUNT" -lt "2" ] &&
1565                 skip_env "skipping multiple stripe count/offset test" && return
1566
1567         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1568         for i in $(seq 1 $OSTCOUNT); do
1569                 offset=$((i - 1))
1570                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1571                         error "setstripe -c $i -i $offset failed"
1572                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1573                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1574                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1575                 [ $index -ne $offset ] &&
1576                         error "stripe offset $index != $offset" || true
1577         done
1578 }
1579 run_test 27wa "check $SETSTRIPE -c -i options"
1580
1581 test_27x() {
1582         remote_ost_nodsh && skip "remote OST with nodsh" && return
1583         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1585         OFFSET=$(($OSTCOUNT - 1))
1586         OSTIDX=0
1587         local OST=$(ostname_from_index $OSTIDX)
1588
1589         test_mkdir -p $DIR/$tdir
1590         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1591         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1592         sleep_maxage
1593         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1594         for i in `seq 0 $OFFSET`; do
1595                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1596                 error "OST0 was degraded but new created file still use it"
1597         done
1598         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1599 }
1600 run_test 27x "create files while OST0 is degraded"
1601
1602 test_27y() {
1603         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1605         remote_ost_nodsh && skip "remote OST with nodsh" && return
1606         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1607
1608         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1609         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1610             osc.$mdtosc.prealloc_last_id)
1611         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1612             osc.$mdtosc.prealloc_next_id)
1613         local fcount=$((last_id - next_id))
1614         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1615         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1616
1617         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1618                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1619         local OST_DEACTIVE_IDX=-1
1620         local OSC
1621         local OSTIDX
1622         local OST
1623
1624         for OSC in $MDS_OSCS; do
1625                 OST=$(osc_to_ost $OSC)
1626                 OSTIDX=$(index_from_ostuuid $OST)
1627                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1628                         OST_DEACTIVE_IDX=$OSTIDX
1629                 fi
1630                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1631                         echo $OSC "is Deactivated:"
1632                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1633                 fi
1634         done
1635
1636         OSTIDX=$(index_from_ostuuid $OST)
1637         mkdir -p $DIR/$tdir
1638         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1639
1640         for OSC in $MDS_OSCS; do
1641                 OST=$(osc_to_ost $OSC)
1642                 OSTIDX=$(index_from_ostuuid $OST)
1643                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1644                         echo $OST "is degraded:"
1645                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1646                                                 obdfilter.$OST.degraded=1
1647                 fi
1648         done
1649
1650         sleep_maxage
1651         createmany -o $DIR/$tdir/$tfile $fcount
1652
1653         for OSC in $MDS_OSCS; do
1654                 OST=$(osc_to_ost $OSC)
1655                 OSTIDX=$(index_from_ostuuid $OST)
1656                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1657                         echo $OST "is recovered from degraded:"
1658                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1659                                                 obdfilter.$OST.degraded=0
1660                 else
1661                         do_facet $SINGLEMDS lctl --device %$OSC activate
1662                 fi
1663         done
1664
1665         # all osp devices get activated, hence -1 stripe count restored
1666         local stripecnt=0
1667
1668         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1669         # devices get activated.
1670         sleep_maxage
1671         $SETSTRIPE -c -1 $DIR/$tfile
1672         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1673         rm -f $DIR/$tfile
1674         [ $stripecnt -ne $OSTCOUNT ] &&
1675                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1676         return 0
1677 }
1678 run_test 27y "create files while OST0 is degraded and the rest inactive"
1679
1680 check_seq_oid()
1681 {
1682         log "check file $1"
1683
1684         lmm_count=$($GETSTRIPE -c $1)
1685         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1686         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1687
1688         local old_ifs="$IFS"
1689         IFS=$'[:]'
1690         fid=($($LFS path2fid $1))
1691         IFS="$old_ifs"
1692
1693         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1694         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1695
1696         # compare lmm_seq and lu_fid->f_seq
1697         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1698         # compare lmm_object_id and lu_fid->oid
1699         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1700
1701         # check the trusted.fid attribute of the OST objects of the file
1702         local have_obdidx=false
1703         local stripe_nr=0
1704         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1705                 # skip lines up to and including "obdidx"
1706                 [ -z "$obdidx" ] && break
1707                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1708                 $have_obdidx || continue
1709
1710                 local ost=$((obdidx + 1))
1711                 local dev=$(ostdevname $ost)
1712                 local oid_hex
1713
1714                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1715                         echo "Currently only works with ldiskfs-based OSTs"
1716                         continue
1717                 fi
1718
1719                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1720
1721                 #don't unmount/remount the OSTs if we don't need to do that
1722                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1723                 # update too, until that use mount/ll_decode_filter_fid/mount
1724                 local dir=$(facet_mntpt ost$ost)
1725                 local opts=${OST_MOUNT_OPTS}
1726
1727                 if !  do_facet ost$ost test -b ${dev}; then
1728                         opts=$(csa_add "$opts" -o loop)
1729                 fi
1730
1731                 stop ost$ost
1732                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1733                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1734
1735                 seq=$(echo $seq | sed -e "s/^0x//g")
1736                 if [ $seq == 0 ]; then
1737                         oid_hex=$(echo $oid)
1738                 else
1739                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1740                 fi
1741                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1742                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1743                 do_facet ost$ost umount -d $dir
1744                 start ost$ost $dev $OST_MOUNT_OPTS
1745
1746                 # re-enable when debugfs will understand new filter_fid
1747                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1748                 #           $dev 2>/dev/null" | grep "parent=")
1749
1750                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1751
1752                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1753
1754                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1755                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1756                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1757                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1758                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1759                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1760
1761                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1762                 [ $ff_pseq = $lmm_seq ] ||
1763                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1764                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1765                 [ $ff_poid = $lmm_oid ] ||
1766                         error "FF parent OID $ff_poid != $lmm_oid"
1767                 [ $ff_pstripe = $stripe_nr ] ||
1768                         error "FF stripe $ff_pstripe != $stripe_nr"
1769
1770                 stripe_nr=$((stripe_nr + 1))
1771         done
1772 }
1773
1774 test_27z() {
1775         remote_ost_nodsh && skip "remote OST with nodsh" && return
1776         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1777         test_mkdir -p $DIR/$tdir
1778
1779         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1780                 { error "setstripe -c -1 failed"; return 1; }
1781         # We need to send a write to every object to get parent FID info set.
1782         # This _should_ also work for setattr, but does not currently.
1783         # touch $DIR/$tdir/$tfile-1 ||
1784         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1785                 { error "dd $tfile-1 failed"; return 2; }
1786         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1787                 { error "setstripe -c -1 failed"; return 3; }
1788         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1789                 { error "dd $tfile-2 failed"; return 4; }
1790
1791         # make sure write RPCs have been sent to OSTs
1792         sync; sleep 5; sync
1793
1794         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1795         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1796 }
1797 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1798
1799 test_27A() { # b=19102
1800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1801         local restore_size=$($GETSTRIPE -S $MOUNT)
1802         local restore_count=$($GETSTRIPE -c $MOUNT)
1803         local restore_offset=$($GETSTRIPE -i $MOUNT)
1804         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1805         local default_size=$($GETSTRIPE -S $MOUNT)
1806         local default_count=$($GETSTRIPE -c $MOUNT)
1807         local default_offset=$($GETSTRIPE -i $MOUNT)
1808         local dsize=$((1024 * 1024))
1809         [ $default_size -eq $dsize ] ||
1810                 error "stripe size $default_size != $dsize"
1811         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1812         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1813         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1814 }
1815 run_test 27A "check filesystem-wide default LOV EA values"
1816
1817 test_27B() { # LU-2523
1818         test_mkdir -p $DIR/$tdir
1819         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1820         touch $DIR/$tdir/f0
1821         # open f1 with O_LOV_DELAY_CREATE
1822         # rename f0 onto f1
1823         # call setstripe ioctl on open file descriptor for f1
1824         # close
1825         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1826                 $DIR/$tdir/f0
1827
1828         rm -f $DIR/$tdir/f1
1829         # open f1 with O_LOV_DELAY_CREATE
1830         # unlink f1
1831         # call setstripe ioctl on open file descriptor for f1
1832         # close
1833         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1834
1835         # Allow multiop to fail in imitation of NFS's busted semantics.
1836         true
1837 }
1838 run_test 27B "call setstripe on open unlinked file/rename victim"
1839
1840 test_27C() { #LU-2871
1841         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1842
1843         declare -a ost_idx
1844         local index
1845         local found
1846         local i
1847         local j
1848
1849         test_mkdir -p $DIR/$tdir
1850         cd $DIR/$tdir
1851         for i in $(seq 0 $((OSTCOUNT - 1))); do
1852                 # set stripe across all OSTs starting from OST$i
1853                 $SETSTRIPE -i $i -c -1 $tfile$i
1854                 # get striping information
1855                 ost_idx=($($GETSTRIPE $tfile$i |
1856                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1857                 echo ${ost_idx[@]}
1858
1859                 # check the layout
1860                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1861                         error "${#ost_idx[@]} != $OSTCOUNT"
1862
1863                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1864                         found=0
1865                         for j in $(echo ${ost_idx[@]}); do
1866                                 if [ $index -eq $j ]; then
1867                                         found=1
1868                                         break
1869                                 fi
1870                         done
1871                         [ $found = 1 ] ||
1872                                 error "Can not find $index in ${ost_idx[@]}"
1873                 done
1874         done
1875 }
1876 run_test 27C "check full striping across all OSTs"
1877
1878 # createtest also checks that device nodes are created and
1879 # then visible correctly (#2091)
1880 test_28() { # bug 2091
1881         test_mkdir $DIR/d28
1882         $CREATETEST $DIR/d28/ct || error
1883 }
1884 run_test 28 "create/mknod/mkdir with bad file types ============"
1885
1886 test_29() {
1887         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1888         cancel_lru_locks mdc
1889         test_mkdir $DIR/d29
1890         touch $DIR/d29/foo
1891         log 'first d29'
1892         ls -l $DIR/d29
1893
1894         declare -i LOCKCOUNTORIG=0
1895         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1896                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1897         done
1898         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1899
1900         declare -i LOCKUNUSEDCOUNTORIG=0
1901         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1902                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1903         done
1904
1905         log 'second d29'
1906         ls -l $DIR/d29
1907         log 'done'
1908
1909         declare -i LOCKCOUNTCURRENT=0
1910         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1911                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1912         done
1913
1914         declare -i LOCKUNUSEDCOUNTCURRENT=0
1915         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1916                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1917         done
1918
1919         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1920                 lctl set_param -n ldlm.dump_namespaces ""
1921                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1922                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1923                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1924                 return 2
1925         fi
1926         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1927                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1928                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1929                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1930                 return 3
1931         fi
1932 }
1933 run_test 29 "IT_GETATTR regression  ============================"
1934
1935 test_30a() { # was test_30
1936         cp `which ls` $DIR || cp /bin/ls $DIR
1937         $DIR/ls / || error
1938         rm $DIR/ls
1939 }
1940 run_test 30a "execute binary from Lustre (execve) =============="
1941
1942 test_30b() {
1943         cp `which ls` $DIR || cp /bin/ls $DIR
1944         chmod go+rx $DIR/ls
1945         $RUNAS $DIR/ls / || error
1946         rm $DIR/ls
1947 }
1948 run_test 30b "execute binary from Lustre as non-root ==========="
1949
1950 test_30c() { # b=22376
1951         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1952         cp `which ls` $DIR || cp /bin/ls $DIR
1953         chmod a-rw $DIR/ls
1954         cancel_lru_locks mdc
1955         cancel_lru_locks osc
1956         $RUNAS $DIR/ls / || error
1957         rm -f $DIR/ls
1958 }
1959 run_test 30c "execute binary from Lustre without read perms ===="
1960
1961 test_31a() {
1962         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1963         $CHECKSTAT -a $DIR/f31 || error
1964 }
1965 run_test 31a "open-unlink file =================================="
1966
1967 test_31b() {
1968         touch $DIR/f31 || error
1969         ln $DIR/f31 $DIR/f31b || error
1970         $MULTIOP $DIR/f31b Ouc || error
1971         $CHECKSTAT -t file $DIR/f31 || error
1972 }
1973 run_test 31b "unlink file with multiple links while open ======="
1974
1975 test_31c() {
1976         touch $DIR/f31 || error
1977         ln $DIR/f31 $DIR/f31c || error
1978         multiop_bg_pause $DIR/f31 O_uc || return 1
1979         MULTIPID=$!
1980         $MULTIOP $DIR/f31c Ouc
1981         kill -USR1 $MULTIPID
1982         wait $MULTIPID
1983 }
1984 run_test 31c "open-unlink file with multiple links ============="
1985
1986 test_31d() {
1987         opendirunlink $DIR/d31d $DIR/d31d || error
1988         $CHECKSTAT -a $DIR/d31d || error
1989 }
1990 run_test 31d "remove of open directory ========================="
1991
1992 test_31e() { # bug 2904
1993         check_kernel_version 34 || return 0
1994         openfilleddirunlink $DIR/d31e || error
1995 }
1996 run_test 31e "remove of open non-empty directory ==============="
1997
1998 test_31f() { # bug 4554
1999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2000         set -vx
2001         test_mkdir $DIR/d31f
2002         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2003         cp /etc/hosts $DIR/d31f
2004         ls -l $DIR/d31f
2005         $GETSTRIPE $DIR/d31f/hosts
2006         multiop_bg_pause $DIR/d31f D_c || return 1
2007         MULTIPID=$!
2008
2009         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2010         test_mkdir $DIR/d31f
2011         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2012         cp /etc/hosts $DIR/d31f
2013         ls -l $DIR/d31f
2014         $GETSTRIPE $DIR/d31f/hosts
2015         multiop_bg_pause $DIR/d31f D_c || return 1
2016         MULTIPID2=$!
2017
2018         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2019         wait $MULTIPID || error "first opendir $MULTIPID failed"
2020
2021         sleep 6
2022
2023         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2024         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2025         set +vx
2026 }
2027 run_test 31f "remove of open directory with open-unlink file ==="
2028
2029 test_31g() {
2030         echo "-- cross directory link --"
2031         test_mkdir $DIR/d31ga
2032         test_mkdir $DIR/d31gb
2033         touch $DIR/d31ga/f
2034         ln $DIR/d31ga/f $DIR/d31gb/g
2035         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2036         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2037         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2038         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2039 }
2040 run_test 31g "cross directory link==============="
2041
2042 test_31h() {
2043         echo "-- cross directory link --"
2044         test_mkdir $DIR/d31h
2045         test_mkdir $DIR/d31h/dir
2046         touch $DIR/d31h/f
2047         ln $DIR/d31h/f $DIR/d31h/dir/g
2048         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2049         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2050         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2051         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2052 }
2053 run_test 31h "cross directory link under child==============="
2054
2055 test_31i() {
2056         echo "-- cross directory link --"
2057         test_mkdir $DIR/d31i
2058         test_mkdir $DIR/d31i/dir
2059         touch $DIR/d31i/dir/f
2060         ln $DIR/d31i/dir/f $DIR/d31i/g
2061         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2062         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2063         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2064         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2065 }
2066 run_test 31i "cross directory link under parent==============="
2067
2068
2069 test_31j() {
2070         test_mkdir $DIR/d31j
2071         test_mkdir $DIR/d31j/dir1
2072         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2073         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2074         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2075         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2076         return 0
2077 }
2078 run_test 31j "link for directory==============="
2079
2080
2081 test_31k() {
2082         test_mkdir $DIR/d31k
2083         touch $DIR/d31k/s
2084         touch $DIR/d31k/exist
2085         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2086         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2087         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2088         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2089         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2090         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2091         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2092         return 0
2093 }
2094 run_test 31k "link to file: the same, non-existing, dir==============="
2095
2096 test_31m() {
2097         test_mkdir $DIR/d31m
2098         touch $DIR/d31m/s
2099         test_mkdir $DIR/d31m2
2100         touch $DIR/d31m2/exist
2101         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2102         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2103         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2104         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2105         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2106         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2107         return 0
2108 }
2109 run_test 31m "link to file: the same, non-existing, dir==============="
2110
2111 test_31n() {
2112         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2113         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2114         nlink=$(stat --format=%h $DIR/$tfile)
2115         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2116         exec 173<$DIR/$tfile
2117         trap "exec 173<&-" EXIT
2118         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2119         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2120         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2121         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2122         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2123         exec 173<&-
2124 }
2125 run_test 31n "check link count of unlinked file"
2126
2127 link_one() {
2128         local TEMPNAME=$(mktemp $1_XXXXXX)
2129         mlink $TEMPNAME $1 2> /dev/null &&
2130                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2131         munlink $TEMPNAME
2132 }
2133
2134 test_31o() { # LU-2901
2135         mkdir -p $DIR/$tdir
2136         for LOOP in $(seq 100); do
2137                 rm -f $DIR/$tdir/$tfile*
2138                 for THREAD in $(seq 8); do
2139                         link_one $DIR/$tdir/$tfile.$LOOP &
2140                 done
2141                 wait
2142                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2143                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2144                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2145                         break || true
2146         done
2147 }
2148 run_test 31o "duplicate hard links with same filename"
2149
2150 cleanup_test32_mount() {
2151         trap 0
2152         $UMOUNT $DIR/$tdir/ext2-mountpoint
2153 }
2154
2155 test_32a() {
2156         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2157         echo "== more mountpoints and symlinks ================="
2158         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2159         trap cleanup_test32_mount EXIT
2160         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2161         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2162         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2163         cleanup_test32_mount
2164 }
2165 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2166
2167 test_32b() {
2168         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2169         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2170         trap cleanup_test32_mount EXIT
2171         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2172         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2173         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2174         cleanup_test32_mount
2175 }
2176 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2177
2178 test_32c() {
2179         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2180         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2181         trap cleanup_test32_mount EXIT
2182         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2183         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2184         test_mkdir -p $DIR/$tdir/d2/test_dir
2185         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2186         cleanup_test32_mount
2187 }
2188 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2189
2190 test_32d() {
2191         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2192         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2193         trap cleanup_test32_mount EXIT
2194         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2195         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2196         test_mkdir -p $DIR/$tdir/d2/test_dir
2197         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2198         cleanup_test32_mount
2199 }
2200 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2201
2202 test_32e() {
2203         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2204         test_mkdir -p $DIR/d32e/tmp
2205         TMP_DIR=$DIR/d32e/tmp
2206         ln -s $DIR/d32e $TMP_DIR/symlink11
2207         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2208         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2209         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2210 }
2211 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2212
2213 test_32f() {
2214         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2215         test_mkdir -p $DIR/d32f/tmp
2216         TMP_DIR=$DIR/d32f/tmp
2217         ln -s $DIR/d32f $TMP_DIR/symlink11
2218         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2219         ls $DIR/d32f/tmp/symlink11  || error
2220         ls $DIR/d32f/symlink01 || error
2221 }
2222 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2223
2224 test_32g() {
2225         TMP_DIR=$DIR/$tdir/tmp
2226         test_mkdir -p $DIR/$tdir/tmp
2227         test_mkdir $DIR/${tdir}2
2228         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2229         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2230         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2231         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2232         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2233         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2234 }
2235 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2236
2237 test_32h() {
2238         rm -fr $DIR/$tdir $DIR/${tdir}2
2239         TMP_DIR=$DIR/$tdir/tmp
2240         test_mkdir -p $DIR/$tdir/tmp
2241         test_mkdir $DIR/${tdir}2
2242         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2243         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2244         ls $TMP_DIR/symlink12 || error
2245         ls $DIR/$tdir/symlink02  || error
2246 }
2247 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2248
2249 test_32i() {
2250         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2251         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2252         trap cleanup_test32_mount EXIT
2253         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2254         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2255         touch $DIR/$tdir/test_file
2256         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2257         cleanup_test32_mount
2258 }
2259 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2260
2261 test_32j() {
2262         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2263         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2264         trap cleanup_test32_mount EXIT
2265         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2266         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2267         touch $DIR/$tdir/test_file
2268         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2269         cleanup_test32_mount
2270 }
2271 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2272
2273 test_32k() {
2274         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2275         rm -fr $DIR/$tdir
2276         trap cleanup_test32_mount EXIT
2277         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2278         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2279         test_mkdir -p $DIR/$tdir/d2
2280         touch $DIR/$tdir/d2/test_file || error
2281         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2282         cleanup_test32_mount
2283 }
2284 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2285
2286 test_32l() {
2287         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2288         rm -fr $DIR/$tdir
2289         trap cleanup_test32_mount EXIT
2290         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2291         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2292         test_mkdir -p $DIR/$tdir/d2
2293         touch $DIR/$tdir/d2/test_file
2294         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2295         cleanup_test32_mount
2296 }
2297 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2298
2299 test_32m() {
2300         rm -fr $DIR/d32m
2301         test_mkdir -p $DIR/d32m/tmp
2302         TMP_DIR=$DIR/d32m/tmp
2303         ln -s $DIR $TMP_DIR/symlink11
2304         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2305         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2306         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2307 }
2308 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2309
2310 test_32n() {
2311         rm -fr $DIR/d32n
2312         test_mkdir -p $DIR/d32n/tmp
2313         TMP_DIR=$DIR/d32n/tmp
2314         ln -s $DIR $TMP_DIR/symlink11
2315         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2316         ls -l $DIR/d32n/tmp/symlink11  || error
2317         ls -l $DIR/d32n/symlink01 || error
2318 }
2319 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2320
2321 test_32o() {
2322         rm -fr $DIR/d32o $DIR/$tfile
2323         touch $DIR/$tfile
2324         test_mkdir -p $DIR/d32o/tmp
2325         TMP_DIR=$DIR/d32o/tmp
2326         ln -s $DIR/$tfile $TMP_DIR/symlink12
2327         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2328         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2329         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2330         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2331         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2332 }
2333 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2334
2335 test_32p() {
2336     log 32p_1
2337         rm -fr $DIR/d32p
2338     log 32p_2
2339         rm -f $DIR/$tfile
2340     log 32p_3
2341         touch $DIR/$tfile
2342     log 32p_4
2343         test_mkdir -p $DIR/d32p/tmp
2344     log 32p_5
2345         TMP_DIR=$DIR/d32p/tmp
2346     log 32p_6
2347         ln -s $DIR/$tfile $TMP_DIR/symlink12
2348     log 32p_7
2349         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2350     log 32p_8
2351         cat $DIR/d32p/tmp/symlink12 || error
2352     log 32p_9
2353         cat $DIR/d32p/symlink02 || error
2354     log 32p_10
2355 }
2356 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2357
2358 cleanup_testdir_mount() {
2359         trap 0
2360         $UMOUNT $DIR/$tdir
2361 }
2362
2363 test_32q() {
2364         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2365         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2366         trap cleanup_testdir_mount EXIT
2367         test_mkdir -p $DIR/$tdir
2368         touch $DIR/$tdir/under_the_mount
2369         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2370         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2371         cleanup_testdir_mount
2372 }
2373 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2374
2375 test_32r() {
2376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2377         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2378         trap cleanup_testdir_mount EXIT
2379         test_mkdir -p $DIR/$tdir
2380         touch $DIR/$tdir/under_the_mount
2381         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2382         ls $DIR/$tdir | grep -q under_the_mount && error || true
2383         cleanup_testdir_mount
2384 }
2385 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2386
2387 test_33aa() {
2388         rm -f $DIR/$tfile
2389         touch $DIR/$tfile
2390         chmod 444 $DIR/$tfile
2391         chown $RUNAS_ID $DIR/$tfile
2392         log 33_1
2393         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2394         log 33_2
2395 }
2396 run_test 33aa "write file with mode 444 (should return error) ===="
2397
2398 test_33a() {
2399         rm -fr $DIR/d33
2400         test_mkdir -p $DIR/d33
2401         chown $RUNAS_ID $DIR/d33
2402         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2403         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2404                 error "open RDWR" || true
2405 }
2406 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2407
2408 test_33b() {
2409         rm -fr $DIR/d33
2410         test_mkdir -p $DIR/d33
2411         chown $RUNAS_ID $DIR/d33
2412         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2413 }
2414 run_test 33b "test open file with malformed flags (No panic and return error)"
2415
2416 test_33c() {
2417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2418         local ostnum
2419         local ostname
2420         local write_bytes
2421         local all_zeros
2422
2423         remote_ost_nodsh && skip "remote OST with nodsh" && return
2424         all_zeros=:
2425         rm -fr $DIR/d33
2426         test_mkdir -p $DIR/d33
2427         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2428
2429         sync
2430         for ostnum in $(seq $OSTCOUNT); do
2431                 # test-framework's OST numbering is one-based, while Lustre's
2432                 # is zero-based
2433                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2434                 # Parsing llobdstat's output sucks; we could grep the /proc
2435                 # path, but that's likely to not be as portable as using the
2436                 # llobdstat utility.  So we parse lctl output instead.
2437                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2438                         obdfilter/$ostname/stats |
2439                         awk '/^write_bytes/ {print $7}' )
2440                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2441                 if (( ${write_bytes:-0} > 0 ))
2442                 then
2443                         all_zeros=false
2444                         break;
2445                 fi
2446         done
2447
2448         $all_zeros || return 0
2449
2450         # Write four bytes
2451         echo foo > $DIR/d33/bar
2452         # Really write them
2453         sync
2454
2455         # Total up write_bytes after writing.  We'd better find non-zeros.
2456         for ostnum in $(seq $OSTCOUNT); do
2457                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2458                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2459                         obdfilter/$ostname/stats |
2460                         awk '/^write_bytes/ {print $7}' )
2461                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2462                 if (( ${write_bytes:-0} > 0 ))
2463                 then
2464                         all_zeros=false
2465                         break;
2466                 fi
2467         done
2468
2469         if $all_zeros
2470         then
2471                 for ostnum in $(seq $OSTCOUNT); do
2472                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2473                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2474                         do_facet ost$ostnum lctl get_param -n \
2475                                 obdfilter/$ostname/stats
2476                 done
2477                 error "OST not keeping write_bytes stats (b22312)"
2478         fi
2479 }
2480 run_test 33c "test llobdstat and write_bytes"
2481
2482 test_33d() {
2483         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2484         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2485         local MDTIDX=1
2486         local remote_dir=$DIR/$tdir/remote_dir
2487
2488         mkdir -p $DIR/$tdir
2489         $LFS mkdir -i $MDTIDX $remote_dir ||
2490                 error "create remote directory failed"
2491
2492         touch $remote_dir/$tfile
2493         chmod 444 $remote_dir/$tfile
2494         chown $RUNAS_ID $remote_dir/$tfile
2495
2496         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2497
2498         chown $RUNAS_ID $remote_dir
2499         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2500                                         error "create" || true
2501         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2502                                     error "open RDWR" || true
2503         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2504                                     error "create" || true
2505 }
2506 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2507
2508 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2509 test_34a() {
2510         rm -f $DIR/f34
2511         $MCREATE $DIR/f34 || error
2512         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2513         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2514         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2515         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2516 }
2517 run_test 34a "truncate file that has not been opened ==========="
2518
2519 test_34b() {
2520         [ ! -f $DIR/f34 ] && test_34a
2521         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2522         $OPENFILE -f O_RDONLY $DIR/f34
2523         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2524         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2525 }
2526 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2527
2528 test_34c() {
2529         [ ! -f $DIR/f34 ] && test_34a
2530         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2531         $OPENFILE -f O_RDWR $DIR/f34
2532         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2533         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2534 }
2535 run_test 34c "O_RDWR opening file-with-size works =============="
2536
2537 test_34d() {
2538         [ ! -f $DIR/f34 ] && test_34a
2539         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2540         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2541         rm $DIR/f34
2542 }
2543 run_test 34d "write to sparse file ============================="
2544
2545 test_34e() {
2546         rm -f $DIR/f34e
2547         $MCREATE $DIR/f34e || error
2548         $TRUNCATE $DIR/f34e 1000 || error
2549         $CHECKSTAT -s 1000 $DIR/f34e || error
2550         $OPENFILE -f O_RDWR $DIR/f34e
2551         $CHECKSTAT -s 1000 $DIR/f34e || error
2552 }
2553 run_test 34e "create objects, some with size and some without =="
2554
2555 test_34f() { # bug 6242, 6243
2556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2557         SIZE34F=48000
2558         rm -f $DIR/f34f
2559         $MCREATE $DIR/f34f || error
2560         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2561         dd if=$DIR/f34f of=$TMP/f34f
2562         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2563         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2564         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2565         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2566         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2567 }
2568 run_test 34f "read from a file with no objects until EOF ======="
2569
2570 test_34g() {
2571         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2572         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2573         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2574         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2575         cancel_lru_locks osc
2576         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2577                 error "wrong size after lock cancel"
2578
2579         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2580         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2581                 error "expanding truncate failed"
2582         cancel_lru_locks osc
2583         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2584                 error "wrong expanded size after lock cancel"
2585 }
2586 run_test 34g "truncate long file ==============================="
2587
2588 test_34h() {
2589         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2590         local gid=10
2591         local sz=1000
2592
2593         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2594         sync # Flush the cache so that multiop below does not block on cache
2595              # flush when getting the group lock
2596         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2597         MULTIPID=$!
2598
2599         # Since just timed wait is not good enough, let's do a sync write
2600         # that way we are sure enough time for a roundtrip + processing
2601         # passed + 2 seconds of extra margin.
2602         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2603         rm $DIR/${tfile}-1
2604         sleep 2
2605
2606         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2607                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2608                 kill -9 $MULTIPID
2609         fi
2610         wait $MULTIPID
2611         local nsz=`stat -c %s $DIR/$tfile`
2612         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2613 }
2614 run_test 34h "ftruncate file under grouplock should not block"
2615
2616 test_35a() {
2617         cp /bin/sh $DIR/f35a
2618         chmod 444 $DIR/f35a
2619         chown $RUNAS_ID $DIR/f35a
2620         $RUNAS $DIR/f35a && error || true
2621         rm $DIR/f35a
2622 }
2623 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2624
2625 test_36a() {
2626         rm -f $DIR/f36
2627         utime $DIR/f36 || error
2628 }
2629 run_test 36a "MDS utime check (mknod, utime) ==================="
2630
2631 test_36b() {
2632         echo "" > $DIR/f36
2633         utime $DIR/f36 || error
2634 }
2635 run_test 36b "OST utime check (open, utime) ===================="
2636
2637 test_36c() {
2638         rm -f $DIR/d36/f36
2639         test_mkdir $DIR/d36
2640         chown $RUNAS_ID $DIR/d36
2641         $RUNAS utime $DIR/d36/f36 || error
2642 }
2643 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2644
2645 test_36d() {
2646         [ ! -d $DIR/d36 ] && test_36c
2647         echo "" > $DIR/d36/f36
2648         $RUNAS utime $DIR/d36/f36 || error
2649 }
2650 run_test 36d "non-root OST utime check (open, utime) ==========="
2651
2652 test_36e() {
2653         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2654         test_mkdir -p $DIR/$tdir
2655         touch $DIR/$tdir/$tfile
2656         $RUNAS utime $DIR/$tdir/$tfile && \
2657                 error "utime worked, expected failure" || true
2658 }
2659 run_test 36e "utime on non-owned file (should return error) ===="
2660
2661 subr_36fh() {
2662         local fl="$1"
2663         local LANG_SAVE=$LANG
2664         local LC_LANG_SAVE=$LC_LANG
2665         export LANG=C LC_LANG=C # for date language
2666
2667         DATESTR="Dec 20  2000"
2668         test_mkdir -p $DIR/$tdir
2669         lctl set_param fail_loc=$fl
2670         date; date +%s
2671         cp /etc/hosts $DIR/$tdir/$tfile
2672         sync & # write RPC generated with "current" inode timestamp, but delayed
2673         sleep 1
2674         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2675         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2676         cancel_lru_locks osc
2677         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2678         date; date +%s
2679         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2680                 echo "BEFORE: $LS_BEFORE" && \
2681                 echo "AFTER : $LS_AFTER" && \
2682                 echo "WANT  : $DATESTR" && \
2683                 error "$DIR/$tdir/$tfile timestamps changed" || true
2684
2685         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2686 }
2687
2688 test_36f() {
2689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2690         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2691         subr_36fh "0x80000214"
2692 }
2693 run_test 36f "utime on file racing with OST BRW write =========="
2694
2695 test_36g() {
2696         remote_ost_nodsh && skip "remote OST with nodsh" && return
2697         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2698         local fmd_max_age
2699         local fmd_before
2700         local fmd_after
2701
2702         test_mkdir -p $DIR/$tdir
2703         fmd_max_age=$(do_facet ost1 \
2704                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2705                 head -n 1")
2706
2707         fmd_before=$(do_facet ost1 \
2708                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2709         touch $DIR/$tdir/$tfile
2710         sleep $((fmd_max_age + 12))
2711         fmd_after=$(do_facet ost1 \
2712                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2713
2714         echo "fmd_before: $fmd_before"
2715         echo "fmd_after: $fmd_after"
2716         [ "$fmd_after" -gt "$fmd_before" ] && \
2717                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2718                 error "fmd didn't expire after ping" || true
2719 }
2720 run_test 36g "filter mod data cache expiry ====================="
2721
2722 test_36h() {
2723         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2724         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2725         subr_36fh "0x80000227"
2726 }
2727 run_test 36h "utime on file racing with OST BRW write =========="
2728
2729 # test_37 - duplicate with tests 32q 32r
2730
2731 test_38() {
2732         local file=$DIR/$tfile
2733         touch $file
2734         openfile -f O_DIRECTORY $file
2735         local RC=$?
2736         local ENOTDIR=20
2737         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2738         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2739 }
2740 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2741
2742 test_39() {
2743         touch $DIR/$tfile
2744         touch $DIR/${tfile}2
2745 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2746 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2747 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2748         sleep 2
2749         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2750         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2751                 echo "mtime"
2752                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2753                 echo "atime"
2754                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2755                 echo "ctime"
2756                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2757                 error "O_TRUNC didn't change timestamps"
2758         fi
2759 }
2760 run_test 39 "mtime changed on create ==========================="
2761
2762 test_39b() {
2763         test_mkdir -p $DIR/$tdir
2764         cp -p /etc/passwd $DIR/$tdir/fopen
2765         cp -p /etc/passwd $DIR/$tdir/flink
2766         cp -p /etc/passwd $DIR/$tdir/funlink
2767         cp -p /etc/passwd $DIR/$tdir/frename
2768         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2769
2770         sleep 1
2771         echo "aaaaaa" >> $DIR/$tdir/fopen
2772         echo "aaaaaa" >> $DIR/$tdir/flink
2773         echo "aaaaaa" >> $DIR/$tdir/funlink
2774         echo "aaaaaa" >> $DIR/$tdir/frename
2775
2776         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2777         local link_new=`stat -c %Y $DIR/$tdir/flink`
2778         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2779         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2780
2781         cat $DIR/$tdir/fopen > /dev/null
2782         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2783         rm -f $DIR/$tdir/funlink2
2784         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2785
2786         for (( i=0; i < 2; i++ )) ; do
2787                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2788                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2789                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2790                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2791
2792                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2793                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2794                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2795                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2796
2797                 cancel_lru_locks osc
2798                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2799         done
2800 }
2801 run_test 39b "mtime change on open, link, unlink, rename  ======"
2802
2803 # this should be set to past
2804 TEST_39_MTIME=`date -d "1 year ago" +%s`
2805
2806 # bug 11063
2807 test_39c() {
2808         touch $DIR1/$tfile
2809         sleep 2
2810         local mtime0=`stat -c %Y $DIR1/$tfile`
2811
2812         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2813         local mtime1=`stat -c %Y $DIR1/$tfile`
2814         [ "$mtime1" = $TEST_39_MTIME ] || \
2815                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2816
2817         local d1=`date +%s`
2818         echo hello >> $DIR1/$tfile
2819         local d2=`date +%s`
2820         local mtime2=`stat -c %Y $DIR1/$tfile`
2821         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2822                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2823
2824         mv $DIR1/$tfile $DIR1/$tfile-1
2825
2826         for (( i=0; i < 2; i++ )) ; do
2827                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2828                 [ "$mtime2" = "$mtime3" ] || \
2829                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2830
2831                 cancel_lru_locks osc
2832                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2833         done
2834 }
2835 run_test 39c "mtime change on rename ==========================="
2836
2837 # bug 21114
2838 test_39d() {
2839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2840         touch $DIR1/$tfile
2841
2842         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2843
2844         for (( i=0; i < 2; i++ )) ; do
2845                 local mtime=`stat -c %Y $DIR1/$tfile`
2846                 [ $mtime = $TEST_39_MTIME ] || \
2847                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2848
2849                 cancel_lru_locks osc
2850                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2851         done
2852 }
2853 run_test 39d "create, utime, stat =============================="
2854
2855 # bug 21114
2856 test_39e() {
2857         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2858         touch $DIR1/$tfile
2859         local mtime1=`stat -c %Y $DIR1/$tfile`
2860
2861         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2862
2863         for (( i=0; i < 2; i++ )) ; do
2864                 local mtime2=`stat -c %Y $DIR1/$tfile`
2865                 [ $mtime2 = $TEST_39_MTIME ] || \
2866                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2867
2868                 cancel_lru_locks osc
2869                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2870         done
2871 }
2872 run_test 39e "create, stat, utime, stat ========================"
2873
2874 # bug 21114
2875 test_39f() {
2876         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2877         touch $DIR1/$tfile
2878         mtime1=`stat -c %Y $DIR1/$tfile`
2879
2880         sleep 2
2881         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2882
2883         for (( i=0; i < 2; i++ )) ; do
2884                 local mtime2=`stat -c %Y $DIR1/$tfile`
2885                 [ $mtime2 = $TEST_39_MTIME ] || \
2886                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2887
2888                 cancel_lru_locks osc
2889                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2890         done
2891 }
2892 run_test 39f "create, stat, sleep, utime, stat ================="
2893
2894 # bug 11063
2895 test_39g() {
2896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2897         echo hello >> $DIR1/$tfile
2898         local mtime1=`stat -c %Y $DIR1/$tfile`
2899
2900         sleep 2
2901         chmod o+r $DIR1/$tfile
2902
2903         for (( i=0; i < 2; i++ )) ; do
2904                 local mtime2=`stat -c %Y $DIR1/$tfile`
2905                 [ "$mtime1" = "$mtime2" ] || \
2906                         error "lost mtime: $mtime2, should be $mtime1"
2907
2908                 cancel_lru_locks osc
2909                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2910         done
2911 }
2912 run_test 39g "write, chmod, stat ==============================="
2913
2914 # bug 11063
2915 test_39h() {
2916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2917         touch $DIR1/$tfile
2918         sleep 1
2919
2920         local d1=`date`
2921         echo hello >> $DIR1/$tfile
2922         local mtime1=`stat -c %Y $DIR1/$tfile`
2923
2924         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2925         local d2=`date`
2926         if [ "$d1" != "$d2" ]; then
2927                 echo "write and touch not within one second"
2928         else
2929                 for (( i=0; i < 2; i++ )) ; do
2930                         local mtime2=`stat -c %Y $DIR1/$tfile`
2931                         [ "$mtime2" = $TEST_39_MTIME ] || \
2932                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2933
2934                         cancel_lru_locks osc
2935                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2936                 done
2937         fi
2938 }
2939 run_test 39h "write, utime within one second, stat ============="
2940
2941 test_39i() {
2942         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2943         touch $DIR1/$tfile
2944         sleep 1
2945
2946         echo hello >> $DIR1/$tfile
2947         local mtime1=`stat -c %Y $DIR1/$tfile`
2948
2949         mv $DIR1/$tfile $DIR1/$tfile-1
2950
2951         for (( i=0; i < 2; i++ )) ; do
2952                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2953
2954                 [ "$mtime1" = "$mtime2" ] || \
2955                         error "lost mtime: $mtime2, should be $mtime1"
2956
2957                 cancel_lru_locks osc
2958                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2959         done
2960 }
2961 run_test 39i "write, rename, stat =============================="
2962
2963 test_39j() {
2964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2965         start_full_debug_logging
2966         touch $DIR1/$tfile
2967         sleep 1
2968
2969         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2970         lctl set_param fail_loc=0x80000412
2971         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2972                 error "multiop failed"
2973         local multipid=$!
2974         local mtime1=`stat -c %Y $DIR1/$tfile`
2975
2976         mv $DIR1/$tfile $DIR1/$tfile-1
2977
2978         kill -USR1 $multipid
2979         wait $multipid || error "multiop close failed"
2980
2981         for (( i=0; i < 2; i++ )) ; do
2982                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2983                 [ "$mtime1" = "$mtime2" ] ||
2984                         error "mtime is lost on close: $mtime2, " \
2985                               "should be $mtime1"
2986
2987                 cancel_lru_locks osc
2988                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2989         done
2990         lctl set_param fail_loc=0
2991         stop_full_debug_logging
2992 }
2993 run_test 39j "write, rename, close, stat ======================="
2994
2995 test_39k() {
2996         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2997         touch $DIR1/$tfile
2998         sleep 1
2999
3000         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3001         local multipid=$!
3002         local mtime1=`stat -c %Y $DIR1/$tfile`
3003
3004         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3005
3006         kill -USR1 $multipid
3007         wait $multipid || error "multiop close failed"
3008
3009         for (( i=0; i < 2; i++ )) ; do
3010                 local mtime2=`stat -c %Y $DIR1/$tfile`
3011
3012                 [ "$mtime2" = $TEST_39_MTIME ] || \
3013                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3014
3015                 cancel_lru_locks osc
3016                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3017         done
3018 }
3019 run_test 39k "write, utime, close, stat ========================"
3020
3021 # this should be set to future
3022 TEST_39_ATIME=`date -d "1 year" +%s`
3023
3024 test_39l() {
3025         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3026         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3027         local atime_diff=$(do_facet $SINGLEMDS \
3028                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3029         rm -rf $DIR/$tdir
3030         mkdir -p $DIR/$tdir
3031
3032         # test setting directory atime to future
3033         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3034         local atime=$(stat -c %X $DIR/$tdir)
3035         [ "$atime" = $TEST_39_ATIME ] || \
3036                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3037
3038         # test setting directory atime from future to now
3039         local d1=$(date +%s)
3040         ls $DIR/$tdir
3041         local d2=$(date +%s)
3042
3043         cancel_lru_locks mdc
3044         atime=$(stat -c %X $DIR/$tdir)
3045         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3046                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3047
3048         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3049         sleep 3
3050
3051         # test setting directory atime when now > dir atime + atime_diff
3052         d1=$(date +%s)
3053         ls $DIR/$tdir
3054         d2=$(date +%s)
3055         cancel_lru_locks mdc
3056         atime=$(stat -c %X $DIR/$tdir)
3057         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3058                 error "atime is not updated  : $atime, should be $d2"
3059
3060         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3061         sleep 3
3062
3063         # test not setting directory atime when now < dir atime + atime_diff
3064         ls $DIR/$tdir
3065         cancel_lru_locks mdc
3066         atime=$(stat -c %X $DIR/$tdir)
3067         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3068                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3069
3070         do_facet $SINGLEMDS \
3071                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3072 }
3073 run_test 39l "directory atime update ==========================="
3074
3075 test_39m() {
3076         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3077         touch $DIR1/$tfile
3078         sleep 2
3079         local far_past_mtime=$(date -d "May 29 1953" +%s)
3080         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3081
3082         touch -m -d @$far_past_mtime $DIR1/$tfile
3083         touch -a -d @$far_past_atime $DIR1/$tfile
3084
3085         for (( i=0; i < 2; i++ )) ; do
3086                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3087                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3088                         error "atime or mtime set incorrectly"
3089
3090                 cancel_lru_locks osc
3091                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3092         done
3093 }
3094 run_test 39m "test atime and mtime before 1970"
3095
3096 test_39n() { # LU-3832
3097         local atime_diff=$(do_facet $SINGLEMDS \
3098                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3099         local atime0
3100         local atime1
3101         local atime2
3102
3103         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3104
3105         rm -rf $DIR/$tfile
3106         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3107         atime0=$(stat -c %X $DIR/$tfile)
3108
3109         sleep 5
3110         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3111         atime1=$(stat -c %X $DIR/$tfile)
3112
3113         sleep 5
3114         cancel_lru_locks mdc
3115         cancel_lru_locks osc
3116         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3117         atime2=$(stat -c %X $DIR/$tfile)
3118
3119         do_facet $SINGLEMDS \
3120                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3121
3122         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3123         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3124 }
3125 run_test 39n "check that O_NOATIME is honored"
3126
3127 test_40() {
3128         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3129         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3130                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3131         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3132                 error "$tfile is not 4096 bytes in size"
3133 }
3134 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3135
3136 test_41() {
3137         # bug 1553
3138         small_write $DIR/f41 18
3139 }
3140 run_test 41 "test small file write + fstat ====================="
3141
3142 count_ost_writes() {
3143         lctl get_param -n osc.*.stats |
3144             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3145 }
3146
3147 # decent default
3148 WRITEBACK_SAVE=500
3149 DIRTY_RATIO_SAVE=40
3150 MAX_DIRTY_RATIO=50
3151 BG_DIRTY_RATIO_SAVE=10
3152 MAX_BG_DIRTY_RATIO=25
3153
3154 start_writeback() {
3155         trap 0
3156         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3157         # dirty_ratio, dirty_background_ratio
3158         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3159                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3160                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3161                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3162         else
3163                 # if file not here, we are a 2.4 kernel
3164                 kill -CONT `pidof kupdated`
3165         fi
3166 }
3167
3168 stop_writeback() {
3169         # setup the trap first, so someone cannot exit the test at the
3170         # exact wrong time and mess up a machine
3171         trap start_writeback EXIT
3172         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3173         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3174                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3175                 sysctl -w vm.dirty_writeback_centisecs=0
3176                 sysctl -w vm.dirty_writeback_centisecs=0
3177                 # save and increase /proc/sys/vm/dirty_ratio
3178                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3179                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3180                 # save and increase /proc/sys/vm/dirty_background_ratio
3181                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3182                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3183         else
3184                 # if file not here, we are a 2.4 kernel
3185                 kill -STOP `pidof kupdated`
3186         fi
3187 }
3188
3189 # ensure that all stripes have some grant before we test client-side cache
3190 setup_test42() {
3191         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3192                 dd if=/dev/zero of=$i bs=4k count=1
3193                 rm $i
3194         done
3195 }
3196
3197 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3198 # file truncation, and file removal.
3199 test_42a() {
3200         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3201         setup_test42
3202         cancel_lru_locks osc
3203         stop_writeback
3204         sync; sleep 1; sync # just to be safe
3205         BEFOREWRITES=`count_ost_writes`
3206         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3207         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3208         AFTERWRITES=`count_ost_writes`
3209         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3210                 error "$BEFOREWRITES < $AFTERWRITES"
3211         start_writeback
3212 }
3213 run_test 42a "ensure that we don't flush on close =============="
3214
3215 test_42b() {
3216         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3217         setup_test42
3218         cancel_lru_locks osc
3219         stop_writeback
3220         sync
3221         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3222         BEFOREWRITES=`count_ost_writes`
3223         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3224         AFTERWRITES=`count_ost_writes`
3225         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3226                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3227         fi
3228         BEFOREWRITES=`count_ost_writes`
3229         sync || error "sync: $?"
3230         AFTERWRITES=`count_ost_writes`
3231         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3232                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3233         fi
3234         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3235         start_writeback
3236         return 0
3237 }
3238 run_test 42b "test destroy of file with cached dirty data ======"
3239
3240 # if these tests just want to test the effect of truncation,
3241 # they have to be very careful.  consider:
3242 # - the first open gets a {0,EOF}PR lock
3243 # - the first write conflicts and gets a {0, count-1}PW
3244 # - the rest of the writes are under {count,EOF}PW
3245 # - the open for truncate tries to match a {0,EOF}PR
3246 #   for the filesize and cancels the PWs.
3247 # any number of fixes (don't get {0,EOF} on open, match
3248 # composite locks, do smarter file size management) fix
3249 # this, but for now we want these tests to verify that
3250 # the cancellation with truncate intent works, so we
3251 # start the file with a full-file pw lock to match against
3252 # until the truncate.
3253 trunc_test() {
3254         test=$1
3255         file=$DIR/$test
3256         offset=$2
3257         cancel_lru_locks osc
3258         stop_writeback
3259         # prime the file with 0,EOF PW to match
3260         touch $file
3261         $TRUNCATE $file 0
3262         sync; sync
3263         # now the real test..
3264         dd if=/dev/zero of=$file bs=1024 count=100
3265         BEFOREWRITES=`count_ost_writes`
3266         $TRUNCATE $file $offset
3267         cancel_lru_locks osc
3268         AFTERWRITES=`count_ost_writes`
3269         start_writeback
3270 }
3271
3272 test_42c() {
3273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3274         trunc_test 42c 1024
3275         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3276             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3277         rm $file
3278 }
3279 run_test 42c "test partial truncate of file with cached dirty data"
3280
3281 test_42d() {
3282         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3283         trunc_test 42d 0
3284         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3285             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3286         rm $file
3287 }
3288 run_test 42d "test complete truncate of file with cached dirty data"
3289
3290 test_42e() { # bug22074
3291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3292         local TDIR=$DIR/${tdir}e
3293         local pagesz=$(page_size)
3294         local pages=16 # hardcoded 16 pages, don't change it.
3295         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3296         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3297         local max_dirty_mb
3298         local warmup_files
3299
3300         test_mkdir -p $DIR/${tdir}e
3301         $SETSTRIPE -c 1 $TDIR
3302         createmany -o $TDIR/f $files
3303
3304         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3305
3306         # we assume that with $OSTCOUNT files, at least one of them will
3307         # be allocated on OST0.
3308         warmup_files=$((OSTCOUNT * max_dirty_mb))
3309         createmany -o $TDIR/w $warmup_files
3310
3311         # write a large amount of data into one file and sync, to get good
3312         # avail_grant number from OST.
3313         for ((i=0; i<$warmup_files; i++)); do
3314                 idx=$($GETSTRIPE -i $TDIR/w$i)
3315                 [ $idx -ne 0 ] && continue
3316                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3317                 break
3318         done
3319         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3320         sync
3321         $LCTL get_param $proc_osc0/cur_dirty_bytes
3322         $LCTL get_param $proc_osc0/cur_grant_bytes
3323
3324         # create as much dirty pages as we can while not to trigger the actual
3325         # RPCs directly. but depends on the env, VFS may trigger flush during this
3326         # period, hopefully we are good.
3327         for ((i=0; i<$warmup_files; i++)); do
3328                 idx=$($GETSTRIPE -i $TDIR/w$i)
3329                 [ $idx -ne 0 ] && continue
3330                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3331         done
3332         $LCTL get_param $proc_osc0/cur_dirty_bytes
3333         $LCTL get_param $proc_osc0/cur_grant_bytes
3334
3335         # perform the real test
3336         $LCTL set_param $proc_osc0/rpc_stats 0
3337         for ((;i<$files; i++)); do
3338                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3339                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3340         done
3341         sync
3342         $LCTL get_param $proc_osc0/rpc_stats
3343
3344         local percent=0
3345         local have_ppr=false
3346         $LCTL get_param $proc_osc0/rpc_stats |
3347                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3348                         # skip lines until we are at the RPC histogram data
3349                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3350                         $have_ppr || continue
3351
3352                         # we only want the percent stat for < 16 pages
3353                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3354
3355                         percent=$((percent + WPCT))
3356                         if [ $percent -gt 15 ]; then
3357                                 error "less than 16-pages write RPCs" \
3358                                       "$percent% > 15%"
3359                                 break
3360                         fi
3361                 done
3362         rm -rf $TDIR
3363 }
3364 run_test 42e "verify sub-RPC writes are not done synchronously"
3365
3366 test_43() {
3367         test_mkdir -p $DIR/$tdir
3368         cp -p /bin/ls $DIR/$tdir/$tfile
3369         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3370         pid=$!
3371         # give multiop a chance to open
3372         sleep 1
3373
3374         $DIR/$tdir/$tfile && error || true
3375         kill -USR1 $pid
3376 }
3377 run_test 43 "execution of file opened for write should return -ETXTBSY"
3378
3379 test_43a() {
3380         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3381         test_mkdir -p $DIR/$tdir
3382         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3383                         cp -p multiop $DIR/$tdir/multiop
3384         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3385                         return 1
3386         MULTIOP_PID=$!
3387         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3388         kill -USR1 $MULTIOP_PID || return 2
3389         wait $MULTIOP_PID || return 3
3390         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3391 }
3392 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3393
3394 test_43b() {
3395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3396         test_mkdir -p $DIR/$tdir
3397         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3398                         cp -p multiop $DIR/$tdir/multiop
3399         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3400                         return 1
3401         MULTIOP_PID=$!
3402         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3403         kill -USR1 $MULTIOP_PID || return 2
3404         wait $MULTIOP_PID || return 3
3405         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3406 }
3407 run_test 43b "truncate of file being executed should return -ETXTBSY"
3408
3409 test_43c() {
3410         local testdir="$DIR/$tdir"
3411         test_mkdir -p $DIR/$tdir
3412         cp $SHELL $testdir/
3413         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3414                 ( cd $testdir && md5sum -c)
3415 }
3416 run_test 43c "md5sum of copy into lustre========================"
3417
3418 test_44() {
3419         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3420         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3421         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3422 }
3423 run_test 44 "zero length read from a sparse stripe ============="
3424
3425 test_44a() {
3426     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3427                          awk '{print $2}'`
3428     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3429     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3430     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3431                       awk '{print $2}'`
3432     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3433         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3434     fi
3435
3436     OFFSETS="0 $((stride/2)) $((stride-1))"
3437     for offset in $OFFSETS ; do
3438       for i in `seq 0 $((nstripe-1))`; do
3439         local GLOBALOFFSETS=""
3440         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3441         local myfn=$DIR/d44a-$size
3442         echo "--------writing $myfn at $size"
3443         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3444         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3445         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3446                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3447
3448         for j in `seq 0 $((nstripe-1))`; do
3449             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3450             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3451             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3452         done
3453         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3454                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3455         rm -f $myfn
3456       done
3457     done
3458 }
3459 run_test 44a "test sparse pwrite ==============================="
3460
3461 dirty_osc_total() {
3462         tot=0
3463         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3464                 tot=$(($tot + $d))
3465         done
3466         echo $tot
3467 }
3468 do_dirty_record() {
3469         before=`dirty_osc_total`
3470         echo executing "\"$*\""
3471         eval $*
3472         after=`dirty_osc_total`
3473         echo before $before, after $after
3474 }
3475 test_45() {
3476         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3477         f="$DIR/f45"
3478         # Obtain grants from OST if it supports it
3479         echo blah > ${f}_grant
3480         stop_writeback
3481         sync
3482         do_dirty_record "echo blah > $f"
3483         [ $before -eq $after ] && error "write wasn't cached"
3484         do_dirty_record "> $f"
3485         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3486         do_dirty_record "echo blah > $f"
3487         [ $before -eq $after ] && error "write wasn't cached"
3488         do_dirty_record "sync"
3489         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3490         do_dirty_record "echo blah > $f"
3491         [ $before -eq $after ] && error "write wasn't cached"
3492         do_dirty_record "cancel_lru_locks osc"
3493         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3494         start_writeback
3495 }
3496 run_test 45 "osc io page accounting ============================"
3497
3498 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3499 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3500 # objects offset and an assert hit when an rpc was built with 1023's mapped
3501 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3502 test_46() {
3503         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3504         f="$DIR/f46"
3505         stop_writeback
3506         sync
3507         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3508         sync
3509         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3510         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3511         sync
3512         start_writeback
3513 }
3514 run_test 46 "dirtying a previously written page ================"
3515
3516 # test_47 is removed "Device nodes check" is moved to test_28
3517
3518 test_48a() { # bug 2399
3519         check_kernel_version 34 || return 0
3520         test_mkdir -p $DIR/$tdir
3521         cd $DIR/$tdir
3522         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3523         test_mkdir $DIR/$tdir || error "recreate directory failed"
3524         touch foo || error "'touch foo' failed after recreating cwd"
3525         test_mkdir $DIR/$tdir/bar ||
3526                      error "'mkdir foo' failed after recreating cwd"
3527         if check_kernel_version 44; then
3528                 touch .foo || error "'touch .foo' failed after recreating cwd"
3529                 test_mkdir $DIR/$tdir/.bar ||
3530                               error "'mkdir .foo' failed after recreating cwd"
3531         fi
3532         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3533         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3534         cd . || error "'cd .' failed after recreating cwd"
3535         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3536         rmdir . && error "'rmdir .' worked after recreating cwd"
3537         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3538         cd .. || error "'cd ..' failed after recreating cwd"
3539 }
3540 run_test 48a "Access renamed working dir (should return errors)="
3541
3542 test_48b() { # bug 2399
3543         check_kernel_version 34 || return 0
3544         rm -rf $DIR/$tdir
3545         test_mkdir -p $DIR/$tdir
3546         cd $DIR/$tdir
3547         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3548         touch foo && error "'touch foo' worked after removing cwd"
3549         test_mkdir $DIR/$tdir/foo &&
3550                      error "'mkdir foo' worked after removing cwd"
3551         if check_kernel_version 44; then
3552                 touch .foo && error "'touch .foo' worked after removing cwd"
3553                 test_mkdir $DIR/$tdir/.foo &&
3554                               error "'mkdir .foo' worked after removing cwd"
3555         fi
3556         ls . > /dev/null && error "'ls .' worked after removing cwd"
3557         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3558         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3559         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3560         rmdir . && error "'rmdir .' worked after removing cwd"
3561         ln -s . foo && error "'ln -s .' worked after removing cwd"
3562         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3563 }
3564 run_test 48b "Access removed working dir (should return errors)="
3565
3566 test_48c() { # bug 2350
3567         check_kernel_version 36 || return 0
3568         #lctl set_param debug=-1
3569         #set -vx
3570         rm -rf $DIR/$tdir
3571         test_mkdir -p $DIR/$tdir/dir
3572         cd $DIR/$tdir/dir
3573         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3574         $TRACE touch foo && error "touch foo worked after removing cwd"
3575         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3576         if check_kernel_version 44; then
3577                 touch .foo && error "touch .foo worked after removing cwd"
3578                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3579         fi
3580         $TRACE ls . && error "'ls .' worked after removing cwd"
3581         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3582         is_patchless || ( $TRACE cd . &&
3583                         error "'cd .' worked after removing cwd" )
3584         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3585         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3586         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3587         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3588 }
3589 run_test 48c "Access removed working subdir (should return errors)"
3590
3591 test_48d() { # bug 2350
3592         check_kernel_version 36 || return 0
3593         #lctl set_param debug=-1
3594         #set -vx
3595         rm -rf $DIR/$tdir
3596         test_mkdir -p $DIR/$tdir/dir
3597         cd $DIR/$tdir/dir
3598         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3599         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3600         $TRACE touch foo && error "'touch foo' worked after removing parent"
3601         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3602         if check_kernel_version 44; then
3603                 touch .foo && error "'touch .foo' worked after removing parent"
3604                 test_mkdir .foo &&
3605                               error "mkdir .foo worked after removing parent"
3606         fi
3607         $TRACE ls . && error "'ls .' worked after removing parent"
3608         $TRACE ls .. && error "'ls ..' worked after removing parent"
3609         is_patchless || ( $TRACE cd . &&
3610                         error "'cd .' worked after recreate parent" )
3611         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3612         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3613         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3614         is_patchless || ( $TRACE cd .. &&
3615                         error "'cd ..' worked after removing parent" || true )
3616 }
3617 run_test 48d "Access removed parent subdir (should return errors)"
3618
3619 test_48e() { # bug 4134
3620         check_kernel_version 41 || return 0
3621         #lctl set_param debug=-1
3622         #set -vx
3623         rm -rf $DIR/$tdir
3624         test_mkdir -p $DIR/$tdir/dir
3625         cd $DIR/$tdir/dir
3626         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3627         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3628         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3629         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3630         # On a buggy kernel addition of "touch foo" after cd .. will
3631         # produce kernel oops in lookup_hash_it
3632         touch ../foo && error "'cd ..' worked after recreate parent"
3633         cd $DIR
3634         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3635 }
3636 run_test 48e "Access to recreated parent subdir (should return errors)"
3637
3638 test_49() { # LU-1030
3639         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3640         # get ost1 size - lustre-OST0000
3641         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3642         # write 800M at maximum
3643         [ $ost1_size -gt 819200 ] && ost1_size=819200
3644
3645         lfs setstripe -c 1 -i 0 $DIR/$tfile
3646         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3647         local dd_pid=$!
3648
3649         # change max_pages_per_rpc while writing the file
3650         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3651         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3652         # loop until dd process exits
3653         while ps ax -opid | grep -wq $dd_pid; do
3654                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3655                 sleep $((RANDOM % 5 + 1))
3656         done
3657         # restore original max_pages_per_rpc
3658         $LCTL set_param $osc1_mppc=$orig_mppc
3659         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3660 }
3661 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3662
3663 test_50() {
3664         # bug 1485
3665         test_mkdir $DIR/$tdir
3666         cd $DIR/$tdir
3667         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3668 }
3669 run_test 50 "special situations: /proc symlinks  ==============="
3670
3671 test_51a() {    # was test_51
3672         # bug 1516 - create an empty entry right after ".." then split dir
3673         test_mkdir -p $DIR/$tdir
3674         touch $DIR/$tdir/foo
3675         $MCREATE $DIR/$tdir/bar
3676         rm $DIR/$tdir/foo
3677         createmany -m $DIR/$tdir/longfile 201
3678         FNUM=202
3679         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3680                 $MCREATE $DIR/$tdir/longfile$FNUM
3681                 FNUM=$(($FNUM + 1))
3682                 echo -n "+"
3683         done
3684         echo
3685         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3686 }
3687 run_test 51a "special situations: split htree with empty entry =="
3688
3689 export NUMTEST=70000
3690 test_51b() {
3691         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3692         local BASE=$DIR/$tdir
3693
3694         # cleanup the directory
3695         rm -fr $BASE
3696
3697         test_mkdir -p $BASE
3698
3699         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3700         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3701         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3702                 return
3703
3704         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3705                 echo "reduced count to $NUMTEST due to inodes"
3706
3707         # need to check free space for the directories as well
3708         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3709         numfree=$((blkfree / 4))
3710         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3711                 echo "reduced count to $NUMTEST due to blocks"
3712
3713         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3714                 echo "failed" > $BASE/fnum
3715 }
3716 run_test 51b "exceed 64k subdirectory nlink limit"
3717
3718 test_51ba() { # LU-993
3719         local BASE=$DIR/$tdir
3720         # unlink all but 100 subdirectories, then check it still works
3721         local LEFT=100
3722         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3723
3724         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3725         local DELETE=$((NUMTEST - LEFT))
3726
3727         # continue on to run this test even if 51b didn't finish,
3728         # just to delete the many subdirectories created.
3729         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3730
3731         # for ldiskfs the nlink count should be 1, but this is OSD specific
3732         # and so this is listed for informational purposes only
3733         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3734         unlinkmany -d $BASE/d $DELETE
3735         RC=$?
3736
3737         if [ $RC -ne 0 ]; then
3738                 if [ "$NUMPREV" == "failed" ]; then
3739                         skip "previous setup failed"
3740                         return 0
3741                 else
3742                         error "unlink of first $DELETE subdirs failed"
3743                         return $RC
3744                 fi
3745         fi
3746
3747         echo "nlink between: $(stat -c %h $BASE)"
3748         # trim the first line of ls output
3749         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3750         [ $FOUND -ne $LEFT ] &&
3751                 error "can't find subdirs: found only $FOUND/$LEFT"
3752
3753         unlinkmany -d $BASE/d $DELETE $LEFT ||
3754                 error "unlink of second $LEFT subdirs failed"
3755         # regardless of whether the backing filesystem tracks nlink accurately
3756         # or not, the nlink count shouldn't be more than "." and ".." here
3757         local AFTER=$(stat -c %h $BASE)
3758         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3759                 echo "nlink after: $AFTER"
3760 }
3761 run_test 51ba "verify nlink for many subdirectory cleanup"
3762
3763 test_51d() {
3764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3765         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3766         test_mkdir -p $DIR/$tdir
3767         createmany -o $DIR/$tdir/t- 1000
3768         $GETSTRIPE $DIR/$tdir > $TMP/files
3769         for N in `seq 0 $((OSTCOUNT - 1))`; do
3770             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3771             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3772             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3773         done
3774         unlinkmany $DIR/$tdir/t- 1000
3775
3776         NLAST=0
3777         for N in `seq 1 $((OSTCOUNT - 1))`; do
3778             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3779                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3780             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3781                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3782
3783             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3784                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3785             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3786                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3787             NLAST=$N
3788         done
3789 }
3790 run_test 51d "check object distribution ===================="
3791
3792 test_52a() {
3793         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3794         test_mkdir -p $DIR/$tdir
3795         touch $DIR/$tdir/foo
3796         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3797         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3798         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3799         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3800         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3801                                         error "link worked"
3802         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3803         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3804         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3805                                                      error "lsattr"
3806         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3807         cp -r $DIR/$tdir /tmp/
3808         rm -fr $DIR/$tdir || error "cleanup rm failed"
3809 }
3810 run_test 52a "append-only flag test (should return errors) ====="
3811
3812 test_52b() {
3813         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3814         test_mkdir -p $DIR/$tdir
3815         touch $DIR/$tdir/foo
3816         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3817         cat test > $DIR/$tdir/foo && error "cat test worked"
3818         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3819         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3820         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3821                                         error "link worked"
3822         echo foo >> $DIR/$tdir/foo && error "echo worked"
3823         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3824         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3825         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3826         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3827                                                         error "lsattr"
3828         chattr -i $DIR/$tdir/foo || error "chattr failed"
3829
3830         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3831 }
3832 run_test 52b "immutable flag test (should return errors) ======="
3833
3834 test_53() {
3835         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3836         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3837         remote_ost_nodsh && skip "remote OST with nodsh" && return
3838
3839         local param
3840         local param_seq
3841         local ostname
3842         local mds_last
3843         local mds_last_seq
3844         local ost_last
3845         local ost_last_seq
3846         local ost_last_id
3847         local ostnum
3848         local node
3849         local found=0
3850
3851         # only test MDT0000
3852         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3853         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3854                 param=$(echo ${value[0]} | cut -d "=" -f1)
3855                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3856                 param_seq=$(echo ${param} |
3857                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3858                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3859                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3860
3861                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3862                 node=$(facet_active_host ost$((ostnum+1)))
3863                 param="obdfilter.$ostname.last_id"
3864                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3865                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3866                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3867                                       sed -e "s/^0x//g")
3868                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3869                         if [ $ost_last_seq = $mds_last_seq ]; then
3870                                 if [ $ost_last_id != $mds_last ]; then
3871                                         error "$ost_last != $mds_last_id"
3872                                 else
3873                                         found=1
3874                                         break
3875                                 fi
3876                         fi
3877                 done
3878         done
3879         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3880         return 0
3881 }
3882 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3883
3884 test_54a() {
3885         $SOCKETSERVER $DIR/socket ||
3886                 error "$SOCKETSERVER $DIR/socket failed: $?"
3887         $SOCKETCLIENT $DIR/socket ||
3888                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3889         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3890 }
3891 run_test 54a "unix domain socket test =========================="
3892
3893 test_54b() {
3894         f="$DIR/f54b"
3895         mknod $f c 1 3
3896         chmod 0666 $f
3897         dd if=/dev/zero of=$f bs=$(page_size) count=1
3898 }
3899 run_test 54b "char device works in lustre ======================"
3900
3901 find_loop_dev() {
3902         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3903         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3904         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3905
3906         for i in $(seq 3 7); do
3907                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3908                 LOOPDEV=$LOOPBASE$i
3909                 LOOPNUM=$i
3910                 break
3911         done
3912 }
3913
3914 test_54c() {
3915         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3916         tfile="$DIR/f54c"
3917         tdir="$DIR/d54c"
3918         loopdev="$DIR/loop54c"
3919
3920         find_loop_dev
3921         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3922         mknod $loopdev b 7 $LOOPNUM
3923         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3924         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3925         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3926         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3927         test_mkdir -p $tdir
3928         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3929         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3930         df $tdir
3931         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3932         $UMOUNT $tdir
3933         losetup -d $loopdev
3934         rm $loopdev
3935 }
3936 run_test 54c "block device works in lustre ====================="
3937
3938 test_54d() {
3939         f="$DIR/f54d"
3940         string="aaaaaa"
3941         mknod $f p
3942         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3943 }
3944 run_test 54d "fifo device works in lustre ======================"
3945
3946 test_54e() {
3947         check_kernel_version 46 || return 0
3948         f="$DIR/f54e"
3949         string="aaaaaa"
3950         cp -aL /dev/console $f
3951         echo $string > $f || error "echo $string to $f failed"
3952 }
3953 run_test 54e "console/tty device works in lustre ======================"
3954
3955 #The test_55 used to be iopen test and it was removed by bz#24037.
3956 #run_test 55 "check iopen_connect_dentry() ======================"
3957
3958 test_56a() {    # was test_56
3959         rm -rf $DIR/$tdir
3960         $SETSTRIPE -d $DIR
3961         test_mkdir -p $DIR/$tdir/dir
3962         NUMFILES=3
3963         NUMFILESx2=$(($NUMFILES * 2))
3964         for i in `seq 1 $NUMFILES` ; do
3965                 touch $DIR/$tdir/file$i
3966                 touch $DIR/$tdir/dir/file$i
3967         done
3968
3969         # test lfs getstripe with --recursive
3970         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3971         [ $FILENUM -eq $NUMFILESx2 ] ||
3972                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3973         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3974         [ $FILENUM -eq $NUMFILES ] ||
3975                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3976         echo "$GETSTRIPE --recursive passed."
3977
3978         # test lfs getstripe with file instead of dir
3979         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3980         [ $FILENUM  -eq 1 ] || error \
3981                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3982         echo "$GETSTRIPE file1 passed."
3983
3984         #test lfs getstripe with --verbose
3985         [ `$GETSTRIPE --verbose $DIR/$tdir |
3986                         grep -c lmm_magic` -eq $NUMFILES ] ||
3987                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3988         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3989             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3990         echo "$GETSTRIPE --verbose passed."
3991
3992         #test lfs getstripe with --obd
3993         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3994                                         grep -q "unknown obduuid" ||
3995                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3996
3997         [  "$OSTCOUNT" -lt 2 ] &&
3998                 skip_env "skipping other $GETSTRIPE --obd test" && return
3999
4000         OSTIDX=1
4001         OBDUUID=$(ostuuid_from_index $OSTIDX)
4002         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4003         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4004         [ $FOUND -eq $FILENUM ] ||
4005                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4006         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4007                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4008                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4009                 error "$GETSTRIPE --obd: should not show file on other obd"
4010         echo "$GETSTRIPE --obd passed"
4011 }
4012 run_test 56a "check $GETSTRIPE"
4013
4014 NUMFILES=3
4015 NUMDIRS=3
4016 setup_56() {
4017         local LOCAL_NUMFILES="$1"
4018         local LOCAL_NUMDIRS="$2"
4019         local MKDIR_PARAMS="$3"
4020
4021         if [ ! -d "$TDIR" ] ; then
4022                 test_mkdir -p $TDIR
4023                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4024                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4025                         touch $TDIR/file$i
4026                 done
4027                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4028                         test_mkdir $TDIR/dir$i
4029                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4030                                 touch $TDIR/dir$i/file$j
4031                         done
4032                 done
4033         fi
4034 }
4035
4036 setup_56_special() {
4037         LOCAL_NUMFILES=$1
4038         LOCAL_NUMDIRS=$2
4039         setup_56 $1 $2
4040         if [ ! -e "$TDIR/loop1b" ] ; then
4041                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4042                         mknod $TDIR/loop${i}b b 7 $i
4043                         mknod $TDIR/null${i}c c 1 3
4044                         ln -s $TDIR/file1 $TDIR/link${i}l
4045                 done
4046                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4047                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4048                         mknod $TDIR/dir$i/null${i}c c 1 3
4049                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4050                 done
4051         fi
4052 }
4053
4054 test_56g() {
4055         $SETSTRIPE -d $DIR
4056
4057         TDIR=$DIR/${tdir}g
4058         setup_56 $NUMFILES $NUMDIRS
4059
4060         EXPECTED=$(($NUMDIRS + 2))
4061         # test lfs find with -name
4062         for i in $(seq 1 $NUMFILES) ; do
4063                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4064                 [ $NUMS -eq $EXPECTED ] ||
4065                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4066                               "found $NUMS, expected $EXPECTED"
4067         done
4068 }
4069 run_test 56g "check lfs find -name ============================="
4070
4071 test_56h() {
4072         $SETSTRIPE -d $DIR
4073
4074         TDIR=$DIR/${tdir}g
4075         setup_56 $NUMFILES $NUMDIRS
4076
4077         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4078         # test lfs find with ! -name
4079         for i in $(seq 1 $NUMFILES) ; do
4080                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4081                 [ $NUMS -eq $EXPECTED ] ||
4082                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4083                               "found $NUMS, expected $EXPECTED"
4084         done
4085 }
4086 run_test 56h "check lfs find ! -name ============================="
4087
4088 test_56i() {
4089        tdir=${tdir}i
4090        test_mkdir -p $DIR/$tdir
4091        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4092        CMD="$LFIND -ost $UUID $DIR/$tdir"
4093        OUT=$($CMD)
4094        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4095 }
4096 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4097
4098 test_56j() {
4099         TDIR=$DIR/${tdir}g
4100         setup_56_special $NUMFILES $NUMDIRS
4101
4102         EXPECTED=$((NUMDIRS + 1))
4103         CMD="$LFIND -type d $TDIR"
4104         NUMS=$($CMD | wc -l)
4105         [ $NUMS -eq $EXPECTED ] ||
4106                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4107 }
4108 run_test 56j "check lfs find -type d ============================="
4109
4110 test_56k() {
4111         TDIR=$DIR/${tdir}g
4112         setup_56_special $NUMFILES $NUMDIRS
4113
4114         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4115         CMD="$LFIND -type f $TDIR"
4116         NUMS=$($CMD | wc -l)
4117         [ $NUMS -eq $EXPECTED ] ||
4118                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4119 }
4120 run_test 56k "check lfs find -type f ============================="
4121
4122 test_56l() {
4123         TDIR=$DIR/${tdir}g
4124         setup_56_special $NUMFILES $NUMDIRS
4125
4126         EXPECTED=$((NUMDIRS + NUMFILES))
4127         CMD="$LFIND -type b $TDIR"
4128         NUMS=$($CMD | wc -l)
4129         [ $NUMS -eq $EXPECTED ] ||
4130                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4131 }
4132 run_test 56l "check lfs find -type b ============================="
4133
4134 test_56m() {
4135         TDIR=$DIR/${tdir}g
4136         setup_56_special $NUMFILES $NUMDIRS
4137
4138         EXPECTED=$((NUMDIRS + NUMFILES))
4139         CMD="$LFIND -type c $TDIR"
4140         NUMS=$($CMD | wc -l)
4141         [ $NUMS -eq $EXPECTED ] ||
4142                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4143 }
4144 run_test 56m "check lfs find -type c ============================="
4145
4146 test_56n() {
4147         TDIR=$DIR/${tdir}g
4148         setup_56_special $NUMFILES $NUMDIRS
4149
4150         EXPECTED=$((NUMDIRS + NUMFILES))
4151         CMD="$LFIND -type l $TDIR"
4152         NUMS=$($CMD | wc -l)
4153         [ $NUMS -eq $EXPECTED ] ||
4154                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4155 }
4156 run_test 56n "check lfs find -type l ============================="
4157
4158 test_56o() {
4159         TDIR=$DIR/${tdir}o
4160         setup_56 $NUMFILES $NUMDIRS
4161
4162         utime $TDIR/file1 > /dev/null || error "utime (1)"
4163         utime $TDIR/file2 > /dev/null || error "utime (2)"
4164         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4165         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4166         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4167         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4168
4169         EXPECTED=4
4170         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4171         [ $NUMS -eq $EXPECTED ] || \
4172                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4173
4174         EXPECTED=12
4175         CMD="$LFIND -mtime 0 $TDIR"
4176         NUMS=$($CMD | wc -l)
4177         [ $NUMS -eq $EXPECTED ] ||
4178                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4179 }
4180 run_test 56o "check lfs find -mtime for old files =========================="
4181
4182 test_56p() {
4183         [ $RUNAS_ID -eq $UID ] &&
4184                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4185
4186         TDIR=$DIR/${tdir}p
4187         setup_56 $NUMFILES $NUMDIRS
4188
4189         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4190         EXPECTED=$NUMFILES
4191         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4192         NUMS=$($CMD | wc -l)
4193         [ $NUMS -eq $EXPECTED ] || \
4194                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4195
4196         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4197         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4198         NUMS=$($CMD | wc -l)
4199         [ $NUMS -eq $EXPECTED ] || \
4200                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4201 }
4202 run_test 56p "check lfs find -uid and ! -uid ==============================="
4203
4204 test_56q() {
4205         [ $RUNAS_ID -eq $UID ] &&
4206                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4207
4208         TDIR=$DIR/${tdir}q
4209         setup_56 $NUMFILES $NUMDIRS
4210
4211         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4212
4213         EXPECTED=$NUMFILES
4214         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4215         NUMS=$($CMD | wc -l)
4216         [ $NUMS -eq $EXPECTED ] ||
4217                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4218
4219         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4220         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4221         NUMS=$($CMD | wc -l)
4222         [ $NUMS -eq $EXPECTED ] ||
4223                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4224 }
4225 run_test 56q "check lfs find -gid and ! -gid ==============================="
4226
4227 test_56r() {
4228         TDIR=$DIR/${tdir}r
4229         setup_56 $NUMFILES $NUMDIRS
4230
4231         EXPECTED=12
4232         CMD="$LFIND -size 0 -type f $TDIR"
4233         NUMS=$($CMD | wc -l)
4234         [ $NUMS -eq $EXPECTED ] ||
4235                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4236         EXPECTED=0
4237         CMD="$LFIND ! -size 0 -type f $TDIR"
4238         NUMS=$($CMD | wc -l)
4239         [ $NUMS -eq $EXPECTED ] ||
4240                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4241         echo "test" > $TDIR/$tfile
4242         echo "test2" > $TDIR/$tfile.2 && sync
4243         EXPECTED=1
4244         CMD="$LFIND -size 5 -type f $TDIR"
4245         NUMS=$($CMD | wc -l)
4246         [ $NUMS -eq $EXPECTED ] ||
4247                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4248         EXPECTED=1
4249         CMD="$LFIND -size +5 -type f $TDIR"
4250         NUMS=$($CMD | wc -l)
4251         [ $NUMS -eq $EXPECTED ] ||
4252                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4253         EXPECTED=2
4254         CMD="$LFIND -size +0 -type f $TDIR"
4255         NUMS=$($CMD | wc -l)
4256         [ $NUMS -eq $EXPECTED ] ||
4257                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4258         EXPECTED=2
4259         CMD="$LFIND ! -size -5 -type f $TDIR"
4260         NUMS=$($CMD | wc -l)
4261         [ $NUMS -eq $EXPECTED ] ||
4262                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4263         EXPECTED=12
4264         CMD="$LFIND -size -5 -type f $TDIR"
4265         NUMS=$($CMD | wc -l)
4266         [ $NUMS -eq $EXPECTED ] ||
4267                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4268 }
4269 run_test 56r "check lfs find -size works =========================="
4270
4271 test_56s() { # LU-611
4272         TDIR=$DIR/${tdir}s
4273         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4274
4275         if [ $OSTCOUNT -gt 1 ]; then
4276                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4277                 ONESTRIPE=4
4278                 EXTRA=4
4279         else
4280                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4281                 EXTRA=0
4282         fi
4283
4284         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4285         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4286         NUMS=$($CMD | wc -l)
4287         [ $NUMS -eq $EXPECTED ] ||
4288                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4289
4290         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4291         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4292         NUMS=$($CMD | wc -l)
4293         [ $NUMS -eq $EXPECTED ] ||
4294                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4295
4296         EXPECTED=$ONESTRIPE
4297         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4298         NUMS=$($CMD | wc -l)
4299         [ $NUMS -eq $EXPECTED ] ||
4300                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4301
4302         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4303         NUMS=$($CMD | wc -l)
4304         [ $NUMS -eq $EXPECTED ] ||
4305                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4306
4307         EXPECTED=0
4308         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4309         NUMS=$($CMD | wc -l)
4310         [ $NUMS -eq $EXPECTED ] ||
4311                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4312 }
4313 run_test 56s "check lfs find -stripe-count works"
4314
4315 test_56t() { # LU-611
4316         TDIR=$DIR/${tdir}t
4317         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4318
4319         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4320
4321         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4322         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4323         NUMS=$($CMD | wc -l)
4324         [ $NUMS -eq $EXPECTED ] ||
4325                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4326
4327         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4328         NUMS=$($CMD | wc -l)
4329         [ $NUMS -eq $EXPECTED ] ||
4330                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4331
4332         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4333         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4334         NUMS=$($CMD | wc -l)
4335         [ $NUMS -eq $EXPECTED ] ||
4336                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4337
4338         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4339         NUMS=$($CMD | wc -l)
4340         [ $NUMS -eq $EXPECTED ] ||
4341                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4342
4343         EXPECTED=4
4344         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4345         NUMS=$($CMD | wc -l)
4346         [ $NUMS -eq $EXPECTED ] ||
4347                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4348
4349         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4350         NUMS=$($CMD | wc -l)
4351         [ $NUMS -eq $EXPECTED ] ||
4352                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4353
4354         EXPECTED=0
4355         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4356         NUMS=$($CMD | wc -l)
4357         [ $NUMS -eq $EXPECTED ] ||
4358                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4359 }
4360 run_test 56t "check lfs find -stripe-size works"
4361
4362 test_56u() { # LU-611
4363         TDIR=$DIR/${tdir}u
4364         setup_56 $NUMFILES $NUMDIRS "-i 0"
4365
4366         if [ $OSTCOUNT -gt 1 ]; then
4367                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4368                 ONESTRIPE=4
4369         else
4370                 ONESTRIPE=0
4371         fi
4372
4373         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4374         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4375         NUMS=$($CMD | wc -l)
4376         [ $NUMS -eq $EXPECTED ] ||
4377                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4378
4379         EXPECTED=$ONESTRIPE
4380         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4381         NUMS=$($CMD | wc -l)
4382         [ $NUMS -eq $EXPECTED ] ||
4383                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4384
4385         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4386         NUMS=$($CMD | wc -l)
4387         [ $NUMS -eq $EXPECTED ] ||
4388                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4389
4390         EXPECTED=0
4391         # This should produce an error and not return any files
4392         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4393         NUMS=$($CMD 2>/dev/null | wc -l)
4394         [ $NUMS -eq $EXPECTED ] ||
4395                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4396
4397         if [ $OSTCOUNT -gt 1 ]; then
4398                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4399                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4400                 NUMS=$($CMD | wc -l)
4401                 [ $NUMS -eq $EXPECTED ] ||
4402                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4403         fi
4404 }
4405 run_test 56u "check lfs find -stripe-index works"
4406
4407 test_56v() {
4408     local MDT_IDX=0
4409
4410     TDIR=$DIR/${tdir}v
4411     rm -rf $TDIR
4412     setup_56 $NUMFILES $NUMDIRS
4413
4414     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4415     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4416
4417     for file in $($LFIND -mdt $UUID $TDIR); do
4418         file_mdt_idx=$($GETSTRIPE -M $file)
4419         [ $file_mdt_idx -eq $MDT_IDX ] ||
4420             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4421     done
4422 }
4423 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4424
4425 # Get and check the actual stripe count of one file.
4426 # Usage: check_stripe_count <file> <expected_stripe_count>
4427 check_stripe_count() {
4428     local file=$1
4429     local expected=$2
4430     local actual
4431
4432     [[ -z "$file" || -z "$expected" ]] &&
4433         error "check_stripe_count: invalid argument!"
4434
4435     local cmd="$GETSTRIPE -c $file"
4436     actual=$($cmd) || error "$cmd failed"
4437     actual=${actual%% *}
4438
4439     if [[ $actual -ne $expected ]]; then
4440         [[ $expected -eq -1 ]] ||
4441             error "$cmd wrong: found $actual, expected $expected"
4442         [[ $actual -eq $OSTCOUNT ]] ||
4443             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4444     fi
4445 }
4446
4447 test_56w() {
4448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4449         TDIR=$DIR/${tdir}w
4450
4451     rm -rf $TDIR || error "remove $TDIR failed"
4452     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4453
4454     local stripe_size
4455     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4456         error "$GETSTRIPE -S -d $TDIR failed"
4457     stripe_size=${stripe_size%% *}
4458
4459     local file_size=$((stripe_size * OSTCOUNT))
4460     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4461     local required_space=$((file_num * file_size))
4462     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4463     [[ $free_space -le $((required_space / 1024)) ]] &&
4464         skip_env "need at least $required_space bytes free space," \
4465                  "have $free_space kbytes" && return
4466
4467     local dd_bs=65536
4468     local dd_count=$((file_size / dd_bs))
4469
4470     # write data into the files
4471     local i
4472     local j
4473     local file
4474     for i in $(seq 1 $NUMFILES); do
4475         file=$TDIR/file$i
4476         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4477             error "write data into $file failed"
4478     done
4479     for i in $(seq 1 $NUMDIRS); do
4480         for j in $(seq 1 $NUMFILES); do
4481             file=$TDIR/dir$i/file$j
4482             yes | dd bs=$dd_bs count=$dd_count of=$file \
4483                 >/dev/null 2>&1 ||
4484                 error "write data into $file failed"
4485         done
4486     done
4487
4488     local expected=-1
4489     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4490
4491     # lfs_migrate file
4492     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4493     echo "$cmd"
4494     eval $cmd || error "$cmd failed"
4495
4496     check_stripe_count $TDIR/file1 $expected
4497
4498     # lfs_migrate dir
4499     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4500     echo "$cmd"
4501     eval $cmd || error "$cmd failed"
4502
4503     for j in $(seq 1 $NUMFILES); do
4504         check_stripe_count $TDIR/dir1/file$j $expected
4505     done
4506
4507     # lfs_migrate works with lfs find
4508     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4509          $LFS_MIGRATE -y -c $expected"
4510     echo "$cmd"
4511     eval $cmd || error "$cmd failed"
4512
4513     for i in $(seq 2 $NUMFILES); do
4514         check_stripe_count $TDIR/file$i $expected
4515     done
4516     for i in $(seq 2 $NUMDIRS); do
4517         for j in $(seq 1 $NUMFILES); do
4518             check_stripe_count $TDIR/dir$i/file$j $expected
4519         done
4520     done
4521 }
4522 run_test 56w "check lfs_migrate -c stripe_count works"
4523
4524 test_56x() {
4525         check_swap_layouts_support && return 0
4526         [ "$OSTCOUNT" -lt "2" ] &&
4527                 skip_env "need 2 OST, skipping test" && return
4528
4529         local dir0=$DIR/$tdir/$testnum
4530         mkdir -p $dir0 || error "creating dir $dir0"
4531
4532         local ref1=/etc/passwd
4533         local file1=$dir0/file1
4534
4535         $SETSTRIPE -c 2 $file1
4536         cp $ref1 $file1
4537         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4538         stripe=$($GETSTRIPE -c $file1)
4539         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4540         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4541
4542         # clean up
4543         rm -f $file1
4544 }
4545 run_test 56x "lfs migration support"
4546
4547 test_56y() {
4548         local res=""
4549
4550         local dir0=$DIR/$tdir/$testnum
4551         mkdir -p $dir0 || error "creating dir $dir0"
4552         local f1=$dir0/file1
4553         local f2=$dir0/file2
4554
4555         touch $f1 || error "creating std file $f1"
4556         $MULTIOP $f2 H2c || error "creating released file $f2"
4557
4558         # a directory can be raid0, so ask only for files
4559         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4560         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4561
4562         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4563         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4564
4565         # only files can be released, so no need to force file search
4566         res=$($LFIND $dir0 -L released)
4567         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4568
4569         res=$($LFIND $dir0 \! -L released)
4570         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4571
4572 }
4573 run_test 56y "lfs find -L raid0|released"
4574
4575 test_57a() {
4576         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4577         # note test will not do anything if MDS is not local
4578         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4579                 skip "Only applicable to ldiskfs-based MDTs"
4580                 return
4581         fi
4582
4583         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4584         local MNTDEV="osd*.*MDT*.mntdev"
4585         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4586         [ -z "$DEV" ] && error "can't access $MNTDEV"
4587         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4588                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4589                         error "can't access $DEV"
4590                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4591                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4592                 rm $TMP/t57a.dump
4593         done
4594 }
4595 run_test 57a "verify MDS filesystem created with large inodes =="
4596
4597 test_57b() {
4598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4599         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4600                 skip "Only applicable to ldiskfs-based MDTs"
4601                 return
4602         fi
4603
4604         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4605         local dir=$DIR/d57b
4606
4607         local FILECOUNT=100
4608         local FILE1=$dir/f1
4609         local FILEN=$dir/f$FILECOUNT
4610
4611         rm -rf $dir || error "removing $dir"
4612         test_mkdir -p $dir || error "creating $dir"
4613         local num=$(get_mds_dir $dir)
4614         local mymds=mds$num
4615
4616         echo "mcreating $FILECOUNT files"
4617         createmany -m $dir/f 1 $FILECOUNT || \
4618                 error "creating files in $dir"
4619
4620         # verify that files do not have EAs yet
4621         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4622         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4623
4624         sync
4625         sleep 1
4626         df $dir  #make sure we get new statfs data
4627         local MDSFREE=$(do_facet $mymds \
4628                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4629         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4630         echo "opening files to create objects/EAs"
4631         local FILE
4632         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4633                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4634         done
4635
4636         # verify that files have EAs now
4637         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4638         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4639
4640         sleep 1  #make sure we get new statfs data
4641         df $dir
4642         local MDSFREE2=$(do_facet $mymds \
4643                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4644         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4645         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4646                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4647                         error "MDC before $MDCFREE != after $MDCFREE2"
4648                 else
4649                         echo "MDC before $MDCFREE != after $MDCFREE2"
4650                         echo "unable to confirm if MDS has large inodes"
4651                 fi
4652         fi
4653         rm -rf $dir
4654 }
4655 run_test 57b "default LOV EAs are stored inside large inodes ==="
4656
4657 test_58() {
4658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4659         [ -z "$(which wiretest 2>/dev/null)" ] &&
4660                         skip_env "could not find wiretest" && return
4661         wiretest
4662 }
4663 run_test 58 "verify cross-platform wire constants =============="
4664
4665 test_59() {
4666         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4667         echo "touch 130 files"
4668         createmany -o $DIR/f59- 130
4669         echo "rm 130 files"
4670         unlinkmany $DIR/f59- 130
4671         sync
4672         # wait for commitment of removal
4673         wait_delete_completed
4674 }
4675 run_test 59 "verify cancellation of llog records async ========="
4676
4677 TEST60_HEAD="test_60 run $RANDOM"
4678 test_60a() {
4679         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4680         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4681         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4682                 skip_env "missing subtest run-llog.sh" && return
4683         log "$TEST60_HEAD - from kernel mode"
4684         do_facet mgs sh run-llog.sh
4685 }
4686 run_test 60a "llog sanity tests run from kernel module =========="
4687
4688 test_60b() { # bug 6411
4689         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4690         dmesg > $DIR/$tfile
4691         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4692                                  /llog.test/ {
4693                                          if (marker)
4694                                                  from_marker++
4695                                          from_begin++
4696                                  }
4697                                  END {
4698                                          if (marker)
4699                                                  print from_marker
4700                                          else
4701                                                  print from_begin
4702                                  }"`
4703         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4704 }
4705 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4706
4707 test_60c() {
4708         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4709         echo "create 5000 files"
4710         createmany -o $DIR/f60c- 5000
4711 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4712         lctl set_param fail_loc=0x80000137
4713         unlinkmany $DIR/f60c- 5000
4714         lctl set_param fail_loc=0
4715 }
4716 run_test 60c "unlink file when mds full"
4717
4718 test_60d() {
4719         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4720         SAVEPRINTK=$(lctl get_param -n printk)
4721
4722         # verify "lctl mark" is even working"
4723         MESSAGE="test message ID $RANDOM $$"
4724         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4725         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4726
4727         lctl set_param printk=0 || error "set lnet.printk failed"
4728         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4729         MESSAGE="new test message ID $RANDOM $$"
4730         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4731         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4732         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4733
4734         lctl set_param -n printk="$SAVEPRINTK"
4735 }
4736 run_test 60d "test printk console message masking"
4737
4738 test_61() {
4739         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4740         f="$DIR/f61"
4741         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4742         cancel_lru_locks osc
4743         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4744         sync
4745 }
4746 run_test 61 "mmap() writes don't make sync hang ================"
4747
4748 # bug 2330 - insufficient obd_match error checking causes LBUG
4749 test_62() {
4750         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4751         f="$DIR/f62"
4752         echo foo > $f
4753         cancel_lru_locks osc
4754         lctl set_param fail_loc=0x405
4755         cat $f && error "cat succeeded, expect -EIO"
4756         lctl set_param fail_loc=0
4757 }
4758 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4759 # match every page all of the time.
4760 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4761
4762 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4763 test_63a() {    # was test_63
4764         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4765         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4766         lctl set_param -n osc.*.max_dirty_mb 0
4767         for i in `seq 10` ; do
4768                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4769                 sleep 5
4770                 kill $!
4771                 sleep 1
4772         done
4773
4774         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4775         rm -f $DIR/f63 || true
4776 }
4777 run_test 63a "Verify oig_wait interruption does not crash ======="
4778
4779 # bug 2248 - async write errors didn't return to application on sync
4780 # bug 3677 - async write errors left page locked
4781 test_63b() {
4782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4783         debugsave
4784         lctl set_param debug=-1
4785
4786         # ensure we have a grant to do async writes
4787         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4788         rm $DIR/$tfile
4789
4790         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4791         lctl set_param fail_loc=0x80000406
4792         $MULTIOP $DIR/$tfile Owy && \
4793                 error "sync didn't return ENOMEM"
4794         sync; sleep 2; sync     # do a real sync this time to flush page
4795         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4796                 error "locked page left in cache after async error" || true
4797         debugrestore
4798 }
4799 run_test 63b "async write errors should be returned to fsync ==="
4800
4801 test_64a () {
4802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4803         df $DIR
4804         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4805 }
4806 run_test 64a "verify filter grant calculations (in kernel) ====="
4807
4808 test_64b () {
4809         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4810         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4811 }
4812 run_test 64b "check out-of-space detection on client ==========="
4813
4814 test_64c() {
4815         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4816 }
4817 run_test 64c "verify grant shrink ========================------"
4818
4819 # bug 1414 - set/get directories' stripe info
4820 test_65a() {
4821         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4822         test_mkdir -p $DIR/$tdir
4823         touch $DIR/$tdir/f1
4824         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4825 }
4826 run_test 65a "directory with no stripe info ===================="
4827
4828 test_65b() {
4829         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4830         test_mkdir -p $DIR/$tdir
4831         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4832                                                 error "setstripe"
4833         touch $DIR/$tdir/f2
4834         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4835 }
4836 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4837
4838 test_65c() {
4839         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4840         if [ $OSTCOUNT -gt 1 ]; then
4841                 test_mkdir -p $DIR/$tdir
4842                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4843                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4844                 touch $DIR/$tdir/f3
4845                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4846         fi
4847 }
4848 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4849
4850 test_65d() {
4851         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4852         test_mkdir -p $DIR/$tdir
4853         if [ $STRIPECOUNT -le 0 ]; then
4854                 sc=1
4855         elif [ $STRIPECOUNT -gt 2000 ]; then
4856 #LOV_MAX_STRIPE_COUNT is 2000
4857                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4858         else
4859                 sc=$(($STRIPECOUNT - 1))
4860         fi
4861         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4862         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4863         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4864                                                 error "lverify failed"
4865 }
4866 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4867
4868 test_65e() {
4869         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4870         test_mkdir -p $DIR/$tdir
4871
4872         $SETSTRIPE $DIR/$tdir || error "setstripe"
4873         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4874                                         error "no stripe info failed"
4875         touch $DIR/$tdir/f6
4876         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4877 }
4878 run_test 65e "directory setstripe defaults ======================="
4879
4880 test_65f() {
4881         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4882         test_mkdir -p $DIR/${tdir}f
4883         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4884 }
4885 run_test 65f "dir setstripe permission (should return error) ==="
4886
4887 test_65g() {
4888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4889         test_mkdir -p $DIR/$tdir
4890         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4891                                                         error "setstripe"
4892         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4893         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4894                 error "delete default stripe failed"
4895 }
4896 run_test 65g "directory setstripe -d ==========================="
4897
4898 test_65h() {
4899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4900         test_mkdir -p $DIR/$tdir
4901         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4902                                                         error "setstripe"
4903         test_mkdir -p $DIR/$tdir/dd1
4904         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4905                 error "stripe info inherit failed"
4906 }
4907 run_test 65h "directory stripe info inherit ===================="
4908
4909 test_65i() { # bug6367
4910         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4911         $SETSTRIPE -S 65536 -c -1 $MOUNT
4912 }
4913 run_test 65i "set non-default striping on root directory (bug 6367)="
4914
4915 test_65ia() { # bug12836
4916         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4917         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4918 }
4919 run_test 65ia "getstripe on -1 default directory striping"
4920
4921 test_65ib() { # bug12836
4922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4923         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4924 }
4925 run_test 65ib "getstripe -v on -1 default directory striping"
4926
4927 test_65ic() { # bug12836
4928         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4929         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4930 }
4931 run_test 65ic "new find on -1 default directory striping"
4932
4933 test_65j() { # bug6367
4934         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4935         sync; sleep 1
4936         # if we aren't already remounting for each test, do so for this test
4937         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4938                 cleanup || error "failed to unmount"
4939                 setup
4940         fi
4941         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4942 }
4943 run_test 65j "set default striping on root directory (bug 6367)="
4944
4945 test_65k() { # bug11679
4946         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4947         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4948         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4949
4950     echo "Check OST status: "
4951     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4952               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4953
4954     for OSC in $MDS_OSCS; do
4955         echo $OSC "is activate"
4956         do_facet $SINGLEMDS lctl --device %$OSC activate
4957     done
4958
4959     mkdir -p $DIR/$tdir
4960     for INACTIVE_OSC in $MDS_OSCS; do
4961         echo "Deactivate: " $INACTIVE_OSC
4962         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4963         for STRIPE_OSC in $MDS_OSCS; do
4964             OST=`osc_to_ost $STRIPE_OSC`
4965             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4966                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4967
4968             [ -f $DIR/$tdir/$IDX ] && continue
4969             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4970             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4971             RC=$?
4972             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4973         done
4974         rm -f $DIR/$tdir/*
4975         echo $INACTIVE_OSC "is Activate."
4976         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4977     done
4978 }
4979 run_test 65k "validate manual striping works properly with deactivated OSCs"
4980
4981 test_65l() { # bug 12836
4982         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4983         test_mkdir -p $DIR/$tdir/test_dir
4984         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4985         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4986 }
4987 run_test 65l "lfs find on -1 stripe dir ========================"
4988
4989 # bug 2543 - update blocks count on client
4990 test_66() {
4991         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4992         COUNT=${COUNT:-8}
4993         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4994         sync; sync_all_data; sync; sync_all_data
4995         cancel_lru_locks osc
4996         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
4997         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
4998 }
4999 run_test 66 "update inode blocks count on client ==============="
5000
5001 LLOOP=
5002 LLITELOOPLOAD=
5003 cleanup_68() {
5004         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5005         trap 0
5006         if [ ! -z "$LLOOP" ]; then
5007                 if swapon -s | grep -q $LLOOP; then
5008                         swapoff $LLOOP || error "swapoff failed"
5009                 fi
5010
5011                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5012                 rm -f $LLOOP
5013                 unset LLOOP
5014         fi
5015         if [ ! -z "$LLITELOOPLOAD" ]; then
5016                 rmmod llite_lloop
5017                 unset LLITELOOPLOAD
5018         fi
5019         rm -f $DIR/f68*
5020 }
5021
5022 meminfo() {
5023         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5024 }
5025
5026 swap_used() {
5027         swapon -s | awk '($1 == "'$1'") { print $4 }'
5028 }
5029
5030 # test case for lloop driver, basic function
5031 test_68a() {
5032         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5033         [ "$UID" != 0 ] && skip_env "must run as root" && return
5034         llite_lloop_enabled || \
5035                 { skip_env "llite_lloop module disabled" && return; }
5036
5037         trap cleanup_68 EXIT
5038
5039         if ! module_loaded llite_lloop; then
5040                 if load_module llite/llite_lloop; then
5041                         LLITELOOPLOAD=yes
5042                 else
5043                         skip_env "can't find module llite_lloop"
5044                         return
5045                 fi
5046         fi
5047
5048         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5049         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5050         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5051
5052         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5053         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5054
5055         cleanup_68
5056 }
5057 run_test 68a "lloop driver - basic test ========================"
5058
5059 # excercise swapping to lustre by adding a high priority swapfile entry
5060 # and then consuming memory until it is used.
5061 test_68b() {  # was test_68
5062         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5063         [ "$UID" != 0 ] && skip_env "must run as root" && return
5064         lctl get_param -n devices | grep -q obdfilter && \
5065                 skip "local OST" && return
5066
5067         grep -q llite_lloop /proc/modules
5068         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5069
5070         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5071                 skip "can't reliably test swap with TCP" && return
5072
5073         MEMTOTAL=`meminfo MemTotal`
5074         NR_BLOCKS=$((MEMTOTAL>>8))
5075         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5076
5077         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5078         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5079         mkswap $DIR/f68b
5080
5081         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5082
5083         trap cleanup_68 EXIT
5084
5085         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5086
5087         echo "before: `swapon -s | grep $LLOOP`"
5088         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5089         echo "after: `swapon -s | grep $LLOOP`"
5090         SWAPUSED=`swap_used $LLOOP`
5091
5092         cleanup_68
5093
5094         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5095 }
5096 run_test 68b "support swapping to Lustre ========================"
5097
5098 # bug5265, obdfilter oa2dentry return -ENOENT
5099 # #define OBD_FAIL_OST_ENOENT 0x217
5100 test_69() {
5101         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5102         remote_ost_nodsh && skip "remote OST with nodsh" && return
5103
5104         f="$DIR/$tfile"
5105         $SETSTRIPE -c 1 -i 0 $f
5106
5107         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5108
5109         do_facet ost1 lctl set_param fail_loc=0x217
5110         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5111         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5112
5113         do_facet ost1 lctl set_param fail_loc=0
5114         $DIRECTIO write $f 0 2 || error "write error"
5115
5116         cancel_lru_locks osc
5117         $DIRECTIO read $f 0 1 || error "read error"
5118
5119         do_facet ost1 lctl set_param fail_loc=0x217
5120         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5121
5122         do_facet ost1 lctl set_param fail_loc=0
5123         rm -f $f
5124 }
5125 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5126
5127 test_71() {
5128     test_mkdir -p $DIR/$tdir
5129     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5130 }
5131 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5132
5133 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5134         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5135         [ "$RUNAS_ID" = "$UID" ] &&
5136                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5137
5138         # Check that testing environment is properly set up. Skip if not
5139         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5140                 skip_env "User $RUNAS_ID does not exist - skipping"
5141                 return 0
5142         }
5143         # We had better clear the $DIR to get enough space for dd
5144         rm -rf $DIR/*
5145         touch $DIR/$tfile
5146         chmod 777 $DIR/$tfile
5147         chmod ug+s $DIR/$tfile
5148         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5149                 error "$RUNAS dd $DIR/$tfile failed"
5150         # See if we are still setuid/sgid
5151         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5152                 error "S/gid is not dropped on write"
5153         # Now test that MDS is updated too
5154         cancel_lru_locks mdc
5155         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5156                 error "S/gid is not dropped on MDS"
5157         rm -f $DIR/$tfile
5158 }
5159 run_test 72a "Test that remove suid works properly (bug5695) ===="
5160
5161 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5162         local perm
5163
5164         [ "$RUNAS_ID" = "$UID" ] && \
5165                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5166         [ "$RUNAS_ID" -eq 0 ] && \
5167                 skip_env "RUNAS_ID = 0 -- skipping" && return
5168
5169         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5170         # Check that testing environment is properly set up. Skip if not
5171         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5172                 skip_env "User $RUNAS_ID does not exist - skipping"
5173                 return 0
5174         }
5175         touch $DIR/${tfile}-f{g,u}
5176         test_mkdir $DIR/${tfile}-dg
5177         test_mkdir $DIR/${tfile}-du
5178         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5179         chmod g+s $DIR/${tfile}-{f,d}g
5180         chmod u+s $DIR/${tfile}-{f,d}u
5181         for perm in 777 2777 4777; do
5182                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5183                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5184                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5185                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5186         done
5187         true
5188 }
5189 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5190
5191 # bug 3462 - multiple simultaneous MDC requests
5192 test_73() {
5193         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5194         test_mkdir $DIR/d73-1
5195         test_mkdir $DIR/d73-2
5196         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5197         pid1=$!
5198
5199         lctl set_param fail_loc=0x80000129
5200         $MULTIOP $DIR/d73-1/f73-2 Oc &
5201         sleep 1
5202         lctl set_param fail_loc=0
5203
5204         $MULTIOP $DIR/d73-2/f73-3 Oc &
5205         pid3=$!
5206
5207         kill -USR1 $pid1
5208         wait $pid1 || return 1
5209
5210         sleep 25
5211
5212         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5213         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5214         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5215
5216         rm -rf $DIR/d73-*
5217 }
5218 run_test 73 "multiple MDC requests (should not deadlock)"
5219
5220 test_74a() { # bug 6149, 6184
5221         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5222         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5223         #
5224         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5225         # will spin in a tight reconnection loop
5226         touch $DIR/f74a
5227         lctl set_param fail_loc=0x8000030e
5228         # get any lock that won't be difficult - lookup works.
5229         ls $DIR/f74a
5230         lctl set_param fail_loc=0
5231         true
5232         rm -f $DIR/f74a
5233 }
5234 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5235
5236 test_74b() { # bug 13310
5237         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5238         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5239         #
5240         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5241         # will spin in a tight reconnection loop
5242         lctl set_param fail_loc=0x8000030e
5243         # get a "difficult" lock
5244         touch $DIR/f74b
5245         lctl set_param fail_loc=0
5246         true
5247         rm -f $DIR/f74b
5248 }
5249 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5250
5251 test_74c() {
5252         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5253 #define OBD_FAIL_LDLM_NEW_LOCK
5254         lctl set_param fail_loc=0x80000319
5255         touch $DIR/$tfile && error "Touch successful"
5256         true
5257 }
5258 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5259
5260 num_inodes() {
5261         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5262 }
5263
5264 get_inode_slab_tunables() {
5265         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5266 }
5267
5268 set_inode_slab_tunables() {
5269         echo "lustre_inode_cache $1" > /proc/slabinfo
5270 }
5271
5272 test_76() { # Now for bug 20433, added originally in bug 1443
5273         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5274         local SLAB_SETTINGS=`get_inode_slab_tunables`
5275         local CPUS=`getconf _NPROCESSORS_ONLN`
5276         # we cannot set limit below 1 which means 1 inode in each
5277         # per-cpu cache is still allowed
5278         set_inode_slab_tunables "1 1 0"
5279         cancel_lru_locks osc
5280         BEFORE_INODES=`num_inodes`
5281         echo "before inodes: $BEFORE_INODES"
5282         local COUNT=1000
5283         [ "$SLOW" = "no" ] && COUNT=100
5284         for i in `seq $COUNT`; do
5285                 touch $DIR/$tfile
5286                 rm -f $DIR/$tfile
5287         done
5288         cancel_lru_locks osc
5289         AFTER_INODES=`num_inodes`
5290         echo "after inodes: $AFTER_INODES"
5291         local wait=0
5292         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5293                 sleep 2
5294                 AFTER_INODES=`num_inodes`
5295                 wait=$((wait+2))
5296                 echo "wait $wait seconds inodes: $AFTER_INODES"
5297                 if [ $wait -gt 30 ]; then
5298                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5299                 fi
5300         done
5301         set_inode_slab_tunables "$SLAB_SETTINGS"
5302 }
5303 run_test 76 "confirm clients recycle inodes properly ===="
5304
5305
5306 export ORIG_CSUM=""
5307 set_checksums()
5308 {
5309         # Note: in sptlrpc modes which enable its own bulk checksum, the
5310         # original crc32_le bulk checksum will be automatically disabled,
5311         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5312         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5313         # In this case set_checksums() will not be no-op, because sptlrpc
5314         # bulk checksum will be enabled all through the test.
5315
5316         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5317         lctl set_param -n osc.*.checksums $1
5318         return 0
5319 }
5320
5321 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5322                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5323 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5324 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5325 set_checksum_type()
5326 {
5327         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5328         log "set checksum type to $1"
5329         return 0
5330 }
5331 F77_TMP=$TMP/f77-temp
5332 F77SZ=8
5333 setup_f77() {
5334         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5335                 error "error writing to $F77_TMP"
5336 }
5337
5338 test_77a() { # bug 10889
5339         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5340         $GSS && skip "could not run with gss" && return
5341         [ ! -f $F77_TMP ] && setup_f77
5342         set_checksums 1
5343         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5344         set_checksums 0
5345         rm -f $DIR/$tfile
5346 }
5347 run_test 77a "normal checksum read/write operation"
5348
5349 test_77b() { # bug 10889
5350         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5351         $GSS && skip "could not run with gss" && return
5352         [ ! -f $F77_TMP ] && setup_f77
5353         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5354         $LCTL set_param fail_loc=0x80000409
5355         set_checksums 1
5356
5357         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5358                 error "dd error: $?"
5359         $LCTL set_param fail_loc=0
5360
5361         for algo in $CKSUM_TYPES; do
5362                 cancel_lru_locks osc
5363                 set_checksum_type $algo
5364                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5365                 $LCTL set_param fail_loc=0x80000408
5366                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5367                 $LCTL set_param fail_loc=0
5368         done
5369         set_checksums 0
5370         set_checksum_type $ORIG_CSUM_TYPE
5371         rm -f $DIR/$tfile
5372 }
5373 run_test 77b "checksum error on client write, read"
5374
5375 test_77d() { # bug 10889
5376         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5377         $GSS && skip "could not run with gss" && return
5378         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5379         $LCTL set_param fail_loc=0x80000409
5380         set_checksums 1
5381         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5382                 error "direct write: rc=$?"
5383         $LCTL set_param fail_loc=0
5384         set_checksums 0
5385
5386         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5387         $LCTL set_param fail_loc=0x80000408
5388         set_checksums 1
5389         cancel_lru_locks osc
5390         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5391                 error "direct read: rc=$?"
5392         $LCTL set_param fail_loc=0
5393         set_checksums 0
5394 }
5395 run_test 77d "checksum error on OST direct write, read"
5396
5397 test_77f() { # bug 10889
5398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5399         $GSS && skip "could not run with gss" && return
5400         set_checksums 1
5401         for algo in $CKSUM_TYPES; do
5402                 cancel_lru_locks osc
5403                 set_checksum_type $algo
5404                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5405                 $LCTL set_param fail_loc=0x409
5406                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5407                         error "direct write succeeded"
5408                 $LCTL set_param fail_loc=0
5409         done
5410         set_checksum_type $ORIG_CSUM_TYPE
5411         set_checksums 0
5412 }
5413 run_test 77f "repeat checksum error on write (expect error)"
5414
5415 test_77g() { # bug 10889
5416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5417         $GSS && skip "could not run with gss" && return
5418         remote_ost_nodsh && skip "remote OST with nodsh" && return
5419
5420         [ ! -f $F77_TMP ] && setup_f77
5421
5422         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5423         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5424         do_facet ost1 lctl set_param fail_loc=0x8000021a
5425         set_checksums 1
5426         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5427                 error "write error: rc=$?"
5428         do_facet ost1 lctl set_param fail_loc=0
5429         set_checksums 0
5430
5431         cancel_lru_locks osc
5432         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5433         do_facet ost1 lctl set_param fail_loc=0x8000021b
5434         set_checksums 1
5435         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5436         do_facet ost1 lctl set_param fail_loc=0
5437         set_checksums 0
5438 }
5439 run_test 77g "checksum error on OST write, read"
5440
5441 test_77i() { # bug 13805
5442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5443         $GSS && skip "could not run with gss" && return
5444         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5445         lctl set_param fail_loc=0x40b
5446         remount_client $MOUNT
5447         lctl set_param fail_loc=0
5448         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5449                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5450                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5451                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5452         done
5453         remount_client $MOUNT
5454 }
5455 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5456
5457 test_77j() { # bug 13805
5458         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5459         $GSS && skip "could not run with gss" && return
5460         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5461         lctl set_param fail_loc=0x40c
5462         remount_client $MOUNT
5463         lctl set_param fail_loc=0
5464         sleep 2 # wait async osc connect to finish
5465         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5466                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5467                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5468                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5469         done
5470         remount_client $MOUNT
5471 }
5472 run_test 77j "client only supporting ADLER32"
5473
5474 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5475 rm -f $F77_TMP
5476 unset F77_TMP
5477
5478 test_78() { # bug 10901
5479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5480         remote_ost || { skip_env "local OST" && return; }
5481
5482         NSEQ=5
5483         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5484         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5485         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5486         echo "MemTotal: $MEMTOTAL"
5487 # reserve 256MB of memory for the kernel and other running processes,
5488 # and then take 1/2 of the remaining memory for the read/write buffers.
5489     if [ $MEMTOTAL -gt 512 ] ;then
5490         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5491     else
5492         # for those poor memory-starved high-end clusters...
5493         MEMTOTAL=$((MEMTOTAL / 2))
5494     fi
5495         echo "Mem to use for directio: $MEMTOTAL"
5496         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5497         [ $F78SIZE -gt 512 ] && F78SIZE=512
5498         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5499         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5500         echo "Smallest OST: $SMALLESTOST"
5501         [ $SMALLESTOST -lt 10240 ] && \
5502                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5503
5504         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5505                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5506
5507         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5508         echo "File size: $F78SIZE"
5509         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5510         for i in `seq 1 $NSEQ`
5511         do
5512                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5513                 echo directIO rdwr round $i of $NSEQ
5514                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5515         done
5516
5517         rm -f $DIR/$tfile
5518 }
5519 run_test 78 "handle large O_DIRECT writes correctly ============"
5520
5521 test_79() { # bug 12743
5522         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5523         wait_delete_completed
5524
5525         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5526         BKFREE=$(calc_osc_kbytes kbytesfree)
5527         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5528
5529         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5530         DFTOTAL=`echo $STRING | cut -d, -f1`
5531         DFUSED=`echo $STRING  | cut -d, -f2`
5532         DFAVAIL=`echo $STRING | cut -d, -f3`
5533         DFFREE=$(($DFTOTAL - $DFUSED))
5534
5535         ALLOWANCE=$((64 * $OSTCOUNT))
5536
5537         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5538            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5539                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5540         fi
5541         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5542            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5543                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5544         fi
5545         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5546            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5547                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5548         fi
5549 }
5550 run_test 79 "df report consistency check ======================="
5551
5552 test_80() { # bug 10718
5553         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5554         # relax strong synchronous semantics for slow backends like ZFS
5555         local soc="obdfilter.*.sync_on_lock_cancel"
5556         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5557         local hosts=
5558         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5559                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5560                           facet_active_host $host; done | sort -u)
5561                 do_nodes $hosts lctl set_param $soc=never
5562         fi
5563
5564         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5565         sync; sleep 1; sync
5566         local BEFORE=`date +%s`
5567         cancel_lru_locks osc
5568         local AFTER=`date +%s`
5569         local DIFF=$((AFTER-BEFORE))
5570         if [ $DIFF -gt 1 ] ; then
5571                 error "elapsed for 1M@1T = $DIFF"
5572         fi
5573
5574         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5575
5576         rm -f $DIR/$tfile
5577 }
5578 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5579
5580 test_81a() { # LU-456
5581         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5582         remote_ost_nodsh && skip "remote OST with nodsh" && return
5583         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5584         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5585         do_facet ost1 lctl set_param fail_loc=0x80000228
5586
5587         # write should trigger a retry and success
5588         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5589         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5590         RC=$?
5591         if [ $RC -ne 0 ] ; then
5592                 error "write should success, but failed for $RC"
5593         fi
5594 }
5595 run_test 81a "OST should retry write when get -ENOSPC ==============="
5596
5597 test_81b() { # LU-456
5598         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5599         remote_ost_nodsh && skip "remote OST with nodsh" && return
5600         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5601         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5602         do_facet ost1 lctl set_param fail_loc=0x228
5603
5604         # write should retry several times and return -ENOSPC finally
5605         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5606         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5607         RC=$?
5608         ENOSPC=28
5609         if [ $RC -ne $ENOSPC ] ; then
5610                 error "dd should fail for -ENOSPC, but succeed."
5611         fi
5612 }
5613 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5614
5615 test_82() { # LU-1031
5616         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5617         local gid1=14091995
5618         local gid2=16022000
5619
5620         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5621         local MULTIPID1=$!
5622         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5623         local MULTIPID2=$!
5624         kill -USR1 $MULTIPID2
5625         sleep 2
5626         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5627                 error "First grouplock does not block second one"
5628         else
5629                 echo "Second grouplock blocks first one"
5630         fi
5631         kill -USR1 $MULTIPID1
5632         wait $MULTIPID1
5633         wait $MULTIPID2
5634 }
5635 run_test 82 "Basic grouplock test ==============================="
5636
5637 test_99a() {
5638         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5639                 return
5640         test_mkdir -p $DIR/d99cvsroot
5641         chown $RUNAS_ID $DIR/d99cvsroot
5642         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5643         cd $TMP
5644
5645         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5646         cd $oldPWD
5647 }
5648 run_test 99a "cvs init ========================================="
5649
5650 test_99b() {
5651         [ -z "$(which cvs 2>/dev/null)" ] &&
5652                 skip_env "could not find cvs" && return
5653         [ ! -d $DIR/d99cvsroot ] && test_99a
5654         cd /etc/init.d
5655         # some versions of cvs import exit(1) when asked to import links or
5656         # files they can't read.  ignore those files.
5657         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5658                         ! -perm +4 -printf '-I %f\n')
5659         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5660                 d99reposname vtag rtag
5661 }
5662 run_test 99b "cvs import ======================================="
5663
5664 test_99c() {
5665         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5666         [ ! -d $DIR/d99cvsroot ] && test_99b
5667         cd $DIR
5668         test_mkdir -p $DIR/d99reposname
5669         chown $RUNAS_ID $DIR/d99reposname
5670         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5671 }
5672 run_test 99c "cvs checkout ====================================="
5673
5674 test_99d() {
5675         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5676         [ ! -d $DIR/d99cvsroot ] && test_99c
5677         cd $DIR/d99reposname
5678         $RUNAS touch foo99
5679         $RUNAS cvs add -m 'addmsg' foo99
5680 }
5681 run_test 99d "cvs add =========================================="
5682
5683 test_99e() {
5684         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5685         [ ! -d $DIR/d99cvsroot ] && test_99c
5686         cd $DIR/d99reposname
5687         $RUNAS cvs update
5688 }
5689 run_test 99e "cvs update ======================================="
5690
5691 test_99f() {
5692         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5693         [ ! -d $DIR/d99cvsroot ] && test_99d
5694         cd $DIR/d99reposname
5695         $RUNAS cvs commit -m 'nomsg' foo99
5696     rm -fr $DIR/d99cvsroot
5697 }
5698 run_test 99f "cvs commit ======================================="
5699
5700 test_100() {
5701         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5702         [ "$NETTYPE" = tcp ] || \
5703                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5704                         return ; }
5705
5706         remote_ost_nodsh && skip "remote OST with nodsh" && return
5707         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5708         remote_servers || \
5709                 { skip "useless for local single node setup" && return; }
5710
5711         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5712                 [ "$PROT" != "tcp" ] && continue
5713                 RPORT=$(echo $REMOTE | cut -d: -f2)
5714                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5715
5716                 rc=0
5717                 LPORT=`echo $LOCAL | cut -d: -f2`
5718                 if [ $LPORT -ge 1024 ]; then
5719                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5720                         netstat -tna
5721                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5722                 fi
5723         done
5724         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5725 }
5726 run_test 100 "check local port using privileged port ==========="
5727
5728 function get_named_value()
5729 {
5730     local tag
5731
5732     tag=$1
5733     while read ;do
5734         line=$REPLY
5735         case $line in
5736         $tag*)
5737             echo $line | sed "s/^$tag[ ]*//"
5738             break
5739             ;;
5740         esac
5741     done
5742 }
5743
5744 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5745                    awk '/^max_cached_mb/ { print $2 }')
5746
5747 cleanup_101a() {
5748         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5749         trap 0
5750 }
5751
5752 test_101a() {
5753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5754         local s
5755         local discard
5756         local nreads=10000
5757         local cache_limit=32
5758
5759         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5760         trap cleanup_101a EXIT
5761         $LCTL set_param -n llite.*.read_ahead_stats 0
5762         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5763
5764         #
5765         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5766         #
5767         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5768         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5769
5770         discard=0
5771         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5772                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5773                         discard=$(($discard + $s))
5774         done
5775         cleanup_101a
5776
5777         if [ $(($discard * 10)) -gt $nreads ] ;then
5778                 $LCTL get_param osc.*-osc*.rpc_stats
5779                 $LCTL get_param llite.*.read_ahead_stats
5780                 error "too many ($discard) discarded pages"
5781         fi
5782         rm -f $DIR/$tfile || true
5783 }
5784 run_test 101a "check read-ahead for random reads ================"
5785
5786 setup_test101bc() {
5787         test_mkdir -p $DIR/$tdir
5788         STRIPE_SIZE=1048576
5789         STRIPE_COUNT=$OSTCOUNT
5790         STRIPE_OFFSET=0
5791
5792         local list=$(comma_list $(osts_nodes))
5793         set_osd_param $list '' read_cache_enable 0
5794         set_osd_param $list '' writethrough_cache_enable 0
5795
5796         trap cleanup_test101bc EXIT
5797         # prepare the read-ahead file
5798         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5799
5800         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5801 }
5802
5803 cleanup_test101bc() {
5804         trap 0
5805         rm -rf $DIR/$tdir
5806         rm -f $DIR/$tfile
5807
5808         local list=$(comma_list $(osts_nodes))
5809         set_osd_param $list '' read_cache_enable 1
5810         set_osd_param $list '' writethrough_cache_enable 1
5811 }
5812
5813 calc_total() {
5814         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5815 }
5816
5817 ra_check_101() {
5818         local READ_SIZE=$1
5819         local STRIPE_SIZE=1048576
5820         local RA_INC=1048576
5821         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5822         local FILE_LENGTH=$((64*100))
5823         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5824                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5825         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5826                         get_named_value 'read but discarded' | \
5827                         cut -d" " -f1 | calc_total`
5828         if [ $DISCARD -gt $discard_limit ]; then
5829                 $LCTL get_param llite.*.read_ahead_stats
5830                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5831         else
5832                 echo "Read-ahead success for size ${READ_SIZE}"
5833         fi
5834 }
5835
5836 test_101b() {
5837         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5838         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5839         local STRIPE_SIZE=1048576
5840         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5841         local FILE_LENGTH=$((STRIPE_SIZE*100))
5842         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5843         # prepare the read-ahead file
5844         setup_test101bc
5845         cancel_lru_locks osc
5846         for BIDX in 2 4 8 16 32 64 128 256
5847         do
5848                 local BSIZE=$((BIDX*4096))
5849                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5850                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5851                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5852                 $LCTL set_param -n llite.*.read_ahead_stats 0
5853                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5854                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5855                 cancel_lru_locks osc
5856                 ra_check_101 $BSIZE
5857         done
5858         cleanup_test101bc
5859         true
5860 }
5861 run_test 101b "check stride-io mode read-ahead ================="
5862
5863 test_101c() {
5864         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5865         local STRIPE_SIZE=1048576
5866         local FILE_LENGTH=$((STRIPE_SIZE*100))
5867         local nreads=10000
5868         local osc_rpc_stats
5869
5870         setup_test101bc
5871
5872         cancel_lru_locks osc
5873         $LCTL set_param osc.*.rpc_stats 0
5874         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5875         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5876                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5877                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5878                 local size
5879
5880                 if [ $lines -le 20 ]; then
5881                         continue
5882                 fi
5883                 for size in 1 2 4 8; do
5884                         local rpc=$(echo "$stats" |
5885                                     awk '($1 == "'$size':") {print $2; exit; }')
5886                         [ $rpc != 0 ] &&
5887                                 error "Small $((size*4))k read IO $rpc !"
5888                 done
5889                 echo "$osc_rpc_stats check passed!"
5890         done
5891         cleanup_test101bc
5892         true
5893 }
5894 run_test 101c "check stripe_size aligned read-ahead ================="
5895
5896 set_read_ahead() {
5897    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5898    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5899 }
5900
5901 test_101d() {
5902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5903         local file=$DIR/$tfile
5904         local size=${FILESIZE_101c:-500}
5905         local ra_MB=${READAHEAD_MB:-40}
5906
5907         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5908         [ $space -gt $((size * 1024)) ] ||
5909                 { skip "Need free space ${size}M, have ${space}K" && return; }
5910
5911         echo "Creating test file $file of size ${size}M with ${space}K free space"
5912         $SETSTRIPE -c -1 $file || error "setstripe failed"
5913         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5914         echo Cancel LRU locks on lustre client to flush the client cache
5915         cancel_lru_locks osc
5916
5917     echo Disable read-ahead
5918     local old_READAHEAD=$(set_read_ahead 0)
5919
5920     echo Reading the test file $file with read-ahead disabled
5921     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5922
5923     echo Cancel LRU locks on lustre client to flush the client cache
5924     cancel_lru_locks osc
5925     echo Enable read-ahead with ${ra_MB}MB
5926     set_read_ahead $ra_MB
5927
5928     echo Reading the test file $file with read-ahead enabled
5929     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5930
5931     echo read-ahead disabled time read $time_ra_OFF
5932     echo read-ahead enabled  time read $time_ra_ON
5933
5934         set_read_ahead $old_READAHEAD
5935         rm -f $file
5936         wait_delete_completed
5937
5938     [ $time_ra_ON -lt $time_ra_OFF ] ||
5939         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5940                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5941 }
5942 run_test 101d "file read with and without read-ahead enabled  ================="
5943
5944 test_101e() {
5945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5946     local file=$DIR/$tfile
5947     local size=500  #KB
5948     local count=100
5949     local blksize=1024
5950
5951     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5952     local need_space=$((count * size))
5953     [ $space -gt $need_space ] ||
5954         { skip_env "Need free space $need_space, have $space" && return; }
5955
5956     echo Creating $count ${size}K test files
5957     for ((i = 0; i < $count; i++)); do
5958         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5959     done
5960
5961     echo Cancel LRU locks on lustre client to flush the client cache
5962     cancel_lru_locks osc
5963
5964     echo Reset readahead stats
5965     $LCTL set_param -n llite.*.read_ahead_stats 0
5966
5967     for ((i = 0; i < $count; i++)); do
5968         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5969     done
5970
5971     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5972           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5973
5974     for ((i = 0; i < $count; i++)); do
5975         rm -rf ${file}_${i} 2>/dev/null
5976     done
5977
5978     #10000 means 20% reads are missing in readahead
5979     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5980 }
5981 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5982
5983 cleanup_test101f() {
5984     trap 0
5985     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5986     rm -rf $DIR/$tfile 2>/dev/null
5987 }
5988
5989 test_101f() {
5990         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5991     local file=$DIR/$tfile
5992     local nreads=1000
5993
5994     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5995     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5996     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
5997     trap cleanup_test101f EXIT
5998
5999     echo Cancel LRU locks on lustre client to flush the client cache
6000     cancel_lru_locks osc
6001
6002     echo Reset readahead stats
6003     $LCTL set_param -n llite.*.read_ahead_stats 0
6004     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6005     # readahead should read in 2M file on second read, so only miss
6006     # 2 pages.
6007     echo Random 4K reads on 2M file for 1000 times
6008     $READS -f $file -s 2097152 -b 4096 -n $nreads
6009
6010     echo checking missing pages
6011     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6012           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6013
6014     [ $miss -lt 3 ] || error "misses too much pages!"
6015     cleanup_test101f
6016 }
6017 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6018
6019 setup_test102() {
6020         test_mkdir -p $DIR/$tdir
6021         chown $RUNAS_ID $DIR/$tdir
6022         STRIPE_SIZE=65536
6023         STRIPE_OFFSET=1
6024         STRIPE_COUNT=$OSTCOUNT
6025         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6026
6027         trap cleanup_test102 EXIT
6028         cd $DIR
6029         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6030         cd $DIR/$tdir
6031         for num in 1 2 3 4; do
6032                 for count in $(seq 1 $STRIPE_COUNT); do
6033                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6034                                 local size=`expr $STRIPE_SIZE \* $num`
6035                                 local file=file"$num-$idx-$count"
6036                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6037                         done
6038                 done
6039         done
6040
6041         cd $DIR
6042         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6043 }
6044
6045 cleanup_test102() {
6046         trap 0
6047         rm -f $TMP/f102.tar
6048         rm -rf $DIR/d0.sanity/d102
6049 }
6050
6051 test_102a() {
6052         local testfile=$DIR/xattr_testfile
6053
6054         touch $testfile
6055
6056         [ "$UID" != 0 ] && skip_env "must run as root" && return
6057         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6058                 skip_env "must have user_xattr" && return
6059
6060         [ -z "$(which setfattr 2>/dev/null)" ] &&
6061                 skip_env "could not find setfattr" && return
6062
6063         echo "set/get xattr..."
6064         setfattr -n trusted.name1 -v value1 $testfile ||
6065                 error "setfattr -n trusted.name1=value1 $testfile failed"
6066         getfattr -n trusted.name1 $testfile 2> /dev/null |
6067           grep "trusted.name1=.value1" ||
6068                 error "$testfile missing trusted.name1=value1"
6069
6070         setfattr -n user.author1 -v author1 $testfile ||
6071                 error "setfattr -n user.author1=author1 $testfile failed"
6072         getfattr -n user.author1 $testfile 2> /dev/null |
6073           grep "user.author1=.author1" ||
6074                 error "$testfile missing trusted.author1=author1"
6075
6076         echo "listxattr..."
6077         setfattr -n trusted.name2 -v value2 $testfile ||
6078                 error "$testfile unable to set trusted.name2"
6079         setfattr -n trusted.name3 -v value3 $testfile ||
6080                 error "$testfile unable to set trusted.name3"
6081         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6082             grep "trusted.name" | wc -l) -eq 3 ] ||
6083                 error "$testfile missing 3 trusted.name xattrs"
6084
6085         setfattr -n user.author2 -v author2 $testfile ||
6086                 error "$testfile unable to set user.author2"
6087         setfattr -n user.author3 -v author3 $testfile ||
6088                 error "$testfile unable to set user.author3"
6089         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6090             grep "user.author" | wc -l) -eq 3 ] ||
6091                 error "$testfile missing 3 user.author xattrs"
6092
6093         echo "remove xattr..."
6094         setfattr -x trusted.name1 $testfile ||
6095                 error "$testfile error deleting trusted.name1"
6096         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6097                 error "$testfile did not delete trusted.name1 xattr"
6098
6099         setfattr -x user.author1 $testfile ||
6100                 error "$testfile error deleting user.author1"
6101         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6102                 error "$testfile did not delete trusted.name1 xattr"
6103
6104         # b10667: setting lustre special xattr be silently discarded
6105         echo "set lustre special xattr ..."
6106         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6107                 error "$testfile allowed setting trusted.lov"
6108 }
6109 run_test 102a "user xattr test =================================="
6110
6111 test_102b() {
6112         # b10930: get/set/list trusted.lov xattr
6113         echo "get/set/list trusted.lov xattr ..."
6114         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6115         local testfile=$DIR/$tfile
6116         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6117                 error "setstripe failed"
6118         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6119                 error "getstripe failed"
6120         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6121         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6122
6123         local testfile2=${testfile}2
6124         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6125                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6126
6127         $MCREATE $testfile2
6128         setfattr -n trusted.lov -v $value $testfile2
6129         local stripe_size=$($GETSTRIPE -S $testfile2)
6130         local stripe_count=$($GETSTRIPE -c $testfile2)
6131         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6132         [ $stripe_count -eq $STRIPECOUNT ] ||
6133                 error "stripe count $stripe_count != $STRIPECOUNT"
6134         rm -f $DIR/$tfile
6135 }
6136 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6137
6138 test_102c() {
6139         # b10930: get/set/list lustre.lov xattr
6140         echo "get/set/list lustre.lov xattr ..."
6141         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6142         test_mkdir -p $DIR/$tdir
6143         chown $RUNAS_ID $DIR/$tdir
6144         local testfile=$DIR/$tdir/$tfile
6145         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6146                 error "setstripe failed"
6147         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6148                 error "getstripe failed"
6149         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6150         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6151
6152         local testfile2=${testfile}2
6153         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6154                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6155
6156         $RUNAS $MCREATE $testfile2
6157         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6158         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6159         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6160         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6161         [ $stripe_count -eq $STRIPECOUNT ] ||
6162                 error "stripe count $stripe_count != $STRIPECOUNT"
6163 }
6164 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6165
6166 compare_stripe_info1() {
6167         local stripe_index_all_zero=true
6168
6169         for num in 1 2 3 4; do
6170                 for count in $(seq 1 $STRIPE_COUNT); do
6171                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6172                                 local size=$((STRIPE_SIZE * num))
6173                                 local file=file"$num-$offset-$count"
6174                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6175                                 [ $stripe_size -ne $size ] &&
6176                                     error "$file: size $stripe_size != $size"
6177                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6178                                 # allow fewer stripes to be created, ORI-601
6179                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6180                                     error "$file: count $stripe_count != $count"
6181                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6182                                 [ $stripe_index -ne 0 ] &&
6183                                         stripe_index_all_zero=false
6184                         done
6185                 done
6186         done
6187         $stripe_index_all_zero &&
6188                 error "all files are being extracted starting from OST index 0"
6189         return 0
6190 }
6191
6192 find_lustre_tar() {
6193         [ -n "$(which tar 2>/dev/null)" ] &&
6194                 strings $(which tar) | grep -q "lustre" && echo tar
6195 }
6196
6197 test_102d() {
6198         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6199         # b10930: tar test for trusted.lov xattr
6200         TAR=$(find_lustre_tar)
6201         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6202         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6203         setup_test102
6204         test_mkdir -p $DIR/d102d
6205         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6206         cd $DIR/d102d/$tdir
6207         compare_stripe_info1
6208 }
6209 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6210
6211 test_102f() {
6212         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6213         # b10930: tar test for trusted.lov xattr
6214         TAR=$(find_lustre_tar)
6215         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6216         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6217         setup_test102
6218         test_mkdir -p $DIR/d102f
6219         cd $DIR
6220         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6221         cd $DIR/d102f/$tdir
6222         compare_stripe_info1
6223 }
6224 run_test 102f "tar copy files, not keep osts ==========="
6225
6226 grow_xattr() {
6227         local xsize=${1:-1024}  # in bytes
6228         local file=$DIR/$tfile
6229
6230         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6231                 skip "must have user_xattr" && return 0
6232         [ -z "$(which setfattr 2>/dev/null)" ] &&
6233                 skip_env "could not find setfattr" && return 0
6234         [ -z "$(which getfattr 2>/dev/null)" ] &&
6235                 skip_env "could not find getfattr" && return 0
6236
6237         touch $file
6238
6239         local value="$(generate_string $xsize)"
6240
6241         local xbig=trusted.big
6242         log "save $xbig on $file"
6243         setfattr -n $xbig -v $value $file ||
6244                 error "saving $xbig on $file failed"
6245
6246         local orig=$(get_xattr_value $xbig $file)
6247         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6248
6249         local xsml=trusted.sml
6250         log "save $xsml on $file"
6251         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6252
6253         local new=$(get_xattr_value $xbig $file)
6254         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6255
6256         log "grow $xsml on $file"
6257         setfattr -n $xsml -v "$value" $file ||
6258                 error "growing $xsml on $file failed"
6259
6260         new=$(get_xattr_value $xbig $file)
6261         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6262         log "$xbig still valid after growing $xsml"
6263
6264         rm -f $file
6265 }
6266
6267 test_102h() { # bug 15777
6268         grow_xattr 1024
6269 }
6270 run_test 102h "grow xattr from inside inode to external block"
6271
6272 test_102ha() {
6273         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6274         grow_xattr $(max_xattr_size)
6275 }
6276 run_test 102ha "grow xattr from inside inode to external inode"
6277
6278 test_102i() { # bug 17038
6279         touch $DIR/$tfile
6280         ln -s $DIR/$tfile $DIR/${tfile}link
6281         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6282         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"
6283         rm -f $DIR/$tfile $DIR/${tfile}link
6284 }
6285 run_test 102i "lgetxattr test on symbolic link ============"
6286
6287 test_102j() {
6288         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6289         TAR=$(find_lustre_tar)
6290         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6291         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6292         setup_test102 "$RUNAS"
6293         test_mkdir -p $DIR/d102j
6294         chown $RUNAS_ID $DIR/d102j
6295         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6296         cd $DIR/d102j/$tdir
6297         compare_stripe_info1 "$RUNAS"
6298 }
6299 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6300
6301 test_102k() {
6302         touch $DIR/$tfile
6303         # b22187 just check that does not crash for regular file.
6304         setfattr -n trusted.lov $DIR/$tfile
6305         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6306         local test_kdir=$DIR/d102k
6307         test_mkdir $test_kdir
6308         local default_size=`$GETSTRIPE -S $test_kdir`
6309         local default_count=`$GETSTRIPE -c $test_kdir`
6310         local default_offset=`$GETSTRIPE -i $test_kdir`
6311         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6312                 error 'dir setstripe failed'
6313         setfattr -n trusted.lov $test_kdir
6314         local stripe_size=`$GETSTRIPE -S $test_kdir`
6315         local stripe_count=`$GETSTRIPE -c $test_kdir`
6316         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6317         [ $stripe_size -eq $default_size ] ||
6318                 error "stripe size $stripe_size != $default_size"
6319         [ $stripe_count -eq $default_count ] ||
6320                 error "stripe count $stripe_count != $default_count"
6321         [ $stripe_offset -eq $default_offset ] ||
6322                 error "stripe offset $stripe_offset != $default_offset"
6323         rm -rf $DIR/$tfile $test_kdir
6324 }
6325 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6326
6327 test_102l() {
6328         # LU-532 trusted. xattr is invisible to non-root
6329         local testfile=$DIR/$tfile
6330
6331         touch $testfile
6332
6333         echo "listxattr as user..."
6334         chown $RUNAS_ID $testfile
6335         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6336             grep -q "trusted" &&
6337                 error "$testfile trusted xattrs are user visible"
6338
6339         return 0;
6340 }
6341 run_test 102l "listxattr size test =================================="
6342
6343 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6344         local path=$DIR/$tfile
6345         touch $path
6346
6347         listxattr_size_check $path || error "listattr_size_check $path failed"
6348 }
6349 run_test 102m "Ensure listxattr fails on small bufffer ========"
6350
6351 cleanup_test102
6352
6353 run_acl_subtest()
6354 {
6355     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6356     return $?
6357 }
6358
6359 test_103 () {
6360         [ "$UID" != 0 ] && skip_env "must run as root" && return
6361         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6362                 skip "must have acl enabled" && return
6363         [ -z "$(which setfacl 2>/dev/null)" ] &&
6364                 skip_env "could not find setfacl" && return
6365         $GSS && skip "could not run under gss" && return
6366
6367         declare -a identity_old
6368
6369         for num in $(seq $MDSCOUNT); do
6370                 switch_identity $num true || identity_old[$num]=$?
6371         done
6372
6373         SAVE_UMASK=$(umask)
6374         umask 0022
6375         cd $DIR
6376
6377         echo "performing cp ..."
6378         run_acl_subtest cp || error "run_acl_subtest cp failed"
6379         echo "performing getfacl-noacl..."
6380         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6381         echo "performing misc..."
6382         run_acl_subtest misc || error  "misc test failed"
6383         echo "performing permissions..."
6384         run_acl_subtest permissions || error "permissions failed"
6385         echo "performing setfacl..."
6386         run_acl_subtest setfacl || error  "setfacl test failed"
6387
6388         # inheritance test got from HP
6389         echo "performing inheritance..."
6390         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6391         chmod +x make-tree || error "chmod +x failed"
6392         run_acl_subtest inheritance || error "inheritance test failed"
6393         rm -f make-tree
6394
6395         echo "LU-974 ignore umask when acl is enabled..."
6396         run_acl_subtest 974 || error "LU-974 umask test failed"
6397         if [ $MDSCOUNT -ge 2 ]; then
6398                 run_acl_subtest 974_remote ||
6399                         error "LU-974 umask test failed under remote dir"
6400         fi
6401
6402         echo "LU-2561 newly created file is same size as directory..."
6403         run_acl_subtest 2561 || error "LU-2561 test failed"
6404
6405         cd $SAVE_PWD
6406         umask $SAVE_UMASK
6407
6408         for num in $(seq $MDSCOUNT); do
6409                 if [ "${identity_old[$num]}" = 1 ]; then
6410                         switch_identity $num false || identity_old[$num]=$?
6411                 fi
6412         done
6413 }
6414 run_test 103 "acl test ========================================="
6415
6416 test_104a() {
6417         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6418         touch $DIR/$tfile
6419         lfs df || error "lfs df failed"
6420         lfs df -ih || error "lfs df -ih failed"
6421         lfs df -h $DIR || error "lfs df -h $DIR failed"
6422         lfs df -i $DIR || error "lfs df -i $DIR failed"
6423         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6424         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6425
6426         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6427         lctl --device %$OSC deactivate
6428         lfs df || error "lfs df with deactivated OSC failed"
6429         lctl --device %$OSC activate
6430         # wait the osc back to normal
6431         wait_osc_import_state client ost FULL
6432
6433         lfs df || error "lfs df with reactivated OSC failed"
6434         rm -f $DIR/$tfile
6435 }
6436 run_test 104a "lfs df [-ih] [path] test ========================="
6437
6438 test_104b() {
6439         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6440         [ $RUNAS_ID -eq $UID ] &&
6441                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6442         chmod 666 /dev/obd
6443         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6444                         grep "Permission denied" | wc -l)))
6445         if [ $denied_cnt -ne 0 ]; then
6446                 error "lfs check servers test failed"
6447         fi
6448 }
6449 run_test 104b "$RUNAS lfs check servers test ===================="
6450
6451 test_105a() {
6452         # doesn't work on 2.4 kernels
6453         touch $DIR/$tfile
6454         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6455                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6456         else
6457                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6458         fi
6459         rm -f $DIR/$tfile
6460 }
6461 run_test 105a "flock when mounted without -o flock test ========"
6462
6463 test_105b() {
6464         touch $DIR/$tfile
6465         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6466                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6467         else
6468                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6469         fi
6470         rm -f $DIR/$tfile
6471 }
6472 run_test 105b "fcntl when mounted without -o flock test ========"
6473
6474 test_105c() {
6475         touch $DIR/$tfile
6476         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6477                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6478         else
6479                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6480         fi
6481         rm -f $DIR/$tfile
6482 }
6483 run_test 105c "lockf when mounted without -o flock test ========"
6484
6485 test_105d() { # bug 15924
6486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6487         test_mkdir -p $DIR/$tdir
6488         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6489                 skip "mount w/o flock enabled" && return
6490         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6491         $LCTL set_param fail_loc=0x80000315
6492         flocks_test 2 $DIR/$tdir
6493 }
6494 run_test 105d "flock race (should not freeze) ========"
6495
6496 test_105e() { # bug 22660 && 22040
6497         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6498                 skip "mount w/o flock enabled" && return
6499         touch $DIR/$tfile
6500         flocks_test 3 $DIR/$tfile
6501 }
6502 run_test 105e "Two conflicting flocks from same process ======="
6503
6504 test_106() { #bug 10921
6505         test_mkdir -p $DIR/$tdir
6506         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6507         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6508 }
6509 run_test 106 "attempt exec of dir followed by chown of that dir"
6510
6511 test_107() {
6512         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6513         CDIR=`pwd`
6514         cd $DIR
6515
6516         local file=core
6517         rm -f $file
6518
6519         local save_pattern=$(sysctl -n kernel.core_pattern)
6520         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6521         sysctl -w kernel.core_pattern=$file
6522         sysctl -w kernel.core_uses_pid=0
6523
6524         ulimit -c unlimited
6525         sleep 60 &
6526         SLEEPPID=$!
6527
6528         sleep 1
6529
6530         kill -s 11 $SLEEPPID
6531         wait $SLEEPPID
6532         if [ -e $file ]; then
6533                 size=`stat -c%s $file`
6534                 [ $size -eq 0 ] && error "Fail to create core file $file"
6535         else
6536                 error "Fail to create core file $file"
6537         fi
6538         rm -f $file
6539         sysctl -w kernel.core_pattern=$save_pattern
6540         sysctl -w kernel.core_uses_pid=$save_uses_pid
6541         cd $CDIR
6542 }
6543 run_test 107 "Coredump on SIG"
6544
6545 test_110() {
6546         test_mkdir -p $DIR/$tdir
6547         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6548                 error "mkdir with 255 char failed"
6549         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6550                 error "mkdir with 256 char should fail, but did not"
6551         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6552                 error "create with 255 char failed"
6553         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6554                 error "create with 256 char should fail, but did not"
6555
6556         ls -l $DIR/$tdir
6557         rm -rf $DIR/$tdir
6558 }
6559 run_test 110 "filename length checking"
6560
6561 test_115() {
6562         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6563         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6564             cut -c11-20)
6565         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6566             return
6567         echo "Starting with $OSTIO_pre threads"
6568
6569         NUMTEST=20000
6570         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6571         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6572         echo "$NUMTEST creates/unlinks"
6573         test_mkdir -p $DIR/$tdir
6574         createmany -o $DIR/$tdir/$tfile $NUMTEST
6575         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6576
6577         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6578             cut -c11-20)
6579
6580         # don't return an error
6581         [ $OSTIO_post == $OSTIO_pre ] && echo \
6582             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6583             echo "This may be fine, depending on what ran before this test" &&
6584             echo "and how fast this system is." && return
6585
6586         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6587 }
6588 run_test 115 "verify dynamic thread creation===================="
6589
6590 free_min_max () {
6591         wait_delete_completed
6592         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6593         echo OST kbytes available: ${AVAIL[@]}
6594         MAXI=0; MAXV=${AVAIL[0]}
6595         MINI=0; MINV=${AVAIL[0]}
6596         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6597             #echo OST $i: ${AVAIL[i]}kb
6598             if [ ${AVAIL[i]} -gt $MAXV ]; then
6599                 MAXV=${AVAIL[i]}; MAXI=$i
6600             fi
6601             if [ ${AVAIL[i]} -lt $MINV ]; then
6602                 MINV=${AVAIL[i]}; MINI=$i
6603             fi
6604         done
6605         echo Min free space: OST $MINI: $MINV
6606         echo Max free space: OST $MAXI: $MAXV
6607 }
6608
6609 test_116a() { # was previously test_116()
6610         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6611         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6612
6613         echo -n "Free space priority "
6614         lctl get_param -n lov.*-clilov-*.qos_prio_free
6615         declare -a AVAIL
6616         free_min_max
6617         [ $MINV -gt 960000 ] && skip "too much free space in OST$MINI, skip" &&\
6618                 return
6619
6620         # generate uneven OSTs
6621         test_mkdir -p $DIR/$tdir/OST${MINI}
6622         declare -i FILL
6623         FILL=$(($MINV / 4))
6624         echo "Filling 25% remaining space in OST${MINI} with ${FILL}Kb"
6625         $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI}||error "setstripe failed"
6626         i=0
6627         while [ $FILL -gt 0 ]; do
6628             i=$(($i + 1))
6629             dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i bs=2M count=1 2>/dev/null
6630             FILL=$(($FILL - 2048))
6631             echo -n .
6632         done
6633         FILL=$(($MINV / 4))
6634         sync
6635         sleep_maxage
6636
6637         free_min_max
6638         DIFF=$(($MAXV - $MINV))
6639         DIFF2=$(($DIFF * 100 / $MINV))
6640         echo -n "diff=${DIFF}=${DIFF2}% must be > 20% for QOS mode..."
6641         if [ $DIFF2 -gt 20 ]; then
6642             echo "ok"
6643         else
6644             echo "failed - QOS mode won't be used"
6645             error_ignore "QOS imbalance criteria not met"
6646             return
6647         fi
6648
6649         MINI1=$MINI; MINV1=$MINV
6650         MAXI1=$MAXI; MAXV1=$MAXV
6651
6652         # now fill using QOS
6653         echo writing a bunch of files to QOS-assigned OSTs
6654         $SETSTRIPE -c 1 $DIR/$tdir
6655         i=0
6656         while [ $FILL -gt 0 ]; do
6657             i=$(($i + 1))
6658             dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1024 count=200 2>/dev/null
6659             FILL=$(($FILL - 200))
6660             echo -n .
6661         done
6662         echo "wrote $i 200k files"
6663         sync
6664         sleep_maxage
6665
6666         echo "Note: free space may not be updated, so measurements might be off"
6667         free_min_max
6668         DIFF2=$(($MAXV - $MINV))
6669         echo "free space delta: orig $DIFF final $DIFF2"
6670         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6671         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6672         echo "Wrote $DIFF to smaller OST $MINI1"
6673         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6674         echo "Wrote $DIFF2 to larger OST $MAXI1"
6675         [ $DIFF -gt 0 ] && echo "Wrote $(($DIFF2 * 100 / $DIFF - 100))% more data to larger OST $MAXI1"
6676
6677         # Figure out which files were written where
6678         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6679                awk '/'$MINI1': / {print $2; exit}')
6680         echo $UUID
6681         MINC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6682         echo "$MINC files created on smaller OST $MINI1"
6683         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6684                awk '/'$MAXI1': / {print $2; exit}')
6685         echo $UUID
6686         MAXC=$($GETSTRIPE --obd $UUID $DIR/$tdir | wc -l)
6687         echo "$MAXC files created on larger OST $MAXI1"
6688         [ $MINC -gt 0 ] && echo "Wrote $(($MAXC * 100 / $MINC - 100))% more files to larger OST $MAXI1"
6689         [ $MAXC -gt $MINC ] || error_ignore "stripe QOS didn't balance free space"
6690
6691         rm -rf $DIR/$tdir
6692 }
6693 run_test 116a "stripe QOS: free space balance ==================="
6694
6695 test_116b() { # LU-2093
6696         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6697 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6698         local old_rr
6699         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6700         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6701         mkdir -p $DIR/$tdir
6702         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6703         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6704         do_facet $SINGLEMDS lctl set_param fail_loc=0
6705         rm -rf $DIR/$tdir
6706         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6707 }
6708 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6709
6710 test_117() # bug 10891
6711 {
6712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6713         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6714         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6715         lctl set_param fail_loc=0x21e
6716         > $DIR/$tfile || error "truncate failed"
6717         lctl set_param fail_loc=0
6718         echo "Truncate succeeded."
6719         rm -f $DIR/$tfile
6720 }
6721 run_test 117 "verify fsfilt_extend =========="
6722
6723 NO_SLOW_RESENDCOUNT=4
6724 export OLD_RESENDCOUNT=""
6725 set_resend_count () {
6726         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6727         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6728         lctl set_param -n $PROC_RESENDCOUNT $1
6729         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6730 }
6731
6732 # for reduce test_118* time (b=14842)
6733 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6734
6735 # Reset async IO behavior after error case
6736 reset_async() {
6737         FILE=$DIR/reset_async
6738
6739         # Ensure all OSCs are cleared
6740         $SETSTRIPE -c -1 $FILE
6741         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6742         sync
6743         rm $FILE
6744 }
6745
6746 test_118a() #bug 11710
6747 {
6748         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6749         reset_async
6750
6751         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6752         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6753         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6754
6755         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6756                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6757                 return 1;
6758         fi
6759         rm -f $DIR/$tfile
6760 }
6761 run_test 118a "verify O_SYNC works =========="
6762
6763 test_118b()
6764 {
6765         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6766         remote_ost_nodsh && skip "remote OST with nodsh" && return
6767
6768         reset_async
6769
6770         #define OBD_FAIL_OST_ENOENT 0x217
6771         set_nodes_failloc "$(osts_nodes)" 0x217
6772         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6773         RC=$?
6774         set_nodes_failloc "$(osts_nodes)" 0
6775         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6776         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6777                     grep -c writeback)
6778
6779         if [[ $RC -eq 0 ]]; then
6780                 error "Must return error due to dropped pages, rc=$RC"
6781                 return 1;
6782         fi
6783
6784         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6785                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6786                 return 1;
6787         fi
6788
6789         echo "Dirty pages not leaked on ENOENT"
6790
6791         # Due to the above error the OSC will issue all RPCs syncronously
6792         # until a subsequent RPC completes successfully without error.
6793         $MULTIOP $DIR/$tfile Ow4096yc
6794         rm -f $DIR/$tfile
6795
6796         return 0
6797 }
6798 run_test 118b "Reclaim dirty pages on fatal error =========="
6799
6800 test_118c()
6801 {
6802         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6803
6804         # for 118c, restore the original resend count, LU-1940
6805         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6806                                 set_resend_count $OLD_RESENDCOUNT
6807         remote_ost_nodsh && skip "remote OST with nodsh" && return
6808
6809         reset_async
6810
6811         #define OBD_FAIL_OST_EROFS               0x216
6812         set_nodes_failloc "$(osts_nodes)" 0x216
6813
6814         # multiop should block due to fsync until pages are written
6815         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6816         MULTIPID=$!
6817         sleep 1
6818
6819         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6820                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6821         fi
6822
6823         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6824                     grep -c writeback)
6825         if [[ $WRITEBACK -eq 0 ]]; then
6826                 error "No page in writeback, writeback=$WRITEBACK"
6827         fi
6828
6829         set_nodes_failloc "$(osts_nodes)" 0
6830         wait $MULTIPID
6831         RC=$?
6832         if [[ $RC -ne 0 ]]; then
6833                 error "Multiop fsync failed, rc=$RC"
6834         fi
6835
6836         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6837         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6838                     grep -c writeback)
6839         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6840                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6841         fi
6842
6843         rm -f $DIR/$tfile
6844         echo "Dirty pages flushed via fsync on EROFS"
6845         return 0
6846 }
6847 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6848
6849 # continue to use small resend count to reduce test_118* time (b=14842)
6850 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6851
6852 test_118d()
6853 {
6854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6855         remote_ost_nodsh && skip "remote OST with nodsh" && return
6856
6857         reset_async
6858
6859         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6860         set_nodes_failloc "$(osts_nodes)" 0x214
6861         # multiop should block due to fsync until pages are written
6862         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6863         MULTIPID=$!
6864         sleep 1
6865
6866         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6867                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6868         fi
6869
6870         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6871                     grep -c writeback)
6872         if [[ $WRITEBACK -eq 0 ]]; then
6873                 error "No page in writeback, writeback=$WRITEBACK"
6874         fi
6875
6876         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6877         set_nodes_failloc "$(osts_nodes)" 0
6878
6879         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6880         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6881                     grep -c writeback)
6882         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6883                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6884         fi
6885
6886         rm -f $DIR/$tfile
6887         echo "Dirty pages gaurenteed flushed via fsync"
6888         return 0
6889 }
6890 run_test 118d "Fsync validation inject a delay of the bulk =========="
6891
6892 test_118f() {
6893         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6894         reset_async
6895
6896         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6897         lctl set_param fail_loc=0x8000040a
6898
6899         # Should simulate EINVAL error which is fatal
6900         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6901         RC=$?
6902         if [[ $RC -eq 0 ]]; then
6903                 error "Must return error due to dropped pages, rc=$RC"
6904         fi
6905
6906         lctl set_param fail_loc=0x0
6907
6908         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6909         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6910         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6911                     grep -c writeback)
6912         if [[ $LOCKED -ne 0 ]]; then
6913                 error "Locked pages remain in cache, locked=$LOCKED"
6914         fi
6915
6916         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6917                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6918         fi
6919
6920         rm -f $DIR/$tfile
6921         echo "No pages locked after fsync"
6922
6923         reset_async
6924         return 0
6925 }
6926 run_test 118f "Simulate unrecoverable OSC side error =========="
6927
6928 test_118g() {
6929         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6930         reset_async
6931
6932         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6933         lctl set_param fail_loc=0x406
6934
6935         # simulate local -ENOMEM
6936         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6937         RC=$?
6938
6939         lctl set_param fail_loc=0
6940         if [[ $RC -eq 0 ]]; then
6941                 error "Must return error due to dropped pages, rc=$RC"
6942         fi
6943
6944         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6945         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6946         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6947                         grep -c writeback)
6948         if [[ $LOCKED -ne 0 ]]; then
6949                 error "Locked pages remain in cache, locked=$LOCKED"
6950         fi
6951
6952         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6953                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6954         fi
6955
6956         rm -f $DIR/$tfile
6957         echo "No pages locked after fsync"
6958
6959         reset_async
6960         return 0
6961 }
6962 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6963
6964 test_118h() {
6965         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6966         remote_ost_nodsh && skip "remote OST with nodsh" && return
6967
6968         reset_async
6969
6970         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
6971         set_nodes_failloc "$(osts_nodes)" 0x20e
6972         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
6973         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6974         RC=$?
6975
6976         set_nodes_failloc "$(osts_nodes)" 0
6977         if [[ $RC -eq 0 ]]; then
6978                 error "Must return error due to dropped pages, rc=$RC"
6979         fi
6980
6981         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6982         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6983         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6984                     grep -c writeback)
6985         if [[ $LOCKED -ne 0 ]]; then
6986                 error "Locked pages remain in cache, locked=$LOCKED"
6987         fi
6988
6989         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6990                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6991         fi
6992
6993         rm -f $DIR/$tfile
6994         echo "No pages locked after fsync"
6995
6996         return 0
6997 }
6998 run_test 118h "Verify timeout in handling recoverables errors  =========="
6999
7000 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7001
7002 test_118i() {
7003         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7004         remote_ost_nodsh && skip "remote OST with nodsh" && return
7005
7006         reset_async
7007
7008         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7009         set_nodes_failloc "$(osts_nodes)" 0x20e
7010
7011         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7012         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7013         PID=$!
7014         sleep 5
7015         set_nodes_failloc "$(osts_nodes)" 0
7016
7017         wait $PID
7018         RC=$?
7019         if [[ $RC -ne 0 ]]; then
7020                 error "got error, but should be not, rc=$RC"
7021         fi
7022
7023         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7024         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7025         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7026         if [[ $LOCKED -ne 0 ]]; then
7027                 error "Locked pages remain in cache, locked=$LOCKED"
7028         fi
7029
7030         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7031                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7032         fi
7033
7034         rm -f $DIR/$tfile
7035         echo "No pages locked after fsync"
7036
7037         return 0
7038 }
7039 run_test 118i "Fix error before timeout in recoverable error  =========="
7040
7041 [ "$SLOW" = "no" ] && set_resend_count 4
7042
7043 test_118j() {
7044         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7045         remote_ost_nodsh && skip "remote OST with nodsh" && return
7046
7047         reset_async
7048
7049         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7050         set_nodes_failloc "$(osts_nodes)" 0x220
7051
7052         # return -EIO from OST
7053         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7054         RC=$?
7055         set_nodes_failloc "$(osts_nodes)" 0x0
7056         if [[ $RC -eq 0 ]]; then
7057                 error "Must return error due to dropped pages, rc=$RC"
7058         fi
7059
7060         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7061         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7062         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7063         if [[ $LOCKED -ne 0 ]]; then
7064                 error "Locked pages remain in cache, locked=$LOCKED"
7065         fi
7066
7067         # in recoverable error on OST we want resend and stay until it finished
7068         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7069                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7070         fi
7071
7072         rm -f $DIR/$tfile
7073         echo "No pages locked after fsync"
7074
7075         return 0
7076 }
7077 run_test 118j "Simulate unrecoverable OST side error =========="
7078
7079 test_118k()
7080 {
7081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7082         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7083
7084         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7085         set_nodes_failloc "$(osts_nodes)" 0x20e
7086         test_mkdir -p $DIR/$tdir
7087
7088         for ((i=0;i<10;i++)); do
7089                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7090                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7091                 SLEEPPID=$!
7092                 sleep 0.500s
7093                 kill $SLEEPPID
7094                 wait $SLEEPPID
7095         done
7096
7097         set_nodes_failloc "$(osts_nodes)" 0
7098         rm -rf $DIR/$tdir
7099 }
7100 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7101
7102 test_118l()
7103 {
7104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7105         # LU-646
7106         test_mkdir -p $DIR/$tdir
7107         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7108         rm -rf $DIR/$tdir
7109 }
7110 run_test 118l "fsync dir ========="
7111
7112 test_118m() # LU-3066
7113 {
7114         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7115         test_mkdir -p $DIR/$tdir
7116         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7117         rm -rf $DIR/$tdir
7118 }
7119 run_test 118m "fdatasync dir ========="
7120
7121 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7122
7123 test_119a() # bug 11737
7124 {
7125         BSIZE=$((512 * 1024))
7126         directio write $DIR/$tfile 0 1 $BSIZE
7127         # We ask to read two blocks, which is more than a file size.
7128         # directio will indicate an error when requested and actual
7129         # sizes aren't equeal (a normal situation in this case) and
7130         # print actual read amount.
7131         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7132         if [ "$NOB" != "$BSIZE" ]; then
7133                 error "read $NOB bytes instead of $BSIZE"
7134         fi
7135         rm -f $DIR/$tfile
7136 }
7137 run_test 119a "Short directIO read must return actual read amount"
7138
7139 test_119b() # bug 11737
7140 {
7141         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7142
7143         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7144         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7145         sync
7146         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7147                 error "direct read failed"
7148         rm -f $DIR/$tfile
7149 }
7150 run_test 119b "Sparse directIO read must return actual read amount"
7151
7152 test_119c() # bug 13099
7153 {
7154         BSIZE=1048576
7155         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7156         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7157         rm -f $DIR/$tfile
7158 }
7159 run_test 119c "Testing for direct read hitting hole"
7160
7161 test_119d() # bug 15950
7162 {
7163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7164         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7165         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7166         BSIZE=1048576
7167         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7168         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7169         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7170         lctl set_param fail_loc=0x40d
7171         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7172         pid_dio=$!
7173         sleep 1
7174         cat $DIR/$tfile > /dev/null &
7175         lctl set_param fail_loc=0
7176         pid_reads=$!
7177         wait $pid_dio
7178         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7179         sleep 2
7180         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7181         error "the read rpcs have not completed in 2s"
7182         rm -f $DIR/$tfile
7183         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7184 }
7185 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7186
7187 test_120a() {
7188         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7189         test_mkdir -p $DIR/$tdir
7190         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7191                skip "no early lock cancel on server" && return 0
7192
7193         lru_resize_disable mdc
7194         lru_resize_disable osc
7195         cancel_lru_locks mdc
7196         # asynchronous object destroy at MDT could cause bl ast to client
7197         cancel_lru_locks osc
7198
7199         stat $DIR/$tdir > /dev/null
7200         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7201         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7202         test_mkdir $DIR/$tdir/d1
7203         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7204         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7205         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7206         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7207         lru_resize_enable mdc
7208         lru_resize_enable osc
7209 }
7210 run_test 120a "Early Lock Cancel: mkdir test"
7211
7212 test_120b() {
7213         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7214         test_mkdir -p $DIR/$tdir
7215         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7216                skip "no early lock cancel on server" && return 0
7217         lru_resize_disable mdc
7218         lru_resize_disable osc
7219         cancel_lru_locks mdc
7220         stat $DIR/$tdir > /dev/null
7221         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7222         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7223         touch $DIR/$tdir/f1
7224         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7225         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7226         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7227         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7228         lru_resize_enable mdc
7229         lru_resize_enable osc
7230 }
7231 run_test 120b "Early Lock Cancel: create test"
7232
7233 test_120c() {
7234         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7235         test_mkdir -p $DIR/$tdir
7236         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7237                skip "no early lock cancel on server" && return 0
7238         lru_resize_disable mdc
7239         lru_resize_disable osc
7240         test_mkdir -p $DIR/$tdir/d1
7241         test_mkdir -p $DIR/$tdir/d2
7242         touch $DIR/$tdir/d1/f1
7243         cancel_lru_locks mdc
7244         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7245         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7246         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7247         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7248         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7249         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7250         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7251         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7252         lru_resize_enable mdc
7253         lru_resize_enable osc
7254 }
7255 run_test 120c "Early Lock Cancel: link test"
7256
7257 test_120d() {
7258         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7259         test_mkdir -p $DIR/$tdir
7260         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7261                skip "no early lock cancel on server" && return 0
7262         lru_resize_disable mdc
7263         lru_resize_disable osc
7264         touch $DIR/$tdir
7265         cancel_lru_locks mdc
7266         stat $DIR/$tdir > /dev/null
7267         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7268         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7269         chmod a+x $DIR/$tdir
7270         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7271         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7272         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7273         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7274         lru_resize_enable mdc
7275         lru_resize_enable osc
7276 }
7277 run_test 120d "Early Lock Cancel: setattr test"
7278
7279 test_120e() {
7280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7281         test_mkdir -p $DIR/$tdir
7282         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7283                skip "no early lock cancel on server" && return 0
7284         lru_resize_disable mdc
7285         lru_resize_disable osc
7286         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7287         cancel_lru_locks mdc
7288         cancel_lru_locks osc
7289         dd if=$DIR/$tdir/f1 of=/dev/null
7290         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7291         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7292               awk '/ldlm_cancel/ {print $2}'`
7293         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7294               awk '/ldlm_bl_callback/ {print $2}'`
7295         unlink $DIR/$tdir/f1
7296         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7297               awk '/ldlm_cancel/ {print $2}'`
7298         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7299               awk '/ldlm_bl_callback/ {print $2}'`
7300         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7301         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7302         lru_resize_enable mdc
7303         lru_resize_enable osc
7304 }
7305 run_test 120e "Early Lock Cancel: unlink test"
7306
7307 test_120f() {
7308         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7309         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7310                skip "no early lock cancel on server" && return 0
7311         test_mkdir -p $DIR/$tdir
7312         lru_resize_disable mdc
7313         lru_resize_disable osc
7314         test_mkdir -p $DIR/$tdir/d1
7315         test_mkdir -p $DIR/$tdir/d2
7316         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7317         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7318         cancel_lru_locks mdc
7319         cancel_lru_locks osc
7320         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7321         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7322         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7323         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7324               awk '/ldlm_cancel/ {print $2}'`
7325         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7326               awk '/ldlm_bl_callback/ {print $2}'`
7327         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7328         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7329               awk '/ldlm_cancel/ {print $2}'`
7330         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7331               awk '/ldlm_bl_callback/ {print $2}'`
7332         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7333         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7334         lru_resize_enable mdc
7335         lru_resize_enable osc
7336 }
7337 run_test 120f "Early Lock Cancel: rename test"
7338
7339 test_120g() {
7340         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7341         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7342                skip "no early lock cancel on server" && return 0
7343         lru_resize_disable mdc
7344         lru_resize_disable osc
7345         count=10000
7346         echo create $count files
7347         test_mkdir -p $DIR/$tdir
7348         cancel_lru_locks mdc
7349         cancel_lru_locks osc
7350         t0=`date +%s`
7351
7352         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7353               awk '/ldlm_cancel/ {print $2}'`
7354         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7355               awk '/ldlm_bl_callback/ {print $2}'`
7356         createmany -o $DIR/$tdir/f $count
7357         sync
7358         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7359               awk '/ldlm_cancel/ {print $2}'`
7360         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7361               awk '/ldlm_bl_callback/ {print $2}'`
7362         t1=`date +%s`
7363         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7364         echo rm $count files
7365         rm -r $DIR/$tdir
7366         sync
7367         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7368               awk '/ldlm_cancel/ {print $2}'`
7369         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7370               awk '/ldlm_bl_callback/ {print $2}'`
7371         t2=`date +%s`
7372         echo total: $count removes in $((t2-t1))
7373         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7374         sleep 2
7375         # wait for commitment of removal
7376         lru_resize_enable mdc
7377         lru_resize_enable osc
7378 }
7379 run_test 120g "Early Lock Cancel: performance test"
7380
7381 test_121() { #bug #10589
7382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7383         rm -rf $DIR/$tfile
7384         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7385 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7386         lctl set_param fail_loc=0x310
7387         cancel_lru_locks osc > /dev/null
7388         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7389         lctl set_param fail_loc=0
7390         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7391 }
7392 run_test 121 "read cancel race ========="
7393
7394 test_123a() { # was test 123, statahead(bug 11401)
7395         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7396         SLOWOK=0
7397         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7398             log "testing on UP system. Performance may be not as good as expected."
7399                         SLOWOK=1
7400         fi
7401
7402         rm -rf $DIR/$tdir
7403         test_mkdir -p $DIR/$tdir
7404         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7405         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7406         MULT=10
7407         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7408                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7409
7410                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7411                 lctl set_param -n llite.*.statahead_max 0
7412                 lctl get_param llite.*.statahead_max
7413                 cancel_lru_locks mdc
7414                 cancel_lru_locks osc
7415                 stime=`date +%s`
7416                 time ls -l $DIR/$tdir | wc -l
7417                 etime=`date +%s`
7418                 delta=$((etime - stime))
7419                 log "ls $i files without statahead: $delta sec"
7420                 lctl set_param llite.*.statahead_max=$max
7421
7422                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7423                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7424                 cancel_lru_locks mdc
7425                 cancel_lru_locks osc
7426                 stime=`date +%s`
7427                 time ls -l $DIR/$tdir | wc -l
7428                 etime=`date +%s`
7429                 delta_sa=$((etime - stime))
7430                 log "ls $i files with statahead: $delta_sa sec"
7431                 lctl get_param -n llite.*.statahead_stats
7432                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7433
7434                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7435                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7436
7437                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7438                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7439                     lctl set_param -n llite.*.statahead_max 0
7440                     lctl get_param llite.*.statahead_max
7441                     cancel_lru_locks mdc
7442                     cancel_lru_locks osc
7443                     stime=`date +%s`
7444                     time ls -l $DIR/$tdir | wc -l
7445                     etime=`date +%s`
7446                     delta=$((etime - stime))
7447                     log "ls $i files again without statahead: $delta sec"
7448                     lctl set_param llite.*.statahead_max=$max
7449                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7450                         if [  $SLOWOK -eq 0 ]; then
7451                                 error "ls $i files is slower with statahead!"
7452                         else
7453                                 log "ls $i files is slower with statahead!"
7454                         fi
7455                         break
7456                     fi
7457                 fi
7458
7459                 [ $delta -gt 20 ] && break
7460                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7461                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7462         done
7463         log "ls done"
7464
7465         stime=`date +%s`
7466         rm -r $DIR/$tdir
7467         sync
7468         etime=`date +%s`
7469         delta=$((etime - stime))
7470         log "rm -r $DIR/$tdir/: $delta seconds"
7471         log "rm done"
7472         lctl get_param -n llite.*.statahead_stats
7473 }
7474 run_test 123a "verify statahead work"
7475
7476 test_123b () { # statahead(bug 15027)
7477         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7478         test_mkdir -p $DIR/$tdir
7479         createmany -o $DIR/$tdir/$tfile-%d 1000
7480
7481         cancel_lru_locks mdc
7482         cancel_lru_locks osc
7483
7484 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7485         lctl set_param fail_loc=0x80000803
7486         ls -lR $DIR/$tdir > /dev/null
7487         log "ls done"
7488         lctl set_param fail_loc=0x0
7489         lctl get_param -n llite.*.statahead_stats
7490         rm -r $DIR/$tdir
7491         sync
7492
7493 }
7494 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7495
7496 test_124a() {
7497         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7498         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7499                skip "no lru resize on server" && return 0
7500         local NR=2000
7501         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7502
7503         log "create $NR files at $DIR/$tdir"
7504         createmany -o $DIR/$tdir/f $NR ||
7505                 error "failed to create $NR files in $DIR/$tdir"
7506
7507         cancel_lru_locks mdc
7508         ls -l $DIR/$tdir > /dev/null
7509
7510         local NSDIR=""
7511         local LRU_SIZE=0
7512         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7513                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7514                 LRU_SIZE=$(lctl get_param -n $PARAM)
7515                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7516                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7517                                                 log "NSDIR=$NSDIR"
7518                         log "NS=$(basename $NSDIR)"
7519                         break
7520                 fi
7521         done
7522
7523         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7524                 skip "Not enough cached locks created!"
7525                 return 0
7526         fi
7527         log "LRU=$LRU_SIZE"
7528
7529         local SLEEP=30
7530
7531         # We know that lru resize allows one client to hold $LIMIT locks
7532         # for 10h. After that locks begin to be killed by client.
7533         local MAX_HRS=10
7534         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7535                 log "LIMIT=$LIMIT"
7536
7537         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7538         # killing locks. Some time was spent for creating locks. This means
7539         # that up to the moment of sleep finish we must have killed some of
7540         # them (10-100 locks). This depends on how fast ther were created.
7541         # Many of them were touched in almost the same moment and thus will
7542         # be killed in groups.
7543         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7544
7545         # Use $LRU_SIZE_B here to take into account real number of locks
7546         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7547         local LRU_SIZE_B=$LRU_SIZE
7548         log "LVF=$LVF"
7549         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7550                 log "OLD_LVF=$OLD_LVF"
7551         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7552
7553         # Let's make sure that we really have some margin. Client checks
7554         # cached locks every 10 sec.
7555         SLEEP=$((SLEEP+20))
7556         log "Sleep ${SLEEP} sec"
7557         local SEC=0
7558         while ((SEC<$SLEEP)); do
7559                 echo -n "..."
7560                 sleep 5
7561                 SEC=$((SEC+5))
7562                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7563                 echo -n "$LRU_SIZE"
7564         done
7565         echo ""
7566         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7567         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7568
7569         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7570                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7571                 unlinkmany $DIR/$tdir/f $NR
7572                 return
7573         }
7574
7575         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7576         log "unlink $NR files at $DIR/$tdir"
7577         unlinkmany $DIR/$tdir/f $NR
7578 }
7579 run_test 124a "lru resize ======================================="
7580
7581 get_max_pool_limit()
7582 {
7583         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7584         local max=0
7585         for l in $limit; do
7586                 if test $l -gt $max; then
7587                         max=$l
7588                 fi
7589         done
7590         echo $max
7591 }
7592
7593 test_124b() {
7594         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7595         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7596                skip "no lru resize on server" && return 0
7597
7598         LIMIT=`get_max_pool_limit`
7599
7600         NR=$(($(default_lru_size)*20))
7601         if [ $NR -gt $LIMIT ]; then
7602                 log "Limit lock number by $LIMIT locks"
7603                 NR=$LIMIT
7604         fi
7605         lru_resize_disable mdc
7606         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7607                 error "failed to create $DIR/$tdir/disable_lru_resize"
7608
7609         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7610         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7611         cancel_lru_locks mdc
7612         stime=`date +%s`
7613         PID=""
7614         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7615         PID="$PID $!"
7616         sleep 2
7617         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7618         PID="$PID $!"
7619         sleep 2
7620         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7621         PID="$PID $!"
7622         wait $PID
7623         etime=`date +%s`
7624         nolruresize_delta=$((etime-stime))
7625         log "ls -la time: $nolruresize_delta seconds"
7626         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7627         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7628
7629         lru_resize_enable mdc
7630         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7631                 error "failed to create $DIR/$tdir/enable_lru_resize"
7632
7633         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7634         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7635         cancel_lru_locks mdc
7636         stime=`date +%s`
7637         PID=""
7638         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7639         PID="$PID $!"
7640         sleep 2
7641         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7642         PID="$PID $!"
7643         sleep 2
7644         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7645         PID="$PID $!"
7646         wait $PID
7647         etime=`date +%s`
7648         lruresize_delta=$((etime-stime))
7649         log "ls -la time: $lruresize_delta seconds"
7650         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7651
7652         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7653                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7654         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7655                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7656         else
7657                 log "lru resize performs the same with no lru resize"
7658         fi
7659         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7660 }
7661 run_test 124b "lru resize (performance test) ======================="
7662
7663 test_125() { # 13358
7664         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7665         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7666         test_mkdir -p $DIR/d125 || error "mkdir failed"
7667         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7668         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7669         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7670 }
7671 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7672
7673 test_126() { # bug 12829/13455
7674         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7675         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7676         $GSS && skip "must run as gss disabled" && return
7677
7678         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7679         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7680         rm -f $DIR/$tfile
7681         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7682 }
7683 run_test 126 "check that the fsgid provided by the client is taken into account"
7684
7685 test_127a() { # bug 15521
7686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7687         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7688         $LCTL set_param osc.*.stats=0
7689         FSIZE=$((2048 * 1024))
7690         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7691         cancel_lru_locks osc
7692         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7693
7694         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7695         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7696                 echo "got $COUNT $NAME"
7697                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7698                 eval $NAME=$COUNT || error "Wrong proc format"
7699
7700                 case $NAME in
7701                         read_bytes|write_bytes)
7702                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7703                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7704                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7705                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7706                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7707                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7708                                 error "sumsquare is too small: $SUMSQ"
7709                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7710                                 error "sumsquare is too big: $SUMSQ"
7711                         ;;
7712                         *) ;;
7713                 esac
7714         done < $DIR/${tfile}.tmp
7715
7716         #check that we actually got some stats
7717         [ "$read_bytes" ] || error "Missing read_bytes stats"
7718         [ "$write_bytes" ] || error "Missing write_bytes stats"
7719         [ "$read_bytes" != 0 ] || error "no read done"
7720         [ "$write_bytes" != 0 ] || error "no write done"
7721 }
7722 run_test 127a "verify the client stats are sane"
7723
7724 test_127b() { # bug LU-333
7725         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7726         $LCTL set_param llite.*.stats=0
7727         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7728         # perform 2 reads and writes so MAX is different from SUM.
7729         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7730         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7731         cancel_lru_locks osc
7732         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7733         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7734
7735         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7736         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7737                 echo "got $COUNT $NAME"
7738                 eval $NAME=$COUNT || error "Wrong proc format"
7739
7740         case $NAME in
7741                 read_bytes)
7742                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7743                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7744                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7745                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7746                         ;;
7747                 write_bytes)
7748                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7749                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7750                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7751                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7752                         ;;
7753                         *) ;;
7754                 esac
7755         done < $TMP/${tfile}.tmp
7756
7757         #check that we actually got some stats
7758         [ "$read_bytes" ] || error "Missing read_bytes stats"
7759         [ "$write_bytes" ] || error "Missing write_bytes stats"
7760         [ "$read_bytes" != 0 ] || error "no read done"
7761         [ "$write_bytes" != 0 ] || error "no write done"
7762 }
7763 run_test 127b "verify the llite client stats are sane"
7764
7765 test_128() { # bug 15212
7766         touch $DIR/$tfile
7767         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7768                 find $DIR/$tfile
7769                 find $DIR/$tfile
7770         EOF
7771
7772         result=$(grep error $TMP/$tfile.log)
7773         rm -f $DIR/$tfile
7774         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7775 }
7776 run_test 128 "interactive lfs for 2 consecutive find's"
7777
7778 set_dir_limits () {
7779         local mntdev
7780         local canondev
7781         local node
7782
7783         local LDPROC=/proc/fs/ldiskfs
7784         local facets=$(get_facets MDS)
7785
7786         for facet in ${facets//,/ }; do
7787                 canondev=$(ldiskfs_canon \
7788                            *.$(convert_facet2label $facet).mntdev $facet)
7789                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7790                                                 LDPROC=/sys/fs/ldiskfs
7791                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7792         done
7793 }
7794
7795 test_129() {
7796         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7797         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7798                 skip "Only applicable to ldiskfs-based MDTs"
7799                 return
7800         fi
7801         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7802
7803         ENOSPC=28
7804         EFBIG=27
7805
7806         test_mkdir -p $DIR/$tdir
7807
7808         MAX=$(stat -c%s "$DIR/$tdir")
7809         set_dir_limits $MAX
7810         local I=0
7811         local J=0
7812         while [ ! $I -gt $MAX ]; do
7813                 $MULTIOP $DIR/$tdir/$J Oc
7814                 rc=$?
7815                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7816                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7817                 #and EFBIG for previous versions
7818                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7819                         set_dir_limits 0
7820                         echo "return code $rc received as expected"
7821                         multiop $DIR/$tdir/$J Oc
7822                         rc=$?
7823                         I=$(stat -c%s "$DIR/$tdir")
7824                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7825                                 return 0
7826                         else
7827                                 error_exit "return code $rc current dir size $I " \
7828                                            "previous limit $MAX"
7829                         fi
7830                 elif [ $rc -ne 0 ]; then
7831                         set_dir_limits 0
7832                         error_exit "return code $rc received instead of expected " \
7833                                    "$EFBIG or $ENOSPC, files in dir $I"
7834                 fi
7835                 J=$((J+1))
7836                 I=$(stat -c%s "$DIR/$tdir")
7837         done
7838
7839         set_dir_limits 0
7840         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7841 }
7842 run_test 129 "test directory size limit ========================"
7843
7844 OLDIFS="$IFS"
7845 cleanup_130() {
7846         trap 0
7847         IFS="$OLDIFS"
7848 }
7849
7850 test_130a() {
7851         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7852         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7853                 return
7854
7855         trap cleanup_130 EXIT RETURN
7856
7857         local fm_file=$DIR/$tfile
7858         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7859         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7860                 error "dd failed for $fm_file"
7861
7862         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7863         filefrag -ves $fm_file
7864         RC=$?
7865         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7866                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7867         [ $RC != 0 ] && error "filefrag $fm_file failed"
7868
7869         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7870                       grep -v "ext:" | grep -v "found")
7871         lun=$($GETSTRIPE -i $fm_file)
7872
7873         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7874         IFS=$'\n'
7875         tot_len=0
7876         for line in $filefrag_op
7877         do
7878                 frag_lun=`echo $line | cut -d: -f5`
7879                 ext_len=`echo $line | cut -d: -f4`
7880                 if (( $frag_lun != $lun )); then
7881                         cleanup_130
7882                         error "FIEMAP on 1-stripe file($fm_file) failed"
7883                         return
7884                 fi
7885                 (( tot_len += ext_len ))
7886         done
7887
7888         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7889                 cleanup_130
7890                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7891                 return
7892         fi
7893
7894         cleanup_130
7895
7896         echo "FIEMAP on single striped file succeeded"
7897 }
7898 run_test 130a "FIEMAP (1-stripe file)"
7899
7900 test_130b() {
7901         [ "$OSTCOUNT" -lt "2" ] &&
7902                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7903
7904         [ "$OSTCOUNT" -ge "10" ] &&
7905                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7906
7907         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7908         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7909                 return
7910
7911         trap cleanup_130 EXIT RETURN
7912
7913         local fm_file=$DIR/$tfile
7914         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7915         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7916                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7917
7918         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7919                 error "dd failed on $fm_file"
7920
7921         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7922         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7923                       grep -v "ext:" | grep -v "found")
7924
7925         last_lun=$(echo $filefrag_op | cut -d: -f5)
7926
7927         IFS=$'\n'
7928         tot_len=0
7929         num_luns=1
7930         for line in $filefrag_op
7931         do
7932                 frag_lun=`echo $line | cut -d: -f5`
7933                 ext_len=`echo $line | cut -d: -f4`
7934                 if (( $frag_lun != $last_lun )); then
7935                         if (( tot_len != 1024 )); then
7936                                 cleanup_130
7937                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7938                                 return
7939                         else
7940                                 (( num_luns += 1 ))
7941                                 tot_len=0
7942                         fi
7943                 fi
7944                 (( tot_len += ext_len ))
7945                 last_lun=$frag_lun
7946         done
7947         if (( num_luns != 2 || tot_len != 1024 )); then
7948                 cleanup_130
7949                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7950                 return
7951         fi
7952
7953         cleanup_130
7954
7955         echo "FIEMAP on 2-stripe file succeeded"
7956 }
7957 run_test 130b "FIEMAP (2-stripe file)"
7958
7959 test_130c() {
7960         [ "$OSTCOUNT" -lt "2" ] &&
7961                 skip_env "skipping FIEMAP on 2-stripe file" && return
7962
7963         [ "$OSTCOUNT" -ge "10" ] &&
7964                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7965
7966         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7967         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
7968                 return
7969
7970         trap cleanup_130 EXIT RETURN
7971
7972         local fm_file=$DIR/$tfile
7973         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7974         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7975                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7976
7977         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
7978
7979         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7980         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
7981
7982         last_lun=`echo $filefrag_op | cut -d: -f5`
7983
7984         IFS=$'\n'
7985         tot_len=0
7986         num_luns=1
7987         for line in $filefrag_op
7988         do
7989                 frag_lun=`echo $line | cut -d: -f5`
7990                 ext_len=`echo $line | cut -d: -f4`
7991                 if (( $frag_lun != $last_lun )); then
7992                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
7993                         if (( logical != 512 )); then
7994                                 cleanup_130
7995                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
7996                                 return
7997                         fi
7998                         if (( tot_len != 512 )); then
7999                                 cleanup_130
8000                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
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 != 512 )); 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 on 2-stripe file with hole succeeded"
8019 }
8020 run_test 130c "FIEMAP (2-stripe file with hole)"
8021
8022 test_130d() {
8023         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8024
8025         [ "$OSTCOUNT" -ge "10" ] &&
8026                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8027
8028         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8029         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8030
8031         trap cleanup_130 EXIT RETURN
8032
8033         local fm_file=$DIR/$tfile
8034         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8035         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8036                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8037
8038         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8039         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8040                 error "dd failed on $fm_file"
8041
8042         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8043         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8044                 grep -v "ext:" | grep -v "found"`
8045
8046         last_lun=`echo $filefrag_op | cut -d: -f5`
8047
8048         IFS=$'\n'
8049         tot_len=0
8050         num_luns=1
8051         for line in $filefrag_op
8052         do
8053                 frag_lun=`echo $line | cut -d: -f5`
8054                 ext_len=`echo $line | cut -d: -f4`
8055                 if (( $frag_lun != $last_lun )); then
8056                         if (( tot_len != 1024 )); then
8057                                 cleanup_130
8058                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8059                                 return
8060                         else
8061                                 (( num_luns += 1 ))
8062                                 tot_len=0
8063                         fi
8064                 fi
8065                 (( tot_len += ext_len ))
8066                 last_lun=$frag_lun
8067         done
8068         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8069                 cleanup_130
8070                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8071                 return
8072         fi
8073
8074         cleanup_130
8075
8076         echo "FIEMAP on N-stripe file succeeded"
8077 }
8078 run_test 130d "FIEMAP (N-stripe file)"
8079
8080 test_130e() {
8081         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8082
8083         [ "$OSTCOUNT" -ge "10" ] &&
8084                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8085
8086         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8087         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8088
8089         trap cleanup_130 EXIT RETURN
8090
8091         local fm_file=$DIR/$tfile
8092         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8093         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8094                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8095
8096         NUM_BLKS=512
8097         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8098         for ((i = 0; i < $NUM_BLKS; i++))
8099         do
8100                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8101         done
8102
8103         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8104         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8105
8106         last_lun=`echo $filefrag_op | cut -d: -f5`
8107
8108         IFS=$'\n'
8109         tot_len=0
8110         num_luns=1
8111         for line in $filefrag_op
8112         do
8113                 frag_lun=`echo $line | cut -d: -f5`
8114                 ext_len=`echo $line | cut -d: -f4`
8115                 if (( $frag_lun != $last_lun )); then
8116                         if (( tot_len != $EXPECTED_LEN )); then
8117                                 cleanup_130
8118                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8119                                 return
8120                         else
8121                                 (( num_luns += 1 ))
8122                                 tot_len=0
8123                         fi
8124                 fi
8125                 (( tot_len += ext_len ))
8126                 last_lun=$frag_lun
8127         done
8128         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8129                 cleanup_130
8130                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8131                 return
8132         fi
8133
8134         cleanup_130
8135
8136         echo "FIEMAP with continuation calls succeeded"
8137 }
8138 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8139
8140 # Test for writev/readv
8141 test_131a() {
8142         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8143         error "writev test failed"
8144         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8145         error "readv failed"
8146         rm -f $DIR/$tfile
8147 }
8148 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8149
8150 test_131b() {
8151         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8152         error "append writev test failed"
8153         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8154         error "append writev test failed"
8155         rm -f $DIR/$tfile
8156 }
8157 run_test 131b "test append writev"
8158
8159 test_131c() {
8160         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8161         error "NOT PASS"
8162 }
8163 run_test 131c "test read/write on file w/o objects"
8164
8165 test_131d() {
8166         rwv -f $DIR/$tfile -w -n 1 1572864
8167         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8168         if [ "$NOB" != 1572864 ]; then
8169                 error "Short read filed: read $NOB bytes instead of 1572864"
8170         fi
8171         rm -f $DIR/$tfile
8172 }
8173 run_test 131d "test short read"
8174
8175 test_131e() {
8176         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8177         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8178         error "read hitting hole failed"
8179         rm -f $DIR/$tfile
8180 }
8181 run_test 131e "test read hitting hole"
8182
8183 get_ost_param() {
8184         local token=$1
8185         local gl_sum=0
8186         for node in $(osts_nodes); do
8187                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8188                 [ x$gl = x"" ] && gl=0
8189                 gl_sum=$((gl_sum + gl))
8190         done
8191         echo $gl_sum
8192 }
8193
8194 som_mode_switch() {
8195         local som=$1
8196         local gl1=$2
8197         local gl2=$3
8198
8199         if [ x$som = x"enabled" ]; then
8200                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8201                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8202                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8203         else
8204                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8205                 MOUNTOPT="$MOUNTOPT,som_preview"
8206                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8207         fi
8208
8209         # do remount to make new mount-conf parameters actual
8210         echo remounting...
8211         sync
8212         stopall
8213         setupall
8214 }
8215
8216 test_132() { #1028, SOM
8217         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8218         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8219         local num=$(get_mds_dir $DIR)
8220         local mymds=mds${num}
8221         local MOUNTOPT_SAVE=$MOUNTOPT
8222
8223         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8224         cancel_lru_locks osc
8225
8226         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8227
8228         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8229         stat $DIR/$tfile >/dev/null
8230         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8231         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8232         rm $DIR/$tfile
8233         som_mode_switch $som1 $gl1 $gl2
8234
8235         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8236         cancel_lru_locks osc
8237
8238         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8239         if [ $som1 == $som2 ]; then
8240             error "som is still "$som2
8241             if [ x$som2 = x"enabled" ]; then
8242                 som2="disabled"
8243             else
8244                 som2="enabled"
8245             fi
8246         fi
8247
8248         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8249         stat $DIR/$tfile >/dev/null
8250         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8251         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8252         som_mode_switch $som2 $gl1 $gl2
8253         MOUNTOPT=$MOUNTOPT_SAVE
8254 }
8255 run_test 132 "som avoids glimpse rpc"
8256
8257 check_stats() {
8258         local res
8259         local count
8260         case $1 in
8261         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8262                  ;;
8263         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8264                  ;;
8265         *) error "Wrong argument $1" ;;
8266         esac
8267         echo $res
8268         count=`echo $res | awk '{print $2}'`
8269         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8270         # if the argument $3 is zero, it means any stat increment is ok.
8271         if [ $3 -gt 0 ] ; then
8272                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8273         fi
8274 }
8275
8276 test_133a() {
8277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8278         remote_ost_nodsh && skip "remote OST with nodsh" && return
8279         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8280
8281         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8282                 { skip "MDS doesn't support rename stats"; return; }
8283         local testdir=$DIR/${tdir}/stats_testdir
8284         mkdir -p $DIR/${tdir}
8285
8286         # clear stats.
8287         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8288         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8289
8290         # verify mdt stats first.
8291         mkdir ${testdir} || error "mkdir failed"
8292         check_stats $SINGLEMDS "mkdir" 1
8293         touch ${testdir}/${tfile} || "touch failed"
8294         check_stats $SINGLEMDS "open" 1
8295         check_stats $SINGLEMDS "close" 1
8296         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8297         check_stats $SINGLEMDS "mknod" 1
8298         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8299         check_stats $SINGLEMDS "unlink" 1
8300         rm -f ${testdir}/${tfile} || error "file remove failed"
8301         check_stats $SINGLEMDS "unlink" 2
8302
8303         # remove working dir and check mdt stats again.
8304         rmdir ${testdir} || error "rmdir failed"
8305         check_stats $SINGLEMDS "rmdir" 1
8306
8307         local testdir1=$DIR/${tdir}/stats_testdir1
8308         mkdir -p ${testdir}
8309         mkdir -p ${testdir1}
8310         touch ${testdir1}/test1
8311         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8312         check_stats $SINGLEMDS "crossdir_rename" 1
8313
8314         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8315         check_stats $SINGLEMDS "samedir_rename" 1
8316
8317         rm -rf $DIR/${tdir}
8318 }
8319 run_test 133a "Verifying MDT stats ========================================"
8320
8321 test_133b() {
8322         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8323         remote_ost_nodsh && skip "remote OST with nodsh" && return
8324         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8325         local testdir=$DIR/${tdir}/stats_testdir
8326         mkdir -p ${testdir} || error "mkdir failed"
8327         touch ${testdir}/${tfile} || "touch failed"
8328         cancel_lru_locks mdc
8329
8330         # clear stats.
8331         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8332         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8333
8334         # extra mdt stats verification.
8335         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8336         check_stats $SINGLEMDS "setattr" 1
8337         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8338         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8339         then            # LU-1740
8340                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8341                 check_stats $SINGLEMDS "getattr" 1
8342         fi
8343         $LFS df || error "lfs failed"
8344         check_stats $SINGLEMDS "statfs" 1
8345
8346         rm -rf $DIR/${tdir}
8347 }
8348 run_test 133b "Verifying extra MDT stats =================================="
8349
8350 test_133c() {
8351         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8352         remote_ost_nodsh && skip "remote OST with nodsh" && return
8353         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8354         local testdir=$DIR/${tdir}/stats_testdir
8355         test_mkdir -p ${testdir} || error "mkdir failed"
8356
8357         # verify obdfilter stats.
8358         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8359         sync
8360         cancel_lru_locks osc
8361         wait_delete_completed
8362
8363         # clear stats.
8364         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8365         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8366
8367         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8368         sync
8369         cancel_lru_locks osc
8370         check_stats ost "write" 1
8371
8372         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8373         check_stats ost "read" 1
8374
8375         > ${testdir}/${tfile} || error "truncate failed"
8376         check_stats ost "punch" 1
8377
8378         rm -f ${testdir}/${tfile} || error "file remove failed"
8379         wait_delete_completed
8380         check_stats ost "destroy" 1
8381
8382         rm -rf $DIR/${tdir}
8383 }
8384 run_test 133c "Verifying OST stats ========================================"
8385
8386 order_2() {
8387     local value=$1
8388     local orig=$value
8389     local order=1
8390
8391     while [ $value -ge 2 ]; do
8392         order=$((order*2))
8393         value=$((value/2))
8394     done
8395
8396     if [ $orig -gt $order ]; then
8397         order=$((order*2))
8398     fi
8399     echo $order
8400 }
8401
8402 size_in_KMGT() {
8403     local value=$1
8404     local size=('K' 'M' 'G' 'T');
8405     local i=0
8406     local size_string=$value
8407
8408     while [ $value -ge 1024 ]; do
8409         if [ $i -gt 3 ]; then
8410             #T is the biggest unit we get here, if that is bigger,
8411             #just return XXXT
8412             size_string=${value}T
8413             break
8414         fi
8415         value=$((value >> 10))
8416         if [ $value -lt 1024 ]; then
8417             size_string=${value}${size[$i]}
8418             break
8419         fi
8420         i=$((i + 1))
8421     done
8422
8423     echo $size_string
8424 }
8425
8426 get_rename_size() {
8427     local size=$1
8428     local context=${2:-.}
8429     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8430                 grep -A1 $context |
8431                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8432     echo $sample
8433 }
8434
8435 test_133d() {
8436         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8437         remote_ost_nodsh && skip "remote OST with nodsh" && return
8438         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8439         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8440         { skip "MDS doesn't support rename stats"; return; }
8441
8442         local testdir1=$DIR/${tdir}/stats_testdir1
8443         local testdir2=$DIR/${tdir}/stats_testdir2
8444
8445         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8446
8447         mkdir -p ${testdir1} || error "mkdir failed"
8448         mkdir -p ${testdir2} || error "mkdir failed"
8449
8450         createmany -o $testdir1/test 512 || error "createmany failed"
8451
8452         # check samedir rename size
8453         mv ${testdir1}/test0 ${testdir1}/test_0
8454
8455         local testdir1_size=$(ls -l $DIR/${tdir} |
8456                 awk '/stats_testdir1/ {print $5}')
8457         local testdir2_size=$(ls -l $DIR/${tdir} |
8458                 awk '/stats_testdir2/ {print $5}')
8459
8460         testdir1_size=$(order_2 $testdir1_size)
8461         testdir2_size=$(order_2 $testdir2_size)
8462
8463         testdir1_size=$(size_in_KMGT $testdir1_size)
8464         testdir2_size=$(size_in_KMGT $testdir2_size)
8465
8466         echo "source rename dir size: ${testdir1_size}"
8467         echo "target rename dir size: ${testdir2_size}"
8468
8469         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8470         eval $cmd || error "$cmd failed"
8471         local samedir=$($cmd | grep 'same_dir')
8472         local same_sample=$(get_rename_size $testdir1_size)
8473         [ -z "$samedir" ] && error "samedir_rename_size count error"
8474         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8475         echo "Check same dir rename stats success"
8476
8477         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8478
8479         # check crossdir rename size
8480         mv ${testdir1}/test_0 ${testdir2}/test_0
8481
8482         testdir1_size=$(ls -l $DIR/${tdir} |
8483                 awk '/stats_testdir1/ {print $5}')
8484         testdir2_size=$(ls -l $DIR/${tdir} |
8485                 awk '/stats_testdir2/ {print $5}')
8486
8487         testdir1_size=$(order_2 $testdir1_size)
8488         testdir2_size=$(order_2 $testdir2_size)
8489
8490         testdir1_size=$(size_in_KMGT $testdir1_size)
8491         testdir2_size=$(size_in_KMGT $testdir2_size)
8492
8493         echo "source rename dir size: ${testdir1_size}"
8494         echo "target rename dir size: ${testdir2_size}"
8495
8496         eval $cmd || error "$cmd failed"
8497         local crossdir=$($cmd | grep 'crossdir')
8498         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8499         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8500         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8501         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8502         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8503         echo "Check cross dir rename stats success"
8504         rm -rf $DIR/${tdir}
8505 }
8506 run_test 133d "Verifying rename_stats ========================================"
8507
8508 test_133e() {
8509         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8510         local testdir=$DIR/${tdir}/stats_testdir
8511         local ctr f0 f1 bs=32768 count=42 sum
8512
8513         remote_ost_nodsh && skip "remote OST with nodsh" && return
8514         mkdir -p ${testdir} || error "mkdir failed"
8515
8516         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8517
8518         for ctr in {write,read}_bytes; do
8519                 sync
8520                 cancel_lru_locks osc
8521
8522                 do_facet ost1 $LCTL set_param -n \
8523                         "obdfilter.*.exports.clear=clear"
8524
8525                 if [ $ctr = write_bytes ]; then
8526                         f0=/dev/zero
8527                         f1=${testdir}/${tfile}
8528                 else
8529                         f0=${testdir}/${tfile}
8530                         f1=/dev/null
8531                 fi
8532
8533                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8534                         error "dd failed"
8535                 sync
8536                 cancel_lru_locks osc
8537
8538                 sum=$(do_facet ost1 $LCTL get_param \
8539                                 "obdfilter.*.exports.*.stats" | \
8540                           awk -v ctr=$ctr '\
8541                                 BEGIN { sum = 0 }
8542                                 $1 == ctr { sum += $7 }
8543                                 END { print sum }')
8544
8545                 if ((sum != bs * count)); then
8546                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8547                 fi
8548         done
8549
8550         rm -rf $DIR/${tdir}
8551 }
8552 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8553
8554 test_133f() {
8555         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8556         local facet
8557
8558         # First without trusting modes.
8559         find $proc_dirs \
8560                 -exec cat '{}' \; &> /dev/null
8561
8562         # Second verifying readability.
8563         find $proc_dirs \
8564                 -type f \
8565                 -readable \
8566                 -exec cat '{}' \; > /dev/null ||
8567                         error "proc file read failed"
8568
8569         for facet in $SINGLEMDS ost1; do
8570                 do_facet $facet find $proc_dirs \
8571                         -not -name req_history \
8572                         -exec cat '{}' \\\; &> /dev/null
8573
8574             do_facet $facet     find $proc_dirs \
8575                         -not -name req_history \
8576                         -type f \
8577                         -readable \
8578                         -exec cat '{}' \\\; > /dev/null ||
8579                                 error "proc file read failed"
8580         done
8581 }
8582 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8583
8584 test_140() { #bug-17379
8585         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8586         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8587         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8588         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8589
8590         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8591         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8592         local i=0
8593         while i=`expr $i + 1`; do
8594                 test_mkdir -p $i || error "Creating dir $i"
8595                 cd $i || error "Changing to $i"
8596                 ln -s ../stat stat || error "Creating stat symlink"
8597                 # Read the symlink until ELOOP present,
8598                 # not LBUGing the system is considered success,
8599                 # we didn't overrun the stack.
8600                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8601                 [ $ret -ne 0 ] && {
8602                         if [ $ret -eq 40 ]; then
8603                                 break  # -ELOOP
8604                         else
8605                                 error "Open stat symlink"
8606                                 return
8607                         fi
8608                 }
8609         done
8610         i=`expr $i - 1`
8611         echo "The symlink depth = $i"
8612         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8613                                         error "Invalid symlink depth"
8614
8615         # Test recursive symlink
8616         ln -s symlink_self symlink_self
8617         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8618         echo "open symlink_self returns $ret"
8619         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8620 }
8621 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8622
8623 test_150() {
8624         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8625         local TF="$TMP/$tfile"
8626
8627         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8628         cp $TF $DIR/$tfile
8629         cancel_lru_locks osc
8630         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8631         remount_client $MOUNT
8632         df -P $MOUNT
8633         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8634
8635         $TRUNCATE $TF 6000
8636         $TRUNCATE $DIR/$tfile 6000
8637         cancel_lru_locks osc
8638         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8639
8640         echo "12345" >>$TF
8641         echo "12345" >>$DIR/$tfile
8642         cancel_lru_locks osc
8643         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8644
8645         echo "12345" >>$TF
8646         echo "12345" >>$DIR/$tfile
8647         cancel_lru_locks osc
8648         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8649
8650         rm -f $TF
8651         true
8652 }
8653 run_test 150 "truncate/append tests"
8654
8655 #LU-2902 roc_hit was not able to read all values from lproc
8656 function roc_hit_init() {
8657         local list=$(comma_list $(osts_nodes))
8658         local dir=$DIR/$tdir-check
8659         local file=$dir/file
8660         local BEFORE
8661         local AFTER
8662         local idx
8663
8664         test_mkdir -p $dir
8665         #use setstripe to do a write to every ost
8666         for i in $(seq 0 $((OSTCOUNT-1))); do
8667                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8668                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8669                 idx=$(printf %04x $i)
8670                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8671                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8672                 if [ -z "$BEFORE" ]; then
8673                         BEFORE=0
8674                 fi
8675
8676                 cancel_lru_locks osc
8677                 cat $file >/dev/null
8678
8679                 AFTER=$(get_osd_param $list *OST*$idx stats |
8680                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8681
8682                 echo BEFORE:$BEFORE AFTER:$AFTER
8683                 if ! let "AFTER - BEFORE == 4"; then
8684                         rm -rf $dir
8685                         error "roc_hit is not safe to use"
8686                 fi
8687                 rm $file
8688         done
8689
8690         rm -rf $dir
8691 }
8692
8693 function roc_hit() {
8694         local list=$(comma_list $(osts_nodes))
8695         echo $(get_osd_param $list '' stats |
8696                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8697 }
8698
8699 function set_cache() {
8700         local on=1
8701
8702         if [ "$2" == "off" ]; then
8703                 on=0;
8704         fi
8705         local list=$(comma_list $(osts_nodes))
8706         set_osd_param $list '' $1_cache_enable $on
8707
8708         cancel_lru_locks osc
8709 }
8710
8711 test_151() {
8712         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8713         remote_ost_nodsh && skip "remote OST with nodsh" && return
8714
8715         local CPAGES=3
8716         local list=$(comma_list $(osts_nodes))
8717
8718         # check whether obdfilter is cache capable at all
8719         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8720                 echo "not cache-capable obdfilter"
8721                 return 0
8722         fi
8723
8724         # check cache is enabled on all obdfilters
8725         if get_osd_param $list '' read_cache_enable | grep 0; then
8726                 echo "oss cache is disabled"
8727                 return 0
8728         fi
8729
8730         set_osd_param $list '' writethrough_cache_enable 1
8731
8732         # check write cache is enabled on all obdfilters
8733         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8734                 echo "oss write cache is NOT enabled"
8735                 return 0
8736         fi
8737
8738         roc_hit_init
8739
8740         #define OBD_FAIL_OBD_NO_LRU  0x609
8741         do_nodes $list $LCTL set_param fail_loc=0x609
8742
8743         # pages should be in the case right after write
8744         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8745                 error "dd failed"
8746
8747         local BEFORE=$(roc_hit)
8748         cancel_lru_locks osc
8749         cat $DIR/$tfile >/dev/null
8750         local AFTER=$(roc_hit)
8751
8752         do_nodes $list $LCTL set_param fail_loc=0
8753
8754         if ! let "AFTER - BEFORE == CPAGES"; then
8755                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8756         fi
8757
8758         # the following read invalidates the cache
8759         cancel_lru_locks osc
8760         set_osd_param $list '' read_cache_enable 0
8761         cat $DIR/$tfile >/dev/null
8762
8763         # now data shouldn't be found in the cache
8764         BEFORE=$(roc_hit)
8765         cancel_lru_locks osc
8766         cat $DIR/$tfile >/dev/null
8767         AFTER=$(roc_hit)
8768         if let "AFTER - BEFORE != 0"; then
8769                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8770         fi
8771
8772         set_osd_param $list '' read_cache_enable 1
8773         rm -f $DIR/$tfile
8774 }
8775 run_test 151 "test cache on oss and controls ==============================="
8776
8777 test_152() {
8778         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8779         local TF="$TMP/$tfile"
8780
8781         # simulate ENOMEM during write
8782 #define OBD_FAIL_OST_NOMEM      0x226
8783         lctl set_param fail_loc=0x80000226
8784         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8785         cp $TF $DIR/$tfile
8786         sync || error "sync failed"
8787         lctl set_param fail_loc=0
8788
8789         # discard client's cache
8790         cancel_lru_locks osc
8791
8792         # simulate ENOMEM during read
8793         lctl set_param fail_loc=0x80000226
8794         cmp $TF $DIR/$tfile || error "cmp failed"
8795         lctl set_param fail_loc=0
8796
8797         rm -f $TF
8798 }
8799 run_test 152 "test read/write with enomem ============================"
8800
8801 test_153() {
8802         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8803 }
8804 run_test 153 "test if fdatasync does not crash ======================="
8805
8806 dot_lustre_fid_permission_check() {
8807         local fid=$1
8808         local ffid=$MOUNT/.lustre/fid/$fid
8809         local test_dir=$2
8810
8811         echo "stat fid $fid"
8812         stat $ffid > /dev/null || error "stat $ffid failed."
8813         echo "touch fid $fid"
8814         touch $ffid || error "touch $ffid failed."
8815         echo "write to fid $fid"
8816         cat /etc/hosts > $ffid || error "write $ffid failed."
8817         echo "read fid $fid"
8818         diff /etc/hosts $ffid || error "read $ffid failed."
8819         echo "append write to fid $fid"
8820         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8821         echo "rename fid $fid"
8822         mv $ffid $test_dir/$tfile.1 &&
8823                 error "rename $ffid to $tfile.1 should fail."
8824         touch $test_dir/$tfile.1
8825         mv $test_dir/$tfile.1 $ffid &&
8826                 error "rename $tfile.1 to $ffid should fail."
8827         rm -f $test_dir/$tfile.1
8828         echo "truncate fid $fid"
8829         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8830         echo "link fid $fid"
8831         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8832         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8833                 echo "setfacl fid $fid"
8834                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8835                 echo "getfacl fid $fid"
8836                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8837         fi
8838         echo "unlink fid $fid"
8839         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8840         echo "mknod fid $fid"
8841         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8842
8843         fid=[0xf00000400:0x1:0x0]
8844         ffid=$MOUNT/.lustre/fid/$fid
8845
8846         echo "stat non-exist fid $fid"
8847         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8848         echo "write to non-exist fid $fid"
8849         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8850         echo "link new fid $fid"
8851         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8852
8853         mkdir -p $test_dir/$tdir
8854         touch $test_dir/$tdir/$tfile
8855         fid=$($LFS path2fid $test_dir/$tdir)
8856         rc=$?
8857         [ $rc -ne 0 ] &&
8858                 error "error: could not get fid for $test_dir/$dir/$tfile."
8859
8860         ffid=$MOUNT/.lustre/fid/$fid
8861
8862         echo "ls $fid"
8863         ls $ffid > /dev/null || error "ls $ffid failed."
8864         echo "touch $fid/$tfile.1"
8865         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8866
8867         echo "touch $MOUNT/.lustre/fid/$tfile"
8868         touch $MOUNT/.lustre/fid/$tfile && \
8869                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8870
8871         echo "setxattr to $MOUNT/.lustre/fid"
8872         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8873
8874         echo "listxattr for $MOUNT/.lustre/fid"
8875         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8876
8877         echo "delxattr from $MOUNT/.lustre/fid"
8878         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8879
8880         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8881         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8882                 error "touch invalid fid should fail."
8883
8884         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8885         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8886                 error "touch non-normal fid should fail."
8887
8888         echo "rename $tdir to $MOUNT/.lustre/fid"
8889         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8890                 error "rename to $MOUNT/.lustre/fid should fail."
8891
8892         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
8893         then            # LU-3547
8894                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8895                 local new_obf_mode=777
8896
8897                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8898                 chmod $new_obf_mode $DIR/.lustre/fid ||
8899                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8900
8901                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8902                 [ $obf_mode -eq $new_obf_mode ] ||
8903                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8904
8905                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8906                 chmod $old_obf_mode $DIR/.lustre/fid ||
8907                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8908         fi
8909
8910         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8911         fid=$($LFS path2fid $test_dir/$tfile-2)
8912         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8913         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8914                 error "create lov data thru .lustre should fail."
8915         echo "cp /etc/passwd $test_dir/$tfile-2"
8916         cp /etc/passwd $test_dir/$tfile-2 ||
8917                 error "copy to $test_dir/$tfile-2 failed."
8918         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8919         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8920                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8921
8922         rm -rf $test_dir/tfile.lnk
8923         rm -rf $test_dir/$tfile-2
8924 }
8925
8926 test_154A() {
8927         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
8928                 skip "Need MDS version at least 2.4.1" && return
8929
8930         touch $DIR/$tfile
8931         local FID=$($LFS path2fid $DIR/$tfile)
8932         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
8933
8934         # check that we get the same pathname back
8935         local FOUND=$($LFS fid2path $MOUNT $FID)
8936         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
8937         [ "$FOUND" != "$DIR/$tfile" ] &&
8938                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
8939
8940         rm -rf $DIR/$tfile
8941 }
8942 run_test 154A "lfs path2fid and fid2path basic checks"
8943
8944 test_154a() {
8945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8946         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8947                 { skip "Need MDS version at least 2.2.51"; return 0; }
8948
8949         cp /etc/hosts $DIR/$tfile
8950
8951         fid=$($LFS path2fid $DIR/$tfile)
8952         rc=$?
8953         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8954
8955         dot_lustre_fid_permission_check "$fid" $DIR ||
8956                 error "dot lustre permission check $fid failed"
8957
8958         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8959
8960         touch $MOUNT/.lustre/file &&
8961                 error "creation is not allowed under .lustre"
8962
8963         mkdir $MOUNT/.lustre/dir &&
8964                 error "mkdir is not allowed under .lustre"
8965
8966         rm -rf $DIR/$tfile
8967 }
8968 run_test 154a "Open-by-FID"
8969
8970 test_154b() {
8971         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8972         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8973                 { skip "Need MDS version at least 2.2.51"; return 0; }
8974
8975         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
8976
8977         local remote_dir=$DIR/$tdir/remote_dir
8978         local MDTIDX=1
8979         local rc=0
8980
8981         mkdir -p $DIR/$tdir
8982         $LFS mkdir -i $MDTIDX $remote_dir ||
8983                 error "create remote directory failed"
8984
8985         cp /etc/hosts $remote_dir/$tfile
8986
8987         fid=$($LFS path2fid $remote_dir/$tfile)
8988         rc=$?
8989         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
8990
8991         dot_lustre_fid_permission_check "$fid" $remote_dir ||
8992                 error "dot lustre permission check $fid failed"
8993         rm -rf $DIR/$tdir
8994 }
8995 run_test 154b "Open-by-FID for remote directory"
8996
8997 test_154c() {
8998         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
8999                 skip "Need MDS version at least 2.4.1" && return
9000
9001         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9002         local FID1=$($LFS path2fid $DIR/$tfile.1)
9003         local FID2=$($LFS path2fid $DIR/$tfile.2)
9004         local FID3=$($LFS path2fid $DIR/$tfile.3)
9005
9006         local N=1
9007         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9008                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9009                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9010                 local want=FID$N
9011                 [ "$FID" = "${!want}" ] ||
9012                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9013                 N=$((N + 1))
9014         done
9015
9016         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9017                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9018                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9019                 N=$((N + 1))
9020         done
9021 }
9022 run_test 154c "lfs path2fid and fid2path multiple arguments"
9023
9024 test_155_small_load() {
9025     local temp=$TMP/$tfile
9026     local file=$DIR/$tfile
9027
9028     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9029         error "dd of=$temp bs=6096 count=1 failed"
9030     cp $temp $file
9031     cancel_lru_locks osc
9032     cmp $temp $file || error "$temp $file differ"
9033
9034     $TRUNCATE $temp 6000
9035     $TRUNCATE $file 6000
9036     cmp $temp $file || error "$temp $file differ (truncate1)"
9037
9038     echo "12345" >>$temp
9039     echo "12345" >>$file
9040     cmp $temp $file || error "$temp $file differ (append1)"
9041
9042     echo "12345" >>$temp
9043     echo "12345" >>$file
9044     cmp $temp $file || error "$temp $file differ (append2)"
9045
9046     rm -f $temp $file
9047     true
9048 }
9049
9050 test_155_big_load() {
9051     remote_ost_nodsh && skip "remote OST with nodsh" && return
9052     local temp=$TMP/$tfile
9053     local file=$DIR/$tfile
9054
9055     free_min_max
9056     local cache_size=$(do_facet ost$((MAXI+1)) \
9057         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9058     local large_file_size=$((cache_size * 2))
9059
9060     echo "OSS cache size: $cache_size KB"
9061     echo "Large file size: $large_file_size KB"
9062
9063     [ $MAXV -le $large_file_size ] && \
9064         skip_env "max available OST size needs > $large_file_size KB" && \
9065         return 0
9066
9067     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9068
9069     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9070         error "dd of=$temp bs=$large_file_size count=1k failed"
9071     cp $temp $file
9072     ls -lh $temp $file
9073     cancel_lru_locks osc
9074     cmp $temp $file || error "$temp $file differ"
9075
9076     rm -f $temp $file
9077     true
9078 }
9079
9080 test_155a() {
9081         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9082         set_cache read on
9083         set_cache writethrough on
9084         test_155_small_load
9085 }
9086 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9087
9088 test_155b() {
9089         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9090         set_cache read on
9091         set_cache writethrough off
9092         test_155_small_load
9093 }
9094 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9095
9096 test_155c() {
9097         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9098         set_cache read off
9099         set_cache writethrough on
9100         test_155_small_load
9101 }
9102 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9103
9104 test_155d() {
9105         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9106         set_cache read off
9107         set_cache writethrough off
9108         test_155_small_load
9109 }
9110 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9111
9112 test_155e() {
9113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9114         set_cache read on
9115         set_cache writethrough on
9116         test_155_big_load
9117 }
9118 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9119
9120 test_155f() {
9121         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9122         set_cache read on
9123         set_cache writethrough off
9124         test_155_big_load
9125 }
9126 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9127
9128 test_155g() {
9129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9130         set_cache read off
9131         set_cache writethrough on
9132         test_155_big_load
9133 }
9134 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9135
9136 test_155h() {
9137         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9138         set_cache read off
9139         set_cache writethrough off
9140         test_155_big_load
9141 }
9142 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9143
9144 test_156() {
9145         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9146         local CPAGES=3
9147         local BEFORE
9148         local AFTER
9149         local file="$DIR/$tfile"
9150
9151         [ "$(facet_fstype ost1)" = "zfs" ] &&
9152                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9153                 return
9154
9155         roc_hit_init
9156
9157     log "Turn on read and write cache"
9158     set_cache read on
9159     set_cache writethrough on
9160
9161     log "Write data and read it back."
9162     log "Read should be satisfied from the cache."
9163     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9164     BEFORE=`roc_hit`
9165     cancel_lru_locks osc
9166     cat $file >/dev/null
9167     AFTER=`roc_hit`
9168     if ! let "AFTER - BEFORE == CPAGES"; then
9169         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9170     else
9171         log "cache hits:: before: $BEFORE, after: $AFTER"
9172     fi
9173
9174     log "Read again; it should be satisfied from the cache."
9175     BEFORE=$AFTER
9176     cancel_lru_locks osc
9177     cat $file >/dev/null
9178     AFTER=`roc_hit`
9179     if ! let "AFTER - BEFORE == CPAGES"; then
9180         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9181     else
9182         log "cache hits:: before: $BEFORE, after: $AFTER"
9183     fi
9184
9185
9186     log "Turn off the read cache and turn on the write cache"
9187     set_cache read off
9188     set_cache writethrough on
9189
9190     log "Read again; it should be satisfied from the cache."
9191     BEFORE=`roc_hit`
9192     cancel_lru_locks osc
9193     cat $file >/dev/null
9194     AFTER=`roc_hit`
9195     if ! let "AFTER - BEFORE == CPAGES"; then
9196         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9197     else
9198         log "cache hits:: before: $BEFORE, after: $AFTER"
9199     fi
9200
9201     log "Read again; it should not be satisfied from the cache."
9202     BEFORE=$AFTER
9203     cancel_lru_locks osc
9204     cat $file >/dev/null
9205     AFTER=`roc_hit`
9206     if ! let "AFTER - BEFORE == 0"; then
9207         error "IN CACHE: before: $BEFORE, after: $AFTER"
9208     else
9209         log "cache hits:: before: $BEFORE, after: $AFTER"
9210     fi
9211
9212     log "Write data and read it back."
9213     log "Read should be satisfied from the cache."
9214     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9215     BEFORE=`roc_hit`
9216     cancel_lru_locks osc
9217     cat $file >/dev/null
9218     AFTER=`roc_hit`
9219     if ! let "AFTER - BEFORE == CPAGES"; then
9220         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9221     else
9222         log "cache hits:: before: $BEFORE, after: $AFTER"
9223     fi
9224
9225     log "Read again; it should not be satisfied from the cache."
9226     BEFORE=$AFTER
9227     cancel_lru_locks osc
9228     cat $file >/dev/null
9229     AFTER=`roc_hit`
9230     if ! let "AFTER - BEFORE == 0"; then
9231         error "IN CACHE: before: $BEFORE, after: $AFTER"
9232     else
9233         log "cache hits:: before: $BEFORE, after: $AFTER"
9234     fi
9235
9236
9237     log "Turn off read and write cache"
9238     set_cache read off
9239     set_cache writethrough off
9240
9241     log "Write data and read it back"
9242     log "It should not be satisfied from the cache."
9243     rm -f $file
9244     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9245     cancel_lru_locks osc
9246     BEFORE=`roc_hit`
9247     cat $file >/dev/null
9248     AFTER=`roc_hit`
9249     if ! let "AFTER - BEFORE == 0"; then
9250         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9251     else
9252         log "cache hits:: before: $BEFORE, after: $AFTER"
9253     fi
9254
9255
9256     log "Turn on the read cache and turn off the write cache"
9257     set_cache read on
9258     set_cache writethrough off
9259
9260     log "Write data and read it back"
9261     log "It should not be satisfied from the cache."
9262     rm -f $file
9263     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9264     BEFORE=`roc_hit`
9265     cancel_lru_locks osc
9266     cat $file >/dev/null
9267     AFTER=`roc_hit`
9268     if ! let "AFTER - BEFORE == 0"; then
9269         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9270     else
9271         log "cache hits:: before: $BEFORE, after: $AFTER"
9272     fi
9273
9274     log "Read again; it should be satisfied from the cache."
9275     BEFORE=`roc_hit`
9276     cancel_lru_locks osc
9277     cat $file >/dev/null
9278     AFTER=`roc_hit`
9279     if ! let "AFTER - BEFORE == CPAGES"; then
9280         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9281     else
9282         log "cache hits:: before: $BEFORE, after: $AFTER"
9283     fi
9284
9285     rm -f $file
9286 }
9287 run_test 156 "Verification of tunables ============================"
9288
9289 #Changelogs
9290 err17935 () {
9291         if [ $MDSCOUNT -gt 1 ]; then
9292                 error_ignore 17935 $*
9293         else
9294                 error $*
9295         fi
9296 }
9297
9298 changelog_chmask()
9299 {
9300         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9301
9302         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9303
9304         if [ $MASK -eq 1 ]; then
9305                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9306         else
9307                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9308         fi
9309 }
9310
9311 changelog_extract_field() {
9312         local mdt=$1
9313         local cltype=$2
9314         local file=$3
9315         local identifier=$4
9316
9317         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9318                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9319                 tail -1
9320 }
9321
9322 test_160() {
9323         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9324         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9325         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9326                 { skip "Need MDS version at least 2.2.0"; return; }
9327
9328         local CL_USERS="mdd.$MDT0.changelog_users"
9329         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9330         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9331         echo "Registered as changelog user $USER"
9332         $GET_CL_USERS | grep -q $USER ||
9333                 error "User $USER not found in changelog_users"
9334
9335         # change something
9336         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9337         touch $DIR/$tdir/pics/2008/zachy/timestamp
9338         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9339         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9340         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9341         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9342         rm $DIR/$tdir/pics/desktop.jpg
9343
9344         $LFS changelog $MDT0 | tail -5
9345
9346         echo "verifying changelog mask"
9347         changelog_chmask "MKDIR"
9348         changelog_chmask "CLOSE"
9349
9350         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9351         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9352
9353         changelog_chmask "MKDIR"
9354         changelog_chmask "CLOSE"
9355
9356         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9357         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9358
9359         $LFS changelog $MDT0
9360         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9361         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9362         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9363         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9364
9365         # verify contents
9366         echo "verifying target fid"
9367         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9368         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9369         [ "$fidc" == "$fidf" ] ||
9370                 err17935 "fid in changelog $fidc != file fid $fidf"
9371         echo "verifying parent fid"
9372         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9373         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9374         [ "$fidc" == "$fidf" ] ||
9375                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9376
9377         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9378         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9379         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9380         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9381         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9382                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9383
9384         MIN_REC=$($GET_CL_USERS |
9385                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9386         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9387         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9388         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9389                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9390
9391         # LU-3446 changelog index reset on MDT restart
9392         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9393         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9394         $LFS changelog_clear $MDT0 $USER 0
9395         stop $SINGLEMDS || error "Fail to stop MDT."
9396         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9397         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9398         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9399         [ $CUR_REC1 == $CUR_REC2 ] ||
9400                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9401
9402         echo "verifying user deregister"
9403         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9404         $GET_CL_USERS | grep -q $USER &&
9405                 error "User $USER still in changelog_users"
9406
9407         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9408         if [ $USERS -eq 0 ]; then
9409                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9410                 touch $DIR/$tdir/chloe
9411                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9412                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9413                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9414         else
9415                 echo "$USERS other changelog users; can't verify off"
9416         fi
9417 }
9418 run_test 160 "changelog sanity"
9419
9420 test_161a() {
9421         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9422     test_mkdir -p $DIR/$tdir
9423     cp /etc/hosts $DIR/$tdir/$tfile
9424     test_mkdir $DIR/$tdir/foo1
9425     test_mkdir $DIR/$tdir/foo2
9426     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9427     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9428     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9429     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9430         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9431         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9432                 $LFS fid2path $DIR $FID
9433                 err17935 "bad link ea"
9434         fi
9435     # middle
9436     rm $DIR/$tdir/foo2/zachary
9437     # last
9438     rm $DIR/$tdir/foo2/thor
9439     # first
9440     rm $DIR/$tdir/$tfile
9441     # rename
9442     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9443     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9444         then
9445         $LFS fid2path $DIR $FID
9446         err17935 "bad link rename"
9447     fi
9448     rm $DIR/$tdir/foo2/maggie
9449
9450     # overflow the EA
9451     local longname=filename_avg_len_is_thirty_two_
9452     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9453         error "failed to hardlink many files"
9454     links=$($LFS fid2path $DIR $FID | wc -l)
9455     echo -n "${links}/1000 links in link EA"
9456     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9457     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9458         error "failed to unlink many hardlinks"
9459 }
9460 run_test 161a "link ea sanity"
9461
9462 test_161b() {
9463         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9464         [ $MDSCOUNT -lt 2 ] &&
9465                 skip "skipping remote directory test" && return
9466         local MDTIDX=1
9467         local remote_dir=$DIR/$tdir/remote_dir
9468
9469         mkdir -p $DIR/$tdir
9470         $LFS mkdir -i $MDTIDX $remote_dir ||
9471                 error "create remote directory failed"
9472
9473         cp /etc/hosts $remote_dir/$tfile
9474         mkdir -p $remote_dir/foo1
9475         mkdir -p $remote_dir/foo2
9476         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9477         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9478         ln $remote_dir/$tfile $remote_dir/foo1/luna
9479         ln $remote_dir/$tfile $remote_dir/foo2/thor
9480
9481         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9482                      tr -d ']')
9483         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9484                 $LFS fid2path $DIR $FID
9485                 err17935 "bad link ea"
9486         fi
9487         # middle
9488         rm $remote_dir/foo2/zachary
9489         # last
9490         rm $remote_dir/foo2/thor
9491         # first
9492         rm $remote_dir/$tfile
9493         # rename
9494         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9495         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9496         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9497                 $LFS fid2path $DIR $FID
9498                 err17935 "bad link rename"
9499         fi
9500         rm $remote_dir/foo2/maggie
9501
9502         # overflow the EA
9503         local longname=filename_avg_len_is_thirty_two_
9504         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9505                 error "failed to hardlink many files"
9506         links=$($LFS fid2path $DIR $FID | wc -l)
9507         echo -n "${links}/1000 links in link EA"
9508         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9509         unlinkmany $remote_dir/foo2/$longname 1000 ||
9510         error "failed to unlink many hardlinks"
9511 }
9512 run_test 161b "link ea sanity under remote directory"
9513
9514 test_161c() {
9515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9516         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9517                 skip "Need MDS version at least 2.1.5" && return
9518
9519         # define CLF_RENAME_LAST 0x0001
9520         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9521         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9522                 changelog_register -n)
9523         rm -rf $DIR/$tdir
9524         mkdir -p $DIR/$tdir
9525         touch $DIR/$tdir/foo_161c
9526         touch $DIR/$tdir/bar_161c
9527         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9528         $LFS changelog $MDT0 | grep RENME
9529         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9530                 cut -f5 -d' ')
9531         $LFS changelog_clear $MDT0 $USER 0
9532         if [ x$flags != "x0x1" ]; then
9533                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9534                         $USER
9535                 error "flag $flags is not 0x1"
9536         fi
9537         echo "rename overwrite a target having nlink = 1," \
9538                 "changelog record has flags of $flags"
9539
9540         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9541         touch $DIR/$tdir/foo_161c
9542         touch $DIR/$tdir/bar_161c
9543         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9544         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9545         $LFS changelog $MDT0 | grep RENME
9546         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9547         $LFS changelog_clear $MDT0 $USER 0
9548         if [ x$flags != "x0x0" ]; then
9549                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9550                         $USER
9551                 error "flag $flags is not 0x0"
9552         fi
9553         echo "rename overwrite a target having nlink > 1," \
9554                 "changelog record has flags of $flags"
9555
9556         # rename doesn't overwrite a target (changelog flag 0x0)
9557         touch $DIR/$tdir/foo_161c
9558         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9559         $LFS changelog $MDT0 | grep RENME
9560         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9561         $LFS changelog_clear $MDT0 $USER 0
9562         if [ x$flags != "x0x0" ]; then
9563                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9564                         $USER
9565                 error "flag $flags is not 0x0"
9566         fi
9567         echo "rename doesn't overwrite a target," \
9568                 "changelog record has flags of $flags"
9569
9570         # define CLF_UNLINK_LAST 0x0001
9571         # unlink a file having nlink = 1 (changelog flag 0x1)
9572         rm -f $DIR/$tdir/foo2_161c
9573         $LFS changelog $MDT0 | grep UNLNK
9574         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9575         $LFS changelog_clear $MDT0 $USER 0
9576         if [ x$flags != "x0x1" ]; then
9577                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9578                         $USER
9579                 error "flag $flags is not 0x1"
9580         fi
9581         echo "unlink a file having nlink = 1," \
9582                 "changelog record has flags of $flags"
9583
9584         # unlink a file having nlink > 1 (changelog flag 0x0)
9585         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9586         rm -f $DIR/$tdir/foobar_161c
9587         $LFS changelog $MDT0 | grep UNLNK
9588         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9589         $LFS changelog_clear $MDT0 $USER 0
9590         if [ x$flags != "x0x0" ]; then
9591                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9592                         $USER
9593                 error "flag $flags is not 0x0"
9594         fi
9595         echo "unlink a file having nlink > 1," \
9596                 "changelog record has flags of $flags"
9597         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9598 }
9599 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9600
9601 check_path() {
9602     local expected=$1
9603     shift
9604     local fid=$2
9605
9606     local path=$(${LFS} fid2path $*)
9607     RC=$?
9608
9609     if [ $RC -ne 0 ]; then
9610         err17935 "path looked up of $expected failed. Error $RC"
9611         return $RC
9612     elif [ "${path}" != "${expected}" ]; then
9613         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9614         return 2
9615     fi
9616     echo "fid $fid resolves to path $path (expected $expected)"
9617 }
9618
9619 test_162() {
9620         # Make changes to filesystem
9621         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9622         test_mkdir -p $DIR/$tdir/d2
9623         touch $DIR/$tdir/d2/$tfile
9624         touch $DIR/$tdir/d2/x1
9625         touch $DIR/$tdir/d2/x2
9626         test_mkdir -p $DIR/$tdir/d2/a/b/c
9627         test_mkdir -p $DIR/$tdir/d2/p/q/r
9628         # regular file
9629         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9630         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9631
9632         # softlink
9633         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9634         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9635         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9636
9637         # softlink to wrong file
9638         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9639         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9640         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9641
9642         # hardlink
9643         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9644         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9645         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9646         # fid2path dir/fsname should both work
9647         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9648         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9649
9650         # hardlink count: check that there are 2 links
9651         # Doesnt work with CMD yet: 17935
9652         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9653                 err17935 "expected 2 links"
9654
9655         # hardlink indexing: remove the first link
9656         rm $DIR/$tdir/d2/p/q/r/hlink
9657         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9658
9659         return 0
9660 }
9661 run_test 162 "path lookup sanity"
9662
9663 test_169() {
9664         # do directio so as not to populate the page cache
9665         log "creating a 10 Mb file"
9666         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9667         log "starting reads"
9668         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9669         log "truncating the file"
9670         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9671         log "killing dd"
9672         kill %+ || true # reads might have finished
9673         echo "wait until dd is finished"
9674         wait
9675         log "removing the temporary file"
9676         rm -rf $DIR/$tfile || error "tmp file removal failed"
9677 }
9678 run_test 169 "parallel read and truncate should not deadlock"
9679
9680 test_170() {
9681         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9682         $LCTL clear     # bug 18514
9683         $LCTL debug_daemon start $TMP/${tfile}_log_good
9684         touch $DIR/$tfile
9685         $LCTL debug_daemon stop
9686         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9687                error "sed failed to read log_good"
9688
9689         $LCTL debug_daemon start $TMP/${tfile}_log_good
9690         rm -rf $DIR/$tfile
9691         $LCTL debug_daemon stop
9692
9693         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9694                error "lctl df log_bad failed"
9695
9696         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9697         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9698
9699         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9700         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9701
9702         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9703                 error "bad_line good_line1 good_line2 are empty"
9704
9705         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9706         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9707         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9708
9709         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9710         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9711         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9712
9713         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9714                 error "bad_line_new good_line_new are empty"
9715
9716         local expected_good=$((good_line1 + good_line2*2))
9717
9718         rm -f $TMP/${tfile}*
9719         # LU-231, short malformed line may not be counted into bad lines
9720         if [ $bad_line -ne $bad_line_new ] &&
9721                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9722                 error "expected $bad_line bad lines, but got $bad_line_new"
9723                 return 1
9724         fi
9725
9726         if [ $expected_good -ne $good_line_new ]; then
9727                 error "expected $expected_good good lines, but got $good_line_new"
9728                 return 2
9729         fi
9730         true
9731 }
9732 run_test 170 "test lctl df to handle corrupted log ====================="
9733
9734 test_171() { # bug20592
9735         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9736 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9737         $LCTL set_param fail_loc=0x50e
9738         $LCTL set_param fail_val=3000
9739         multiop_bg_pause $DIR/$tfile O_s || true
9740         local MULTIPID=$!
9741         kill -USR1 $MULTIPID
9742         # cause log dump
9743         sleep 3
9744         wait $MULTIPID
9745         if dmesg | grep "recursive fault"; then
9746                 error "caught a recursive fault"
9747         fi
9748         $LCTL set_param fail_loc=0
9749         true
9750 }
9751 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9752
9753 # it would be good to share it with obdfilter-survey/libecho code
9754 setup_obdecho_osc () {
9755         local rc=0
9756         local ost_nid=$1
9757         local obdfilter_name=$2
9758         echo "Creating new osc for $obdfilter_name on $ost_nid"
9759         # make sure we can find loopback nid
9760         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9761
9762         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9763                            ${obdfilter_name}_osc_UUID || rc=2; }
9764         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9765                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9766         return $rc
9767 }
9768
9769 cleanup_obdecho_osc () {
9770         local obdfilter_name=$1
9771         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9772         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9773         return 0
9774 }
9775
9776 obdecho_test() {
9777         local OBD=$1
9778         local node=$2
9779         local pages=${3:-64}
9780         local rc=0
9781         local id
9782         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9783         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9784                            rc=2; }
9785         if [ $rc -eq 0 ]; then
9786             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9787             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9788         fi
9789         echo "New object id is $id"
9790         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9791                            rc=4; }
9792         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9793                            "test_brw 10 w v $pages $id" || rc=4; }
9794         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9795                            rc=4; }
9796         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9797                                         "cleanup" || rc=5; }
9798         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9799                                         "detach" || rc=6; }
9800         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9801         return $rc
9802 }
9803
9804 test_180a() {
9805         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9806         remote_ost_nodsh && skip "remote OST with nodsh" && return
9807         local rc=0
9808         local rmmod_local=0
9809
9810         if ! module_loaded obdecho; then
9811             load_module obdecho/obdecho
9812             rmmod_local=1
9813         fi
9814
9815         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9816         local host=$(lctl get_param -n osc.$osc.import |
9817                              awk '/current_connection:/ {print $2}' )
9818         local target=$(lctl get_param -n osc.$osc.import |
9819                              awk '/target:/ {print $2}' )
9820         target=${target%_UUID}
9821
9822         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9823         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9824         [[ -n $target ]] && cleanup_obdecho_osc $target
9825         [ $rmmod_local -eq 1 ] && rmmod obdecho
9826         return $rc
9827 }
9828 run_test 180a "test obdecho on osc"
9829
9830 test_180b() {
9831         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9832         remote_ost_nodsh && skip "remote OST with nodsh" && return
9833         local rc=0
9834         local rmmod_remote=0
9835
9836         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9837                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9838                       "modprobe obdecho; }" && rmmod_remote=1
9839         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9840         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9841         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9842         return $rc
9843 }
9844 run_test 180b "test obdecho directly on obdfilter"
9845
9846 test_180c() { # LU-2598
9847         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9848         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9849                 skip "Need MDS version at least 2.4.0" && return
9850
9851         local rc=0
9852         local rmmod_remote=false
9853         local pages=16384 # 64MB bulk I/O RPC size
9854         local target
9855
9856         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9857                 rmmod_remote=true || error "failed to load module obdecho"
9858
9859         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9860         if [[ -n $target ]]; then
9861                 obdecho_test "$target" ost1 "$pages" ||
9862                         rc=${PIPESTATUS[0]}
9863         else
9864                 echo "there is no obdfilter target on ost1"
9865                 rc=2
9866         fi
9867         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9868         return $rc
9869 }
9870 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9871
9872 test_181() { # bug 22177
9873         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9874         # create enough files to index the directory
9875         createmany -o $DIR/$tdir/foobar 4000
9876         # print attributes for debug purpose
9877         lsattr -d .
9878         # open dir
9879         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9880         MULTIPID=$!
9881         # remove the files & current working dir
9882         unlinkmany $DIR/$tdir/foobar 4000
9883         rmdir $DIR/$tdir
9884         kill -USR1 $MULTIPID
9885         wait $MULTIPID
9886         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9887         return 0
9888 }
9889 run_test 181 "Test open-unlinked dir ========================"
9890
9891 test_182() {
9892         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9893         # disable MDC RPC lock wouldn't crash client
9894         local fcount=1000
9895         local tcount=4
9896
9897         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9898 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9899         $LCTL set_param fail_loc=0x804
9900
9901         for (( i=0; i < $tcount; i++ )) ; do
9902                 mkdir $DIR/$tdir/$i
9903                 createmany -o $DIR/$tdir/$i/f- $fcount &
9904         done
9905         wait
9906
9907         for (( i=0; i < $tcount; i++ )) ; do
9908                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9909         done
9910         wait
9911
9912         rm -rf $DIR/$tdir
9913
9914         $LCTL set_param fail_loc=0
9915 }
9916 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9917
9918 test_183() { # LU-2275
9919         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
9920                 skip "Need MDS version at least 2.3.56" && return
9921
9922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9923         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9924         echo aaa > $DIR/$tdir/$tfile
9925
9926 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9927         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9928
9929         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9930         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9931
9932         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9933
9934         # Flush negative dentry cache
9935         touch $DIR/$tdir/$tfile
9936
9937         # We are not checking for any leaked references here, they'll
9938         # become evident next time we do cleanup with module unload.
9939         rm -rf $DIR/$tdir
9940 }
9941 run_test 183 "No crash or request leak in case of strange dispositions ========"
9942
9943 # test suite 184 is for LU-2016, LU-2017
9944 test_184a() {
9945         check_swap_layouts_support && return 0
9946
9947         dir0=$DIR/$tdir/$testnum
9948         test_mkdir -p $dir0 || error "creating dir $dir0"
9949         ref1=/etc/passwd
9950         ref2=/etc/group
9951         file1=$dir0/f1
9952         file2=$dir0/f2
9953         $SETSTRIPE -c1 $file1
9954         cp $ref1 $file1
9955         $SETSTRIPE -c2 $file2
9956         cp $ref2 $file2
9957         gen1=$($GETSTRIPE -g $file1)
9958         gen2=$($GETSTRIPE -g $file2)
9959
9960         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
9961         gen=$($GETSTRIPE -g $file1)
9962         [[ $gen1 != $gen ]] ||
9963                 "Layout generation on $file1 does not change"
9964         gen=$($GETSTRIPE -g $file2)
9965         [[ $gen2 != $gen ]] ||
9966                 "Layout generation on $file2 does not change"
9967
9968         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
9969         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
9970 }
9971 run_test 184a "Basic layout swap"
9972
9973 test_184b() {
9974         check_swap_layouts_support && return 0
9975
9976         dir0=$DIR/$tdir/$testnum
9977         mkdir -p $dir0 || error "creating dir $dir0"
9978         file1=$dir0/f1
9979         file2=$dir0/f2
9980         file3=$dir0/f3
9981         dir1=$dir0/d1
9982         dir2=$dir0/d2
9983         mkdir $dir1 $dir2
9984         $SETSTRIPE -c1 $file1
9985         $SETSTRIPE -c2 $file2
9986         $SETSTRIPE -c1 $file3
9987         chown $RUNAS_ID $file3
9988         gen1=$($GETSTRIPE -g $file1)
9989         gen2=$($GETSTRIPE -g $file2)
9990
9991         $LFS swap_layouts $dir1 $dir2 &&
9992                 error "swap of directories layouts should fail"
9993         $LFS swap_layouts $dir1 $file1 &&
9994                 error "swap of directory and file layouts should fail"
9995         $RUNAS $LFS swap_layouts $file1 $file2 &&
9996                 error "swap of file we cannot write should fail"
9997         $LFS swap_layouts $file1 $file3 &&
9998                 error "swap of file with different owner should fail"
9999         /bin/true # to clear error code
10000 }
10001 run_test 184b "Forbidden layout swap (will generate errors)"
10002
10003 test_184c() {
10004         check_swap_layouts_support && return 0
10005
10006         local dir0=$DIR/$tdir/$testnum
10007         mkdir -p $dir0 || error "creating dir $dir0"
10008
10009         local ref1=$dir0/ref1
10010         local ref2=$dir0/ref2
10011         local file1=$dir0/file1
10012         local file2=$dir0/file2
10013         # create a file large enough for the concurent test
10014         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10015         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10016         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10017
10018         cp $ref2 $file2
10019         dd if=$ref1 of=$file1 bs=16k &
10020         local DD_PID=$!
10021
10022         # Make sure dd starts to copy file
10023         while [ ! -f $file1 ]; do sleep 0.1; done
10024
10025         $LFS swap_layouts $file1 $file2
10026         local rc=$?
10027         wait $DD_PID
10028         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10029         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10030
10031         # how many bytes copied before swapping layout
10032         local copied=`stat -c %s $file2`
10033         local remaining=`stat -c %s $ref1`
10034         remaining=$((remaining - copied))
10035         echo "Copied $copied bytes before swapping layout..."
10036
10037         cmp -n $copied $file1 $ref2 | grep differ &&
10038                 error "Content mismatch [0, $copied) of ref2 and file1"
10039         cmp -n $copied $file2 $ref1 ||
10040                 error "Content mismatch [0, $copied) of ref1 and file2"
10041         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10042                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10043
10044         # clean up
10045         rm -f $ref1 $ref2 $file1 $file2
10046 }
10047 run_test 184c "Concurrent write and layout swap"
10048
10049 test_184d() {
10050         check_swap_layouts_support && return 0
10051
10052         local file1=$DIR/$tdir/$tfile-1
10053         local file2=$DIR/$tdir/$tfile-2
10054         local file3=$DIR/$tdir/$tfile-3
10055         local lovea1
10056         local lovea2
10057
10058         mkdir -p $DIR/$tdir
10059         touch $file1 || error "create $file1 failed"
10060         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10061                 error "create $file2 failed"
10062         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10063                 error "create $file3 failed"
10064         lovea1=$($LFS getstripe $file1 | sed 1d)
10065
10066         $LFS swap_layouts $file2 $file3 ||
10067                 error "swap $file2 $file3 layouts failed"
10068         $LFS swap_layouts $file1 $file2 ||
10069                 error "swap $file1 $file2 layouts failed"
10070
10071         lovea2=$($LFS getstripe $file2 | sed 1d)
10072         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10073
10074         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10075         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10076 }
10077 run_test 184d "allow stripeless layouts swap"
10078
10079
10080 test_185() { # LU-2441
10081         # LU-3553 - no volatile file support in old servers
10082         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10083                 { skip "Need MDS version at least 2.3.60"; return 0; }
10084
10085         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10086         touch $DIR/$tdir/spoo
10087         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10088         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10089                 error "cannot create/write a volatile file"
10090         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10091                 error "FID is still valid after close"
10092
10093         multiop_bg_pause $DIR/$tdir vVw4096_c
10094         local multi_pid=$!
10095
10096         local OLD_IFS=$IFS
10097         IFS=":"
10098         local fidv=($fid)
10099         IFS=$OLD_IFS
10100         # assume that the next FID for this client is sequential, since stdout
10101         # is unfortunately eaten by multiop_bg_pause
10102         local n=$((${fidv[1]} + 1))
10103         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10104         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10105                 error "FID is missing before close"
10106         kill -USR1 $multi_pid
10107         # 1 second delay, so if mtime change we will see it
10108         sleep 1
10109         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10110         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10111 }
10112 run_test 185 "Volatile file support"
10113
10114 test_187a() {
10115         local dir0=$DIR/$tdir/$testnum
10116         mkdir -p $dir0 || error "creating dir $dir0"
10117
10118         local file=$dir0/file1
10119         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10120         local dv1=$($LFS data_version $file)
10121         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10122         local dv2=$($LFS data_version $file)
10123         [[ $dv1 != $dv2 ]] ||
10124                 error "data version did not change on write $dv1 == $dv2"
10125
10126         # clean up
10127         rm -f $file1
10128 }
10129 run_test 187a "Test data version change"
10130
10131 test_187b() {
10132         local dir0=$DIR/$tdir/$testnum
10133         mkdir -p $dir0 || error "creating dir $dir0"
10134
10135         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10136         [[ ${DV[0]} != ${DV[1]} ]] ||
10137                 error "data version did not change on write"\
10138                       " ${DV[0]} == ${DV[1]}"
10139
10140         # clean up
10141         rm -f $file1
10142 }
10143 run_test 187b "Test data version change on volatile file"
10144
10145 # OST pools tests
10146 check_file_in_pool()
10147 {
10148         local file=$1
10149         local pool=$2
10150         local tlist="$3"
10151         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10152         for i in $res
10153         do
10154                 for t in $tlist ; do
10155                         [ "$i" -eq "$t" ] && continue 2
10156                 done
10157
10158                 echo "pool list: $tlist"
10159                 echo "striping: $res"
10160                 error_noexit "$file not allocated in $pool"
10161                 return 1
10162         done
10163         return 0
10164 }
10165
10166 pool_add() {
10167         echo "Creating new pool"
10168         local pool=$1
10169
10170         create_pool $FSNAME.$pool ||
10171                 { error_noexit "No pool created, result code $?"; return 1; }
10172         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10173                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10174 }
10175
10176 pool_add_targets() {
10177         echo "Adding targets to pool"
10178         local pool=$1
10179         local first=$2
10180         local last=$3
10181         local step=${4:-1}
10182
10183         local list=$(seq $first $step $last)
10184
10185         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10186         do_facet mgs $LCTL pool_add \
10187                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10188         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10189                         | sort -u | tr '\n' ' ' " "$t" || { 
10190                 error_noexit "Add to pool failed"
10191                 return 1
10192         }
10193         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10194         local addcount=$(((last - first) / step + 1))
10195         [ $lfscount -eq $addcount ] || {
10196                 error_noexit "lfs pool_list bad ost count" \
10197                                                 "$lfscount != $addcount"
10198                 return 2
10199         }
10200 }
10201
10202 pool_set_dir() {
10203         local pool=$1
10204         local tdir=$2
10205         echo "Setting pool on directory $tdir"
10206
10207         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10208
10209         error_noexit "Cannot set pool $pool to $tdir"
10210         return 1
10211 }
10212
10213 pool_check_dir() {
10214         local pool=$1
10215         local tdir=$2
10216         echo "Checking pool on directory $tdir"
10217
10218         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10219         [ "$res" = "$pool" ] && return 0
10220
10221         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10222         return 1
10223 }
10224
10225 pool_dir_rel_path() {
10226         echo "Testing relative path works well"
10227         local pool=$1
10228         local tdir=$2
10229         local root=$3
10230
10231         mkdir -p $root/$tdir/$tdir
10232         cd $root/$tdir
10233         pool_set_dir $pool $tdir          || return 1
10234         pool_set_dir $pool ./$tdir        || return 2
10235         pool_set_dir $pool ../$tdir       || return 3
10236         pool_set_dir $pool ../$tdir/$tdir || return 4
10237         rm -rf $tdir; cd - > /dev/null
10238 }
10239
10240 pool_alloc_files() {
10241         echo "Checking files allocation from directory pool"
10242         local pool=$1
10243         local tdir=$2
10244         local count=$3
10245         local tlist="$4"
10246
10247         local failed=0
10248         for i in $(seq -w 1 $count)
10249         do
10250                 local file=$tdir/file-$i
10251                 touch $file
10252                 check_file_in_pool $file $pool "$tlist" || \
10253                         failed=$((failed + 1))
10254         done
10255         [ "$failed" = 0 ] && return 0
10256
10257         error_noexit "$failed files not allocated in $pool"
10258         return 1
10259 }
10260
10261 pool_create_files() {
10262         echo "Creating files in pool"
10263         local pool=$1
10264         local tdir=$2
10265         local count=$3
10266         local tlist="$4"
10267
10268         mkdir -p $tdir
10269         local failed=0
10270         for i in $(seq -w 1 $count)
10271         do
10272                 local file=$tdir/spoo-$i
10273                 $SETSTRIPE -p $pool $file
10274                 check_file_in_pool $file $pool "$tlist" || \
10275                         failed=$((failed + 1))
10276         done
10277         [ "$failed" = 0 ] && return 0
10278
10279         error_noexit "$failed files not allocated in $pool"
10280         return 1
10281 }
10282
10283 pool_lfs_df() {
10284         echo "Checking 'lfs df' output"
10285         local pool=$1
10286
10287         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10288                         tr '\n' ' ')
10289         local res=$($LFS df --pool $FSNAME.$pool |
10290                         awk '{print $1}' |
10291                         grep "$FSNAME-OST" |
10292                         tr '\n' ' ')
10293         [ "$res" = "$t" ] && return 0
10294
10295         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10296         return 1
10297 }
10298
10299 pool_file_rel_path() {
10300         echo "Creating files in a pool with relative pathname"
10301         local pool=$1
10302         local tdir=$2
10303
10304         mkdir -p $tdir ||
10305                 { error_noexit "unable to create $tdir"; return 1 ; }
10306         local file="/..$tdir/$tfile-1"
10307         $SETSTRIPE -p $pool $file ||
10308                 { error_noexit "unable to create $file" ; return 2 ; }
10309
10310         cd $tdir
10311         $SETSTRIPE -p $pool $tfile-2 || {
10312                 error_noexit "unable to create $tfile-2 in $tdir"
10313                 return 3
10314         }
10315 }
10316
10317 pool_remove_first_target() {
10318         echo "Removing first target from a pool"
10319         local pool=$1
10320
10321         local pname="lov.$FSNAME-*.pools.$pool"
10322         local t=$($LCTL get_param -n $pname | head -1)
10323         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10324         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10325                 error_noexit "$t not removed from $FSNAME.$pool"
10326                 return 1
10327         }
10328 }
10329
10330 pool_remove_all_targets() {
10331         echo "Removing all targets from pool"
10332         local pool=$1
10333         local file=$2
10334         local pname="lov.$FSNAME-*.pools.$pool"
10335         for t in $($LCTL get_param -n $pname | sort -u)
10336         do
10337                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10338         done
10339         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10340                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10341                 return 1
10342         }
10343         # striping on an empty/nonexistant pool should fall back 
10344         # to "pool of everything"
10345         touch $file || {
10346                 error_noexit "failed to use fallback striping for empty pool"
10347                 return 2
10348         }
10349         # setstripe on an empty pool should fail
10350         $SETSTRIPE -p $pool $file 2>/dev/null && {
10351                 error_noexit "expected failure when creating file" \
10352                                                         "with empty pool"
10353                 return 3
10354         }
10355         return 0
10356 }
10357
10358 pool_remove() {
10359         echo "Destroying pool"
10360         local pool=$1
10361         local file=$2
10362
10363         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10364
10365         sleep 2
10366         # striping on an empty/nonexistant pool should fall back 
10367         # to "pool of everything"
10368         touch $file || {
10369                 error_noexit "failed to use fallback striping for missing pool"
10370                 return 1
10371         }
10372         # setstripe on an empty pool should fail
10373         $SETSTRIPE -p $pool $file 2>/dev/null && {
10374                 error_noexit "expected failure when creating file" \
10375                                                         "with missing pool"
10376                 return 2
10377         }
10378
10379         # get param should return err once pool is gone
10380         if wait_update $HOSTNAME "lctl get_param -n \
10381                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10382         then
10383                 remove_pool_from_list $FSNAME.$pool
10384                 return 0
10385         fi
10386         error_noexit "Pool $FSNAME.$pool is not destroyed"
10387         return 3
10388 }
10389
10390 test_200() {
10391         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10392         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10393
10394         local POOL=${POOL:-cea1}
10395         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10396         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10397         # Pool OST targets
10398         local first_ost=0
10399         local last_ost=$(($OSTCOUNT - 1))
10400         local ost_step=2
10401         local ost_list=$(seq $first_ost $ost_step $last_ost)
10402         local ost_range="$first_ost $last_ost $ost_step"
10403         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10404         local file_dir=$POOL_ROOT/file_tst
10405
10406         local rc=0
10407         while : ; do
10408                 # former test_200a test_200b
10409                 pool_add $POOL                          || { rc=$? ; break; }
10410                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10411                 # former test_200c test_200d
10412                 mkdir -p $test_path
10413                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10414                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10415                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10416                                                         || { rc=$? ; break; }
10417                 # former test_200e test_200f
10418                 local files=$((OSTCOUNT*3))
10419                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10420                                                         || { rc=$? ; break; }
10421                 pool_create_files $POOL $file_dir $files "$ost_list" \
10422                                                         || { rc=$? ; break; }
10423                 # former test_200g test_200h
10424                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10425                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10426
10427                 # former test_201a test_201b test_201c
10428                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10429
10430                 local f=$test_path/$tfile
10431                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10432                 pool_remove $POOL $f                    || { rc=$? ; break; }
10433                 break
10434         done
10435
10436         cleanup_pools
10437         return $rc
10438 }
10439 run_test 200 "OST pools"
10440
10441 # usage: default_attr <count | size | offset>
10442 default_attr() {
10443         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10444 }
10445
10446 # usage: check_default_stripe_attr
10447 check_default_stripe_attr() {
10448         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10449         case $1 in
10450         --stripe-count|--count)
10451                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10452         --stripe-size|--size)
10453                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10454         --stripe-index|--index)
10455                 EXPECTED=-1;;
10456         *)
10457                 error "unknown getstripe attr '$1'"
10458         esac
10459
10460         [ $ACTUAL != $EXPECTED ] &&
10461                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10462 }
10463
10464 test_204a() {
10465         test_mkdir -p $DIR/$tdir
10466         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10467
10468         check_default_stripe_attr --stripe-count
10469         check_default_stripe_attr --stripe-size
10470         check_default_stripe_attr --stripe-index
10471
10472         return 0
10473 }
10474 run_test 204a "Print default stripe attributes ================="
10475
10476 test_204b() {
10477         test_mkdir -p $DIR/$tdir
10478         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10479
10480         check_default_stripe_attr --stripe-size
10481         check_default_stripe_attr --stripe-index
10482
10483         return 0
10484 }
10485 run_test 204b "Print default stripe size and offset  ==========="
10486
10487 test_204c() {
10488         test_mkdir -p $DIR/$tdir
10489         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10490
10491         check_default_stripe_attr --stripe-count
10492         check_default_stripe_attr --stripe-index
10493
10494         return 0
10495 }
10496 run_test 204c "Print default stripe count and offset ==========="
10497
10498 test_204d() {
10499         test_mkdir -p $DIR/$tdir
10500         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10501
10502         check_default_stripe_attr --stripe-count
10503         check_default_stripe_attr --stripe-size
10504
10505         return 0
10506 }
10507 run_test 204d "Print default stripe count and size ============="
10508
10509 test_204e() {
10510         test_mkdir -p $DIR/$tdir
10511         $SETSTRIPE -d $DIR/$tdir
10512
10513         check_default_stripe_attr --stripe-count --raw
10514         check_default_stripe_attr --stripe-size --raw
10515         check_default_stripe_attr --stripe-index --raw
10516
10517         return 0
10518 }
10519 run_test 204e "Print raw stripe attributes ================="
10520
10521 test_204f() {
10522         test_mkdir -p $DIR/$tdir
10523         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10524
10525         check_default_stripe_attr --stripe-size --raw
10526         check_default_stripe_attr --stripe-index --raw
10527
10528         return 0
10529 }
10530 run_test 204f "Print raw stripe size and offset  ==========="
10531
10532 test_204g() {
10533         test_mkdir -p $DIR/$tdir
10534         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10535
10536         check_default_stripe_attr --stripe-count --raw
10537         check_default_stripe_attr --stripe-index --raw
10538
10539         return 0
10540 }
10541 run_test 204g "Print raw stripe count and offset ==========="
10542
10543 test_204h() {
10544         test_mkdir -p $DIR/$tdir
10545         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10546
10547         check_default_stripe_attr --stripe-count --raw
10548         check_default_stripe_attr --stripe-size --raw
10549
10550         return 0
10551 }
10552 run_test 204h "Print raw stripe count and size ============="
10553
10554 # Figure out which job scheduler is being used, if any,
10555 # or use a fake one
10556 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10557         JOBENV=SLURM_JOB_ID
10558 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10559         JOBENV=LSB_JOBID
10560 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10561         JOBENV=PBS_JOBID
10562 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10563         JOBENV=LOADL_STEP_ID
10564 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10565         JOBENV=JOB_ID
10566 else
10567         JOBENV=FAKE_JOBID
10568 fi
10569
10570 verify_jobstats() {
10571         local cmd=$1
10572         local target=$2
10573
10574         # clear old jobstats
10575         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10576         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10577
10578         # use a new JobID for this test, or we might see an old one
10579         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10580
10581         JOBVAL=${!JOBENV}
10582         log "Test: $cmd"
10583         log "Using JobID environment variable $JOBENV=$JOBVAL"
10584
10585         if [ $JOBENV = "FAKE_JOBID" ]; then
10586                 FAKE_JOBID=$JOBVAL $cmd
10587         else
10588                 $cmd
10589         fi
10590
10591         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10592                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10593                 do_facet $FACET lctl get_param mdt.*.job_stats |
10594                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10595         fi
10596         if [ "$target" = "ost" -o "$target" = "both" ]; then
10597                 FACET=ost1
10598                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10599                         grep $JOBVAL || error "No job stats found on OST $FACET"
10600         fi
10601 }
10602
10603 jobstats_set() {
10604         trap 0
10605         NEW_JOBENV=${1:-$OLD_JOBENV}
10606         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10607         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10608 }
10609
10610 test_205() { # Job stats
10611         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10612         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10613                 skip "Server doesn't support jobstats" && return 0
10614
10615         local cmd
10616         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10617         if [ $OLD_JOBENV != $JOBENV ]; then
10618                 jobstats_set $JOBENV
10619                 trap jobstats_set EXIT
10620         fi
10621
10622         # mkdir
10623         cmd="mkdir $DIR/$tfile"
10624         verify_jobstats "$cmd" "mdt"
10625         # rmdir
10626         cmd="rm -fr $DIR/$tfile"
10627         verify_jobstats "$cmd" "mdt"
10628         # mknod
10629         cmd="mknod $DIR/$tfile c 1 3"
10630         verify_jobstats "$cmd" "mdt"
10631         # unlink
10632         cmd="rm -f $DIR/$tfile"
10633         verify_jobstats "$cmd" "mdt"
10634         # open & close
10635         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10636         verify_jobstats "$cmd" "mdt"
10637         # setattr
10638         cmd="touch $DIR/$tfile"
10639         verify_jobstats "$cmd" "both"
10640         # write
10641         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10642         verify_jobstats "$cmd" "ost"
10643         # read
10644         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10645         verify_jobstats "$cmd" "ost"
10646         # truncate
10647         cmd="$TRUNCATE $DIR/$tfile 0"
10648         verify_jobstats "$cmd" "both"
10649         # rename
10650         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10651         verify_jobstats "$cmd" "mdt"
10652
10653         # cleanup
10654         rm -f $DIR/jobstats_test_rename
10655
10656         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10657 }
10658 run_test 205 "Verify job stats"
10659
10660 # LU-1480, LU-1773 and LU-1657
10661 test_206() {
10662         mkdir -p $DIR/$tdir
10663         lfs setstripe -c -1 $DIR/$tdir
10664 #define OBD_FAIL_LOV_INIT 0x1403
10665         $LCTL set_param fail_loc=0xa0001403
10666         $LCTL set_param fail_val=1
10667         touch $DIR/$tdir/$tfile || true
10668 }
10669 run_test 206 "fail lov_init_raid0() doesn't lbug"
10670
10671 test_207a() {
10672         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10673         local fsz=`stat -c %s $DIR/$tfile`
10674         cancel_lru_locks mdc
10675
10676         # do not return layout in getattr intent
10677 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10678         $LCTL set_param fail_loc=0x170
10679         local sz=`stat -c %s $DIR/$tfile`
10680
10681         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10682
10683         rm -rf $DIR/$tfile
10684 }
10685 run_test 207a "can refresh layout at glimpse"
10686
10687 test_207b() {
10688         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10689         local cksum=`md5sum $DIR/$tfile`
10690         local fsz=`stat -c %s $DIR/$tfile`
10691         cancel_lru_locks mdc
10692         cancel_lru_locks osc
10693
10694         # do not return layout in getattr intent
10695 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10696         $LCTL set_param fail_loc=0x171
10697
10698         # it will refresh layout after the file is opened but before read issues
10699         echo checksum is "$cksum"
10700         echo "$cksum" |md5sum -c --quiet || error "file differs"
10701
10702         rm -rf $DIR/$tfile
10703 }
10704 run_test 207b "can refresh layout at open"
10705
10706 test_208() {
10707         # FIXME: in this test suite, only RD lease is used. This is okay
10708         # for now as only exclusive open is supported. After generic lease
10709         # is done, this test suite should be revised. - Jinshan
10710
10711         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10712                 { skip "Need MDS version at least 2.4.52"; return 0; }
10713
10714         echo "==== test 1: verify get lease work"
10715         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10716
10717         echo "==== test 2: verify lease can be broken by upcoming open"
10718         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10719         local PID=$!
10720         sleep 1
10721
10722         $MULTIOP $DIR/$tfile oO_RDONLY:c
10723         kill -USR1 $PID && wait $PID || error "break lease error"
10724
10725         echo "==== test 3: verify lease can't be granted if an open already exists"
10726         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10727         local PID=$!
10728         sleep 1
10729
10730         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10731         kill -USR1 $PID && wait $PID || error "open file error"
10732
10733         echo "==== test 4: lease can sustain over recovery"
10734         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10735         PID=$!
10736         sleep 1
10737
10738         fail mds1
10739
10740         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10741
10742         echo "==== test 5: lease broken can't be regained by replay"
10743         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10744         PID=$!
10745         sleep 1
10746
10747         # open file to break lease and then recovery
10748         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10749         fail mds1
10750
10751         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10752
10753         rm -f $DIR/$tfile
10754 }
10755 run_test 208 "Exclusive open"
10756
10757 test_212() {
10758         size=`date +%s`
10759         size=$((size % 8192 + 1))
10760         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10761         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10762         rm -f $DIR/f212 $DIR/f212.xyz
10763 }
10764 run_test 212 "Sendfile test ============================================"
10765
10766 test_213() {
10767         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10768         cancel_lru_locks osc
10769         lctl set_param fail_loc=0x8000040f
10770         # generate a read lock
10771         cat $DIR/$tfile > /dev/null
10772         # write to the file, it will try to cancel the above read lock.
10773         cat /etc/hosts >> $DIR/$tfile
10774 }
10775 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10776
10777 test_214() { # for bug 20133
10778         test_mkdir -p $DIR/d214p/d214c
10779         for (( i=0; i < 340; i++ )) ; do
10780                 touch $DIR/d214p/d214c/a$i
10781         done
10782
10783         ls -l $DIR/d214p || error "ls -l $DIR/d214p failed"
10784         mv $DIR/d214p/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10785         ls $DIR/d214c || error "ls $DIR/d214c failed"
10786         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10787 }
10788 run_test 214 "hash-indexed directory test - bug 20133"
10789
10790 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10791 create_lnet_proc_files() {
10792         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10793         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10794
10795         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10796         rm -f "$TMP/lnet_$1.sys_tmp"
10797 }
10798
10799 # counterpart of create_lnet_proc_files
10800 remove_lnet_proc_files() {
10801         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10802 }
10803
10804 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10805 # 3rd arg as regexp for body
10806 check_lnet_proc_stats() {
10807         local l=$(cat "$TMP/lnet_$1" |wc -l)
10808         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10809
10810         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10811 }
10812
10813 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10814 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10815 # optional and can be regexp for 2nd line (lnet.routes case)
10816 check_lnet_proc_entry() {
10817         local blp=2            # blp stands for 'position of 1st line of body'
10818         [ "$5" = "" ] || blp=3 # lnet.routes case
10819
10820         local l=$(cat "$TMP/lnet_$1" |wc -l)
10821         # subtracting one from $blp because the body can be empty
10822         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10823
10824         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10825                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10826
10827         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10828                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10829
10830         # bail out if any unexpected line happened
10831         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10832         [ "$?" != 0 ] || error "$2 misformatted"
10833 }
10834
10835 test_215() { # for bugs 18102, 21079, 21517
10836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10837         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10838         local P='[1-9][0-9]*'           # positive numeric
10839         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10840         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10841         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10842         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10843
10844         local L1 # regexp for 1st line
10845         local L2 # regexp for 2nd line (optional)
10846         local BR # regexp for the rest (body)
10847
10848         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10849         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10850         create_lnet_proc_files "stats"
10851         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10852         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10853         remove_lnet_proc_files "stats"
10854
10855         # /proc/sys/lnet/routes should look like this:
10856         # Routing disabled/enabled
10857         # net hops priority state router
10858         # where net is a string like tcp0, hops > 0, priority >= 0,
10859         # state is up/down,
10860         # router is a string like 192.168.1.1@tcp2
10861         L1="^Routing (disabled|enabled)$"
10862         L2="^net +hops +priority +state +router$"
10863         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
10864         create_lnet_proc_files "routes"
10865         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10866         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10867         remove_lnet_proc_files "routes"
10868
10869         # /proc/sys/lnet/routers should look like this:
10870         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10871         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10872         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10873         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10874         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10875         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10876         create_lnet_proc_files "routers"
10877         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10878         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10879         remove_lnet_proc_files "routers"
10880
10881         # /proc/sys/lnet/peers should look like this:
10882         # nid refs state last max rtr min tx min queue
10883         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10884         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10885         # numeric (0 or >0 or <0), queue >= 0.
10886         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10887         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10888         create_lnet_proc_files "peers"
10889         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10890         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10891         remove_lnet_proc_files "peers"
10892
10893         # /proc/sys/lnet/buffers  should look like this:
10894         # pages count credits min
10895         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10896         L1="^pages +count +credits +min$"
10897         BR="^ +$N +$N +$I +$I$"
10898         create_lnet_proc_files "buffers"
10899         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10900         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10901         remove_lnet_proc_files "buffers"
10902
10903         # /proc/sys/lnet/nis should look like this:
10904         # nid status alive refs peer rtr max tx min
10905         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10906         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10907         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10908         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10909         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10910         create_lnet_proc_files "nis"
10911         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10912         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10913         remove_lnet_proc_files "nis"
10914
10915         # can we successfully write to /proc/sys/lnet/stats?
10916         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10917         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10918 }
10919 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10920
10921 test_216() { # bug 20317
10922         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10923         remote_ost_nodsh && skip "remote OST with nodsh" && return
10924
10925         local node
10926         local facets=$(get_facets OST)
10927         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10928
10929         save_lustre_params client "osc.*.contention_seconds" > $p
10930         save_lustre_params $facets \
10931                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10932         save_lustre_params $facets \
10933                 "ldlm.namespaces.filter-*.contended_locks" >> $p
10934         save_lustre_params $facets \
10935                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
10936         clear_osc_stats
10937
10938         # agressive lockless i/o settings
10939         for node in $(osts_nodes); do
10940                 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'
10941         done
10942         lctl set_param -n osc.*.contention_seconds 60
10943
10944         $DIRECTIO write $DIR/$tfile 0 10 4096
10945         $CHECKSTAT -s 40960 $DIR/$tfile
10946
10947         # disable lockless i/o
10948         for node in $(osts_nodes); do
10949                 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'
10950         done
10951         lctl set_param -n osc.*.contention_seconds 0
10952         clear_osc_stats
10953
10954         dd if=/dev/zero of=$DIR/$tfile count=0
10955         $CHECKSTAT -s 0 $DIR/$tfile
10956
10957         restore_lustre_params <$p
10958         rm -f $p
10959         rm $DIR/$tfile
10960 }
10961 run_test 216 "check lockless direct write works and updates file size and kms correctly"
10962
10963 test_217() { # bug 22430
10964         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10965         local node
10966         local nid
10967
10968         for node in $(nodes_list); do
10969                 nid=$(host_nids_address $node $NETTYPE)
10970                 if [[ $nid = *-* ]] ; then
10971                         echo "lctl ping $nid@$NETTYPE"
10972                         lctl ping $nid@$NETTYPE
10973                 else
10974                         echo "skipping $node (no hyphen detected)"
10975                 fi
10976         done
10977 }
10978 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
10979
10980 test_218() {
10981        # do directio so as not to populate the page cache
10982        log "creating a 10 Mb file"
10983        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
10984        log "starting reads"
10985        dd if=$DIR/$tfile of=/dev/null bs=4096 &
10986        log "truncating the file"
10987        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
10988        log "killing dd"
10989        kill %+ || true # reads might have finished
10990        echo "wait until dd is finished"
10991        wait
10992        log "removing the temporary file"
10993        rm -rf $DIR/$tfile || error "tmp file removal failed"
10994 }
10995 run_test 218 "parallel read and truncate should not deadlock ======================="
10996
10997 test_219() {
10998         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10999         # write one partial page
11000         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11001         # set no grant so vvp_io_commit_write will do sync write
11002         $LCTL set_param fail_loc=0x411
11003         # write a full page at the end of file
11004         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11005
11006         $LCTL set_param fail_loc=0
11007         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11008         $LCTL set_param fail_loc=0x411
11009         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11010 }
11011 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11012
11013 test_220() { #LU-325
11014         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11015         remote_ost_nodsh && skip "remote OST with nodsh" && return
11016         local OSTIDX=0
11017
11018         test_mkdir -p $DIR/$tdir
11019         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11020                 awk '{print $2}' | sed -e 's/_UUID$//')
11021
11022         # on the mdt's osc
11023         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11024         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11025                         osc.$mdtosc_proc1.prealloc_last_id)
11026         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11027                         osc.$mdtosc_proc1.prealloc_next_id)
11028
11029         $LFS df -i
11030
11031         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11032         #define OBD_FAIL_OST_ENOINO              0x229
11033         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11034         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11035         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11036
11037         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11038
11039         MDSOBJS=$((last_id - next_id))
11040         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11041
11042         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11043         echo "OST still has $count kbytes free"
11044
11045         echo "create $MDSOBJS files @next_id..."
11046         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11047
11048         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11049                         osc.$mdtosc_proc1.prealloc_last_id)
11050         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11051                         osc.$mdtosc_proc1.prealloc_next_id)
11052
11053         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11054         $LFS df -i
11055
11056         echo "cleanup..."
11057
11058         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11059         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11060
11061         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11062         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11063         echo "unlink $MDSOBJS files @$next_id..."
11064         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11065 }
11066 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11067
11068 test_221() {
11069         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11070         dd if=`which date` of=$MOUNT/date oflag=sync
11071         chmod +x $MOUNT/date
11072
11073         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11074         $LCTL set_param fail_loc=0x80001401
11075
11076         $MOUNT/date > /dev/null
11077         rm -f $MOUNT/date
11078 }
11079 run_test 221 "make sure fault and truncate race to not cause OOM"
11080
11081 test_222a () {
11082         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11083        rm -rf $DIR/$tdir
11084        test_mkdir -p $DIR/$tdir
11085        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11086        createmany -o $DIR/$tdir/$tfile 10
11087        cancel_lru_locks mdc
11088        cancel_lru_locks osc
11089        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11090        $LCTL set_param fail_loc=0x31a
11091        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11092        $LCTL set_param fail_loc=0
11093        rm -r $DIR/$tdir
11094 }
11095 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11096
11097 test_222b () {
11098         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11099        rm -rf $DIR/$tdir
11100        test_mkdir -p $DIR/$tdir
11101        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11102        createmany -o $DIR/$tdir/$tfile 10
11103        cancel_lru_locks mdc
11104        cancel_lru_locks osc
11105        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11106        $LCTL set_param fail_loc=0x31a
11107        rm -r $DIR/$tdir || "AGL for rmdir failed"
11108        $LCTL set_param fail_loc=0
11109 }
11110 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11111
11112 test_223 () {
11113         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11114        rm -rf $DIR/$tdir
11115        test_mkdir -p $DIR/$tdir
11116        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11117        createmany -o $DIR/$tdir/$tfile 10
11118        cancel_lru_locks mdc
11119        cancel_lru_locks osc
11120        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11121        $LCTL set_param fail_loc=0x31b
11122        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11123        $LCTL set_param fail_loc=0
11124        rm -r $DIR/$tdir
11125 }
11126 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11127
11128 test_224a() { # LU-1039, MRP-303
11129         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11130         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11131         $LCTL set_param fail_loc=0x508
11132         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11133         $LCTL set_param fail_loc=0
11134         df $DIR
11135 }
11136 run_test 224a "Don't panic on bulk IO failure"
11137
11138 test_224b() { # LU-1039, MRP-303
11139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11140         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11141         cancel_lru_locks osc
11142         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11143         $LCTL set_param fail_loc=0x515
11144         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11145         $LCTL set_param fail_loc=0
11146         df $DIR
11147 }
11148 run_test 224b "Don't panic on bulk IO failure"
11149
11150 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11151 test_225a () {
11152         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11153         if [ -z ${MDSSURVEY} ]; then
11154               skip_env "mds-survey not found" && return
11155         fi
11156
11157         [ $MDSCOUNT -ge 2 ] &&
11158                 skip "skipping now for more than one MDT" && return
11159
11160        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11161             { skip "Need MDS version at least 2.2.51"; return; }
11162
11163        local mds=$(facet_host $SINGLEMDS)
11164        local target=$(do_nodes $mds 'lctl dl' | \
11165                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11166
11167        local cmd1="file_count=1000 thrhi=4"
11168        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11169        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11170        local cmd="$cmd1 $cmd2 $cmd3"
11171
11172        rm -f ${TMP}/mds_survey*
11173        echo + $cmd
11174        eval $cmd || error "mds-survey with zero-stripe failed"
11175        cat ${TMP}/mds_survey*
11176        rm -f ${TMP}/mds_survey*
11177 }
11178 run_test 225a "Metadata survey sanity with zero-stripe"
11179
11180 test_225b () {
11181         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11182
11183         if [ -z ${MDSSURVEY} ]; then
11184               skip_env "mds-survey not found" && return
11185         fi
11186         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11187             { skip "Need MDS version at least 2.2.51"; return; }
11188
11189         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11190               skip_env "Need to mount OST to test" && return
11191         fi
11192
11193         [ $MDSCOUNT -ge 2 ] &&
11194                 skip "skipping now for more than one MDT" && return
11195        local mds=$(facet_host $SINGLEMDS)
11196        local target=$(do_nodes $mds 'lctl dl' | \
11197                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11198
11199        local cmd1="file_count=1000 thrhi=4"
11200        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11201        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11202        local cmd="$cmd1 $cmd2 $cmd3"
11203
11204        rm -f ${TMP}/mds_survey*
11205        echo + $cmd
11206        eval $cmd || error "mds-survey with stripe_count failed"
11207        cat ${TMP}/mds_survey*
11208        rm -f ${TMP}/mds_survey*
11209 }
11210 run_test 225b "Metadata survey sanity with stripe_count = 1"
11211
11212 mcreate_path2fid () {
11213         local mode=$1
11214         local major=$2
11215         local minor=$3
11216         local name=$4
11217         local desc=$5
11218         local path=$DIR/$tdir/$name
11219         local fid
11220         local rc
11221         local fid_path
11222
11223         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11224                 error "cannot create $desc"
11225
11226         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11227         rc=$?
11228         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11229
11230         fid_path=$($LFS fid2path $MOUNT $fid)
11231         rc=$?
11232         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11233
11234         [ "$path" == "$fid_path" ] ||
11235                 error "fid2path returned $fid_path, expected $path"
11236
11237         echo "pass with $path and $fid"
11238 }
11239
11240 test_226a () {
11241         rm -rf $DIR/$tdir
11242         mkdir -p $DIR/$tdir
11243
11244         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11245         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11246         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11247         mcreate_path2fid 0040666 0 0 dir "directory"
11248         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11249         mcreate_path2fid 0100666 0 0 file "regular file"
11250         mcreate_path2fid 0120666 0 0 link "symbolic link"
11251         mcreate_path2fid 0140666 0 0 sock "socket"
11252 }
11253 run_test 226a "call path2fid and fid2path on files of all type"
11254
11255 test_226b () {
11256         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11257         rm -rf $DIR/$tdir
11258         local MDTIDX=1
11259
11260         mkdir -p $DIR/$tdir
11261         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11262                 error "create remote directory failed"
11263         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11264         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11265                                 "character special file (null)"
11266         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11267                                 "character special file (no device)"
11268         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11269         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11270                                 "block special file (loop)"
11271         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11272         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11273         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11274 }
11275 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11276
11277 # LU-1299 Executing or running ldd on a truncated executable does not
11278 # cause an out-of-memory condition.
11279 test_227() {
11280         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11281         dd if=`which date` of=$MOUNT/date bs=1k count=1
11282         chmod +x $MOUNT/date
11283
11284         $MOUNT/date > /dev/null
11285         ldd $MOUNT/date > /dev/null
11286         rm -f $MOUNT/date
11287 }
11288 run_test 227 "running truncated executable does not cause OOM"
11289
11290 # LU-1512 try to reuse idle OI blocks
11291 test_228a() {
11292         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11293         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11294                 skip "non-ldiskfs backend" && return
11295
11296         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11297         local myDIR=$DIR/$tdir
11298
11299         mkdir -p $myDIR
11300         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11301         $LCTL set_param fail_loc=0x80001002
11302         createmany -o $myDIR/t- 10000
11303         $LCTL set_param fail_loc=0
11304         # The guard is current the largest FID holder
11305         touch $myDIR/guard
11306         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11307                     tr -d '[')
11308         local IDX=$(($SEQ % 64))
11309
11310         do_facet $SINGLEMDS sync
11311         # Make sure journal flushed.
11312         sleep 6
11313         local blk1=$(do_facet $SINGLEMDS \
11314                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11315                      grep Blockcount | awk '{print $4}')
11316
11317         # Remove old files, some OI blocks will become idle.
11318         unlinkmany $myDIR/t- 10000
11319         # Create new files, idle OI blocks should be reused.
11320         createmany -o $myDIR/t- 2000
11321         do_facet $SINGLEMDS sync
11322         # Make sure journal flushed.
11323         sleep 6
11324         local blk2=$(do_facet $SINGLEMDS \
11325                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11326                      grep Blockcount | awk '{print $4}')
11327
11328         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11329 }
11330 run_test 228a "try to reuse idle OI blocks"
11331
11332 test_228b() {
11333         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11334         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11335                 skip "non-ldiskfs backend" && return
11336
11337         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11338         local myDIR=$DIR/$tdir
11339
11340         mkdir -p $myDIR
11341         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11342         $LCTL set_param fail_loc=0x80001002
11343         createmany -o $myDIR/t- 10000
11344         $LCTL set_param fail_loc=0
11345         # The guard is current the largest FID holder
11346         touch $myDIR/guard
11347         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11348                     tr -d '[')
11349         local IDX=$(($SEQ % 64))
11350
11351         do_facet $SINGLEMDS sync
11352         # Make sure journal flushed.
11353         sleep 6
11354         local blk1=$(do_facet $SINGLEMDS \
11355                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11356                      grep Blockcount | awk '{print $4}')
11357
11358         # Remove old files, some OI blocks will become idle.
11359         unlinkmany $myDIR/t- 10000
11360
11361         # stop the MDT
11362         stop $SINGLEMDS || error "Fail to stop MDT."
11363         # remount the MDT
11364         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11365
11366         df $MOUNT || error "Fail to df."
11367         # Create new files, idle OI blocks should be reused.
11368         createmany -o $myDIR/t- 2000
11369         do_facet $SINGLEMDS sync
11370         # Make sure journal flushed.
11371         sleep 6
11372         local blk2=$(do_facet $SINGLEMDS \
11373                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11374                      grep Blockcount | awk '{print $4}')
11375
11376         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11377 }
11378 run_test 228b "idle OI blocks can be reused after MDT restart"
11379
11380 #LU-1881
11381 test_228c() {
11382         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11383         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11384                 skip "non-ldiskfs backend" && return
11385
11386         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11387         local myDIR=$DIR/$tdir
11388
11389         mkdir -p $myDIR
11390         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11391         $LCTL set_param fail_loc=0x80001002
11392         # 20000 files can guarantee there are index nodes in the OI file
11393         createmany -o $myDIR/t- 20000
11394         $LCTL set_param fail_loc=0
11395         # The guard is current the largest FID holder
11396         touch $myDIR/guard
11397         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11398                     tr -d '[')
11399         local IDX=$(($SEQ % 64))
11400
11401         do_facet $SINGLEMDS sync
11402         # Make sure journal flushed.
11403         sleep 6
11404         local blk1=$(do_facet $SINGLEMDS \
11405                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11406                      grep Blockcount | awk '{print $4}')
11407
11408         # Remove old files, some OI blocks will become idle.
11409         unlinkmany $myDIR/t- 20000
11410         rm -f $myDIR/guard
11411         # The OI file should become empty now
11412
11413         # Create new files, idle OI blocks should be reused.
11414         createmany -o $myDIR/t- 2000
11415         do_facet $SINGLEMDS sync
11416         # Make sure journal flushed.
11417         sleep 6
11418         local blk2=$(do_facet $SINGLEMDS \
11419                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11420                      grep Blockcount | awk '{print $4}')
11421
11422         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11423 }
11424 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11425
11426 test_229() { # LU-2482, LU-3448
11427         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11428         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11429
11430         rm -f $DIR/$tfile
11431
11432         # Create a file with a released layout and stripe count 2.
11433         $MULTIOP $DIR/$tfile H2c ||
11434                 error "failed to create file with released layout"
11435
11436         $GETSTRIPE -v $DIR/$tfile
11437
11438         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11439         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11440
11441         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11442         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11443         stat $DIR/$tfile || error "failed to stat released file"
11444
11445         chown $RUNAS_ID $DIR/$tfile ||
11446                 error "chown $RUNAS_ID $DIR/$tfile failed"
11447
11448         chgrp $RUNAS_ID $DIR/$tfile ||
11449                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11450
11451         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11452         rm $DIR/$tfile || error "failed to remove released file"
11453 }
11454 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11455
11456 test_230a() {
11457         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11458         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11459         local MDTIDX=1
11460
11461         mkdir -p $DIR/$tdir/test_230_local
11462         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11463         [ $mdt_idx -ne 0 ] &&
11464                 error "create local directory on wrong MDT $mdt_idx"
11465
11466         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11467                         error "create remote directory failed"
11468         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11469         [ $mdt_idx -ne $MDTIDX ] &&
11470                 error "create remote directory on wrong MDT $mdt_idx"
11471
11472         createmany -o $DIR/$tdir/test_230/t- 10 ||
11473                 error "create files on remote directory failed"
11474         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11475         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11476         rm -r $DIR/$tdir || error "unlink remote directory failed"
11477 }
11478 run_test 230a "Create remote directory and files under the remote directory"
11479
11480 test_230b() {
11481         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11482         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11483         local MDTIDX=1
11484         local remote_dir=$DIR/$tdir/remote_dir
11485         local rc=0
11486
11487         mkdir -p $DIR/$tdir
11488         $LFS mkdir -i $MDTIDX $remote_dir ||
11489                 error "create remote directory failed"
11490
11491         $LFS mkdir -i 0 $remote_dir/new_dir &&
11492                 error "nested remote directory create succeed!"
11493
11494         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11495         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11496         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11497
11498         [ $rc -ne 0 ] &&
11499            error "create remote directory failed after set enable_remote_dir"
11500
11501         rm -rf $remote_dir || error "first unlink remote directory failed"
11502
11503         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11504                                                         error "chown worked"
11505
11506         do_facet mds$MDTIDX lctl set_param \
11507                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11508         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11509         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11510
11511         [ $rc -ne 0 ] &&
11512            error "create remote dir failed after set enable_remote_dir_gid"
11513
11514         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11515 }
11516 run_test 230b "nested remote directory should be failed"
11517
11518 test_231a()
11519 {
11520         # For simplicity this test assumes that max_pages_per_rpc
11521         # is the same across all OSCs
11522         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11523         local bulk_size=$((max_pages * 4096))
11524
11525         mkdir -p $DIR/$tdir
11526
11527         # clear the OSC stats
11528         $LCTL set_param osc.*.stats=0 &>/dev/null
11529
11530         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11531         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11532                 oflag=direct &>/dev/null || error "dd failed"
11533
11534         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11535         if [ x$nrpcs != "x1" ]; then
11536                 error "found $nrpc ost_write RPCs, not 1 as expected"
11537         fi
11538
11539         # Drop the OSC cache, otherwise we will read from it
11540         cancel_lru_locks osc
11541
11542         # clear the OSC stats
11543         $LCTL set_param osc.*.stats=0 &>/dev/null
11544
11545         # Client reads $bulk_size.
11546         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11547                 iflag=direct &>/dev/null || error "dd failed"
11548
11549         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11550         if [ x$nrpcs != "x1" ]; then
11551                 error "found $nrpc ost_read RPCs, not 1 as expected"
11552         fi
11553 }
11554 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11555
11556 test_231b() {
11557         mkdir -p $DIR/$tdir
11558         local i
11559         for i in {0..1023}; do
11560                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11561                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11562                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11563         done
11564         sync
11565 }
11566 run_test 231b "must not assert on fully utilized OST request buffer"
11567
11568 test_232() {
11569         mkdir -p $DIR/$tdir
11570         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11571         $LCTL set_param fail_loc=0x31c
11572
11573         # ignore dd failure
11574         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11575
11576         $LCTL set_param fail_loc=0
11577         umount_client $MOUNT || error "umount failed"
11578         mount_client $MOUNT || error "mount failed"
11579 }
11580 run_test 232 "failed lock should not block umount"
11581
11582 test_233() {
11583         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11584         { skip "Need MDS version at least 2.3.64"; return; }
11585
11586         local fid=$($LFS path2fid $MOUNT)
11587         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11588                 error "cannot access $MOUNT using its FID '$fid'"
11589 }
11590 run_test 233 "checking that OBF of the FS root succeeds"
11591
11592 test_234() {
11593         local p="$TMP/sanityN-$TESTNAME.parameters"
11594         save_lustre_params client "llite.*.xattr_cache" > $p
11595         lctl set_param llite.*.xattr_cache 1 ||
11596                 { skip "xattr cache is not supported"; return 0; }
11597
11598         mkdir -p $DIR/$tdir || error "mkdir failed"
11599         touch $DIR/$tdir/$tfile || error "touch failed"
11600         # OBD_FAIL_LLITE_XATTR_ENOMEM
11601         $LCTL set_param fail_loc=0x1405
11602         if [ ! -f /etc/SuSE-release ]; then
11603                 # attr pre-2.4.44-7 had a bug with rc
11604                 # LU-3703 - SLES clients have older attr
11605                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11606                         error "getfattr should have failed with ENOMEM"
11607         fi
11608         $LCTL set_param fail_loc=0x0
11609         rm -rf $DIR/$tdir
11610
11611         restore_lustre_params < $p
11612         rm -f $p
11613 }
11614 run_test 234 "xattr cache should not crash on ENOMEM"
11615
11616 test_235() {
11617          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11618                 skip "Need MDS version at least 2.4.52" && return
11619         flock_deadlock $DIR/$tfile
11620         local RC=$?
11621         case $RC in
11622                 0)
11623                 ;;
11624                 124) error "process hangs on a deadlock"
11625                 ;;
11626                 *) error "error executing flock_deadlock $DIR/$tfile"
11627                 ;;
11628         esac
11629 }
11630 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11631
11632 #LU-2935
11633 test_236() {
11634         check_swap_layouts_support && return 0
11635         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11636
11637         local ref1=/etc/passwd
11638         local ref2=/etc/group
11639         local file1=$DIR/$tdir/f1
11640         local file2=$DIR/$tdir/f2
11641
11642         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11643         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11644         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11645         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11646         exec {FD}<>$file2
11647         rm $file2
11648         $LFS swap_layouts $file1 /proc/self/fd/${FD} ||
11649                 error "cannot swap layouts of '$file1' and /proc/self/fd/${FD}"
11650         exec {FD}>&-
11651         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11652
11653         #cleanup
11654         rm -rf $DIR/$tdir
11655 }
11656 run_test 236 "Layout swap on open unlinked file"
11657
11658 #
11659 # tests that do cleanup/setup should be run at the end
11660 #
11661
11662 test_900() {
11663         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11664         local ls
11665         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11666         $LCTL set_param fail_loc=0x903
11667         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11668         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11669                 echo "clear" > $ls
11670         done
11671         FAIL_ON_ERROR=true cleanup
11672         FAIL_ON_ERROR=true setup
11673 }
11674 run_test 900 "umount should not race with any mgc requeue thread"
11675
11676 complete $SECONDS
11677 check_and_cleanup_lustre
11678 if [ "$I_MOUNTED" != "yes" ]; then
11679         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11680 fi
11681 exit_status