Whamcloud - gitweb
LU-3587 tests: add sanity test for crash in changelog
[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 $remote_dir $DIR/ &&
1054                 error "rename dir cross MDT works!"
1055
1056         mrename $DIR/$tdir/src_dir $remote_dir/tgt_dir &&
1057                 error "rename dir cross MDT works!"
1058
1059         mrename $DIR/$tdir/src_file $remote_dir/tgt_file &&
1060                 error "rename file cross MDT works!"
1061
1062         ln $DIR/$tdir/src_file $remote_dir/tgt_file1 &&
1063                 error "ln file cross MDT should not work!"
1064
1065         rm -rf $DIR/$tdir || error "Can not delete directories"
1066 }
1067 run_test 24x "cross rename/link should be failed"
1068
1069 test_24y() {
1070         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1071         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1072         local MDTIDX=1
1073         local remote_dir=$DIR/$tdir/remote_dir
1074
1075         mkdir -p $DIR/$tdir
1076         $LFS mkdir -i $MDTIDX $remote_dir ||
1077                    error "create remote directory failed"
1078
1079         mkdir -p $remote_dir/src_dir
1080         touch $remote_dir/src_file
1081         mkdir -p $remote_dir/tgt_dir
1082         touch $remote_dir/tgt_file
1083
1084         mrename $remote_dir/src_dir $remote_dir/tgt_dir ||
1085                 error "rename subdir in the same remote dir failed!"
1086
1087         mrename $remote_dir/src_file $remote_dir/tgt_file ||
1088                 error "rename files in the same remote dir failed!"
1089
1090         ln $remote_dir/tgt_file $remote_dir/tgt_file1 ||
1091                 error "link files in the same remote dir failed!"
1092
1093         rm -rf $DIR/$tdir || error "Can not delete directories"
1094 }
1095 run_test 24y "rename/link on the same dir should succeed"
1096
1097 test_24z() {
1098         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
1099         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1100         local MDTIDX=1
1101         local remote_src=$DIR/$tdir/remote_dir
1102         local remote_tgt=$DIR/$tdir/remote_tgt
1103
1104         mkdir -p $DIR/$tdir
1105         $LFS mkdir -i $MDTIDX $remote_src ||
1106                    error "create remote directory failed"
1107
1108         $LFS mkdir -i $MDTIDX $remote_tgt ||
1109                    error "create remote directory failed"
1110
1111         mrename $remote_src $remote_tgt &&
1112                 error "rename remote dirs should not work!"
1113
1114         # If target dir does not exists, it should succeed
1115         rm -rf $remote_tgt
1116         mrename $remote_src $remote_tgt ||
1117                 error "rename remote dirs(tgt dir does not exists) failed!"
1118
1119         rm -rf $DIR/$tdir || error "Can not delete directories"
1120 }
1121 run_test 24z "rename one remote dir to another remote dir should fail"
1122
1123 test_24A() { # LU-3182
1124         local NFILES=5000
1125
1126         mkdir -p $DIR/$tdir
1127         createmany -m $DIR/$tdir/$tfile $NFILES
1128         local t=`ls $DIR/$tdir | wc -l`
1129         local u=`ls $DIR/$tdir | sort -u | wc -l`
1130         if [ $t -ne $NFILES -o $u -ne $NFILES ] ; then
1131                 error "Expected $NFILES files, got $t ($u unique)"
1132         fi
1133
1134         rm -rf $DIR/$tdir || error "Can not delete directories"
1135 }
1136 run_test 24A "readdir() returns correct number of entries."
1137
1138 test_25a() {
1139         echo '== symlink sanity ============================================='
1140
1141         test_mkdir $DIR/d25
1142         ln -s d25 $DIR/s25
1143         touch $DIR/s25/foo || error
1144 }
1145 run_test 25a "create file in symlinked directory ==============="
1146
1147 test_25b() {
1148         [ ! -d $DIR/d25 ] && test_25a
1149         $CHECKSTAT -t file $DIR/s25/foo || error
1150 }
1151 run_test 25b "lookup file in symlinked directory ==============="
1152
1153 test_26a() {
1154         test_mkdir $DIR/d26
1155         test_mkdir $DIR/d26/d26-2
1156         ln -s d26/d26-2 $DIR/s26
1157         touch $DIR/s26/foo || error
1158 }
1159 run_test 26a "multiple component symlink ======================="
1160
1161 test_26b() {
1162         test_mkdir -p $DIR/d26b/d26-2
1163         ln -s d26b/d26-2/foo $DIR/s26-2
1164         touch $DIR/s26-2 || error
1165 }
1166 run_test 26b "multiple component symlink at end of lookup ======"
1167
1168 test_26c() {
1169         test_mkdir $DIR/d26.2
1170         touch $DIR/d26.2/foo
1171         ln -s d26.2 $DIR/s26.2-1
1172         ln -s s26.2-1 $DIR/s26.2-2
1173         ln -s s26.2-2 $DIR/s26.2-3
1174         chmod 0666 $DIR/s26.2-3/foo
1175 }
1176 run_test 26c "chain of symlinks ================================"
1177
1178 # recursive symlinks (bug 439)
1179 test_26d() {
1180         ln -s d26-3/foo $DIR/d26-3
1181 }
1182 run_test 26d "create multiple component recursive symlink ======"
1183
1184 test_26e() {
1185         [ ! -h $DIR/d26-3 ] && test_26d
1186         rm $DIR/d26-3
1187 }
1188 run_test 26e "unlink multiple component recursive symlink ======"
1189
1190 # recursive symlinks (bug 7022)
1191 test_26f() {
1192         test_mkdir -p $DIR/$tdir
1193         test_mkdir $DIR/$tdir/$tfile   || error "mkdir $DIR/$tdir/$tfile failed"
1194         cd $DIR/$tdir/$tfile           || error "cd $DIR/$tdir/$tfile failed"
1195         test_mkdir -p lndir/bar1      || error "mkdir lndir/bar1 failed"
1196         test_mkdir $DIR/$tdir/$tfile/$tfile   || error "mkdir $tfile failed"
1197         cd $tfile                || error "cd $tfile failed"
1198         ln -s .. dotdot          || error "ln dotdot failed"
1199         ln -s dotdot/lndir lndir || error "ln lndir failed"
1200         cd $DIR/$tdir                 || error "cd $DIR/$tdir failed"
1201         output=`ls $tfile/$tfile/lndir/bar1`
1202         [ "$output" = bar1 ] && error "unexpected output"
1203         rm -r $tfile             || error "rm $tfile failed"
1204         $CHECKSTAT -a $DIR/$tfile || error "$tfile not gone"
1205 }
1206 run_test 26f "rm -r of a directory which has recursive symlink ="
1207
1208 test_27a() {
1209         echo '== stripe sanity =============================================='
1210         test_mkdir -p $DIR/d27 || error "mkdir failed"
1211         $GETSTRIPE $DIR/d27
1212         $SETSTRIPE -c 1 $DIR/d27/f0 || error "setstripe failed"
1213         $CHECKSTAT -t file $DIR/d27/f0 || error "checkstat failed"
1214         pass
1215         log "== test_27a: write to one stripe file ========================="
1216         cp /etc/hosts $DIR/d27/f0 || error
1217 }
1218 run_test 27a "one stripe file =================================="
1219
1220 test_27b() {
1221         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
1222         test_mkdir -p $DIR/d27
1223         $SETSTRIPE -c 2 $DIR/d27/f01 || error "setstripe failed"
1224         $GETSTRIPE -c $DIR/d27/f01
1225         [ $($GETSTRIPE -c $DIR/d27/f01) -eq 2 ] ||
1226                 error "two-stripe file doesn't have two stripes"
1227
1228         dd if=/dev/zero of=$DIR/d27/f01 bs=4k count=4 || error "dd failed"
1229 }
1230 run_test 27b "create and write to two stripe file"
1231
1232 test_27d() {
1233         test_mkdir -p $DIR/d27
1234         $SETSTRIPE -c 0 -i -1 -S 0 $DIR/d27/fdef || error "setstripe failed"
1235         $CHECKSTAT -t file $DIR/d27/fdef || error "checkstat failed"
1236         dd if=/dev/zero of=$DIR/d27/fdef bs=4k count=4 || error
1237 }
1238 run_test 27d "create file with default settings ================"
1239
1240 test_27e() {
1241         test_mkdir -p $DIR/d27
1242         $SETSTRIPE -c 2 $DIR/d27/f12 || error "setstripe failed"
1243         $SETSTRIPE -c 2 $DIR/d27/f12 && error "setstripe succeeded twice"
1244         $CHECKSTAT -t file $DIR/d27/f12 || error "checkstat failed"
1245 }
1246 run_test 27e "setstripe existing file (should return error) ======"
1247
1248 test_27f() {
1249         test_mkdir -p $DIR/d27
1250         $SETSTRIPE -S 100 -i 0 -c 1 $DIR/d27/fbad && error "setstripe failed"
1251         dd if=/dev/zero of=$DIR/d27/fbad bs=4k count=4 || error "dd failed"
1252         $GETSTRIPE $DIR/d27/fbad || error "$GETSTRIPE failed"
1253 }
1254 run_test 27f "setstripe with bad stripe size (should return error)"
1255
1256 test_27g() {
1257         test_mkdir -p $DIR/d27
1258         $MCREATE $DIR/d27/fnone || error "mcreate failed"
1259         $GETSTRIPE $DIR/d27/fnone 2>&1 | grep "no stripe info" ||
1260                 error "$DIR/d27/fnone has object"
1261 }
1262 run_test 27g "$GETSTRIPE with no objects"
1263
1264 test_27i() {
1265         touch $DIR/d27/fsome || error "touch failed"
1266         [ $($GETSTRIPE -c $DIR/d27/fsome) -gt 0 ] || error "missing objects"
1267 }
1268 run_test 27i "$GETSTRIPE with some objects"
1269
1270 test_27j() {
1271         test_mkdir -p $DIR/d27
1272         $SETSTRIPE -i $OSTCOUNT $DIR/d27/f27j && error "setstripe failed"||true
1273 }
1274 run_test 27j "setstripe with bad stripe offset (should return error)"
1275
1276 test_27k() { # bug 2844
1277         test_mkdir -p $DIR/d27
1278         FILE=$DIR/d27/f27k
1279         LL_MAX_BLKSIZE=$((4 * 1024 * 1024))
1280         [ ! -d $DIR/d27 ] && test_mkdir -p $DIR d27
1281         $SETSTRIPE -S 67108864 $FILE || error "setstripe failed"
1282         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1283         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1284         dd if=/dev/zero of=$FILE bs=4k count=1
1285         BLKSIZE=`stat $FILE | awk '/IO Block:/ { print $7 }'`
1286         [ $BLKSIZE -le $LL_MAX_BLKSIZE ] || error "$BLKSIZE > $LL_MAX_BLKSIZE"
1287 }
1288 run_test 27k "limit i_blksize for broken user apps ============="
1289
1290 test_27l() {
1291         test_mkdir -p $DIR/d27
1292         mcreate $DIR/f27l || error "creating file"
1293         $RUNAS $SETSTRIPE -c 1 $DIR/f27l && \
1294                 error "setstripe should have failed" || true
1295 }
1296 run_test 27l "check setstripe permissions (should return error)"
1297
1298 test_27m() {
1299         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" &&
1300                 return
1301         if [ $ORIGFREE -gt $MAXFREE ]; then
1302                 skip "$ORIGFREE > $MAXFREE skipping out-of-space test on OST0"
1303                 return
1304         fi
1305         trap simple_cleanup_common EXIT
1306         test_mkdir -p $DIR/$tdir
1307         $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_1
1308         dd if=/dev/zero of=$DIR/$tdir/f27m_1 bs=1024 count=$MAXFREE &&
1309                 error "dd should fill OST0"
1310         i=2
1311         while $SETSTRIPE -i 0 -c 1 $DIR/$tdir/f27m_$i; do
1312                 i=`expr $i + 1`
1313                 [ $i -gt 256 ] && break
1314         done
1315         i=`expr $i + 1`
1316         touch $DIR/$tdir/f27m_$i
1317         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1318                 error "OST0 was full but new created file still use it"
1319         i=`expr $i + 1`
1320         touch $DIR/$tdir/f27m_$i
1321         [ `$GETSTRIPE $DIR/$tdir/f27m_$i | grep -A 10 obdidx | awk '{print $1}'| grep -w "0"` ] &&
1322                 error "OST0 was full but new created file still use it"
1323         simple_cleanup_common
1324 }
1325 run_test 27m "create file while OST0 was full =================="
1326
1327 sleep_maxage() {
1328         local DELAY=$(do_facet $SINGLEMDS lctl get_param -n lov.*.qos_maxage | head -n 1 | awk '{print $1 * 2}')
1329         sleep $DELAY
1330 }
1331
1332 # OSCs keep a NOSPC flag that will be reset after ~5s (qos_maxage)
1333 # if the OST isn't full anymore.
1334 reset_enospc() {
1335         local OSTIDX=${1:-""}
1336
1337         local list=$(comma_list $(osts_nodes))
1338         [ "$OSTIDX" ] && list=$(facet_host ost$((OSTIDX + 1)))
1339
1340         do_nodes $list lctl set_param fail_loc=0
1341         sync    # initiate all OST_DESTROYs from MDS to OST
1342         sleep_maxage
1343 }
1344
1345 exhaust_precreations() {
1346         local OSTIDX=$1
1347         local FAILLOC=$2
1348         local FAILIDX=${3:-$OSTIDX}
1349
1350         test_mkdir -p $DIR/$tdir
1351         local MDSIDX=$(get_mds_dir "$DIR/$tdir")
1352         echo OSTIDX=$OSTIDX MDSIDX=$MDSIDX
1353
1354         local OST=$(ostname_from_index $OSTIDX)
1355         local MDT_INDEX=$(lfs df | grep "\[MDT:$((MDSIDX - 1))\]" | awk '{print $1}' | \
1356                           sed -e 's/_UUID$//;s/^.*-//')
1357
1358         # on the mdt's osc
1359         local mdtosc_proc1=$(get_mdtosc_proc_path mds${MDSIDX} $OST)
1360         local last_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1361                         osc.$mdtosc_proc1.prealloc_last_id)
1362         local next_id=$(do_facet mds${MDSIDX} lctl get_param -n \
1363                         osc.$mdtosc_proc1.prealloc_next_id)
1364
1365         local mdtosc_proc2=$(get_mdtosc_proc_path mds${MDSIDX})
1366         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1367
1368         test_mkdir -p $DIR/$tdir/${OST}
1369         $SETSTRIPE -i $OSTIDX -c 1 $DIR/$tdir/${OST}
1370 #define OBD_FAIL_OST_ENOSPC              0x215
1371         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=$FAILIDX
1372         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x215
1373         echo "Creating to objid $last_id on ost $OST..."
1374         createmany -o $DIR/$tdir/${OST}/f $next_id $((last_id - next_id + 2))
1375         do_facet mds${MDSIDX} lctl get_param osc.$mdtosc_proc2.prealloc*
1376         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=$FAILLOC
1377         sleep_maxage
1378 }
1379
1380 exhaust_all_precreations() {
1381         local i
1382         for (( i=0; i < OSTCOUNT; i++ )) ; do
1383                 exhaust_precreations $i $1 -1
1384         done
1385 }
1386
1387 test_27n() {
1388         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1389         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1390         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1391         remote_ost_nodsh && skip "remote OST with nodsh" && return
1392
1393         reset_enospc
1394         rm -f $DIR/$tdir/$tfile
1395         exhaust_precreations 0 0x80000215
1396         $SETSTRIPE -c -1 $DIR/$tdir
1397         touch $DIR/$tdir/$tfile || error
1398         $GETSTRIPE $DIR/$tdir/$tfile
1399         reset_enospc
1400 }
1401 run_test 27n "create file with some full OSTs =================="
1402
1403 test_27o() {
1404         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1405         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1406         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1407         remote_ost_nodsh && skip "remote OST with nodsh" && return
1408
1409         reset_enospc
1410         rm -f $DIR/$tdir/$tfile
1411         exhaust_all_precreations 0x215
1412
1413         touch $DIR/$tdir/$tfile && error "able to create $DIR/$tdir/$tfile"
1414
1415         reset_enospc
1416         rm -rf $DIR/$tdir/*
1417 }
1418 run_test 27o "create file with all full OSTs (should error) ===="
1419
1420 test_27p() {
1421         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1422         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1423         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1424         remote_ost_nodsh && skip "remote OST with nodsh" && return
1425
1426         reset_enospc
1427         rm -f $DIR/$tdir/$tfile
1428         test_mkdir -p $DIR/$tdir
1429
1430         $MCREATE $DIR/$tdir/$tfile || error "mcreate failed"
1431         $TRUNCATE $DIR/$tdir/$tfile 80000000 || error "truncate failed"
1432         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1433
1434         exhaust_precreations 0 0x80000215
1435         echo foo >> $DIR/$tdir/$tfile || error "append failed"
1436         $CHECKSTAT -s 80000004 $DIR/$tdir/$tfile || error "checkstat failed"
1437         $GETSTRIPE $DIR/$tdir/$tfile
1438
1439         reset_enospc
1440 }
1441 run_test 27p "append to a truncated file with some full OSTs ==="
1442
1443 test_27q() {
1444         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1446         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1447         remote_ost_nodsh && skip "remote OST with nodsh" && return
1448
1449         reset_enospc
1450         rm -f $DIR/$tdir/$tfile
1451
1452         test_mkdir -p $DIR/$tdir
1453         $MCREATE $DIR/$tdir/$tfile || error "mcreate $DIR/$tdir/$tfile failed"
1454         $TRUNCATE $DIR/$tdir/$tfile 80000000 ||error "truncate $DIR/$tdir/$tfile failed"
1455         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat failed"
1456
1457         exhaust_all_precreations 0x215
1458
1459         echo foo >> $DIR/$tdir/$tfile && error "append succeeded"
1460         $CHECKSTAT -s 80000000 $DIR/$tdir/$tfile || error "checkstat 2 failed"
1461
1462         reset_enospc
1463 }
1464 run_test 27q "append to truncated file with all OSTs full (should error) ==="
1465
1466 test_27r() {
1467         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1468         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1469         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1470         remote_ost_nodsh && skip "remote OST with nodsh" && return
1471
1472         reset_enospc
1473         rm -f $DIR/$tdir/$tfile
1474         exhaust_precreations 0 0x80000215
1475
1476         $SETSTRIPE -i 0 -c 2 $DIR/$tdir/$tfile # && error
1477
1478         reset_enospc
1479 }
1480 run_test 27r "stripe file with some full OSTs (shouldn't LBUG) ="
1481
1482 test_27s() { # bug 10725
1483         test_mkdir -p $DIR/$tdir
1484         local stripe_size=$((4096 * 1024 * 1024))       # 2^32
1485         local stripe_count=0
1486         [ $OSTCOUNT -eq 1 ] || stripe_count=2
1487         $SETSTRIPE -S $stripe_size -c $stripe_count $DIR/$tdir &&
1488                 error "stripe width >= 2^32 succeeded" || true
1489
1490 }
1491 run_test 27s "lsm_xfersize overflow (should error) (bug 10725)"
1492
1493 test_27t() { # bug 10864
1494         WDIR=`pwd`
1495         WLFS=`which lfs`
1496         cd $DIR
1497         touch $tfile
1498         $WLFS getstripe $tfile
1499         cd $WDIR
1500 }
1501 run_test 27t "check that utils parse path correctly"
1502
1503 test_27u() { # bug 4900
1504         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1505         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1506         local index
1507         local list=$(comma_list $(mdts_nodes))
1508
1509 #define OBD_FAIL_MDS_OSC_PRECREATE      0x139
1510         do_nodes $list $LCTL set_param fail_loc=0x139
1511         test_mkdir -p $DIR/$tdir
1512         rm -rf $DIR/$tdir/*
1513         createmany -o $DIR/$tdir/t- 1000
1514         do_nodes $list $LCTL set_param fail_loc=0
1515
1516         TLOG=$DIR/$tfile.getstripe
1517         $GETSTRIPE $DIR/$tdir > $TLOG
1518         OBJS=`awk -vobj=0 '($1 == 0) { obj += 1 } END { print obj;}' $TLOG`
1519         unlinkmany $DIR/$tdir/t- 1000
1520         [ $OBJS -gt 0 ] && \
1521                 error "$OBJS objects created on OST-0.  See $TLOG" || pass
1522 }
1523 run_test 27u "skip object creation on OSC w/o objects =========="
1524
1525 test_27v() { # bug 4900
1526         [ "$OSTCOUNT" -lt "2" ] && skip_env "too few OSTs" && return
1527         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1528         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1529         remote_ost_nodsh && skip "remote OST with nodsh" && return
1530
1531         exhaust_all_precreations 0x215
1532         reset_enospc
1533
1534         test_mkdir -p $DIR/$tdir
1535         $SETSTRIPE -c 1 $DIR/$tdir         # 1 stripe / file
1536
1537         touch $DIR/$tdir/$tfile
1538         #define OBD_FAIL_TGT_DELAY_PRECREATE     0x705
1539         # all except ost1
1540         for (( i=1; i < OSTCOUNT; i++ )); do
1541                 do_facet ost$i lctl set_param fail_loc=0x705
1542         done
1543         local START=`date +%s`
1544         createmany -o $DIR/$tdir/$tfile 32
1545
1546         local FINISH=`date +%s`
1547         local TIMEOUT=`lctl get_param -n timeout`
1548         local PROCESS=$((FINISH - START))
1549         [ $PROCESS -ge $((TIMEOUT / 2)) ] && \
1550                error "$FINISH - $START >= $TIMEOUT / 2"
1551         sleep $((TIMEOUT / 2 - PROCESS))
1552         reset_enospc
1553 }
1554 run_test 27v "skip object creation on slow OST ================="
1555
1556 test_27w() { # bug 10997
1557         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1558         $SETSTRIPE -S 65536 $DIR/$tdir/f0 || error "setstripe failed"
1559         [ $($GETSTRIPE -S $DIR/$tdir/f0) -ne 65536 ] &&
1560                 error "stripe size $size != 65536" || true
1561         [ $($GETSTRIPE -d $DIR/$tdir | grep -c "stripe_count") -ne 1 ] &&
1562                 error "$GETSTRIPE -d $DIR/$tdir failed" || true
1563 }
1564 run_test 27w "check $SETSTRIPE -S option"
1565
1566 test_27wa() {
1567         [ "$OSTCOUNT" -lt "2" ] &&
1568                 skip_env "skipping multiple stripe count/offset test" && return
1569
1570         test_mkdir -p $DIR/$tdir || error "mkdir failed"
1571         for i in $(seq 1 $OSTCOUNT); do
1572                 offset=$((i - 1))
1573                 $SETSTRIPE -c $i -i $offset $DIR/$tdir/f$i ||
1574                         error "setstripe -c $i -i $offset failed"
1575                 count=$($GETSTRIPE -c $DIR/$tdir/f$i)
1576                 index=$($GETSTRIPE -i $DIR/$tdir/f$i)
1577                 [ $count -ne $i ] && error "stripe count $count != $i" || true
1578                 [ $index -ne $offset ] &&
1579                         error "stripe offset $index != $offset" || true
1580         done
1581 }
1582 run_test 27wa "check $SETSTRIPE -c -i options"
1583
1584 test_27x() {
1585         remote_ost_nodsh && skip "remote OST with nodsh" && return
1586         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
1587         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1588         OFFSET=$(($OSTCOUNT - 1))
1589         OSTIDX=0
1590         local OST=$(ostname_from_index $OSTIDX)
1591
1592         test_mkdir -p $DIR/$tdir
1593         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe per file
1594         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 1
1595         sleep_maxage
1596         createmany -o $DIR/$tdir/$tfile $OSTCOUNT
1597         for i in `seq 0 $OFFSET`; do
1598                 [ `$GETSTRIPE $DIR/$tdir/$tfile$i | grep -A 10 obdidx | awk '{print $1}' | grep -w "$OSTIDX"` ] &&
1599                 error "OST0 was degraded but new created file still use it"
1600         done
1601         do_facet ost$((OSTIDX + 1)) lctl set_param -n obdfilter.$OST.degraded 0
1602 }
1603 run_test 27x "create files while OST0 is degraded"
1604
1605 test_27y() {
1606         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs -- skipping" && return
1607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
1608         remote_ost_nodsh && skip "remote OST with nodsh" && return
1609         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1610
1611         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS $FSNAME-OST0000)
1612         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
1613             osc.$mdtosc.prealloc_last_id)
1614         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
1615             osc.$mdtosc.prealloc_next_id)
1616         local fcount=$((last_id - next_id))
1617         [ $fcount -eq 0 ] && skip "not enough space on OST0" && return
1618         [ $fcount -gt $OSTCOUNT ] && fcount=$OSTCOUNT
1619
1620         local MDS_OSCS=$(do_facet $SINGLEMDS lctl dl |
1621                          awk '/[oO][sS][cC].*md[ts]/ { print $4 }')
1622         local OST_DEACTIVE_IDX=-1
1623         local OSC
1624         local OSTIDX
1625         local OST
1626
1627         for OSC in $MDS_OSCS; do
1628                 OST=$(osc_to_ost $OSC)
1629                 OSTIDX=$(index_from_ostuuid $OST)
1630                 if [ $OST_DEACTIVE_IDX == -1 ]; then
1631                         OST_DEACTIVE_IDX=$OSTIDX
1632                 fi
1633                 if [ $OSTIDX != $OST_DEACTIVE_IDX ]; then
1634                         echo $OSC "is Deactivated:"
1635                         do_facet $SINGLEMDS lctl --device  %$OSC deactivate
1636                 fi
1637         done
1638
1639         OSTIDX=$(index_from_ostuuid $OST)
1640         mkdir -p $DIR/$tdir
1641         $SETSTRIPE -c 1 $DIR/$tdir      # 1 stripe / file
1642
1643         for OSC in $MDS_OSCS; do
1644                 OST=$(osc_to_ost $OSC)
1645                 OSTIDX=$(index_from_ostuuid $OST)
1646                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1647                         echo $OST "is degraded:"
1648                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1649                                                 obdfilter.$OST.degraded=1
1650                 fi
1651         done
1652
1653         sleep_maxage
1654         createmany -o $DIR/$tdir/$tfile $fcount
1655
1656         for OSC in $MDS_OSCS; do
1657                 OST=$(osc_to_ost $OSC)
1658                 OSTIDX=$(index_from_ostuuid $OST)
1659                 if [ $OSTIDX == $OST_DEACTIVE_IDX ]; then
1660                         echo $OST "is recovered from degraded:"
1661                         do_facet ost$((OSTIDX+1)) lctl set_param -n \
1662                                                 obdfilter.$OST.degraded=0
1663                 else
1664                         do_facet $SINGLEMDS lctl --device %$OSC activate
1665                 fi
1666         done
1667
1668         # all osp devices get activated, hence -1 stripe count restored
1669         local stripecnt=0
1670
1671         # sleep 2*lod_qos_maxage seconds waiting for lod qos to notice osp
1672         # devices get activated.
1673         sleep_maxage
1674         $SETSTRIPE -c -1 $DIR/$tfile
1675         stripecnt=$($GETSTRIPE -c $DIR/$tfile)
1676         rm -f $DIR/$tfile
1677         [ $stripecnt -ne $OSTCOUNT ] &&
1678                 error "Of $OSTCOUNT OSTs, only $stripecnt is available"
1679         return 0
1680 }
1681 run_test 27y "create files while OST0 is degraded and the rest inactive"
1682
1683 check_seq_oid()
1684 {
1685         log "check file $1"
1686
1687         lmm_count=$($GETSTRIPE -c $1)
1688         lmm_seq=$($GETSTRIPE -v $1 | awk '/lmm_seq/ { print $2 }')
1689         lmm_oid=$($GETSTRIPE -v $1 | awk '/lmm_object_id/ { print $2 }')
1690
1691         local old_ifs="$IFS"
1692         IFS=$'[:]'
1693         fid=($($LFS path2fid $1))
1694         IFS="$old_ifs"
1695
1696         log "FID seq ${fid[1]}, oid ${fid[2]} ver ${fid[3]}"
1697         log "LOV seq $lmm_seq, oid $lmm_oid, count: $lmm_count"
1698
1699         # compare lmm_seq and lu_fid->f_seq
1700         [ $lmm_seq = ${fid[1]} ] || { error "SEQ mismatch"; return 1; }
1701         # compare lmm_object_id and lu_fid->oid
1702         [ $lmm_oid = ${fid[2]} ] || { error "OID mismatch"; return 2; }
1703
1704         # check the trusted.fid attribute of the OST objects of the file
1705         local have_obdidx=false
1706         local stripe_nr=0
1707         $GETSTRIPE $1 | while read obdidx oid hex seq; do
1708                 # skip lines up to and including "obdidx"
1709                 [ -z "$obdidx" ] && break
1710                 [ "$obdidx" = "obdidx" ] && have_obdidx=true && continue
1711                 $have_obdidx || continue
1712
1713                 local ost=$((obdidx + 1))
1714                 local dev=$(ostdevname $ost)
1715                 local oid_hex
1716
1717                 if [ $(facet_fstype ost$ost) != ldiskfs ]; then
1718                         echo "Currently only works with ldiskfs-based OSTs"
1719                         continue
1720                 fi
1721
1722                 log "want: stripe:$stripe_nr ost:$obdidx oid:$oid/$hex seq:$seq"
1723
1724                 #don't unmount/remount the OSTs if we don't need to do that
1725                 # LU-2577 changes filter_fid to be smaller, so debugfs needs
1726                 # update too, until that use mount/ll_decode_filter_fid/mount
1727                 local dir=$(facet_mntpt ost$ost)
1728                 local opts=${OST_MOUNT_OPTS}
1729
1730                 if !  do_facet ost$ost test -b ${dev}; then
1731                         opts=$(csa_add "$opts" -o loop)
1732                 fi
1733
1734                 stop ost$ost
1735                 do_facet ost$ost mount -t $(facet_fstype ost$ost) $opts $dev $dir ||
1736                         { error "mounting $dev as $FSTYPE failed"; return 3; }
1737
1738                 seq=$(echo $seq | sed -e "s/^0x//g")
1739                 if [ $seq == 0 ]; then
1740                         oid_hex=$(echo $oid)
1741                 else
1742                         oid_hex=$(echo $hex | sed -e "s/^0x//g")
1743                 fi
1744                 local obj_file=$(do_facet ost$ost find $dir/O/$seq -name $oid_hex)
1745                 local ff=$(do_facet ost$ost $LL_DECODE_FILTER_FID $obj_file)
1746                 do_facet ost$ost umount -d $dir
1747                 start ost$ost $dev $OST_MOUNT_OPTS
1748
1749                 # re-enable when debugfs will understand new filter_fid
1750                 #local ff=$(do_facet ost$ost "$DEBUGFS -c -R 'stat $obj_file' \
1751                 #           $dev 2>/dev/null" | grep "parent=")
1752
1753                 [ -z "$ff" ] && error "$obj_file: no filter_fid info"
1754
1755                 echo "$ff" | sed -e 's#.*objid=#got: objid=#'
1756
1757                 # /mnt/O/0/d23/23: objid=23 seq=0 parent=[0x200000400:0x1e:0x1]
1758                 # fid: objid=23 seq=0 parent=[0x200000400:0x1e:0x0] stripe=1
1759                 local ff_parent=$(echo $ff|sed -e 's/.*parent=.//')
1760                 local ff_pseq=$(echo $ff_parent | cut -d: -f1)
1761                 local ff_poid=$(echo $ff_parent | cut -d: -f2)
1762                 local ff_pstripe=$(echo $ff_parent | sed -e 's/.*stripe=//')
1763
1764                 # compare lmm_seq and filter_fid->ff_parent.f_seq
1765                 [ $ff_pseq = $lmm_seq ] ||
1766                         error "FF parent SEQ $ff_pseq != $lmm_seq"
1767                 # compare lmm_object_id and filter_fid->ff_parent.f_oid
1768                 [ $ff_poid = $lmm_oid ] ||
1769                         error "FF parent OID $ff_poid != $lmm_oid"
1770                 [ $ff_pstripe = $stripe_nr ] ||
1771                         error "FF stripe $ff_pstripe != $stripe_nr"
1772
1773                 stripe_nr=$((stripe_nr + 1))
1774         done
1775 }
1776
1777 test_27z() {
1778         remote_ost_nodsh && skip "remote OST with nodsh" && return
1779         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1780         test_mkdir -p $DIR/$tdir
1781
1782         $SETSTRIPE -c 1 -i 0 -S 64k $DIR/$tdir/$tfile-1 ||
1783                 { error "setstripe -c -1 failed"; return 1; }
1784         # We need to send a write to every object to get parent FID info set.
1785         # This _should_ also work for setattr, but does not currently.
1786         # touch $DIR/$tdir/$tfile-1 ||
1787         dd if=/dev/zero of=$DIR/$tdir/$tfile-1 bs=1M count=1 ||
1788                 { error "dd $tfile-1 failed"; return 2; }
1789         $SETSTRIPE -c -1 -i $((OSTCOUNT - 1)) -S 1M $DIR/$tdir/$tfile-2 ||
1790                 { error "setstripe -c -1 failed"; return 3; }
1791         dd if=/dev/zero of=$DIR/$tdir/$tfile-2 bs=1M count=$OSTCOUNT ||
1792                 { error "dd $tfile-2 failed"; return 4; }
1793
1794         # make sure write RPCs have been sent to OSTs
1795         sync; sleep 5; sync
1796
1797         check_seq_oid $DIR/$tdir/$tfile-1 || return 5
1798         check_seq_oid $DIR/$tdir/$tfile-2 || return 6
1799 }
1800 run_test 27z "check SEQ/OID on the MDT and OST filesystems"
1801
1802 test_27A() { # b=19102
1803         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1804         local restore_size=$($GETSTRIPE -S $MOUNT)
1805         local restore_count=$($GETSTRIPE -c $MOUNT)
1806         local restore_offset=$($GETSTRIPE -i $MOUNT)
1807         $SETSTRIPE -c 0 -i -1 -S 0 $MOUNT
1808         local default_size=$($GETSTRIPE -S $MOUNT)
1809         local default_count=$($GETSTRIPE -c $MOUNT)
1810         local default_offset=$($GETSTRIPE -i $MOUNT)
1811         local dsize=$((1024 * 1024))
1812         [ $default_size -eq $dsize ] ||
1813                 error "stripe size $default_size != $dsize"
1814         [ $default_count -eq 1 ] || error "stripe count $default_count != 1"
1815         [ $default_offset -eq -1 ] ||error "stripe offset $default_offset != -1"
1816         $SETSTRIPE -c $restore_count -i $restore_offset -S $restore_size $MOUNT
1817 }
1818 run_test 27A "check filesystem-wide default LOV EA values"
1819
1820 test_27B() { # LU-2523
1821         test_mkdir -p $DIR/$tdir
1822         rm -f $DIR/$tdir/f0 $DIR/$tdir/f1
1823         touch $DIR/$tdir/f0
1824         # open f1 with O_LOV_DELAY_CREATE
1825         # rename f0 onto f1
1826         # call setstripe ioctl on open file descriptor for f1
1827         # close
1828         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:nB1c \
1829                 $DIR/$tdir/f0
1830
1831         rm -f $DIR/$tdir/f1
1832         # open f1 with O_LOV_DELAY_CREATE
1833         # unlink f1
1834         # call setstripe ioctl on open file descriptor for f1
1835         # close
1836         multiop $DIR/$tdir/f1 oO_RDWR:O_CREAT:O_LOV_DELAY_CREATE:uB1c
1837
1838         # Allow multiop to fail in imitation of NFS's busted semantics.
1839         true
1840 }
1841 run_test 27B "call setstripe on open unlinked file/rename victim"
1842
1843 test_27C() { #LU-2871
1844         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
1845
1846         declare -a ost_idx
1847         local index
1848         local found
1849         local i
1850         local j
1851
1852         test_mkdir -p $DIR/$tdir
1853         cd $DIR/$tdir
1854         for i in $(seq 0 $((OSTCOUNT - 1))); do
1855                 # set stripe across all OSTs starting from OST$i
1856                 $SETSTRIPE -i $i -c -1 $tfile$i
1857                 # get striping information
1858                 ost_idx=($($GETSTRIPE $tfile$i |
1859                          tail -n $((OSTCOUNT + 1)) | awk '{print $1}'))
1860                 echo ${ost_idx[@]}
1861
1862                 # check the layout
1863                 [ ${#ost_idx[@]} -eq $OSTCOUNT ] ||
1864                         error "${#ost_idx[@]} != $OSTCOUNT"
1865
1866                 for index in $(seq 0 $((OSTCOUNT - 1))); do
1867                         found=0
1868                         for j in $(echo ${ost_idx[@]}); do
1869                                 if [ $index -eq $j ]; then
1870                                         found=1
1871                                         break
1872                                 fi
1873                         done
1874                         [ $found = 1 ] ||
1875                                 error "Can not find $index in ${ost_idx[@]}"
1876                 done
1877         done
1878 }
1879 run_test 27C "check full striping across all OSTs"
1880
1881 # createtest also checks that device nodes are created and
1882 # then visible correctly (#2091)
1883 test_28() { # bug 2091
1884         test_mkdir $DIR/d28
1885         $CREATETEST $DIR/d28/ct || error
1886 }
1887 run_test 28 "create/mknod/mkdir with bad file types ============"
1888
1889 test_29() {
1890         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1891         cancel_lru_locks mdc
1892         test_mkdir $DIR/d29
1893         touch $DIR/d29/foo
1894         log 'first d29'
1895         ls -l $DIR/d29
1896
1897         declare -i LOCKCOUNTORIG=0
1898         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1899                 let LOCKCOUNTORIG=$LOCKCOUNTORIG+$lock_count
1900         done
1901         [ $LOCKCOUNTORIG -eq 0 ] && echo "No mdc lock count" && return 1
1902
1903         declare -i LOCKUNUSEDCOUNTORIG=0
1904         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1905                 let LOCKUNUSEDCOUNTORIG=$LOCKUNUSEDCOUNTORIG+$unused_count
1906         done
1907
1908         log 'second d29'
1909         ls -l $DIR/d29
1910         log 'done'
1911
1912         declare -i LOCKCOUNTCURRENT=0
1913         for lock_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_count); do
1914                 let LOCKCOUNTCURRENT=$LOCKCOUNTCURRENT+$lock_count
1915         done
1916
1917         declare -i LOCKUNUSEDCOUNTCURRENT=0
1918         for unused_count in $(lctl get_param -n ldlm.namespaces.*mdc*.lock_unused_count); do
1919                 let LOCKUNUSEDCOUNTCURRENT=$LOCKUNUSEDCOUNTCURRENT+$unused_count
1920         done
1921
1922         if [ "$LOCKCOUNTCURRENT" -gt "$LOCKCOUNTORIG" ]; then
1923                 lctl set_param -n ldlm.dump_namespaces ""
1924                 error "CURRENT: $LOCKCOUNTCURRENT > $LOCKCOUNTORIG"
1925                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1926                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1927                 return 2
1928         fi
1929         if [ "$LOCKUNUSEDCOUNTCURRENT" -gt "$LOCKUNUSEDCOUNTORIG" ]; then
1930                 error "UNUSED: $LOCKUNUSEDCOUNTCURRENT > $LOCKUNUSEDCOUNTORIG"
1931                 $LCTL dk | sort -k4 -t: > $TMP/test_29.dk
1932                 log "dumped log to $TMP/test_29.dk (bug 5793)"
1933                 return 3
1934         fi
1935 }
1936 run_test 29 "IT_GETATTR regression  ============================"
1937
1938 test_30a() { # was test_30
1939         cp `which ls` $DIR || cp /bin/ls $DIR
1940         $DIR/ls / || error
1941         rm $DIR/ls
1942 }
1943 run_test 30a "execute binary from Lustre (execve) =============="
1944
1945 test_30b() {
1946         cp `which ls` $DIR || cp /bin/ls $DIR
1947         chmod go+rx $DIR/ls
1948         $RUNAS $DIR/ls / || error
1949         rm $DIR/ls
1950 }
1951 run_test 30b "execute binary from Lustre as non-root ==========="
1952
1953 test_30c() { # b=22376
1954         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
1955         cp `which ls` $DIR || cp /bin/ls $DIR
1956         chmod a-rw $DIR/ls
1957         cancel_lru_locks mdc
1958         cancel_lru_locks osc
1959         $RUNAS $DIR/ls / || error
1960         rm -f $DIR/ls
1961 }
1962 run_test 30c "execute binary from Lustre without read perms ===="
1963
1964 test_31a() {
1965         $OPENUNLINK $DIR/f31 $DIR/f31 || error
1966         $CHECKSTAT -a $DIR/f31 || error
1967 }
1968 run_test 31a "open-unlink file =================================="
1969
1970 test_31b() {
1971         touch $DIR/f31 || error
1972         ln $DIR/f31 $DIR/f31b || error
1973         $MULTIOP $DIR/f31b Ouc || error
1974         $CHECKSTAT -t file $DIR/f31 || error
1975 }
1976 run_test 31b "unlink file with multiple links while open ======="
1977
1978 test_31c() {
1979         touch $DIR/f31 || error
1980         ln $DIR/f31 $DIR/f31c || error
1981         multiop_bg_pause $DIR/f31 O_uc || return 1
1982         MULTIPID=$!
1983         $MULTIOP $DIR/f31c Ouc
1984         kill -USR1 $MULTIPID
1985         wait $MULTIPID
1986 }
1987 run_test 31c "open-unlink file with multiple links ============="
1988
1989 test_31d() {
1990         opendirunlink $DIR/d31d $DIR/d31d || error
1991         $CHECKSTAT -a $DIR/d31d || error
1992 }
1993 run_test 31d "remove of open directory ========================="
1994
1995 test_31e() { # bug 2904
1996         check_kernel_version 34 || return 0
1997         openfilleddirunlink $DIR/d31e || error
1998 }
1999 run_test 31e "remove of open non-empty directory ==============="
2000
2001 test_31f() { # bug 4554
2002         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2003         set -vx
2004         test_mkdir $DIR/d31f
2005         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2006         cp /etc/hosts $DIR/d31f
2007         ls -l $DIR/d31f
2008         $GETSTRIPE $DIR/d31f/hosts
2009         multiop_bg_pause $DIR/d31f D_c || return 1
2010         MULTIPID=$!
2011
2012         rm -rv $DIR/d31f || error "first of $DIR/d31f"
2013         test_mkdir $DIR/d31f
2014         $SETSTRIPE -S 1048576 -c 1 $DIR/d31f
2015         cp /etc/hosts $DIR/d31f
2016         ls -l $DIR/d31f
2017         $GETSTRIPE $DIR/d31f/hosts
2018         multiop_bg_pause $DIR/d31f D_c || return 1
2019         MULTIPID2=$!
2020
2021         kill -USR1 $MULTIPID || error "first opendir $MULTIPID not running"
2022         wait $MULTIPID || error "first opendir $MULTIPID failed"
2023
2024         sleep 6
2025
2026         kill -USR1 $MULTIPID2 || error "second opendir $MULTIPID not running"
2027         wait $MULTIPID2 || error "second opendir $MULTIPID2 failed"
2028         set +vx
2029 }
2030 run_test 31f "remove of open directory with open-unlink file ==="
2031
2032 test_31g() {
2033         echo "-- cross directory link --"
2034         test_mkdir $DIR/d31ga
2035         test_mkdir $DIR/d31gb
2036         touch $DIR/d31ga/f
2037         ln $DIR/d31ga/f $DIR/d31gb/g
2038         $CHECKSTAT -t file $DIR/d31ga/f || error "source"
2039         [ `stat -c%h $DIR/d31ga/f` == '2' ] || error "source nlink"
2040         $CHECKSTAT -t file $DIR/d31gb/g || error "target"
2041         [ `stat -c%h $DIR/d31gb/g` == '2' ] || error "target nlink"
2042 }
2043 run_test 31g "cross directory link==============="
2044
2045 test_31h() {
2046         echo "-- cross directory link --"
2047         test_mkdir $DIR/d31h
2048         test_mkdir $DIR/d31h/dir
2049         touch $DIR/d31h/f
2050         ln $DIR/d31h/f $DIR/d31h/dir/g
2051         $CHECKSTAT -t file $DIR/d31h/f || error "source"
2052         [ `stat -c%h $DIR/d31h/f` == '2' ] || error "source nlink"
2053         $CHECKSTAT -t file $DIR/d31h/dir/g || error "target"
2054         [ `stat -c%h $DIR/d31h/dir/g` == '2' ] || error "target nlink"
2055 }
2056 run_test 31h "cross directory link under child==============="
2057
2058 test_31i() {
2059         echo "-- cross directory link --"
2060         test_mkdir $DIR/d31i
2061         test_mkdir $DIR/d31i/dir
2062         touch $DIR/d31i/dir/f
2063         ln $DIR/d31i/dir/f $DIR/d31i/g
2064         $CHECKSTAT -t file $DIR/d31i/dir/f || error "source"
2065         [ `stat -c%h $DIR/d31i/dir/f` == '2' ] || error "source nlink"
2066         $CHECKSTAT -t file $DIR/d31i/g || error "target"
2067         [ `stat -c%h $DIR/d31i/g` == '2' ] || error "target nlink"
2068 }
2069 run_test 31i "cross directory link under parent==============="
2070
2071
2072 test_31j() {
2073         test_mkdir $DIR/d31j
2074         test_mkdir $DIR/d31j/dir1
2075         ln $DIR/d31j/dir1 $DIR/d31j/dir2 && error "ln for dir"
2076         link $DIR/d31j/dir1 $DIR/d31j/dir3 && error "link for dir"
2077         mlink $DIR/d31j/dir1 $DIR/d31j/dir4 && error "mlink for dir"
2078         mlink $DIR/d31j/dir1 $DIR/d31j/dir1 && error "mlink to the same dir"
2079         return 0
2080 }
2081 run_test 31j "link for directory==============="
2082
2083
2084 test_31k() {
2085         test_mkdir $DIR/d31k
2086         touch $DIR/d31k/s
2087         touch $DIR/d31k/exist
2088         mlink $DIR/d31k/s $DIR/d31k/t || error "mlink"
2089         mlink $DIR/d31k/s $DIR/d31k/exist && error "mlink to exist file"
2090         mlink $DIR/d31k/s $DIR/d31k/s && error "mlink to the same file"
2091         mlink $DIR/d31k/s $DIR/d31k && error "mlink to parent dir"
2092         mlink $DIR/d31k $DIR/d31k/s && error "mlink parent dir to target"
2093         mlink $DIR/d31k/not-exist $DIR/d31k/foo && error "mlink non-existing to new"
2094         mlink $DIR/d31k/not-exist $DIR/d31k/s && error "mlink non-existing to exist"
2095         return 0
2096 }
2097 run_test 31k "link to file: the same, non-existing, dir==============="
2098
2099 test_31m() {
2100         test_mkdir $DIR/d31m
2101         touch $DIR/d31m/s
2102         test_mkdir $DIR/d31m2
2103         touch $DIR/d31m2/exist
2104         mlink $DIR/d31m/s $DIR/d31m2/t || error "mlink"
2105         mlink $DIR/d31m/s $DIR/d31m2/exist && error "mlink to exist file"
2106         mlink $DIR/d31m/s $DIR/d31m2 && error "mlink to parent dir"
2107         mlink $DIR/d31m2 $DIR/d31m/s && error "mlink parent dir to target"
2108         mlink $DIR/d31m/not-exist $DIR/d31m2/foo && error "mlink non-existing to new"
2109         mlink $DIR/d31m/not-exist $DIR/d31m2/s && error "mlink non-existing to exist"
2110         return 0
2111 }
2112 run_test 31m "link to file: the same, non-existing, dir==============="
2113
2114 test_31n() {
2115         [ -e /proc/self/fd/173 ] && echo "skipping, fd 173 is in use" && return
2116         touch $DIR/$tfile || error "cannot create '$DIR/$tfile'"
2117         nlink=$(stat --format=%h $DIR/$tfile)
2118         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2119         exec 173<$DIR/$tfile
2120         trap "exec 173<&-" EXIT
2121         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2122         [ ${nlink:--1} -eq 1 ] || error "nlink is $nlink, expected 1"
2123         rm $DIR/$tfile || error "cannot remove '$DIR/$tfile'"
2124         nlink=$(stat --dereference --format=%h /proc/self/fd/173)
2125         [ ${nlink:--1} -eq 0 ] || error "nlink is $nlink, expected 0"
2126         exec 173<&-
2127 }
2128 run_test 31n "check link count of unlinked file"
2129
2130 link_one() {
2131         local TEMPNAME=$(mktemp $1_XXXXXX)
2132         mlink $TEMPNAME $1 2> /dev/null &&
2133                 echo "$BASHPID: link $TEMPNAME to $1 succeeded"
2134         munlink $TEMPNAME
2135 }
2136
2137 test_31o() { # LU-2901
2138         mkdir -p $DIR/$tdir
2139         for LOOP in $(seq 100); do
2140                 rm -f $DIR/$tdir/$tfile*
2141                 for THREAD in $(seq 8); do
2142                         link_one $DIR/$tdir/$tfile.$LOOP &
2143                 done
2144                 wait
2145                 local LINKS=$(ls -1 $DIR/$tdir | grep -c $tfile.$LOOP)
2146                 [ $LINKS -gt 1 ] && ls $DIR/$tdir &&
2147                         error "$LINKS duplicate links to $tfile.$LOOP" &&
2148                         break || true
2149         done
2150 }
2151 run_test 31o "duplicate hard links with same filename"
2152
2153 cleanup_test32_mount() {
2154         trap 0
2155         $UMOUNT $DIR/$tdir/ext2-mountpoint
2156 }
2157
2158 test_32a() {
2159         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2160         echo "== more mountpoints and symlinks ================="
2161         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2162         trap cleanup_test32_mount EXIT
2163         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2164         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2165         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/.. || error
2166         cleanup_test32_mount
2167 }
2168 run_test 32a "stat d32a/ext2-mountpoint/.. ====================="
2169
2170 test_32b() {
2171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2172         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2173         trap cleanup_test32_mount EXIT
2174         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2175         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2176         ls -al $DIR/$tdir/ext2-mountpoint/.. || error
2177         cleanup_test32_mount
2178 }
2179 run_test 32b "open d32b/ext2-mountpoint/.. ====================="
2180
2181 test_32c() {
2182         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2183         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2184         trap cleanup_test32_mount EXIT
2185         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2186         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2187         test_mkdir -p $DIR/$tdir/d2/test_dir
2188         $CHECKSTAT -t dir $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2189         cleanup_test32_mount
2190 }
2191 run_test 32c "stat d32c/ext2-mountpoint/../d2/test_dir ========="
2192
2193 test_32d() {
2194         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2195         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2196         trap cleanup_test32_mount EXIT
2197         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2198         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2199         test_mkdir -p $DIR/$tdir/d2/test_dir
2200         ls -al $DIR/$tdir/ext2-mountpoint/../d2/test_dir || error
2201         cleanup_test32_mount
2202 }
2203 run_test 32d "open d32d/ext2-mountpoint/../d2/test_dir ========="
2204
2205 test_32e() {
2206         [ -e $DIR/d32e ] && rm -fr $DIR/d32e
2207         test_mkdir -p $DIR/d32e/tmp
2208         TMP_DIR=$DIR/d32e/tmp
2209         ln -s $DIR/d32e $TMP_DIR/symlink11
2210         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2211         $CHECKSTAT -t link $DIR/d32e/tmp/symlink11 || error
2212         $CHECKSTAT -t link $DIR/d32e/symlink01 || error
2213 }
2214 run_test 32e "stat d32e/symlink->tmp/symlink->lustre-subdir ===="
2215
2216 test_32f() {
2217         [ -e $DIR/d32f ] && rm -fr $DIR/d32f
2218         test_mkdir -p $DIR/d32f/tmp
2219         TMP_DIR=$DIR/d32f/tmp
2220         ln -s $DIR/d32f $TMP_DIR/symlink11
2221         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2222         ls $DIR/d32f/tmp/symlink11  || error
2223         ls $DIR/d32f/symlink01 || error
2224 }
2225 run_test 32f "open d32f/symlink->tmp/symlink->lustre-subdir ===="
2226
2227 test_32g() {
2228         TMP_DIR=$DIR/$tdir/tmp
2229         test_mkdir -p $DIR/$tdir/tmp
2230         test_mkdir $DIR/${tdir}2
2231         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2232         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2233         $CHECKSTAT -t link $TMP_DIR/symlink12 || error
2234         $CHECKSTAT -t link $DIR/$tdir/symlink02 || error
2235         $CHECKSTAT -t dir -f $TMP_DIR/symlink12 || error
2236         $CHECKSTAT -t dir -f $DIR/$tdir/symlink02 || error
2237 }
2238 run_test 32g "stat d32g/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2239
2240 test_32h() {
2241         rm -fr $DIR/$tdir $DIR/${tdir}2
2242         TMP_DIR=$DIR/$tdir/tmp
2243         test_mkdir -p $DIR/$tdir/tmp
2244         test_mkdir $DIR/${tdir}2
2245         ln -s $DIR/${tdir}2 $TMP_DIR/symlink12
2246         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2247         ls $TMP_DIR/symlink12 || error
2248         ls $DIR/$tdir/symlink02  || error
2249 }
2250 run_test 32h "open d32h/symlink->tmp/symlink->lustre-subdir/${tdir}2"
2251
2252 test_32i() {
2253         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2254         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2255         trap cleanup_test32_mount EXIT
2256         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2257         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2258         touch $DIR/$tdir/test_file
2259         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../test_file || error
2260         cleanup_test32_mount
2261 }
2262 run_test 32i "stat d32i/ext2-mountpoint/../test_file ==========="
2263
2264 test_32j() {
2265         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2266         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2267         trap cleanup_test32_mount EXIT
2268         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2269         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2270         touch $DIR/$tdir/test_file
2271         cat $DIR/$tdir/ext2-mountpoint/../test_file || error
2272         cleanup_test32_mount
2273 }
2274 run_test 32j "open d32j/ext2-mountpoint/../test_file ==========="
2275
2276 test_32k() {
2277         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2278         rm -fr $DIR/$tdir
2279         trap cleanup_test32_mount EXIT
2280         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2281         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint
2282         test_mkdir -p $DIR/$tdir/d2
2283         touch $DIR/$tdir/d2/test_file || error
2284         $CHECKSTAT -t file $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2285         cleanup_test32_mount
2286 }
2287 run_test 32k "stat d32k/ext2-mountpoint/../d2/test_file ========"
2288
2289 test_32l() {
2290         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2291         rm -fr $DIR/$tdir
2292         trap cleanup_test32_mount EXIT
2293         test_mkdir -p $DIR/$tdir/ext2-mountpoint
2294         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir/ext2-mountpoint || error
2295         test_mkdir -p $DIR/$tdir/d2
2296         touch $DIR/$tdir/d2/test_file
2297         cat  $DIR/$tdir/ext2-mountpoint/../d2/test_file || error
2298         cleanup_test32_mount
2299 }
2300 run_test 32l "open d32l/ext2-mountpoint/../d2/test_file ========"
2301
2302 test_32m() {
2303         rm -fr $DIR/d32m
2304         test_mkdir -p $DIR/d32m/tmp
2305         TMP_DIR=$DIR/d32m/tmp
2306         ln -s $DIR $TMP_DIR/symlink11
2307         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2308         $CHECKSTAT -t link $DIR/d32m/tmp/symlink11 || error
2309         $CHECKSTAT -t link $DIR/d32m/symlink01 || error
2310 }
2311 run_test 32m "stat d32m/symlink->tmp/symlink->lustre-root ======"
2312
2313 test_32n() {
2314         rm -fr $DIR/d32n
2315         test_mkdir -p $DIR/d32n/tmp
2316         TMP_DIR=$DIR/d32n/tmp
2317         ln -s $DIR $TMP_DIR/symlink11
2318         ln -s $TMP_DIR/symlink11 $TMP_DIR/../symlink01
2319         ls -l $DIR/d32n/tmp/symlink11  || error
2320         ls -l $DIR/d32n/symlink01 || error
2321 }
2322 run_test 32n "open d32n/symlink->tmp/symlink->lustre-root ======"
2323
2324 test_32o() {
2325         rm -fr $DIR/d32o $DIR/$tfile
2326         touch $DIR/$tfile
2327         test_mkdir -p $DIR/d32o/tmp
2328         TMP_DIR=$DIR/d32o/tmp
2329         ln -s $DIR/$tfile $TMP_DIR/symlink12
2330         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2331         $CHECKSTAT -t link $DIR/d32o/tmp/symlink12 || error
2332         $CHECKSTAT -t link $DIR/d32o/symlink02 || error
2333         $CHECKSTAT -t file -f $DIR/d32o/tmp/symlink12 || error
2334         $CHECKSTAT -t file -f $DIR/d32o/symlink02 || error
2335 }
2336 run_test 32o "stat d32o/symlink->tmp/symlink->lustre-root/$tfile"
2337
2338 test_32p() {
2339     log 32p_1
2340         rm -fr $DIR/d32p
2341     log 32p_2
2342         rm -f $DIR/$tfile
2343     log 32p_3
2344         touch $DIR/$tfile
2345     log 32p_4
2346         test_mkdir -p $DIR/d32p/tmp
2347     log 32p_5
2348         TMP_DIR=$DIR/d32p/tmp
2349     log 32p_6
2350         ln -s $DIR/$tfile $TMP_DIR/symlink12
2351     log 32p_7
2352         ln -s $TMP_DIR/symlink12 $TMP_DIR/../symlink02
2353     log 32p_8
2354         cat $DIR/d32p/tmp/symlink12 || error
2355     log 32p_9
2356         cat $DIR/d32p/symlink02 || error
2357     log 32p_10
2358 }
2359 run_test 32p "open d32p/symlink->tmp/symlink->lustre-root/$tfile"
2360
2361 cleanup_testdir_mount() {
2362         trap 0
2363         $UMOUNT $DIR/$tdir
2364 }
2365
2366 test_32q() {
2367         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2368         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2369         trap cleanup_testdir_mount EXIT
2370         test_mkdir -p $DIR/$tdir
2371         touch $DIR/$tdir/under_the_mount
2372         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2373         ls $DIR/$tdir | grep "\<under_the_mount\>" && error
2374         cleanup_testdir_mount
2375 }
2376 run_test 32q "stat follows mountpoints in Lustre (should return error)"
2377
2378 test_32r() {
2379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2380         [ -e $DIR/$tdir ] && rm -fr $DIR/$tdir
2381         trap cleanup_testdir_mount EXIT
2382         test_mkdir -p $DIR/$tdir
2383         touch $DIR/$tdir/under_the_mount
2384         mount -t ext2 -o loop $EXT2_DEV $DIR/$tdir
2385         ls $DIR/$tdir | grep -q under_the_mount && error || true
2386         cleanup_testdir_mount
2387 }
2388 run_test 32r "opendir follows mountpoints in Lustre (should return error)"
2389
2390 test_33aa() {
2391         rm -f $DIR/$tfile
2392         touch $DIR/$tfile
2393         chmod 444 $DIR/$tfile
2394         chown $RUNAS_ID $DIR/$tfile
2395         log 33_1
2396         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2397         log 33_2
2398 }
2399 run_test 33aa "write file with mode 444 (should return error) ===="
2400
2401 test_33a() {
2402         rm -fr $DIR/d33
2403         test_mkdir -p $DIR/d33
2404         chown $RUNAS_ID $DIR/d33
2405         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33|| error "create"
2406         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $DIR/d33/f33 && \
2407                 error "open RDWR" || true
2408 }
2409 run_test 33a "test open file(mode=0444) with O_RDWR (should return error)"
2410
2411 test_33b() {
2412         rm -fr $DIR/d33
2413         test_mkdir -p $DIR/d33
2414         chown $RUNAS_ID $DIR/d33
2415         $RUNAS $OPENFILE -f 1286739555 $DIR/d33/f33 && error "create" || true
2416 }
2417 run_test 33b "test open file with malformed flags (No panic and return error)"
2418
2419 test_33c() {
2420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2421         local ostnum
2422         local ostname
2423         local write_bytes
2424         local all_zeros
2425
2426         remote_ost_nodsh && skip "remote OST with nodsh" && return
2427         all_zeros=:
2428         rm -fr $DIR/d33
2429         test_mkdir -p $DIR/d33
2430         # Read: 0, Write: 4, create/destroy: 2/0, stat: 1, punch: 0
2431
2432         sync
2433         for ostnum in $(seq $OSTCOUNT); do
2434                 # test-framework's OST numbering is one-based, while Lustre's
2435                 # is zero-based
2436                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2437                 # Parsing llobdstat's output sucks; we could grep the /proc
2438                 # path, but that's likely to not be as portable as using the
2439                 # llobdstat utility.  So we parse lctl output instead.
2440                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2441                         obdfilter/$ostname/stats |
2442                         awk '/^write_bytes/ {print $7}' )
2443                 echo "baseline_write_bytes@$OSTnum/$ostname=$write_bytes"
2444                 if (( ${write_bytes:-0} > 0 ))
2445                 then
2446                         all_zeros=false
2447                         break;
2448                 fi
2449         done
2450
2451         $all_zeros || return 0
2452
2453         # Write four bytes
2454         echo foo > $DIR/d33/bar
2455         # Really write them
2456         sync
2457
2458         # Total up write_bytes after writing.  We'd better find non-zeros.
2459         for ostnum in $(seq $OSTCOUNT); do
2460                 ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2461                 write_bytes=$(do_facet ost$ostnum lctl get_param -n \
2462                         obdfilter/$ostname/stats |
2463                         awk '/^write_bytes/ {print $7}' )
2464                 echo "write_bytes@$OSTnum/$ostname=$write_bytes"
2465                 if (( ${write_bytes:-0} > 0 ))
2466                 then
2467                         all_zeros=false
2468                         break;
2469                 fi
2470         done
2471
2472         if $all_zeros
2473         then
2474                 for ostnum in $(seq $OSTCOUNT); do
2475                         ostname=$(printf "$FSNAME-OST%.4x" $((ostnum - 1)))
2476                         echo "Check that write_bytes is present in obdfilter/*/stats:"
2477                         do_facet ost$ostnum lctl get_param -n \
2478                                 obdfilter/$ostname/stats
2479                 done
2480                 error "OST not keeping write_bytes stats (b22312)"
2481         fi
2482 }
2483 run_test 33c "test llobdstat and write_bytes"
2484
2485 test_33d() {
2486         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
2487         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2488         local MDTIDX=1
2489         local remote_dir=$DIR/$tdir/remote_dir
2490
2491         mkdir -p $DIR/$tdir
2492         $LFS mkdir -i $MDTIDX $remote_dir ||
2493                 error "create remote directory failed"
2494
2495         touch $remote_dir/$tfile
2496         chmod 444 $remote_dir/$tfile
2497         chown $RUNAS_ID $remote_dir/$tfile
2498
2499         $RUNAS $OPENFILE -f O_RDWR $DIR/$tfile && error || true
2500
2501         chown $RUNAS_ID $remote_dir
2502         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 ||
2503                                         error "create" || true
2504         $RUNAS $OPENFILE -f O_RDWR:O_CREAT -m 0444 $remote_dir/f33 &&
2505                                     error "open RDWR" || true
2506         $RUNAS $OPENFILE -f 1286739555 $remote_dir/f33 &&
2507                                     error "create" || true
2508 }
2509 run_test 33d "openfile with 444 modes and malformed flags under remote dir"
2510
2511 TEST_34_SIZE=${TEST_34_SIZE:-2000000000000}
2512 test_34a() {
2513         rm -f $DIR/f34
2514         $MCREATE $DIR/f34 || error
2515         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2516         $TRUNCATE $DIR/f34 $TEST_34_SIZE || error
2517         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2518         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2519 }
2520 run_test 34a "truncate file that has not been opened ==========="
2521
2522 test_34b() {
2523         [ ! -f $DIR/f34 ] && test_34a
2524         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2525         $OPENFILE -f O_RDONLY $DIR/f34
2526         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" || error
2527         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2528 }
2529 run_test 34b "O_RDONLY opening file doesn't create objects ====="
2530
2531 test_34c() {
2532         [ ! -f $DIR/f34 ] && test_34a
2533         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2534         $OPENFILE -f O_RDWR $DIR/f34
2535         $GETSTRIPE $DIR/f34 2>&1 | grep -q "no stripe info" && error
2536         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2537 }
2538 run_test 34c "O_RDWR opening file-with-size works =============="
2539
2540 test_34d() {
2541         [ ! -f $DIR/f34 ] && test_34a
2542         dd if=/dev/zero of=$DIR/f34 conv=notrunc bs=4k count=1 || error
2543         $CHECKSTAT -s $TEST_34_SIZE $DIR/f34 || error
2544         rm $DIR/f34
2545 }
2546 run_test 34d "write to sparse file ============================="
2547
2548 test_34e() {
2549         rm -f $DIR/f34e
2550         $MCREATE $DIR/f34e || error
2551         $TRUNCATE $DIR/f34e 1000 || error
2552         $CHECKSTAT -s 1000 $DIR/f34e || error
2553         $OPENFILE -f O_RDWR $DIR/f34e
2554         $CHECKSTAT -s 1000 $DIR/f34e || error
2555 }
2556 run_test 34e "create objects, some with size and some without =="
2557
2558 test_34f() { # bug 6242, 6243
2559         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2560         SIZE34F=48000
2561         rm -f $DIR/f34f
2562         $MCREATE $DIR/f34f || error
2563         $TRUNCATE $DIR/f34f $SIZE34F || error "truncating $DIR/f3f to $SIZE34F"
2564         dd if=$DIR/f34f of=$TMP/f34f
2565         $CHECKSTAT -s $SIZE34F $TMP/f34f || error "$TMP/f34f not $SIZE34F bytes"
2566         dd if=/dev/zero of=$TMP/f34fzero bs=$SIZE34F count=1
2567         cmp $DIR/f34f $TMP/f34fzero || error "$DIR/f34f not all zero"
2568         cmp $TMP/f34f $TMP/f34fzero || error "$TMP/f34f not all zero"
2569         rm $TMP/f34f $TMP/f34fzero $DIR/f34f
2570 }
2571 run_test 34f "read from a file with no objects until EOF ======="
2572
2573 test_34g() {
2574         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2575         dd if=/dev/zero of=$DIR/$tfile bs=1 count=100 seek=$TEST_34_SIZE || error
2576         $TRUNCATE $DIR/$tfile $((TEST_34_SIZE / 2))|| error
2577         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || error "truncate failed"
2578         cancel_lru_locks osc
2579         $CHECKSTAT -s $((TEST_34_SIZE / 2)) $DIR/$tfile || \
2580                 error "wrong size after lock cancel"
2581
2582         $TRUNCATE $DIR/$tfile $TEST_34_SIZE || error
2583         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2584                 error "expanding truncate failed"
2585         cancel_lru_locks osc
2586         $CHECKSTAT -s $TEST_34_SIZE $DIR/$tfile || \
2587                 error "wrong expanded size after lock cancel"
2588 }
2589 run_test 34g "truncate long file ==============================="
2590
2591 test_34h() {
2592         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2593         local gid=10
2594         local sz=1000
2595
2596         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10 || error
2597         sync # Flush the cache so that multiop below does not block on cache
2598              # flush when getting the group lock
2599         $MULTIOP $DIR/$tfile OG${gid}T${sz}g${gid}c &
2600         MULTIPID=$!
2601
2602         # Since just timed wait is not good enough, let's do a sync write
2603         # that way we are sure enough time for a roundtrip + processing
2604         # passed + 2 seconds of extra margin.
2605         dd if=/dev/zero of=$DIR/${tfile}-1 bs=4096 oflag=direct count=1
2606         rm $DIR/${tfile}-1
2607         sleep 2
2608
2609         if [[ `ps h -o comm -p $MULTIPID` == "multiop" ]]; then
2610                 error "Multiop blocked on ftruncate, pid=$MULTIPID"
2611                 kill -9 $MULTIPID
2612         fi
2613         wait $MULTIPID
2614         local nsz=`stat -c %s $DIR/$tfile`
2615         [[ $nsz == $sz ]] || error "New size wrong $nsz != $sz"
2616 }
2617 run_test 34h "ftruncate file under grouplock should not block"
2618
2619 test_35a() {
2620         cp /bin/sh $DIR/f35a
2621         chmod 444 $DIR/f35a
2622         chown $RUNAS_ID $DIR/f35a
2623         $RUNAS $DIR/f35a && error || true
2624         rm $DIR/f35a
2625 }
2626 run_test 35a "exec file with mode 444 (should return and not leak) ====="
2627
2628 test_36a() {
2629         rm -f $DIR/f36
2630         utime $DIR/f36 || error
2631 }
2632 run_test 36a "MDS utime check (mknod, utime) ==================="
2633
2634 test_36b() {
2635         echo "" > $DIR/f36
2636         utime $DIR/f36 || error
2637 }
2638 run_test 36b "OST utime check (open, utime) ===================="
2639
2640 test_36c() {
2641         rm -f $DIR/d36/f36
2642         test_mkdir $DIR/d36
2643         chown $RUNAS_ID $DIR/d36
2644         $RUNAS utime $DIR/d36/f36 || error
2645 }
2646 run_test 36c "non-root MDS utime check (mknod, utime) =========="
2647
2648 test_36d() {
2649         [ ! -d $DIR/d36 ] && test_36c
2650         echo "" > $DIR/d36/f36
2651         $RUNAS utime $DIR/d36/f36 || error
2652 }
2653 run_test 36d "non-root OST utime check (open, utime) ==========="
2654
2655 test_36e() {
2656         [ $RUNAS_ID -eq $UID ] && skip_env "RUNAS_ID = UID = $UID -- skipping" && return
2657         test_mkdir -p $DIR/$tdir
2658         touch $DIR/$tdir/$tfile
2659         $RUNAS utime $DIR/$tdir/$tfile && \
2660                 error "utime worked, expected failure" || true
2661 }
2662 run_test 36e "utime on non-owned file (should return error) ===="
2663
2664 subr_36fh() {
2665         local fl="$1"
2666         local LANG_SAVE=$LANG
2667         local LC_LANG_SAVE=$LC_LANG
2668         export LANG=C LC_LANG=C # for date language
2669
2670         DATESTR="Dec 20  2000"
2671         test_mkdir -p $DIR/$tdir
2672         lctl set_param fail_loc=$fl
2673         date; date +%s
2674         cp /etc/hosts $DIR/$tdir/$tfile
2675         sync & # write RPC generated with "current" inode timestamp, but delayed
2676         sleep 1
2677         touch --date="$DATESTR" $DIR/$tdir/$tfile # setattr timestamp in past
2678         LS_BEFORE="`ls -l $DIR/$tdir/$tfile`" # old timestamp from client cache
2679         cancel_lru_locks osc
2680         LS_AFTER="`ls -l $DIR/$tdir/$tfile`"  # timestamp from OST object
2681         date; date +%s
2682         [ "$LS_BEFORE" != "$LS_AFTER" ] && \
2683                 echo "BEFORE: $LS_BEFORE" && \
2684                 echo "AFTER : $LS_AFTER" && \
2685                 echo "WANT  : $DATESTR" && \
2686                 error "$DIR/$tdir/$tfile timestamps changed" || true
2687
2688         export LANG=$LANG_SAVE LC_LANG=$LC_LANG_SAVE
2689 }
2690
2691 test_36f() {
2692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2693         #define OBD_FAIL_OST_BRW_PAUSE_BULK 0x214
2694         subr_36fh "0x80000214"
2695 }
2696 run_test 36f "utime on file racing with OST BRW write =========="
2697
2698 test_36g() {
2699         remote_ost_nodsh && skip "remote OST with nodsh" && return
2700         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2701         local fmd_max_age
2702         local fmd_before
2703         local fmd_after
2704
2705         test_mkdir -p $DIR/$tdir
2706         fmd_max_age=$(do_facet ost1 \
2707                 "lctl get_param -n obdfilter.*.client_cache_seconds 2> /dev/null | \
2708                 head -n 1")
2709
2710         fmd_before=$(do_facet ost1 \
2711                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2712         touch $DIR/$tdir/$tfile
2713         sleep $((fmd_max_age + 12))
2714         fmd_after=$(do_facet ost1 \
2715                 "awk '/ll_fmd_cache/ {print \\\$2}' /proc/slabinfo")
2716
2717         echo "fmd_before: $fmd_before"
2718         echo "fmd_after: $fmd_after"
2719         [ "$fmd_after" -gt "$fmd_before" ] && \
2720                 echo "AFTER: $fmd_after > BEFORE: $fmd_before" && \
2721                 error "fmd didn't expire after ping" || true
2722 }
2723 run_test 36g "filter mod data cache expiry ====================="
2724
2725 test_36h() {
2726         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2727         #define OBD_FAIL_OST_BRW_PAUSE_BULK2 0x227
2728         subr_36fh "0x80000227"
2729 }
2730 run_test 36h "utime on file racing with OST BRW write =========="
2731
2732 # test_37 - duplicate with tests 32q 32r
2733
2734 test_38() {
2735         local file=$DIR/$tfile
2736         touch $file
2737         openfile -f O_DIRECTORY $file
2738         local RC=$?
2739         local ENOTDIR=20
2740         [ $RC -eq 0 ] && error "opened file $file with O_DIRECTORY" || true
2741         [ $RC -eq $ENOTDIR ] || error "error $RC should be ENOTDIR ($ENOTDIR)"
2742 }
2743 run_test 38 "open a regular file with O_DIRECTORY should return -ENOTDIR ==="
2744
2745 test_39() {
2746         touch $DIR/$tfile
2747         touch $DIR/${tfile}2
2748 #       ls -l  $DIR/$tfile $DIR/${tfile}2
2749 #       ls -lu  $DIR/$tfile $DIR/${tfile}2
2750 #       ls -lc  $DIR/$tfile $DIR/${tfile}2
2751         sleep 2
2752         $OPENFILE -f O_CREAT:O_TRUNC:O_WRONLY $DIR/${tfile}2
2753         if [ ! $DIR/${tfile}2 -nt $DIR/$tfile ]; then
2754                 echo "mtime"
2755                 ls -l --full-time $DIR/$tfile $DIR/${tfile}2
2756                 echo "atime"
2757                 ls -lu --full-time $DIR/$tfile $DIR/${tfile}2
2758                 echo "ctime"
2759                 ls -lc --full-time $DIR/$tfile $DIR/${tfile}2
2760                 error "O_TRUNC didn't change timestamps"
2761         fi
2762 }
2763 run_test 39 "mtime changed on create ==========================="
2764
2765 test_39b() {
2766         test_mkdir -p $DIR/$tdir
2767         cp -p /etc/passwd $DIR/$tdir/fopen
2768         cp -p /etc/passwd $DIR/$tdir/flink
2769         cp -p /etc/passwd $DIR/$tdir/funlink
2770         cp -p /etc/passwd $DIR/$tdir/frename
2771         ln $DIR/$tdir/funlink $DIR/$tdir/funlink2
2772
2773         sleep 1
2774         echo "aaaaaa" >> $DIR/$tdir/fopen
2775         echo "aaaaaa" >> $DIR/$tdir/flink
2776         echo "aaaaaa" >> $DIR/$tdir/funlink
2777         echo "aaaaaa" >> $DIR/$tdir/frename
2778
2779         local open_new=`stat -c %Y $DIR/$tdir/fopen`
2780         local link_new=`stat -c %Y $DIR/$tdir/flink`
2781         local unlink_new=`stat -c %Y $DIR/$tdir/funlink`
2782         local rename_new=`stat -c %Y $DIR/$tdir/frename`
2783
2784         cat $DIR/$tdir/fopen > /dev/null
2785         ln $DIR/$tdir/flink $DIR/$tdir/flink2
2786         rm -f $DIR/$tdir/funlink2
2787         mv -f $DIR/$tdir/frename $DIR/$tdir/frename2
2788
2789         for (( i=0; i < 2; i++ )) ; do
2790                 local open_new2=`stat -c %Y $DIR/$tdir/fopen`
2791                 local link_new2=`stat -c %Y $DIR/$tdir/flink`
2792                 local unlink_new2=`stat -c %Y $DIR/$tdir/funlink`
2793                 local rename_new2=`stat -c %Y $DIR/$tdir/frename2`
2794
2795                 [ $open_new2 -eq $open_new ] || error "open file reverses mtime"
2796                 [ $link_new2 -eq $link_new ] || error "link file reverses mtime"
2797                 [ $unlink_new2 -eq $unlink_new ] || error "unlink file reverses mtime"
2798                 [ $rename_new2 -eq $rename_new ] || error "rename file reverses mtime"
2799
2800                 cancel_lru_locks osc
2801                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2802         done
2803 }
2804 run_test 39b "mtime change on open, link, unlink, rename  ======"
2805
2806 # this should be set to past
2807 TEST_39_MTIME=`date -d "1 year ago" +%s`
2808
2809 # bug 11063
2810 test_39c() {
2811         touch $DIR1/$tfile
2812         sleep 2
2813         local mtime0=`stat -c %Y $DIR1/$tfile`
2814
2815         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2816         local mtime1=`stat -c %Y $DIR1/$tfile`
2817         [ "$mtime1" = $TEST_39_MTIME ] || \
2818                 error "mtime is not set to past: $mtime1, should be $TEST_39_MTIME"
2819
2820         local d1=`date +%s`
2821         echo hello >> $DIR1/$tfile
2822         local d2=`date +%s`
2823         local mtime2=`stat -c %Y $DIR1/$tfile`
2824         [ "$mtime2" -ge "$d1" ] && [ "$mtime2" -le "$d2" ] || \
2825                 error "mtime is not updated on write: $d1 <= $mtime2 <= $d2"
2826
2827         mv $DIR1/$tfile $DIR1/$tfile-1
2828
2829         for (( i=0; i < 2; i++ )) ; do
2830                 local mtime3=`stat -c %Y $DIR1/$tfile-1`
2831                 [ "$mtime2" = "$mtime3" ] || \
2832                         error "mtime ($mtime2) changed (to $mtime3) on rename"
2833
2834                 cancel_lru_locks osc
2835                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2836         done
2837 }
2838 run_test 39c "mtime change on rename ==========================="
2839
2840 # bug 21114
2841 test_39d() {
2842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2843         touch $DIR1/$tfile
2844
2845         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2846
2847         for (( i=0; i < 2; i++ )) ; do
2848                 local mtime=`stat -c %Y $DIR1/$tfile`
2849                 [ $mtime = $TEST_39_MTIME ] || \
2850                         error "mtime($mtime) is not set to $TEST_39_MTIME"
2851
2852                 cancel_lru_locks osc
2853                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2854         done
2855 }
2856 run_test 39d "create, utime, stat =============================="
2857
2858 # bug 21114
2859 test_39e() {
2860         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2861         touch $DIR1/$tfile
2862         local mtime1=`stat -c %Y $DIR1/$tfile`
2863
2864         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2865
2866         for (( i=0; i < 2; i++ )) ; do
2867                 local mtime2=`stat -c %Y $DIR1/$tfile`
2868                 [ $mtime2 = $TEST_39_MTIME ] || \
2869                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2870
2871                 cancel_lru_locks osc
2872                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2873         done
2874 }
2875 run_test 39e "create, stat, utime, stat ========================"
2876
2877 # bug 21114
2878 test_39f() {
2879         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2880         touch $DIR1/$tfile
2881         mtime1=`stat -c %Y $DIR1/$tfile`
2882
2883         sleep 2
2884         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2885
2886         for (( i=0; i < 2; i++ )) ; do
2887                 local mtime2=`stat -c %Y $DIR1/$tfile`
2888                 [ $mtime2 = $TEST_39_MTIME ] || \
2889                         error "mtime($mtime2) is not set to $TEST_39_MTIME"
2890
2891                 cancel_lru_locks osc
2892                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2893         done
2894 }
2895 run_test 39f "create, stat, sleep, utime, stat ================="
2896
2897 # bug 11063
2898 test_39g() {
2899         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2900         echo hello >> $DIR1/$tfile
2901         local mtime1=`stat -c %Y $DIR1/$tfile`
2902
2903         sleep 2
2904         chmod o+r $DIR1/$tfile
2905
2906         for (( i=0; i < 2; i++ )) ; do
2907                 local mtime2=`stat -c %Y $DIR1/$tfile`
2908                 [ "$mtime1" = "$mtime2" ] || \
2909                         error "lost mtime: $mtime2, should be $mtime1"
2910
2911                 cancel_lru_locks osc
2912                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2913         done
2914 }
2915 run_test 39g "write, chmod, stat ==============================="
2916
2917 # bug 11063
2918 test_39h() {
2919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2920         touch $DIR1/$tfile
2921         sleep 1
2922
2923         local d1=`date`
2924         echo hello >> $DIR1/$tfile
2925         local mtime1=`stat -c %Y $DIR1/$tfile`
2926
2927         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
2928         local d2=`date`
2929         if [ "$d1" != "$d2" ]; then
2930                 echo "write and touch not within one second"
2931         else
2932                 for (( i=0; i < 2; i++ )) ; do
2933                         local mtime2=`stat -c %Y $DIR1/$tfile`
2934                         [ "$mtime2" = $TEST_39_MTIME ] || \
2935                                 error "lost mtime: $mtime2, should be $TEST_39_MTIME"
2936
2937                         cancel_lru_locks osc
2938                         if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2939                 done
2940         fi
2941 }
2942 run_test 39h "write, utime within one second, stat ============="
2943
2944 test_39i() {
2945         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2946         touch $DIR1/$tfile
2947         sleep 1
2948
2949         echo hello >> $DIR1/$tfile
2950         local mtime1=`stat -c %Y $DIR1/$tfile`
2951
2952         mv $DIR1/$tfile $DIR1/$tfile-1
2953
2954         for (( i=0; i < 2; i++ )) ; do
2955                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2956
2957                 [ "$mtime1" = "$mtime2" ] || \
2958                         error "lost mtime: $mtime2, should be $mtime1"
2959
2960                 cancel_lru_locks osc
2961                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2962         done
2963 }
2964 run_test 39i "write, rename, stat =============================="
2965
2966 test_39j() {
2967         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
2968         start_full_debug_logging
2969         touch $DIR1/$tfile
2970         sleep 1
2971
2972         #define OBD_FAIL_OSC_DELAY_SETTIME       0x412
2973         lctl set_param fail_loc=0x80000412
2974         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c ||
2975                 error "multiop failed"
2976         local multipid=$!
2977         local mtime1=`stat -c %Y $DIR1/$tfile`
2978
2979         mv $DIR1/$tfile $DIR1/$tfile-1
2980
2981         kill -USR1 $multipid
2982         wait $multipid || error "multiop close failed"
2983
2984         for (( i=0; i < 2; i++ )) ; do
2985                 local mtime2=`stat -c %Y $DIR1/$tfile-1`
2986                 [ "$mtime1" = "$mtime2" ] ||
2987                         error "mtime is lost on close: $mtime2, " \
2988                               "should be $mtime1"
2989
2990                 cancel_lru_locks osc
2991                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
2992         done
2993         lctl set_param fail_loc=0
2994         stop_full_debug_logging
2995 }
2996 run_test 39j "write, rename, close, stat ======================="
2997
2998 test_39k() {
2999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3000         touch $DIR1/$tfile
3001         sleep 1
3002
3003         multiop_bg_pause $DIR1/$tfile oO_RDWR:w2097152_c || error "multiop failed"
3004         local multipid=$!
3005         local mtime1=`stat -c %Y $DIR1/$tfile`
3006
3007         touch -m -d @$TEST_39_MTIME $DIR1/$tfile
3008
3009         kill -USR1 $multipid
3010         wait $multipid || error "multiop close failed"
3011
3012         for (( i=0; i < 2; i++ )) ; do
3013                 local mtime2=`stat -c %Y $DIR1/$tfile`
3014
3015                 [ "$mtime2" = $TEST_39_MTIME ] || \
3016                         error "mtime is lost on close: $mtime2, should be $TEST_39_MTIME"
3017
3018                 cancel_lru_locks osc
3019                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3020         done
3021 }
3022 run_test 39k "write, utime, close, stat ========================"
3023
3024 # this should be set to future
3025 TEST_39_ATIME=`date -d "1 year" +%s`
3026
3027 test_39l() {
3028         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3029         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3030         local atime_diff=$(do_facet $SINGLEMDS \
3031                                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3032         rm -rf $DIR/$tdir
3033         mkdir -p $DIR/$tdir
3034
3035         # test setting directory atime to future
3036         touch -a -d @$TEST_39_ATIME $DIR/$tdir
3037         local atime=$(stat -c %X $DIR/$tdir)
3038         [ "$atime" = $TEST_39_ATIME ] || \
3039                 error "atime is not set to future: $atime, $TEST_39_ATIME"
3040
3041         # test setting directory atime from future to now
3042         local d1=$(date +%s)
3043         ls $DIR/$tdir
3044         local d2=$(date +%s)
3045
3046         cancel_lru_locks mdc
3047         atime=$(stat -c %X $DIR/$tdir)
3048         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3049                 error "atime is not updated from future: $atime, $d1<atime<$d2"
3050
3051         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=2
3052         sleep 3
3053
3054         # test setting directory atime when now > dir atime + atime_diff
3055         d1=$(date +%s)
3056         ls $DIR/$tdir
3057         d2=$(date +%s)
3058         cancel_lru_locks mdc
3059         atime=$(stat -c %X $DIR/$tdir)
3060         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3061                 error "atime is not updated  : $atime, should be $d2"
3062
3063         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=60
3064         sleep 3
3065
3066         # test not setting directory atime when now < dir atime + atime_diff
3067         ls $DIR/$tdir
3068         cancel_lru_locks mdc
3069         atime=$(stat -c %X $DIR/$tdir)
3070         [ "$atime" -ge "$d1" -a "$atime" -le "$d2" ] || \
3071                 error "atime is updated to $atime, should remain $d1<atime<$d2"
3072
3073         do_facet $SINGLEMDS \
3074                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3075 }
3076 run_test 39l "directory atime update ==========================="
3077
3078 test_39m() {
3079         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3080         touch $DIR1/$tfile
3081         sleep 2
3082         local far_past_mtime=$(date -d "May 29 1953" +%s)
3083         local far_past_atime=$(date -d "Dec 17 1903" +%s)
3084
3085         touch -m -d @$far_past_mtime $DIR1/$tfile
3086         touch -a -d @$far_past_atime $DIR1/$tfile
3087
3088         for (( i=0; i < 2; i++ )) ; do
3089                 local timestamps=$(stat -c "%X %Y" $DIR1/$tfile)
3090                 [ "$timestamps" = "$far_past_atime $far_past_mtime" ] || \
3091                         error "atime or mtime set incorrectly"
3092
3093                 cancel_lru_locks osc
3094                 if [ $i = 0 ] ; then echo "repeat after cancel_lru_locks"; fi
3095         done
3096 }
3097 run_test 39m "test atime and mtime before 1970"
3098
3099 test_39n() { # LU-3832
3100         local atime_diff=$(do_facet $SINGLEMDS \
3101                 lctl get_param -n mdd.*MDT0000*.atime_diff)
3102         local atime0
3103         local atime1
3104         local atime2
3105
3106         do_facet $SINGLEMDS lctl set_param -n mdd.*MDT0000*.atime_diff=1
3107
3108         rm -rf $DIR/$tfile
3109         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 status=noxfer
3110         atime0=$(stat -c %X $DIR/$tfile)
3111
3112         sleep 5
3113         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3114         atime1=$(stat -c %X $DIR/$tfile)
3115
3116         sleep 5
3117         cancel_lru_locks mdc
3118         cancel_lru_locks osc
3119         $MULTIOP $DIR/$tfile oO_RDONLY:O_NOATIME:r4096c
3120         atime2=$(stat -c %X $DIR/$tfile)
3121
3122         do_facet $SINGLEMDS \
3123                 lctl set_param -n mdd.*MDT0000*.atime_diff=$atime_diff
3124
3125         [ "$atime0" -eq "$atime1" ] || error "atime0 $atime0 != atime1 $atime1"
3126         [ "$atime1" -eq "$atime2" ] || error "atime0 $atime0 != atime1 $atime1"
3127 }
3128 run_test 39n "check that O_NOATIME is honored"
3129
3130 test_40() {
3131         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
3132         $RUNAS $OPENFILE -f O_WRONLY:O_TRUNC $DIR/$tfile &&
3133                 error "openfile O_WRONLY:O_TRUNC $tfile failed"
3134         $CHECKSTAT -t file -s 4096 $DIR/$tfile ||
3135                 error "$tfile is not 4096 bytes in size"
3136 }
3137 run_test 40 "failed open(O_TRUNC) doesn't truncate ============="
3138
3139 test_41() {
3140         # bug 1553
3141         small_write $DIR/f41 18
3142 }
3143 run_test 41 "test small file write + fstat ====================="
3144
3145 count_ost_writes() {
3146         lctl get_param -n osc.*.stats |
3147             awk -vwrites=0 '/ost_write/ { writes += $2 } END { print writes; }'
3148 }
3149
3150 # decent default
3151 WRITEBACK_SAVE=500
3152 DIRTY_RATIO_SAVE=40
3153 MAX_DIRTY_RATIO=50
3154 BG_DIRTY_RATIO_SAVE=10
3155 MAX_BG_DIRTY_RATIO=25
3156
3157 start_writeback() {
3158         trap 0
3159         # in 2.6, restore /proc/sys/vm/dirty_writeback_centisecs,
3160         # dirty_ratio, dirty_background_ratio
3161         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3162                 sysctl -w vm.dirty_writeback_centisecs=$WRITEBACK_SAVE
3163                 sysctl -w vm.dirty_background_ratio=$BG_DIRTY_RATIO_SAVE
3164                 sysctl -w vm.dirty_ratio=$DIRTY_RATIO_SAVE
3165         else
3166                 # if file not here, we are a 2.4 kernel
3167                 kill -CONT `pidof kupdated`
3168         fi
3169 }
3170
3171 stop_writeback() {
3172         # setup the trap first, so someone cannot exit the test at the
3173         # exact wrong time and mess up a machine
3174         trap start_writeback EXIT
3175         # in 2.6, save and 0 /proc/sys/vm/dirty_writeback_centisecs
3176         if [ -f /proc/sys/vm/dirty_writeback_centisecs ]; then
3177                 WRITEBACK_SAVE=`sysctl -n vm.dirty_writeback_centisecs`
3178                 sysctl -w vm.dirty_writeback_centisecs=0
3179                 sysctl -w vm.dirty_writeback_centisecs=0
3180                 # save and increase /proc/sys/vm/dirty_ratio
3181                 DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_ratio`
3182                 sysctl -w vm.dirty_ratio=$MAX_DIRTY_RATIO
3183                 # save and increase /proc/sys/vm/dirty_background_ratio
3184                 BG_DIRTY_RATIO_SAVE=`sysctl -n vm.dirty_background_ratio`
3185                 sysctl -w vm.dirty_background_ratio=$MAX_BG_DIRTY_RATIO
3186         else
3187                 # if file not here, we are a 2.4 kernel
3188                 kill -STOP `pidof kupdated`
3189         fi
3190 }
3191
3192 # ensure that all stripes have some grant before we test client-side cache
3193 setup_test42() {
3194         for i in `seq -f $DIR/f42-%g 1 $OSTCOUNT`; do
3195                 dd if=/dev/zero of=$i bs=4k count=1
3196                 rm $i
3197         done
3198 }
3199
3200 # Tests 42* verify that our behaviour is correct WRT caching, file closure,
3201 # file truncation, and file removal.
3202 test_42a() {
3203         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3204         setup_test42
3205         cancel_lru_locks osc
3206         stop_writeback
3207         sync; sleep 1; sync # just to be safe
3208         BEFOREWRITES=`count_ost_writes`
3209         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur_grant_bytes | grep "[0-9]"
3210         dd if=/dev/zero of=$DIR/f42a bs=1024 count=100
3211         AFTERWRITES=`count_ost_writes`
3212         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3213                 error "$BEFOREWRITES < $AFTERWRITES"
3214         start_writeback
3215 }
3216 run_test 42a "ensure that we don't flush on close =============="
3217
3218 test_42b() {
3219         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3220         setup_test42
3221         cancel_lru_locks osc
3222         stop_writeback
3223         sync
3224         dd if=/dev/zero of=$DIR/f42b bs=1024 count=100
3225         BEFOREWRITES=`count_ost_writes`
3226         $MUNLINK $DIR/f42b || error "$MUNLINK $DIR/f42b: $?"
3227         AFTERWRITES=`count_ost_writes`
3228         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3229                 error "$BEFOREWRITES < $AFTERWRITES on unlink"
3230         fi
3231         BEFOREWRITES=`count_ost_writes`
3232         sync || error "sync: $?"
3233         AFTERWRITES=`count_ost_writes`
3234         if [ $BEFOREWRITES -lt $AFTERWRITES ]; then
3235                 error "$BEFOREWRITES < $AFTERWRITES on sync"
3236         fi
3237         dmesg | grep 'error from obd_brw_async' && error 'error writing back'
3238         start_writeback
3239         return 0
3240 }
3241 run_test 42b "test destroy of file with cached dirty data ======"
3242
3243 # if these tests just want to test the effect of truncation,
3244 # they have to be very careful.  consider:
3245 # - the first open gets a {0,EOF}PR lock
3246 # - the first write conflicts and gets a {0, count-1}PW
3247 # - the rest of the writes are under {count,EOF}PW
3248 # - the open for truncate tries to match a {0,EOF}PR
3249 #   for the filesize and cancels the PWs.
3250 # any number of fixes (don't get {0,EOF} on open, match
3251 # composite locks, do smarter file size management) fix
3252 # this, but for now we want these tests to verify that
3253 # the cancellation with truncate intent works, so we
3254 # start the file with a full-file pw lock to match against
3255 # until the truncate.
3256 trunc_test() {
3257         test=$1
3258         file=$DIR/$test
3259         offset=$2
3260         cancel_lru_locks osc
3261         stop_writeback
3262         # prime the file with 0,EOF PW to match
3263         touch $file
3264         $TRUNCATE $file 0
3265         sync; sync
3266         # now the real test..
3267         dd if=/dev/zero of=$file bs=1024 count=100
3268         BEFOREWRITES=`count_ost_writes`
3269         $TRUNCATE $file $offset
3270         cancel_lru_locks osc
3271         AFTERWRITES=`count_ost_writes`
3272         start_writeback
3273 }
3274
3275 test_42c() {
3276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3277         trunc_test 42c 1024
3278         [ $BEFOREWRITES -eq $AFTERWRITES ] && \
3279             error "beforewrites $BEFOREWRITES == afterwrites $AFTERWRITES on truncate"
3280         rm $file
3281 }
3282 run_test 42c "test partial truncate of file with cached dirty data"
3283
3284 test_42d() {
3285         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3286         trunc_test 42d 0
3287         [ $BEFOREWRITES -eq $AFTERWRITES ] || \
3288             error "beforewrites $BEFOREWRITES != afterwrites $AFTERWRITES on truncate"
3289         rm $file
3290 }
3291 run_test 42d "test complete truncate of file with cached dirty data"
3292
3293 test_42e() { # bug22074
3294         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3295         local TDIR=$DIR/${tdir}e
3296         local pagesz=$(page_size)
3297         local pages=16 # hardcoded 16 pages, don't change it.
3298         local files=$((OSTCOUNT * 500)) # hopefully 500 files on each OST
3299         local proc_osc0="osc.${FSNAME}-OST0000-osc-[^MDT]*"
3300         local max_dirty_mb
3301         local warmup_files
3302
3303         test_mkdir -p $DIR/${tdir}e
3304         $SETSTRIPE -c 1 $TDIR
3305         createmany -o $TDIR/f $files
3306
3307         max_dirty_mb=$($LCTL get_param -n $proc_osc0/max_dirty_mb)
3308
3309         # we assume that with $OSTCOUNT files, at least one of them will
3310         # be allocated on OST0.
3311         warmup_files=$((OSTCOUNT * max_dirty_mb))
3312         createmany -o $TDIR/w $warmup_files
3313
3314         # write a large amount of data into one file and sync, to get good
3315         # avail_grant number from OST.
3316         for ((i=0; i<$warmup_files; i++)); do
3317                 idx=$($GETSTRIPE -i $TDIR/w$i)
3318                 [ $idx -ne 0 ] && continue
3319                 dd if=/dev/zero of=$TDIR/w$i bs="$max_dirty_mb"M count=1
3320                 break
3321         done
3322         [ $i -gt $warmup_files ] && error "OST0 is still cold"
3323         sync
3324         $LCTL get_param $proc_osc0/cur_dirty_bytes
3325         $LCTL get_param $proc_osc0/cur_grant_bytes
3326
3327         # create as much dirty pages as we can while not to trigger the actual
3328         # RPCs directly. but depends on the env, VFS may trigger flush during this
3329         # period, hopefully we are good.
3330         for ((i=0; i<$warmup_files; i++)); do
3331                 idx=$($GETSTRIPE -i $TDIR/w$i)
3332                 [ $idx -ne 0 ] && continue
3333                 dd if=/dev/zero of=$TDIR/w$i bs=1M count=1 2>/dev/null
3334         done
3335         $LCTL get_param $proc_osc0/cur_dirty_bytes
3336         $LCTL get_param $proc_osc0/cur_grant_bytes
3337
3338         # perform the real test
3339         $LCTL set_param $proc_osc0/rpc_stats 0
3340         for ((;i<$files; i++)); do
3341                 [ $($GETSTRIPE -i $TDIR/f$i) -eq 0 ] || continue
3342                 dd if=/dev/zero of=$TDIR/f$i bs=$pagesz count=$pages 2>/dev/null
3343         done
3344         sync
3345         $LCTL get_param $proc_osc0/rpc_stats
3346
3347         local percent=0
3348         local have_ppr=false
3349         $LCTL get_param $proc_osc0/rpc_stats |
3350                 while read PPR RRPC RPCT RCUM BAR WRPC WPCT WCUM; do
3351                         # skip lines until we are at the RPC histogram data
3352                         [ "$PPR" == "pages" ] && have_ppr=true && continue
3353                         $have_ppr || continue
3354
3355                         # we only want the percent stat for < 16 pages
3356                         [ $(echo $PPR | tr -d ':') -ge $pages ] && break
3357
3358                         percent=$((percent + WPCT))
3359                         if [ $percent -gt 15 ]; then
3360                                 error "less than 16-pages write RPCs" \
3361                                       "$percent% > 15%"
3362                                 break
3363                         fi
3364                 done
3365         rm -rf $TDIR
3366 }
3367 run_test 42e "verify sub-RPC writes are not done synchronously"
3368
3369 test_43() {
3370         test_mkdir -p $DIR/$tdir
3371         cp -p /bin/ls $DIR/$tdir/$tfile
3372         $MULTIOP $DIR/$tdir/$tfile Ow_c &
3373         pid=$!
3374         # give multiop a chance to open
3375         sleep 1
3376
3377         $DIR/$tdir/$tfile && error || true
3378         kill -USR1 $pid
3379 }
3380 run_test 43 "execution of file opened for write should return -ETXTBSY"
3381
3382 test_43a() {
3383         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3384         test_mkdir -p $DIR/$tdir
3385         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3386                         cp -p multiop $DIR/$tdir/multiop
3387         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3388                         return 1
3389         MULTIOP_PID=$!
3390         $MULTIOP $DIR/$tdir/multiop Oc && error "expected error, got success"
3391         kill -USR1 $MULTIOP_PID || return 2
3392         wait $MULTIOP_PID || return 3
3393         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3394 }
3395 run_test 43a "open(RDWR) of file being executed should return -ETXTBSY"
3396
3397 test_43b() {
3398         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3399         test_mkdir -p $DIR/$tdir
3400         cp -p `which $MULTIOP` $DIR/$tdir/multiop ||
3401                         cp -p multiop $DIR/$tdir/multiop
3402         MULTIOP_PROG=$DIR/$tdir/multiop multiop_bg_pause $TMP/$tfile.junk O_c ||
3403                         return 1
3404         MULTIOP_PID=$!
3405         $TRUNCATE $DIR/$tdir/multiop 0 && error "expected error, got success"
3406         kill -USR1 $MULTIOP_PID || return 2
3407         wait $MULTIOP_PID || return 3
3408         rm $TMP/$tfile.junk $DIR/$tdir/multiop
3409 }
3410 run_test 43b "truncate of file being executed should return -ETXTBSY"
3411
3412 test_43c() {
3413         local testdir="$DIR/$tdir"
3414         test_mkdir -p $DIR/$tdir
3415         cp $SHELL $testdir/
3416         ( cd $(dirname $SHELL) && md5sum $(basename $SHELL) ) | \
3417                 ( cd $testdir && md5sum -c)
3418 }
3419 run_test 43c "md5sum of copy into lustre========================"
3420
3421 test_44() {
3422         [  "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
3423         dd if=/dev/zero of=$DIR/f1 bs=4k count=1 seek=1023
3424         dd if=$DIR/f1 bs=4k count=1 > /dev/null
3425 }
3426 run_test 44 "zero length read from a sparse stripe ============="
3427
3428 test_44a() {
3429     local nstripe=`$LCTL lov_getconfig $DIR | grep default_stripe_count: | \
3430                          awk '{print $2}'`
3431     [ -z "$nstripe" ] && skip "can't get stripe info" && return
3432     [ "$nstripe" -gt "$OSTCOUNT" ] && skip "Wrong default_stripe_count: $nstripe (OSTCOUNT: $OSTCOUNT)" && return
3433     local stride=`$LCTL lov_getconfig $DIR | grep default_stripe_size: | \
3434                       awk '{print $2}'`
3435     if [ $nstripe -eq 0 -o $nstripe -eq -1 ] ; then
3436         nstripe=`$LCTL lov_getconfig $DIR | grep obd_count: | awk '{print $2}'`
3437     fi
3438
3439     OFFSETS="0 $((stride/2)) $((stride-1))"
3440     for offset in $OFFSETS ; do
3441       for i in `seq 0 $((nstripe-1))`; do
3442         local GLOBALOFFSETS=""
3443         local size=$((((i + 2 * $nstripe )*$stride + $offset)))  # Bytes
3444         local myfn=$DIR/d44a-$size
3445         echo "--------writing $myfn at $size"
3446         ll_sparseness_write $myfn $size  || error "ll_sparseness_write"
3447         GLOBALOFFSETS="$GLOBALOFFSETS $size"
3448         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3449                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3450
3451         for j in `seq 0 $((nstripe-1))`; do
3452             size=$((((j + $nstripe )*$stride + $offset)))  # Bytes
3453             ll_sparseness_write $myfn $size || error "ll_sparseness_write"
3454             GLOBALOFFSETS="$GLOBALOFFSETS $size"
3455         done
3456         ll_sparseness_verify $myfn $GLOBALOFFSETS \
3457                             || error "ll_sparseness_verify $GLOBALOFFSETS"
3458         rm -f $myfn
3459       done
3460     done
3461 }
3462 run_test 44a "test sparse pwrite ==============================="
3463
3464 dirty_osc_total() {
3465         tot=0
3466         for d in `lctl get_param -n osc.*.cur_dirty_bytes`; do
3467                 tot=$(($tot + $d))
3468         done
3469         echo $tot
3470 }
3471 do_dirty_record() {
3472         before=`dirty_osc_total`
3473         echo executing "\"$*\""
3474         eval $*
3475         after=`dirty_osc_total`
3476         echo before $before, after $after
3477 }
3478 test_45() {
3479         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3480         f="$DIR/f45"
3481         # Obtain grants from OST if it supports it
3482         echo blah > ${f}_grant
3483         stop_writeback
3484         sync
3485         do_dirty_record "echo blah > $f"
3486         [ $before -eq $after ] && error "write wasn't cached"
3487         do_dirty_record "> $f"
3488         [ $before -gt $after ] || error "truncate didn't lower dirty count"
3489         do_dirty_record "echo blah > $f"
3490         [ $before -eq $after ] && error "write wasn't cached"
3491         do_dirty_record "sync"
3492         [ $before -gt $after ] || error "writeback didn't lower dirty count"
3493         do_dirty_record "echo blah > $f"
3494         [ $before -eq $after ] && error "write wasn't cached"
3495         do_dirty_record "cancel_lru_locks osc"
3496         [ $before -gt $after ] || error "lock cancellation didn't lower dirty count"
3497         start_writeback
3498 }
3499 run_test 45 "osc io page accounting ============================"
3500
3501 # in a 2 stripe file (lov.sh), page 1023 maps to page 511 in its object.  this
3502 # test tickles a bug where re-dirtying a page was failing to be mapped to the
3503 # objects offset and an assert hit when an rpc was built with 1023's mapped
3504 # offset 511 and 511's raw 511 offset. it also found general redirtying bugs.
3505 test_46() {
3506         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3507         f="$DIR/f46"
3508         stop_writeback
3509         sync
3510         dd if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3511         sync
3512         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=1023 count=1
3513         dd conv=notrunc if=/dev/zero of=$f bs=`page_size` seek=511 count=1
3514         sync
3515         start_writeback
3516 }
3517 run_test 46 "dirtying a previously written page ================"
3518
3519 # test_47 is removed "Device nodes check" is moved to test_28
3520
3521 test_48a() { # bug 2399
3522         check_kernel_version 34 || return 0
3523         test_mkdir -p $DIR/$tdir
3524         cd $DIR/$tdir
3525         mv $DIR/$tdir $DIR/d48.new || error "move directory failed"
3526         test_mkdir $DIR/$tdir || error "recreate directory failed"
3527         touch foo || error "'touch foo' failed after recreating cwd"
3528         test_mkdir $DIR/$tdir/bar ||
3529                      error "'mkdir foo' failed after recreating cwd"
3530         if check_kernel_version 44; then
3531                 touch .foo || error "'touch .foo' failed after recreating cwd"
3532                 test_mkdir $DIR/$tdir/.bar ||
3533                               error "'mkdir .foo' failed after recreating cwd"
3534         fi
3535         ls . > /dev/null || error "'ls .' failed after recreating cwd"
3536         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3537         cd . || error "'cd .' failed after recreating cwd"
3538         test_mkdir . && error "'mkdir .' worked after recreating cwd"
3539         rmdir . && error "'rmdir .' worked after recreating cwd"
3540         ln -s . baz || error "'ln -s .' failed after recreating cwd"
3541         cd .. || error "'cd ..' failed after recreating cwd"
3542 }
3543 run_test 48a "Access renamed working dir (should return errors)="
3544
3545 test_48b() { # bug 2399
3546         check_kernel_version 34 || return 0
3547         rm -rf $DIR/$tdir
3548         test_mkdir -p $DIR/$tdir
3549         cd $DIR/$tdir
3550         rmdir $DIR/$tdir || error "remove cwd $DIR/$tdir failed"
3551         touch foo && error "'touch foo' worked after removing cwd"
3552         test_mkdir $DIR/$tdir/foo &&
3553                      error "'mkdir foo' worked after removing cwd"
3554         if check_kernel_version 44; then
3555                 touch .foo && error "'touch .foo' worked after removing cwd"
3556                 test_mkdir $DIR/$tdir/.foo &&
3557                               error "'mkdir .foo' worked after removing cwd"
3558         fi
3559         ls . > /dev/null && error "'ls .' worked after removing cwd"
3560         ls .. > /dev/null || error "'ls ..' failed after removing cwd"
3561         is_patchless || ( cd . && error "'cd .' worked after removing cwd" )
3562         test_mkdir $DIR/$tdir/. && error "'mkdir .' worked after removing cwd"
3563         rmdir . && error "'rmdir .' worked after removing cwd"
3564         ln -s . foo && error "'ln -s .' worked after removing cwd"
3565         cd .. || echo "'cd ..' failed after removing cwd `pwd`"  #bug 3517
3566 }
3567 run_test 48b "Access removed working dir (should return errors)="
3568
3569 test_48c() { # bug 2350
3570         check_kernel_version 36 || return 0
3571         #lctl set_param debug=-1
3572         #set -vx
3573         rm -rf $DIR/$tdir
3574         test_mkdir -p $DIR/$tdir/dir
3575         cd $DIR/$tdir/dir
3576         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3577         $TRACE touch foo && error "touch foo worked after removing cwd"
3578         $TRACE test_mkdir foo && error "'mkdir foo' worked after removing cwd"
3579         if check_kernel_version 44; then
3580                 touch .foo && error "touch .foo worked after removing cwd"
3581                 test_mkdir .foo && error "mkdir .foo worked after removing cwd"
3582         fi
3583         $TRACE ls . && error "'ls .' worked after removing cwd"
3584         $TRACE ls .. || error "'ls ..' failed after removing cwd"
3585         is_patchless || ( $TRACE cd . &&
3586                         error "'cd .' worked after removing cwd" )
3587         $TRACE test_mkdir . && error "'mkdir .' worked after removing cwd"
3588         $TRACE rmdir . && error "'rmdir .' worked after removing cwd"
3589         $TRACE ln -s . foo && error "'ln -s .' worked after removing cwd"
3590         $TRACE cd .. || echo "'cd ..' failed after removing cwd `pwd`" #bug 3415
3591 }
3592 run_test 48c "Access removed working subdir (should return errors)"
3593
3594 test_48d() { # bug 2350
3595         check_kernel_version 36 || return 0
3596         #lctl set_param debug=-1
3597         #set -vx
3598         rm -rf $DIR/$tdir
3599         test_mkdir -p $DIR/$tdir/dir
3600         cd $DIR/$tdir/dir
3601         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3602         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3603         $TRACE touch foo && error "'touch foo' worked after removing parent"
3604         $TRACE test_mkdir foo && error "mkdir foo worked after removing parent"
3605         if check_kernel_version 44; then
3606                 touch .foo && error "'touch .foo' worked after removing parent"
3607                 test_mkdir .foo &&
3608                               error "mkdir .foo worked after removing parent"
3609         fi
3610         $TRACE ls . && error "'ls .' worked after removing parent"
3611         $TRACE ls .. && error "'ls ..' worked after removing parent"
3612         is_patchless || ( $TRACE cd . &&
3613                         error "'cd .' worked after recreate parent" )
3614         $TRACE test_mkdir . && error "'mkdir .' worked after removing parent"
3615         $TRACE rmdir . && error "'rmdir .' worked after removing parent"
3616         $TRACE ln -s . foo && error "'ln -s .' worked after removing parent"
3617         is_patchless || ( $TRACE cd .. &&
3618                         error "'cd ..' worked after removing parent" || true )
3619 }
3620 run_test 48d "Access removed parent subdir (should return errors)"
3621
3622 test_48e() { # bug 4134
3623         check_kernel_version 41 || return 0
3624         #lctl set_param debug=-1
3625         #set -vx
3626         rm -rf $DIR/$tdir
3627         test_mkdir -p $DIR/$tdir/dir
3628         cd $DIR/$tdir/dir
3629         $TRACE rmdir $DIR/$tdir/dir || error "remove cwd $DIR/$tdir/dir failed"
3630         $TRACE rmdir $DIR/$tdir || error "remove parent $DIR/$tdir failed"
3631         $TRACE touch $DIR/$tdir || error "'touch $DIR/$tdir' failed"
3632         $TRACE chmod +x $DIR/$tdir || error "'chmod +x $DIR/$tdir' failed"
3633         # On a buggy kernel addition of "touch foo" after cd .. will
3634         # produce kernel oops in lookup_hash_it
3635         touch ../foo && error "'cd ..' worked after recreate parent"
3636         cd $DIR
3637         $TRACE rm $DIR/$tdir || error "rm '$DIR/$tdir' failed"
3638 }
3639 run_test 48e "Access to recreated parent subdir (should return errors)"
3640
3641 test_49() { # LU-1030
3642         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3643         # get ost1 size - lustre-OST0000
3644         ost1_size=$(do_facet ost1 lfs df |grep ${ost1_svc} |awk '{print $4}')
3645         # write 800M at maximum
3646         [ $ost1_size -gt 819200 ] && ost1_size=819200
3647
3648         lfs setstripe -c 1 -i 0 $DIR/$tfile
3649         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((ost1_size >> 2)) &
3650         local dd_pid=$!
3651
3652         # change max_pages_per_rpc while writing the file
3653         local osc1_mppc=osc.$(get_osc_import_name client ost1).max_pages_per_rpc
3654         local orig_mppc=`$LCTL get_param -n $osc1_mppc`
3655         # loop until dd process exits
3656         while ps ax -opid | grep -wq $dd_pid; do
3657                 $LCTL set_param $osc1_mppc=$((RANDOM % 256 + 1))
3658                 sleep $((RANDOM % 5 + 1))
3659         done
3660         # restore original max_pages_per_rpc
3661         $LCTL set_param $osc1_mppc=$orig_mppc
3662         rm $DIR/$tfile || error "rm $DIR/$tfile failed"
3663 }
3664 run_test 49 "Change max_pages_per_rpc won't break osc extent"
3665
3666 test_50() {
3667         # bug 1485
3668         test_mkdir $DIR/$tdir
3669         cd $DIR/$tdir
3670         ls /proc/$$/cwd || error "ls /proc/$$/cwd failed"
3671 }
3672 run_test 50 "special situations: /proc symlinks  ==============="
3673
3674 test_51a() {    # was test_51
3675         # bug 1516 - create an empty entry right after ".." then split dir
3676         test_mkdir -p $DIR/$tdir
3677         touch $DIR/$tdir/foo
3678         $MCREATE $DIR/$tdir/bar
3679         rm $DIR/$tdir/foo
3680         createmany -m $DIR/$tdir/longfile 201
3681         FNUM=202
3682         while [ $(ls -sd $DIR/$tdir | awk '{ print $1 }') -eq 4 ]; do
3683                 $MCREATE $DIR/$tdir/longfile$FNUM
3684                 FNUM=$(($FNUM + 1))
3685                 echo -n "+"
3686         done
3687         echo
3688         ls -l $DIR/$tdir > /dev/null || error "ls -l $DIR/$tdir failed"
3689 }
3690 run_test 51a "special situations: split htree with empty entry =="
3691
3692 export NUMTEST=70000
3693 test_51b() {
3694         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3695         local BASE=$DIR/$tdir
3696
3697         # cleanup the directory
3698         rm -fr $BASE
3699
3700         test_mkdir -p $BASE
3701
3702         local mdtidx=$(printf "%04x" $($LFS getstripe -M $BASE))
3703         local numfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.filesfree)
3704         [ $numfree -lt 21000 ] && skip "not enough free inodes ($numfree)" &&
3705                 return
3706
3707         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3708                 echo "reduced count to $NUMTEST due to inodes"
3709
3710         # need to check free space for the directories as well
3711         local blkfree=$(lctl get_param -n mdc.$FSNAME-MDT$mdtidx*.kbytesavail)
3712         numfree=$((blkfree / 4))
3713         [ $numfree -lt $NUMTEST ] && NUMTEST=$(($numfree - 50)) &&
3714                 echo "reduced count to $NUMTEST due to blocks"
3715
3716         createmany -d $BASE/d $NUMTEST && echo $NUMTEST > $BASE/fnum ||
3717                 echo "failed" > $BASE/fnum
3718 }
3719 run_test 51b "exceed 64k subdirectory nlink limit"
3720
3721 test_51ba() { # LU-993
3722         local BASE=$DIR/$tdir
3723         # unlink all but 100 subdirectories, then check it still works
3724         local LEFT=100
3725         [ -f $BASE/fnum ] && local NUMPREV=$(cat $BASE/fnum) && rm $BASE/fnum
3726
3727         [ "$NUMPREV" != "failed" ] && NUMTEST=$NUMPREV
3728         local DELETE=$((NUMTEST - LEFT))
3729
3730         # continue on to run this test even if 51b didn't finish,
3731         # just to delete the many subdirectories created.
3732         [ ! -d "${BASE}/d1" ] && skip "test_51b() not run" && return 0
3733
3734         # for ldiskfs the nlink count should be 1, but this is OSD specific
3735         # and so this is listed for informational purposes only
3736         echo "nlink before: $(stat -c %h $BASE), created before: $NUMTEST"
3737         unlinkmany -d $BASE/d $DELETE
3738         RC=$?
3739
3740         if [ $RC -ne 0 ]; then
3741                 if [ "$NUMPREV" == "failed" ]; then
3742                         skip "previous setup failed"
3743                         return 0
3744                 else
3745                         error "unlink of first $DELETE subdirs failed"
3746                         return $RC
3747                 fi
3748         fi
3749
3750         echo "nlink between: $(stat -c %h $BASE)"
3751         # trim the first line of ls output
3752         local FOUND=$(($(ls -l ${BASE} | wc -l) - 1))
3753         [ $FOUND -ne $LEFT ] &&
3754                 error "can't find subdirs: found only $FOUND/$LEFT"
3755
3756         unlinkmany -d $BASE/d $DELETE $LEFT ||
3757                 error "unlink of second $LEFT subdirs failed"
3758         # regardless of whether the backing filesystem tracks nlink accurately
3759         # or not, the nlink count shouldn't be more than "." and ".." here
3760         local AFTER=$(stat -c %h $BASE)
3761         [ $AFTER -gt 2 ] && error "nlink after: $AFTER > 2" ||
3762                 echo "nlink after: $AFTER"
3763 }
3764 run_test 51ba "verify nlink for many subdirectory cleanup"
3765
3766 test_51d() {
3767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3768         [  "$OSTCOUNT" -lt "3" ] && skip_env "skipping test with few OSTs" && return
3769         test_mkdir -p $DIR/$tdir
3770         createmany -o $DIR/$tdir/t- 1000
3771         $GETSTRIPE $DIR/$tdir > $TMP/files
3772         for N in `seq 0 $((OSTCOUNT - 1))`; do
3773             OBJS[$N]=`awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}' $TMP/files`
3774             OBJS0[$N]=`grep -A 1 idx $TMP/files | awk -vobjs=0 '($1 == '$N') { objs += 1 } END { print objs;}'`
3775             log "OST$N has ${OBJS[$N]} objects, ${OBJS0[$N]} are index 0"
3776         done
3777         unlinkmany $DIR/$tdir/t- 1000
3778
3779         NLAST=0
3780         for N in `seq 1 $((OSTCOUNT - 1))`; do
3781             [ ${OBJS[$N]} -lt $((${OBJS[$NLAST]} - 20)) ] && \
3782                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3783             [ ${OBJS[$N]} -gt $((${OBJS[$NLAST]} + 20)) ] && \
3784                 error "OST $N has less objects vs OST $NLAST (${OBJS[$N]} < ${OBJS[$NLAST]}"
3785
3786             [ ${OBJS0[$N]} -lt $((${OBJS0[$NLAST]} - 20)) ] && \
3787                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3788             [ ${OBJS0[$N]} -gt $((${OBJS0[$NLAST]} + 20)) ] && \
3789                 error "OST $N has less #0 objects vs OST $NLAST (${OBJS0[$N]} < ${OBJS0[$NLAST]}"
3790             NLAST=$N
3791         done
3792 }
3793 run_test 51d "check object distribution ===================="
3794
3795 test_52a() {
3796         [ -f $DIR/$tdir/foo ] && chattr -a $DIR/$tdir/foo
3797         test_mkdir -p $DIR/$tdir
3798         touch $DIR/$tdir/foo
3799         chattr +a $DIR/$tdir/foo || error "chattr +a failed"
3800         echo bar >> $DIR/$tdir/foo || error "append bar failed"
3801         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3802         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3803         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3804                                         error "link worked"
3805         echo foo >> $DIR/$tdir/foo || error "append foo failed"
3806         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3807         lsattr $DIR/$tdir/foo | egrep -q "^-+a[-e]+ $DIR/$tdir/foo" ||
3808                                                      error "lsattr"
3809         chattr -a $DIR/$tdir/foo || error "chattr -a failed"
3810         cp -r $DIR/$tdir /tmp/
3811         rm -fr $DIR/$tdir || error "cleanup rm failed"
3812 }
3813 run_test 52a "append-only flag test (should return errors) ====="
3814
3815 test_52b() {
3816         [ -f $DIR/$tdir/foo ] && chattr -i $DIR/$tdir/foo
3817         test_mkdir -p $DIR/$tdir
3818         touch $DIR/$tdir/foo
3819         chattr +i $DIR/$tdir/foo || error "chattr +i failed"
3820         cat test > $DIR/$tdir/foo && error "cat test worked"
3821         cp /etc/hosts $DIR/$tdir/foo && error "cp worked"
3822         rm -f $DIR/$tdir/foo 2>/dev/null && error "rm worked"
3823         link $DIR/$tdir/foo $DIR/$tdir/foo_link 2>/dev/null &&
3824                                         error "link worked"
3825         echo foo >> $DIR/$tdir/foo && error "echo worked"
3826         mrename $DIR/$tdir/foo $DIR/$tdir/foo_ren && error "rename worked"
3827         [ -f $DIR/$tdir/foo ] || error "$tdir/foo is not a file"
3828         [ -f $DIR/$tdir/foo_ren ] && error "$tdir/foo_ren is not a file"
3829         lsattr $DIR/$tdir/foo | egrep -q "^-+i[-e]+ $DIR/$tdir/foo" ||
3830                                                         error "lsattr"
3831         chattr -i $DIR/$tdir/foo || error "chattr failed"
3832
3833         rm -fr $DIR/$tdir || error "unable to remove $DIR/$tdir"
3834 }
3835 run_test 52b "immutable flag test (should return errors) ======="
3836
3837 test_53() {
3838         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3839         remote_mds_nodsh && skip "remote MDS with nodsh" && return
3840         remote_ost_nodsh && skip "remote OST with nodsh" && return
3841
3842         local param
3843         local param_seq
3844         local ostname
3845         local mds_last
3846         local mds_last_seq
3847         local ost_last
3848         local ost_last_seq
3849         local ost_last_id
3850         local ostnum
3851         local node
3852         local found=0
3853
3854         # only test MDT0000
3855         local mdtosc=$(get_mdtosc_proc_path $SINGLEMDS)
3856         for value in $(do_facet $SINGLEMDS lctl get_param osc.$mdtosc.prealloc_last_id) ; do
3857                 param=$(echo ${value[0]} | cut -d "=" -f1)
3858                 ostname=$(echo $param | cut -d "." -f2 | cut -d - -f 1-2)
3859                 param_seq=$(echo ${param} |
3860                             sed -e s/prealloc_last_id/prealloc_last_seq/g)
3861                 mds_last_seq=$(do_facet $SINGLEMDS lctl get_param -n $param_seq)
3862                 mds_last=$(do_facet $SINGLEMDS lctl get_param -n $param)
3863
3864                 ostnum=$(index_from_ostuuid ${ostname}_UUID)
3865                 node=$(facet_active_host ost$((ostnum+1)))
3866                 param="obdfilter.$ostname.last_id"
3867                 for ost_last in $(do_node $node lctl get_param -n $param) ; do
3868                         echo "$ostname.last_id=$ost_last ;MDS.last_id=$mds_last"
3869                         ost_last_id=$(echo $ost_last | awk -F':' '{print $2}' |
3870                                       sed -e "s/^0x//g")
3871                         ost_last_seq=$(echo $ost_last | awk -F':' '{print $1}')
3872                         if [ $ost_last_seq = $mds_last_seq ]; then
3873                                 if [ $ost_last_id != $mds_last ]; then
3874                                         error "$ost_last != $mds_last_id"
3875                                 else
3876                                         found=1
3877                                         break
3878                                 fi
3879                         fi
3880                 done
3881         done
3882         [ $found = 0 ] && error "can not match last_seq/last_id for $mdtosc"
3883         return 0
3884 }
3885 run_test 53 "verify that MDS and OSTs agree on pre-creation ===="
3886
3887 test_54a() {
3888         $SOCKETSERVER $DIR/socket ||
3889                 error "$SOCKETSERVER $DIR/socket failed: $?"
3890         $SOCKETCLIENT $DIR/socket ||
3891                 error "$SOCKETCLIENT $DIR/socket failed: $?"
3892         $MUNLINK $DIR/socket || error "$MUNLINK $DIR/socket failed: $?"
3893 }
3894 run_test 54a "unix domain socket test =========================="
3895
3896 test_54b() {
3897         f="$DIR/f54b"
3898         mknod $f c 1 3
3899         chmod 0666 $f
3900         dd if=/dev/zero of=$f bs=$(page_size) count=1
3901 }
3902 run_test 54b "char device works in lustre ======================"
3903
3904 find_loop_dev() {
3905         [ -b /dev/loop/0 ] && LOOPBASE=/dev/loop/
3906         [ -b /dev/loop0 ] && LOOPBASE=/dev/loop
3907         [ -z "$LOOPBASE" ] && echo "/dev/loop/0 and /dev/loop0 gone?" && return
3908
3909         for i in $(seq 3 7); do
3910                 losetup $LOOPBASE$i > /dev/null 2>&1 && continue
3911                 LOOPDEV=$LOOPBASE$i
3912                 LOOPNUM=$i
3913                 break
3914         done
3915 }
3916
3917 test_54c() {
3918         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
3919         tfile="$DIR/f54c"
3920         tdir="$DIR/d54c"
3921         loopdev="$DIR/loop54c"
3922
3923         find_loop_dev
3924         [ -z "$LOOPNUM" ] && echo "couldn't find empty loop device" && return
3925         mknod $loopdev b 7 $LOOPNUM
3926         echo "make a loop file system with $tfile on $loopdev ($LOOPNUM)..."
3927         dd if=/dev/zero of=$tfile bs=`page_size` seek=1024 count=1 > /dev/null
3928         losetup $loopdev $tfile || error "can't set up $loopdev for $tfile"
3929         mkfs.ext2 $loopdev || error "mke2fs on $loopdev"
3930         test_mkdir -p $tdir
3931         mount -t ext2 $loopdev $tdir || error "error mounting $loopdev on $tdir"
3932         dd if=/dev/zero of=$tdir/tmp bs=`page_size` count=30 || error "dd write"
3933         df $tdir
3934         dd if=$tdir/tmp of=/dev/zero bs=`page_size` count=30 || error "dd read"
3935         $UMOUNT $tdir
3936         losetup -d $loopdev
3937         rm $loopdev
3938 }
3939 run_test 54c "block device works in lustre ====================="
3940
3941 test_54d() {
3942         f="$DIR/f54d"
3943         string="aaaaaa"
3944         mknod $f p
3945         [ "$string" = $(echo $string > $f | cat $f) ] || error "$f != $string"
3946 }
3947 run_test 54d "fifo device works in lustre ======================"
3948
3949 test_54e() {
3950         check_kernel_version 46 || return 0
3951         f="$DIR/f54e"
3952         string="aaaaaa"
3953         cp -aL /dev/console $f
3954         echo $string > $f || error "echo $string to $f failed"
3955 }
3956 run_test 54e "console/tty device works in lustre ======================"
3957
3958 #The test_55 used to be iopen test and it was removed by bz#24037.
3959 #run_test 55 "check iopen_connect_dentry() ======================"
3960
3961 test_56a() {    # was test_56
3962         rm -rf $DIR/$tdir
3963         $SETSTRIPE -d $DIR
3964         test_mkdir -p $DIR/$tdir/dir
3965         NUMFILES=3
3966         NUMFILESx2=$(($NUMFILES * 2))
3967         for i in `seq 1 $NUMFILES` ; do
3968                 touch $DIR/$tdir/file$i
3969                 touch $DIR/$tdir/dir/file$i
3970         done
3971
3972         # test lfs getstripe with --recursive
3973         FILENUM=`$GETSTRIPE --recursive $DIR/$tdir | grep -c obdidx`
3974         [ $FILENUM -eq $NUMFILESx2 ] ||
3975                 error "$GETSTRIPE --recursive: found $FILENUM, not $NUMFILESx2"
3976         FILENUM=`$GETSTRIPE $DIR/$tdir | grep -c obdidx`
3977         [ $FILENUM -eq $NUMFILES ] ||
3978                 error "$GETSTRIPE $DIR/$tdir: found $FILENUM, not $NUMFILES"
3979         echo "$GETSTRIPE --recursive passed."
3980
3981         # test lfs getstripe with file instead of dir
3982         FILENUM=`$GETSTRIPE $DIR/$tdir/file1 | grep -c obdidx`
3983         [ $FILENUM  -eq 1 ] || error \
3984                  "$GETSTRIPE $DIR/$tdir/file1: found $FILENUM, not 1"
3985         echo "$GETSTRIPE file1 passed."
3986
3987         #test lfs getstripe with --verbose
3988         [ `$GETSTRIPE --verbose $DIR/$tdir |
3989                         grep -c lmm_magic` -eq $NUMFILES ] ||
3990                 error "$GETSTRIPE --verbose $DIR/$tdir: want $NUMFILES"
3991         [ `$GETSTRIPE $DIR/$tdir | grep -c lmm_magic` -eq 0 ] ||
3992             error "$GETSTRIPE $DIR/$tdir: showed lmm_magic"
3993         echo "$GETSTRIPE --verbose passed."
3994
3995         #test lfs getstripe with --obd
3996         $GETSTRIPE --obd wrong_uuid $DIR/$tdir 2>&1 |
3997                                         grep -q "unknown obduuid" ||
3998                 error "$GETSTRIPE --obd wrong_uuid should return error message"
3999
4000         [  "$OSTCOUNT" -lt 2 ] &&
4001                 skip_env "skipping other $GETSTRIPE --obd test" && return
4002
4003         OSTIDX=1
4004         OBDUUID=$(ostuuid_from_index $OSTIDX)
4005         FILENUM=`$GETSTRIPE -ir $DIR/$tdir | grep -x $OSTIDX | wc -l`
4006         FOUND=`$GETSTRIPE -r --obd $OBDUUID $DIR/$tdir | grep obdidx | wc -l`
4007         [ $FOUND -eq $FILENUM ] ||
4008                 error "$GETSTRIPE --obd wrong: found $FOUND, expected $FILENUM"
4009         [ `$GETSTRIPE -r -v --obd $OBDUUID $DIR/$tdir |
4010                 sed '/^[         ]*'${OSTIDX}'[  ]/d' |
4011                 sed -n '/^[      ]*[0-9][0-9]*[  ]/p' | wc -l` -eq 0 ] ||
4012                 error "$GETSTRIPE --obd: should not show file on other obd"
4013         echo "$GETSTRIPE --obd passed"
4014 }
4015 run_test 56a "check $GETSTRIPE"
4016
4017 NUMFILES=3
4018 NUMDIRS=3
4019 setup_56() {
4020         local LOCAL_NUMFILES="$1"
4021         local LOCAL_NUMDIRS="$2"
4022         local MKDIR_PARAMS="$3"
4023
4024         if [ ! -d "$TDIR" ] ; then
4025                 test_mkdir -p $TDIR
4026                 [ "$MKDIR_PARAMS" ] && $SETSTRIPE $MKDIR_PARAMS $TDIR
4027                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4028                         touch $TDIR/file$i
4029                 done
4030                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4031                         test_mkdir $TDIR/dir$i
4032                         for j in `seq 1 $LOCAL_NUMFILES` ; do
4033                                 touch $TDIR/dir$i/file$j
4034                         done
4035                 done
4036         fi
4037 }
4038
4039 setup_56_special() {
4040         LOCAL_NUMFILES=$1
4041         LOCAL_NUMDIRS=$2
4042         setup_56 $1 $2
4043         if [ ! -e "$TDIR/loop1b" ] ; then
4044                 for i in `seq 1 $LOCAL_NUMFILES` ; do
4045                         mknod $TDIR/loop${i}b b 7 $i
4046                         mknod $TDIR/null${i}c c 1 3
4047                         ln -s $TDIR/file1 $TDIR/link${i}l
4048                 done
4049                 for i in `seq 1 $LOCAL_NUMDIRS` ; do
4050                         mknod $TDIR/dir$i/loop${i}b b 7 $i
4051                         mknod $TDIR/dir$i/null${i}c c 1 3
4052                         ln -s $TDIR/dir$i/file1 $TDIR/dir$i/link${i}l
4053                 done
4054         fi
4055 }
4056
4057 test_56g() {
4058         $SETSTRIPE -d $DIR
4059
4060         TDIR=$DIR/${tdir}g
4061         setup_56 $NUMFILES $NUMDIRS
4062
4063         EXPECTED=$(($NUMDIRS + 2))
4064         # test lfs find with -name
4065         for i in $(seq 1 $NUMFILES) ; do
4066                 NUMS=$($LFIND -name "*$i" $TDIR | wc -l)
4067                 [ $NUMS -eq $EXPECTED ] ||
4068                         error "lfs find -name \"*$i\" $TDIR wrong: "\
4069                               "found $NUMS, expected $EXPECTED"
4070         done
4071 }
4072 run_test 56g "check lfs find -name ============================="
4073
4074 test_56h() {
4075         $SETSTRIPE -d $DIR
4076
4077         TDIR=$DIR/${tdir}g
4078         setup_56 $NUMFILES $NUMDIRS
4079
4080         EXPECTED=$(((NUMDIRS + 1) * (NUMFILES - 1) + NUMFILES))
4081         # test lfs find with ! -name
4082         for i in $(seq 1 $NUMFILES) ; do
4083                 NUMS=$($LFIND ! -name "*$i" $TDIR | wc -l)
4084                 [ $NUMS -eq $EXPECTED ] ||
4085                         error "lfs find ! -name \"*$i\" $TDIR wrong: "\
4086                               "found $NUMS, expected $EXPECTED"
4087         done
4088 }
4089 run_test 56h "check lfs find ! -name ============================="
4090
4091 test_56i() {
4092        tdir=${tdir}i
4093        test_mkdir -p $DIR/$tdir
4094        UUID=$(ostuuid_from_index 0 $DIR/$tdir)
4095        CMD="$LFIND -ost $UUID $DIR/$tdir"
4096        OUT=$($CMD)
4097        [ -z "$OUT" ] || error "\"$CMD\" returned directory '$OUT'"
4098 }
4099 run_test 56i "check 'lfs find -ost UUID' skips directories ======="
4100
4101 test_56j() {
4102         TDIR=$DIR/${tdir}g
4103         setup_56_special $NUMFILES $NUMDIRS
4104
4105         EXPECTED=$((NUMDIRS + 1))
4106         CMD="$LFIND -type d $TDIR"
4107         NUMS=$($CMD | wc -l)
4108         [ $NUMS -eq $EXPECTED ] ||
4109                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4110 }
4111 run_test 56j "check lfs find -type d ============================="
4112
4113 test_56k() {
4114         TDIR=$DIR/${tdir}g
4115         setup_56_special $NUMFILES $NUMDIRS
4116
4117         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4118         CMD="$LFIND -type f $TDIR"
4119         NUMS=$($CMD | wc -l)
4120         [ $NUMS -eq $EXPECTED ] ||
4121                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4122 }
4123 run_test 56k "check lfs find -type f ============================="
4124
4125 test_56l() {
4126         TDIR=$DIR/${tdir}g
4127         setup_56_special $NUMFILES $NUMDIRS
4128
4129         EXPECTED=$((NUMDIRS + NUMFILES))
4130         CMD="$LFIND -type b $TDIR"
4131         NUMS=$($CMD | wc -l)
4132         [ $NUMS -eq $EXPECTED ] ||
4133                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4134 }
4135 run_test 56l "check lfs find -type b ============================="
4136
4137 test_56m() {
4138         TDIR=$DIR/${tdir}g
4139         setup_56_special $NUMFILES $NUMDIRS
4140
4141         EXPECTED=$((NUMDIRS + NUMFILES))
4142         CMD="$LFIND -type c $TDIR"
4143         NUMS=$($CMD | wc -l)
4144         [ $NUMS -eq $EXPECTED ] ||
4145                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4146 }
4147 run_test 56m "check lfs find -type c ============================="
4148
4149 test_56n() {
4150         TDIR=$DIR/${tdir}g
4151         setup_56_special $NUMFILES $NUMDIRS
4152
4153         EXPECTED=$((NUMDIRS + NUMFILES))
4154         CMD="$LFIND -type l $TDIR"
4155         NUMS=$($CMD | wc -l)
4156         [ $NUMS -eq $EXPECTED ] ||
4157                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4158 }
4159 run_test 56n "check lfs find -type l ============================="
4160
4161 test_56o() {
4162         TDIR=$DIR/${tdir}o
4163         setup_56 $NUMFILES $NUMDIRS
4164
4165         utime $TDIR/file1 > /dev/null || error "utime (1)"
4166         utime $TDIR/file2 > /dev/null || error "utime (2)"
4167         utime $TDIR/dir1 > /dev/null || error "utime (3)"
4168         utime $TDIR/dir2 > /dev/null || error "utime (4)"
4169         utime $TDIR/dir1/file1 > /dev/null || error "utime (5)"
4170         dd if=/dev/zero count=1 >> $TDIR/dir1/file1 && sync
4171
4172         EXPECTED=4
4173         NUMS=`$LFIND -mtime +0 $TDIR | wc -l`
4174         [ $NUMS -eq $EXPECTED ] || \
4175                 error "lfs find -mtime +0 $TDIR wrong: found $NUMS, expected $EXPECTED"
4176
4177         EXPECTED=12
4178         CMD="$LFIND -mtime 0 $TDIR"
4179         NUMS=$($CMD | wc -l)
4180         [ $NUMS -eq $EXPECTED ] ||
4181                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4182 }
4183 run_test 56o "check lfs find -mtime for old files =========================="
4184
4185 test_56p() {
4186         [ $RUNAS_ID -eq $UID ] &&
4187                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4188
4189         TDIR=$DIR/${tdir}p
4190         setup_56 $NUMFILES $NUMDIRS
4191
4192         chown $RUNAS_ID $TDIR/file* || error "chown $DIR/${tdir}g/file$i failed"
4193         EXPECTED=$NUMFILES
4194         CMD="$LFIND -uid $RUNAS_ID $TDIR"
4195         NUMS=$($CMD | wc -l)
4196         [ $NUMS -eq $EXPECTED ] || \
4197                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4198
4199         EXPECTED=$(((NUMFILES + 1) * NUMDIRS + 1))
4200         CMD="$LFIND ! -uid $RUNAS_ID $TDIR"
4201         NUMS=$($CMD | wc -l)
4202         [ $NUMS -eq $EXPECTED ] || \
4203                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4204 }
4205 run_test 56p "check lfs find -uid and ! -uid ==============================="
4206
4207 test_56q() {
4208         [ $RUNAS_ID -eq $UID ] &&
4209                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
4210
4211         TDIR=$DIR/${tdir}q
4212         setup_56 $NUMFILES $NUMDIRS
4213
4214         chgrp $RUNAS_GID $TDIR/file* || error "chown $TDIR/file$i failed"
4215
4216         EXPECTED=$NUMFILES
4217         CMD="$LFIND -gid $RUNAS_GID $TDIR"
4218         NUMS=$($CMD | wc -l)
4219         [ $NUMS -eq $EXPECTED ] ||
4220                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4221
4222         EXPECTED=$(( ($NUMFILES+1) * $NUMDIRS + 1))
4223         CMD="$LFIND ! -gid $RUNAS_GID $TDIR"
4224         NUMS=$($CMD | wc -l)
4225         [ $NUMS -eq $EXPECTED ] ||
4226                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4227 }
4228 run_test 56q "check lfs find -gid and ! -gid ==============================="
4229
4230 test_56r() {
4231         TDIR=$DIR/${tdir}r
4232         setup_56 $NUMFILES $NUMDIRS
4233
4234         EXPECTED=12
4235         CMD="$LFIND -size 0 -type f $TDIR"
4236         NUMS=$($CMD | wc -l)
4237         [ $NUMS -eq $EXPECTED ] ||
4238                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4239         EXPECTED=0
4240         CMD="$LFIND ! -size 0 -type f $TDIR"
4241         NUMS=$($CMD | wc -l)
4242         [ $NUMS -eq $EXPECTED ] ||
4243                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4244         echo "test" > $TDIR/$tfile
4245         echo "test2" > $TDIR/$tfile.2 && sync
4246         EXPECTED=1
4247         CMD="$LFIND -size 5 -type f $TDIR"
4248         NUMS=$($CMD | wc -l)
4249         [ $NUMS -eq $EXPECTED ] ||
4250                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4251         EXPECTED=1
4252         CMD="$LFIND -size +5 -type f $TDIR"
4253         NUMS=$($CMD | wc -l)
4254         [ $NUMS -eq $EXPECTED ] ||
4255                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4256         EXPECTED=2
4257         CMD="$LFIND -size +0 -type f $TDIR"
4258         NUMS=$($CMD | wc -l)
4259         [ $NUMS -eq $EXPECTED ] ||
4260                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4261         EXPECTED=2
4262         CMD="$LFIND ! -size -5 -type f $TDIR"
4263         NUMS=$($CMD | wc -l)
4264         [ $NUMS -eq $EXPECTED ] ||
4265                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4266         EXPECTED=12
4267         CMD="$LFIND -size -5 -type f $TDIR"
4268         NUMS=$($CMD | wc -l)
4269         [ $NUMS -eq $EXPECTED ] ||
4270                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4271 }
4272 run_test 56r "check lfs find -size works =========================="
4273
4274 test_56s() { # LU-611
4275         TDIR=$DIR/${tdir}s
4276         setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4277
4278         if [ $OSTCOUNT -gt 1 ]; then
4279                 $SETSTRIPE -c 1 $TDIR/$tfile.{0,1,2,3}
4280                 ONESTRIPE=4
4281                 EXTRA=4
4282         else
4283                 ONESTRIPE=$(((NUMDIRS + 1) * NUMFILES))
4284                 EXTRA=0
4285         fi
4286
4287         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4288         CMD="$LFIND -stripe-count $OSTCOUNT -type f $TDIR"
4289         NUMS=$($CMD | wc -l)
4290         [ $NUMS -eq $EXPECTED ] ||
4291                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4292
4293         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + EXTRA))
4294         CMD="$LFIND -stripe-count +0 -type f $TDIR"
4295         NUMS=$($CMD | wc -l)
4296         [ $NUMS -eq $EXPECTED ] ||
4297                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4298
4299         EXPECTED=$ONESTRIPE
4300         CMD="$LFIND -stripe-count 1 -type f $TDIR"
4301         NUMS=$($CMD | wc -l)
4302         [ $NUMS -eq $EXPECTED ] ||
4303                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4304
4305         CMD="$LFIND -stripe-count -2 -type f $TDIR"
4306         NUMS=$($CMD | wc -l)
4307         [ $NUMS -eq $EXPECTED ] ||
4308                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4309
4310         EXPECTED=0
4311         CMD="$LFIND -stripe-count $((OSTCOUNT + 1)) -type f $TDIR"
4312         NUMS=$($CMD | wc -l)
4313         [ $NUMS -eq $EXPECTED ] ||
4314                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4315 }
4316 run_test 56s "check lfs find -stripe-count works"
4317
4318 test_56t() { # LU-611
4319         TDIR=$DIR/${tdir}t
4320         setup_56 $NUMFILES $NUMDIRS "-s 512k"
4321
4322         $SETSTRIPE -S 256k $TDIR/$tfile.{0,1,2,3}
4323
4324         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4325         CMD="$LFIND -stripe-size 512k -type f $TDIR"
4326         NUMS=$($CMD | wc -l)
4327         [ $NUMS -eq $EXPECTED ] ||
4328                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4329
4330         CMD="$LFIND -stripe-size +320k -type f $TDIR"
4331         NUMS=$($CMD | wc -l)
4332         [ $NUMS -eq $EXPECTED ] ||
4333                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4334
4335         EXPECTED=$(((NUMDIRS + 1) * NUMFILES + 4))
4336         CMD="$LFIND -stripe-size +200k -type f $TDIR"
4337         NUMS=$($CMD | wc -l)
4338         [ $NUMS -eq $EXPECTED ] ||
4339                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4340
4341         CMD="$LFIND -stripe-size -640k -type f $TDIR"
4342         NUMS=$($CMD | wc -l)
4343         [ $NUMS -eq $EXPECTED ] ||
4344                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4345
4346         EXPECTED=4
4347         CMD="$LFIND -stripe-size 256k -type f $TDIR"
4348         NUMS=$($CMD | wc -l)
4349         [ $NUMS -eq $EXPECTED ] ||
4350                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4351
4352         CMD="$LFIND -stripe-size -320k -type f $TDIR"
4353         NUMS=$($CMD | wc -l)
4354         [ $NUMS -eq $EXPECTED ] ||
4355                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4356
4357         EXPECTED=0
4358         CMD="$LFIND -stripe-size 1024k -type f $TDIR"
4359         NUMS=$($CMD | wc -l)
4360         [ $NUMS -eq $EXPECTED ] ||
4361                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4362 }
4363 run_test 56t "check lfs find -stripe-size works"
4364
4365 test_56u() { # LU-611
4366         TDIR=$DIR/${tdir}u
4367         setup_56 $NUMFILES $NUMDIRS "-i 0"
4368
4369         if [ $OSTCOUNT -gt 1 ]; then
4370                 $SETSTRIPE -i 1 $TDIR/$tfile.{0,1,2,3}
4371                 ONESTRIPE=4
4372         else
4373                 ONESTRIPE=0
4374         fi
4375
4376         EXPECTED=$(((NUMDIRS + 1) * NUMFILES))
4377         CMD="$LFIND -stripe-index 0 -type f $TDIR"
4378         NUMS=$($CMD | wc -l)
4379         [ $NUMS -eq $EXPECTED ] ||
4380                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4381
4382         EXPECTED=$ONESTRIPE
4383         CMD="$LFIND -stripe-index 1 -type f $TDIR"
4384         NUMS=$($CMD | wc -l)
4385         [ $NUMS -eq $EXPECTED ] ||
4386                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4387
4388         CMD="$LFIND ! -stripe-index 0 -type f $TDIR"
4389         NUMS=$($CMD | wc -l)
4390         [ $NUMS -eq $EXPECTED ] ||
4391                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4392
4393         EXPECTED=0
4394         # This should produce an error and not return any files
4395         CMD="$LFIND -stripe-index $OSTCOUNT -type f $TDIR"
4396         NUMS=$($CMD 2>/dev/null | wc -l)
4397         [ $NUMS -eq $EXPECTED ] ||
4398                 error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4399
4400         if [ $OSTCOUNT -gt 1 ]; then
4401                 EXPECTED=$(((NUMDIRS + 1) * NUMFILES + ONESTRIPE))
4402                 CMD="$LFIND -stripe-index 0,1 -type f $TDIR"
4403                 NUMS=$($CMD | wc -l)
4404                 [ $NUMS -eq $EXPECTED ] ||
4405                         error "\"$CMD\" wrong: found $NUMS, expected $EXPECTED"
4406         fi
4407 }
4408 run_test 56u "check lfs find -stripe-index works"
4409
4410 test_56v() {
4411     local MDT_IDX=0
4412
4413     TDIR=$DIR/${tdir}v
4414     rm -rf $TDIR
4415     setup_56 $NUMFILES $NUMDIRS
4416
4417     UUID=$(mdtuuid_from_index $MDT_IDX $TDIR)
4418     [ -z "$UUID" ] && error "mdtuuid_from_index cannot find MDT index $MDT_IDX"
4419
4420     for file in $($LFIND -mdt $UUID $TDIR); do
4421         file_mdt_idx=$($GETSTRIPE -M $file)
4422         [ $file_mdt_idx -eq $MDT_IDX ] ||
4423             error "'lfind -mdt $UUID' != 'getstripe -M' ($file_mdt_idx)"
4424     done
4425 }
4426 run_test 56v "check 'lfs find -mdt match with lfs getstripe -M' ======="
4427
4428 # Get and check the actual stripe count of one file.
4429 # Usage: check_stripe_count <file> <expected_stripe_count>
4430 check_stripe_count() {
4431     local file=$1
4432     local expected=$2
4433     local actual
4434
4435     [[ -z "$file" || -z "$expected" ]] &&
4436         error "check_stripe_count: invalid argument!"
4437
4438     local cmd="$GETSTRIPE -c $file"
4439     actual=$($cmd) || error "$cmd failed"
4440     actual=${actual%% *}
4441
4442     if [[ $actual -ne $expected ]]; then
4443         [[ $expected -eq -1 ]] ||
4444             error "$cmd wrong: found $actual, expected $expected"
4445         [[ $actual -eq $OSTCOUNT ]] ||
4446             error "$cmd wrong: found $actual, expected $OSTCOUNT"
4447     fi
4448 }
4449
4450 test_56w() {
4451         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4452         TDIR=$DIR/${tdir}w
4453
4454     rm -rf $TDIR || error "remove $TDIR failed"
4455     setup_56 $NUMFILES $NUMDIRS "-c $OSTCOUNT"
4456
4457     local stripe_size
4458     stripe_size=$($GETSTRIPE -S -d $TDIR) ||
4459         error "$GETSTRIPE -S -d $TDIR failed"
4460     stripe_size=${stripe_size%% *}
4461
4462     local file_size=$((stripe_size * OSTCOUNT))
4463     local file_num=$((NUMDIRS * NUMFILES + NUMFILES))
4464     local required_space=$((file_num * file_size))
4465     local free_space=$($LCTL get_param -n lov.$LOVNAME.kbytesavail)
4466     [[ $free_space -le $((required_space / 1024)) ]] &&
4467         skip_env "need at least $required_space bytes free space," \
4468                  "have $free_space kbytes" && return
4469
4470     local dd_bs=65536
4471     local dd_count=$((file_size / dd_bs))
4472
4473     # write data into the files
4474     local i
4475     local j
4476     local file
4477     for i in $(seq 1 $NUMFILES); do
4478         file=$TDIR/file$i
4479         yes | dd bs=$dd_bs count=$dd_count of=$file >/dev/null 2>&1 ||
4480             error "write data into $file failed"
4481     done
4482     for i in $(seq 1 $NUMDIRS); do
4483         for j in $(seq 1 $NUMFILES); do
4484             file=$TDIR/dir$i/file$j
4485             yes | dd bs=$dd_bs count=$dd_count of=$file \
4486                 >/dev/null 2>&1 ||
4487                 error "write data into $file failed"
4488         done
4489     done
4490
4491     local expected=-1
4492     [[ $OSTCOUNT -gt 1 ]] && expected=$((OSTCOUNT - 1))
4493
4494     # lfs_migrate file
4495     local cmd="$LFS_MIGRATE -y -c $expected $TDIR/file1"
4496     echo "$cmd"
4497     eval $cmd || error "$cmd failed"
4498
4499     check_stripe_count $TDIR/file1 $expected
4500
4501     # lfs_migrate dir
4502     cmd="$LFS_MIGRATE -y -c $expected $TDIR/dir1"
4503     echo "$cmd"
4504     eval $cmd || error "$cmd failed"
4505
4506     for j in $(seq 1 $NUMFILES); do
4507         check_stripe_count $TDIR/dir1/file$j $expected
4508     done
4509
4510     # lfs_migrate works with lfs find
4511     cmd="$LFIND -stripe_count $OSTCOUNT -type f $TDIR |
4512          $LFS_MIGRATE -y -c $expected"
4513     echo "$cmd"
4514     eval $cmd || error "$cmd failed"
4515
4516     for i in $(seq 2 $NUMFILES); do
4517         check_stripe_count $TDIR/file$i $expected
4518     done
4519     for i in $(seq 2 $NUMDIRS); do
4520         for j in $(seq 1 $NUMFILES); do
4521             check_stripe_count $TDIR/dir$i/file$j $expected
4522         done
4523     done
4524 }
4525 run_test 56w "check lfs_migrate -c stripe_count works"
4526
4527 test_56x() {
4528         check_swap_layouts_support && return 0
4529         [ "$OSTCOUNT" -lt "2" ] &&
4530                 skip_env "need 2 OST, skipping test" && return
4531
4532         local dir0=$DIR/$tdir/$testnum
4533         mkdir -p $dir0 || error "creating dir $dir0"
4534
4535         local ref1=/etc/passwd
4536         local file1=$dir0/file1
4537
4538         $SETSTRIPE -c 2 $file1
4539         cp $ref1 $file1
4540         $LFS migrate -c 1 $file1 || error "migrate failed rc = $?"
4541         stripe=$($GETSTRIPE -c $file1)
4542         [[ $stripe == 1 ]] || error "stripe of $file1 is $stripe != 1"
4543         cmp $file1 $ref1 || error "content mismatch $file1 differs from $ref1"
4544
4545         # clean up
4546         rm -f $file1
4547 }
4548 run_test 56x "lfs migration support"
4549
4550 test_56y() {
4551         local res=""
4552
4553         local dir0=$DIR/$tdir/$testnum
4554         mkdir -p $dir0 || error "creating dir $dir0"
4555         local f1=$dir0/file1
4556         local f2=$dir0/file2
4557
4558         touch $f1 || error "creating std file $f1"
4559         $MULTIOP $f2 H2c || error "creating released file $f2"
4560
4561         # a directory can be raid0, so ask only for files
4562         res=$($LFIND $dir0 -L raid0 -type f | wc -l)
4563         [[ $res == 2 ]] || error "search raid0: found $res files != 2"
4564
4565         res=$($LFIND $dir0 \! -L raid0 -type f | wc -l)
4566         [[ $res == 0 ]] || error "search !raid0: found $res files != 0"
4567
4568         # only files can be released, so no need to force file search
4569         res=$($LFIND $dir0 -L released)
4570         [[ $res == $f2 ]] || error "search released: found $res != $f2"
4571
4572         res=$($LFIND $dir0 \! -L released)
4573         [[ $res == $f1 ]] || error "search !released: found $res != $f1"
4574
4575 }
4576 run_test 56y "lfs find -L raid0|released"
4577
4578 test_57a() {
4579         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4580         # note test will not do anything if MDS is not local
4581         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4582                 skip "Only applicable to ldiskfs-based MDTs"
4583                 return
4584         fi
4585
4586         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4587         local MNTDEV="osd*.*MDT*.mntdev"
4588         DEV=$(do_facet $SINGLEMDS lctl get_param -n $MNTDEV)
4589         [ -z "$DEV" ] && error "can't access $MNTDEV"
4590         for DEV in $(do_facet $SINGLEMDS lctl get_param -n $MNTDEV); do
4591                 do_facet $SINGLEMDS $DUMPE2FS -h $DEV > $TMP/t57a.dump ||
4592                         error "can't access $DEV"
4593                 DEVISIZE=`awk '/Inode size:/ { print $3 }' $TMP/t57a.dump`
4594                 [ "$DEVISIZE" -gt 128 ] || error "inode size $DEVISIZE"
4595                 rm $TMP/t57a.dump
4596         done
4597 }
4598 run_test 57a "verify MDS filesystem created with large inodes =="
4599
4600 test_57b() {
4601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4602         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
4603                 skip "Only applicable to ldiskfs-based MDTs"
4604                 return
4605         fi
4606
4607         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4608         local dir=$DIR/d57b
4609
4610         local FILECOUNT=100
4611         local FILE1=$dir/f1
4612         local FILEN=$dir/f$FILECOUNT
4613
4614         rm -rf $dir || error "removing $dir"
4615         test_mkdir -p $dir || error "creating $dir"
4616         local num=$(get_mds_dir $dir)
4617         local mymds=mds$num
4618
4619         echo "mcreating $FILECOUNT files"
4620         createmany -m $dir/f 1 $FILECOUNT || \
4621                 error "creating files in $dir"
4622
4623         # verify that files do not have EAs yet
4624         $GETSTRIPE $FILE1 2>&1 | grep -q "no stripe" || error "$FILE1 has an EA"
4625         $GETSTRIPE $FILEN 2>&1 | grep -q "no stripe" || error "$FILEN has an EA"
4626
4627         sync
4628         sleep 1
4629         df $dir  #make sure we get new statfs data
4630         local MDSFREE=$(do_facet $mymds \
4631                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4632         local MDCFREE=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4633         echo "opening files to create objects/EAs"
4634         local FILE
4635         for FILE in `seq -f $dir/f%g 1 $FILECOUNT`; do
4636                 $OPENFILE -f O_RDWR $FILE > /dev/null 2>&1 || error "opening $FILE"
4637         done
4638
4639         # verify that files have EAs now
4640         $GETSTRIPE $FILE1 | grep -q "obdidx" || error "$FILE1 missing EA"
4641         $GETSTRIPE $FILEN | grep -q "obdidx" || error "$FILEN missing EA"
4642
4643         sleep 1  #make sure we get new statfs data
4644         df $dir
4645         local MDSFREE2=$(do_facet $mymds \
4646                 lctl get_param -n osd*.*MDT000$((num -1)).kbytesfree)
4647         local MDCFREE2=$(lctl get_param -n mdc.*MDT000$((num -1))-mdc-*.kbytesfree)
4648         if [ "$MDCFREE2" -lt "$((MDCFREE - 8))" ]; then
4649                 if [ "$MDSFREE" != "$MDSFREE2" ]; then
4650                         error "MDC before $MDCFREE != after $MDCFREE2"
4651                 else
4652                         echo "MDC before $MDCFREE != after $MDCFREE2"
4653                         echo "unable to confirm if MDS has large inodes"
4654                 fi
4655         fi
4656         rm -rf $dir
4657 }
4658 run_test 57b "default LOV EAs are stored inside large inodes ==="
4659
4660 test_58() {
4661         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4662         [ -z "$(which wiretest 2>/dev/null)" ] &&
4663                         skip_env "could not find wiretest" && return
4664         wiretest
4665 }
4666 run_test 58 "verify cross-platform wire constants =============="
4667
4668 test_59() {
4669         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4670         echo "touch 130 files"
4671         createmany -o $DIR/f59- 130
4672         echo "rm 130 files"
4673         unlinkmany $DIR/f59- 130
4674         sync
4675         # wait for commitment of removal
4676         wait_delete_completed
4677 }
4678 run_test 59 "verify cancellation of llog records async ========="
4679
4680 TEST60_HEAD="test_60 run $RANDOM"
4681 test_60a() {
4682         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4683         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
4684         do_facet mgs "! which run-llog.sh &> /dev/null" &&
4685                 skip_env "missing subtest run-llog.sh" && return
4686         log "$TEST60_HEAD - from kernel mode"
4687         do_facet mgs sh run-llog.sh
4688 }
4689 run_test 60a "llog sanity tests run from kernel module =========="
4690
4691 test_60b() { # bug 6411
4692         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4693         dmesg > $DIR/$tfile
4694         LLOG_COUNT=`dmesg | awk "/$TEST60_HEAD/{marker = 1; from_marker = 0;}
4695                                  /llog.test/ {
4696                                          if (marker)
4697                                                  from_marker++
4698                                          from_begin++
4699                                  }
4700                                  END {
4701                                          if (marker)
4702                                                  print from_marker
4703                                          else
4704                                                  print from_begin
4705                                  }"`
4706         [ $LLOG_COUNT -gt 50 ] && error "CDEBUG_LIMIT not limiting messages ($LLOG_COUNT)"|| true
4707 }
4708 run_test 60b "limit repeated messages from CERROR/CWARN ========"
4709
4710 test_60c() {
4711         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4712         echo "create 5000 files"
4713         createmany -o $DIR/f60c- 5000
4714 #define OBD_FAIL_MDS_LLOG_CREATE_FAILED  0x137
4715         lctl set_param fail_loc=0x80000137
4716         unlinkmany $DIR/f60c- 5000
4717         lctl set_param fail_loc=0
4718 }
4719 run_test 60c "unlink file when mds full"
4720
4721 test_60d() {
4722         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4723         SAVEPRINTK=$(lctl get_param -n printk)
4724
4725         # verify "lctl mark" is even working"
4726         MESSAGE="test message ID $RANDOM $$"
4727         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4728         dmesg | grep -q "$MESSAGE" || error "didn't find debug marker in log"
4729
4730         lctl set_param printk=0 || error "set lnet.printk failed"
4731         lctl get_param -n printk | grep emerg || error "lnet.printk dropped emerg"
4732         MESSAGE="new test message ID $RANDOM $$"
4733         # Assume here that libcfs_debug_mark_buffer() uses D_WARNING
4734         $LCTL mark "$MESSAGE" || error "$LCTL mark failed"
4735         dmesg | grep -q "$MESSAGE" && error "D_WARNING wasn't masked" || true
4736
4737         lctl set_param -n printk="$SAVEPRINTK"
4738 }
4739 run_test 60d "test printk console message masking"
4740
4741 test_61() {
4742         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4743         f="$DIR/f61"
4744         dd if=/dev/zero of=$f bs=$(page_size) count=1 || error "dd $f failed"
4745         cancel_lru_locks osc
4746         $MULTIOP $f OSMWUc || error "$MULTIOP $f failed"
4747         sync
4748 }
4749 run_test 61 "mmap() writes don't make sync hang ================"
4750
4751 # bug 2330 - insufficient obd_match error checking causes LBUG
4752 test_62() {
4753         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4754         f="$DIR/f62"
4755         echo foo > $f
4756         cancel_lru_locks osc
4757         lctl set_param fail_loc=0x405
4758         cat $f && error "cat succeeded, expect -EIO"
4759         lctl set_param fail_loc=0
4760 }
4761 # This test is now irrelevant (as of bug 10718 inclusion), we no longer
4762 # match every page all of the time.
4763 #run_test 62 "verify obd_match failure doesn't LBUG (should -EIO)"
4764
4765 # bug 2319 - oig_wait() interrupted causes crash because of invalid waitq.
4766 test_63a() {    # was test_63
4767         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4768         MAX_DIRTY_MB=`lctl get_param -n osc.*.max_dirty_mb | head -n 1`
4769         lctl set_param -n osc.*.max_dirty_mb 0
4770         for i in `seq 10` ; do
4771                 dd if=/dev/zero of=$DIR/f63 bs=8k &
4772                 sleep 5
4773                 kill $!
4774                 sleep 1
4775         done
4776
4777         lctl set_param -n osc.*.max_dirty_mb $MAX_DIRTY_MB
4778         rm -f $DIR/f63 || true
4779 }
4780 run_test 63a "Verify oig_wait interruption does not crash ======="
4781
4782 # bug 2248 - async write errors didn't return to application on sync
4783 # bug 3677 - async write errors left page locked
4784 test_63b() {
4785         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4786         debugsave
4787         lctl set_param debug=-1
4788
4789         # ensure we have a grant to do async writes
4790         dd if=/dev/zero of=$DIR/$tfile bs=4k count=1
4791         rm $DIR/$tfile
4792
4793         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
4794         lctl set_param fail_loc=0x80000406
4795         $MULTIOP $DIR/$tfile Owy && \
4796                 error "sync didn't return ENOMEM"
4797         sync; sleep 2; sync     # do a real sync this time to flush page
4798         lctl get_param -n llite.*.dump_page_cache | grep locked && \
4799                 error "locked page left in cache after async error" || true
4800         debugrestore
4801 }
4802 run_test 63b "async write errors should be returned to fsync ==="
4803
4804 test_64a () {
4805         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4806         df $DIR
4807         lctl get_param -n osc.*[oO][sS][cC][_-]*.cur* | grep "[0-9]"
4808 }
4809 run_test 64a "verify filter grant calculations (in kernel) ====="
4810
4811 test_64b () {
4812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4813         sh oos.sh $MOUNT || error "oos.sh failed: $?"
4814 }
4815 run_test 64b "check out-of-space detection on client ==========="
4816
4817 test_64c() {
4818         $LCTL set_param osc.*OST0000-osc-[^mM]*.cur_grant_bytes=0
4819 }
4820 run_test 64c "verify grant shrink ========================------"
4821
4822 # bug 1414 - set/get directories' stripe info
4823 test_65a() {
4824         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4825         test_mkdir -p $DIR/$tdir
4826         touch $DIR/$tdir/f1
4827         $LVERIFY $DIR/$tdir $DIR/$tdir/f1 || error "lverify failed"
4828 }
4829 run_test 65a "directory with no stripe info ===================="
4830
4831 test_65b() {
4832         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4833         test_mkdir -p $DIR/$tdir
4834         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4835                                                 error "setstripe"
4836         touch $DIR/$tdir/f2
4837         $LVERIFY $DIR/$tdir $DIR/$tdir/f2 || error "lverify failed"
4838 }
4839 run_test 65b "directory setstripe -S $((STRIPESIZE * 2)) -i 0 -c 1"
4840
4841 test_65c() {
4842         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4843         if [ $OSTCOUNT -gt 1 ]; then
4844                 test_mkdir -p $DIR/$tdir
4845                 $SETSTRIPE -S $(($STRIPESIZE * 4)) -i 1 \
4846                         -c $(($OSTCOUNT - 1)) $DIR/$tdir || error "setstripe"
4847                 touch $DIR/$tdir/f3
4848                 $LVERIFY $DIR/$tdir $DIR/$tdir/f3 || error "lverify failed"
4849         fi
4850 }
4851 run_test 65c "directory setstripe -S $((STRIPESIZE*4)) -i 1 -c $((OSTCOUNT-1))"
4852
4853 test_65d() {
4854         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4855         test_mkdir -p $DIR/$tdir
4856         if [ $STRIPECOUNT -le 0 ]; then
4857                 sc=1
4858         elif [ $STRIPECOUNT -gt 2000 ]; then
4859 #LOV_MAX_STRIPE_COUNT is 2000
4860                 [ $OSTCOUNT -gt 2000 ] && sc=2000 || sc=$(($OSTCOUNT - 1))
4861         else
4862                 sc=$(($STRIPECOUNT - 1))
4863         fi
4864         $SETSTRIPE -S $STRIPESIZE -c $sc $DIR/$tdir || error "setstripe"
4865         touch $DIR/$tdir/f4 $DIR/$tdir/f5
4866         $LVERIFY $DIR/$tdir $DIR/$tdir/f4 $DIR/$tdir/f5 ||
4867                                                 error "lverify failed"
4868 }
4869 run_test 65d "directory setstripe -S $STRIPESIZE -c stripe_count"
4870
4871 test_65e() {
4872         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4873         test_mkdir -p $DIR/$tdir
4874
4875         $SETSTRIPE $DIR/$tdir || error "setstripe"
4876         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4877                                         error "no stripe info failed"
4878         touch $DIR/$tdir/f6
4879         $LVERIFY $DIR/$tdir $DIR/$tdir/f6 || error "lverify failed"
4880 }
4881 run_test 65e "directory setstripe defaults ======================="
4882
4883 test_65f() {
4884         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4885         test_mkdir -p $DIR/${tdir}f
4886         $RUNAS $SETSTRIPE $DIR/${tdir}f && error "setstripe succeeded" || true
4887 }
4888 run_test 65f "dir setstripe permission (should return error) ==="
4889
4890 test_65g() {
4891         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4892         test_mkdir -p $DIR/$tdir
4893         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4894                                                         error "setstripe"
4895         $SETSTRIPE -d $DIR/$tdir || error "setstripe"
4896         $GETSTRIPE -v $DIR/$tdir | grep "Default" ||
4897                 error "delete default stripe failed"
4898 }
4899 run_test 65g "directory setstripe -d ==========================="
4900
4901 test_65h() {
4902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4903         test_mkdir -p $DIR/$tdir
4904         $SETSTRIPE -S $((STRIPESIZE * 2)) -i 0 -c 1 $DIR/$tdir ||
4905                                                         error "setstripe"
4906         test_mkdir -p $DIR/$tdir/dd1
4907         [ $($GETSTRIPE -c $DIR/$tdir) == $($GETSTRIPE -c $DIR/$tdir/dd1) ] ||
4908                 error "stripe info inherit failed"
4909 }
4910 run_test 65h "directory stripe info inherit ===================="
4911
4912 test_65i() { # bug6367
4913         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4914         $SETSTRIPE -S 65536 -c -1 $MOUNT
4915 }
4916 run_test 65i "set non-default striping on root directory (bug 6367)="
4917
4918 test_65ia() { # bug12836
4919         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4920         $GETSTRIPE $MOUNT || error "getstripe $MOUNT failed"
4921 }
4922 run_test 65ia "getstripe on -1 default directory striping"
4923
4924 test_65ib() { # bug12836
4925         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4926         $GETSTRIPE -v $MOUNT || error "getstripe -v $MOUNT failed"
4927 }
4928 run_test 65ib "getstripe -v on -1 default directory striping"
4929
4930 test_65ic() { # bug12836
4931         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4932         $LFS find -mtime -1 $MOUNT > /dev/null || error "find $MOUNT failed"
4933 }
4934 run_test 65ic "new find on -1 default directory striping"
4935
4936 test_65j() { # bug6367
4937         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4938         sync; sleep 1
4939         # if we aren't already remounting for each test, do so for this test
4940         if [ "$CLEANUP" = ":" -a "$I_MOUNTED" = "yes" ]; then
4941                 cleanup || error "failed to unmount"
4942                 setup
4943         fi
4944         $SETSTRIPE -d $MOUNT || error "setstripe failed"
4945 }
4946 run_test 65j "set default striping on root directory (bug 6367)="
4947
4948 test_65k() { # bug11679
4949         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4950         [ "$OSTCOUNT" -lt 2 ] && skip_env "too few OSTs" && return
4951         remote_mds_nodsh && skip "remote MDS with nodsh" && return
4952
4953     echo "Check OST status: "
4954     local MDS_OSCS=`do_facet $SINGLEMDS lctl dl |
4955               awk '/[oO][sS][cC].*md[ts]/ { print $4 }'`
4956
4957     for OSC in $MDS_OSCS; do
4958         echo $OSC "is activate"
4959         do_facet $SINGLEMDS lctl --device %$OSC activate
4960     done
4961
4962     mkdir -p $DIR/$tdir
4963     for INACTIVE_OSC in $MDS_OSCS; do
4964         echo "Deactivate: " $INACTIVE_OSC
4965         do_facet $SINGLEMDS lctl --device %$INACTIVE_OSC deactivate
4966         for STRIPE_OSC in $MDS_OSCS; do
4967             OST=`osc_to_ost $STRIPE_OSC`
4968             IDX=`do_facet $SINGLEMDS lctl get_param -n lov.*md*.target_obd |
4969                  awk -F: /$OST/'{ print $1 }' | head -n 1`
4970
4971             [ -f $DIR/$tdir/$IDX ] && continue
4972             echo "$SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX"
4973             $SETSTRIPE -i $IDX -c 1 $DIR/$tdir/$IDX
4974             RC=$?
4975             [ $RC -ne 0 ] && error "setstripe should have succeeded"
4976         done
4977         rm -f $DIR/$tdir/*
4978         echo $INACTIVE_OSC "is Activate."
4979         do_facet $SINGLEMDS lctl --device  %$INACTIVE_OSC activate
4980     done
4981 }
4982 run_test 65k "validate manual striping works properly with deactivated OSCs"
4983
4984 test_65l() { # bug 12836
4985         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4986         test_mkdir -p $DIR/$tdir/test_dir
4987         $SETSTRIPE -c -1 $DIR/$tdir/test_dir
4988         $LFS find -mtime -1 $DIR/$tdir >/dev/null
4989 }
4990 run_test 65l "lfs find on -1 stripe dir ========================"
4991
4992 # bug 2543 - update blocks count on client
4993 test_66() {
4994         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
4995         COUNT=${COUNT:-8}
4996         dd if=/dev/zero of=$DIR/f66 bs=1k count=$COUNT
4997         sync; sync_all_data; sync; sync_all_data
4998         cancel_lru_locks osc
4999         BLOCKS=`ls -s $DIR/f66 | awk '{ print $1 }'`
5000         [ $BLOCKS -ge $COUNT ] || error "$DIR/f66 blocks $BLOCKS < $COUNT"
5001 }
5002 run_test 66 "update inode blocks count on client ==============="
5003
5004 LLOOP=
5005 LLITELOOPLOAD=
5006 cleanup_68() {
5007         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5008         trap 0
5009         if [ ! -z "$LLOOP" ]; then
5010                 if swapon -s | grep -q $LLOOP; then
5011                         swapoff $LLOOP || error "swapoff failed"
5012                 fi
5013
5014                 $LCTL blockdev_detach $LLOOP || error "detach failed"
5015                 rm -f $LLOOP
5016                 unset LLOOP
5017         fi
5018         if [ ! -z "$LLITELOOPLOAD" ]; then
5019                 rmmod llite_lloop
5020                 unset LLITELOOPLOAD
5021         fi
5022         rm -f $DIR/f68*
5023 }
5024
5025 meminfo() {
5026         awk '($1 == "'$1':") { print $2 }' /proc/meminfo
5027 }
5028
5029 swap_used() {
5030         swapon -s | awk '($1 == "'$1'") { print $4 }'
5031 }
5032
5033 # test case for lloop driver, basic function
5034 test_68a() {
5035         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5036         [ "$UID" != 0 ] && skip_env "must run as root" && return
5037         llite_lloop_enabled || \
5038                 { skip_env "llite_lloop module disabled" && return; }
5039
5040         trap cleanup_68 EXIT
5041
5042         if ! module_loaded llite_lloop; then
5043                 if load_module llite/llite_lloop; then
5044                         LLITELOOPLOAD=yes
5045                 else
5046                         skip_env "can't find module llite_lloop"
5047                         return
5048                 fi
5049         fi
5050
5051         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5052         dd if=/dev/zero of=$DIR/f68a bs=4k count=1024
5053         $LCTL blockdev_attach $DIR/f68a $LLOOP || error "attach failed"
5054
5055         directio rdwr $LLOOP 0 1024 4096 || error "direct write failed"
5056         directio rdwr $LLOOP 0 1025 4096 && error "direct write should fail"
5057
5058         cleanup_68
5059 }
5060 run_test 68a "lloop driver - basic test ========================"
5061
5062 # excercise swapping to lustre by adding a high priority swapfile entry
5063 # and then consuming memory until it is used.
5064 test_68b() {  # was test_68
5065         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5066         [ "$UID" != 0 ] && skip_env "must run as root" && return
5067         lctl get_param -n devices | grep -q obdfilter && \
5068                 skip "local OST" && return
5069
5070         grep -q llite_lloop /proc/modules
5071         [ $? -ne 0 ] && skip "can't find module llite_lloop" && return
5072
5073         [ -z "`$LCTL list_nids | grep -v tcp`" ] && \
5074                 skip "can't reliably test swap with TCP" && return
5075
5076         MEMTOTAL=`meminfo MemTotal`
5077         NR_BLOCKS=$((MEMTOTAL>>8))
5078         [[ $NR_BLOCKS -le 2048 ]] && NR_BLOCKS=2048
5079
5080         LLOOP=$TMP/lloop.`date +%s`.`date +%N`
5081         dd if=/dev/zero of=$DIR/f68b bs=64k seek=$NR_BLOCKS count=1
5082         mkswap $DIR/f68b
5083
5084         $LCTL blockdev_attach $DIR/f68b $LLOOP || error "attach failed"
5085
5086         trap cleanup_68 EXIT
5087
5088         swapon -p 32767 $LLOOP || error "swapon $LLOOP failed"
5089
5090         echo "before: `swapon -s | grep $LLOOP`"
5091         $MEMHOG $MEMTOTAL || error "error allocating $MEMTOTAL kB"
5092         echo "after: `swapon -s | grep $LLOOP`"
5093         SWAPUSED=`swap_used $LLOOP`
5094
5095         cleanup_68
5096
5097         [ $SWAPUSED -eq 0 ] && echo "no swap used???" || true
5098 }
5099 run_test 68b "support swapping to Lustre ========================"
5100
5101 # bug5265, obdfilter oa2dentry return -ENOENT
5102 # #define OBD_FAIL_OST_ENOENT 0x217
5103 test_69() {
5104         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5105         remote_ost_nodsh && skip "remote OST with nodsh" && return
5106
5107         f="$DIR/$tfile"
5108         $SETSTRIPE -c 1 -i 0 $f
5109
5110         $DIRECTIO write ${f}.2 0 1 || error "directio write error"
5111
5112         do_facet ost1 lctl set_param fail_loc=0x217
5113         $TRUNCATE $f 1 # vmtruncate() will ignore truncate() error.
5114         $DIRECTIO write $f 0 2 && error "write succeeded, expect -ENOENT"
5115
5116         do_facet ost1 lctl set_param fail_loc=0
5117         $DIRECTIO write $f 0 2 || error "write error"
5118
5119         cancel_lru_locks osc
5120         $DIRECTIO read $f 0 1 || error "read error"
5121
5122         do_facet ost1 lctl set_param fail_loc=0x217
5123         $DIRECTIO read $f 1 1 && error "read succeeded, expect -ENOENT"
5124
5125         do_facet ost1 lctl set_param fail_loc=0
5126         rm -f $f
5127 }
5128 run_test 69 "verify oa2dentry return -ENOENT doesn't LBUG ======"
5129
5130 test_71() {
5131     test_mkdir -p $DIR/$tdir
5132     sh rundbench -C -D $DIR/$tdir 2 || error "dbench failed!"
5133 }
5134 run_test 71 "Running dbench on lustre (don't segment fault) ===="
5135
5136 test_72a() { # bug 5695 - Test that on 2.6 remove_suid works properly
5137         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5138         [ "$RUNAS_ID" = "$UID" ] &&
5139                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5140
5141         # Check that testing environment is properly set up. Skip if not
5142         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_GID $RUNAS || {
5143                 skip_env "User $RUNAS_ID does not exist - skipping"
5144                 return 0
5145         }
5146         # We had better clear the $DIR to get enough space for dd
5147         rm -rf $DIR/*
5148         touch $DIR/$tfile
5149         chmod 777 $DIR/$tfile
5150         chmod ug+s $DIR/$tfile
5151         $RUNAS dd if=/dev/zero of=$DIR/$tfile bs=512 count=1 ||
5152                 error "$RUNAS dd $DIR/$tfile failed"
5153         # See if we are still setuid/sgid
5154         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5155                 error "S/gid is not dropped on write"
5156         # Now test that MDS is updated too
5157         cancel_lru_locks mdc
5158         test -u $DIR/$tfile -o -g $DIR/$tfile &&
5159                 error "S/gid is not dropped on MDS"
5160         rm -f $DIR/$tfile
5161 }
5162 run_test 72a "Test that remove suid works properly (bug5695) ===="
5163
5164 test_72b() { # bug 24226 -- keep mode setting when size is not changing
5165         local perm
5166
5167         [ "$RUNAS_ID" = "$UID" ] && \
5168                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
5169         [ "$RUNAS_ID" -eq 0 ] && \
5170                 skip_env "RUNAS_ID = 0 -- skipping" && return
5171
5172         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5173         # Check that testing environment is properly set up. Skip if not
5174         FAIL_ON_ERROR=false check_runas_id_ret $RUNAS_ID $RUNAS_ID $RUNAS || {
5175                 skip_env "User $RUNAS_ID does not exist - skipping"
5176                 return 0
5177         }
5178         touch $DIR/${tfile}-f{g,u}
5179         test_mkdir $DIR/${tfile}-dg
5180         test_mkdir $DIR/${tfile}-du
5181         chmod 770 $DIR/${tfile}-{f,d}{g,u}
5182         chmod g+s $DIR/${tfile}-{f,d}g
5183         chmod u+s $DIR/${tfile}-{f,d}u
5184         for perm in 777 2777 4777; do
5185                 $RUNAS chmod $perm $DIR/${tfile}-fg && error "S/gid file allowed improper chmod to $perm"
5186                 $RUNAS chmod $perm $DIR/${tfile}-fu && error "S/uid file allowed improper chmod to $perm"
5187                 $RUNAS chmod $perm $DIR/${tfile}-dg && error "S/gid dir allowed improper chmod to $perm"
5188                 $RUNAS chmod $perm $DIR/${tfile}-du && error "S/uid dir allowed improper chmod to $perm"
5189         done
5190         true
5191 }
5192 run_test 72b "Test that we keep mode setting if without file data changed (bug 24226)"
5193
5194 # bug 3462 - multiple simultaneous MDC requests
5195 test_73() {
5196         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5197         test_mkdir $DIR/d73-1
5198         test_mkdir $DIR/d73-2
5199         multiop_bg_pause $DIR/d73-1/f73-1 O_c || return 1
5200         pid1=$!
5201
5202         lctl set_param fail_loc=0x80000129
5203         $MULTIOP $DIR/d73-1/f73-2 Oc &
5204         sleep 1
5205         lctl set_param fail_loc=0
5206
5207         $MULTIOP $DIR/d73-2/f73-3 Oc &
5208         pid3=$!
5209
5210         kill -USR1 $pid1
5211         wait $pid1 || return 1
5212
5213         sleep 25
5214
5215         $CHECKSTAT -t file $DIR/d73-1/f73-1 || return 4
5216         $CHECKSTAT -t file $DIR/d73-1/f73-2 || return 5
5217         $CHECKSTAT -t file $DIR/d73-2/f73-3 || return 6
5218
5219         rm -rf $DIR/d73-*
5220 }
5221 run_test 73 "multiple MDC requests (should not deadlock)"
5222
5223 test_74a() { # bug 6149, 6184
5224         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5225         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5226         #
5227         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5228         # will spin in a tight reconnection loop
5229         touch $DIR/f74a
5230         lctl set_param fail_loc=0x8000030e
5231         # get any lock that won't be difficult - lookup works.
5232         ls $DIR/f74a
5233         lctl set_param fail_loc=0
5234         true
5235         rm -f $DIR/f74a
5236 }
5237 run_test 74a "ldlm_enqueue freed-export error path, ls (shouldn't LBUG)"
5238
5239 test_74b() { # bug 13310
5240         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5241         #define OBD_FAIL_LDLM_ENQUEUE_OLD_EXPORT 0x30e
5242         #
5243         # very important to OR with OBD_FAIL_ONCE (0x80000000) -- otherwise it
5244         # will spin in a tight reconnection loop
5245         lctl set_param fail_loc=0x8000030e
5246         # get a "difficult" lock
5247         touch $DIR/f74b
5248         lctl set_param fail_loc=0
5249         true
5250         rm -f $DIR/f74b
5251 }
5252 run_test 74b "ldlm_enqueue freed-export error path, touch (shouldn't LBUG)"
5253
5254 test_74c() {
5255         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5256 #define OBD_FAIL_LDLM_NEW_LOCK
5257         lctl set_param fail_loc=0x80000319
5258         touch $DIR/$tfile && error "Touch successful"
5259         true
5260 }
5261 run_test 74c "ldlm_lock_create error path, (shouldn't LBUG)"
5262
5263 num_inodes() {
5264         awk '/lustre_inode_cache/ {print $2; exit}' /proc/slabinfo
5265 }
5266
5267 get_inode_slab_tunables() {
5268         awk '/lustre_inode_cache/ {print $9," ",$10," ",$11; exit}' /proc/slabinfo
5269 }
5270
5271 set_inode_slab_tunables() {
5272         echo "lustre_inode_cache $1" > /proc/slabinfo
5273 }
5274
5275 test_76() { # Now for bug 20433, added originally in bug 1443
5276         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5277         local SLAB_SETTINGS=`get_inode_slab_tunables`
5278         local CPUS=`getconf _NPROCESSORS_ONLN`
5279         # we cannot set limit below 1 which means 1 inode in each
5280         # per-cpu cache is still allowed
5281         set_inode_slab_tunables "1 1 0"
5282         cancel_lru_locks osc
5283         BEFORE_INODES=`num_inodes`
5284         echo "before inodes: $BEFORE_INODES"
5285         local COUNT=1000
5286         [ "$SLOW" = "no" ] && COUNT=100
5287         for i in `seq $COUNT`; do
5288                 touch $DIR/$tfile
5289                 rm -f $DIR/$tfile
5290         done
5291         cancel_lru_locks osc
5292         AFTER_INODES=`num_inodes`
5293         echo "after inodes: $AFTER_INODES"
5294         local wait=0
5295         while [ $((AFTER_INODES-1*CPUS)) -gt $BEFORE_INODES ]; do
5296                 sleep 2
5297                 AFTER_INODES=`num_inodes`
5298                 wait=$((wait+2))
5299                 echo "wait $wait seconds inodes: $AFTER_INODES"
5300                 if [ $wait -gt 30 ]; then
5301                         error "inode slab grew from $BEFORE_INODES to $AFTER_INODES"
5302                 fi
5303         done
5304         set_inode_slab_tunables "$SLAB_SETTINGS"
5305 }
5306 run_test 76 "confirm clients recycle inodes properly ===="
5307
5308
5309 export ORIG_CSUM=""
5310 set_checksums()
5311 {
5312         # Note: in sptlrpc modes which enable its own bulk checksum, the
5313         # original crc32_le bulk checksum will be automatically disabled,
5314         # and the OBD_FAIL_OSC_CHECKSUM_SEND/OBD_FAIL_OSC_CHECKSUM_RECEIVE
5315         # will be checked by sptlrpc code against sptlrpc bulk checksum.
5316         # In this case set_checksums() will not be no-op, because sptlrpc
5317         # bulk checksum will be enabled all through the test.
5318
5319         [ "$ORIG_CSUM" ] || ORIG_CSUM=`lctl get_param -n osc.*.checksums | head -n1`
5320         lctl set_param -n osc.*.checksums $1
5321         return 0
5322 }
5323
5324 export ORIG_CSUM_TYPE="`lctl get_param -n osc.*osc-[^mM]*.checksum_type |
5325                         sed 's/.*\[\(.*\)\].*/\1/g' | head -n1`"
5326 CKSUM_TYPES=${CKSUM_TYPES:-"crc32 adler"}
5327 [ "$ORIG_CSUM_TYPE" = "crc32c" ] && CKSUM_TYPES="$CKSUM_TYPES crc32c"
5328 set_checksum_type()
5329 {
5330         lctl set_param -n osc.*osc-[^mM]*.checksum_type $1
5331         log "set checksum type to $1"
5332         return 0
5333 }
5334 F77_TMP=$TMP/f77-temp
5335 F77SZ=8
5336 setup_f77() {
5337         dd if=/dev/urandom of=$F77_TMP bs=1M count=$F77SZ || \
5338                 error "error writing to $F77_TMP"
5339 }
5340
5341 test_77a() { # bug 10889
5342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5343         $GSS && skip "could not run with gss" && return
5344         [ ! -f $F77_TMP ] && setup_f77
5345         set_checksums 1
5346         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ || error "dd error"
5347         set_checksums 0
5348         rm -f $DIR/$tfile
5349 }
5350 run_test 77a "normal checksum read/write operation"
5351
5352 test_77b() { # bug 10889
5353         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5354         $GSS && skip "could not run with gss" && return
5355         [ ! -f $F77_TMP ] && setup_f77
5356         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5357         $LCTL set_param fail_loc=0x80000409
5358         set_checksums 1
5359
5360         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ conv=sync ||
5361                 error "dd error: $?"
5362         $LCTL set_param fail_loc=0
5363
5364         for algo in $CKSUM_TYPES; do
5365                 cancel_lru_locks osc
5366                 set_checksum_type $algo
5367                 #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5368                 $LCTL set_param fail_loc=0x80000408
5369                 cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5370                 $LCTL set_param fail_loc=0
5371         done
5372         set_checksums 0
5373         set_checksum_type $ORIG_CSUM_TYPE
5374         rm -f $DIR/$tfile
5375 }
5376 run_test 77b "checksum error on client write, read"
5377
5378 test_77d() { # bug 10889
5379         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5380         $GSS && skip "could not run with gss" && return
5381         #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5382         $LCTL set_param fail_loc=0x80000409
5383         set_checksums 1
5384         $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5385                 error "direct write: rc=$?"
5386         $LCTL set_param fail_loc=0
5387         set_checksums 0
5388
5389         #define OBD_FAIL_OSC_CHECKSUM_RECEIVE    0x408
5390         $LCTL set_param fail_loc=0x80000408
5391         set_checksums 1
5392         cancel_lru_locks osc
5393         $DIRECTIO read $DIR/$tfile 0 $F77SZ $((1024 * 1024)) ||
5394                 error "direct read: rc=$?"
5395         $LCTL set_param fail_loc=0
5396         set_checksums 0
5397 }
5398 run_test 77d "checksum error on OST direct write, read"
5399
5400 test_77f() { # bug 10889
5401         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5402         $GSS && skip "could not run with gss" && return
5403         set_checksums 1
5404         for algo in $CKSUM_TYPES; do
5405                 cancel_lru_locks osc
5406                 set_checksum_type $algo
5407                 #define OBD_FAIL_OSC_CHECKSUM_SEND       0x409
5408                 $LCTL set_param fail_loc=0x409
5409                 $DIRECTIO write $DIR/$tfile 0 $F77SZ $((1024 * 1024)) &&
5410                         error "direct write succeeded"
5411                 $LCTL set_param fail_loc=0
5412         done
5413         set_checksum_type $ORIG_CSUM_TYPE
5414         set_checksums 0
5415 }
5416 run_test 77f "repeat checksum error on write (expect error)"
5417
5418 test_77g() { # bug 10889
5419         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5420         $GSS && skip "could not run with gss" && return
5421         remote_ost_nodsh && skip "remote OST with nodsh" && return
5422
5423         [ ! -f $F77_TMP ] && setup_f77
5424
5425         $SETSTRIPE -c 1 -i 0 $DIR/$tfile
5426         #define OBD_FAIL_OST_CHECKSUM_RECEIVE       0x21a
5427         do_facet ost1 lctl set_param fail_loc=0x8000021a
5428         set_checksums 1
5429         dd if=$F77_TMP of=$DIR/$tfile bs=1M count=$F77SZ ||
5430                 error "write error: rc=$?"
5431         do_facet ost1 lctl set_param fail_loc=0
5432         set_checksums 0
5433
5434         cancel_lru_locks osc
5435         #define OBD_FAIL_OST_CHECKSUM_SEND          0x21b
5436         do_facet ost1 lctl set_param fail_loc=0x8000021b
5437         set_checksums 1
5438         cmp $F77_TMP $DIR/$tfile || error "file compare failed"
5439         do_facet ost1 lctl set_param fail_loc=0
5440         set_checksums 0
5441 }
5442 run_test 77g "checksum error on OST write, read"
5443
5444 test_77i() { # bug 13805
5445         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5446         $GSS && skip "could not run with gss" && return
5447         #define OBD_FAIL_OSC_CONNECT_CKSUM       0x40b
5448         lctl set_param fail_loc=0x40b
5449         remount_client $MOUNT
5450         lctl set_param fail_loc=0
5451         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5452                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5453                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5454                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5455         done
5456         remount_client $MOUNT
5457 }
5458 run_test 77i "client not supporting OSD_CONNECT_CKSUM"
5459
5460 test_77j() { # bug 13805
5461         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5462         $GSS && skip "could not run with gss" && return
5463         #define OBD_FAIL_OSC_CKSUM_ADLER_ONLY    0x40c
5464         lctl set_param fail_loc=0x40c
5465         remount_client $MOUNT
5466         lctl set_param fail_loc=0
5467         sleep 2 # wait async osc connect to finish
5468         for VALUE in `lctl get_param osc.*osc-[^mM]*.checksum_type`; do
5469                 PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
5470                 algo=`lctl get_param -n $PARAM | sed 's/.*\[\(.*\)\].*/\1/g'`
5471                 [ "$algo" = "adler" ] || error "algo set to $algo instead of adler"
5472         done
5473         remount_client $MOUNT
5474 }
5475 run_test 77j "client only supporting ADLER32"
5476
5477 [ "$ORIG_CSUM" ] && set_checksums $ORIG_CSUM || true
5478 rm -f $F77_TMP
5479 unset F77_TMP
5480
5481 test_78() { # bug 10901
5482         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5483         remote_ost || { skip_env "local OST" && return; }
5484
5485         NSEQ=5
5486         F78SIZE=$(($(awk '/MemFree:/ { print $2 }' /proc/meminfo) / 1024))
5487         echo "MemFree: $F78SIZE, Max file size: $MAXFREE"
5488         MEMTOTAL=$(($(awk '/MemTotal:/ { print $2 }' /proc/meminfo) / 1024))
5489         echo "MemTotal: $MEMTOTAL"
5490 # reserve 256MB of memory for the kernel and other running processes,
5491 # and then take 1/2 of the remaining memory for the read/write buffers.
5492     if [ $MEMTOTAL -gt 512 ] ;then
5493         MEMTOTAL=$(((MEMTOTAL - 256 ) / 2))
5494     else
5495         # for those poor memory-starved high-end clusters...
5496         MEMTOTAL=$((MEMTOTAL / 2))
5497     fi
5498         echo "Mem to use for directio: $MEMTOTAL"
5499         [ $F78SIZE -gt $MEMTOTAL ] && F78SIZE=$MEMTOTAL
5500         [ $F78SIZE -gt 512 ] && F78SIZE=512
5501         [ $F78SIZE -gt $((MAXFREE / 1024)) ] && F78SIZE=$((MAXFREE / 1024))
5502         SMALLESTOST=`lfs df $DIR |grep OST | awk '{print $4}' |sort -n |head -1`
5503         echo "Smallest OST: $SMALLESTOST"
5504         [ $SMALLESTOST -lt 10240 ] && \
5505                 skip "too small OSTSIZE, useless to run large O_DIRECT test" && return 0
5506
5507         [ $F78SIZE -gt $((SMALLESTOST * $OSTCOUNT / 1024 - 80)) ] && \
5508                 F78SIZE=$((SMALLESTOST * $OSTCOUNT / 1024 - 80))
5509
5510         [ "$SLOW" = "no" ] && NSEQ=1 && [ $F78SIZE -gt 32 ] && F78SIZE=32
5511         echo "File size: $F78SIZE"
5512         $SETSTRIPE -c $OSTCOUNT $DIR/$tfile || error "setstripe failed"
5513         for i in `seq 1 $NSEQ`
5514         do
5515                 FSIZE=$(($F78SIZE / ($NSEQ - $i + 1)))
5516                 echo directIO rdwr round $i of $NSEQ
5517                 $DIRECTIO rdwr $DIR/$tfile 0 $FSIZE 1048576||error "rdwr failed"
5518         done
5519
5520         rm -f $DIR/$tfile
5521 }
5522 run_test 78 "handle large O_DIRECT writes correctly ============"
5523
5524 test_79() { # bug 12743
5525         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5526         wait_delete_completed
5527
5528         BKTOTAL=$(calc_osc_kbytes kbytestotal)
5529         BKFREE=$(calc_osc_kbytes kbytesfree)
5530         BKAVAIL=$(calc_osc_kbytes kbytesavail)
5531
5532         STRING=`df -P $MOUNT | tail -n 1 | awk '{print $2","$3","$4}'`
5533         DFTOTAL=`echo $STRING | cut -d, -f1`
5534         DFUSED=`echo $STRING  | cut -d, -f2`
5535         DFAVAIL=`echo $STRING | cut -d, -f3`
5536         DFFREE=$(($DFTOTAL - $DFUSED))
5537
5538         ALLOWANCE=$((64 * $OSTCOUNT))
5539
5540         if [ $DFTOTAL -lt $(($BKTOTAL - $ALLOWANCE)) ] ||
5541            [ $DFTOTAL -gt $(($BKTOTAL + $ALLOWANCE)) ] ; then
5542                 error "df total($DFTOTAL) mismatch OST total($BKTOTAL)"
5543         fi
5544         if [ $DFFREE -lt $(($BKFREE - $ALLOWANCE)) ] ||
5545            [ $DFFREE -gt $(($BKFREE + $ALLOWANCE)) ] ; then
5546                 error "df free($DFFREE) mismatch OST free($BKFREE)"
5547         fi
5548         if [ $DFAVAIL -lt $(($BKAVAIL - $ALLOWANCE)) ] ||
5549            [ $DFAVAIL -gt $(($BKAVAIL + $ALLOWANCE)) ] ; then
5550                 error "df avail($DFAVAIL) mismatch OST avail($BKAVAIL)"
5551         fi
5552 }
5553 run_test 79 "df report consistency check ======================="
5554
5555 test_80() { # bug 10718
5556         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5557         # relax strong synchronous semantics for slow backends like ZFS
5558         local soc="obdfilter.*.sync_on_lock_cancel"
5559         local soc_old=$(do_facet ost1 lctl get_param -n $soc | head -n1)
5560         local hosts=
5561         if [ "$soc_old" != "never" -a "$(facet_fstype ost1)" != "ldiskfs" ]; then
5562                 hosts=$(for host in $(seq -f "ost%g" 1 $OSTCOUNT); do
5563                           facet_active_host $host; done | sort -u)
5564                 do_nodes $hosts lctl set_param $soc=never
5565         fi
5566
5567         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1M
5568         sync; sleep 1; sync
5569         local BEFORE=`date +%s`
5570         cancel_lru_locks osc
5571         local AFTER=`date +%s`
5572         local DIFF=$((AFTER-BEFORE))
5573         if [ $DIFF -gt 1 ] ; then
5574                 error "elapsed for 1M@1T = $DIFF"
5575         fi
5576
5577         [ -n "$hosts" ] && do_nodes $hosts lctl set_param $soc=$soc_old
5578
5579         rm -f $DIR/$tfile
5580 }
5581 run_test 80 "Page eviction is equally fast at high offsets too  ===="
5582
5583 test_81a() { # LU-456
5584         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5585         remote_ost_nodsh && skip "remote OST with nodsh" && return
5586         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5587         # MUST OR with the OBD_FAIL_ONCE (0x80000000)
5588         do_facet ost1 lctl set_param fail_loc=0x80000228
5589
5590         # write should trigger a retry and success
5591         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5592         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5593         RC=$?
5594         if [ $RC -ne 0 ] ; then
5595                 error "write should success, but failed for $RC"
5596         fi
5597 }
5598 run_test 81a "OST should retry write when get -ENOSPC ==============="
5599
5600 test_81b() { # LU-456
5601         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5602         remote_ost_nodsh && skip "remote OST with nodsh" && return
5603         # define OBD_FAIL_OST_MAPBLK_ENOSPC    0x228
5604         # Don't OR with the OBD_FAIL_ONCE (0x80000000)
5605         do_facet ost1 lctl set_param fail_loc=0x228
5606
5607         # write should retry several times and return -ENOSPC finally
5608         $SETSTRIPE -i 0 -c 1 $DIR/$tfile
5609         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
5610         RC=$?
5611         ENOSPC=28
5612         if [ $RC -ne $ENOSPC ] ; then
5613                 error "dd should fail for -ENOSPC, but succeed."
5614         fi
5615 }
5616 run_test 81b "OST should return -ENOSPC when retry still fails ======="
5617
5618 test_82() { # LU-1031
5619         dd if=/dev/zero of=$DIR/$tfile bs=1M count=10
5620         local gid1=14091995
5621         local gid2=16022000
5622
5623         multiop_bg_pause $DIR/$tfile OG${gid1}_g${gid1}c || return 1
5624         local MULTIPID1=$!
5625         multiop_bg_pause $DIR/$tfile O_G${gid2}r10g${gid2}c || return 2
5626         local MULTIPID2=$!
5627         kill -USR1 $MULTIPID2
5628         sleep 2
5629         if [[ `ps h -o comm -p $MULTIPID2` == "" ]]; then
5630                 error "First grouplock does not block second one"
5631         else
5632                 echo "Second grouplock blocks first one"
5633         fi
5634         kill -USR1 $MULTIPID1
5635         wait $MULTIPID1
5636         wait $MULTIPID2
5637 }
5638 run_test 82 "Basic grouplock test ==============================="
5639
5640 test_99a() {
5641         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" &&
5642                 return
5643         test_mkdir -p $DIR/d99cvsroot
5644         chown $RUNAS_ID $DIR/d99cvsroot
5645         local oldPWD=$PWD       # bug 13584, use $TMP as working dir
5646         cd $TMP
5647
5648         $RUNAS cvs -d $DIR/d99cvsroot init || error "cvs init failed"
5649         cd $oldPWD
5650 }
5651 run_test 99a "cvs init ========================================="
5652
5653 test_99b() {
5654         [ -z "$(which cvs 2>/dev/null)" ] &&
5655                 skip_env "could not find cvs" && return
5656         [ ! -d $DIR/d99cvsroot ] && test_99a
5657         cd /etc/init.d
5658         # some versions of cvs import exit(1) when asked to import links or
5659         # files they can't read.  ignore those files.
5660         TOIGNORE=$(find . -type l -printf '-I %f\n' -o \
5661                         ! -perm +4 -printf '-I %f\n')
5662         $RUNAS cvs -d $DIR/d99cvsroot import -m "nomesg" $TOIGNORE \
5663                 d99reposname vtag rtag
5664 }
5665 run_test 99b "cvs import ======================================="
5666
5667 test_99c() {
5668         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5669         [ ! -d $DIR/d99cvsroot ] && test_99b
5670         cd $DIR
5671         test_mkdir -p $DIR/d99reposname
5672         chown $RUNAS_ID $DIR/d99reposname
5673         $RUNAS cvs -d $DIR/d99cvsroot co d99reposname
5674 }
5675 run_test 99c "cvs checkout ====================================="
5676
5677 test_99d() {
5678         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5679         [ ! -d $DIR/d99cvsroot ] && test_99c
5680         cd $DIR/d99reposname
5681         $RUNAS touch foo99
5682         $RUNAS cvs add -m 'addmsg' foo99
5683 }
5684 run_test 99d "cvs add =========================================="
5685
5686 test_99e() {
5687         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5688         [ ! -d $DIR/d99cvsroot ] && test_99c
5689         cd $DIR/d99reposname
5690         $RUNAS cvs update
5691 }
5692 run_test 99e "cvs update ======================================="
5693
5694 test_99f() {
5695         [ -z "$(which cvs 2>/dev/null)" ] && skip_env "could not find cvs" && return
5696         [ ! -d $DIR/d99cvsroot ] && test_99d
5697         cd $DIR/d99reposname
5698         $RUNAS cvs commit -m 'nomsg' foo99
5699     rm -fr $DIR/d99cvsroot
5700 }
5701 run_test 99f "cvs commit ======================================="
5702
5703 test_100() {
5704         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5705         [ "$NETTYPE" = tcp ] || \
5706                 { skip "TCP secure port test, not useful for NETTYPE=$NETTYPE" && \
5707                         return ; }
5708
5709         remote_ost_nodsh && skip "remote OST with nodsh" && return
5710         remote_mds_nodsh && skip "remote MDS with nodsh" && return
5711         remote_servers || \
5712                 { skip "useless for local single node setup" && return; }
5713
5714         netstat -tna | ( rc=1; while read PROT SND RCV LOCAL REMOTE STAT; do
5715                 [ "$PROT" != "tcp" ] && continue
5716                 RPORT=$(echo $REMOTE | cut -d: -f2)
5717                 [ "$RPORT" != "$ACCEPTOR_PORT" ] && continue
5718
5719                 rc=0
5720                 LPORT=`echo $LOCAL | cut -d: -f2`
5721                 if [ $LPORT -ge 1024 ]; then
5722                         echo "bad: $PROT $SND $RCV $LOCAL $REMOTE $STAT"
5723                         netstat -tna
5724                         error_exit "local: $LPORT > 1024, remote: $RPORT"
5725                 fi
5726         done
5727         [ "$rc" = 0 ] || error_exit "privileged port not found" )
5728 }
5729 run_test 100 "check local port using privileged port ==========="
5730
5731 function get_named_value()
5732 {
5733     local tag
5734
5735     tag=$1
5736     while read ;do
5737         line=$REPLY
5738         case $line in
5739         $tag*)
5740             echo $line | sed "s/^$tag[ ]*//"
5741             break
5742             ;;
5743         esac
5744     done
5745 }
5746
5747 export CACHE_MAX=$($LCTL get_param -n llite.*.max_cached_mb |
5748                    awk '/^max_cached_mb/ { print $2 }')
5749
5750 cleanup_101a() {
5751         $LCTL set_param -n llite.*.max_cached_mb $CACHE_MAX
5752         trap 0
5753 }
5754
5755 test_101a() {
5756         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5757         local s
5758         local discard
5759         local nreads=10000
5760         local cache_limit=32
5761
5762         $LCTL set_param -n osc.*-osc*.rpc_stats 0
5763         trap cleanup_101a EXIT
5764         $LCTL set_param -n llite.*.read_ahead_stats 0
5765         $LCTL set_param -n llite.*.max_cached_mb $cache_limit
5766
5767         #
5768         # randomly read 10000 of 64K chunks from file 3x 32MB in size
5769         #
5770         echo "nreads: $nreads file size: $((cache_limit * 3))MB"
5771         $READS -f $DIR/$tfile -s$((cache_limit * 3192 * 1024)) -b65536 -C -n$nreads -t 180
5772
5773         discard=0
5774         for s in `$LCTL get_param -n llite.*.read_ahead_stats | \
5775                 get_named_value 'read but discarded' | cut -d" " -f1`; do
5776                         discard=$(($discard + $s))
5777         done
5778         cleanup_101a
5779
5780         if [ $(($discard * 10)) -gt $nreads ] ;then
5781                 $LCTL get_param osc.*-osc*.rpc_stats
5782                 $LCTL get_param llite.*.read_ahead_stats
5783                 error "too many ($discard) discarded pages"
5784         fi
5785         rm -f $DIR/$tfile || true
5786 }
5787 run_test 101a "check read-ahead for random reads ================"
5788
5789 setup_test101bc() {
5790         test_mkdir -p $DIR/$tdir
5791         STRIPE_SIZE=1048576
5792         STRIPE_COUNT=$OSTCOUNT
5793         STRIPE_OFFSET=0
5794
5795         local list=$(comma_list $(osts_nodes))
5796         set_osd_param $list '' read_cache_enable 0
5797         set_osd_param $list '' writethrough_cache_enable 0
5798
5799         trap cleanup_test101bc EXIT
5800         # prepare the read-ahead file
5801         $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $OSTCOUNT $DIR/$tfile
5802
5803         dd if=/dev/zero of=$DIR/$tfile bs=1024k count=100 2> /dev/null
5804 }
5805
5806 cleanup_test101bc() {
5807         trap 0
5808         rm -rf $DIR/$tdir
5809         rm -f $DIR/$tfile
5810
5811         local list=$(comma_list $(osts_nodes))
5812         set_osd_param $list '' read_cache_enable 1
5813         set_osd_param $list '' writethrough_cache_enable 1
5814 }
5815
5816 calc_total() {
5817         awk 'BEGIN{total=0}; {total+=$1}; END{print total}'
5818 }
5819
5820 ra_check_101() {
5821         local READ_SIZE=$1
5822         local STRIPE_SIZE=1048576
5823         local RA_INC=1048576
5824         local STRIDE_LENGTH=$((STRIPE_SIZE/READ_SIZE))
5825         local FILE_LENGTH=$((64*100))
5826         local discard_limit=$((((STRIDE_LENGTH - 1)*3/(STRIDE_LENGTH*OSTCOUNT))* \
5827                              (STRIDE_LENGTH*OSTCOUNT - STRIDE_LENGTH)))
5828         DISCARD=`$LCTL get_param -n llite.*.read_ahead_stats | \
5829                         get_named_value 'read but discarded' | \
5830                         cut -d" " -f1 | calc_total`
5831         if [ $DISCARD -gt $discard_limit ]; then
5832                 $LCTL get_param llite.*.read_ahead_stats
5833                 error "Too many ($DISCARD) discarded pages with size (${READ_SIZE})"
5834         else
5835                 echo "Read-ahead success for size ${READ_SIZE}"
5836         fi
5837 }
5838
5839 test_101b() {
5840         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5841         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping stride IO stride-ahead test" && return
5842         local STRIPE_SIZE=1048576
5843         local STRIDE_SIZE=$((STRIPE_SIZE*OSTCOUNT))
5844         local FILE_LENGTH=$((STRIPE_SIZE*100))
5845         local ITERATION=$((FILE_LENGTH/STRIDE_SIZE))
5846         # prepare the read-ahead file
5847         setup_test101bc
5848         cancel_lru_locks osc
5849         for BIDX in 2 4 8 16 32 64 128 256
5850         do
5851                 local BSIZE=$((BIDX*4096))
5852                 local READ_COUNT=$((STRIPE_SIZE/BSIZE))
5853                 local STRIDE_LENGTH=$((STRIDE_SIZE/BSIZE))
5854                 local OFFSET=$((STRIPE_SIZE/BSIZE*(OSTCOUNT - 1)))
5855                 $LCTL set_param -n llite.*.read_ahead_stats 0
5856                 $READS -f $DIR/$tfile  -l $STRIDE_LENGTH -o $OFFSET \
5857                               -s $FILE_LENGTH -b $STRIPE_SIZE -a $READ_COUNT -n $ITERATION
5858                 cancel_lru_locks osc
5859                 ra_check_101 $BSIZE
5860         done
5861         cleanup_test101bc
5862         true
5863 }
5864 run_test 101b "check stride-io mode read-ahead ================="
5865
5866 test_101c() {
5867         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5868         local STRIPE_SIZE=1048576
5869         local FILE_LENGTH=$((STRIPE_SIZE*100))
5870         local nreads=10000
5871         local osc_rpc_stats
5872
5873         setup_test101bc
5874
5875         cancel_lru_locks osc
5876         $LCTL set_param osc.*.rpc_stats 0
5877         $READS -f $DIR/$tfile -s$FILE_LENGTH -b65536 -n$nreads -t 180
5878         for osc_rpc_stats in $($LCTL get_param -N osc.*.rpc_stats); do
5879                 local stats=$($LCTL get_param -n $osc_rpc_stats)
5880                 local lines=$(echo "$stats" | awk 'END {print NR;}')
5881                 local size
5882
5883                 if [ $lines -le 20 ]; then
5884                         continue
5885                 fi
5886                 for size in 1 2 4 8; do
5887                         local rpc=$(echo "$stats" |
5888                                     awk '($1 == "'$size':") {print $2; exit; }')
5889                         [ $rpc != 0 ] &&
5890                                 error "Small $((size*4))k read IO $rpc !"
5891                 done
5892                 echo "$osc_rpc_stats check passed!"
5893         done
5894         cleanup_test101bc
5895         true
5896 }
5897 run_test 101c "check stripe_size aligned read-ahead ================="
5898
5899 set_read_ahead() {
5900    $LCTL get_param -n llite.*.max_read_ahead_mb | head -n 1
5901    $LCTL set_param -n llite.*.max_read_ahead_mb $1 > /dev/null 2>&1
5902 }
5903
5904 test_101d() {
5905         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5906         local file=$DIR/$tfile
5907         local size=${FILESIZE_101c:-500}
5908         local ra_MB=${READAHEAD_MB:-40}
5909
5910         local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5911         [ $space -gt $((size * 1024)) ] ||
5912                 { skip "Need free space ${size}M, have ${space}K" && return; }
5913
5914         echo "Creating test file $file of size ${size}M with ${space}K free space"
5915         $SETSTRIPE -c -1 $file || error "setstripe failed"
5916         dd if=/dev/zero of=$file bs=1M count=$size || error "dd failed"
5917         echo Cancel LRU locks on lustre client to flush the client cache
5918         cancel_lru_locks osc
5919
5920     echo Disable read-ahead
5921     local old_READAHEAD=$(set_read_ahead 0)
5922
5923     echo Reading the test file $file with read-ahead disabled
5924     time_ra_OFF=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5925
5926     echo Cancel LRU locks on lustre client to flush the client cache
5927     cancel_lru_locks osc
5928     echo Enable read-ahead with ${ra_MB}MB
5929     set_read_ahead $ra_MB
5930
5931     echo Reading the test file $file with read-ahead enabled
5932     time_ra_ON=$(do_and_time "dd if=$file of=/dev/null bs=1M count=$size")
5933
5934     echo read-ahead disabled time read $time_ra_OFF
5935     echo read-ahead enabled  time read $time_ra_ON
5936
5937         set_read_ahead $old_READAHEAD
5938         rm -f $file
5939         wait_delete_completed
5940
5941     [ $time_ra_ON -lt $time_ra_OFF ] ||
5942         error "read-ahead enabled  time read (${time_ra_ON}s) is more than
5943                read-ahead disabled time read (${time_ra_OFF}s) filesize ${size}M"
5944 }
5945 run_test 101d "file read with and without read-ahead enabled  ================="
5946
5947 test_101e() {
5948         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5949     local file=$DIR/$tfile
5950     local size=500  #KB
5951     local count=100
5952     local blksize=1024
5953
5954     local space=$(df -P $DIR | tail -n 1 | awk '{ print $4 }')
5955     local need_space=$((count * size))
5956     [ $space -gt $need_space ] ||
5957         { skip_env "Need free space $need_space, have $space" && return; }
5958
5959     echo Creating $count ${size}K test files
5960     for ((i = 0; i < $count; i++)); do
5961         dd if=/dev/zero of=${file}_${i} bs=$blksize count=$size 2>/dev/null
5962     done
5963
5964     echo Cancel LRU locks on lustre client to flush the client cache
5965     cancel_lru_locks osc
5966
5967     echo Reset readahead stats
5968     $LCTL set_param -n llite.*.read_ahead_stats 0
5969
5970     for ((i = 0; i < $count; i++)); do
5971         dd if=${file}_${i} of=/dev/null bs=$blksize count=$size 2>/dev/null
5972     done
5973
5974     local miss=$($LCTL get_param -n llite.*.read_ahead_stats | \
5975           get_named_value 'misses' | cut -d" " -f1 | calc_total)
5976
5977     for ((i = 0; i < $count; i++)); do
5978         rm -rf ${file}_${i} 2>/dev/null
5979     done
5980
5981     #10000 means 20% reads are missing in readahead
5982     [ $miss -lt 10000 ] ||  error "misses too much for small reads"
5983 }
5984 run_test 101e "check read-ahead for small read(1k) for small files(500k)"
5985
5986 cleanup_test101f() {
5987     trap 0
5988     $LCTL set_param -n llite.*.max_read_ahead_whole_mb $MAX_WHOLE_MB
5989     rm -rf $DIR/$tfile 2>/dev/null
5990 }
5991
5992 test_101f() {
5993         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
5994     local file=$DIR/$tfile
5995     local nreads=1000
5996
5997     MAX_WHOLE_MB=$($LCTL get_param -n llite.*.max_read_ahead_whole_mb)
5998     $LCTL set_param -n llite.*.max_read_ahead_whole_mb 2
5999     dd if=/dev/zero of=${file} bs=2097152 count=1 2>/dev/null
6000     trap cleanup_test101f EXIT
6001
6002     echo Cancel LRU locks on lustre client to flush the client cache
6003     cancel_lru_locks osc
6004
6005     echo Reset readahead stats
6006     $LCTL set_param -n llite.*.read_ahead_stats 0
6007     # Random read in a 2M file, because max_read_ahead_whole_mb = 2M,
6008     # readahead should read in 2M file on second read, so only miss
6009     # 2 pages.
6010     echo Random 4K reads on 2M file for 1000 times
6011     $READS -f $file -s 2097152 -b 4096 -n $nreads
6012
6013     echo checking missing pages
6014     local miss=$($LCTL get_param -n llite.*.read_ahead_stats |
6015           get_named_value 'misses' | cut -d" " -f1 | calc_total)
6016
6017     [ $miss -lt 3 ] || error "misses too much pages!"
6018     cleanup_test101f
6019 }
6020 run_test 101f "check read-ahead for max_read_ahead_whole_mb"
6021
6022 setup_test102() {
6023         test_mkdir -p $DIR/$tdir
6024         chown $RUNAS_ID $DIR/$tdir
6025         STRIPE_SIZE=65536
6026         STRIPE_OFFSET=1
6027         STRIPE_COUNT=$OSTCOUNT
6028         [ $OSTCOUNT -gt 4 ] && STRIPE_COUNT=4
6029
6030         trap cleanup_test102 EXIT
6031         cd $DIR
6032         $1 $SETSTRIPE -S $STRIPE_SIZE -i $STRIPE_OFFSET -c $STRIPE_COUNT $tdir
6033         cd $DIR/$tdir
6034         for num in 1 2 3 4; do
6035                 for count in $(seq 1 $STRIPE_COUNT); do
6036                         for idx in $(seq 0 $[$STRIPE_COUNT - 1]); do
6037                                 local size=`expr $STRIPE_SIZE \* $num`
6038                                 local file=file"$num-$idx-$count"
6039                                 $1 $SETSTRIPE -S $size -i $idx -c $count $file
6040                         done
6041                 done
6042         done
6043
6044         cd $DIR
6045         $1 $TAR cf $TMP/f102.tar $tdir --xattrs
6046 }
6047
6048 cleanup_test102() {
6049         trap 0
6050         rm -f $TMP/f102.tar
6051         rm -rf $DIR/d0.sanity/d102
6052 }
6053
6054 test_102a() {
6055         local testfile=$DIR/xattr_testfile
6056
6057         touch $testfile
6058
6059         [ "$UID" != 0 ] && skip_env "must run as root" && return
6060         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep xattr)" ] &&
6061                 skip_env "must have user_xattr" && return
6062
6063         [ -z "$(which setfattr 2>/dev/null)" ] &&
6064                 skip_env "could not find setfattr" && return
6065
6066         echo "set/get xattr..."
6067         setfattr -n trusted.name1 -v value1 $testfile ||
6068                 error "setfattr -n trusted.name1=value1 $testfile failed"
6069         getfattr -n trusted.name1 $testfile 2> /dev/null |
6070           grep "trusted.name1=.value1" ||
6071                 error "$testfile missing trusted.name1=value1"
6072
6073         setfattr -n user.author1 -v author1 $testfile ||
6074                 error "setfattr -n user.author1=author1 $testfile failed"
6075         getfattr -n user.author1 $testfile 2> /dev/null |
6076           grep "user.author1=.author1" ||
6077                 error "$testfile missing trusted.author1=author1"
6078
6079         echo "listxattr..."
6080         setfattr -n trusted.name2 -v value2 $testfile ||
6081                 error "$testfile unable to set trusted.name2"
6082         setfattr -n trusted.name3 -v value3 $testfile ||
6083                 error "$testfile unable to set trusted.name3"
6084         [ $(getfattr -d -m "^trusted" $testfile 2> /dev/null |
6085             grep "trusted.name" | wc -l) -eq 3 ] ||
6086                 error "$testfile missing 3 trusted.name xattrs"
6087
6088         setfattr -n user.author2 -v author2 $testfile ||
6089                 error "$testfile unable to set user.author2"
6090         setfattr -n user.author3 -v author3 $testfile ||
6091                 error "$testfile unable to set user.author3"
6092         [ $(getfattr -d -m "^user" $testfile 2> /dev/null |
6093             grep "user.author" | wc -l) -eq 3 ] ||
6094                 error "$testfile missing 3 user.author xattrs"
6095
6096         echo "remove xattr..."
6097         setfattr -x trusted.name1 $testfile ||
6098                 error "$testfile error deleting trusted.name1"
6099         getfattr -d -m trusted $testfile 2> /dev/null | grep "trusted.name1" &&
6100                 error "$testfile did not delete trusted.name1 xattr"
6101
6102         setfattr -x user.author1 $testfile ||
6103                 error "$testfile error deleting user.author1"
6104         getfattr -d -m user $testfile 2> /dev/null | grep "user.author1" &&
6105                 error "$testfile did not delete trusted.name1 xattr"
6106
6107         # b10667: setting lustre special xattr be silently discarded
6108         echo "set lustre special xattr ..."
6109         setfattr -n "trusted.lov" -v "invalid value" $testfile ||
6110                 error "$testfile allowed setting trusted.lov"
6111 }
6112 run_test 102a "user xattr test =================================="
6113
6114 test_102b() {
6115         # b10930: get/set/list trusted.lov xattr
6116         echo "get/set/list trusted.lov xattr ..."
6117         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6118         local testfile=$DIR/$tfile
6119         $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6120                 error "setstripe failed"
6121         local STRIPECOUNT=$($GETSTRIPE -c $testfile) ||
6122                 error "getstripe failed"
6123         getfattr -d -m "^trusted" $testfile 2> /dev/null | \
6124         grep "trusted.lov" || error "can't get trusted.lov from $testfile"
6125
6126         local testfile2=${testfile}2
6127         local value=`getfattr -n trusted.lov $testfile 2> /dev/null | \
6128                      grep "trusted.lov" |sed -e 's/[^=]\+=//'`
6129
6130         $MCREATE $testfile2
6131         setfattr -n trusted.lov -v $value $testfile2
6132         local stripe_size=$($GETSTRIPE -S $testfile2)
6133         local stripe_count=$($GETSTRIPE -c $testfile2)
6134         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6135         [ $stripe_count -eq $STRIPECOUNT ] ||
6136                 error "stripe count $stripe_count != $STRIPECOUNT"
6137         rm -f $DIR/$tfile
6138 }
6139 run_test 102b "getfattr/setfattr for trusted.lov EAs ============"
6140
6141 test_102c() {
6142         # b10930: get/set/list lustre.lov xattr
6143         echo "get/set/list lustre.lov xattr ..."
6144         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
6145         test_mkdir -p $DIR/$tdir
6146         chown $RUNAS_ID $DIR/$tdir
6147         local testfile=$DIR/$tdir/$tfile
6148         $RUNAS $SETSTRIPE -S 65536 -i 1 -c $OSTCOUNT $testfile ||
6149                 error "setstripe failed"
6150         local STRIPECOUNT=$($RUNAS $GETSTRIPE -c $testfile) ||
6151                 error "getstripe failed"
6152         $RUNAS getfattr -d -m "^lustre" $testfile 2> /dev/null | \
6153         grep "lustre.lov" || error "can't get lustre.lov from $testfile"
6154
6155         local testfile2=${testfile}2
6156         local value=`getfattr -n lustre.lov $testfile 2> /dev/null | \
6157                      grep "lustre.lov" |sed -e 's/[^=]\+=//'  `
6158
6159         $RUNAS $MCREATE $testfile2
6160         $RUNAS setfattr -n lustre.lov -v $value $testfile2
6161         local stripe_size=$($RUNAS $GETSTRIPE -S $testfile2)
6162         local stripe_count=$($RUNAS $GETSTRIPE -c $testfile2)
6163         [ $stripe_size -eq 65536 ] || error "stripe size $stripe_size != 65536"
6164         [ $stripe_count -eq $STRIPECOUNT ] ||
6165                 error "stripe count $stripe_count != $STRIPECOUNT"
6166 }
6167 run_test 102c "non-root getfattr/setfattr for lustre.lov EAs ==========="
6168
6169 compare_stripe_info1() {
6170         local stripe_index_all_zero=true
6171
6172         for num in 1 2 3 4; do
6173                 for count in $(seq 1 $STRIPE_COUNT); do
6174                         for offset in $(seq 0 $[$STRIPE_COUNT - 1]); do
6175                                 local size=$((STRIPE_SIZE * num))
6176                                 local file=file"$num-$offset-$count"
6177                                 stripe_size=$(lfs getstripe -S $PWD/$file)
6178                                 [ $stripe_size -ne $size ] &&
6179                                     error "$file: size $stripe_size != $size"
6180                                 stripe_count=$(lfs getstripe -c $PWD/$file)
6181                                 # allow fewer stripes to be created, ORI-601
6182                                 [ $stripe_count -lt $(((3 * count + 3) / 4)) ]&&
6183                                     error "$file: count $stripe_count != $count"
6184                                 stripe_index=$(lfs getstripe -i $PWD/$file)
6185                                 [ $stripe_index -ne 0 ] &&
6186                                         stripe_index_all_zero=false
6187                         done
6188                 done
6189         done
6190         $stripe_index_all_zero &&
6191                 error "all files are being extracted starting from OST index 0"
6192         return 0
6193 }
6194
6195 find_lustre_tar() {
6196         [ -n "$(which tar 2>/dev/null)" ] &&
6197                 strings $(which tar) | grep -q "lustre" && echo tar
6198 }
6199
6200 test_102d() {
6201         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6202         # b10930: tar test for trusted.lov xattr
6203         TAR=$(find_lustre_tar)
6204         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6205         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6206         setup_test102
6207         test_mkdir -p $DIR/d102d
6208         $TAR xf $TMP/f102.tar -C $DIR/d102d --xattrs
6209         cd $DIR/d102d/$tdir
6210         compare_stripe_info1
6211 }
6212 run_test 102d "tar restore stripe info from tarfile,not keep osts ==========="
6213
6214 test_102f() {
6215         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6216         # b10930: tar test for trusted.lov xattr
6217         TAR=$(find_lustre_tar)
6218         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6219         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6220         setup_test102
6221         test_mkdir -p $DIR/d102f
6222         cd $DIR
6223         $TAR cf - --xattrs $tdir | $TAR xf - --xattrs -C $DIR/d102f
6224         cd $DIR/d102f/$tdir
6225         compare_stripe_info1
6226 }
6227 run_test 102f "tar copy files, not keep osts ==========="
6228
6229 grow_xattr() {
6230         local xsize=${1:-1024}  # in bytes
6231         local file=$DIR/$tfile
6232
6233         [ -z $(lctl get_param -n mdc.*.connect_flags | grep xattr) ] &&
6234                 skip "must have user_xattr" && return 0
6235         [ -z "$(which setfattr 2>/dev/null)" ] &&
6236                 skip_env "could not find setfattr" && return 0
6237         [ -z "$(which getfattr 2>/dev/null)" ] &&
6238                 skip_env "could not find getfattr" && return 0
6239
6240         touch $file
6241
6242         local value="$(generate_string $xsize)"
6243
6244         local xbig=trusted.big
6245         log "save $xbig on $file"
6246         setfattr -n $xbig -v $value $file ||
6247                 error "saving $xbig on $file failed"
6248
6249         local orig=$(get_xattr_value $xbig $file)
6250         [[ "$orig" != "$value" ]] && error "$xbig different after saving $xbig"
6251
6252         local xsml=trusted.sml
6253         log "save $xsml on $file"
6254         setfattr -n $xsml -v val $file || error "saving $xsml on $file failed"
6255
6256         local new=$(get_xattr_value $xbig $file)
6257         [[ "$new" != "$orig" ]] && error "$xbig different after saving $xsml"
6258
6259         log "grow $xsml on $file"
6260         setfattr -n $xsml -v "$value" $file ||
6261                 error "growing $xsml on $file failed"
6262
6263         new=$(get_xattr_value $xbig $file)
6264         [[ "$new" != "$orig" ]] && error "$xbig different after growing $xsml"
6265         log "$xbig still valid after growing $xsml"
6266
6267         rm -f $file
6268 }
6269
6270 test_102h() { # bug 15777
6271         grow_xattr 1024
6272 }
6273 run_test 102h "grow xattr from inside inode to external block"
6274
6275 test_102ha() {
6276         large_xattr_enabled || { skip "large_xattr disabled" && return; }
6277         grow_xattr $(max_xattr_size)
6278 }
6279 run_test 102ha "grow xattr from inside inode to external inode"
6280
6281 test_102i() { # bug 17038
6282         touch $DIR/$tfile
6283         ln -s $DIR/$tfile $DIR/${tfile}link
6284         getfattr -n trusted.lov $DIR/$tfile || error "lgetxattr on $DIR/$tfile failed"
6285         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"
6286         rm -f $DIR/$tfile $DIR/${tfile}link
6287 }
6288 run_test 102i "lgetxattr test on symbolic link ============"
6289
6290 test_102j() {
6291         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6292         TAR=$(find_lustre_tar)
6293         [ -z "$TAR" ] && skip_env "lustre-aware tar is not installed" && return
6294         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping N-stripe test" && return
6295         setup_test102 "$RUNAS"
6296         test_mkdir -p $DIR/d102j
6297         chown $RUNAS_ID $DIR/d102j
6298         $RUNAS $TAR xf $TMP/f102.tar -C $DIR/d102j --xattrs
6299         cd $DIR/d102j/$tdir
6300         compare_stripe_info1 "$RUNAS"
6301 }
6302 run_test 102j "non-root tar restore stripe info from tarfile, not keep osts ==="
6303
6304 test_102k() {
6305         touch $DIR/$tfile
6306         # b22187 just check that does not crash for regular file.
6307         setfattr -n trusted.lov $DIR/$tfile
6308         # b22187 'setfattr -n trusted.lov' should work as remove LOV EA for directories
6309         local test_kdir=$DIR/d102k
6310         test_mkdir $test_kdir
6311         local default_size=`$GETSTRIPE -S $test_kdir`
6312         local default_count=`$GETSTRIPE -c $test_kdir`
6313         local default_offset=`$GETSTRIPE -i $test_kdir`
6314         $SETSTRIPE -S 65536 -i 0 -c $OSTCOUNT $test_kdir ||
6315                 error 'dir setstripe failed'
6316         setfattr -n trusted.lov $test_kdir
6317         local stripe_size=`$GETSTRIPE -S $test_kdir`
6318         local stripe_count=`$GETSTRIPE -c $test_kdir`
6319         local stripe_offset=`$GETSTRIPE -i $test_kdir`
6320         [ $stripe_size -eq $default_size ] ||
6321                 error "stripe size $stripe_size != $default_size"
6322         [ $stripe_count -eq $default_count ] ||
6323                 error "stripe count $stripe_count != $default_count"
6324         [ $stripe_offset -eq $default_offset ] ||
6325                 error "stripe offset $stripe_offset != $default_offset"
6326         rm -rf $DIR/$tfile $test_kdir
6327 }
6328 run_test 102k "setfattr without parameter of value shouldn't cause a crash"
6329
6330 test_102l() {
6331         # LU-532 trusted. xattr is invisible to non-root
6332         local testfile=$DIR/$tfile
6333
6334         touch $testfile
6335
6336         echo "listxattr as user..."
6337         chown $RUNAS_ID $testfile
6338         $RUNAS getfattr -d -m '.*' $testfile 2>&1 |
6339             grep -q "trusted" &&
6340                 error "$testfile trusted xattrs are user visible"
6341
6342         return 0;
6343 }
6344 run_test 102l "listxattr size test =================================="
6345
6346 test_102m() { # LU-3403 llite: error of listxattr when buffer is small
6347         local path=$DIR/$tfile
6348         touch $path
6349
6350         listxattr_size_check $path || error "listattr_size_check $path failed"
6351 }
6352 run_test 102m "Ensure listxattr fails on small bufffer ========"
6353
6354 cleanup_test102
6355
6356 run_acl_subtest()
6357 {
6358     $LUSTRE/tests/acl/run $LUSTRE/tests/acl/$1.test
6359     return $?
6360 }
6361
6362 test_103 () {
6363         [ "$UID" != 0 ] && skip_env "must run as root" && return
6364         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] &&
6365                 skip "must have acl enabled" && return
6366         [ -z "$(which setfacl 2>/dev/null)" ] &&
6367                 skip_env "could not find setfacl" && return
6368         $GSS && skip "could not run under gss" && return
6369
6370         declare -a identity_old
6371
6372         for num in $(seq $MDSCOUNT); do
6373                 switch_identity $num true || identity_old[$num]=$?
6374         done
6375
6376         SAVE_UMASK=$(umask)
6377         umask 0022
6378         cd $DIR
6379
6380         echo "performing cp ..."
6381         run_acl_subtest cp || error "run_acl_subtest cp failed"
6382         echo "performing getfacl-noacl..."
6383         run_acl_subtest getfacl-noacl || error "getfacl-noacl test failed"
6384         echo "performing misc..."
6385         run_acl_subtest misc || error  "misc test failed"
6386         echo "performing permissions..."
6387         run_acl_subtest permissions || error "permissions failed"
6388         echo "performing setfacl..."
6389         run_acl_subtest setfacl || error  "setfacl test failed"
6390
6391         # inheritance test got from HP
6392         echo "performing inheritance..."
6393         cp $LUSTRE/tests/acl/make-tree . || error "cannot copy make-tree"
6394         chmod +x make-tree || error "chmod +x failed"
6395         run_acl_subtest inheritance || error "inheritance test failed"
6396         rm -f make-tree
6397
6398         echo "LU-974 ignore umask when acl is enabled..."
6399         run_acl_subtest 974 || error "LU-974 umask test failed"
6400         if [ $MDSCOUNT -ge 2 ]; then
6401                 run_acl_subtest 974_remote ||
6402                         error "LU-974 umask test failed under remote dir"
6403         fi
6404
6405         echo "LU-2561 newly created file is same size as directory..."
6406         run_acl_subtest 2561 || error "LU-2561 test failed"
6407
6408         cd $SAVE_PWD
6409         umask $SAVE_UMASK
6410
6411         for num in $(seq $MDSCOUNT); do
6412                 if [ "${identity_old[$num]}" = 1 ]; then
6413                         switch_identity $num false || identity_old[$num]=$?
6414                 fi
6415         done
6416 }
6417 run_test 103 "acl test ========================================="
6418
6419 test_104a() {
6420         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6421         touch $DIR/$tfile
6422         lfs df || error "lfs df failed"
6423         lfs df -ih || error "lfs df -ih failed"
6424         lfs df -h $DIR || error "lfs df -h $DIR failed"
6425         lfs df -i $DIR || error "lfs df -i $DIR failed"
6426         lfs df $DIR/$tfile || error "lfs df $DIR/$tfile failed"
6427         lfs df -ih $DIR/$tfile || error "lfs df -ih $DIR/$tfile failed"
6428
6429         local OSC=$(lctl dl | grep OST0000-osc-[^M] | awk '{ print $4 }')
6430         lctl --device %$OSC deactivate
6431         lfs df || error "lfs df with deactivated OSC failed"
6432         lctl --device %$OSC activate
6433         # wait the osc back to normal
6434         wait_osc_import_state client ost FULL
6435
6436         lfs df || error "lfs df with reactivated OSC failed"
6437         rm -f $DIR/$tfile
6438 }
6439 run_test 104a "lfs df [-ih] [path] test ========================="
6440
6441 test_104b() {
6442         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6443         [ $RUNAS_ID -eq $UID ] &&
6444                 skip_env "RUNAS_ID = UID = $UID -- skipping" && return
6445         chmod 666 /dev/obd
6446         denied_cnt=$(($($RUNAS $LFS check servers 2>&1 |
6447                         grep "Permission denied" | wc -l)))
6448         if [ $denied_cnt -ne 0 ]; then
6449                 error "lfs check servers test failed"
6450         fi
6451 }
6452 run_test 104b "$RUNAS lfs check servers test ===================="
6453
6454 test_105a() {
6455         # doesn't work on 2.4 kernels
6456         touch $DIR/$tfile
6457         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6458                 flocks_test 1 on -f $DIR/$tfile || error "fail flock on"
6459         else
6460                 flocks_test 1 off -f $DIR/$tfile || error "fail flock off"
6461         fi
6462         rm -f $DIR/$tfile
6463 }
6464 run_test 105a "flock when mounted without -o flock test ========"
6465
6466 test_105b() {
6467         touch $DIR/$tfile
6468         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6469                 flocks_test 1 on -c $DIR/$tfile || error "fail flock on"
6470         else
6471                 flocks_test 1 off -c $DIR/$tfile || error "fail flock off"
6472         fi
6473         rm -f $DIR/$tfile
6474 }
6475 run_test 105b "fcntl when mounted without -o flock test ========"
6476
6477 test_105c() {
6478         touch $DIR/$tfile
6479         if [ -n "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ]; then
6480                 flocks_test 1 on -l $DIR/$tfile || error "fail flock on"
6481         else
6482                 flocks_test 1 off -l $DIR/$tfile || error "fail flock off"
6483         fi
6484         rm -f $DIR/$tfile
6485 }
6486 run_test 105c "lockf when mounted without -o flock test ========"
6487
6488 test_105d() { # bug 15924
6489         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6490         test_mkdir -p $DIR/$tdir
6491         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6492                 skip "mount w/o flock enabled" && return
6493         #define OBD_FAIL_LDLM_CP_CB_WAIT  0x315
6494         $LCTL set_param fail_loc=0x80000315
6495         flocks_test 2 $DIR/$tdir
6496 }
6497 run_test 105d "flock race (should not freeze) ========"
6498
6499 test_105e() { # bug 22660 && 22040
6500         [ -z "$(mount | grep "$MOUNT.*flock" | grep -v noflock)" ] &&
6501                 skip "mount w/o flock enabled" && return
6502         touch $DIR/$tfile
6503         flocks_test 3 $DIR/$tfile
6504 }
6505 run_test 105e "Two conflicting flocks from same process ======="
6506
6507 test_106() { #bug 10921
6508         test_mkdir -p $DIR/$tdir
6509         $DIR/$tdir && error "exec $DIR/$tdir succeeded"
6510         chmod 777 $DIR/$tdir || error "chmod $DIR/$tdir failed"
6511 }
6512 run_test 106 "attempt exec of dir followed by chown of that dir"
6513
6514 test_107() {
6515         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6516         CDIR=`pwd`
6517         cd $DIR
6518
6519         local file=core
6520         rm -f $file
6521
6522         local save_pattern=$(sysctl -n kernel.core_pattern)
6523         local save_uses_pid=$(sysctl -n kernel.core_uses_pid)
6524         sysctl -w kernel.core_pattern=$file
6525         sysctl -w kernel.core_uses_pid=0
6526
6527         ulimit -c unlimited
6528         sleep 60 &
6529         SLEEPPID=$!
6530
6531         sleep 1
6532
6533         kill -s 11 $SLEEPPID
6534         wait $SLEEPPID
6535         if [ -e $file ]; then
6536                 size=`stat -c%s $file`
6537                 [ $size -eq 0 ] && error "Fail to create core file $file"
6538         else
6539                 error "Fail to create core file $file"
6540         fi
6541         rm -f $file
6542         sysctl -w kernel.core_pattern=$save_pattern
6543         sysctl -w kernel.core_uses_pid=$save_uses_pid
6544         cd $CDIR
6545 }
6546 run_test 107 "Coredump on SIG"
6547
6548 test_110() {
6549         test_mkdir -p $DIR/$tdir
6550         test_mkdir $DIR/$tdir/$(str_repeat 'a' 255) ||
6551                 error "mkdir with 255 char failed"
6552         test_mkdir $DIR/$tdir/$(str_repeat 'b' 256) &&
6553                 error "mkdir with 256 char should fail, but did not"
6554         touch $DIR/$tdir/$(str_repeat 'x' 255) ||
6555                 error "create with 255 char failed"
6556         touch $DIR/$tdir/$(str_repeat 'y' 256) &&
6557                 error "create with 256 char should fail, but did not"
6558
6559         ls -l $DIR/$tdir
6560         rm -rf $DIR/$tdir
6561 }
6562 run_test 110 "filename length checking"
6563
6564 test_115() {
6565         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6566         OSTIO_pre=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6567             cut -c11-20)
6568         [ -z "$OSTIO_pre" ] && skip "no OSS threads" && \
6569             return
6570         echo "Starting with $OSTIO_pre threads"
6571
6572         NUMTEST=20000
6573         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
6574         [ $NUMFREE -lt $NUMTEST ] && NUMTEST=$(($NUMFREE - 1000))
6575         echo "$NUMTEST creates/unlinks"
6576         test_mkdir -p $DIR/$tdir
6577         createmany -o $DIR/$tdir/$tfile $NUMTEST
6578         unlinkmany $DIR/$tdir/$tfile $NUMTEST
6579
6580         OSTIO_post=$(ps -e|grep ll_ost_io|awk '{print $4}'|sort -n|tail -1|\
6581             cut -c11-20)
6582
6583         # don't return an error
6584         [ $OSTIO_post == $OSTIO_pre ] && echo \
6585             "WARNING: No new ll_ost_io threads were created ($OSTIO_pre)" &&
6586             echo "This may be fine, depending on what ran before this test" &&
6587             echo "and how fast this system is." && return
6588
6589         echo "Started with $OSTIO_pre threads, ended with $OSTIO_post"
6590 }
6591 run_test 115 "verify dynamic thread creation===================="
6592
6593 free_min_max () {
6594         wait_delete_completed
6595         AVAIL=($(lctl get_param -n osc.*[oO][sS][cC]-[^M]*.kbytesavail))
6596         echo OST kbytes available: ${AVAIL[@]}
6597         MAXI=0; MAXV=${AVAIL[0]}
6598         MINI=0; MINV=${AVAIL[0]}
6599         for ((i = 0; i < ${#AVAIL[@]}; i++)); do
6600             #echo OST $i: ${AVAIL[i]}kb
6601             if [ ${AVAIL[i]} -gt $MAXV ]; then
6602                 MAXV=${AVAIL[i]}; MAXI=$i
6603             fi
6604             if [ ${AVAIL[i]} -lt $MINV ]; then
6605                 MINV=${AVAIL[i]}; MINI=$i
6606             fi
6607         done
6608         echo Min free space: OST $MINI: $MINV
6609         echo Max free space: OST $MAXI: $MAXV
6610 }
6611
6612 test_116a() { # was previously test_116()
6613         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6614         [ "$OSTCOUNT" -lt "2" ] && skip_env "$OSTCOUNT < 2 OSTs" && return
6615
6616         echo -n "Free space priority "
6617         do_facet $SINGLEMDS lctl get_param -n lo*.*-mdtlov.qos_prio_free |
6618                 head -1
6619         declare -a AVAIL
6620         free_min_max
6621
6622         [ $MINV -eq 0 ] && skip "no free space in OST$MINI, skip" && return
6623         trap simple_cleanup_common EXIT
6624
6625         # Check if we need to generate uneven OSTs
6626         test_mkdir -p $DIR/$tdir/OST${MINI}
6627         local FILL=$(($MINV / 4))
6628         local DIFF=$(($MAXV - $MINV))
6629         local DIFF2=$(($DIFF * 100 / $MINV))
6630
6631         local threshold=$(do_facet $SINGLEMDS \
6632                 lctl get_param -n *.*MDT0000-mdtlov.qos_threshold_rr | head -1)
6633         threshold=${threshold%%%}
6634         echo -n "Check for uneven OSTs: "
6635         echo -n "diff=${DIFF}KB (${DIFF2}%) must be > ${threshold}% ..."
6636
6637         if [ $DIFF2 -gt $threshold ]; then
6638                 echo "ok"
6639                 echo "Don't need to fill OST$MINI"
6640         else
6641                 # generate uneven OSTs. Write 2% over the QOS threshold value
6642                 echo "no"
6643                 DIFF=$(($threshold - $DIFF2 + 2))
6644                 DIFF2=$(( ($MINV * $DIFF)/100 ))
6645                 echo "Fill ${DIFF}% remaining space in OST${MINI} with ${DIFF2}KB"
6646                 $SETSTRIPE -i $MINI -c 1 $DIR/$tdir/OST${MINI} ||
6647                         error "setstripe failed"
6648                 DIFF=$(($DIFF2 / 2048))
6649                 i=0
6650                 while [ $i -lt $DIFF ]; do
6651                         i=$(($i + 1))
6652                         dd if=/dev/zero of=$DIR/$tdir/OST${MINI}/$tfile-$i \
6653                                 bs=2M count=1 2>/dev/null
6654                         echo -n .
6655                 done
6656                 echo .
6657                 sync
6658                 sleep_maxage
6659                 free_min_max
6660         fi
6661
6662         DIFF=$(($MAXV - $MINV))
6663         DIFF2=$(($DIFF * 100 / $MINV))
6664         echo -n "diff=${DIFF}=${DIFF2}% must be > ${threshold}% for QOS mode..."
6665         if [ $DIFF2 -gt $threshold ]; then
6666                 echo "ok"
6667         else
6668                 echo "failed - QOS mode won't be used"
6669                 error_ignore 0000 "QOS imbalance criteria not met"
6670                 simple_cleanup_common
6671                 return
6672         fi
6673
6674         MINI1=$MINI; MINV1=$MINV
6675         MAXI1=$MAXI; MAXV1=$MAXV
6676
6677         # now fill using QOS
6678         $SETSTRIPE -c 1 $DIR/$tdir
6679         FILL=$(($FILL / 200))
6680         if [ $FILL -gt 600 ]; then
6681                 FILL=600
6682         fi
6683         echo "writing $FILL files to QOS-assigned OSTs"
6684         i=0
6685         while [ $i -lt $FILL ]; do
6686                 i=$(($i + 1))
6687                 dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=200k \
6688                         count=1 2>/dev/null
6689                 echo -n .
6690         done
6691         echo "wrote $i 200k files"
6692         sync
6693         sleep_maxage
6694
6695         echo "Note: free space may not be updated, so measurements might be off"
6696         free_min_max
6697         DIFF2=$(($MAXV - $MINV))
6698         echo "free space delta: orig $DIFF final $DIFF2"
6699         [ $DIFF2 -gt $DIFF ] && echo "delta got worse!"
6700         DIFF=$(($MINV1 - ${AVAIL[$MINI1]}))
6701         echo "Wrote ${DIFF}KB to smaller OST $MINI1"
6702         DIFF2=$(($MAXV1 - ${AVAIL[$MAXI1]}))
6703         echo "Wrote ${DIFF2}KB to larger OST $MAXI1"
6704         FILL=$(($DIFF2 * 100 / $DIFF - 100))
6705         [ $DIFF -gt 0 ] &&
6706                 echo "Wrote ${FILL}% more data to larger OST $MAXI1"
6707
6708         # Figure out which files were written where
6709         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6710                   awk '/'$MINI1': / {print $2; exit}')
6711         echo $UUID
6712         MINC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6713         echo "$MINC files created on smaller OST $MINI1"
6714         UUID=$(lctl get_param -n lov.${FSNAME}-clilov-*.target_obd |
6715                   awk '/'$MAXI1': / {print $2; exit}')
6716         echo $UUID
6717         MAXC=$($GETSTRIPE --ost $UUID $DIR/$tdir | grep $DIR | wc -l)
6718         echo "$MAXC files created on larger OST $MAXI1"
6719         FILL=$(($MAXC * 100 / $MINC - 100))
6720         [ $MINC -gt 0 ] &&
6721                 echo "Wrote ${FILL}% more files to larger OST $MAXI1"
6722         [ $MAXC -gt $MINC ] ||
6723                 error_ignore 0000 "stripe QOS didn't balance free space"
6724
6725         simple_cleanup_common
6726 }
6727 run_test 116a "stripe QOS: free space balance ==================="
6728
6729 test_116b() { # LU-2093
6730         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6731 #define OBD_FAIL_MDS_OSC_CREATE_FAIL     0x147
6732         local old_rr
6733         old_rr=$(do_facet $SINGLEMDS lctl get_param -n lov.*mdtlov*.qos_threshold_rr)
6734         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr 0
6735         mkdir -p $DIR/$tdir
6736         do_facet $SINGLEMDS lctl set_param fail_loc=0x147
6737         createmany -o $DIR/$tdir/f- 20 || error "can't create"
6738         do_facet $SINGLEMDS lctl set_param fail_loc=0
6739         rm -rf $DIR/$tdir
6740         do_facet $SINGLEMDS lctl set_param lov.*mdtlov*.qos_threshold_rr $old_rr
6741 }
6742 run_test 116b "QoS shouldn't LBUG if not enough OSTs found on the 2nd pass"
6743
6744 test_117() # bug 10891
6745 {
6746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6747         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1
6748         #define OBD_FAIL_OST_SETATTR_CREDITS 0x21e
6749         lctl set_param fail_loc=0x21e
6750         > $DIR/$tfile || error "truncate failed"
6751         lctl set_param fail_loc=0
6752         echo "Truncate succeeded."
6753         rm -f $DIR/$tfile
6754 }
6755 run_test 117 "verify fsfilt_extend =========="
6756
6757 NO_SLOW_RESENDCOUNT=4
6758 export OLD_RESENDCOUNT=""
6759 set_resend_count () {
6760         local PROC_RESENDCOUNT="osc.${FSNAME}-OST*-osc-*.resend_count"
6761         OLD_RESENDCOUNT=$(lctl get_param -n $PROC_RESENDCOUNT | head -1)
6762         lctl set_param -n $PROC_RESENDCOUNT $1
6763         echo resend_count is set to $(lctl get_param -n $PROC_RESENDCOUNT)
6764 }
6765
6766 # for reduce test_118* time (b=14842)
6767 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6768
6769 # Reset async IO behavior after error case
6770 reset_async() {
6771         FILE=$DIR/reset_async
6772
6773         # Ensure all OSCs are cleared
6774         $SETSTRIPE -c -1 $FILE
6775         dd if=/dev/zero of=$FILE bs=64k count=$OSTCOUNT
6776         sync
6777         rm $FILE
6778 }
6779
6780 test_118a() #bug 11710
6781 {
6782         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6783         reset_async
6784
6785         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6786         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6787         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
6788
6789         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6790                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6791                 return 1;
6792         fi
6793         rm -f $DIR/$tfile
6794 }
6795 run_test 118a "verify O_SYNC works =========="
6796
6797 test_118b()
6798 {
6799         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6800         remote_ost_nodsh && skip "remote OST with nodsh" && return
6801
6802         reset_async
6803
6804         #define OBD_FAIL_OST_ENOENT 0x217
6805         set_nodes_failloc "$(osts_nodes)" 0x217
6806         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6807         RC=$?
6808         set_nodes_failloc "$(osts_nodes)" 0
6809         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6810         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6811                     grep -c writeback)
6812
6813         if [[ $RC -eq 0 ]]; then
6814                 error "Must return error due to dropped pages, rc=$RC"
6815                 return 1;
6816         fi
6817
6818         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6819                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6820                 return 1;
6821         fi
6822
6823         echo "Dirty pages not leaked on ENOENT"
6824
6825         # Due to the above error the OSC will issue all RPCs syncronously
6826         # until a subsequent RPC completes successfully without error.
6827         $MULTIOP $DIR/$tfile Ow4096yc
6828         rm -f $DIR/$tfile
6829
6830         return 0
6831 }
6832 run_test 118b "Reclaim dirty pages on fatal error =========="
6833
6834 test_118c()
6835 {
6836         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6837
6838         # for 118c, restore the original resend count, LU-1940
6839         [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] &&
6840                                 set_resend_count $OLD_RESENDCOUNT
6841         remote_ost_nodsh && skip "remote OST with nodsh" && return
6842
6843         reset_async
6844
6845         #define OBD_FAIL_OST_EROFS               0x216
6846         set_nodes_failloc "$(osts_nodes)" 0x216
6847
6848         # multiop should block due to fsync until pages are written
6849         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6850         MULTIPID=$!
6851         sleep 1
6852
6853         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6854                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6855         fi
6856
6857         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6858                     grep -c writeback)
6859         if [[ $WRITEBACK -eq 0 ]]; then
6860                 error "No page in writeback, writeback=$WRITEBACK"
6861         fi
6862
6863         set_nodes_failloc "$(osts_nodes)" 0
6864         wait $MULTIPID
6865         RC=$?
6866         if [[ $RC -ne 0 ]]; then
6867                 error "Multiop fsync failed, rc=$RC"
6868         fi
6869
6870         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6871         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6872                     grep -c writeback)
6873         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6874                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6875         fi
6876
6877         rm -f $DIR/$tfile
6878         echo "Dirty pages flushed via fsync on EROFS"
6879         return 0
6880 }
6881 run_test 118c "Fsync blocks on EROFS until dirty pages are flushed =========="
6882
6883 # continue to use small resend count to reduce test_118* time (b=14842)
6884 [ "$SLOW" = "no" ] && set_resend_count $NO_SLOW_RESENDCOUNT
6885
6886 test_118d()
6887 {
6888         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6889         remote_ost_nodsh && skip "remote OST with nodsh" && return
6890
6891         reset_async
6892
6893         #define OBD_FAIL_OST_BRW_PAUSE_BULK
6894         set_nodes_failloc "$(osts_nodes)" 0x214
6895         # multiop should block due to fsync until pages are written
6896         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
6897         MULTIPID=$!
6898         sleep 1
6899
6900         if [[ `ps h -o comm -p $MULTIPID` != "multiop" ]]; then
6901                 error "Multiop failed to block on fsync, pid=$MULTIPID"
6902         fi
6903
6904         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6905                     grep -c writeback)
6906         if [[ $WRITEBACK -eq 0 ]]; then
6907                 error "No page in writeback, writeback=$WRITEBACK"
6908         fi
6909
6910         wait $MULTIPID || error "Multiop fsync failed, rc=$?"
6911         set_nodes_failloc "$(osts_nodes)" 0
6912
6913         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6914         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6915                     grep -c writeback)
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 "Dirty pages gaurenteed flushed via fsync"
6922         return 0
6923 }
6924 run_test 118d "Fsync validation inject a delay of the bulk =========="
6925
6926 test_118f() {
6927         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6928         reset_async
6929
6930         #define OBD_FAIL_OSC_BRW_PREP_REQ2        0x40a
6931         lctl set_param fail_loc=0x8000040a
6932
6933         # Should simulate EINVAL error which is fatal
6934         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6935         RC=$?
6936         if [[ $RC -eq 0 ]]; then
6937                 error "Must return error due to dropped pages, rc=$RC"
6938         fi
6939
6940         lctl set_param fail_loc=0x0
6941
6942         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6943         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6944         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6945                     grep -c writeback)
6946         if [[ $LOCKED -ne 0 ]]; then
6947                 error "Locked pages remain in cache, locked=$LOCKED"
6948         fi
6949
6950         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6951                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6952         fi
6953
6954         rm -f $DIR/$tfile
6955         echo "No pages locked after fsync"
6956
6957         reset_async
6958         return 0
6959 }
6960 run_test 118f "Simulate unrecoverable OSC side error =========="
6961
6962 test_118g() {
6963         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
6964         reset_async
6965
6966         #define OBD_FAIL_OSC_BRW_PREP_REQ        0x406
6967         lctl set_param fail_loc=0x406
6968
6969         # simulate local -ENOMEM
6970         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
6971         RC=$?
6972
6973         lctl set_param fail_loc=0
6974         if [[ $RC -eq 0 ]]; then
6975                 error "Must return error due to dropped pages, rc=$RC"
6976         fi
6977
6978         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
6979         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
6980         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
6981                         grep -c writeback)
6982         if [[ $LOCKED -ne 0 ]]; then
6983                 error "Locked pages remain in cache, locked=$LOCKED"
6984         fi
6985
6986         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
6987                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
6988         fi
6989
6990         rm -f $DIR/$tfile
6991         echo "No pages locked after fsync"
6992
6993         reset_async
6994         return 0
6995 }
6996 run_test 118g "Don't stay in wait if we got local -ENOMEM  =========="
6997
6998 test_118h() {
6999         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7000         remote_ost_nodsh && skip "remote OST with nodsh" && return
7001
7002         reset_async
7003
7004         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7005         set_nodes_failloc "$(osts_nodes)" 0x20e
7006         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7007         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7008         RC=$?
7009
7010         set_nodes_failloc "$(osts_nodes)" 0
7011         if [[ $RC -eq 0 ]]; then
7012                 error "Must return error due to dropped pages, rc=$RC"
7013         fi
7014
7015         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7016         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7017         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache |
7018                     grep -c writeback)
7019         if [[ $LOCKED -ne 0 ]]; then
7020                 error "Locked pages remain in cache, locked=$LOCKED"
7021         fi
7022
7023         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7024                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7025         fi
7026
7027         rm -f $DIR/$tfile
7028         echo "No pages locked after fsync"
7029
7030         return 0
7031 }
7032 run_test 118h "Verify timeout in handling recoverables errors  =========="
7033
7034 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7035
7036 test_118i() {
7037         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7038         remote_ost_nodsh && skip "remote OST with nodsh" && return
7039
7040         reset_async
7041
7042         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7043         set_nodes_failloc "$(osts_nodes)" 0x20e
7044
7045         # Should simulate ENOMEM error which is recoverable and should be handled by timeout
7046         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c &
7047         PID=$!
7048         sleep 5
7049         set_nodes_failloc "$(osts_nodes)" 0
7050
7051         wait $PID
7052         RC=$?
7053         if [[ $RC -ne 0 ]]; then
7054                 error "got error, but should be not, rc=$RC"
7055         fi
7056
7057         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7058         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7059         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7060         if [[ $LOCKED -ne 0 ]]; then
7061                 error "Locked pages remain in cache, locked=$LOCKED"
7062         fi
7063
7064         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7065                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7066         fi
7067
7068         rm -f $DIR/$tfile
7069         echo "No pages locked after fsync"
7070
7071         return 0
7072 }
7073 run_test 118i "Fix error before timeout in recoverable error  =========="
7074
7075 [ "$SLOW" = "no" ] && set_resend_count 4
7076
7077 test_118j() {
7078         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7079         remote_ost_nodsh && skip "remote OST with nodsh" && return
7080
7081         reset_async
7082
7083         #define OBD_FAIL_OST_BRW_WRITE_BULK2     0x220
7084         set_nodes_failloc "$(osts_nodes)" 0x220
7085
7086         # return -EIO from OST
7087         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:O_SYNC:w4096c
7088         RC=$?
7089         set_nodes_failloc "$(osts_nodes)" 0x0
7090         if [[ $RC -eq 0 ]]; then
7091                 error "Must return error due to dropped pages, rc=$RC"
7092         fi
7093
7094         LOCKED=$(lctl get_param -n llite.*.dump_page_cache | grep -c locked)
7095         DIRTY=$(lctl get_param -n llite.*.dump_page_cache | grep -c dirty)
7096         WRITEBACK=$(lctl get_param -n llite.*.dump_page_cache | grep -c writeback)
7097         if [[ $LOCKED -ne 0 ]]; then
7098                 error "Locked pages remain in cache, locked=$LOCKED"
7099         fi
7100
7101         # in recoverable error on OST we want resend and stay until it finished
7102         if [[ $DIRTY -ne 0 || $WRITEBACK -ne 0 ]]; then
7103                 error "Dirty pages not flushed to disk, dirty=$DIRTY, writeback=$WRITEBACK"
7104         fi
7105
7106         rm -f $DIR/$tfile
7107         echo "No pages locked after fsync"
7108
7109         return 0
7110 }
7111 run_test 118j "Simulate unrecoverable OST side error =========="
7112
7113 test_118k()
7114 {
7115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7116         remote_ost_nodsh && skip "remote OSTs with nodsh" && return
7117
7118         #define OBD_FAIL_OST_BRW_WRITE_BULK      0x20e
7119         set_nodes_failloc "$(osts_nodes)" 0x20e
7120         test_mkdir -p $DIR/$tdir
7121
7122         for ((i=0;i<10;i++)); do
7123                 (dd if=/dev/zero of=$DIR/$tdir/$tfile-$i bs=1M count=10 || \
7124                         error "dd to $DIR/$tdir/$tfile-$i failed" )&
7125                 SLEEPPID=$!
7126                 sleep 0.500s
7127                 kill $SLEEPPID
7128                 wait $SLEEPPID
7129         done
7130
7131         set_nodes_failloc "$(osts_nodes)" 0
7132         rm -rf $DIR/$tdir
7133 }
7134 run_test 118k "bio alloc -ENOMEM and IO TERM handling ========="
7135
7136 test_118l()
7137 {
7138         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7139         # LU-646
7140         test_mkdir -p $DIR/$tdir
7141         $MULTIOP $DIR/$tdir Dy || error "fsync dir failed"
7142         rm -rf $DIR/$tdir
7143 }
7144 run_test 118l "fsync dir ========="
7145
7146 test_118m() # LU-3066
7147 {
7148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7149         test_mkdir -p $DIR/$tdir
7150         $MULTIOP $DIR/$tdir DY || error "fdatasync dir failed"
7151         rm -rf $DIR/$tdir
7152 }
7153 run_test 118m "fdatasync dir ========="
7154
7155 [ "$SLOW" = "no" ] && [ -n "$OLD_RESENDCOUNT" ] && set_resend_count $OLD_RESENDCOUNT
7156
7157 test_119a() # bug 11737
7158 {
7159         BSIZE=$((512 * 1024))
7160         directio write $DIR/$tfile 0 1 $BSIZE
7161         # We ask to read two blocks, which is more than a file size.
7162         # directio will indicate an error when requested and actual
7163         # sizes aren't equeal (a normal situation in this case) and
7164         # print actual read amount.
7165         NOB=`directio read $DIR/$tfile 0 2 $BSIZE | awk '/error/ {print $6}'`
7166         if [ "$NOB" != "$BSIZE" ]; then
7167                 error "read $NOB bytes instead of $BSIZE"
7168         fi
7169         rm -f $DIR/$tfile
7170 }
7171 run_test 119a "Short directIO read must return actual read amount"
7172
7173 test_119b() # bug 11737
7174 {
7175         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping 2-stripe test" && return
7176
7177         $SETSTRIPE -c 2 $DIR/$tfile || error "setstripe failed"
7178         dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 seek=1 || error "dd failed"
7179         sync
7180         $MULTIOP $DIR/$tfile oO_RDONLY:O_DIRECT:r$((2048 * 1024)) || \
7181                 error "direct read failed"
7182         rm -f $DIR/$tfile
7183 }
7184 run_test 119b "Sparse directIO read must return actual read amount"
7185
7186 test_119c() # bug 13099
7187 {
7188         BSIZE=1048576
7189         directio write $DIR/$tfile 3 1 $BSIZE || error "direct write failed"
7190         directio readhole $DIR/$tfile 0 2 $BSIZE || error "reading hole failed"
7191         rm -f $DIR/$tfile
7192 }
7193 run_test 119c "Testing for direct read hitting hole"
7194
7195 test_119d() # bug 15950
7196 {
7197         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7198         MAX_RPCS_IN_FLIGHT=`$LCTL get_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight`
7199         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight 1
7200         BSIZE=1048576
7201         $SETSTRIPE $DIR/$tfile -i 0 -c 1 || error "setstripe failed"
7202         $DIRECTIO write $DIR/$tfile 0 1 $BSIZE || error "first directio failed"
7203         #define OBD_FAIL_OSC_DIO_PAUSE           0x40d
7204         lctl set_param fail_loc=0x40d
7205         $DIRECTIO write $DIR/$tfile 1 4 $BSIZE &
7206         pid_dio=$!
7207         sleep 1
7208         cat $DIR/$tfile > /dev/null &
7209         lctl set_param fail_loc=0
7210         pid_reads=$!
7211         wait $pid_dio
7212         log "the DIO writes have completed, now wait for the reads (should not block very long)"
7213         sleep 2
7214         [ -n "`ps h -p $pid_reads -o comm`" ] && \
7215         error "the read rpcs have not completed in 2s"
7216         rm -f $DIR/$tfile
7217         $LCTL set_param -n osc.*OST0000-osc-[^mM]*.max_rpcs_in_flight $MAX_RPCS_IN_FLIGHT
7218 }
7219 run_test 119d "The DIO path should try to send a new rpc once one is completed"
7220
7221 test_120a() {
7222         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7223         test_mkdir -p $DIR/$tdir
7224         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7225                skip "no early lock cancel on server" && return 0
7226
7227         lru_resize_disable mdc
7228         lru_resize_disable osc
7229         cancel_lru_locks mdc
7230         # asynchronous object destroy at MDT could cause bl ast to client
7231         cancel_lru_locks osc
7232
7233         stat $DIR/$tdir > /dev/null
7234         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7235         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7236         test_mkdir $DIR/$tdir/d1
7237         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7238         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7239         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7240         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7241         lru_resize_enable mdc
7242         lru_resize_enable osc
7243 }
7244 run_test 120a "Early Lock Cancel: mkdir test"
7245
7246 test_120b() {
7247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7248         test_mkdir -p $DIR/$tdir
7249         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7250                skip "no early lock cancel on server" && return 0
7251         lru_resize_disable mdc
7252         lru_resize_disable osc
7253         cancel_lru_locks mdc
7254         stat $DIR/$tdir > /dev/null
7255         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7256         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7257         touch $DIR/$tdir/f1
7258         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7259         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7260         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7261         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7262         lru_resize_enable mdc
7263         lru_resize_enable osc
7264 }
7265 run_test 120b "Early Lock Cancel: create test"
7266
7267 test_120c() {
7268         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7269         test_mkdir -p $DIR/$tdir
7270         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7271                skip "no early lock cancel on server" && return 0
7272         lru_resize_disable mdc
7273         lru_resize_disable osc
7274         test_mkdir -p $DIR/$tdir/d1
7275         test_mkdir -p $DIR/$tdir/d2
7276         touch $DIR/$tdir/d1/f1
7277         cancel_lru_locks mdc
7278         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 > /dev/null
7279         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7280         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7281         ln $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7282         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7283         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7284         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7285         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7286         lru_resize_enable mdc
7287         lru_resize_enable osc
7288 }
7289 run_test 120c "Early Lock Cancel: link test"
7290
7291 test_120d() {
7292         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7293         test_mkdir -p $DIR/$tdir
7294         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7295                skip "no early lock cancel on server" && return 0
7296         lru_resize_disable mdc
7297         lru_resize_disable osc
7298         touch $DIR/$tdir
7299         cancel_lru_locks mdc
7300         stat $DIR/$tdir > /dev/null
7301         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7302         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7303         chmod a+x $DIR/$tdir
7304         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats | awk '/ldlm_cancel/ {print $2}'`
7305         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats | awk '/ldlm_bl_callback/ {print $2}'`
7306         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7307         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7308         lru_resize_enable mdc
7309         lru_resize_enable osc
7310 }
7311 run_test 120d "Early Lock Cancel: setattr test"
7312
7313 test_120e() {
7314         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7315         test_mkdir -p $DIR/$tdir
7316         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7317                skip "no early lock cancel on server" && return 0
7318         lru_resize_disable mdc
7319         lru_resize_disable osc
7320         dd if=/dev/zero of=$DIR/$tdir/f1 count=1
7321         cancel_lru_locks mdc
7322         cancel_lru_locks osc
7323         dd if=$DIR/$tdir/f1 of=/dev/null
7324         stat $DIR/$tdir $DIR/$tdir/f1 > /dev/null
7325         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7326               awk '/ldlm_cancel/ {print $2}'`
7327         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7328               awk '/ldlm_bl_callback/ {print $2}'`
7329         unlink $DIR/$tdir/f1
7330         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7331               awk '/ldlm_cancel/ {print $2}'`
7332         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7333               awk '/ldlm_bl_callback/ {print $2}'`
7334         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7335         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7336         lru_resize_enable mdc
7337         lru_resize_enable osc
7338 }
7339 run_test 120e "Early Lock Cancel: unlink test"
7340
7341 test_120f() {
7342         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7343         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7344                skip "no early lock cancel on server" && return 0
7345         test_mkdir -p $DIR/$tdir
7346         lru_resize_disable mdc
7347         lru_resize_disable osc
7348         test_mkdir -p $DIR/$tdir/d1
7349         test_mkdir -p $DIR/$tdir/d2
7350         dd if=/dev/zero of=$DIR/$tdir/d1/f1 count=1
7351         dd if=/dev/zero of=$DIR/$tdir/d2/f2 count=1
7352         cancel_lru_locks mdc
7353         cancel_lru_locks osc
7354         dd if=$DIR/$tdir/d1/f1 of=/dev/null
7355         dd if=$DIR/$tdir/d2/f2 of=/dev/null
7356         stat $DIR/$tdir/d1 $DIR/$tdir/d2 $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2 > /dev/null
7357         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7358               awk '/ldlm_cancel/ {print $2}'`
7359         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7360               awk '/ldlm_bl_callback/ {print $2}'`
7361         mv $DIR/$tdir/d1/f1 $DIR/$tdir/d2/f2
7362         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7363               awk '/ldlm_cancel/ {print $2}'`
7364         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7365               awk '/ldlm_bl_callback/ {print $2}'`
7366         [ $can1 -eq $can2 ] || error $((can2-can1)) "cancel RPC occured."
7367         [ $blk1 -eq $blk2 ] || error $((blk2-blk1)) "blocking RPC occured."
7368         lru_resize_enable mdc
7369         lru_resize_enable osc
7370 }
7371 run_test 120f "Early Lock Cancel: rename test"
7372
7373 test_120g() {
7374         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7375         [ -z "`lctl get_param -n mdc.*.connect_flags | grep early_lock_cancel`" ] && \
7376                skip "no early lock cancel on server" && return 0
7377         lru_resize_disable mdc
7378         lru_resize_disable osc
7379         count=10000
7380         echo create $count files
7381         test_mkdir -p $DIR/$tdir
7382         cancel_lru_locks mdc
7383         cancel_lru_locks osc
7384         t0=`date +%s`
7385
7386         can0=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7387               awk '/ldlm_cancel/ {print $2}'`
7388         blk0=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7389               awk '/ldlm_bl_callback/ {print $2}'`
7390         createmany -o $DIR/$tdir/f $count
7391         sync
7392         can1=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7393               awk '/ldlm_cancel/ {print $2}'`
7394         blk1=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7395               awk '/ldlm_bl_callback/ {print $2}'`
7396         t1=`date +%s`
7397         echo total: $((can1-can0)) cancels, $((blk1-blk0)) blockings
7398         echo rm $count files
7399         rm -r $DIR/$tdir
7400         sync
7401         can2=`lctl get_param -n ldlm.services.ldlm_canceld.stats |
7402               awk '/ldlm_cancel/ {print $2}'`
7403         blk2=`lctl get_param -n ldlm.services.ldlm_cbd.stats |
7404               awk '/ldlm_bl_callback/ {print $2}'`
7405         t2=`date +%s`
7406         echo total: $count removes in $((t2-t1))
7407         echo total: $((can2-can1)) cancels, $((blk2-blk1)) blockings
7408         sleep 2
7409         # wait for commitment of removal
7410         lru_resize_enable mdc
7411         lru_resize_enable osc
7412 }
7413 run_test 120g "Early Lock Cancel: performance test"
7414
7415 test_121() { #bug #10589
7416         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7417         rm -rf $DIR/$tfile
7418         writes=$(LANG=C dd if=/dev/zero of=$DIR/$tfile count=1 2>&1 | awk -F '+' '/out$/ {print $1}')
7419 #define OBD_FAIL_LDLM_CANCEL_RACE        0x310
7420         lctl set_param fail_loc=0x310
7421         cancel_lru_locks osc > /dev/null
7422         reads=$(LANG=C dd if=$DIR/$tfile of=/dev/null 2>&1 | awk -F '+' '/in$/ {print $1}')
7423         lctl set_param fail_loc=0
7424         [ "$reads" -eq "$writes" ] || error "read" $reads "blocks, must be" $writes
7425 }
7426 run_test 121 "read cancel race ========="
7427
7428 test_123a() { # was test 123, statahead(bug 11401)
7429         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7430         SLOWOK=0
7431         if [ -z "$(grep "processor.*: 1" /proc/cpuinfo)" ]; then
7432             log "testing on UP system. Performance may be not as good as expected."
7433                         SLOWOK=1
7434         fi
7435
7436         rm -rf $DIR/$tdir
7437         test_mkdir -p $DIR/$tdir
7438         NUMFREE=`df -i -P $DIR | tail -n 1 | awk '{ print $4 }'`
7439         [ $NUMFREE -gt 100000 ] && NUMFREE=100000 || NUMFREE=$((NUMFREE-1000))
7440         MULT=10
7441         for ((i=100, j=0; i<=$NUMFREE; j=$i, i=$((i * MULT)) )); do
7442                 createmany -o $DIR/$tdir/$tfile $j $((i - j))
7443
7444                 max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7445                 lctl set_param -n llite.*.statahead_max 0
7446                 lctl get_param llite.*.statahead_max
7447                 cancel_lru_locks mdc
7448                 cancel_lru_locks osc
7449                 stime=`date +%s`
7450                 time ls -l $DIR/$tdir | wc -l
7451                 etime=`date +%s`
7452                 delta=$((etime - stime))
7453                 log "ls $i files without statahead: $delta sec"
7454                 lctl set_param llite.*.statahead_max=$max
7455
7456                 swrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7457                 lctl get_param -n llite.*.statahead_max | grep '[0-9]'
7458                 cancel_lru_locks mdc
7459                 cancel_lru_locks osc
7460                 stime=`date +%s`
7461                 time ls -l $DIR/$tdir | wc -l
7462                 etime=`date +%s`
7463                 delta_sa=$((etime - stime))
7464                 log "ls $i files with statahead: $delta_sa sec"
7465                 lctl get_param -n llite.*.statahead_stats
7466                 ewrong=`lctl get_param -n llite.*.statahead_stats | grep "statahead wrong:" | awk '{print $3}'`
7467
7468                 [ $swrong -lt $ewrong ] && log "statahead was stopped, maybe too many locks held!"
7469                 [ $delta -eq 0 -o $delta_sa -eq 0 ] && continue
7470
7471                 if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7472                     max=`lctl get_param -n llite.*.statahead_max | head -n 1`
7473                     lctl set_param -n llite.*.statahead_max 0
7474                     lctl get_param llite.*.statahead_max
7475                     cancel_lru_locks mdc
7476                     cancel_lru_locks osc
7477                     stime=`date +%s`
7478                     time ls -l $DIR/$tdir | wc -l
7479                     etime=`date +%s`
7480                     delta=$((etime - stime))
7481                     log "ls $i files again without statahead: $delta sec"
7482                     lctl set_param llite.*.statahead_max=$max
7483                     if [ $((delta_sa * 100)) -gt $((delta * 105)) -a $delta_sa -gt $((delta + 2)) ]; then
7484                         if [  $SLOWOK -eq 0 ]; then
7485                                 error "ls $i files is slower with statahead!"
7486                         else
7487                                 log "ls $i files is slower with statahead!"
7488                         fi
7489                         break
7490                     fi
7491                 fi
7492
7493                 [ $delta -gt 20 ] && break
7494                 [ $delta -gt 8 ] && MULT=$((50 / delta))
7495                 [ "$SLOW" = "no" -a $delta -gt 5 ] && break
7496         done
7497         log "ls done"
7498
7499         stime=`date +%s`
7500         rm -r $DIR/$tdir
7501         sync
7502         etime=`date +%s`
7503         delta=$((etime - stime))
7504         log "rm -r $DIR/$tdir/: $delta seconds"
7505         log "rm done"
7506         lctl get_param -n llite.*.statahead_stats
7507 }
7508 run_test 123a "verify statahead work"
7509
7510 test_123b () { # statahead(bug 15027)
7511         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7512         test_mkdir -p $DIR/$tdir
7513         createmany -o $DIR/$tdir/$tfile-%d 1000
7514
7515         cancel_lru_locks mdc
7516         cancel_lru_locks osc
7517
7518 #define OBD_FAIL_MDC_GETATTR_ENQUEUE     0x803
7519         lctl set_param fail_loc=0x80000803
7520         ls -lR $DIR/$tdir > /dev/null
7521         log "ls done"
7522         lctl set_param fail_loc=0x0
7523         lctl get_param -n llite.*.statahead_stats
7524         rm -r $DIR/$tdir
7525         sync
7526
7527 }
7528 run_test 123b "not panic with network error in statahead enqueue (bug 15027)"
7529
7530 test_124a() {
7531         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7532         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7533                skip "no lru resize on server" && return 0
7534         local NR=2000
7535         test_mkdir -p $DIR/$tdir || error "failed to create $DIR/$tdir"
7536
7537         log "create $NR files at $DIR/$tdir"
7538         createmany -o $DIR/$tdir/f $NR ||
7539                 error "failed to create $NR files in $DIR/$tdir"
7540
7541         cancel_lru_locks mdc
7542         ls -l $DIR/$tdir > /dev/null
7543
7544         local NSDIR=""
7545         local LRU_SIZE=0
7546         for VALUE in `lctl get_param ldlm.namespaces.*mdc-*.lru_size`; do
7547                 local PARAM=`echo ${VALUE[0]} | cut -d "=" -f1`
7548                 LRU_SIZE=$(lctl get_param -n $PARAM)
7549                 if [ $LRU_SIZE -gt $(default_lru_size) ]; then
7550                         NSDIR=$(echo $PARAM | cut -d "." -f1-3)
7551                                                 log "NSDIR=$NSDIR"
7552                         log "NS=$(basename $NSDIR)"
7553                         break
7554                 fi
7555         done
7556
7557         if [ -z "$NSDIR" -o $LRU_SIZE -lt $(default_lru_size) ]; then
7558                 skip "Not enough cached locks created!"
7559                 return 0
7560         fi
7561         log "LRU=$LRU_SIZE"
7562
7563         local SLEEP=30
7564
7565         # We know that lru resize allows one client to hold $LIMIT locks
7566         # for 10h. After that locks begin to be killed by client.
7567         local MAX_HRS=10
7568         local LIMIT=`lctl get_param -n $NSDIR.pool.limit`
7569                 log "LIMIT=$LIMIT"
7570
7571         # Make LVF so higher that sleeping for $SLEEP is enough to _start_
7572         # killing locks. Some time was spent for creating locks. This means
7573         # that up to the moment of sleep finish we must have killed some of
7574         # them (10-100 locks). This depends on how fast ther were created.
7575         # Many of them were touched in almost the same moment and thus will
7576         # be killed in groups.
7577         local LVF=$(($MAX_HRS * 60 * 60 / $SLEEP * $LIMIT / $LRU_SIZE))
7578
7579         # Use $LRU_SIZE_B here to take into account real number of locks
7580         # created in the case of CMD, LRU_SIZE_B != $NR in most of cases
7581         local LRU_SIZE_B=$LRU_SIZE
7582         log "LVF=$LVF"
7583         local OLD_LVF=`lctl get_param -n $NSDIR.pool.lock_volume_factor`
7584                 log "OLD_LVF=$OLD_LVF"
7585         lctl set_param -n $NSDIR.pool.lock_volume_factor $LVF
7586
7587         # Let's make sure that we really have some margin. Client checks
7588         # cached locks every 10 sec.
7589         SLEEP=$((SLEEP+20))
7590         log "Sleep ${SLEEP} sec"
7591         local SEC=0
7592         while ((SEC<$SLEEP)); do
7593                 echo -n "..."
7594                 sleep 5
7595                 SEC=$((SEC+5))
7596                 LRU_SIZE=`lctl get_param -n $NSDIR/lru_size`
7597                 echo -n "$LRU_SIZE"
7598         done
7599         echo ""
7600         lctl set_param -n $NSDIR.pool.lock_volume_factor $OLD_LVF
7601         local LRU_SIZE_A=`lctl get_param -n $NSDIR.lru_size`
7602
7603         [ $LRU_SIZE_B -gt $LRU_SIZE_A ] || {
7604                 error "No locks dropped in ${SLEEP}s. LRU size: $LRU_SIZE_A"
7605                 unlinkmany $DIR/$tdir/f $NR
7606                 return
7607         }
7608
7609         log "Dropped "$((LRU_SIZE_B-LRU_SIZE_A))" locks in ${SLEEP}s"
7610         log "unlink $NR files at $DIR/$tdir"
7611         unlinkmany $DIR/$tdir/f $NR
7612 }
7613 run_test 124a "lru resize ======================================="
7614
7615 get_max_pool_limit()
7616 {
7617         local limit=`lctl get_param -n ldlm.namespaces.*-MDT0000-mdc-*.pool.limit`
7618         local max=0
7619         for l in $limit; do
7620                 if test $l -gt $max; then
7621                         max=$l
7622                 fi
7623         done
7624         echo $max
7625 }
7626
7627 test_124b() {
7628         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7629         [ -z "`lctl get_param -n mdc.*.connect_flags | grep lru_resize`" ] && \
7630                skip "no lru resize on server" && return 0
7631
7632         LIMIT=`get_max_pool_limit`
7633
7634         NR=$(($(default_lru_size)*20))
7635         if [ $NR -gt $LIMIT ]; then
7636                 log "Limit lock number by $LIMIT locks"
7637                 NR=$LIMIT
7638         fi
7639         lru_resize_disable mdc
7640         test_mkdir -p $DIR/$tdir/disable_lru_resize ||
7641                 error "failed to create $DIR/$tdir/disable_lru_resize"
7642
7643         createmany -o $DIR/$tdir/disable_lru_resize/f $NR
7644         log "doing ls -la $DIR/$tdir/disable_lru_resize 3 times"
7645         cancel_lru_locks mdc
7646         stime=`date +%s`
7647         PID=""
7648         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7649         PID="$PID $!"
7650         sleep 2
7651         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7652         PID="$PID $!"
7653         sleep 2
7654         ls -la $DIR/$tdir/disable_lru_resize > /dev/null &
7655         PID="$PID $!"
7656         wait $PID
7657         etime=`date +%s`
7658         nolruresize_delta=$((etime-stime))
7659         log "ls -la time: $nolruresize_delta seconds"
7660         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7661         unlinkmany $DIR/$tdir/disable_lru_resize/f $NR
7662
7663         lru_resize_enable mdc
7664         test_mkdir -p $DIR/$tdir/enable_lru_resize ||
7665                 error "failed to create $DIR/$tdir/enable_lru_resize"
7666
7667         createmany -o $DIR/$tdir/enable_lru_resize/f $NR
7668         log "doing ls -la $DIR/$tdir/enable_lru_resize 3 times"
7669         cancel_lru_locks mdc
7670         stime=`date +%s`
7671         PID=""
7672         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7673         PID="$PID $!"
7674         sleep 2
7675         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7676         PID="$PID $!"
7677         sleep 2
7678         ls -la $DIR/$tdir/enable_lru_resize > /dev/null &
7679         PID="$PID $!"
7680         wait $PID
7681         etime=`date +%s`
7682         lruresize_delta=$((etime-stime))
7683         log "ls -la time: $lruresize_delta seconds"
7684         log "lru_size = $(lctl get_param -n ldlm.namespaces.*mdc*.lru_size)"
7685
7686         if [ $lruresize_delta -gt $nolruresize_delta ]; then
7687                 log "ls -la is $(((lruresize_delta - $nolruresize_delta) * 100 / $nolruresize_delta))% slower with lru resize enabled"
7688         elif [ $nolruresize_delta -gt $lruresize_delta ]; then
7689                 log "ls -la is $(((nolruresize_delta - $lruresize_delta) * 100 / $nolruresize_delta))% faster with lru resize enabled"
7690         else
7691                 log "lru resize performs the same with no lru resize"
7692         fi
7693         unlinkmany $DIR/$tdir/enable_lru_resize/f $NR
7694 }
7695 run_test 124b "lru resize (performance test) ======================="
7696
7697 test_125() { # 13358
7698         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7699         [ -z "$(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl)" ] && skip "must have acl enabled" && return
7700         test_mkdir -p $DIR/d125 || error "mkdir failed"
7701         $SETSTRIPE -S 65536 -c -1 $DIR/d125 || error "setstripe failed"
7702         setfacl -R -m u:bin:rwx $DIR/d125 || error "setfacl $DIR/d125 failed"
7703         ls -ld $DIR/d125 || error "cannot access $DIR/d125"
7704 }
7705 run_test 125 "don't return EPROTO when a dir has a non-default striping and ACLs"
7706
7707 test_126() { # bug 12829/13455
7708         [ -z "$(lctl get_param -n llite.*.client_type | grep local)" ] && skip "must run as local client" && return
7709         [ "$UID" != 0 ] && skip_env "skipping $TESTNAME (must run as root)" && return
7710         $GSS && skip "must run as gss disabled" && return
7711
7712         $RUNAS -u 0 -g 1 touch $DIR/$tfile || error "touch failed"
7713         gid=`ls -n $DIR/$tfile | awk '{print $4}'`
7714         rm -f $DIR/$tfile
7715         [ $gid -eq "1" ] || error "gid is set to" $gid "instead of 1"
7716 }
7717 run_test 126 "check that the fsgid provided by the client is taken into account"
7718
7719 test_127a() { # bug 15521
7720         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7721         $SETSTRIPE -i 0 -c 1 $DIR/$tfile || error "setstripe failed"
7722         $LCTL set_param osc.*.stats=0
7723         FSIZE=$((2048 * 1024))
7724         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7725         cancel_lru_locks osc
7726         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE
7727
7728         $LCTL get_param osc.*0000-osc-*.stats | grep samples > $DIR/${tfile}.tmp
7729         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7730                 echo "got $COUNT $NAME"
7731                 [ ! $MIN ] && error "Missing min value for $NAME proc entry"
7732                 eval $NAME=$COUNT || error "Wrong proc format"
7733
7734                 case $NAME in
7735                         read_bytes|write_bytes)
7736                         [ $MIN -lt 4096 ] && error "min is too small: $MIN"
7737                         [ $MIN -gt $FSIZE ] && error "min is too big: $MIN"
7738                         [ $MAX -lt 4096 ] && error "max is too small: $MAX"
7739                         [ $MAX -gt $FSIZE ] && error "max is too big: $MAX"
7740                         [ $SUM -ne $FSIZE ] && error "sum is wrong: $SUM"
7741                         [ $SUMSQ -lt $(((FSIZE /4096) * (4096 * 4096))) ] &&
7742                                 error "sumsquare is too small: $SUMSQ"
7743                         [ $SUMSQ -gt $((FSIZE * FSIZE)) ] &&
7744                                 error "sumsquare is too big: $SUMSQ"
7745                         ;;
7746                         *) ;;
7747                 esac
7748         done < $DIR/${tfile}.tmp
7749
7750         #check that we actually got some stats
7751         [ "$read_bytes" ] || error "Missing read_bytes stats"
7752         [ "$write_bytes" ] || error "Missing write_bytes stats"
7753         [ "$read_bytes" != 0 ] || error "no read done"
7754         [ "$write_bytes" != 0 ] || error "no write done"
7755 }
7756 run_test 127a "verify the client stats are sane"
7757
7758 test_127b() { # bug LU-333
7759         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7760         $LCTL set_param llite.*.stats=0
7761         FSIZE=65536 # sized fixed to match PAGE_SIZE for most clients
7762         # perform 2 reads and writes so MAX is different from SUM.
7763         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7764         dd if=/dev/zero of=$DIR/$tfile bs=$FSIZE count=1
7765         cancel_lru_locks osc
7766         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7767         dd if=$DIR/$tfile of=/dev/null bs=$FSIZE count=1
7768
7769         $LCTL get_param llite.*.stats | grep samples > $TMP/${tfile}.tmp
7770         while read NAME COUNT SAMP UNIT MIN MAX SUM SUMSQ; do
7771                 echo "got $COUNT $NAME"
7772                 eval $NAME=$COUNT || error "Wrong proc format"
7773
7774         case $NAME in
7775                 read_bytes)
7776                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7777                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7778                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7779                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7780                         ;;
7781                 write_bytes)
7782                         [ $COUNT -ne 2 ] && error "count is not 2: $COUNT"
7783                         [ $MIN -ne $FSIZE ] && error "min is not $FSIZE: $MIN"
7784                         [ $MAX -ne $FSIZE ] && error "max is incorrect: $MAX"
7785                         [ $SUM -ne $((FSIZE * 2)) ] && error "sum is wrong: $SUM"
7786                         ;;
7787                         *) ;;
7788                 esac
7789         done < $TMP/${tfile}.tmp
7790
7791         #check that we actually got some stats
7792         [ "$read_bytes" ] || error "Missing read_bytes stats"
7793         [ "$write_bytes" ] || error "Missing write_bytes stats"
7794         [ "$read_bytes" != 0 ] || error "no read done"
7795         [ "$write_bytes" != 0 ] || error "no write done"
7796 }
7797 run_test 127b "verify the llite client stats are sane"
7798
7799 test_128() { # bug 15212
7800         touch $DIR/$tfile
7801         $LFS 2>&1 <<-EOF | tee $TMP/$tfile.log
7802                 find $DIR/$tfile
7803                 find $DIR/$tfile
7804         EOF
7805
7806         result=$(grep error $TMP/$tfile.log)
7807         rm -f $DIR/$tfile
7808         [ -z "$result" ] || error "consecutive find's under interactive lfs failed"
7809 }
7810 run_test 128 "interactive lfs for 2 consecutive find's"
7811
7812 set_dir_limits () {
7813         local mntdev
7814         local canondev
7815         local node
7816
7817         local LDPROC=/proc/fs/ldiskfs
7818         local facets=$(get_facets MDS)
7819
7820         for facet in ${facets//,/ }; do
7821                 canondev=$(ldiskfs_canon \
7822                            *.$(convert_facet2label $facet).mntdev $facet)
7823                 do_facet $facet "test -e $LDPROC/$canondev/max_dir_size" ||
7824                                                 LDPROC=/sys/fs/ldiskfs
7825                 do_facet $facet "echo $1 >$LDPROC/$canondev/max_dir_size"
7826         done
7827 }
7828
7829 test_129() {
7830         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
7831         if [ "$(facet_fstype $SINGLEMDS)" != ldiskfs ]; then
7832                 skip "Only applicable to ldiskfs-based MDTs"
7833                 return
7834         fi
7835         remote_mds_nodsh && skip "remote MDS with nodsh" && return
7836
7837         ENOSPC=28
7838         EFBIG=27
7839
7840         test_mkdir -p $DIR/$tdir
7841
7842         MAX=$(stat -c%s "$DIR/$tdir")
7843         set_dir_limits $MAX
7844         local I=0
7845         local J=0
7846         while [ ! $I -gt $MAX ]; do
7847                 $MULTIOP $DIR/$tdir/$J Oc
7848                 rc=$?
7849                 #check two errors ENOSPC for new version of ext4 max_dir_size patch
7850                 #mainline kernel commit df981d03eeff7971ac7e6ff37000bfa702327ef1
7851                 #and EFBIG for previous versions
7852                 if [ $rc -eq $EFBIG -o $rc -eq $ENOSPC ] && [ $I -gt 0 ]; then
7853                         set_dir_limits 0
7854                         echo "return code $rc received as expected"
7855                         multiop $DIR/$tdir/$J Oc
7856                         rc=$?
7857                         I=$(stat -c%s "$DIR/$tdir")
7858                         if [ $I -gt $MAX ] && [ $rc -eq 0 ]; then
7859                                 return 0
7860                         else
7861                                 error_exit "return code $rc current dir size $I " \
7862                                            "previous limit $MAX"
7863                         fi
7864                 elif [ $rc -ne 0 ]; then
7865                         set_dir_limits 0
7866                         error_exit "return code $rc received instead of expected " \
7867                                    "$EFBIG or $ENOSPC, files in dir $I"
7868                 fi
7869                 J=$((J+1))
7870                 I=$(stat -c%s "$DIR/$tdir")
7871         done
7872
7873         set_dir_limits 0
7874         error "exceeded dir size limit $MAX x $MDSCOUNT $MAX : $I bytes"
7875 }
7876 run_test 129 "test directory size limit ========================"
7877
7878 OLDIFS="$IFS"
7879 cleanup_130() {
7880         trap 0
7881         IFS="$OLDIFS"
7882 }
7883
7884 test_130a() {
7885         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7886         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7887                 return
7888
7889         trap cleanup_130 EXIT RETURN
7890
7891         local fm_file=$DIR/$tfile
7892         $SETSTRIPE -S 65536 -c 1 $fm_file || error "setstripe on $fm_file"
7893         dd if=/dev/zero of=$fm_file bs=65536 count=1 ||
7894                 error "dd failed for $fm_file"
7895
7896         # LU-1795: test filefrag/FIEMAP once, even if unsupported
7897         filefrag -ves $fm_file
7898         RC=$?
7899         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7900                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7901         [ $RC != 0 ] && error "filefrag $fm_file failed"
7902
7903         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7904                       grep -v "ext:" | grep -v "found")
7905         lun=$($GETSTRIPE -i $fm_file)
7906
7907         start_blk=`echo $filefrag_op | cut -d: -f2 | cut -d. -f1`
7908         IFS=$'\n'
7909         tot_len=0
7910         for line in $filefrag_op
7911         do
7912                 frag_lun=`echo $line | cut -d: -f5`
7913                 ext_len=`echo $line | cut -d: -f4`
7914                 if (( $frag_lun != $lun )); then
7915                         cleanup_130
7916                         error "FIEMAP on 1-stripe file($fm_file) failed"
7917                         return
7918                 fi
7919                 (( tot_len += ext_len ))
7920         done
7921
7922         if (( lun != frag_lun || start_blk != 0 || tot_len != 64 )); then
7923                 cleanup_130
7924                 error "FIEMAP on 1-stripe file($fm_file) failed;"
7925                 return
7926         fi
7927
7928         cleanup_130
7929
7930         echo "FIEMAP on single striped file succeeded"
7931 }
7932 run_test 130a "FIEMAP (1-stripe file)"
7933
7934 test_130b() {
7935         [ "$OSTCOUNT" -lt "2" ] &&
7936                 skip_env "skipping FIEMAP on 2-stripe file test" && return
7937
7938         [ "$OSTCOUNT" -ge "10" ] &&
7939                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7940
7941         local filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
7942         [ -n "$filefrag_op" ] && skip_env "filefrag does not support FIEMAP" &&
7943                 return
7944
7945         trap cleanup_130 EXIT RETURN
7946
7947         local fm_file=$DIR/$tfile
7948         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
7949         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
7950                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
7951
7952         dd if=/dev/zero of=$fm_file bs=1M count=2 ||
7953                 error "dd failed on $fm_file"
7954
7955         filefrag -ves $fm_file || error "filefrag $fm_file failed"
7956         filefrag_op=$(filefrag -ve $fm_file | grep -A 100 "ext:" |
7957                       grep -v "ext:" | grep -v "found")
7958
7959         last_lun=$(echo $filefrag_op | cut -d: -f5)
7960
7961         IFS=$'\n'
7962         tot_len=0
7963         num_luns=1
7964         for line in $filefrag_op
7965         do
7966                 frag_lun=`echo $line | cut -d: -f5`
7967                 ext_len=`echo $line | cut -d: -f4`
7968                 if (( $frag_lun != $last_lun )); then
7969                         if (( tot_len != 1024 )); then
7970                                 cleanup_130
7971                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 256"
7972                                 return
7973                         else
7974                                 (( num_luns += 1 ))
7975                                 tot_len=0
7976                         fi
7977                 fi
7978                 (( tot_len += ext_len ))
7979                 last_lun=$frag_lun
7980         done
7981         if (( num_luns != 2 || tot_len != 1024 )); then
7982                 cleanup_130
7983                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
7984                 return
7985         fi
7986
7987         cleanup_130
7988
7989         echo "FIEMAP on 2-stripe file succeeded"
7990 }
7991 run_test 130b "FIEMAP (2-stripe file)"
7992
7993 test_130c() {
7994         [ "$OSTCOUNT" -lt "2" ] &&
7995                 skip_env "skipping FIEMAP on 2-stripe file" && return
7996
7997         [ "$OSTCOUNT" -ge "10" ] &&
7998                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
7999
8000         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8001         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" &&
8002                 return
8003
8004         trap cleanup_130 EXIT RETURN
8005
8006         local fm_file=$DIR/$tfile
8007         $SETSTRIPE -S 65536 -c 2 $fm_file || error "setstripe on $fm_file"
8008         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8009                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8010
8011         dd if=/dev/zero of=$fm_file seek=1 bs=1M count=1 || error "dd failed on $fm_file"
8012
8013         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8014         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" | grep -v "ext:" | grep -v "found"`
8015
8016         last_lun=`echo $filefrag_op | cut -d: -f5`
8017
8018         IFS=$'\n'
8019         tot_len=0
8020         num_luns=1
8021         for line in $filefrag_op
8022         do
8023                 frag_lun=`echo $line | cut -d: -f5`
8024                 ext_len=`echo $line | cut -d: -f4`
8025                 if (( $frag_lun != $last_lun )); then
8026                         logical=`echo $line | cut -d: -f2 | cut -d. -f1`
8027                         if (( logical != 512 )); then
8028                                 cleanup_130
8029                                 error "FIEMAP on $fm_file failed; returned logical start for lun $logical instead of 512"
8030                                 return
8031                         fi
8032                         if (( tot_len != 512 )); then
8033                                 cleanup_130
8034                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8035                                 return
8036                         else
8037                                 (( num_luns += 1 ))
8038                                 tot_len=0
8039                         fi
8040                 fi
8041                 (( tot_len += ext_len ))
8042                 last_lun=$frag_lun
8043         done
8044         if (( num_luns != 2 || tot_len != 512 )); then
8045                 cleanup_130
8046                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8047                 return
8048         fi
8049
8050         cleanup_130
8051
8052         echo "FIEMAP on 2-stripe file with hole succeeded"
8053 }
8054 run_test 130c "FIEMAP (2-stripe file with hole)"
8055
8056 test_130d() {
8057         [ "$OSTCOUNT" -lt "3" ] && skip_env "skipping FIEMAP on N-stripe file test" && return
8058
8059         [ "$OSTCOUNT" -ge "10" ] &&
8060                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8061
8062         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8063         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8064
8065         trap cleanup_130 EXIT RETURN
8066
8067         local fm_file=$DIR/$tfile
8068         $SETSTRIPE -S 65536 -c $OSTCOUNT $fm_file||error "setstripe on $fm_file"
8069         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8070                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8071
8072         local actual_stripecnt=$($GETSTRIPE -c $fm_file)
8073         dd if=/dev/zero of=$fm_file bs=1M count=$actual_stripecnt ||
8074                 error "dd failed on $fm_file"
8075
8076         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8077         filefrag_op=`filefrag -ve $fm_file | grep -A 100 "ext:" |
8078                 grep -v "ext:" | grep -v "found"`
8079
8080         last_lun=`echo $filefrag_op | cut -d: -f5`
8081
8082         IFS=$'\n'
8083         tot_len=0
8084         num_luns=1
8085         for line in $filefrag_op
8086         do
8087                 frag_lun=`echo $line | cut -d: -f5`
8088                 ext_len=`echo $line | cut -d: -f4`
8089                 if (( $frag_lun != $last_lun )); then
8090                         if (( tot_len != 1024 )); then
8091                                 cleanup_130
8092                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of 1024"
8093                                 return
8094                         else
8095                                 (( num_luns += 1 ))
8096                                 tot_len=0
8097                         fi
8098                 fi
8099                 (( tot_len += ext_len ))
8100                 last_lun=$frag_lun
8101         done
8102         if (( num_luns != actual_stripecnt || tot_len != 1024 )); then
8103                 cleanup_130
8104                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8105                 return
8106         fi
8107
8108         cleanup_130
8109
8110         echo "FIEMAP on N-stripe file succeeded"
8111 }
8112 run_test 130d "FIEMAP (N-stripe file)"
8113
8114 test_130e() {
8115         [ "$OSTCOUNT" -lt "2" ] && skip_env "skipping continuation FIEMAP test" && return
8116
8117         [ "$OSTCOUNT" -ge "10" ] &&
8118                 skip_env "skipping FIEMAP with >= 10 OSTs" && return
8119
8120         filefrag_op=$(filefrag -e 2>&1 | grep "invalid option")
8121         [ -n "$filefrag_op" ] && skip "filefrag does not support FIEMAP" && return
8122
8123         trap cleanup_130 EXIT RETURN
8124
8125         local fm_file=$DIR/$tfile
8126         $SETSTRIPE -S 131072 -c 2 $fm_file || error "setstripe on $fm_file"
8127         [ "$(facet_fstype ost$(($($GETSTRIPE -i $fm_file) + 1)))" = "zfs" ] &&
8128                 skip "ORI-366/LU-1941: FIEMAP unimplemented on ZFS" && return
8129
8130         NUM_BLKS=512
8131         EXPECTED_LEN=$(( (NUM_BLKS / 2) * 64 ))
8132         for ((i = 0; i < $NUM_BLKS; i++))
8133         do
8134                 dd if=/dev/zero of=$fm_file count=1 bs=64k seek=$((2*$i)) conv=notrunc > /dev/null 2>&1
8135         done
8136
8137         filefrag -ves $fm_file || error "filefrag $fm_file failed"
8138         filefrag_op=`filefrag -ve $fm_file | grep -A 12000 "ext:" | grep -v "ext:" | grep -v "found"`
8139
8140         last_lun=`echo $filefrag_op | cut -d: -f5`
8141
8142         IFS=$'\n'
8143         tot_len=0
8144         num_luns=1
8145         for line in $filefrag_op
8146         do
8147                 frag_lun=`echo $line | cut -d: -f5`
8148                 ext_len=`echo $line | cut -d: -f4`
8149                 if (( $frag_lun != $last_lun )); then
8150                         if (( tot_len != $EXPECTED_LEN )); then
8151                                 cleanup_130
8152                                 error "FIEMAP on $fm_file failed; returned len $tot_len for OST $last_lun instead of $EXPECTED_LEN"
8153                                 return
8154                         else
8155                                 (( num_luns += 1 ))
8156                                 tot_len=0
8157                         fi
8158                 fi
8159                 (( tot_len += ext_len ))
8160                 last_lun=$frag_lun
8161         done
8162         if (( num_luns != 2 || tot_len != $EXPECTED_LEN )); then
8163                 cleanup_130
8164                 error "FIEMAP on $fm_file failed; returned wrong number of luns or wrong len for OST $last_lun"
8165                 return
8166         fi
8167
8168         cleanup_130
8169
8170         echo "FIEMAP with continuation calls succeeded"
8171 }
8172 run_test 130e "FIEMAP (test continuation FIEMAP calls)"
8173
8174 # Test for writev/readv
8175 test_131a() {
8176         rwv -f $DIR/$tfile -w -n 3 524288 1048576 1572864 || \
8177         error "writev test failed"
8178         rwv -f $DIR/$tfile -r -v -n 2 1572864 1048576 || \
8179         error "readv failed"
8180         rm -f $DIR/$tfile
8181 }
8182 run_test 131a "test iov's crossing stripe boundary for writev/readv"
8183
8184 test_131b() {
8185         rwv -f $DIR/$tfile -w -a -n 3 524288 1048576 1572864 || \
8186         error "append writev test failed"
8187         rwv -f $DIR/$tfile -w -a -n 2 1572864 1048576 || \
8188         error "append writev test failed"
8189         rm -f $DIR/$tfile
8190 }
8191 run_test 131b "test append writev"
8192
8193 test_131c() {
8194         rwv -f $DIR/$tfile -w -d -n 1 1048576 || return 0
8195         error "NOT PASS"
8196 }
8197 run_test 131c "test read/write on file w/o objects"
8198
8199 test_131d() {
8200         rwv -f $DIR/$tfile -w -n 1 1572864
8201         NOB=`rwv -f $DIR/$tfile -r -n 3 524288 524288 1048576 | awk '/error/ {print $6}'`
8202         if [ "$NOB" != 1572864 ]; then
8203                 error "Short read filed: read $NOB bytes instead of 1572864"
8204         fi
8205         rm -f $DIR/$tfile
8206 }
8207 run_test 131d "test short read"
8208
8209 test_131e() {
8210         rwv -f $DIR/$tfile -w -s 1048576 -n 1 1048576
8211         rwv -f $DIR/$tfile -r -z -s 0 -n 1 524288 || \
8212         error "read hitting hole failed"
8213         rm -f $DIR/$tfile
8214 }
8215 run_test 131e "test read hitting hole"
8216
8217 get_ost_param() {
8218         local token=$1
8219         local gl_sum=0
8220         for node in $(osts_nodes); do
8221                 gl=$(do_node $node "$LCTL get_param -n ost.OSS.ost.stats" | awk '/'$token'/ {print $2}' | head -n 1)
8222                 [ x$gl = x"" ] && gl=0
8223                 gl_sum=$((gl_sum + gl))
8224         done
8225         echo $gl_sum
8226 }
8227
8228 som_mode_switch() {
8229         local som=$1
8230         local gl1=$2
8231         local gl2=$3
8232
8233         if [ x$som = x"enabled" ]; then
8234                 [ $((gl2 - gl1)) -gt 0 ] && error "no glimpse RPC is expected"
8235                 MOUNTOPT=`echo $MOUNTOPT | sed 's/som_preview//g'`
8236                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=disabled"
8237         else
8238                 [ $((gl2 - gl1)) -gt 0 ] || error "some glimpse RPC is expected"
8239                 MOUNTOPT="$MOUNTOPT,som_preview"
8240                 do_facet mgs "$LCTL conf_param $FSNAME.mdt.som=enabled"
8241         fi
8242
8243         # do remount to make new mount-conf parameters actual
8244         echo remounting...
8245         sync
8246         stopall
8247         setupall
8248 }
8249
8250 test_132() { #1028, SOM
8251         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8252         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8253         local num=$(get_mds_dir $DIR)
8254         local mymds=mds${num}
8255         local MOUNTOPT_SAVE=$MOUNTOPT
8256
8257         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8258         cancel_lru_locks osc
8259
8260         som1=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8261
8262         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8263         stat $DIR/$tfile >/dev/null
8264         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8265         echo "====> SOM is "$som1", "$((gl2 - gl1))" glimpse RPC occured"
8266         rm $DIR/$tfile
8267         som_mode_switch $som1 $gl1 $gl2
8268
8269         dd if=/dev/zero of=$DIR/$tfile count=1 2>/dev/null
8270         cancel_lru_locks osc
8271
8272         som2=$(do_facet $mymds "$LCTL get_param mdt.*.som" |  awk -F= ' {print $2}' | head -n 1)
8273         if [ $som1 == $som2 ]; then
8274             error "som is still "$som2
8275             if [ x$som2 = x"enabled" ]; then
8276                 som2="disabled"
8277             else
8278                 som2="enabled"
8279             fi
8280         fi
8281
8282         gl1=$(get_ost_param "ldlm_glimpse_enqueue")
8283         stat $DIR/$tfile >/dev/null
8284         gl2=$(get_ost_param "ldlm_glimpse_enqueue")
8285         echo "====> SOM is "$som2", "$((gl2 - gl1))" glimpse RPC occured"
8286         som_mode_switch $som2 $gl1 $gl2
8287         MOUNTOPT=$MOUNTOPT_SAVE
8288 }
8289 run_test 132 "som avoids glimpse rpc"
8290
8291 check_stats() {
8292         local res
8293         local count
8294         case $1 in
8295         $SINGLEMDS) res=`do_facet $SINGLEMDS $LCTL get_param mdt.$FSNAME-MDT0000.md_stats | grep "$2"`
8296                  ;;
8297         ost) res=`do_facet ost1 $LCTL get_param obdfilter.$FSNAME-OST0000.stats | grep "$2"`
8298                  ;;
8299         *) error "Wrong argument $1" ;;
8300         esac
8301         echo $res
8302         count=`echo $res | awk '{print $2}'`
8303         [ -z "$res" ] && error "The counter for $2 on $1 was not incremented"
8304         # if the argument $3 is zero, it means any stat increment is ok.
8305         if [ $3 -gt 0 ] ; then
8306                 [ $count -ne $3 ] && error "The $2 counter on $1 is wrong - expected $3"
8307         fi
8308 }
8309
8310 test_133a() {
8311         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8312         remote_ost_nodsh && skip "remote OST with nodsh" && return
8313         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8314
8315         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8316                 { skip "MDS doesn't support rename stats"; return; }
8317         local testdir=$DIR/${tdir}/stats_testdir
8318         mkdir -p $DIR/${tdir}
8319
8320         # clear stats.
8321         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8322         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8323
8324         # verify mdt stats first.
8325         mkdir ${testdir} || error "mkdir failed"
8326         check_stats $SINGLEMDS "mkdir" 1
8327         touch ${testdir}/${tfile} || "touch failed"
8328         check_stats $SINGLEMDS "open" 1
8329         check_stats $SINGLEMDS "close" 1
8330         mknod ${testdir}/${tfile}-pipe p || "mknod failed"
8331         check_stats $SINGLEMDS "mknod" 1
8332         rm -f ${testdir}/${tfile}-pipe || "pipe remove failed"
8333         check_stats $SINGLEMDS "unlink" 1
8334         rm -f ${testdir}/${tfile} || error "file remove failed"
8335         check_stats $SINGLEMDS "unlink" 2
8336
8337         # remove working dir and check mdt stats again.
8338         rmdir ${testdir} || error "rmdir failed"
8339         check_stats $SINGLEMDS "rmdir" 1
8340
8341         local testdir1=$DIR/${tdir}/stats_testdir1
8342         mkdir -p ${testdir}
8343         mkdir -p ${testdir1}
8344         touch ${testdir1}/test1
8345         mv ${testdir1}/test1 ${testdir} || error "file crossdir rename"
8346         check_stats $SINGLEMDS "crossdir_rename" 1
8347
8348         mv ${testdir}/test1 ${testdir}/test0 || error "file samedir rename"
8349         check_stats $SINGLEMDS "samedir_rename" 1
8350
8351         rm -rf $DIR/${tdir}
8352 }
8353 run_test 133a "Verifying MDT stats ========================================"
8354
8355 test_133b() {
8356         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8357         remote_ost_nodsh && skip "remote OST with nodsh" && return
8358         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8359         local testdir=$DIR/${tdir}/stats_testdir
8360         mkdir -p ${testdir} || error "mkdir failed"
8361         touch ${testdir}/${tfile} || "touch failed"
8362         cancel_lru_locks mdc
8363
8364         # clear stats.
8365         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8366         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8367
8368         # extra mdt stats verification.
8369         chmod 444 ${testdir}/${tfile} || error "chmod failed"
8370         check_stats $SINGLEMDS "setattr" 1
8371         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8372         if [ $(lustre_version_code $SINGLEMDS) -ne $(version_code 2.2.0) ]
8373         then            # LU-1740
8374                 ls -l ${testdir}/${tfile} > /dev/null|| error "ls failed"
8375                 check_stats $SINGLEMDS "getattr" 1
8376         fi
8377         $LFS df || error "lfs failed"
8378         check_stats $SINGLEMDS "statfs" 1
8379
8380         rm -rf $DIR/${tdir}
8381 }
8382 run_test 133b "Verifying extra MDT stats =================================="
8383
8384 test_133c() {
8385         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8386         remote_ost_nodsh && skip "remote OST with nodsh" && return
8387         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8388         local testdir=$DIR/${tdir}/stats_testdir
8389         test_mkdir -p ${testdir} || error "mkdir failed"
8390
8391         # verify obdfilter stats.
8392         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8393         sync
8394         cancel_lru_locks osc
8395         wait_delete_completed
8396
8397         # clear stats.
8398         do_facet $SINGLEMDS $LCTL set_param mdt.*.md_stats=clear
8399         do_facet ost1 $LCTL set_param obdfilter.*.stats=clear
8400
8401         dd if=/dev/zero of=${testdir}/${tfile} conv=notrunc bs=512k count=1 || error "dd failed"
8402         sync
8403         cancel_lru_locks osc
8404         check_stats ost "write" 1
8405
8406         dd if=${testdir}/${tfile} of=/dev/null bs=1k count=1 || error "dd failed"
8407         check_stats ost "read" 1
8408
8409         > ${testdir}/${tfile} || error "truncate failed"
8410         check_stats ost "punch" 1
8411
8412         rm -f ${testdir}/${tfile} || error "file remove failed"
8413         wait_delete_completed
8414         check_stats ost "destroy" 1
8415
8416         rm -rf $DIR/${tdir}
8417 }
8418 run_test 133c "Verifying OST stats ========================================"
8419
8420 order_2() {
8421     local value=$1
8422     local orig=$value
8423     local order=1
8424
8425     while [ $value -ge 2 ]; do
8426         order=$((order*2))
8427         value=$((value/2))
8428     done
8429
8430     if [ $orig -gt $order ]; then
8431         order=$((order*2))
8432     fi
8433     echo $order
8434 }
8435
8436 size_in_KMGT() {
8437     local value=$1
8438     local size=('K' 'M' 'G' 'T');
8439     local i=0
8440     local size_string=$value
8441
8442     while [ $value -ge 1024 ]; do
8443         if [ $i -gt 3 ]; then
8444             #T is the biggest unit we get here, if that is bigger,
8445             #just return XXXT
8446             size_string=${value}T
8447             break
8448         fi
8449         value=$((value >> 10))
8450         if [ $value -lt 1024 ]; then
8451             size_string=${value}${size[$i]}
8452             break
8453         fi
8454         i=$((i + 1))
8455     done
8456
8457     echo $size_string
8458 }
8459
8460 get_rename_size() {
8461     local size=$1
8462     local context=${2:-.}
8463     local sample=$(do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats |
8464                 grep -A1 $context |
8465                 awk '/ '${size}'/ {print $4}' | sed -e "s/,//g")
8466     echo $sample
8467 }
8468
8469 test_133d() {
8470         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8471         remote_ost_nodsh && skip "remote OST with nodsh" && return
8472         remote_mds_nodsh && skip "remote MDS with nodsh" && return
8473         do_facet $SINGLEMDS $LCTL list_param mdt.*.rename_stats ||
8474         { skip "MDS doesn't support rename stats"; return; }
8475
8476         local testdir1=$DIR/${tdir}/stats_testdir1
8477         local testdir2=$DIR/${tdir}/stats_testdir2
8478
8479         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8480
8481         mkdir -p ${testdir1} || error "mkdir failed"
8482         mkdir -p ${testdir2} || error "mkdir failed"
8483
8484         createmany -o $testdir1/test 512 || error "createmany failed"
8485
8486         # check samedir rename size
8487         mv ${testdir1}/test0 ${testdir1}/test_0
8488
8489         local testdir1_size=$(ls -l $DIR/${tdir} |
8490                 awk '/stats_testdir1/ {print $5}')
8491         local testdir2_size=$(ls -l $DIR/${tdir} |
8492                 awk '/stats_testdir2/ {print $5}')
8493
8494         testdir1_size=$(order_2 $testdir1_size)
8495         testdir2_size=$(order_2 $testdir2_size)
8496
8497         testdir1_size=$(size_in_KMGT $testdir1_size)
8498         testdir2_size=$(size_in_KMGT $testdir2_size)
8499
8500         echo "source rename dir size: ${testdir1_size}"
8501         echo "target rename dir size: ${testdir2_size}"
8502
8503         local cmd="do_facet $SINGLEMDS $LCTL get_param mdt.*.rename_stats"
8504         eval $cmd || error "$cmd failed"
8505         local samedir=$($cmd | grep 'same_dir')
8506         local same_sample=$(get_rename_size $testdir1_size)
8507         [ -z "$samedir" ] && error "samedir_rename_size count error"
8508         [ "$same_sample" -eq 1 ] || error "samedir_rename_size error $same_sample"
8509         echo "Check same dir rename stats success"
8510
8511         do_facet $SINGLEMDS $LCTL set_param mdt.*.rename_stats=clear
8512
8513         # check crossdir rename size
8514         mv ${testdir1}/test_0 ${testdir2}/test_0
8515
8516         testdir1_size=$(ls -l $DIR/${tdir} |
8517                 awk '/stats_testdir1/ {print $5}')
8518         testdir2_size=$(ls -l $DIR/${tdir} |
8519                 awk '/stats_testdir2/ {print $5}')
8520
8521         testdir1_size=$(order_2 $testdir1_size)
8522         testdir2_size=$(order_2 $testdir2_size)
8523
8524         testdir1_size=$(size_in_KMGT $testdir1_size)
8525         testdir2_size=$(size_in_KMGT $testdir2_size)
8526
8527         echo "source rename dir size: ${testdir1_size}"
8528         echo "target rename dir size: ${testdir2_size}"
8529
8530         eval $cmd || error "$cmd failed"
8531         local crossdir=$($cmd | grep 'crossdir')
8532         local src_sample=$(get_rename_size $testdir1_size crossdir_src)
8533         local tgt_sample=$(get_rename_size $testdir2_size crossdir_tgt)
8534         [ -z "$crossdir" ] && error "crossdir_rename_size count error"
8535         [ "$src_sample" -eq 1 ] || error "crossdir_rename_size error $src_sample"
8536         [ "$tgt_sample" -eq 1 ] || error "crossdir_rename_size error $tgt_sample"
8537         echo "Check cross dir rename stats success"
8538         rm -rf $DIR/${tdir}
8539 }
8540 run_test 133d "Verifying rename_stats ========================================"
8541
8542 test_133e() {
8543         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8544         local testdir=$DIR/${tdir}/stats_testdir
8545         local ctr f0 f1 bs=32768 count=42 sum
8546
8547         remote_ost_nodsh && skip "remote OST with nodsh" && return
8548         mkdir -p ${testdir} || error "mkdir failed"
8549
8550         $SETSTRIPE -c 1 -i 0 ${testdir}/${tfile}
8551
8552         for ctr in {write,read}_bytes; do
8553                 sync
8554                 cancel_lru_locks osc
8555
8556                 do_facet ost1 $LCTL set_param -n \
8557                         "obdfilter.*.exports.clear=clear"
8558
8559                 if [ $ctr = write_bytes ]; then
8560                         f0=/dev/zero
8561                         f1=${testdir}/${tfile}
8562                 else
8563                         f0=${testdir}/${tfile}
8564                         f1=/dev/null
8565                 fi
8566
8567                 dd if=$f0 of=$f1 conv=notrunc bs=$bs count=$count || \
8568                         error "dd failed"
8569                 sync
8570                 cancel_lru_locks osc
8571
8572                 sum=$(do_facet ost1 $LCTL get_param \
8573                                 "obdfilter.*.exports.*.stats" | \
8574                           awk -v ctr=$ctr '\
8575                                 BEGIN { sum = 0 }
8576                                 $1 == ctr { sum += $7 }
8577                                 END { print sum }')
8578
8579                 if ((sum != bs * count)); then
8580                         error "Bad $ctr sum, expected $((bs * count)), got $sum"
8581                 fi
8582         done
8583
8584         rm -rf $DIR/${tdir}
8585 }
8586 run_test 133e "Verifying OST {read,write}_bytes nid stats ================="
8587
8588 test_133f() {
8589         local proc_dirs="/proc/fs/lustre/ /proc/sys/lnet/ /proc/sys/lustre/"
8590         local facet
8591
8592         # First without trusting modes.
8593         find $proc_dirs \
8594                 -exec cat '{}' \; &> /dev/null
8595
8596         # Second verifying readability.
8597         find $proc_dirs \
8598                 -type f \
8599                 -readable \
8600                 -exec cat '{}' \; > /dev/null ||
8601                         error "proc file read failed"
8602
8603         for facet in $SINGLEMDS ost1; do
8604                 do_facet $facet find $proc_dirs \
8605                         -not -name req_history \
8606                         -exec cat '{}' \\\; &> /dev/null
8607
8608             do_facet $facet     find $proc_dirs \
8609                         -not -name req_history \
8610                         -type f \
8611                         -readable \
8612                         -exec cat '{}' \\\; > /dev/null ||
8613                                 error "proc file read failed"
8614         done
8615 }
8616 run_test 133f "Check for LBUGs/Oopses/unreadable files in /proc"
8617
8618 test_140() { #bug-17379
8619         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8620         test_mkdir -p $DIR/$tdir || error "Creating dir $DIR/$tdir"
8621         cd $DIR/$tdir || error "Changing to $DIR/$tdir"
8622         cp /usr/bin/stat . || error "Copying stat to $DIR/$tdir"
8623
8624         # VFS limits max symlink depth to 5(4KSTACK) or 7(8KSTACK) or 8
8625         # For kernel > 3.5, bellow only tests consecutive symlink (MAX 40)
8626         local i=0
8627         while i=`expr $i + 1`; do
8628                 test_mkdir -p $i || error "Creating dir $i"
8629                 cd $i || error "Changing to $i"
8630                 ln -s ../stat stat || error "Creating stat symlink"
8631                 # Read the symlink until ELOOP present,
8632                 # not LBUGing the system is considered success,
8633                 # we didn't overrun the stack.
8634                 $OPENFILE -f O_RDONLY stat >/dev/null 2>&1; ret=$?
8635                 [ $ret -ne 0 ] && {
8636                         if [ $ret -eq 40 ]; then
8637                                 break  # -ELOOP
8638                         else
8639                                 error "Open stat symlink"
8640                                 return
8641                         fi
8642                 }
8643         done
8644         i=`expr $i - 1`
8645         echo "The symlink depth = $i"
8646         [ $i -eq 5 -o $i -eq 7 -o $i -eq 8 -o $i -eq 40 ] ||
8647                                         error "Invalid symlink depth"
8648
8649         # Test recursive symlink
8650         ln -s symlink_self symlink_self
8651         $OPENFILE -f O_RDONLY symlink_self >/dev/null 2>&1; ret=$?
8652         echo "open symlink_self returns $ret"
8653         [ $ret -eq 40 ] || error "recursive symlink doesn't return -ELOOP"
8654 }
8655 run_test 140 "Check reasonable stack depth (shouldn't LBUG) ===="
8656
8657 test_150() {
8658         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8659         local TF="$TMP/$tfile"
8660
8661         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8662         cp $TF $DIR/$tfile
8663         cancel_lru_locks osc
8664         cmp $TF $DIR/$tfile || error "$TMP/$tfile $DIR/$tfile differ"
8665         remount_client $MOUNT
8666         df -P $MOUNT
8667         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (remount)"
8668
8669         $TRUNCATE $TF 6000
8670         $TRUNCATE $DIR/$tfile 6000
8671         cancel_lru_locks osc
8672         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (truncate1)"
8673
8674         echo "12345" >>$TF
8675         echo "12345" >>$DIR/$tfile
8676         cancel_lru_locks osc
8677         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append1)"
8678
8679         echo "12345" >>$TF
8680         echo "12345" >>$DIR/$tfile
8681         cancel_lru_locks osc
8682         cmp $TF $DIR/$tfile || error "$TF $DIR/$tfile differ (append2)"
8683
8684         rm -f $TF
8685         true
8686 }
8687 run_test 150 "truncate/append tests"
8688
8689 #LU-2902 roc_hit was not able to read all values from lproc
8690 function roc_hit_init() {
8691         local list=$(comma_list $(osts_nodes))
8692         local dir=$DIR/$tdir-check
8693         local file=$dir/file
8694         local BEFORE
8695         local AFTER
8696         local idx
8697
8698         test_mkdir -p $dir
8699         #use setstripe to do a write to every ost
8700         for i in $(seq 0 $((OSTCOUNT-1))); do
8701                 $SETSTRIPE -c 1 -i $i $dir || error "$SETSTRIPE $file failed"
8702                 dd if=/dev/urandom of=$file bs=4k count=4 2>&1 > /dev/null
8703                 idx=$(printf %04x $i)
8704                 BEFORE=$(get_osd_param $list *OST*$idx stats |
8705                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8706                 if [ -z "$BEFORE" ]; then
8707                         BEFORE=0
8708                 fi
8709
8710                 cancel_lru_locks osc
8711                 cat $file >/dev/null
8712
8713                 AFTER=$(get_osd_param $list *OST*$idx stats |
8714                     awk '$1 == "cache_access" {sum += $2} END { print sum }')
8715
8716                 echo BEFORE:$BEFORE AFTER:$AFTER
8717                 if ! let "AFTER - BEFORE == 4"; then
8718                         rm -rf $dir
8719                         error "roc_hit is not safe to use"
8720                 fi
8721                 rm $file
8722         done
8723
8724         rm -rf $dir
8725 }
8726
8727 function roc_hit() {
8728         local list=$(comma_list $(osts_nodes))
8729         echo $(get_osd_param $list '' stats |
8730                 awk '$1 == "cache_hit" {sum += $2} END { print sum }')
8731 }
8732
8733 function set_cache() {
8734         local on=1
8735
8736         if [ "$2" == "off" ]; then
8737                 on=0;
8738         fi
8739         local list=$(comma_list $(osts_nodes))
8740         set_osd_param $list '' $1_cache_enable $on
8741
8742         cancel_lru_locks osc
8743 }
8744
8745 test_151() {
8746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8747         remote_ost_nodsh && skip "remote OST with nodsh" && return
8748
8749         local CPAGES=3
8750         local list=$(comma_list $(osts_nodes))
8751
8752         # check whether obdfilter is cache capable at all
8753         if ! get_osd_param $list '' read_cache_enable >/dev/null; then
8754                 echo "not cache-capable obdfilter"
8755                 return 0
8756         fi
8757
8758         # check cache is enabled on all obdfilters
8759         if get_osd_param $list '' read_cache_enable | grep 0; then
8760                 echo "oss cache is disabled"
8761                 return 0
8762         fi
8763
8764         set_osd_param $list '' writethrough_cache_enable 1
8765
8766         # check write cache is enabled on all obdfilters
8767         if get_osd_param $list '' writethrough_cache_enable | grep 0; then
8768                 echo "oss write cache is NOT enabled"
8769                 return 0
8770         fi
8771
8772         roc_hit_init
8773
8774         #define OBD_FAIL_OBD_NO_LRU  0x609
8775         do_nodes $list $LCTL set_param fail_loc=0x609
8776
8777         # pages should be in the case right after write
8778         dd if=/dev/urandom of=$DIR/$tfile bs=4k count=$CPAGES ||
8779                 error "dd failed"
8780
8781         local BEFORE=$(roc_hit)
8782         cancel_lru_locks osc
8783         cat $DIR/$tfile >/dev/null
8784         local AFTER=$(roc_hit)
8785
8786         do_nodes $list $LCTL set_param fail_loc=0
8787
8788         if ! let "AFTER - BEFORE == CPAGES"; then
8789                 error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
8790         fi
8791
8792         # the following read invalidates the cache
8793         cancel_lru_locks osc
8794         set_osd_param $list '' read_cache_enable 0
8795         cat $DIR/$tfile >/dev/null
8796
8797         # now data shouldn't be found in the cache
8798         BEFORE=$(roc_hit)
8799         cancel_lru_locks osc
8800         cat $DIR/$tfile >/dev/null
8801         AFTER=$(roc_hit)
8802         if let "AFTER - BEFORE != 0"; then
8803                 error "IN CACHE: before: $BEFORE, after: $AFTER"
8804         fi
8805
8806         set_osd_param $list '' read_cache_enable 1
8807         rm -f $DIR/$tfile
8808 }
8809 run_test 151 "test cache on oss and controls ==============================="
8810
8811 test_152() {
8812         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8813         local TF="$TMP/$tfile"
8814
8815         # simulate ENOMEM during write
8816 #define OBD_FAIL_OST_NOMEM      0x226
8817         lctl set_param fail_loc=0x80000226
8818         dd if=/dev/urandom of=$TF bs=6096 count=1 || error "dd failed"
8819         cp $TF $DIR/$tfile
8820         sync || error "sync failed"
8821         lctl set_param fail_loc=0
8822
8823         # discard client's cache
8824         cancel_lru_locks osc
8825
8826         # simulate ENOMEM during read
8827         lctl set_param fail_loc=0x80000226
8828         cmp $TF $DIR/$tfile || error "cmp failed"
8829         lctl set_param fail_loc=0
8830
8831         rm -f $TF
8832 }
8833 run_test 152 "test read/write with enomem ============================"
8834
8835 test_153() {
8836         $MULTIOP $DIR/$tfile Ow4096Ycu || error "multiop failed"
8837 }
8838 run_test 153 "test if fdatasync does not crash ======================="
8839
8840 dot_lustre_fid_permission_check() {
8841         local fid=$1
8842         local ffid=$MOUNT/.lustre/fid/$fid
8843         local test_dir=$2
8844
8845         echo "stat fid $fid"
8846         stat $ffid > /dev/null || error "stat $ffid failed."
8847         echo "touch fid $fid"
8848         touch $ffid || error "touch $ffid failed."
8849         echo "write to fid $fid"
8850         cat /etc/hosts > $ffid || error "write $ffid failed."
8851         echo "read fid $fid"
8852         diff /etc/hosts $ffid || error "read $ffid failed."
8853         echo "append write to fid $fid"
8854         cat /etc/hosts >> $ffid || error "append write $ffid failed."
8855         echo "rename fid $fid"
8856         mv $ffid $test_dir/$tfile.1 &&
8857                 error "rename $ffid to $tfile.1 should fail."
8858         touch $test_dir/$tfile.1
8859         mv $test_dir/$tfile.1 $ffid &&
8860                 error "rename $tfile.1 to $ffid should fail."
8861         rm -f $test_dir/$tfile.1
8862         echo "truncate fid $fid"
8863         $TRUNCATE $ffid 777 || error "truncate $ffid failed."
8864         echo "link fid $fid"
8865         ln -f $ffid $test_dir/tfile.lnk || error "link $ffid failed."
8866         if [ -n $(lctl get_param -n mdc.*-mdc-*.connect_flags | grep acl) ]; then
8867                 echo "setfacl fid $fid"
8868                 setfacl -R -m u:bin:rwx $ffid || error "setfacl $ffid failed."
8869                 echo "getfacl fid $fid"
8870                 getfacl $ffid >/dev/null || error "getfacl $ffid failed."
8871         fi
8872         echo "unlink fid $fid"
8873         unlink $MOUNT/.lustre/fid/$fid && error "unlink $ffid should fail."
8874         echo "mknod fid $fid"
8875         mknod $ffid c 1 3 && error "mknod $ffid should fail."
8876
8877         fid=[0xf00000400:0x1:0x0]
8878         ffid=$MOUNT/.lustre/fid/$fid
8879
8880         echo "stat non-exist fid $fid"
8881         stat $ffid > /dev/null && error "stat non-exist $ffid should fail."
8882         echo "write to non-exist fid $fid"
8883         cat /etc/hosts > $ffid && error "write non-exist $ffid should fail."
8884         echo "link new fid $fid"
8885         ln $test_dir/$tfile $ffid && error "link $ffid should fail."
8886
8887         mkdir -p $test_dir/$tdir
8888         touch $test_dir/$tdir/$tfile
8889         fid=$($LFS path2fid $test_dir/$tdir)
8890         rc=$?
8891         [ $rc -ne 0 ] &&
8892                 error "error: could not get fid for $test_dir/$dir/$tfile."
8893
8894         ffid=$MOUNT/.lustre/fid/$fid
8895
8896         echo "ls $fid"
8897         ls $ffid > /dev/null || error "ls $ffid failed."
8898         echo "touch $fid/$tfile.1"
8899         touch $ffid/$tfile.1 || error "touch $ffid/$tfile.1 failed."
8900
8901         echo "touch $MOUNT/.lustre/fid/$tfile"
8902         touch $MOUNT/.lustre/fid/$tfile && \
8903                 error "touch $MOUNT/.lustre/fid/$tfile should fail."
8904
8905         echo "setxattr to $MOUNT/.lustre/fid"
8906         setfattr -n trusted.name1 -v value1 $MOUNT/.lustre/fid
8907
8908         echo "listxattr for $MOUNT/.lustre/fid"
8909         getfattr -d -m "^trusted" $MOUNT/.lustre/fid
8910
8911         echo "delxattr from $MOUNT/.lustre/fid"
8912         setfattr -x trusted.name1 $MOUNT/.lustre/fid
8913
8914         echo "touch invalid fid: $MOUNT/.lustre/fid/[0x200000400:0x2:0x3]"
8915         touch $MOUNT/.lustre/fid/[0x200000400:0x2:0x3] &&
8916                 error "touch invalid fid should fail."
8917
8918         echo "touch non-normal fid: $MOUNT/.lustre/fid/[0x1:0x2:0x0]"
8919         touch $MOUNT/.lustre/fid/[0x1:0x2:0x0] &&
8920                 error "touch non-normal fid should fail."
8921
8922         echo "rename $tdir to $MOUNT/.lustre/fid"
8923         mrename $test_dir/$tdir $MOUNT/.lustre/fid &&
8924                 error "rename to $MOUNT/.lustre/fid should fail."
8925
8926         if [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.51) ]
8927         then            # LU-3547
8928                 local old_obf_mode=$(stat --format="%a" $DIR/.lustre/fid)
8929                 local new_obf_mode=777
8930
8931                 echo "change mode of $DIR/.lustre/fid to $new_obf_mode"
8932                 chmod $new_obf_mode $DIR/.lustre/fid ||
8933                         error "chmod $new_obf_mode $DIR/.lustre/fid failed"
8934
8935                 local obf_mode=$(stat --format=%a $DIR/.lustre/fid)
8936                 [ $obf_mode -eq $new_obf_mode ] ||
8937                         error "stat $DIR/.lustre/fid returned wrong mode $obf_mode"
8938
8939                 echo "restore mode of $DIR/.lustre/fid to $old_obf_mode"
8940                 chmod $old_obf_mode $DIR/.lustre/fid ||
8941                         error "chmod $old_obf_mode $DIR/.lustre/fid failed"
8942         fi
8943
8944         $OPENFILE -f O_LOV_DELAY_CREATE:O_CREAT $test_dir/$tfile-2
8945         fid=$($LFS path2fid $test_dir/$tfile-2)
8946         echo "cp /etc/passwd $MOUNT/.lustre/fid/$fid"
8947         cp /etc/passwd $MOUNT/.lustre/fid/$fid &&
8948                 error "create lov data thru .lustre should fail."
8949         echo "cp /etc/passwd $test_dir/$tfile-2"
8950         cp /etc/passwd $test_dir/$tfile-2 ||
8951                 error "copy to $test_dir/$tfile-2 failed."
8952         echo "diff /etc/passwd $MOUNT/.lustre/fid/$fid"
8953         diff /etc/passwd $MOUNT/.lustre/fid/$fid ||
8954                 error "diff /etc/passwd $MOUNT/.lustre/fid/$fid failed."
8955
8956         rm -rf $test_dir/tfile.lnk
8957         rm -rf $test_dir/$tfile-2
8958 }
8959
8960 test_154A() {
8961         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
8962                 skip "Need MDS version at least 2.4.1" && return
8963
8964         touch $DIR/$tfile
8965         local FID=$($LFS path2fid $DIR/$tfile)
8966         [ -z "$FID" ] && error "path2fid unable to get $DIR/$tfile FID"
8967
8968         # check that we get the same pathname back
8969         local FOUND=$($LFS fid2path $MOUNT $FID)
8970         [ -z "$FOUND" ] && error "fid2path unable to get $FID path"
8971         [ "$FOUND" != "$DIR/$tfile" ] &&
8972                 error "fid2path(path2fid($DIR/$tfile)) = $FOUND != $DIR/$tfile"
8973
8974         rm -rf $DIR/$tfile
8975 }
8976 run_test 154A "lfs path2fid and fid2path basic checks"
8977
8978 test_154a() {
8979         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
8980         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
8981                 { skip "Need MDS version at least 2.2.51"; return 0; }
8982
8983         cp /etc/hosts $DIR/$tfile
8984
8985         fid=$($LFS path2fid $DIR/$tfile)
8986         rc=$?
8987         [ $rc -ne 0 ] && error "error: could not get fid for $DIR/$tfile."
8988
8989         dot_lustre_fid_permission_check "$fid" $DIR ||
8990                 error "dot lustre permission check $fid failed"
8991
8992         rm -rf $MOUNT/.lustre && error ".lustre is not allowed to be unlinked"
8993
8994         touch $MOUNT/.lustre/file &&
8995                 error "creation is not allowed under .lustre"
8996
8997         mkdir $MOUNT/.lustre/dir &&
8998                 error "mkdir is not allowed under .lustre"
8999
9000         rm -rf $DIR/$tfile
9001 }
9002 run_test 154a "Open-by-FID"
9003
9004 test_154b() {
9005         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9006         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ]] ||
9007                 { skip "Need MDS version at least 2.2.51"; return 0; }
9008
9009         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
9010
9011         local remote_dir=$DIR/$tdir/remote_dir
9012         local MDTIDX=1
9013         local rc=0
9014
9015         mkdir -p $DIR/$tdir
9016         $LFS mkdir -i $MDTIDX $remote_dir ||
9017                 error "create remote directory failed"
9018
9019         cp /etc/hosts $remote_dir/$tfile
9020
9021         fid=$($LFS path2fid $remote_dir/$tfile)
9022         rc=$?
9023         [ $rc -ne 0 ] && error "error: could not get fid for $remote_dir/$tfile"
9024
9025         dot_lustre_fid_permission_check "$fid" $remote_dir ||
9026                 error "dot lustre permission check $fid failed"
9027         rm -rf $DIR/$tdir
9028 }
9029 run_test 154b "Open-by-FID for remote directory"
9030
9031 test_154c() {
9032         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.1) ]] &&
9033                 skip "Need MDS version at least 2.4.1" && return
9034
9035         touch $DIR/$tfile.1 $DIR/$tfile.2 $DIR/$tfile.3
9036         local FID1=$($LFS path2fid $DIR/$tfile.1)
9037         local FID2=$($LFS path2fid $DIR/$tfile.2)
9038         local FID3=$($LFS path2fid $DIR/$tfile.3)
9039
9040         local N=1
9041         $LFS path2fid $DIR/$tfile.[123] | while read PATHNAME FID; do
9042                 [ "$PATHNAME" = "$DIR/$tfile.$N:" ] ||
9043                         error "path2fid pathname $PATHNAME != $DIR/$tfile.$N:"
9044                 local want=FID$N
9045                 [ "$FID" = "${!want}" ] ||
9046                         error "path2fid $PATHNAME FID $FID != FID$N ${!want}"
9047                 N=$((N + 1))
9048         done
9049
9050         $LFS fid2path $MOUNT $FID1 $FID2 $FID3 | while read PATHNAME; do
9051                 [ "$PATHNAME" = "$DIR/$tfile.$N" ] ||
9052                         error "fid2path pathname $PATHNAME != $DIR/$tfile.$N:"
9053                 N=$((N + 1))
9054         done
9055 }
9056 run_test 154c "lfs path2fid and fid2path multiple arguments"
9057
9058 test_155_small_load() {
9059     local temp=$TMP/$tfile
9060     local file=$DIR/$tfile
9061
9062     dd if=/dev/urandom of=$temp bs=6096 count=1 || \
9063         error "dd of=$temp bs=6096 count=1 failed"
9064     cp $temp $file
9065     cancel_lru_locks osc
9066     cmp $temp $file || error "$temp $file differ"
9067
9068     $TRUNCATE $temp 6000
9069     $TRUNCATE $file 6000
9070     cmp $temp $file || error "$temp $file differ (truncate1)"
9071
9072     echo "12345" >>$temp
9073     echo "12345" >>$file
9074     cmp $temp $file || error "$temp $file differ (append1)"
9075
9076     echo "12345" >>$temp
9077     echo "12345" >>$file
9078     cmp $temp $file || error "$temp $file differ (append2)"
9079
9080     rm -f $temp $file
9081     true
9082 }
9083
9084 test_155_big_load() {
9085     remote_ost_nodsh && skip "remote OST with nodsh" && return
9086     local temp=$TMP/$tfile
9087     local file=$DIR/$tfile
9088
9089     free_min_max
9090     local cache_size=$(do_facet ost$((MAXI+1)) \
9091         "awk '/cache/ {sum+=\\\$4} END {print sum}' /proc/cpuinfo")
9092     local large_file_size=$((cache_size * 2))
9093
9094     echo "OSS cache size: $cache_size KB"
9095     echo "Large file size: $large_file_size KB"
9096
9097     [ $MAXV -le $large_file_size ] && \
9098         skip_env "max available OST size needs > $large_file_size KB" && \
9099         return 0
9100
9101     $SETSTRIPE $file -c 1 -i $MAXI || error "$SETSTRIPE $file failed"
9102
9103     dd if=/dev/urandom of=$temp bs=$large_file_size count=1k || \
9104         error "dd of=$temp bs=$large_file_size count=1k failed"
9105     cp $temp $file
9106     ls -lh $temp $file
9107     cancel_lru_locks osc
9108     cmp $temp $file || error "$temp $file differ"
9109
9110     rm -f $temp $file
9111     true
9112 }
9113
9114 test_155a() {
9115         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9116         set_cache read on
9117         set_cache writethrough on
9118         test_155_small_load
9119 }
9120 run_test 155a "Verify small file correctness: read cache:on write_cache:on"
9121
9122 test_155b() {
9123         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9124         set_cache read on
9125         set_cache writethrough off
9126         test_155_small_load
9127 }
9128 run_test 155b "Verify small file correctness: read cache:on write_cache:off"
9129
9130 test_155c() {
9131         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9132         set_cache read off
9133         set_cache writethrough on
9134         test_155_small_load
9135 }
9136 run_test 155c "Verify small file correctness: read cache:off write_cache:on"
9137
9138 test_155d() {
9139         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9140         set_cache read off
9141         set_cache writethrough off
9142         test_155_small_load
9143 }
9144 run_test 155d "Verify small file correctness: read cache:off write_cache:off"
9145
9146 test_155e() {
9147         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9148         set_cache read on
9149         set_cache writethrough on
9150         test_155_big_load
9151 }
9152 run_test 155e "Verify big file correctness: read cache:on write_cache:on"
9153
9154 test_155f() {
9155         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9156         set_cache read on
9157         set_cache writethrough off
9158         test_155_big_load
9159 }
9160 run_test 155f "Verify big file correctness: read cache:on write_cache:off"
9161
9162 test_155g() {
9163         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9164         set_cache read off
9165         set_cache writethrough on
9166         test_155_big_load
9167 }
9168 run_test 155g "Verify big file correctness: read cache:off write_cache:on"
9169
9170 test_155h() {
9171         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9172         set_cache read off
9173         set_cache writethrough off
9174         test_155_big_load
9175 }
9176 run_test 155h "Verify big file correctness: read cache:off write_cache:off"
9177
9178 test_156() {
9179         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9180         local CPAGES=3
9181         local BEFORE
9182         local AFTER
9183         local file="$DIR/$tfile"
9184
9185         [ "$(facet_fstype ost1)" = "zfs" ] &&
9186                 skip "LU-1956/LU-2261: stats unimplemented on OSD ZFS" &&
9187                 return
9188
9189         roc_hit_init
9190
9191     log "Turn on read and write cache"
9192     set_cache read on
9193     set_cache writethrough on
9194
9195     log "Write data and read it back."
9196     log "Read should be satisfied from the cache."
9197     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9198     BEFORE=`roc_hit`
9199     cancel_lru_locks osc
9200     cat $file >/dev/null
9201     AFTER=`roc_hit`
9202     if ! let "AFTER - BEFORE == CPAGES"; then
9203         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9204     else
9205         log "cache hits:: before: $BEFORE, after: $AFTER"
9206     fi
9207
9208     log "Read again; it should be satisfied from the cache."
9209     BEFORE=$AFTER
9210     cancel_lru_locks osc
9211     cat $file >/dev/null
9212     AFTER=`roc_hit`
9213     if ! let "AFTER - BEFORE == CPAGES"; then
9214         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9215     else
9216         log "cache hits:: before: $BEFORE, after: $AFTER"
9217     fi
9218
9219
9220     log "Turn off the read cache and turn on the write cache"
9221     set_cache read off
9222     set_cache writethrough on
9223
9224     log "Read again; it should be satisfied from the cache."
9225     BEFORE=`roc_hit`
9226     cancel_lru_locks osc
9227     cat $file >/dev/null
9228     AFTER=`roc_hit`
9229     if ! let "AFTER - BEFORE == CPAGES"; then
9230         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9231     else
9232         log "cache hits:: before: $BEFORE, after: $AFTER"
9233     fi
9234
9235     log "Read again; it should not be satisfied from the cache."
9236     BEFORE=$AFTER
9237     cancel_lru_locks osc
9238     cat $file >/dev/null
9239     AFTER=`roc_hit`
9240     if ! let "AFTER - BEFORE == 0"; then
9241         error "IN CACHE: before: $BEFORE, after: $AFTER"
9242     else
9243         log "cache hits:: before: $BEFORE, after: $AFTER"
9244     fi
9245
9246     log "Write data and read it back."
9247     log "Read should be satisfied from the cache."
9248     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9249     BEFORE=`roc_hit`
9250     cancel_lru_locks osc
9251     cat $file >/dev/null
9252     AFTER=`roc_hit`
9253     if ! let "AFTER - BEFORE == CPAGES"; then
9254         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9255     else
9256         log "cache hits:: before: $BEFORE, after: $AFTER"
9257     fi
9258
9259     log "Read again; it should not be satisfied from the cache."
9260     BEFORE=$AFTER
9261     cancel_lru_locks osc
9262     cat $file >/dev/null
9263     AFTER=`roc_hit`
9264     if ! let "AFTER - BEFORE == 0"; then
9265         error "IN CACHE: before: $BEFORE, after: $AFTER"
9266     else
9267         log "cache hits:: before: $BEFORE, after: $AFTER"
9268     fi
9269
9270
9271     log "Turn off read and write cache"
9272     set_cache read off
9273     set_cache writethrough off
9274
9275     log "Write data and read it back"
9276     log "It should not be satisfied from the cache."
9277     rm -f $file
9278     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9279     cancel_lru_locks osc
9280     BEFORE=`roc_hit`
9281     cat $file >/dev/null
9282     AFTER=`roc_hit`
9283     if ! let "AFTER - BEFORE == 0"; then
9284         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9285     else
9286         log "cache hits:: before: $BEFORE, after: $AFTER"
9287     fi
9288
9289
9290     log "Turn on the read cache and turn off the write cache"
9291     set_cache read on
9292     set_cache writethrough off
9293
9294     log "Write data and read it back"
9295     log "It should not be satisfied from the cache."
9296     rm -f $file
9297     dd if=/dev/urandom of=$file bs=4k count=$CPAGES || error "dd failed"
9298     BEFORE=`roc_hit`
9299     cancel_lru_locks osc
9300     cat $file >/dev/null
9301     AFTER=`roc_hit`
9302     if ! let "AFTER - BEFORE == 0"; then
9303         error_ignore 20762 "IN CACHE: before: $BEFORE, after: $AFTER"
9304     else
9305         log "cache hits:: before: $BEFORE, after: $AFTER"
9306     fi
9307
9308     log "Read again; it should be satisfied from the cache."
9309     BEFORE=`roc_hit`
9310     cancel_lru_locks osc
9311     cat $file >/dev/null
9312     AFTER=`roc_hit`
9313     if ! let "AFTER - BEFORE == CPAGES"; then
9314         error "NOT IN CACHE: before: $BEFORE, after: $AFTER"
9315     else
9316         log "cache hits:: before: $BEFORE, after: $AFTER"
9317     fi
9318
9319     rm -f $file
9320 }
9321 run_test 156 "Verification of tunables ============================"
9322
9323 #Changelogs
9324 err17935 () {
9325         if [ $MDSCOUNT -gt 1 ]; then
9326                 error_ignore 17935 $*
9327         else
9328                 error $*
9329         fi
9330 }
9331
9332 changelog_chmask()
9333 {
9334         local CL_MASK_PARAM="mdd.$MDT0.changelog_mask"
9335
9336         MASK=$(do_facet $SINGLEMDS $LCTL get_param $CL_MASK_PARAM| grep -c "$1")
9337
9338         if [ $MASK -eq 1 ]; then
9339                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="-$1"
9340         else
9341                 do_facet $SINGLEMDS $LCTL set_param $CL_MASK_PARAM="+$1"
9342         fi
9343 }
9344
9345 changelog_extract_field() {
9346         local mdt=$1
9347         local cltype=$2
9348         local file=$3
9349         local identifier=$4
9350
9351         $LFS changelog $mdt | gawk "/$cltype.*$file$/ {
9352                 print gensub(/^.* "$identifier'(\[[^\]]*\]).*$/,"\\1",1)}' |
9353                 tail -1
9354 }
9355
9356 test_160a() {
9357         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9358         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9359         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9360                 { skip "Need MDS version at least 2.2.0"; return; }
9361
9362         local CL_USERS="mdd.$MDT0.changelog_users"
9363         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9364         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9365         echo "Registered as changelog user $USER"
9366         $GET_CL_USERS | grep -q $USER ||
9367                 error "User $USER not found in changelog_users"
9368
9369         # change something
9370         test_mkdir -p $DIR/$tdir/pics/2008/zachy
9371         touch $DIR/$tdir/pics/2008/zachy/timestamp
9372         cp /etc/hosts $DIR/$tdir/pics/2008/zachy/pic1.jpg
9373         mv $DIR/$tdir/pics/2008/zachy $DIR/$tdir/pics/zach
9374         ln $DIR/$tdir/pics/zach/pic1.jpg $DIR/$tdir/pics/2008/portland.jpg
9375         ln -s $DIR/$tdir/pics/2008/portland.jpg $DIR/$tdir/pics/desktop.jpg
9376         rm $DIR/$tdir/pics/desktop.jpg
9377
9378         $LFS changelog $MDT0 | tail -5
9379
9380         echo "verifying changelog mask"
9381         changelog_chmask "MKDIR"
9382         changelog_chmask "CLOSE"
9383
9384         test_mkdir -p $DIR/$tdir/pics/zach/sofia
9385         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9386
9387         changelog_chmask "MKDIR"
9388         changelog_chmask "CLOSE"
9389
9390         test_mkdir -p $DIR/$tdir/pics/2008/sofia
9391         echo "zzzzzz" > $DIR/$tdir/pics/zach/file
9392
9393         $LFS changelog $MDT0
9394         MKDIRS=$($LFS changelog $MDT0 | tail -5 | grep -c "MKDIR")
9395         CLOSES=$($LFS changelog $MDT0 | tail -5 | grep -c "CLOSE")
9396         [ $MKDIRS -eq 1 ] || err17935 "MKDIR changelog mask count $DIRS != 1"
9397         [ $CLOSES -eq 1 ] || err17935 "CLOSE changelog mask count $DIRS != 1"
9398
9399         # verify contents
9400         echo "verifying target fid"
9401         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "t=")
9402         fidf=$($LFS path2fid $DIR/$tdir/pics/zach/timestamp)
9403         [ "$fidc" == "$fidf" ] ||
9404                 err17935 "fid in changelog $fidc != file fid $fidf"
9405         echo "verifying parent fid"
9406         fidc=$(changelog_extract_field $MDT0 "CREAT" "timestamp" "p=")
9407         fidf=$($LFS path2fid $DIR/$tdir/pics/zach)
9408         [ "$fidc" == "$fidf" ] ||
9409                 err17935 "pfid in changelog $fidc != dir fid $fidf"
9410
9411         USER_REC1=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9412         $LFS changelog_clear $MDT0 $USER $(($USER_REC1 + 5))
9413         USER_REC2=$($GET_CL_USERS | awk "\$1 == \"$USER\" {print \$2}")
9414         echo "verifying user clear: $(( $USER_REC1 + 5 )) == $USER_REC2"
9415         [ $USER_REC2 == $(($USER_REC1 + 5)) ] ||
9416                 err17935 "user index expected $(($USER_REC1 + 5)) is $USER_REC2"
9417
9418         MIN_REC=$($GET_CL_USERS |
9419                 awk 'min == "" || $2 < min {min = $2}; END {print min}')
9420         FIRST_REC=$($LFS changelog $MDT0 | head -1 | awk '{print $1}')
9421         echo "verifying min purge: $(( $MIN_REC + 1 )) == $FIRST_REC"
9422         [ $FIRST_REC == $(($MIN_REC + 1)) ] ||
9423                 err17935 "first index should be $(($MIN_REC + 1)) is $FIRST_REC"
9424
9425         # LU-3446 changelog index reset on MDT restart
9426         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
9427         CUR_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9428         $LFS changelog_clear $MDT0 $USER 0
9429         stop $SINGLEMDS || error "Fail to stop MDT."
9430         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
9431         CUR_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9432         echo "verifying index survives MDT restart: $CUR_REC1 == $CUR_REC2"
9433         [ $CUR_REC1 == $CUR_REC2 ] ||
9434                 err17935 "current index should be $CUR_REC1 is $CUR_REC2"
9435
9436         echo "verifying user deregister"
9437         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9438         $GET_CL_USERS | grep -q $USER &&
9439                 error "User $USER still in changelog_users"
9440
9441         USERS=$(( $($GET_CL_USERS | wc -l) - 2 ))
9442         if [ $USERS -eq 0 ]; then
9443                 LAST_REC1=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9444                 touch $DIR/$tdir/chloe
9445                 LAST_REC2=$($GET_CL_USERS | head -1 | cut -f3 -d' ')
9446                 echo "verify changelogs are off: $LAST_REC1 == $LAST_REC2"
9447                 [ $LAST_REC1 == $LAST_REC2 ] || error "changelogs not off"
9448         else
9449                 echo "$USERS other changelog users; can't verify off"
9450         fi
9451 }
9452 run_test 160a "changelog sanity"
9453
9454 test_160b() { # LU-3587
9455         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9456         remote_mds_nodsh && skip "remote MDS with nodsh" && return
9457         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.0) ] ||
9458                 { skip "Need MDS version at least 2.2.0"; return; }
9459
9460         local CL_USERS="mdd.$MDT0.changelog_users"
9461         local GET_CL_USERS="do_facet $SINGLEMDS $LCTL get_param -n $CL_USERS"
9462         USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_register -n)
9463         echo "Registered as changelog user $USER"
9464         $GET_CL_USERS | grep -q $USER ||
9465                 error "User $USER not found in changelog_users"
9466
9467         local LONGNAME1=$(str_repeat a 255)
9468         local LONGNAME2=$(str_repeat b 255)
9469
9470         cd $DIR
9471         echo "creating very long named file"
9472         touch $LONGNAME1 || error "create of $LONGNAME1 failed"
9473         echo "moving very long named file"
9474         mv $LONGNAME1 $LONGNAME2
9475
9476         $LFS changelog $MDT0 | grep RENME
9477
9478         echo "deregistering $USER"
9479         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9480
9481         rm -f $LONGNAME2
9482 }
9483 run_test 160b "Verify that very long rename doesn't crash in changelog"
9484
9485 test_161a() {
9486         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9487     test_mkdir -p $DIR/$tdir
9488     cp /etc/hosts $DIR/$tdir/$tfile
9489     test_mkdir $DIR/$tdir/foo1
9490     test_mkdir $DIR/$tdir/foo2
9491     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/sofia
9492     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/zachary
9493     ln $DIR/$tdir/$tfile $DIR/$tdir/foo1/luna
9494     ln $DIR/$tdir/$tfile $DIR/$tdir/foo2/thor
9495         local FID=$($LFS path2fid $DIR/$tdir/$tfile | tr -d '[]')
9496         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9497                 $LFS fid2path $DIR $FID
9498                 err17935 "bad link ea"
9499         fi
9500     # middle
9501     rm $DIR/$tdir/foo2/zachary
9502     # last
9503     rm $DIR/$tdir/foo2/thor
9504     # first
9505     rm $DIR/$tdir/$tfile
9506     # rename
9507     mv $DIR/$tdir/foo1/sofia $DIR/$tdir/foo2/maggie
9508     if [ "$($LFS fid2path $FSNAME --link 1 $FID)" != "$tdir/foo2/maggie" ]
9509         then
9510         $LFS fid2path $DIR $FID
9511         err17935 "bad link rename"
9512     fi
9513     rm $DIR/$tdir/foo2/maggie
9514
9515     # overflow the EA
9516     local longname=filename_avg_len_is_thirty_two_
9517     createmany -l$DIR/$tdir/foo1/luna $DIR/$tdir/foo2/$longname 1000 || \
9518         error "failed to hardlink many files"
9519     links=$($LFS fid2path $DIR $FID | wc -l)
9520     echo -n "${links}/1000 links in link EA"
9521     [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9522     unlinkmany $DIR/$tdir/foo2/$longname 1000 || \
9523         error "failed to unlink many hardlinks"
9524 }
9525 run_test 161a "link ea sanity"
9526
9527 test_161b() {
9528         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9529         [ $MDSCOUNT -lt 2 ] &&
9530                 skip "skipping remote directory test" && return
9531         local MDTIDX=1
9532         local remote_dir=$DIR/$tdir/remote_dir
9533
9534         mkdir -p $DIR/$tdir
9535         $LFS mkdir -i $MDTIDX $remote_dir ||
9536                 error "create remote directory failed"
9537
9538         cp /etc/hosts $remote_dir/$tfile
9539         mkdir -p $remote_dir/foo1
9540         mkdir -p $remote_dir/foo2
9541         ln $remote_dir/$tfile $remote_dir/foo1/sofia
9542         ln $remote_dir/$tfile $remote_dir/foo2/zachary
9543         ln $remote_dir/$tfile $remote_dir/foo1/luna
9544         ln $remote_dir/$tfile $remote_dir/foo2/thor
9545
9546         local FID=$($LFS path2fid $remote_dir/$tfile | tr -d '[' |
9547                      tr -d ']')
9548         if [ "$($LFS fid2path $DIR $FID | wc -l)" != "5" ]; then
9549                 $LFS fid2path $DIR $FID
9550                 err17935 "bad link ea"
9551         fi
9552         # middle
9553         rm $remote_dir/foo2/zachary
9554         # last
9555         rm $remote_dir/foo2/thor
9556         # first
9557         rm $remote_dir/$tfile
9558         # rename
9559         mv $remote_dir/foo1/sofia $remote_dir/foo2/maggie
9560         local link_path=$($LFS fid2path $FSNAME --link 1 $FID)
9561         if [ "$DIR/$link_path" != "$remote_dir/foo2/maggie" ]; then
9562                 $LFS fid2path $DIR $FID
9563                 err17935 "bad link rename"
9564         fi
9565         rm $remote_dir/foo2/maggie
9566
9567         # overflow the EA
9568         local longname=filename_avg_len_is_thirty_two_
9569         createmany -l$remote_dir/foo1/luna $remote_dir/foo2/$longname 1000 ||
9570                 error "failed to hardlink many files"
9571         links=$($LFS fid2path $DIR $FID | wc -l)
9572         echo -n "${links}/1000 links in link EA"
9573         [ ${links} -gt 60 ] || err17935 "expected at least 60 links in link EA"
9574         unlinkmany $remote_dir/foo2/$longname 1000 ||
9575         error "failed to unlink many hardlinks"
9576 }
9577 run_test 161b "link ea sanity under remote directory"
9578
9579 test_161c() {
9580         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9581         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.1.5) ]] &&
9582                 skip "Need MDS version at least 2.1.5" && return
9583
9584         # define CLF_RENAME_LAST 0x0001
9585         # rename overwrite a target having nlink = 1 (changelog flag 0x1)
9586         local USER=$(do_facet $SINGLEMDS $LCTL --device $MDT0 \
9587                 changelog_register -n)
9588         rm -rf $DIR/$tdir
9589         mkdir -p $DIR/$tdir
9590         touch $DIR/$tdir/foo_161c
9591         touch $DIR/$tdir/bar_161c
9592         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9593         $LFS changelog $MDT0 | grep RENME
9594         local flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | \
9595                 cut -f5 -d' ')
9596         $LFS changelog_clear $MDT0 $USER 0
9597         if [ x$flags != "x0x1" ]; then
9598                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9599                         $USER
9600                 error "flag $flags is not 0x1"
9601         fi
9602         echo "rename overwrite a target having nlink = 1," \
9603                 "changelog record has flags of $flags"
9604
9605         # rename overwrite a target having nlink > 1 (changelog flag 0x0)
9606         touch $DIR/$tdir/foo_161c
9607         touch $DIR/$tdir/bar_161c
9608         ln $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9609         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/bar_161c
9610         $LFS changelog $MDT0 | grep RENME
9611         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9612         $LFS changelog_clear $MDT0 $USER 0
9613         if [ x$flags != "x0x0" ]; then
9614                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9615                         $USER
9616                 error "flag $flags is not 0x0"
9617         fi
9618         echo "rename overwrite a target having nlink > 1," \
9619                 "changelog record has flags of $flags"
9620
9621         # rename doesn't overwrite a target (changelog flag 0x0)
9622         touch $DIR/$tdir/foo_161c
9623         mv -f $DIR/$tdir/foo_161c $DIR/$tdir/foo2_161c
9624         $LFS changelog $MDT0 | grep RENME
9625         flags=$($LFS changelog $MDT0 | grep RENME | tail -1 | cut -f5 -d' ')
9626         $LFS changelog_clear $MDT0 $USER 0
9627         if [ x$flags != "x0x0" ]; then
9628                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9629                         $USER
9630                 error "flag $flags is not 0x0"
9631         fi
9632         echo "rename doesn't overwrite a target," \
9633                 "changelog record has flags of $flags"
9634
9635         # define CLF_UNLINK_LAST 0x0001
9636         # unlink a file having nlink = 1 (changelog flag 0x1)
9637         rm -f $DIR/$tdir/foo2_161c
9638         $LFS changelog $MDT0 | grep UNLNK
9639         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9640         $LFS changelog_clear $MDT0 $USER 0
9641         if [ x$flags != "x0x1" ]; then
9642                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9643                         $USER
9644                 error "flag $flags is not 0x1"
9645         fi
9646         echo "unlink a file having nlink = 1," \
9647                 "changelog record has flags of $flags"
9648
9649         # unlink a file having nlink > 1 (changelog flag 0x0)
9650         ln -f $DIR/$tdir/bar_161c $DIR/$tdir/foobar_161c
9651         rm -f $DIR/$tdir/foobar_161c
9652         $LFS changelog $MDT0 | grep UNLNK
9653         flags=$($LFS changelog $MDT0 | grep UNLNK | tail -1 | cut -f5 -d' ')
9654         $LFS changelog_clear $MDT0 $USER 0
9655         if [ x$flags != "x0x0" ]; then
9656                 do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister \
9657                         $USER
9658                 error "flag $flags is not 0x0"
9659         fi
9660         echo "unlink a file having nlink > 1," \
9661                 "changelog record has flags of $flags"
9662         do_facet $SINGLEMDS $LCTL --device $MDT0 changelog_deregister $USER
9663 }
9664 run_test 161c "check CL_RENME[UNLINK] changelog record flags"
9665
9666 check_path() {
9667     local expected=$1
9668     shift
9669     local fid=$2
9670
9671     local path=$(${LFS} fid2path $*)
9672     RC=$?
9673
9674     if [ $RC -ne 0 ]; then
9675         err17935 "path looked up of $expected failed. Error $RC"
9676         return $RC
9677     elif [ "${path}" != "${expected}" ]; then
9678         err17935 "path looked up \"${path}\" instead of \"${expected}\""
9679         return 2
9680     fi
9681     echo "fid $fid resolves to path $path (expected $expected)"
9682 }
9683
9684 test_162() {
9685         # Make changes to filesystem
9686         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9687         test_mkdir -p $DIR/$tdir/d2
9688         touch $DIR/$tdir/d2/$tfile
9689         touch $DIR/$tdir/d2/x1
9690         touch $DIR/$tdir/d2/x2
9691         test_mkdir -p $DIR/$tdir/d2/a/b/c
9692         test_mkdir -p $DIR/$tdir/d2/p/q/r
9693         # regular file
9694         FID=$($LFS path2fid $DIR/$tdir/d2/$tfile | tr -d '[]')
9695         check_path "$tdir/d2/$tfile" $FSNAME $FID --link 0
9696
9697         # softlink
9698         ln -s $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/slink
9699         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink | tr -d '[]')
9700         check_path "$tdir/d2/p/q/r/slink" $FSNAME $FID --link 0
9701
9702         # softlink to wrong file
9703         ln -s /this/is/garbage $DIR/$tdir/d2/p/q/r/slink.wrong
9704         FID=$($LFS path2fid $DIR/$tdir/d2/p/q/r/slink.wrong | tr -d '[]')
9705         check_path "$tdir/d2/p/q/r/slink.wrong" $FSNAME $FID --link 0
9706
9707         # hardlink
9708         ln $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/p/q/r/hlink
9709         mv $DIR/$tdir/d2/$tfile $DIR/$tdir/d2/a/b/c/new_file
9710         FID=$($LFS path2fid $DIR/$tdir/d2/a/b/c/new_file | tr -d '[]')
9711         # fid2path dir/fsname should both work
9712         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 1
9713         check_path "$DIR/$tdir/d2/p/q/r/hlink" $DIR $FID --link 0
9714
9715         # hardlink count: check that there are 2 links
9716         # Doesnt work with CMD yet: 17935
9717         ${LFS} fid2path $DIR $FID | wc -l | grep -q 2 || \
9718                 err17935 "expected 2 links"
9719
9720         # hardlink indexing: remove the first link
9721         rm $DIR/$tdir/d2/p/q/r/hlink
9722         check_path "$tdir/d2/a/b/c/new_file" $FSNAME $FID --link 0
9723
9724         return 0
9725 }
9726 run_test 162 "path lookup sanity"
9727
9728 test_169() {
9729         # do directio so as not to populate the page cache
9730         log "creating a 10 Mb file"
9731         $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
9732         log "starting reads"
9733         dd if=$DIR/$tfile of=/dev/null bs=4096 &
9734         log "truncating the file"
9735         $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
9736         log "killing dd"
9737         kill %+ || true # reads might have finished
9738         echo "wait until dd is finished"
9739         wait
9740         log "removing the temporary file"
9741         rm -rf $DIR/$tfile || error "tmp file removal failed"
9742 }
9743 run_test 169 "parallel read and truncate should not deadlock"
9744
9745 test_170() {
9746         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9747         $LCTL clear     # bug 18514
9748         $LCTL debug_daemon start $TMP/${tfile}_log_good
9749         touch $DIR/$tfile
9750         $LCTL debug_daemon stop
9751         sed -e "s/^...../a/g" $TMP/${tfile}_log_good > $TMP/${tfile}_log_bad ||
9752                error "sed failed to read log_good"
9753
9754         $LCTL debug_daemon start $TMP/${tfile}_log_good
9755         rm -rf $DIR/$tfile
9756         $LCTL debug_daemon stop
9757
9758         $LCTL df $TMP/${tfile}_log_bad > $TMP/${tfile}_log_bad.out 2>&1 ||
9759                error "lctl df log_bad failed"
9760
9761         local bad_line=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9762         local good_line1=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9763
9764         $LCTL df $TMP/${tfile}_log_good > $TMP/${tfile}_log_good.out 2>&1
9765         local good_line2=$(tail -n 1 $TMP/${tfile}_log_good.out | awk '{print $5}')
9766
9767         [ "$bad_line" ] && [ "$good_line1" ] && [ "$good_line2" ] ||
9768                 error "bad_line good_line1 good_line2 are empty"
9769
9770         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9771         cat $TMP/${tfile}_log_bad >> $TMP/${tfile}_logs_corrupt
9772         cat $TMP/${tfile}_log_good >> $TMP/${tfile}_logs_corrupt
9773
9774         $LCTL df $TMP/${tfile}_logs_corrupt > $TMP/${tfile}_log_bad.out 2>&1
9775         local bad_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $9}')
9776         local good_line_new=$(tail -n 1 $TMP/${tfile}_log_bad.out | awk '{print $5}')
9777
9778         [ "$bad_line_new" ] && [ "$good_line_new" ] ||
9779                 error "bad_line_new good_line_new are empty"
9780
9781         local expected_good=$((good_line1 + good_line2*2))
9782
9783         rm -f $TMP/${tfile}*
9784         # LU-231, short malformed line may not be counted into bad lines
9785         if [ $bad_line -ne $bad_line_new ] &&
9786                    [ $bad_line -ne $((bad_line_new - 1)) ]; then
9787                 error "expected $bad_line bad lines, but got $bad_line_new"
9788                 return 1
9789         fi
9790
9791         if [ $expected_good -ne $good_line_new ]; then
9792                 error "expected $expected_good good lines, but got $good_line_new"
9793                 return 2
9794         fi
9795         true
9796 }
9797 run_test 170 "test lctl df to handle corrupted log ====================="
9798
9799 test_171() { # bug20592
9800         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9801 #define OBD_FAIL_PTLRPC_DUMP_LOG         0x50e
9802         $LCTL set_param fail_loc=0x50e
9803         $LCTL set_param fail_val=3000
9804         multiop_bg_pause $DIR/$tfile O_s || true
9805         local MULTIPID=$!
9806         kill -USR1 $MULTIPID
9807         # cause log dump
9808         sleep 3
9809         wait $MULTIPID
9810         if dmesg | grep "recursive fault"; then
9811                 error "caught a recursive fault"
9812         fi
9813         $LCTL set_param fail_loc=0
9814         true
9815 }
9816 run_test 171 "test libcfs_debug_dumplog_thread stuck in do_exit() ======"
9817
9818 # it would be good to share it with obdfilter-survey/libecho code
9819 setup_obdecho_osc () {
9820         local rc=0
9821         local ost_nid=$1
9822         local obdfilter_name=$2
9823         echo "Creating new osc for $obdfilter_name on $ost_nid"
9824         # make sure we can find loopback nid
9825         $LCTL add_uuid $ost_nid $ost_nid >/dev/null 2>&1
9826
9827         [ $rc -eq 0 ] && { $LCTL attach osc ${obdfilter_name}_osc     \
9828                            ${obdfilter_name}_osc_UUID || rc=2; }
9829         [ $rc -eq 0 ] && { $LCTL --device ${obdfilter_name}_osc setup \
9830                            ${obdfilter_name}_UUID  $ost_nid || rc=3; }
9831         return $rc
9832 }
9833
9834 cleanup_obdecho_osc () {
9835         local obdfilter_name=$1
9836         $LCTL --device ${obdfilter_name}_osc cleanup >/dev/null
9837         $LCTL --device ${obdfilter_name}_osc detach  >/dev/null
9838         return 0
9839 }
9840
9841 obdecho_test() {
9842         local OBD=$1
9843         local node=$2
9844         local pages=${3:-64}
9845         local rc=0
9846         local id
9847         do_facet $node "$LCTL attach echo_client ec ec_uuid" || rc=1
9848         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec setup $OBD" ||
9849                            rc=2; }
9850         if [ $rc -eq 0 ]; then
9851             id=$(do_facet $node "$LCTL --device ec create 1"  | awk '/object id/ {print $6}')
9852             [ ${PIPESTATUS[0]} -eq 0 -a -n "$id" ] || rc=3
9853         fi
9854         echo "New object id is $id"
9855         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec getattr $id" ||
9856                            rc=4; }
9857         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec "                 \
9858                            "test_brw 10 w v $pages $id" || rc=4; }
9859         [ $rc -eq 0 ] && { do_facet $node "$LCTL --device ec destroy $id 1" ||
9860                            rc=4; }
9861         [ $rc -eq 0 -o $rc -gt 2 ] && { do_facet $node "$LCTL --device ec "    \
9862                                         "cleanup" || rc=5; }
9863         [ $rc -eq 0 -o $rc -gt 1 ] && { do_facet $node "$LCTL --device ec "    \
9864                                         "detach" || rc=6; }
9865         [ $rc -ne 0 ] && echo "obecho_create_test failed: $rc"
9866         return $rc
9867 }
9868
9869 test_180a() {
9870         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9871         remote_ost_nodsh && skip "remote OST with nodsh" && return
9872         local rc=0
9873         local rmmod_local=0
9874
9875         if ! module_loaded obdecho; then
9876             load_module obdecho/obdecho
9877             rmmod_local=1
9878         fi
9879
9880         local osc=$($LCTL dl | grep -v mdt | awk '$3 == "osc" {print $4; exit}')
9881         local host=$(lctl get_param -n osc.$osc.import |
9882                              awk '/current_connection:/ {print $2}' )
9883         local target=$(lctl get_param -n osc.$osc.import |
9884                              awk '/target:/ {print $2}' )
9885         target=${target%_UUID}
9886
9887         [[ -n $target ]]  && { setup_obdecho_osc $host $target || rc=1; } || rc=1
9888         [ $rc -eq 0 ] && { obdecho_test ${target}_osc client || rc=2; }
9889         [[ -n $target ]] && cleanup_obdecho_osc $target
9890         [ $rmmod_local -eq 1 ] && rmmod obdecho
9891         return $rc
9892 }
9893 run_test 180a "test obdecho on osc"
9894
9895 test_180b() {
9896         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9897         remote_ost_nodsh && skip "remote OST with nodsh" && return
9898         local rc=0
9899         local rmmod_remote=0
9900
9901         do_facet ost1 "lsmod | grep -q obdecho || "                      \
9902                       "{ insmod ${LUSTRE}/obdecho/obdecho.ko || "        \
9903                       "modprobe obdecho; }" && rmmod_remote=1
9904         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4;exit}')
9905         [[ -n $target ]] && { obdecho_test $target ost1 || rc=1; }
9906         [ $rmmod_remote -eq 1 ] && do_facet ost1 "rmmod obdecho"
9907         return $rc
9908 }
9909 run_test 180b "test obdecho directly on obdfilter"
9910
9911 test_180c() { # LU-2598
9912         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9913         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.0) ]] &&
9914                 skip "Need MDS version at least 2.4.0" && return
9915
9916         local rc=0
9917         local rmmod_remote=false
9918         local pages=16384 # 64MB bulk I/O RPC size
9919         local target
9920
9921         do_rpc_nodes $(facet_active_host ost1) load_module obdecho/obdecho &&
9922                 rmmod_remote=true || error "failed to load module obdecho"
9923
9924         target=$(do_facet ost1 $LCTL dl | awk '/obdfilter/ {print $4}'|head -1)
9925         if [[ -n $target ]]; then
9926                 obdecho_test "$target" ost1 "$pages" ||
9927                         rc=${PIPESTATUS[0]}
9928         else
9929                 echo "there is no obdfilter target on ost1"
9930                 rc=2
9931         fi
9932         $rmmod_remote && do_facet ost1 "rmmod obdecho" || true
9933         return $rc
9934 }
9935 run_test 180c "test huge bulk I/O size on obdfilter, don't LASSERT"
9936
9937 test_181() { # bug 22177
9938         test_mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9939         # create enough files to index the directory
9940         createmany -o $DIR/$tdir/foobar 4000
9941         # print attributes for debug purpose
9942         lsattr -d .
9943         # open dir
9944         multiop_bg_pause $DIR/$tdir D_Sc || return 1
9945         MULTIPID=$!
9946         # remove the files & current working dir
9947         unlinkmany $DIR/$tdir/foobar 4000
9948         rmdir $DIR/$tdir
9949         kill -USR1 $MULTIPID
9950         wait $MULTIPID
9951         stat $DIR/$tdir && error "open-unlinked dir was not removed!"
9952         return 0
9953 }
9954 run_test 181 "Test open-unlinked dir ========================"
9955
9956 test_182() {
9957         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9958         # disable MDC RPC lock wouldn't crash client
9959         local fcount=1000
9960         local tcount=4
9961
9962         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9963 #define OBD_FAIL_MDC_RPCS_SEM           0x804
9964         $LCTL set_param fail_loc=0x804
9965
9966         for (( i=0; i < $tcount; i++ )) ; do
9967                 mkdir $DIR/$tdir/$i
9968                 createmany -o $DIR/$tdir/$i/f- $fcount &
9969         done
9970         wait
9971
9972         for (( i=0; i < $tcount; i++ )) ; do
9973                 unlinkmany $DIR/$tdir/$i/f- $fcount &
9974         done
9975         wait
9976
9977         rm -rf $DIR/$tdir
9978
9979         $LCTL set_param fail_loc=0
9980 }
9981 run_test 182 "Disable MDC RPCs semaphore wouldn't crash client ================"
9982
9983 test_183() { # LU-2275
9984         [[ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.3.56) ]] &&
9985                 skip "Need MDS version at least 2.3.56" && return
9986
9987         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
9988         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
9989         echo aaa > $DIR/$tdir/$tfile
9990
9991 #define OBD_FAIL_MDS_NEGATIVE_POSITIVE  0x148
9992         do_facet $SINGLEMDS $LCTL set_param fail_loc=0x148
9993
9994         ls -l $DIR/$tdir && error "ls succeeded, should have failed"
9995         cat $DIR/$tdir/$tfile && error "cat succeeded, should have failed"
9996
9997         do_facet $SINGLEMDS $LCTL set_param fail_loc=0
9998
9999         # Flush negative dentry cache
10000         touch $DIR/$tdir/$tfile
10001
10002         # We are not checking for any leaked references here, they'll
10003         # become evident next time we do cleanup with module unload.
10004         rm -rf $DIR/$tdir
10005 }
10006 run_test 183 "No crash or request leak in case of strange dispositions ========"
10007
10008 # test suite 184 is for LU-2016, LU-2017
10009 test_184a() {
10010         check_swap_layouts_support && return 0
10011
10012         dir0=$DIR/$tdir/$testnum
10013         test_mkdir -p $dir0 || error "creating dir $dir0"
10014         ref1=/etc/passwd
10015         ref2=/etc/group
10016         file1=$dir0/f1
10017         file2=$dir0/f2
10018         $SETSTRIPE -c1 $file1
10019         cp $ref1 $file1
10020         $SETSTRIPE -c2 $file2
10021         cp $ref2 $file2
10022         gen1=$($GETSTRIPE -g $file1)
10023         gen2=$($GETSTRIPE -g $file2)
10024
10025         $LFS swap_layouts $file1 $file2 || error "swap of file layout failed"
10026         gen=$($GETSTRIPE -g $file1)
10027         [[ $gen1 != $gen ]] ||
10028                 "Layout generation on $file1 does not change"
10029         gen=$($GETSTRIPE -g $file2)
10030         [[ $gen2 != $gen ]] ||
10031                 "Layout generation on $file2 does not change"
10032
10033         cmp $ref1 $file2 || error "content compare failed ($ref1 != $file2)"
10034         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
10035 }
10036 run_test 184a "Basic layout swap"
10037
10038 test_184b() {
10039         check_swap_layouts_support && return 0
10040
10041         dir0=$DIR/$tdir/$testnum
10042         mkdir -p $dir0 || error "creating dir $dir0"
10043         file1=$dir0/f1
10044         file2=$dir0/f2
10045         file3=$dir0/f3
10046         dir1=$dir0/d1
10047         dir2=$dir0/d2
10048         mkdir $dir1 $dir2
10049         $SETSTRIPE -c1 $file1
10050         $SETSTRIPE -c2 $file2
10051         $SETSTRIPE -c1 $file3
10052         chown $RUNAS_ID $file3
10053         gen1=$($GETSTRIPE -g $file1)
10054         gen2=$($GETSTRIPE -g $file2)
10055
10056         $LFS swap_layouts $dir1 $dir2 &&
10057                 error "swap of directories layouts should fail"
10058         $LFS swap_layouts $dir1 $file1 &&
10059                 error "swap of directory and file layouts should fail"
10060         $RUNAS $LFS swap_layouts $file1 $file2 &&
10061                 error "swap of file we cannot write should fail"
10062         $LFS swap_layouts $file1 $file3 &&
10063                 error "swap of file with different owner should fail"
10064         /bin/true # to clear error code
10065 }
10066 run_test 184b "Forbidden layout swap (will generate errors)"
10067
10068 test_184c() {
10069         check_swap_layouts_support && return 0
10070
10071         local dir0=$DIR/$tdir/$testnum
10072         mkdir -p $dir0 || error "creating dir $dir0"
10073
10074         local ref1=$dir0/ref1
10075         local ref2=$dir0/ref2
10076         local file1=$dir0/file1
10077         local file2=$dir0/file2
10078         # create a file large enough for the concurent test
10079         dd if=/dev/urandom of=$ref1 bs=1M count=$((RANDOM % 50 + 20))
10080         dd if=/dev/urandom of=$ref2 bs=1M count=$((RANDOM % 50 + 20))
10081         echo "ref file size: ref1(`stat -c %s $ref1`), ref2(`stat -c %s $ref2`)"
10082
10083         cp $ref2 $file2
10084         dd if=$ref1 of=$file1 bs=16k &
10085         local DD_PID=$!
10086
10087         # Make sure dd starts to copy file
10088         while [ ! -f $file1 ]; do sleep 0.1; done
10089
10090         $LFS swap_layouts $file1 $file2
10091         local rc=$?
10092         wait $DD_PID
10093         [[ $? == 0 ]] || error "concurrent write on $file1 failed"
10094         [[ $rc == 0 ]] || error "swap of $file1 and $file2 failed"
10095
10096         # how many bytes copied before swapping layout
10097         local copied=`stat -c %s $file2`
10098         local remaining=`stat -c %s $ref1`
10099         remaining=$((remaining - copied))
10100         echo "Copied $copied bytes before swapping layout..."
10101
10102         cmp -n $copied $file1 $ref2 | grep differ &&
10103                 error "Content mismatch [0, $copied) of ref2 and file1"
10104         cmp -n $copied $file2 $ref1 ||
10105                 error "Content mismatch [0, $copied) of ref1 and file2"
10106         cmp -i $copied:$copied -n $remaining $file1 $ref1 ||
10107                 error "Content mismatch [$copied, EOF) of ref1 and file1"
10108
10109         # clean up
10110         rm -f $ref1 $ref2 $file1 $file2
10111 }
10112 run_test 184c "Concurrent write and layout swap"
10113
10114 test_184d() {
10115         check_swap_layouts_support && return 0
10116
10117         local file1=$DIR/$tdir/$tfile-1
10118         local file2=$DIR/$tdir/$tfile-2
10119         local file3=$DIR/$tdir/$tfile-3
10120         local lovea1
10121         local lovea2
10122
10123         mkdir -p $DIR/$tdir
10124         touch $file1 || error "create $file1 failed"
10125         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file2 ||
10126                 error "create $file2 failed"
10127         $OPENFILE -f O_CREAT:O_LOV_DELAY_CREATE $file3 ||
10128                 error "create $file3 failed"
10129         lovea1=$($LFS getstripe $file1 | sed 1d)
10130
10131         $LFS swap_layouts $file2 $file3 ||
10132                 error "swap $file2 $file3 layouts failed"
10133         $LFS swap_layouts $file1 $file2 ||
10134                 error "swap $file1 $file2 layouts failed"
10135
10136         lovea2=$($LFS getstripe $file2 | sed 1d)
10137         [ "$lovea1" == "$lovea2" ] || error "lovea $lovea1 != $lovea2"
10138
10139         lovea1=$(getfattr -n trusted.lov $file1 | grep ^trusted)
10140         [ -z $lovea1 ] || error "$file1 shouldn't have lovea"
10141 }
10142 run_test 184d "allow stripeless layouts swap"
10143
10144
10145 test_185() { # LU-2441
10146         # LU-3553 - no volatile file support in old servers
10147         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.60) ]] ||
10148                 { skip "Need MDS version at least 2.3.60"; return 0; }
10149
10150         mkdir -p $DIR/$tdir || error "creating dir $DIR/$tdir"
10151         touch $DIR/$tdir/spoo
10152         local mtime1=$(stat -c "%Y" $DIR/$tdir)
10153         local fid=$($MULTIOP $DIR/$tdir VFw4096c) ||
10154                 error "cannot create/write a volatile file"
10155         $CHECKSTAT -t file $MOUNT/.lustre/fid/$fid 2>/dev/null &&
10156                 error "FID is still valid after close"
10157
10158         multiop_bg_pause $DIR/$tdir vVw4096_c
10159         local multi_pid=$!
10160
10161         local OLD_IFS=$IFS
10162         IFS=":"
10163         local fidv=($fid)
10164         IFS=$OLD_IFS
10165         # assume that the next FID for this client is sequential, since stdout
10166         # is unfortunately eaten by multiop_bg_pause
10167         local n=$((${fidv[1]} + 1))
10168         local next_fid="${fidv[0]}:$(printf "0x%x" $n):${fidv[2]}"
10169         $CHECKSTAT -t file $MOUNT/.lustre/fid/$next_fid ||
10170                 error "FID is missing before close"
10171         kill -USR1 $multi_pid
10172         # 1 second delay, so if mtime change we will see it
10173         sleep 1
10174         local mtime2=$(stat -c "%Y" $DIR/$tdir)
10175         [[ $mtime1 == $mtime2 ]] || error "mtime has changed"
10176 }
10177 run_test 185 "Volatile file support"
10178
10179 test_187a() {
10180         local dir0=$DIR/$tdir/$testnum
10181         mkdir -p $dir0 || error "creating dir $dir0"
10182
10183         local file=$dir0/file1
10184         dd if=/dev/urandom of=$file count=10 bs=1M conv=fsync
10185         local dv1=$($LFS data_version $file)
10186         dd if=/dev/urandom of=$file seek=10 count=1 bs=1M conv=fsync
10187         local dv2=$($LFS data_version $file)
10188         [[ $dv1 != $dv2 ]] ||
10189                 error "data version did not change on write $dv1 == $dv2"
10190
10191         # clean up
10192         rm -f $file1
10193 }
10194 run_test 187a "Test data version change"
10195
10196 test_187b() {
10197         local dir0=$DIR/$tdir/$testnum
10198         mkdir -p $dir0 || error "creating dir $dir0"
10199
10200         declare -a DV=$($MULTIOP $dir0 Vw1000xYw1000xY | cut -f3 -d" ")
10201         [[ ${DV[0]} != ${DV[1]} ]] ||
10202                 error "data version did not change on write"\
10203                       " ${DV[0]} == ${DV[1]}"
10204
10205         # clean up
10206         rm -f $file1
10207 }
10208 run_test 187b "Test data version change on volatile file"
10209
10210 # OST pools tests
10211 check_file_in_pool()
10212 {
10213         local file=$1
10214         local pool=$2
10215         local tlist="$3"
10216         local res=$($GETSTRIPE $file | grep 0x | cut -f2)
10217         for i in $res
10218         do
10219                 for t in $tlist ; do
10220                         [ "$i" -eq "$t" ] && continue 2
10221                 done
10222
10223                 echo "pool list: $tlist"
10224                 echo "striping: $res"
10225                 error_noexit "$file not allocated in $pool"
10226                 return 1
10227         done
10228         return 0
10229 }
10230
10231 pool_add() {
10232         echo "Creating new pool"
10233         local pool=$1
10234
10235         create_pool $FSNAME.$pool ||
10236                 { error_noexit "No pool created, result code $?"; return 1; }
10237         [ $($LFS pool_list $FSNAME | grep -c $pool) -eq 1 ] ||
10238                 { error_noexit "$pool not in lfs pool_list"; return 2; }
10239 }
10240
10241 pool_add_targets() {
10242         echo "Adding targets to pool"
10243         local pool=$1
10244         local first=$2
10245         local last=$3
10246         local step=${4:-1}
10247
10248         local list=$(seq $first $step $last)
10249
10250         local t=$(for i in $list; do printf "$FSNAME-OST%04x_UUID " $i; done)
10251         do_facet mgs $LCTL pool_add \
10252                         $FSNAME.$pool $FSNAME-OST[$first-$last/$step]
10253         wait_update $HOSTNAME "lctl get_param -n lov.$FSNAME-*.pools.$pool \
10254                         | sort -u | tr '\n' ' ' " "$t" || { 
10255                 error_noexit "Add to pool failed"
10256                 return 1
10257         }
10258         local lfscount=$($LFS pool_list $FSNAME.$pool | grep -c "\-OST")
10259         local addcount=$(((last - first) / step + 1))
10260         [ $lfscount -eq $addcount ] || {
10261                 error_noexit "lfs pool_list bad ost count" \
10262                                                 "$lfscount != $addcount"
10263                 return 2
10264         }
10265 }
10266
10267 pool_set_dir() {
10268         local pool=$1
10269         local tdir=$2
10270         echo "Setting pool on directory $tdir"
10271
10272         $SETSTRIPE -c 2 -p $pool $tdir && return 0
10273
10274         error_noexit "Cannot set pool $pool to $tdir"
10275         return 1
10276 }
10277
10278 pool_check_dir() {
10279         local pool=$1
10280         local tdir=$2
10281         echo "Checking pool on directory $tdir"
10282
10283         local res=$($GETSTRIPE --pool $tdir | sed "s/\s*$//")
10284         [ "$res" = "$pool" ] && return 0
10285
10286         error_noexit "Pool on '$tdir' is '$res', not '$pool'"
10287         return 1
10288 }
10289
10290 pool_dir_rel_path() {
10291         echo "Testing relative path works well"
10292         local pool=$1
10293         local tdir=$2
10294         local root=$3
10295
10296         mkdir -p $root/$tdir/$tdir
10297         cd $root/$tdir
10298         pool_set_dir $pool $tdir          || return 1
10299         pool_set_dir $pool ./$tdir        || return 2
10300         pool_set_dir $pool ../$tdir       || return 3
10301         pool_set_dir $pool ../$tdir/$tdir || return 4
10302         rm -rf $tdir; cd - > /dev/null
10303 }
10304
10305 pool_alloc_files() {
10306         echo "Checking files allocation from directory pool"
10307         local pool=$1
10308         local tdir=$2
10309         local count=$3
10310         local tlist="$4"
10311
10312         local failed=0
10313         for i in $(seq -w 1 $count)
10314         do
10315                 local file=$tdir/file-$i
10316                 touch $file
10317                 check_file_in_pool $file $pool "$tlist" || \
10318                         failed=$((failed + 1))
10319         done
10320         [ "$failed" = 0 ] && return 0
10321
10322         error_noexit "$failed files not allocated in $pool"
10323         return 1
10324 }
10325
10326 pool_create_files() {
10327         echo "Creating files in pool"
10328         local pool=$1
10329         local tdir=$2
10330         local count=$3
10331         local tlist="$4"
10332
10333         mkdir -p $tdir
10334         local failed=0
10335         for i in $(seq -w 1 $count)
10336         do
10337                 local file=$tdir/spoo-$i
10338                 $SETSTRIPE -p $pool $file
10339                 check_file_in_pool $file $pool "$tlist" || \
10340                         failed=$((failed + 1))
10341         done
10342         [ "$failed" = 0 ] && return 0
10343
10344         error_noexit "$failed files not allocated in $pool"
10345         return 1
10346 }
10347
10348 pool_lfs_df() {
10349         echo "Checking 'lfs df' output"
10350         local pool=$1
10351
10352         local t=$($LCTL get_param -n lov.$FSNAME-clilov-*.pools.$pool |
10353                         tr '\n' ' ')
10354         local res=$($LFS df --pool $FSNAME.$pool |
10355                         awk '{print $1}' |
10356                         grep "$FSNAME-OST" |
10357                         tr '\n' ' ')
10358         [ "$res" = "$t" ] && return 0
10359
10360         error_noexit "Pools OSTs '$t' is not '$res' that lfs df reports"
10361         return 1
10362 }
10363
10364 pool_file_rel_path() {
10365         echo "Creating files in a pool with relative pathname"
10366         local pool=$1
10367         local tdir=$2
10368
10369         mkdir -p $tdir ||
10370                 { error_noexit "unable to create $tdir"; return 1 ; }
10371         local file="/..$tdir/$tfile-1"
10372         $SETSTRIPE -p $pool $file ||
10373                 { error_noexit "unable to create $file" ; return 2 ; }
10374
10375         cd $tdir
10376         $SETSTRIPE -p $pool $tfile-2 || {
10377                 error_noexit "unable to create $tfile-2 in $tdir"
10378                 return 3
10379         }
10380 }
10381
10382 pool_remove_first_target() {
10383         echo "Removing first target from a pool"
10384         local pool=$1
10385
10386         local pname="lov.$FSNAME-*.pools.$pool"
10387         local t=$($LCTL get_param -n $pname | head -1)
10388         do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10389         wait_update $HOSTNAME "lctl get_param -n $pname | grep $t" "" || {
10390                 error_noexit "$t not removed from $FSNAME.$pool"
10391                 return 1
10392         }
10393 }
10394
10395 pool_remove_all_targets() {
10396         echo "Removing all targets from pool"
10397         local pool=$1
10398         local file=$2
10399         local pname="lov.$FSNAME-*.pools.$pool"
10400         for t in $($LCTL get_param -n $pname | sort -u)
10401         do
10402                 do_facet mgs $LCTL pool_remove $FSNAME.$pool $t
10403         done
10404         wait_update $HOSTNAME "lctl get_param -n $pname" "" || {
10405                 error_noexit "Pool $FSNAME.$pool cannot be drained"
10406                 return 1
10407         }
10408         # striping on an empty/nonexistant pool should fall back 
10409         # to "pool of everything"
10410         touch $file || {
10411                 error_noexit "failed to use fallback striping for empty pool"
10412                 return 2
10413         }
10414         # setstripe on an empty pool should fail
10415         $SETSTRIPE -p $pool $file 2>/dev/null && {
10416                 error_noexit "expected failure when creating file" \
10417                                                         "with empty pool"
10418                 return 3
10419         }
10420         return 0
10421 }
10422
10423 pool_remove() {
10424         echo "Destroying pool"
10425         local pool=$1
10426         local file=$2
10427
10428         do_facet mgs $LCTL pool_destroy $FSNAME.$pool
10429
10430         sleep 2
10431         # striping on an empty/nonexistant pool should fall back 
10432         # to "pool of everything"
10433         touch $file || {
10434                 error_noexit "failed to use fallback striping for missing pool"
10435                 return 1
10436         }
10437         # setstripe on an empty pool should fail
10438         $SETSTRIPE -p $pool $file 2>/dev/null && {
10439                 error_noexit "expected failure when creating file" \
10440                                                         "with missing pool"
10441                 return 2
10442         }
10443
10444         # get param should return err once pool is gone
10445         if wait_update $HOSTNAME "lctl get_param -n \
10446                 lov.$FSNAME-*.pools.$pool 2>/dev/null || echo foo" "foo"
10447         then
10448                 remove_pool_from_list $FSNAME.$pool
10449                 return 0
10450         fi
10451         error_noexit "Pool $FSNAME.$pool is not destroyed"
10452         return 3
10453 }
10454
10455 test_200() {
10456         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10457         remote_mgs_nodsh && skip "remote MGS with nodsh" && return
10458
10459         local POOL=${POOL:-cea1}
10460         local POOL_ROOT=${POOL_ROOT:-$DIR/d200.pools}
10461         local POOL_DIR_NAME=${POOL_DIR_NAME:-dir_tst}
10462         # Pool OST targets
10463         local first_ost=0
10464         local last_ost=$(($OSTCOUNT - 1))
10465         local ost_step=2
10466         local ost_list=$(seq $first_ost $ost_step $last_ost)
10467         local ost_range="$first_ost $last_ost $ost_step"
10468         local test_path=$POOL_ROOT/$POOL_DIR_NAME
10469         local file_dir=$POOL_ROOT/file_tst
10470
10471         local rc=0
10472         while : ; do
10473                 # former test_200a test_200b
10474                 pool_add $POOL                          || { rc=$? ; break; }
10475                 pool_add_targets  $POOL $ost_range      || { rc=$? ; break; }
10476                 # former test_200c test_200d
10477                 mkdir -p $test_path
10478                 pool_set_dir      $POOL $test_path      || { rc=$? ; break; }
10479                 pool_check_dir    $POOL $test_path      || { rc=$? ; break; }
10480                 pool_dir_rel_path $POOL $POOL_DIR_NAME $POOL_ROOT \
10481                                                         || { rc=$? ; break; }
10482                 # former test_200e test_200f
10483                 local files=$((OSTCOUNT*3))
10484                 pool_alloc_files  $POOL $test_path $files "$ost_list" \
10485                                                         || { rc=$? ; break; }
10486                 pool_create_files $POOL $file_dir $files "$ost_list" \
10487                                                         || { rc=$? ; break; }
10488                 # former test_200g test_200h
10489                 pool_lfs_df $POOL                       || { rc=$? ; break; }
10490                 pool_file_rel_path $POOL $test_path     || { rc=$? ; break; }
10491
10492                 # former test_201a test_201b test_201c
10493                 pool_remove_first_target $POOL          || { rc=$? ; break; }
10494
10495                 local f=$test_path/$tfile
10496                 pool_remove_all_targets $POOL $f        || { rc=$? ; break; }
10497                 pool_remove $POOL $f                    || { rc=$? ; break; }
10498                 break
10499         done
10500
10501         cleanup_pools
10502         return $rc
10503 }
10504 run_test 200 "OST pools"
10505
10506 # usage: default_attr <count | size | offset>
10507 default_attr() {
10508         $LCTL get_param -n lov.$FSNAME-clilov-\*.stripe${1}
10509 }
10510
10511 # usage: check_default_stripe_attr
10512 check_default_stripe_attr() {
10513         ACTUAL=$($GETSTRIPE $* $DIR/$tdir)
10514         case $1 in
10515         --stripe-count|--count)
10516                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr count);;
10517         --stripe-size|--size)
10518                 [ -n "$2" ] && EXPECTED=0 || EXPECTED=$(default_attr size);;
10519         --stripe-index|--index)
10520                 EXPECTED=-1;;
10521         *)
10522                 error "unknown getstripe attr '$1'"
10523         esac
10524
10525         [ $ACTUAL != $EXPECTED ] &&
10526                 error "$DIR/$tdir has $1 '$ACTUAL', not '$EXPECTED'"
10527 }
10528
10529 test_204a() {
10530         test_mkdir -p $DIR/$tdir
10531         $SETSTRIPE --stripe-count 0 --stripe-size 0 --stripe-index -1 $DIR/$tdir
10532
10533         check_default_stripe_attr --stripe-count
10534         check_default_stripe_attr --stripe-size
10535         check_default_stripe_attr --stripe-index
10536
10537         return 0
10538 }
10539 run_test 204a "Print default stripe attributes ================="
10540
10541 test_204b() {
10542         test_mkdir -p $DIR/$tdir
10543         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10544
10545         check_default_stripe_attr --stripe-size
10546         check_default_stripe_attr --stripe-index
10547
10548         return 0
10549 }
10550 run_test 204b "Print default stripe size and offset  ==========="
10551
10552 test_204c() {
10553         test_mkdir -p $DIR/$tdir
10554         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10555
10556         check_default_stripe_attr --stripe-count
10557         check_default_stripe_attr --stripe-index
10558
10559         return 0
10560 }
10561 run_test 204c "Print default stripe count and offset ==========="
10562
10563 test_204d() {
10564         test_mkdir -p $DIR/$tdir
10565         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10566
10567         check_default_stripe_attr --stripe-count
10568         check_default_stripe_attr --stripe-size
10569
10570         return 0
10571 }
10572 run_test 204d "Print default stripe count and size ============="
10573
10574 test_204e() {
10575         test_mkdir -p $DIR/$tdir
10576         $SETSTRIPE -d $DIR/$tdir
10577
10578         check_default_stripe_attr --stripe-count --raw
10579         check_default_stripe_attr --stripe-size --raw
10580         check_default_stripe_attr --stripe-index --raw
10581
10582         return 0
10583 }
10584 run_test 204e "Print raw stripe attributes ================="
10585
10586 test_204f() {
10587         test_mkdir -p $DIR/$tdir
10588         $SETSTRIPE --stripe-count 1 $DIR/$tdir
10589
10590         check_default_stripe_attr --stripe-size --raw
10591         check_default_stripe_attr --stripe-index --raw
10592
10593         return 0
10594 }
10595 run_test 204f "Print raw stripe size and offset  ==========="
10596
10597 test_204g() {
10598         test_mkdir -p $DIR/$tdir
10599         $SETSTRIPE --stripe-size 65536 $DIR/$tdir
10600
10601         check_default_stripe_attr --stripe-count --raw
10602         check_default_stripe_attr --stripe-index --raw
10603
10604         return 0
10605 }
10606 run_test 204g "Print raw stripe count and offset ==========="
10607
10608 test_204h() {
10609         test_mkdir -p $DIR/$tdir
10610         $SETSTRIPE --stripe-index 0 $DIR/$tdir
10611
10612         check_default_stripe_attr --stripe-count --raw
10613         check_default_stripe_attr --stripe-size --raw
10614
10615         return 0
10616 }
10617 run_test 204h "Print raw stripe count and size ============="
10618
10619 # Figure out which job scheduler is being used, if any,
10620 # or use a fake one
10621 if [ -n "$SLURM_JOB_ID" ]; then # SLURM
10622         JOBENV=SLURM_JOB_ID
10623 elif [ -n "$LSB_JOBID" ]; then # Load Sharing Facility
10624         JOBENV=LSB_JOBID
10625 elif [ -n "$PBS_JOBID" ]; then # PBS/Maui/Moab
10626         JOBENV=PBS_JOBID
10627 elif [ -n "$LOADL_STEPID" ]; then # LoadLeveller
10628         JOBENV=LOADL_STEP_ID
10629 elif [ -n "$JOB_ID" ]; then # Sun Grid Engine
10630         JOBENV=JOB_ID
10631 else
10632         JOBENV=FAKE_JOBID
10633 fi
10634
10635 verify_jobstats() {
10636         local cmd=$1
10637         local target=$2
10638
10639         # clear old jobstats
10640         do_facet $SINGLEMDS lctl set_param mdt.*.job_stats="clear"
10641         do_facet ost1 lctl set_param obdfilter.*.job_stats="clear"
10642
10643         # use a new JobID for this test, or we might see an old one
10644         [ "$JOBENV" = "FAKE_JOBID" ] && FAKE_JOBID=test_id.$testnum.$RANDOM
10645
10646         JOBVAL=${!JOBENV}
10647         log "Test: $cmd"
10648         log "Using JobID environment variable $JOBENV=$JOBVAL"
10649
10650         if [ $JOBENV = "FAKE_JOBID" ]; then
10651                 FAKE_JOBID=$JOBVAL $cmd
10652         else
10653                 $cmd
10654         fi
10655
10656         if [ "$target" = "mdt" -o "$target" = "both" ]; then
10657                 FACET="$SINGLEMDS" # will need to get MDS number for DNE
10658                 do_facet $FACET lctl get_param mdt.*.job_stats |
10659                         grep $JOBVAL || error "No job stats found on MDT $FACET"
10660         fi
10661         if [ "$target" = "ost" -o "$target" = "both" ]; then
10662                 FACET=ost1
10663                 do_facet $FACET lctl get_param obdfilter.*.job_stats |
10664                         grep $JOBVAL || error "No job stats found on OST $FACET"
10665         fi
10666 }
10667
10668 jobstats_set() {
10669         trap 0
10670         NEW_JOBENV=${1:-$OLD_JOBENV}
10671         do_facet mgs $LCTL conf_param $FSNAME.sys.jobid_var=$NEW_JOBENV
10672         wait_update $HOSTNAME "$LCTL get_param -n jobid_var" $NEW_JOBENV
10673 }
10674
10675 test_205() { # Job stats
10676         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10677         [ -z "$(lctl get_param -n mdc.*.connect_flags | grep jobstats)" ] &&
10678                 skip "Server doesn't support jobstats" && return 0
10679
10680         local cmd
10681         OLD_JOBENV=`$LCTL get_param -n jobid_var`
10682         if [ $OLD_JOBENV != $JOBENV ]; then
10683                 jobstats_set $JOBENV
10684                 trap jobstats_set EXIT
10685         fi
10686
10687         # mkdir
10688         cmd="mkdir $DIR/$tfile"
10689         verify_jobstats "$cmd" "mdt"
10690         # rmdir
10691         cmd="rm -fr $DIR/$tfile"
10692         verify_jobstats "$cmd" "mdt"
10693         # mknod
10694         cmd="mknod $DIR/$tfile c 1 3"
10695         verify_jobstats "$cmd" "mdt"
10696         # unlink
10697         cmd="rm -f $DIR/$tfile"
10698         verify_jobstats "$cmd" "mdt"
10699         # open & close
10700         cmd="$SETSTRIPE -i 0 -c 1 $DIR/$tfile"
10701         verify_jobstats "$cmd" "mdt"
10702         # setattr
10703         cmd="touch $DIR/$tfile"
10704         verify_jobstats "$cmd" "both"
10705         # write
10706         cmd="dd if=/dev/zero of=$DIR/$tfile bs=1M count=1 oflag=sync"
10707         verify_jobstats "$cmd" "ost"
10708         # read
10709         cmd="dd if=$DIR/$tfile of=/dev/null bs=1M count=1 iflag=direct"
10710         verify_jobstats "$cmd" "ost"
10711         # truncate
10712         cmd="$TRUNCATE $DIR/$tfile 0"
10713         verify_jobstats "$cmd" "both"
10714         # rename
10715         cmd="mv -f $DIR/$tfile $DIR/jobstats_test_rename"
10716         verify_jobstats "$cmd" "mdt"
10717
10718         # cleanup
10719         rm -f $DIR/jobstats_test_rename
10720
10721         [ $OLD_JOBENV != $JOBENV ] && jobstats_set $OLD_JOBENV
10722 }
10723 run_test 205 "Verify job stats"
10724
10725 # LU-1480, LU-1773 and LU-1657
10726 test_206() {
10727         mkdir -p $DIR/$tdir
10728         lfs setstripe -c -1 $DIR/$tdir
10729 #define OBD_FAIL_LOV_INIT 0x1403
10730         $LCTL set_param fail_loc=0xa0001403
10731         $LCTL set_param fail_val=1
10732         touch $DIR/$tdir/$tfile || true
10733 }
10734 run_test 206 "fail lov_init_raid0() doesn't lbug"
10735
10736 test_207a() {
10737         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10738         local fsz=`stat -c %s $DIR/$tfile`
10739         cancel_lru_locks mdc
10740
10741         # do not return layout in getattr intent
10742 #define OBD_FAIL_MDS_NO_LL_GETATTR 0x170
10743         $LCTL set_param fail_loc=0x170
10744         local sz=`stat -c %s $DIR/$tfile`
10745
10746         [ $fsz -eq $sz ] || error "file size expected $fsz, actual $sz"
10747
10748         rm -rf $DIR/$tfile
10749 }
10750 run_test 207a "can refresh layout at glimpse"
10751
10752 test_207b() {
10753         dd if=/dev/zero of=$DIR/$tfile bs=4k count=$((RANDOM%10+1))
10754         local cksum=`md5sum $DIR/$tfile`
10755         local fsz=`stat -c %s $DIR/$tfile`
10756         cancel_lru_locks mdc
10757         cancel_lru_locks osc
10758
10759         # do not return layout in getattr intent
10760 #define OBD_FAIL_MDS_NO_LL_OPEN 0x171
10761         $LCTL set_param fail_loc=0x171
10762
10763         # it will refresh layout after the file is opened but before read issues
10764         echo checksum is "$cksum"
10765         echo "$cksum" |md5sum -c --quiet || error "file differs"
10766
10767         rm -rf $DIR/$tfile
10768 }
10769 run_test 207b "can refresh layout at open"
10770
10771 test_208() {
10772         # FIXME: in this test suite, only RD lease is used. This is okay
10773         # for now as only exclusive open is supported. After generic lease
10774         # is done, this test suite should be revised. - Jinshan
10775
10776         [[ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.4.52) ]] ||
10777                 { skip "Need MDS version at least 2.4.52"; return 0; }
10778
10779         echo "==== test 1: verify get lease work"
10780         $MULTIOP $DIR/$tfile oO_CREAT:O_RDWR:eRE+eU || error "get lease error"
10781
10782         echo "==== test 2: verify lease can be broken by upcoming open"
10783         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10784         local PID=$!
10785         sleep 1
10786
10787         $MULTIOP $DIR/$tfile oO_RDONLY:c
10788         kill -USR1 $PID && wait $PID || error "break lease error"
10789
10790         echo "==== test 3: verify lease can't be granted if an open already exists"
10791         $MULTIOP $DIR/$tfile oO_RDONLY:_c &
10792         local PID=$!
10793         sleep 1
10794
10795         $MULTIOP $DIR/$tfile oO_RDONLY:eReUc && error "apply lease should fail"
10796         kill -USR1 $PID && wait $PID || error "open file error"
10797
10798         echo "==== test 4: lease can sustain over recovery"
10799         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E+eUc &
10800         PID=$!
10801         sleep 1
10802
10803         fail mds1
10804
10805         kill -USR1 $PID && wait $PID || error "lease broken over recovery"
10806
10807         echo "==== test 5: lease broken can't be regained by replay"
10808         $MULTIOP $DIR/$tfile oO_RDONLY:eR_E-eUc &
10809         PID=$!
10810         sleep 1
10811
10812         # open file to break lease and then recovery
10813         $MULTIOP $DIR/$tfile oO_RDWR:c || error "open file error"
10814         fail mds1
10815
10816         kill -USR1 $PID && wait $PID || error "lease not broken over recovery"
10817
10818         rm -f $DIR/$tfile
10819 }
10820 run_test 208 "Exclusive open"
10821
10822 test_212() {
10823         size=`date +%s`
10824         size=$((size % 8192 + 1))
10825         dd if=/dev/urandom of=$DIR/f212 bs=1k count=$size
10826         sendfile $DIR/f212 $DIR/f212.xyz || error "sendfile wrong"
10827         rm -f $DIR/f212 $DIR/f212.xyz
10828 }
10829 run_test 212 "Sendfile test ============================================"
10830
10831 test_213() {
10832         dd if=/dev/zero of=$DIR/$tfile bs=4k count=4
10833         cancel_lru_locks osc
10834         lctl set_param fail_loc=0x8000040f
10835         # generate a read lock
10836         cat $DIR/$tfile > /dev/null
10837         # write to the file, it will try to cancel the above read lock.
10838         cat /etc/hosts >> $DIR/$tfile
10839 }
10840 run_test 213 "OSC lock completion and cancel race don't crash - bug 18829"
10841
10842 test_214() { # for bug 20133
10843         mkdir -p $DIR/$tdir/d214c || error "mkdir $DIR/$tdir/d214c failed"
10844         for (( i=0; i < 340; i++ )) ; do
10845                 touch $DIR/$tdir/d214c/a$i
10846         done
10847
10848         ls -l $DIR/$tdir || error "ls -l $DIR/d214p failed"
10849         mv $DIR/$tdir/d214c $DIR/ || error "mv $DIR/d214p/d214c $DIR/ failed"
10850         ls $DIR/d214c || error "ls $DIR/d214c failed"
10851         rm -rf $DIR/$tdir || error "rm -rf $DIR/d214* failed"
10852         rm -rf $DIR/d214* || error "rm -rf $DIR/d214* failed"
10853 }
10854 run_test 214 "hash-indexed directory test - bug 20133"
10855
10856 # having "abc" as 1st arg, creates $TMP/lnet_abc.out and $TMP/lnet_abc.sys
10857 create_lnet_proc_files() {
10858         cat /proc/sys/lnet/$1 >$TMP/lnet_$1.out || error "cannot read /proc/sys/lnet/$1"
10859         sysctl lnet.$1 >$TMP/lnet_$1.sys_tmp || error "cannot read lnet.$1"
10860
10861         sed "s/^lnet.$1\ =\ //g" "$TMP/lnet_$1.sys_tmp" >$TMP/lnet_$1.sys
10862         rm -f "$TMP/lnet_$1.sys_tmp"
10863 }
10864
10865 # counterpart of create_lnet_proc_files
10866 remove_lnet_proc_files() {
10867         rm -f $TMP/lnet_$1.out $TMP/lnet_$1.sys
10868 }
10869
10870 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10871 # 3rd arg as regexp for body
10872 check_lnet_proc_stats() {
10873         local l=$(cat "$TMP/lnet_$1" |wc -l)
10874         [ $l = 1 ] || (cat "$TMP/lnet_$1" && error "$2 is not of 1 line: $l")
10875
10876         grep -E "$3" "$TMP/lnet_$1" || (cat "$TMP/lnet_$1" && error "$2 misformatted")
10877 }
10878
10879 # uses 1st arg as trailing part of filename, 2nd arg as description for reports,
10880 # 3rd arg as regexp for body, 4th arg as regexp for 1st line, 5th arg is
10881 # optional and can be regexp for 2nd line (lnet.routes case)
10882 check_lnet_proc_entry() {
10883         local blp=2            # blp stands for 'position of 1st line of body'
10884         [ "$5" = "" ] || blp=3 # lnet.routes case
10885
10886         local l=$(cat "$TMP/lnet_$1" |wc -l)
10887         # subtracting one from $blp because the body can be empty
10888         [ "$l" -ge "$(($blp - 1))" ] || (cat "$TMP/lnet_$1" && error "$2 is too short: $l")
10889
10890         sed -n '1 p' "$TMP/lnet_$1" |grep -E "$4" >/dev/null ||
10891                 (cat "$TMP/lnet_$1" && error "1st line of $2 misformatted")
10892
10893         [ "$5" = "" ] || sed -n '2 p' "$TMP/lnet_$1" |grep -E "$5" >/dev/null ||
10894                 (cat "$TMP/lnet_$1" && error "2nd line of $2 misformatted")
10895
10896         # bail out if any unexpected line happened
10897         sed -n "$blp~1 p" "$TMP/lnet_$1" |grep -Ev "$3"
10898         [ "$?" != 0 ] || error "$2 misformatted"
10899 }
10900
10901 test_215() { # for bugs 18102, 21079, 21517
10902         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10903         local N='(0|[1-9][0-9]*)'       # non-negative numeric
10904         local P='[1-9][0-9]*'           # positive numeric
10905         local I='(0|-?[1-9][0-9]*|NA)'  # any numeric (0 | >0 | <0) or NA if no value
10906         local NET='[a-z][a-z0-9]*'      # LNET net like o2ib2
10907         local ADDR='[0-9.]+'            # LNET addr like 10.0.0.1
10908         local NID="$ADDR@$NET"          # LNET nid like 10.0.0.1@o2ib2
10909
10910         local L1 # regexp for 1st line
10911         local L2 # regexp for 2nd line (optional)
10912         local BR # regexp for the rest (body)
10913
10914         # /proc/sys/lnet/stats should look as 11 space-separated non-negative numerics
10915         BR="^$N $N $N $N $N $N $N $N $N $N $N$"
10916         create_lnet_proc_files "stats"
10917         check_lnet_proc_stats "stats.out" "/proc/sys/lnet/stats" "$BR"
10918         check_lnet_proc_stats "stats.sys" "lnet.stats" "$BR"
10919         remove_lnet_proc_files "stats"
10920
10921         # /proc/sys/lnet/routes should look like this:
10922         # Routing disabled/enabled
10923         # net hops priority state router
10924         # where net is a string like tcp0, hops > 0, priority >= 0,
10925         # state is up/down,
10926         # router is a string like 192.168.1.1@tcp2
10927         L1="^Routing (disabled|enabled)$"
10928         L2="^net +hops +priority +state +router$"
10929         BR="^$NET +$N +(0|1) +(up|down) +$NID$"
10930         create_lnet_proc_files "routes"
10931         check_lnet_proc_entry "routes.out" "/proc/sys/lnet/routes" "$BR" "$L1" "$L2"
10932         check_lnet_proc_entry "routes.sys" "lnet.routes" "$BR" "$L1" "$L2"
10933         remove_lnet_proc_files "routes"
10934
10935         # /proc/sys/lnet/routers should look like this:
10936         # ref rtr_ref alive_cnt state last_ping ping_sent deadline down_ni router
10937         # where ref > 0, rtr_ref > 0, alive_cnt >= 0, state is up/down,
10938         # last_ping >= 0, ping_sent is boolean (0/1), deadline and down_ni are
10939         # numeric (0 or >0 or <0), router is a string like 192.168.1.1@tcp2
10940         L1="^ref +rtr_ref +alive_cnt +state +last_ping +ping_sent +deadline +down_ni +router$"
10941         BR="^$P +$P +$N +(up|down) +$N +(0|1) +$I +$I +$NID$"
10942         create_lnet_proc_files "routers"
10943         check_lnet_proc_entry "routers.out" "/proc/sys/lnet/routers" "$BR" "$L1"
10944         check_lnet_proc_entry "routers.sys" "lnet.routers" "$BR" "$L1"
10945         remove_lnet_proc_files "routers"
10946
10947         # /proc/sys/lnet/peers should look like this:
10948         # nid refs state last max rtr min tx min queue
10949         # where nid is a string like 192.168.1.1@tcp2, refs > 0,
10950         # state is up/down/NA, max >= 0. last, rtr, min, tx, min are
10951         # numeric (0 or >0 or <0), queue >= 0.
10952         L1="^nid +refs +state +last +max +rtr +min +tx +min +queue$"
10953         BR="^$NID +$P +(up|down|NA) +$I +$N +$I +$I +$I +$I +$N$"
10954         create_lnet_proc_files "peers"
10955         check_lnet_proc_entry "peers.out" "/proc/sys/lnet/peers" "$BR" "$L1"
10956         check_lnet_proc_entry "peers.sys" "lnet.peers" "$BR" "$L1"
10957         remove_lnet_proc_files "peers"
10958
10959         # /proc/sys/lnet/buffers  should look like this:
10960         # pages count credits min
10961         # where pages >=0, count >=0, credits and min are numeric (0 or >0 or <0)
10962         L1="^pages +count +credits +min$"
10963         BR="^ +$N +$N +$I +$I$"
10964         create_lnet_proc_files "buffers"
10965         check_lnet_proc_entry "buffers.out" "/proc/sys/lnet/buffers" "$BR" "$L1"
10966         check_lnet_proc_entry "buffers.sys" "lnet.buffers" "$BR" "$L1"
10967         remove_lnet_proc_files "buffers"
10968
10969         # /proc/sys/lnet/nis should look like this:
10970         # nid status alive refs peer rtr max tx min
10971         # where nid is a string like 192.168.1.1@tcp2, status is up/down,
10972         # alive is numeric (0 or >0 or <0), refs >= 0, peer >= 0,
10973         # rtr >= 0, max >=0, tx and min are numeric (0 or >0 or <0).
10974         L1="^nid +status +alive +refs +peer +rtr +max +tx +min$"
10975         BR="^$NID +(up|down) +$I +$N +$N +$N +$N +$I +$I$"
10976         create_lnet_proc_files "nis"
10977         check_lnet_proc_entry "nis.out" "/proc/sys/lnet/nis" "$BR" "$L1"
10978         check_lnet_proc_entry "nis.sys" "lnet.nis" "$BR" "$L1"
10979         remove_lnet_proc_files "nis"
10980
10981         # can we successfully write to /proc/sys/lnet/stats?
10982         echo "0" >/proc/sys/lnet/stats || error "cannot write to /proc/sys/lnet/stats"
10983         sysctl -w lnet.stats=0 || error "cannot write to lnet.stats"
10984 }
10985 run_test 215 "/proc/sys/lnet exists and has proper content - bugs 18102, 21079, 21517"
10986
10987 test_216() { # bug 20317
10988         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
10989         remote_ost_nodsh && skip "remote OST with nodsh" && return
10990
10991         local node
10992         local facets=$(get_facets OST)
10993         local p="$TMP/$TESTSUITE-$TESTNAME.parameters"
10994
10995         save_lustre_params client "osc.*.contention_seconds" > $p
10996         save_lustre_params $facets \
10997                 "ldlm.namespaces.filter-*.max_nolock_bytes" >> $p
10998         save_lustre_params $facets \
10999                 "ldlm.namespaces.filter-*.contended_locks" >> $p
11000         save_lustre_params $facets \
11001                 "ldlm.namespaces.filter-*.contention_seconds" >> $p
11002         clear_osc_stats
11003
11004         # agressive lockless i/o settings
11005         for node in $(osts_nodes); do
11006                 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'
11007         done
11008         lctl set_param -n osc.*.contention_seconds 60
11009
11010         $DIRECTIO write $DIR/$tfile 0 10 4096
11011         $CHECKSTAT -s 40960 $DIR/$tfile
11012
11013         # disable lockless i/o
11014         for node in $(osts_nodes); do
11015                 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'
11016         done
11017         lctl set_param -n osc.*.contention_seconds 0
11018         clear_osc_stats
11019
11020         dd if=/dev/zero of=$DIR/$tfile count=0
11021         $CHECKSTAT -s 0 $DIR/$tfile
11022
11023         restore_lustre_params <$p
11024         rm -f $p
11025         rm $DIR/$tfile
11026 }
11027 run_test 216 "check lockless direct write works and updates file size and kms correctly"
11028
11029 test_217() { # bug 22430
11030         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11031         local node
11032         local nid
11033
11034         for node in $(nodes_list); do
11035                 nid=$(host_nids_address $node $NETTYPE)
11036                 if [[ $nid = *-* ]] ; then
11037                         echo "lctl ping $nid@$NETTYPE"
11038                         lctl ping $nid@$NETTYPE
11039                 else
11040                         echo "skipping $node (no hyphen detected)"
11041                 fi
11042         done
11043 }
11044 run_test 217 "check lctl ping for hostnames with hiphen ('-')"
11045
11046 test_218() {
11047        # do directio so as not to populate the page cache
11048        log "creating a 10 Mb file"
11049        $MULTIOP $DIR/$tfile oO_CREAT:O_DIRECT:O_RDWR:w$((10*1048576))c || error "multiop failed while creating a file"
11050        log "starting reads"
11051        dd if=$DIR/$tfile of=/dev/null bs=4096 &
11052        log "truncating the file"
11053        $MULTIOP $DIR/$tfile oO_TRUNC:c || error "multiop failed while truncating the file"
11054        log "killing dd"
11055        kill %+ || true # reads might have finished
11056        echo "wait until dd is finished"
11057        wait
11058        log "removing the temporary file"
11059        rm -rf $DIR/$tfile || error "tmp file removal failed"
11060 }
11061 run_test 218 "parallel read and truncate should not deadlock ======================="
11062
11063 test_219() {
11064         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11065         # write one partial page
11066         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1
11067         # set no grant so vvp_io_commit_write will do sync write
11068         $LCTL set_param fail_loc=0x411
11069         # write a full page at the end of file
11070         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=1 conv=notrunc
11071
11072         $LCTL set_param fail_loc=0
11073         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 seek=3
11074         $LCTL set_param fail_loc=0x411
11075         dd if=/dev/zero of=$DIR/$tfile bs=1024 count=1 seek=2 conv=notrunc
11076 }
11077 run_test 219 "LU-394: Write partial won't cause uncontiguous pages vec at LND"
11078
11079 test_220() { #LU-325
11080         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11081         remote_ost_nodsh && skip "remote OST with nodsh" && return
11082         local OSTIDX=0
11083
11084         test_mkdir -p $DIR/$tdir
11085         local OST=$(lfs osts | grep ${OSTIDX}": " | \
11086                 awk '{print $2}' | sed -e 's/_UUID$//')
11087
11088         # on the mdt's osc
11089         local mdtosc_proc1=$(get_mdtosc_proc_path $SINGLEMDS $OST)
11090         local last_id=$(do_facet $SINGLEMDS lctl get_param -n \
11091                         osc.$mdtosc_proc1.prealloc_last_id)
11092         local next_id=$(do_facet $SINGLEMDS lctl get_param -n \
11093                         osc.$mdtosc_proc1.prealloc_next_id)
11094
11095         $LFS df -i
11096
11097         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=-1
11098         #define OBD_FAIL_OST_ENOINO              0x229
11099         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0x229
11100         do_facet mgs $LCTL pool_new $FSNAME.$TESTNAME || return 1
11101         do_facet mgs $LCTL pool_add $FSNAME.$TESTNAME $OST || return 2
11102
11103         $SETSTRIPE $DIR/$tdir -i $OSTIDX -c 1 -p $FSNAME.$TESTNAME
11104
11105         MDSOBJS=$((last_id - next_id))
11106         echo "preallocated objects on MDS is $MDSOBJS" "($last_id - $next_id)"
11107
11108         blocks=$($LFS df $MOUNT | awk '($1 == '$OSTIDX') { print $4 }')
11109         echo "OST still has $count kbytes free"
11110
11111         echo "create $MDSOBJS files @next_id..."
11112         createmany -o $DIR/$tdir/f $MDSOBJS || return 3
11113
11114         local last_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11115                         osc.$mdtosc_proc1.prealloc_last_id)
11116         local next_id2=$(do_facet mds${MDSIDX} lctl get_param -n \
11117                         osc.$mdtosc_proc1.prealloc_next_id)
11118
11119         echo "after creation, last_id=$last_id2, next_id=$next_id2"
11120         $LFS df -i
11121
11122         echo "cleanup..."
11123
11124         do_facet ost$((OSTIDX + 1)) lctl set_param fail_val=0
11125         do_facet ost$((OSTIDX + 1)) lctl set_param fail_loc=0
11126
11127         do_facet mgs $LCTL pool_remove $FSNAME.$TESTNAME $OST || return 4
11128         do_facet mgs $LCTL pool_destroy $FSNAME.$TESTNAME || return 5
11129         echo "unlink $MDSOBJS files @$next_id..."
11130         unlinkmany $DIR/$tdir/f $MDSOBJS || return 6
11131 }
11132 run_test 220 "preallocated MDS objects still used if ENOSPC from OST"
11133
11134 test_221() {
11135         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11136         dd if=`which date` of=$MOUNT/date oflag=sync
11137         chmod +x $MOUNT/date
11138
11139         #define OBD_FAIL_LLITE_FAULT_TRUNC_RACE  0x1401
11140         $LCTL set_param fail_loc=0x80001401
11141
11142         $MOUNT/date > /dev/null
11143         rm -f $MOUNT/date
11144 }
11145 run_test 221 "make sure fault and truncate race to not cause OOM"
11146
11147 test_222a () {
11148         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11149        rm -rf $DIR/$tdir
11150        test_mkdir -p $DIR/$tdir
11151        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11152        createmany -o $DIR/$tdir/$tfile 10
11153        cancel_lru_locks mdc
11154        cancel_lru_locks osc
11155        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11156        $LCTL set_param fail_loc=0x31a
11157        ls -l $DIR/$tdir > /dev/null || error "AGL for ls failed"
11158        $LCTL set_param fail_loc=0
11159        rm -r $DIR/$tdir
11160 }
11161 run_test 222a "AGL for ls should not trigger CLIO lock failure ================"
11162
11163 test_222b () {
11164         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11165        rm -rf $DIR/$tdir
11166        test_mkdir -p $DIR/$tdir
11167        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11168        createmany -o $DIR/$tdir/$tfile 10
11169        cancel_lru_locks mdc
11170        cancel_lru_locks osc
11171        #define OBD_FAIL_LDLM_AGL_DELAY           0x31a
11172        $LCTL set_param fail_loc=0x31a
11173        rm -r $DIR/$tdir || "AGL for rmdir failed"
11174        $LCTL set_param fail_loc=0
11175 }
11176 run_test 222b "AGL for rmdir should not trigger CLIO lock failure ============="
11177
11178 test_223 () {
11179         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11180        rm -rf $DIR/$tdir
11181        test_mkdir -p $DIR/$tdir
11182        $SETSTRIPE -c 1 -i 0 $DIR/$tdir
11183        createmany -o $DIR/$tdir/$tfile 10
11184        cancel_lru_locks mdc
11185        cancel_lru_locks osc
11186        #define OBD_FAIL_LDLM_AGL_NOLOCK          0x31b
11187        $LCTL set_param fail_loc=0x31b
11188        ls -l $DIR/$tdir > /dev/null || error "reenqueue failed"
11189        $LCTL set_param fail_loc=0
11190        rm -r $DIR/$tdir
11191 }
11192 run_test 223 "osc reenqueue if without AGL lock granted ======================="
11193
11194 test_224a() { # LU-1039, MRP-303
11195         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11196         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB   0x508
11197         $LCTL set_param fail_loc=0x508
11198         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1 conv=fsync
11199         $LCTL set_param fail_loc=0
11200         df $DIR
11201 }
11202 run_test 224a "Don't panic on bulk IO failure"
11203
11204 test_224b() { # LU-1039, MRP-303
11205         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11206         dd if=/dev/zero of=$DIR/$tfile bs=4096 count=1
11207         cancel_lru_locks osc
11208         #define OBD_FAIL_PTLRPC_CLIENT_BULK_CB2   0x515
11209         $LCTL set_param fail_loc=0x515
11210         dd of=/dev/null if=$DIR/$tfile bs=4096 count=1
11211         $LCTL set_param fail_loc=0
11212         df $DIR
11213 }
11214 run_test 224b "Don't panic on bulk IO failure"
11215
11216 MDSSURVEY=${MDSSURVEY:-$(which mds-survey 2>/dev/null || true)}
11217 test_225a () {
11218         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11219         if [ -z ${MDSSURVEY} ]; then
11220               skip_env "mds-survey not found" && return
11221         fi
11222
11223         [ $MDSCOUNT -ge 2 ] &&
11224                 skip "skipping now for more than one MDT" && return
11225
11226        [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11227             { skip "Need MDS version at least 2.2.51"; return; }
11228
11229        local mds=$(facet_host $SINGLEMDS)
11230        local target=$(do_nodes $mds 'lctl dl' | \
11231                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11232
11233        local cmd1="file_count=1000 thrhi=4"
11234        local cmd2="dir_count=2 layer=mdd stripe_count=0"
11235        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11236        local cmd="$cmd1 $cmd2 $cmd3"
11237
11238        rm -f ${TMP}/mds_survey*
11239        echo + $cmd
11240        eval $cmd || error "mds-survey with zero-stripe failed"
11241        cat ${TMP}/mds_survey*
11242        rm -f ${TMP}/mds_survey*
11243 }
11244 run_test 225a "Metadata survey sanity with zero-stripe"
11245
11246 test_225b () {
11247         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11248
11249         if [ -z ${MDSSURVEY} ]; then
11250               skip_env "mds-survey not found" && return
11251         fi
11252         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.2.51) ] ||
11253             { skip "Need MDS version at least 2.2.51"; return; }
11254
11255         if [ $($LCTL dl | grep -c osc) -eq 0 ]; then
11256               skip_env "Need to mount OST to test" && return
11257         fi
11258
11259         [ $MDSCOUNT -ge 2 ] &&
11260                 skip "skipping now for more than one MDT" && return
11261        local mds=$(facet_host $SINGLEMDS)
11262        local target=$(do_nodes $mds 'lctl dl' | \
11263                       awk "{if (\$2 == \"UP\" && \$3 == \"mdt\") {print \$4}}")
11264
11265        local cmd1="file_count=1000 thrhi=4"
11266        local cmd2="dir_count=2 layer=mdd stripe_count=1"
11267        local cmd3="rslt_loc=${TMP} targets=\"$mds:$target\" $MDSSURVEY"
11268        local cmd="$cmd1 $cmd2 $cmd3"
11269
11270        rm -f ${TMP}/mds_survey*
11271        echo + $cmd
11272        eval $cmd || error "mds-survey with stripe_count failed"
11273        cat ${TMP}/mds_survey*
11274        rm -f ${TMP}/mds_survey*
11275 }
11276 run_test 225b "Metadata survey sanity with stripe_count = 1"
11277
11278 mcreate_path2fid () {
11279         local mode=$1
11280         local major=$2
11281         local minor=$3
11282         local name=$4
11283         local desc=$5
11284         local path=$DIR/$tdir/$name
11285         local fid
11286         local rc
11287         local fid_path
11288
11289         $MCREATE --mode=$1 --major=$2 --minor=$3 $path ||
11290                 error "cannot create $desc"
11291
11292         fid=$($LFS path2fid $path | tr -d '[' | tr -d ']')
11293         rc=$?
11294         [ $rc -ne 0 ] && error "cannot get fid of a $desc"
11295
11296         fid_path=$($LFS fid2path $MOUNT $fid)
11297         rc=$?
11298         [ $rc -ne 0 ] && error "cannot get path of $desc by $DIR $path $fid"
11299
11300         [ "$path" == "$fid_path" ] ||
11301                 error "fid2path returned $fid_path, expected $path"
11302
11303         echo "pass with $path and $fid"
11304 }
11305
11306 test_226a () {
11307         rm -rf $DIR/$tdir
11308         mkdir -p $DIR/$tdir
11309
11310         mcreate_path2fid 0010666 0 0 fifo "FIFO"
11311         mcreate_path2fid 0020666 1 3 null "character special file (null)"
11312         mcreate_path2fid 0020666 1 255 none "character special file (no device)"
11313         mcreate_path2fid 0040666 0 0 dir "directory"
11314         mcreate_path2fid 0060666 7 0 loop0 "block special file (loop)"
11315         mcreate_path2fid 0100666 0 0 file "regular file"
11316         mcreate_path2fid 0120666 0 0 link "symbolic link"
11317         mcreate_path2fid 0140666 0 0 sock "socket"
11318 }
11319 run_test 226a "call path2fid and fid2path on files of all type"
11320
11321 test_226b () {
11322         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11323         rm -rf $DIR/$tdir
11324         local MDTIDX=1
11325
11326         mkdir -p $DIR/$tdir
11327         $LFS setdirstripe -i $MDTIDX $DIR/$tdir/remote_dir ||
11328                 error "create remote directory failed"
11329         mcreate_path2fid 0010666 0 0 "remote_dir/fifo" "FIFO"
11330         mcreate_path2fid 0020666 1 3 "remote_dir/null" \
11331                                 "character special file (null)"
11332         mcreate_path2fid 0020666 1 255 "remote_dir/none" \
11333                                 "character special file (no device)"
11334         mcreate_path2fid 0040666 0 0 "remote_dir/dir" "directory"
11335         mcreate_path2fid 0060666 7 0 "remote_dir/loop0" \
11336                                 "block special file (loop)"
11337         mcreate_path2fid 0100666 0 0 "remote_dir/file" "regular file"
11338         mcreate_path2fid 0120666 0 0 "remote_dir/link" "symbolic link"
11339         mcreate_path2fid 0140666 0 0 "remote_dir/sock" "socket"
11340 }
11341 run_test 226b "call path2fid and fid2path on files of all type under remote dir"
11342
11343 # LU-1299 Executing or running ldd on a truncated executable does not
11344 # cause an out-of-memory condition.
11345 test_227() {
11346         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11347         dd if=`which date` of=$MOUNT/date bs=1k count=1
11348         chmod +x $MOUNT/date
11349
11350         $MOUNT/date > /dev/null
11351         ldd $MOUNT/date > /dev/null
11352         rm -f $MOUNT/date
11353 }
11354 run_test 227 "running truncated executable does not cause OOM"
11355
11356 # LU-1512 try to reuse idle OI blocks
11357 test_228a() {
11358         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11359         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11360                 skip "non-ldiskfs backend" && return
11361
11362         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11363         local myDIR=$DIR/$tdir
11364
11365         mkdir -p $myDIR
11366         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11367         $LCTL set_param fail_loc=0x80001002
11368         createmany -o $myDIR/t- 10000
11369         $LCTL set_param fail_loc=0
11370         # The guard is current the largest FID holder
11371         touch $myDIR/guard
11372         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11373                     tr -d '[')
11374         local IDX=$(($SEQ % 64))
11375
11376         do_facet $SINGLEMDS sync
11377         # Make sure journal flushed.
11378         sleep 6
11379         local blk1=$(do_facet $SINGLEMDS \
11380                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11381                      grep Blockcount | awk '{print $4}')
11382
11383         # Remove old files, some OI blocks will become idle.
11384         unlinkmany $myDIR/t- 10000
11385         # Create new files, idle OI blocks should be reused.
11386         createmany -o $myDIR/t- 2000
11387         do_facet $SINGLEMDS sync
11388         # Make sure journal flushed.
11389         sleep 6
11390         local blk2=$(do_facet $SINGLEMDS \
11391                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11392                      grep Blockcount | awk '{print $4}')
11393
11394         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11395 }
11396 run_test 228a "try to reuse idle OI blocks"
11397
11398 test_228b() {
11399         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11400         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11401                 skip "non-ldiskfs backend" && return
11402
11403         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11404         local myDIR=$DIR/$tdir
11405
11406         mkdir -p $myDIR
11407         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11408         $LCTL set_param fail_loc=0x80001002
11409         createmany -o $myDIR/t- 10000
11410         $LCTL set_param fail_loc=0
11411         # The guard is current the largest FID holder
11412         touch $myDIR/guard
11413         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11414                     tr -d '[')
11415         local IDX=$(($SEQ % 64))
11416
11417         do_facet $SINGLEMDS sync
11418         # Make sure journal flushed.
11419         sleep 6
11420         local blk1=$(do_facet $SINGLEMDS \
11421                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11422                      grep Blockcount | awk '{print $4}')
11423
11424         # Remove old files, some OI blocks will become idle.
11425         unlinkmany $myDIR/t- 10000
11426
11427         # stop the MDT
11428         stop $SINGLEMDS || error "Fail to stop MDT."
11429         # remount the MDT
11430         start $SINGLEMDS $MDT_DEV $MDS_MOUNT_OPTS || error "Fail to start MDT."
11431
11432         df $MOUNT || error "Fail to df."
11433         # Create new files, idle OI blocks should be reused.
11434         createmany -o $myDIR/t- 2000
11435         do_facet $SINGLEMDS sync
11436         # Make sure journal flushed.
11437         sleep 6
11438         local blk2=$(do_facet $SINGLEMDS \
11439                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11440                      grep Blockcount | awk '{print $4}')
11441
11442         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11443 }
11444 run_test 228b "idle OI blocks can be reused after MDT restart"
11445
11446 #LU-1881
11447 test_228c() {
11448         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11449         [ "$(facet_fstype $SINGLEMDS)" != "ldiskfs" ] &&
11450                 skip "non-ldiskfs backend" && return
11451
11452         local MDT_DEV=$(mdsdevname ${SINGLEMDS//mds/})
11453         local myDIR=$DIR/$tdir
11454
11455         mkdir -p $myDIR
11456         #define OBD_FAIL_SEQ_EXHAUST             0x1002
11457         $LCTL set_param fail_loc=0x80001002
11458         # 20000 files can guarantee there are index nodes in the OI file
11459         createmany -o $myDIR/t- 20000
11460         $LCTL set_param fail_loc=0
11461         # The guard is current the largest FID holder
11462         touch $myDIR/guard
11463         local SEQ=$($LFS path2fid $myDIR/guard | awk -F ':' '{print $1}' |
11464                     tr -d '[')
11465         local IDX=$(($SEQ % 64))
11466
11467         do_facet $SINGLEMDS sync
11468         # Make sure journal flushed.
11469         sleep 6
11470         local blk1=$(do_facet $SINGLEMDS \
11471                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11472                      grep Blockcount | awk '{print $4}')
11473
11474         # Remove old files, some OI blocks will become idle.
11475         unlinkmany $myDIR/t- 20000
11476         rm -f $myDIR/guard
11477         # The OI file should become empty now
11478
11479         # Create new files, idle OI blocks should be reused.
11480         createmany -o $myDIR/t- 2000
11481         do_facet $SINGLEMDS sync
11482         # Make sure journal flushed.
11483         sleep 6
11484         local blk2=$(do_facet $SINGLEMDS \
11485                      "$DEBUGFS -c -R \\\"stat oi.16.${IDX}\\\" $MDT_DEV" |
11486                      grep Blockcount | awk '{print $4}')
11487
11488         [ $blk1 == $blk2 ] || error "old blk1=$blk1, new blk2=$blk2, unmatched!"
11489 }
11490 run_test 228c "NOT shrink the last entry in OI index node to recycle idle leaf"
11491
11492 test_229() { # LU-2482, LU-3448
11493         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11494         [ $OSTCOUNT -lt 2 ] && skip "needs >= 2 OSTs" && return
11495
11496         rm -f $DIR/$tfile
11497
11498         # Create a file with a released layout and stripe count 2.
11499         $MULTIOP $DIR/$tfile H2c ||
11500                 error "failed to create file with released layout"
11501
11502         $GETSTRIPE -v $DIR/$tfile
11503
11504         local pattern=$($GETSTRIPE -L $DIR/$tfile)
11505         [ X"$pattern" = X"80000001" ] || error "pattern error ($pattern)"
11506
11507         local stripe_count=$($GETSTRIPE -c $DIR/$tfile) || error "getstripe"
11508         [ $stripe_count -eq 2 ] || error "stripe count not 2 ($stripe_count)"
11509         stat $DIR/$tfile || error "failed to stat released file"
11510
11511         chown $RUNAS_ID $DIR/$tfile ||
11512                 error "chown $RUNAS_ID $DIR/$tfile failed"
11513
11514         chgrp $RUNAS_ID $DIR/$tfile ||
11515                 error "chgrp $RUNAS_ID $DIR/$tfile failed"
11516
11517         touch $DIR/$tfile || error "touch $DIR/$tfile failed"
11518         rm $DIR/$tfile || error "failed to remove released file"
11519 }
11520 run_test 229 "getstripe/stat/rm/attr changes work on released files"
11521
11522 test_230a() {
11523         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11524         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11525         local MDTIDX=1
11526
11527         mkdir -p $DIR/$tdir/test_230_local
11528         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230_local)
11529         [ $mdt_idx -ne 0 ] &&
11530                 error "create local directory on wrong MDT $mdt_idx"
11531
11532         $LFS mkdir -i $MDTIDX $DIR/$tdir/test_230 ||
11533                         error "create remote directory failed"
11534         local mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230)
11535         [ $mdt_idx -ne $MDTIDX ] &&
11536                 error "create remote directory on wrong MDT $mdt_idx"
11537
11538         createmany -o $DIR/$tdir/test_230/t- 10 ||
11539                 error "create files on remote directory failed"
11540         mdt_idx=$($GETSTRIPE -M $DIR/$tdir/test_230/t-0)
11541         [ $mdt_idx -ne $MDTIDX ] && error "create files on wrong MDT $mdt_idx"
11542         rm -r $DIR/$tdir || error "unlink remote directory failed"
11543 }
11544 run_test 230a "Create remote directory and files under the remote directory"
11545
11546 test_230b() {
11547         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11548         [ $MDSCOUNT -lt 2 ] && skip "needs >= 2 MDTs" && return
11549         local MDTIDX=1
11550         local remote_dir=$DIR/$tdir/remote_dir
11551         local rc=0
11552
11553         mkdir -p $DIR/$tdir
11554         $LFS mkdir -i $MDTIDX $remote_dir ||
11555                 error "create remote directory failed"
11556
11557         $LFS mkdir -i 0 $remote_dir/new_dir &&
11558                 error "nested remote directory create succeed!"
11559
11560         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=1
11561         $LFS mkdir -i 0 $remote_dir/new_dir || rc=$?
11562         do_facet mds$((MDTIDX + 1)) lctl set_param mdt.*.enable_remote_dir=0
11563
11564         [ $rc -ne 0 ] &&
11565            error "create remote directory failed after set enable_remote_dir"
11566
11567         rm -rf $remote_dir || error "first unlink remote directory failed"
11568
11569         $RUNAS -G$RUNAS_GID $LFS mkdir -i $MDTIDX $DIR/$tfile &&
11570                                                         error "chown worked"
11571
11572         do_facet mds$MDTIDX lctl set_param \
11573                                 mdt.*.enable_remote_dir_gid=$RUNAS_GID
11574         $LFS mkdir -i $MDTIDX $remote_dir || rc=$?
11575         do_facet mds$MDTIDX lctl set_param mdt.*.enable_remote_dir_gid=0
11576
11577         [ $rc -ne 0 ] &&
11578            error "create remote dir failed after set enable_remote_dir_gid"
11579
11580         rm -r $DIR/$tdir || error "second unlink remote directory failed"
11581 }
11582 run_test 230b "nested remote directory should be failed"
11583
11584 test_231a()
11585 {
11586         # For simplicity this test assumes that max_pages_per_rpc
11587         # is the same across all OSCs
11588         local max_pages=$($LCTL get_param -n osc.*.max_pages_per_rpc | head -1)
11589         local bulk_size=$((max_pages * 4096))
11590
11591         mkdir -p $DIR/$tdir
11592
11593         # clear the OSC stats
11594         $LCTL set_param osc.*.stats=0 &>/dev/null
11595
11596         # Client writes $bulk_size - there must be 1 rpc for $max_pages.
11597         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=$bulk_size count=1 \
11598                 oflag=direct &>/dev/null || error "dd failed"
11599
11600         local nrpcs=$($LCTL get_param osc.*.stats |awk '/ost_write/ {print $2}')
11601         if [ x$nrpcs != "x1" ]; then
11602                 error "found $nrpc ost_write RPCs, not 1 as expected"
11603         fi
11604
11605         # Drop the OSC cache, otherwise we will read from it
11606         cancel_lru_locks osc
11607
11608         # clear the OSC stats
11609         $LCTL set_param osc.*.stats=0 &>/dev/null
11610
11611         # Client reads $bulk_size.
11612         dd if=$DIR/$tdir/$tfile of=/dev/null bs=$bulk_size count=1 \
11613                 iflag=direct &>/dev/null || error "dd failed"
11614
11615         nrpcs=$($LCTL get_param osc.*.stats | awk '/ost_read/ { print $2 }')
11616         if [ x$nrpcs != "x1" ]; then
11617                 error "found $nrpc ost_read RPCs, not 1 as expected"
11618         fi
11619 }
11620 run_test 231a "checking that reading/writing of BRW RPC size results in one RPC"
11621
11622 test_231b() {
11623         mkdir -p $DIR/$tdir
11624         local i
11625         for i in {0..1023}; do
11626                 dd if=/dev/zero of=$DIR/$tdir/$tfile conv=notrunc \
11627                         seek=$((2 * i)) bs=4096 count=1 &>/dev/null ||
11628                         error "dd of=$DIR/$tdir/$tfile seek=$((2 * i)) failed"
11629         done
11630         sync
11631 }
11632 run_test 231b "must not assert on fully utilized OST request buffer"
11633
11634 test_232() {
11635         mkdir -p $DIR/$tdir
11636         #define OBD_FAIL_LDLM_OST_LVB            0x31c
11637         $LCTL set_param fail_loc=0x31c
11638
11639         # ignore dd failure
11640         dd if=/dev/zero of=$DIR/$tdir/$tfile bs=1M count=1 || true
11641
11642         $LCTL set_param fail_loc=0
11643         umount_client $MOUNT || error "umount failed"
11644         mount_client $MOUNT || error "mount failed"
11645 }
11646 run_test 232 "failed lock should not block umount"
11647
11648 test_233() {
11649         [ $(lustre_version_code $SINGLEMDS) -ge $(version_code 2.3.64) ] ||
11650         { skip "Need MDS version at least 2.3.64"; return; }
11651
11652         local fid=$($LFS path2fid $MOUNT)
11653         stat $MOUNT/.lustre/fid/$fid > /dev/null ||
11654                 error "cannot access $MOUNT using its FID '$fid'"
11655 }
11656 run_test 233 "checking that OBF of the FS root succeeds"
11657
11658 test_234() {
11659         local p="$TMP/sanityN-$TESTNAME.parameters"
11660         save_lustre_params client "llite.*.xattr_cache" > $p
11661         lctl set_param llite.*.xattr_cache 1 ||
11662                 { skip "xattr cache is not supported"; return 0; }
11663
11664         mkdir -p $DIR/$tdir || error "mkdir failed"
11665         touch $DIR/$tdir/$tfile || error "touch failed"
11666         # OBD_FAIL_LLITE_XATTR_ENOMEM
11667         $LCTL set_param fail_loc=0x1405
11668         if [ ! -f /etc/SuSE-release ]; then
11669                 # attr pre-2.4.44-7 had a bug with rc
11670                 # LU-3703 - SLES clients have older attr
11671                 getfattr -n user.attr $DIR/$tdir/$tfile &&
11672                         error "getfattr should have failed with ENOMEM"
11673         fi
11674         $LCTL set_param fail_loc=0x0
11675         rm -rf $DIR/$tdir
11676
11677         restore_lustre_params < $p
11678         rm -f $p
11679 }
11680 run_test 234 "xattr cache should not crash on ENOMEM"
11681
11682 test_235() {
11683          [ $(lustre_version_code $SINGLEMDS) -lt $(version_code 2.4.52) ] &&
11684                 skip "Need MDS version at least 2.4.52" && return
11685         flock_deadlock $DIR/$tfile
11686         local RC=$?
11687         case $RC in
11688                 0)
11689                 ;;
11690                 124) error "process hangs on a deadlock"
11691                 ;;
11692                 *) error "error executing flock_deadlock $DIR/$tfile"
11693                 ;;
11694         esac
11695 }
11696 run_test 235 "LU-1715: flock deadlock detection does not work properly"
11697
11698 #LU-2935
11699 test_236() {
11700         check_swap_layouts_support && return 0
11701         test_mkdir -p $DIR/$tdir || error "mkdir $tdir failed"
11702
11703         local ref1=/etc/passwd
11704         local ref2=/etc/group
11705         local file1=$DIR/$tdir/f1
11706         local file2=$DIR/$tdir/f2
11707
11708         $SETSTRIPE -c 1 $file1 || error "cannot setstripe on '$file1': rc = $?"
11709         cp $ref1 $file1 || error "cp $ref1 $file1 failed: rc = $?"
11710         $SETSTRIPE -c 2 $file2 || error "cannot setstripe on '$file2': rc = $?"
11711         cp $ref2 $file2 || error "cp $ref2 $file2 failed: rc = $?"
11712         exec {FD}<>$file2
11713         rm $file2
11714         $LFS swap_layouts $file1 /proc/self/fd/${FD} ||
11715                 error "cannot swap layouts of '$file1' and /proc/self/fd/${FD}"
11716         exec {FD}>&-
11717         cmp $ref2 $file1 || error "content compare failed ($ref2 != $file1)"
11718
11719         #cleanup
11720         rm -rf $DIR/$tdir
11721 }
11722 run_test 236 "Layout swap on open unlinked file"
11723
11724 #
11725 # tests that do cleanup/setup should be run at the end
11726 #
11727
11728 test_900() {
11729         [ $PARALLEL == "yes" ] && skip "skip parallel run" && return
11730         local ls
11731         #define OBD_FAIL_MGC_PAUSE_PROCESS_LOG   0x903
11732         $LCTL set_param fail_loc=0x903
11733         # cancel_lru_locks mgc - does not work due to lctl set_param syntax
11734         for ls in /proc/fs/lustre/ldlm/namespaces/MGC*/lru_size; do
11735                 echo "clear" > $ls
11736         done
11737         FAIL_ON_ERROR=true cleanup
11738         FAIL_ON_ERROR=true setup
11739 }
11740 run_test 900 "umount should not race with any mgc requeue thread"
11741
11742 complete $SECONDS
11743 check_and_cleanup_lustre
11744 if [ "$I_MOUNTED" != "yes" ]; then
11745         lctl set_param debug="$OLDDEBUG" 2> /dev/null || true
11746 fi
11747 exit_status